[PATCH] Fix random_map
[fio.git] / fio.h
1 #ifndef FIO_H
2 #define FIO_H
3
4 #include <sched.h>
5 #include <limits.h>
6 #include <pthread.h>
7 #include <sys/time.h>
8 #include <sys/resource.h>
9 #include <errno.h>
10 #include <stdlib.h>
11 #include <stdio.h>
12 #include <unistd.h>
13
14 #include "list.h"
15 #include "md5.h"
16 #include "crc32.h"
17 #include "arch.h"
18 #include "os.h"
19
20 struct io_stat {
21         unsigned long val;
22         unsigned long val_sq;
23         unsigned long max_val;
24         unsigned long min_val;
25         unsigned long samples;
26 };
27
28 struct io_sample {
29         unsigned long time;
30         unsigned long val;
31         unsigned int ddir;
32 };
33
34 struct io_log {
35         unsigned long nr_samples;
36         unsigned long max_samples;
37         struct io_sample *log;
38 };
39
40 struct io_piece {
41         struct list_head list;
42         struct fio_file *file;
43         unsigned long long offset;
44         unsigned int len;
45         int ddir;
46 };
47
48 /*
49  * The io unit
50  */
51 struct io_u {
52         union {
53 #ifdef FIO_HAVE_LIBAIO
54                 struct iocb iocb;
55 #endif
56 #ifdef FIO_HAVE_POSIXAIO
57                 struct aiocb aiocb;
58 #endif
59 #ifdef FIO_HAVE_SGIO
60                 struct sg_io_hdr hdr;
61 #endif
62         };
63         struct timeval start_time;
64         struct timeval issue_time;
65
66         void *buf;
67         unsigned int buflen;
68         unsigned long long offset;
69
70         unsigned int resid;
71         unsigned int error;
72
73         unsigned char ddir;
74
75         /*
76          * io engine private data
77          */
78         union {
79                 unsigned int index;
80                 unsigned int seen;
81         };
82
83         struct fio_file *file;
84
85         struct list_head list;
86 };
87
88 #define FIO_HDR_MAGIC   0xf00baaef
89
90 enum {
91         VERIFY_NONE = 0,
92         VERIFY_MD5,
93         VERIFY_CRC32,
94 };
95
96 struct verify_header {
97         unsigned int fio_magic;
98         unsigned int len;
99         unsigned int verify_type;
100         union {
101                 char md5_digest[MD5_HASH_WORDS * 4];
102                 unsigned long crc32;
103         };
104 };
105
106 struct group_run_stats {
107         unsigned long long max_run[2], min_run[2];
108         unsigned long long max_bw[2], min_bw[2];
109         unsigned long long io_kb[2];
110         unsigned long long agg[2];
111 };
112
113 enum fio_ddir {
114         DDIR_READ = 0,
115         DDIR_WRITE,
116         DDIR_SYNC,
117 };
118
119 /*
120  * What type of allocation to use for io buffers
121  */
122 enum fio_memtype {
123         MEM_MALLOC = 0, /* ordinary malloc */
124         MEM_SHM,        /* use shared memory segments */
125         MEM_MMAP,       /* use anonynomous mmap */
126 };
127
128 /*
129  * The type of object we are working on
130  */
131 enum fio_filetype {
132         FIO_TYPE_FILE = 1,
133         FIO_TYPE_BD,
134         FIO_TYPE_CHAR,
135 };
136
137 enum fio_ioengine_flags {
138         FIO_SYNCIO      = 1 << 0,
139         FIO_CPUIO       = 1 << 1,
140         FIO_MMAPIO      = 1 << 2,
141         FIO_RAWIO       = 1 << 3,
142 };
143
144 struct fio_file {
145         /*
146          * A file may not be a file descriptor, let the io engine decide
147          */
148         union {
149                 unsigned long file_data;
150                 int fd;
151         };
152         char *file_name;
153         void *mmap;
154         unsigned long long file_size;
155         unsigned long long real_file_size;
156         unsigned long long file_offset;
157         unsigned long long last_pos;
158
159         unsigned long *file_map;
160         unsigned int num_maps;
161 };
162
163 /*
164  * This describes a single thread/process executing a fio job.
165  */
166 struct thread_data {
167         char *name;
168         char *directory;
169         char *filename;
170         char verror[80];
171         pthread_t thread;
172         int thread_number;
173         int groupid;
174         enum fio_filetype filetype;
175         struct fio_file *files;
176         unsigned int nr_files;
177         unsigned int nr_uniq_files;
178         unsigned int next_file;
179         int error;
180         pid_t pid;
181         char *orig_buffer;
182         size_t orig_buffer_size;
183         volatile int terminate;
184         volatile int runstate;
185         enum fio_ddir ddir;
186         unsigned int iomix;
187         unsigned int ioprio;
188         unsigned int last_was_sync;
189
190         unsigned int sequential;
191         unsigned int odirect;
192         unsigned int invalidate_cache;
193         unsigned int create_serialize;
194         unsigned int create_fsync;
195         unsigned int end_fsync;
196         unsigned int sync_io;
197         unsigned int verify;
198         unsigned int use_thread;
199         unsigned int unlink;
200         unsigned int do_disk_util;
201         unsigned int override_sync;
202         unsigned int rand_repeatable;
203         unsigned int write_lat_log;
204         unsigned int write_bw_log;
205         unsigned int norandommap;
206         unsigned int bs_unaligned;
207
208         unsigned int bs;
209         unsigned int min_bs;
210         unsigned int max_bs;
211         unsigned int thinktime;
212         unsigned int fsync_blocks;
213         unsigned int start_delay;
214         unsigned long timeout;
215         unsigned int overwrite;
216         unsigned int bw_avg_time;
217         unsigned int loops;
218         unsigned long long zone_size;
219         unsigned long long zone_skip;
220         enum fio_memtype mem_type;
221         unsigned int stonewall;
222         unsigned int numjobs;
223         unsigned int iodepth;
224         os_cpu_mask_t cpumask;
225         unsigned int iolog;
226         unsigned int read_iolog;
227         unsigned int rwmixcycle;
228         unsigned int rwmixread;
229         unsigned int rwmixwrite;
230         unsigned int nice;
231
232         char *read_iolog_file;
233         char *write_iolog_file;
234         void *iolog_buf;
235         FILE *iolog_f;
236
237         char *sysfs_root;
238         char *ioscheduler;
239
240         os_random_state_t bsrange_state;
241         os_random_state_t verify_state;
242
243         int shm_id;
244
245         /*
246          * IO engine hooks, contains everything needed to submit an io_u
247          * to any of the available IO engines.
248          */
249         struct ioengine_ops *io_ops;
250
251         /*
252          * Current IO depth and list of free and busy io_u's.
253          */
254         unsigned int cur_depth;
255         struct list_head io_u_freelist;
256         struct list_head io_u_busylist;
257
258         /*
259          * Rate state
260          */
261         unsigned int rate;
262         unsigned int ratemin;
263         unsigned int ratecycle;
264         unsigned long rate_usec_cycle;
265         long rate_pending_usleep;
266         unsigned long rate_bytes;
267         struct timeval lastrate;
268
269         unsigned long runtime[2];               /* msec */
270         unsigned long long io_size;
271         unsigned long long total_file_size;
272         unsigned long long start_offset;
273         unsigned long long total_io_size;
274
275         unsigned long long io_blocks[2];
276         unsigned long long io_bytes[2];
277         unsigned long long zone_bytes;
278         unsigned long long this_io_bytes[2];
279         volatile int mutex;
280
281         /*
282          * State for random io, a bitmap of blocks done vs not done
283          */
284         os_random_state_t random_state;
285
286         /*
287          * CPU "io" cycle burner
288          */
289         unsigned int cpuload;
290         unsigned int cpucycle;
291
292         /*
293          * bandwidth and latency stats
294          */
295         struct io_stat clat_stat[2];            /* completion latency */
296         struct io_stat slat_stat[2];            /* submission latency */
297         struct io_stat bw_stat[2];              /* bandwidth stats */
298
299         unsigned long long stat_io_bytes[2];
300         struct timeval stat_sample_time[2];
301
302         struct io_log *slat_log;
303         struct io_log *clat_log;
304         struct io_log *bw_log;
305
306         struct timeval start;   /* start of this loop */
307         struct timeval epoch;   /* time job was started */
308
309         /*
310          * fio system usage accounting
311          */
312         struct rusage ru_start;
313         struct rusage ru_end;
314         unsigned long usr_time;
315         unsigned long sys_time;
316         unsigned long ctx;
317
318         /*
319          * read/write mixed workload state
320          */
321         os_random_state_t rwmix_state;
322         struct timeval rwmix_switch;
323         enum fio_ddir rwmix_ddir;
324
325         /*
326          * Pre-run and post-run shell
327          */
328         char *exec_prerun;
329         char *exec_postrun;
330
331         /*
332          * IO historic logs
333          */
334         struct list_head io_hist_list;
335         struct list_head io_log_list;
336 };
337
338 #define __td_verror(td, err, msg)                                       \
339         do {                                                            \
340                 int e = (err);                                          \
341                 (td)->error = e;                                        \
342                 snprintf(td->verror, sizeof(td->verror) - 1, "file:%s:%d, error=%s", __FILE__, __LINE__, (msg));        \
343         } while (0)
344
345
346 #define td_verror(td, err)      __td_verror((td), (err), strerror((err)))
347 #define td_vmsg(td, err, msg)   __td_verror((td), (err), (msg))
348
349 extern int rate_quit;
350 extern int exitall_on_terminate;
351 extern int thread_number;
352 extern int shm_id;
353 extern int groupid;
354 extern int terse_output;
355 extern FILE *f_out;
356 extern FILE *f_err;
357 extern char *fio_inst_prefix;
358 extern int temp_stall_ts;
359
360 extern struct thread_data *threads;
361
362 #define td_read(td)             ((td)->ddir == DDIR_READ)
363 #define td_write(td)            ((td)->ddir == DDIR_WRITE)
364 #define td_rw(td)               ((td)->iomix != 0)
365
366 #define BLOCKS_PER_MAP          (8 * sizeof(long))
367 #define TO_MAP_BLOCK(td, f, b)  ((b) - ((f)->file_offset / (td)->min_bs))
368 #define RAND_MAP_IDX(td, f, b)  (TO_MAP_BLOCK(td, f, b) / BLOCKS_PER_MAP)
369 #define RAND_MAP_BIT(td, f, b)  (TO_MAP_BLOCK(td, f, b) & (BLOCKS_PER_MAP - 1))
370
371 #define MAX_JOBS        (1024)
372
373 static inline int should_fsync(struct thread_data *td)
374 {
375         if (td->last_was_sync)
376                 return 0;
377         if (td->odirect)
378                 return 0;
379         if (td_write(td) || td_rw(td) || td->override_sync)
380                 return 1;
381
382         return 0;
383 }
384
385 struct disk_util_stat {
386         unsigned ios[2];
387         unsigned merges[2];
388         unsigned long long sectors[2];
389         unsigned ticks[2];
390         unsigned io_ticks;
391         unsigned time_in_queue;
392 };
393
394 struct disk_util {
395         struct list_head list;
396
397         char *name;
398         char path[256];
399         dev_t dev;
400
401         struct disk_util_stat dus;
402         struct disk_util_stat last_dus;
403
404         unsigned long msec;
405         struct timeval time;
406 };
407
408 struct io_completion_data {
409         int nr;                         /* input */
410
411         int error;                      /* output */
412         unsigned long bytes_done[2];    /* output */
413 };
414
415 #define DISK_UTIL_MSEC  (250)
416
417 #ifndef min
418 #define min(a, b)       ((a) < (b) ? (a) : (b))
419 #endif
420
421 /*
422  * Log exports
423  */
424 extern int read_iolog_get(struct thread_data *, struct io_u *);
425 extern void write_iolog_put(struct thread_data *, struct io_u *);
426 extern int init_iolog(struct thread_data *td);
427 extern void log_io_piece(struct thread_data *, struct io_u *);
428 extern void prune_io_piece_log(struct thread_data *);
429 extern void write_iolog_close(struct thread_data *);
430
431 /*
432  * Logging
433  */
434 extern void add_clat_sample(struct thread_data *, int, unsigned long);
435 extern void add_slat_sample(struct thread_data *, int, unsigned long);
436 extern void add_bw_sample(struct thread_data *, int);
437 extern void show_run_stats(void);
438 extern void init_disk_util(struct thread_data *);
439 extern void update_rusage_stat(struct thread_data *);
440 extern void update_io_ticks(void);
441 extern void disk_util_timer_arm(void);
442 extern void setup_log(struct io_log **);
443 extern void finish_log(struct thread_data *, struct io_log *, const char *);
444 extern int setup_rate(struct thread_data *);
445
446 /*
447  * Time functions
448  */
449 extern void time_init(void);
450 extern unsigned long utime_since(struct timeval *, struct timeval *);
451 extern unsigned long mtime_since(struct timeval *, struct timeval *);
452 extern unsigned long mtime_since_now(struct timeval *);
453 extern unsigned long time_since_now(struct timeval *);
454 extern unsigned long mtime_since_genesis(void);
455 extern void __usec_sleep(unsigned int);
456 extern void usec_sleep(struct thread_data *, unsigned long);
457 extern void rate_throttle(struct thread_data *, unsigned long, unsigned int);
458
459 /*
460  * Init functions
461  */
462 extern int parse_options(int, char **);
463 extern int init_random_state(struct thread_data *);
464
465 /*
466  * File setup/shutdown
467  */
468 extern void close_files(struct thread_data *);
469 extern int setup_files(struct thread_data *);
470 extern int file_invalidate_cache(struct thread_data *, struct fio_file *);
471
472 /*
473  * ETA/status stuff
474  */
475 extern void print_thread_status(void);
476 extern void print_status_init(int);
477
478 /*
479  * Thread life cycle. Once a thread has a runstate beyond TD_INITIALIZED, it
480  * will never back again. It may cycle between running/verififying/fsyncing.
481  * Once the thread reaches TD_EXITED, it is just waiting for the core to
482  * reap it.
483  */
484 enum {
485         TD_NOT_CREATED = 0,
486         TD_CREATED,
487         TD_INITIALIZED,
488         TD_RUNNING,
489         TD_VERIFYING,
490         TD_FSYNCING,
491         TD_EXITED,
492         TD_REAPED,
493 };
494
495 /*
496  * Verify helpers
497  */
498 extern void populate_verify_io_u(struct thread_data *, struct io_u *);
499 extern int get_next_verify(struct thread_data *td, struct io_u *);
500 extern int do_io_u_verify(struct thread_data *, struct io_u **);
501
502 /*
503  * Memory helpers
504  */
505 extern int fio_pin_memory(void);
506 extern void fio_unpin_memory(void);
507 extern int allocate_io_mem(struct thread_data *);
508 extern void free_io_mem(struct thread_data *);
509
510 /*
511  * io unit handling
512  */
513 #define queue_full(td)  list_empty(&(td)->io_u_freelist)
514 extern struct io_u *__get_io_u(struct thread_data *);
515 extern struct io_u *get_io_u(struct thread_data *, struct fio_file *);
516 extern void put_io_u(struct thread_data *, struct io_u *);
517 extern void ios_completed(struct thread_data *, struct io_completion_data *);
518 extern void io_completed(struct thread_data *, struct io_u *, struct io_completion_data *);
519
520 /*
521  * io engine entry points
522  */
523 extern int td_io_init(struct thread_data *);
524 extern int td_io_prep(struct thread_data *, struct io_u *);
525 extern int td_io_queue(struct thread_data *, struct io_u *);
526 extern int td_io_sync(struct thread_data *, struct fio_file *);
527 extern int td_io_getevents(struct thread_data *, int, int, struct timespec *);
528
529 /*
530  * This is a pretty crappy semaphore implementation, but with the use that fio
531  * has (just signalling start/go conditions), it doesn't have to be better.
532  * Naturally this would not work for any type of contended semaphore or
533  * for real locking.
534  */
535 static inline void fio_sem_init(volatile int *sem, int val)
536 {
537         *sem = val;
538 }
539
540 static inline void fio_sem_down(volatile int *sem)
541 {
542         while (*sem == 0)
543                 usleep(10000);
544
545         (*sem)--;
546 }
547
548 static inline void fio_sem_up(volatile int *sem)
549 {
550         (*sem)++;
551 }
552
553 /*
554  * If logging output to a file, stderr should go to both stderr and f_err
555  */
556 #define log_err(args...)        do {            \
557         fprintf(f_err, ##args);                 \
558         if (f_err != stderr)                    \
559                 fprintf(stderr, ##args);        \
560         } while (0)
561
562 struct ioengine_ops {
563         char name[16];
564         int version;
565         int flags;
566         int (*setup)(struct thread_data *);
567         int (*init)(struct thread_data *);
568         int (*prep)(struct thread_data *, struct io_u *);
569         int (*queue)(struct thread_data *, struct io_u *);
570         int (*getevents)(struct thread_data *, int, int, struct timespec *);
571         struct io_u *(*event)(struct thread_data *, int);
572         int (*cancel)(struct thread_data *, struct io_u *);
573         void (*cleanup)(struct thread_data *);
574         void *data;
575         void *dlhandle;
576 };
577
578 #define FIO_IOOPS_VERSION       3
579
580 extern struct ioengine_ops *load_ioengine(struct thread_data *, const char *);
581 extern void close_ioengine(struct thread_data *);
582
583 /*
584  * Mark unused variables passed to ops functions as unused, to silence gcc
585  */
586 #define fio_unused      __attribute((__unused__))
587
588 #define for_each_td(td, i)      \
589         for ((i) = 0, (td) = &threads[0]; (i) < (int) thread_number; (i)++, (td)++)
590 #define for_each_file(td, f, i) \
591         for ((i) = 0, (f) = &(td)->files[0]; (i) < (int) (td)->nr_files; (i)++, (f)++)
592
593 #endif