[PATCH Various fixes
[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         char *buf;
67         unsigned int buflen;
68         unsigned long long offset;
69         unsigned int index;
70
71         unsigned int resid;
72         unsigned int error;
73
74         unsigned char seen;
75         unsigned char ddir;
76
77         struct fio_file *file;
78
79         struct list_head list;
80 };
81
82 #define FIO_HDR_MAGIC   0xf00baaef
83
84 enum {
85         VERIFY_NONE = 0,
86         VERIFY_MD5,
87         VERIFY_CRC32,
88 };
89
90 struct verify_header {
91         unsigned int fio_magic;
92         unsigned int len;
93         unsigned int verify_type;
94         union {
95                 char md5_digest[MD5_HASH_WORDS * 4];
96                 unsigned long crc32;
97         };
98 };
99
100 struct group_run_stats {
101         unsigned long long max_run[2], min_run[2];
102         unsigned long long max_bw[2], min_bw[2];
103         unsigned long long io_kb[2];
104         unsigned long long agg[2];
105 };
106
107 enum fio_ddir {
108         DDIR_READ = 0,
109         DDIR_WRITE,
110 };
111
112 /*
113  * What type of allocation to use for io buffers
114  */
115 enum fio_memtype {
116         MEM_MALLOC = 0, /* ordinary malloc */
117         MEM_SHM,        /* use shared memory segments */
118         MEM_MMAP,       /* use anonynomous mmap */
119 };
120
121 /*
122  * The type of object we are working on
123  */
124 enum fio_filetype {
125         FIO_TYPE_FILE = 1,
126         FIO_TYPE_BD,
127         FIO_TYPE_CHAR,
128 };
129
130 enum fio_ioengine_flags {
131         FIO_SYNCIO      = 1 << 0,
132         FIO_CPUIO       = 1 << 1,
133         FIO_MMAPIO      = 1 << 2,
134         FIO_RAWIO       = 1 << 3,
135 };
136
137 struct fio_file {
138         /*
139          * A file may not be a file descriptor, let the io engine decide
140          */
141         union {
142                 unsigned long file_data;
143                 int fd;
144         };
145         char *file_name;
146         void *mmap;
147         unsigned long long file_size;
148         unsigned long long real_file_size;
149         unsigned long long file_offset;
150         unsigned long long last_pos;
151
152         unsigned long *file_map;
153         unsigned int num_maps;
154
155         int fileno;
156 };
157
158 /*
159  * This describes a single thread/process executing a fio job.
160  */
161 struct thread_data {
162         char name[32];
163         char *directory;
164         char verror[80];
165         pthread_t thread;
166         int thread_number;
167         int groupid;
168         enum fio_filetype filetype;
169         struct fio_file *files;
170         unsigned int nr_files;
171         unsigned int next_file;
172         int error;
173         pid_t pid;
174         char *orig_buffer;
175         size_t orig_buffer_size;
176         volatile int terminate;
177         volatile int runstate;
178         enum fio_ddir ddir;
179         unsigned int iomix;
180         unsigned int ioprio;
181
182         unsigned char sequential;
183         unsigned char odirect;
184         unsigned char create_file;
185         unsigned char invalidate_cache;
186         unsigned char create_serialize;
187         unsigned char create_fsync;
188         unsigned char end_fsync;
189         unsigned char sync_io;
190         unsigned char verify;
191         unsigned char use_thread;
192         unsigned char do_disk_util;
193         unsigned char override_sync;
194         unsigned char rand_repeatable;
195
196         unsigned int bs;
197         unsigned int min_bs;
198         unsigned int max_bs;
199         unsigned int thinktime;
200         unsigned int fsync_blocks;
201         unsigned int start_delay;
202         unsigned long timeout;
203         unsigned int overwrite;
204         unsigned int bw_avg_time;
205         unsigned int loops;
206         unsigned long long zone_size;
207         unsigned long long zone_skip;
208         enum fio_memtype mem_type;
209         unsigned int stonewall;
210         unsigned int numjobs;
211         unsigned int iodepth;
212         os_cpu_mask_t cpumask;
213         unsigned int iolog;
214         unsigned int read_iolog;
215         unsigned int write_iolog;
216         unsigned int rwmixcycle;
217         unsigned int rwmixread;
218         unsigned int nice;
219
220         char *iolog_file;
221         void *iolog_buf;
222         FILE *iolog_f;
223
224         char *sysfs_root;
225         char *ioscheduler;
226
227         os_random_state_t bsrange_state;
228         os_random_state_t verify_state;
229
230         int shm_id;
231
232         /*
233          * IO engine hooks, contains everything needed to submit an io_u
234          * to any of the available IO engines.
235          */
236         struct ioengine_ops *io_ops;
237
238         /*
239          * Current IO depth and list of free and busy io_u's.
240          */
241         unsigned int cur_depth;
242         struct list_head io_u_freelist;
243         struct list_head io_u_busylist;
244
245         /*
246          * Rate state
247          */
248         unsigned int rate;
249         unsigned int ratemin;
250         unsigned int ratecycle;
251         unsigned long rate_usec_cycle;
252         long rate_pending_usleep;
253         unsigned long rate_bytes;
254         struct timeval lastrate;
255
256         unsigned long runtime[2];               /* msec */
257         unsigned long long io_size;
258         unsigned long long total_file_size;
259         unsigned long long start_offset;
260         unsigned long long total_io_size;
261
262         unsigned long long io_blocks[2];
263         unsigned long long io_bytes[2];
264         unsigned long long zone_bytes;
265         unsigned long long this_io_bytes[2];
266         volatile int mutex;
267
268         /*
269          * State for random io, a bitmap of blocks done vs not done
270          */
271         os_random_state_t random_state;
272
273         /*
274          * CPU "io" cycle burner
275          */
276         unsigned int cpuload;
277         unsigned int cpucycle;
278
279         /*
280          * bandwidth and latency stats
281          */
282         struct io_stat clat_stat[2];            /* completion latency */
283         struct io_stat slat_stat[2];            /* submission latency */
284         struct io_stat bw_stat[2];              /* bandwidth stats */
285
286         unsigned long long stat_io_bytes[2];
287         struct timeval stat_sample_time[2];
288
289         struct io_log *slat_log;
290         struct io_log *clat_log;
291         struct io_log *bw_log;
292
293         struct timeval start;   /* start of this loop */
294         struct timeval epoch;   /* time job was started */
295
296         /*
297          * fio system usage accounting
298          */
299         struct rusage ru_start;
300         struct rusage ru_end;
301         unsigned long usr_time;
302         unsigned long sys_time;
303         unsigned long ctx;
304
305         /*
306          * read/write mixed workload state
307          */
308         os_random_state_t rwmix_state;
309         struct timeval rwmix_switch;
310         enum fio_ddir rwmix_ddir;
311
312         /*
313          * Pre-run and post-run shell
314          */
315         char *exec_prerun;
316         char *exec_postrun;
317
318         /*
319          * IO historic logs
320          */
321         struct list_head io_hist_list;
322         struct list_head io_log_list;
323 };
324
325 #define __td_verror(td, err, msg)                                       \
326         do {                                                            \
327                 int e = (err);                                          \
328                 (td)->error = e;                                        \
329                 snprintf(td->verror, sizeof(td->verror) - 1, "file:%s:%d, error=%s", __FILE__, __LINE__, (msg));        \
330         } while (0)
331
332
333 #define td_verror(td, err)      __td_verror((td), (err), strerror((err)))
334 #define td_vmsg(td, err, msg)   __td_verror((td), (err), (msg))
335
336 extern struct io_u *__get_io_u(struct thread_data *);
337 extern void put_io_u(struct thread_data *, struct io_u *);
338
339 extern int rate_quit;
340 extern int write_lat_log;
341 extern int write_bw_log;
342 extern int exitall_on_terminate;
343 extern int thread_number;
344 extern int shm_id;
345 extern int groupid;
346 extern int terse_output;
347 extern FILE *f_out;
348 extern FILE *f_err;
349 extern char *fio_inst_prefix;
350 extern int temp_stall_ts;
351
352 extern struct thread_data *threads;
353
354 #define td_read(td)             ((td)->ddir == DDIR_READ)
355 #define td_write(td)            ((td)->ddir == DDIR_WRITE)
356 #define td_rw(td)               ((td)->iomix != 0)
357
358 #define BLOCKS_PER_MAP          (8 * sizeof(long))
359 #define TO_MAP_BLOCK(td, f, b)  ((b) - ((f)->file_offset / (td)->min_bs))
360 #define RAND_MAP_IDX(td, f, b)  (TO_MAP_BLOCK(td, f, b) / BLOCKS_PER_MAP)
361 #define RAND_MAP_BIT(td, f, b)  (TO_MAP_BLOCK(td, f, b) & (BLOCKS_PER_MAP - 1))
362
363 #define MAX_JOBS        (1024)
364
365 struct disk_util_stat {
366         unsigned ios[2];
367         unsigned merges[2];
368         unsigned long long sectors[2];
369         unsigned ticks[2];
370         unsigned io_ticks;
371         unsigned time_in_queue;
372 };
373
374 struct disk_util {
375         struct list_head list;
376
377         char *name;
378         char path[256];
379         dev_t dev;
380
381         struct disk_util_stat dus;
382         struct disk_util_stat last_dus;
383
384         unsigned long msec;
385         struct timeval time;
386 };
387
388 struct io_completion_data {
389         int nr;                         /* input */
390
391         int error;                      /* output */
392         unsigned long bytes_done[2];    /* output */
393 };
394
395 #define DISK_UTIL_MSEC  (250)
396
397 #ifndef min
398 #define min(a, b)       ((a) < (b) ? (a) : (b))
399 #endif
400
401 /*
402  * Log exports
403  */
404 extern int read_iolog_get(struct thread_data *, struct io_u *);
405 extern void write_iolog_put(struct thread_data *, struct io_u *);
406 extern int init_iolog(struct thread_data *td);
407 extern void log_io_piece(struct thread_data *, struct io_u *);
408 extern void prune_io_piece_log(struct thread_data *);
409 extern void write_iolog_close(struct thread_data *);
410
411 /*
412  * Logging
413  */
414 extern void add_clat_sample(struct thread_data *, int, unsigned long);
415 extern void add_slat_sample(struct thread_data *, int, unsigned long);
416 extern void add_bw_sample(struct thread_data *, int);
417 extern void show_run_stats(void);
418 extern void init_disk_util(struct thread_data *);
419 extern void update_rusage_stat(struct thread_data *);
420 extern void update_io_ticks(void);
421 extern void disk_util_timer_arm(void);
422 extern void setup_log(struct io_log **);
423 extern void finish_log(struct thread_data *, struct io_log *, const char *);
424 extern int setup_rate(struct thread_data *);
425
426 /*
427  * Time functions
428  */
429 extern unsigned long utime_since(struct timeval *, struct timeval *);
430 extern unsigned long mtime_since(struct timeval *, struct timeval *);
431 extern unsigned long mtime_since_now(struct timeval *);
432 extern unsigned long time_since_now(struct timeval *);
433 extern void __usec_sleep(unsigned int);
434 extern void usec_sleep(struct thread_data *, unsigned long);
435 extern void rate_throttle(struct thread_data *, unsigned long, unsigned int);
436
437 /*
438  * Init functions
439  */
440 extern int parse_options(int, char **);
441 extern int init_random_state(struct thread_data *);
442
443 /*
444  * File setup/shutdown
445  */
446 extern void close_files(struct thread_data *);
447 extern int setup_files(struct thread_data *);
448
449 /*
450  * This is a pretty crappy semaphore implementation, but with the use that fio
451  * has (just signalling start/go conditions), it doesn't have to be better.
452  * Naturally this would not work for any type of contended semaphore or
453  * for real locking.
454  */
455 static inline void fio_sem_init(volatile int *sem, int val)
456 {
457         *sem = val;
458 }
459
460 static inline void fio_sem_down(volatile int *sem)
461 {
462         while (*sem == 0)
463                 usleep(10000);
464
465         (*sem)--;
466 }
467
468 static inline void fio_sem_up(volatile int *sem)
469 {
470         (*sem)++;
471 }
472
473 /*
474  * If logging output to a file, stderr should go to both stderr and f_err
475  */
476 #define log_err(args...)        do {            \
477         fprintf(f_err, ##args);                 \
478         if (f_err != stderr)                    \
479                 fprintf(stderr, ##args);        \
480         } while (0)
481
482 struct ioengine_ops {
483         char name[16];
484         int version;
485         int flags;
486         int (*setup)(struct thread_data *);
487         int (*init)(struct thread_data *);
488         int (*prep)(struct thread_data *, struct io_u *);
489         int (*queue)(struct thread_data *, struct io_u *);
490         int (*getevents)(struct thread_data *, int, int, struct timespec *);
491         struct io_u *(*event)(struct thread_data *, int);
492         int (*cancel)(struct thread_data *, struct io_u *);
493         void (*cleanup)(struct thread_data *);
494         int (*sync)(struct thread_data *, struct fio_file *);
495         void *data;
496         void *dlhandle;
497 };
498
499 #define FIO_IOOPS_VERSION       2
500
501 extern struct ioengine_ops *load_ioengine(struct thread_data *, char *);
502 extern void close_ioengine(struct thread_data *);
503
504 /*
505  * Mark unused variables passed to ops functions as unused, to silence gcc
506  */
507 #define fio_unused      __attribute((__unused__))
508
509 #define for_each_file(td, f, i) \
510         for ((i) = 0, (f) = &(td)->files[0]; (i) < (td)->nr_files; (i)++, (f) = &(td)->files[(i)])
511
512 #endif