blob: 9471666b02b45cf7328637841e249636247f06c1 [file] [log] [blame]
Jens Axboeebac4652005-12-08 15:25:21 +01001#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>
Jens Axboe3c39a372006-06-06 20:56:12 +02009#include <errno.h>
10#include <stdlib.h>
11#include <stdio.h>
Jens Axboe6d6f0312006-06-07 21:39:13 +020012#include <unistd.h>
Jens Axboeebac4652005-12-08 15:25:21 +010013
14#include "list.h"
15#include "md5.h"
16#include "crc32.h"
17#include "arch.h"
18#include "os.h"
19
20struct 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
28struct io_sample {
29 unsigned long time;
30 unsigned long val;
31 unsigned int ddir;
32};
33
34struct io_log {
35 unsigned long nr_samples;
36 unsigned long max_samples;
37 struct io_sample *log;
38};
39
40struct io_piece {
41 struct list_head list;
Jens Axboe53cdc682006-10-18 11:50:58 +020042 struct fio_file *file;
Jens Axboeebac4652005-12-08 15:25:21 +010043 unsigned long long offset;
44 unsigned int len;
Jens Axboeaea47d42006-05-26 19:27:29 +020045 int ddir;
Jens Axboeebac4652005-12-08 15:25:21 +010046};
47
48/*
49 * The io unit
50 */
51struct 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;
Jens Axboeb1ff3402006-02-17 11:35:58 +010069 unsigned int index;
Jens Axboeebac4652005-12-08 15:25:21 +010070
71 unsigned int resid;
72 unsigned int error;
73
74 unsigned char seen;
75 unsigned char ddir;
76
Jens Axboe53cdc682006-10-18 11:50:58 +020077 struct fio_file *file;
78
Jens Axboeebac4652005-12-08 15:25:21 +010079 struct list_head list;
80};
81
82#define FIO_HDR_MAGIC 0xf00baaef
83
84enum {
85 VERIFY_NONE = 0,
86 VERIFY_MD5,
87 VERIFY_CRC32,
88};
89
90struct 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
100struct group_run_stats {
Jens Axboe9104f872005-12-28 23:50:45 +0100101 unsigned long long max_run[2], min_run[2];
102 unsigned long long max_bw[2], min_bw[2];
Jens Axboee9b2a3f2006-06-06 15:38:33 +0200103 unsigned long long io_kb[2];
Jens Axboe9104f872005-12-28 23:50:45 +0100104 unsigned long long agg[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100105};
106
Jens Axboee9c047a2006-06-07 21:13:04 +0200107enum fio_ddir {
108 DDIR_READ = 0,
109 DDIR_WRITE,
110};
111
112/*
113 * What type of allocation to use for io buffers
114 */
115enum 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 */
124enum fio_filetype {
125 FIO_TYPE_FILE = 1,
126 FIO_TYPE_BD,
127 FIO_TYPE_CHAR,
128};
129
Jens Axboe2866c822006-10-09 15:57:48 +0200130enum fio_ioengine_flags {
Jens Axboee9c047a2006-06-07 21:13:04 +0200131 FIO_SYNCIO = 1 << 0,
Jens Axboe2866c822006-10-09 15:57:48 +0200132 FIO_CPUIO = 1 << 1,
133 FIO_MMAPIO = 1 << 2,
Jens Axboeb2a15192006-10-18 14:10:42 +0200134 FIO_RAWIO = 1 << 3,
Jens Axboee9c047a2006-06-07 21:13:04 +0200135};
136
Jens Axboe53cdc682006-10-18 11:50:58 +0200137struct 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;
Jens Axboeb2a15192006-10-18 14:10:42 +0200154
155 int fileno;
Jens Axboe53cdc682006-10-18 11:50:58 +0200156};
157
Jens Axboee9c047a2006-06-07 21:13:04 +0200158/*
159 * This describes a single thread/process executing a fio job.
160 */
Jens Axboeebac4652005-12-08 15:25:21 +0100161struct thread_data {
Jens Axboee9c047a2006-06-07 21:13:04 +0200162 char name[32];
Jens Axboeef899b62006-06-06 09:31:00 +0200163 char *directory;
Jens Axboeebac4652005-12-08 15:25:21 +0100164 char verror[80];
165 pthread_t thread;
166 int thread_number;
167 int groupid;
Jens Axboee9c047a2006-06-07 21:13:04 +0200168 enum fio_filetype filetype;
Jens Axboe53cdc682006-10-18 11:50:58 +0200169 struct fio_file *files;
170 unsigned int nr_files;
171 unsigned int next_file;
Jens Axboeebac4652005-12-08 15:25:21 +0100172 int error;
Jens Axboeebac4652005-12-08 15:25:21 +0100173 pid_t pid;
174 char *orig_buffer;
175 size_t orig_buffer_size;
176 volatile int terminate;
177 volatile int runstate;
Jens Axboee9c047a2006-06-07 21:13:04 +0200178 enum fio_ddir ddir;
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200179 unsigned int iomix;
Jens Axboeebac4652005-12-08 15:25:21 +0100180 unsigned int ioprio;
Jens Axboee9c047a2006-06-07 21:13:04 +0200181
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;
Jens Axboef6cbb262006-10-18 14:16:42 +0200192 unsigned char unlink;
Jens Axboee9c047a2006-06-07 21:13:04 +0200193 unsigned char do_disk_util;
194 unsigned char override_sync;
Jens Axboe9ebc27e2006-06-12 10:21:50 +0200195 unsigned char rand_repeatable;
Jens Axboee9c047a2006-06-07 21:13:04 +0200196
Jens Axboeebac4652005-12-08 15:25:21 +0100197 unsigned int bs;
198 unsigned int min_bs;
199 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100200 unsigned int thinktime;
201 unsigned int fsync_blocks;
202 unsigned int start_delay;
Jens Axboe906c8d72006-06-13 09:37:56 +0200203 unsigned long timeout;
Jens Axboeebac4652005-12-08 15:25:21 +0100204 unsigned int overwrite;
Jens Axboeebac4652005-12-08 15:25:21 +0100205 unsigned int bw_avg_time;
Jens Axboeebac4652005-12-08 15:25:21 +0100206 unsigned int loops;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100207 unsigned long long zone_size;
208 unsigned long long zone_skip;
Jens Axboee9c047a2006-06-07 21:13:04 +0200209 enum fio_memtype mem_type;
Jens Axboeebac4652005-12-08 15:25:21 +0100210 unsigned int stonewall;
211 unsigned int numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100212 unsigned int iodepth;
213 os_cpu_mask_t cpumask;
Jens Axboeaea47d42006-05-26 19:27:29 +0200214 unsigned int iolog;
Jens Axboe843a7412006-06-01 21:14:21 -0700215 unsigned int read_iolog;
216 unsigned int write_iolog;
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200217 unsigned int rwmixcycle;
218 unsigned int rwmixread;
Jens Axboeb6f4d882006-06-02 10:32:51 +0200219 unsigned int nice;
Jens Axboeaea47d42006-05-26 19:27:29 +0200220
Jens Axboeef899b62006-06-06 09:31:00 +0200221 char *iolog_file;
Jens Axboe843a7412006-06-01 21:14:21 -0700222 void *iolog_buf;
223 FILE *iolog_f;
Jens Axboeebac4652005-12-08 15:25:21 +0100224
Jens Axboeda867742006-06-06 10:39:10 -0700225 char *sysfs_root;
Jens Axboeda867742006-06-06 10:39:10 -0700226 char *ioscheduler;
227
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200228 os_random_state_t bsrange_state;
229 os_random_state_t verify_state;
Jens Axboeebac4652005-12-08 15:25:21 +0100230
231 int shm_id;
232
Jens Axboee9c047a2006-06-07 21:13:04 +0200233 /*
234 * IO engine hooks, contains everything needed to submit an io_u
235 * to any of the available IO engines.
236 */
Jens Axboe2866c822006-10-09 15:57:48 +0200237 struct ioengine_ops *io_ops;
Jens Axboeebac4652005-12-08 15:25:21 +0100238
Jens Axboee9c047a2006-06-07 21:13:04 +0200239 /*
240 * Current IO depth and list of free and busy io_u's.
241 */
Jens Axboeebac4652005-12-08 15:25:21 +0100242 unsigned int cur_depth;
243 struct list_head io_u_freelist;
244 struct list_head io_u_busylist;
245
Jens Axboee9c047a2006-06-07 21:13:04 +0200246 /*
247 * Rate state
248 */
Jens Axboeebac4652005-12-08 15:25:21 +0100249 unsigned int rate;
250 unsigned int ratemin;
251 unsigned int ratecycle;
252 unsigned long rate_usec_cycle;
253 long rate_pending_usleep;
254 unsigned long rate_bytes;
255 struct timeval lastrate;
256
257 unsigned long runtime[2]; /* msec */
258 unsigned long long io_size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200259 unsigned long long total_file_size;
260 unsigned long long start_offset;
Jens Axboeebac4652005-12-08 15:25:21 +0100261 unsigned long long total_io_size;
262
Jens Axboe9104f872005-12-28 23:50:45 +0100263 unsigned long long io_blocks[2];
264 unsigned long long io_bytes[2];
265 unsigned long long zone_bytes;
266 unsigned long long this_io_bytes[2];
Jens Axboebbfd6b02006-06-07 19:42:54 +0200267 volatile int mutex;
Jens Axboeebac4652005-12-08 15:25:21 +0100268
Jens Axboee9c047a2006-06-07 21:13:04 +0200269 /*
270 * State for random io, a bitmap of blocks done vs not done
271 */
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200272 os_random_state_t random_state;
Jens Axboeebac4652005-12-08 15:25:21 +0100273
274 /*
Jens Axboeb990b5c2006-09-14 09:48:22 +0200275 * CPU "io" cycle burner
276 */
277 unsigned int cpuload;
278 unsigned int cpucycle;
279
280 /*
Jens Axboeebac4652005-12-08 15:25:21 +0100281 * bandwidth and latency stats
282 */
283 struct io_stat clat_stat[2]; /* completion latency */
284 struct io_stat slat_stat[2]; /* submission latency */
285 struct io_stat bw_stat[2]; /* bandwidth stats */
286
Jens Axboe9104f872005-12-28 23:50:45 +0100287 unsigned long long stat_io_bytes[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100288 struct timeval stat_sample_time[2];
289
290 struct io_log *slat_log;
291 struct io_log *clat_log;
292 struct io_log *bw_log;
293
294 struct timeval start; /* start of this loop */
295 struct timeval epoch; /* time job was started */
296
Jens Axboee9c047a2006-06-07 21:13:04 +0200297 /*
298 * fio system usage accounting
299 */
Jens Axboeebac4652005-12-08 15:25:21 +0100300 struct rusage ru_start;
301 struct rusage ru_end;
302 unsigned long usr_time;
303 unsigned long sys_time;
304 unsigned long ctx;
305
Jens Axboee9c047a2006-06-07 21:13:04 +0200306 /*
307 * read/write mixed workload state
308 */
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200309 os_random_state_t rwmix_state;
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200310 struct timeval rwmix_switch;
Jens Axboee9c047a2006-06-07 21:13:04 +0200311 enum fio_ddir rwmix_ddir;
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200312
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200313 /*
314 * Pre-run and post-run shell
315 */
316 char *exec_prerun;
317 char *exec_postrun;
318
Jens Axboee9c047a2006-06-07 21:13:04 +0200319 /*
320 * IO historic logs
321 */
Jens Axboeebac4652005-12-08 15:25:21 +0100322 struct list_head io_hist_list;
Jens Axboeaea47d42006-05-26 19:27:29 +0200323 struct list_head io_log_list;
Jens Axboeebac4652005-12-08 15:25:21 +0100324};
325
Jens Axboeb990b5c2006-09-14 09:48:22 +0200326#define __td_verror(td, err, msg) \
Jens Axboeebac4652005-12-08 15:25:21 +0100327 do { \
328 int e = (err); \
329 (td)->error = e; \
Jens Axboeb990b5c2006-09-14 09:48:22 +0200330 snprintf(td->verror, sizeof(td->verror) - 1, "file:%s:%d, error=%s", __FILE__, __LINE__, (msg)); \
Jens Axboeebac4652005-12-08 15:25:21 +0100331 } while (0)
332
Jens Axboeb990b5c2006-09-14 09:48:22 +0200333
334#define td_verror(td, err) __td_verror((td), (err), strerror((err)))
335#define td_vmsg(td, err, msg) __td_verror((td), (err), (msg))
336
Jens Axboeb1ff3402006-02-17 11:35:58 +0100337extern struct io_u *__get_io_u(struct thread_data *);
338extern void put_io_u(struct thread_data *, struct io_u *);
Jens Axboeebac4652005-12-08 15:25:21 +0100339
340extern int rate_quit;
341extern int write_lat_log;
342extern int write_bw_log;
343extern int exitall_on_terminate;
344extern int thread_number;
345extern int shm_id;
346extern int groupid;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200347extern int terse_output;
Jens Axboeeb8bbf42006-06-08 21:40:11 +0200348extern FILE *f_out;
349extern FILE *f_err;
Jens Axboec1d57252006-10-09 19:56:04 +0200350extern char *fio_inst_prefix;
Jens Axboe53cdc682006-10-18 11:50:58 +0200351extern int temp_stall_ts;
Jens Axboeebac4652005-12-08 15:25:21 +0100352
353extern struct thread_data *threads;
354
Jens Axboeebac4652005-12-08 15:25:21 +0100355#define td_read(td) ((td)->ddir == DDIR_READ)
356#define td_write(td) ((td)->ddir == DDIR_WRITE)
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200357#define td_rw(td) ((td)->iomix != 0)
Jens Axboeebac4652005-12-08 15:25:21 +0100358
359#define BLOCKS_PER_MAP (8 * sizeof(long))
Jens Axboe53cdc682006-10-18 11:50:58 +0200360#define TO_MAP_BLOCK(td, f, b) ((b) - ((f)->file_offset / (td)->min_bs))
361#define RAND_MAP_IDX(td, f, b) (TO_MAP_BLOCK(td, f, b) / BLOCKS_PER_MAP)
362#define RAND_MAP_BIT(td, f, b) (TO_MAP_BLOCK(td, f, b) & (BLOCKS_PER_MAP - 1))
Jens Axboeebac4652005-12-08 15:25:21 +0100363
364#define MAX_JOBS (1024)
365
366struct disk_util_stat {
367 unsigned ios[2];
368 unsigned merges[2];
369 unsigned long long sectors[2];
370 unsigned ticks[2];
371 unsigned io_ticks;
372 unsigned time_in_queue;
373};
374
375struct disk_util {
376 struct list_head list;
377
378 char *name;
379 char path[256];
380 dev_t dev;
381
382 struct disk_util_stat dus;
383 struct disk_util_stat last_dus;
384
385 unsigned long msec;
386 struct timeval time;
387};
388
389struct io_completion_data {
390 int nr; /* input */
391
392 int error; /* output */
393 unsigned long bytes_done[2]; /* output */
394};
395
396#define DISK_UTIL_MSEC (250)
397
Jens Axboe6a0106a2006-05-05 10:34:43 +0200398#ifndef min
399#define min(a, b) ((a) < (b) ? (a) : (b))
400#endif
401
Jens Axboe67962092006-06-07 08:45:01 +0200402/*
403 * Log exports
404 */
405extern int read_iolog_get(struct thread_data *, struct io_u *);
406extern void write_iolog_put(struct thread_data *, struct io_u *);
407extern int init_iolog(struct thread_data *td);
408extern void log_io_piece(struct thread_data *, struct io_u *);
409extern void prune_io_piece_log(struct thread_data *);
410extern void write_iolog_close(struct thread_data *);
411
412/*
413 * Logging
414 */
415extern void add_clat_sample(struct thread_data *, int, unsigned long);
416extern void add_slat_sample(struct thread_data *, int, unsigned long);
417extern void add_bw_sample(struct thread_data *, int);
418extern void show_run_stats(void);
419extern void init_disk_util(struct thread_data *);
420extern void update_rusage_stat(struct thread_data *);
421extern void update_io_ticks(void);
422extern void disk_util_timer_arm(void);
Jens Axboe8914a9d2006-06-07 11:14:56 +0200423extern void setup_log(struct io_log **);
424extern void finish_log(struct thread_data *, struct io_log *, const char *);
425extern int setup_rate(struct thread_data *);
Jens Axboe67962092006-06-07 08:45:01 +0200426
427/*
428 * Time functions
429 */
Jens Axboe263e5292006-10-18 15:37:01 +0200430extern void time_init(void);
Jens Axboe67962092006-06-07 08:45:01 +0200431extern unsigned long utime_since(struct timeval *, struct timeval *);
432extern unsigned long mtime_since(struct timeval *, struct timeval *);
433extern unsigned long mtime_since_now(struct timeval *);
434extern unsigned long time_since_now(struct timeval *);
Jens Axboe263e5292006-10-18 15:37:01 +0200435extern unsigned long mtime_since_genesis(void);
Jens Axboeb990b5c2006-09-14 09:48:22 +0200436extern void __usec_sleep(unsigned int);
Jens Axboe67962092006-06-07 08:45:01 +0200437extern void usec_sleep(struct thread_data *, unsigned long);
438extern void rate_throttle(struct thread_data *, unsigned long, unsigned int);
439
Jens Axboe8914a9d2006-06-07 11:14:56 +0200440/*
441 * Init functions
442 */
443extern int parse_options(int, char **);
444extern int init_random_state(struct thread_data *);
445
Jens Axboebbfd6b02006-06-07 19:42:54 +0200446/*
Jens Axboe53cdc682006-10-18 11:50:58 +0200447 * File setup/shutdown
448 */
449extern void close_files(struct thread_data *);
450extern int setup_files(struct thread_data *);
451
452/*
Jens Axboe263e5292006-10-18 15:37:01 +0200453 * ETA/status stuff
454 */
455extern void print_thread_status(void);
456extern void print_status_init(int);
457
458/*
459 * Thread life cycle. Once a thread has a runstate beyond TD_INITIALIZED, it
460 * will never back again. It may cycle between running/verififying/fsyncing.
461 * Once the thread reaches TD_EXITED, it is just waiting for the core to
462 * reap it.
463 */
464enum {
465 TD_NOT_CREATED = 0,
466 TD_CREATED,
467 TD_INITIALIZED,
468 TD_RUNNING,
469 TD_VERIFYING,
470 TD_FSYNCING,
471 TD_EXITED,
472 TD_REAPED,
473};
474
475/*
Jens Axboebbfd6b02006-06-07 19:42:54 +0200476 * This is a pretty crappy semaphore implementation, but with the use that fio
477 * has (just signalling start/go conditions), it doesn't have to be better.
478 * Naturally this would not work for any type of contended semaphore or
479 * for real locking.
480 */
Jens Axboe1056eaa2006-07-13 10:33:45 -0700481static inline void fio_sem_init(volatile int *sem, int val)
Jens Axboebbfd6b02006-06-07 19:42:54 +0200482{
483 *sem = val;
484}
485
Jens Axboe1056eaa2006-07-13 10:33:45 -0700486static inline void fio_sem_down(volatile int *sem)
Jens Axboebbfd6b02006-06-07 19:42:54 +0200487{
488 while (*sem == 0)
489 usleep(10000);
490
491 (*sem)--;
492}
493
Jens Axboe1056eaa2006-07-13 10:33:45 -0700494static inline void fio_sem_up(volatile int *sem)
Jens Axboebbfd6b02006-06-07 19:42:54 +0200495{
496 (*sem)++;
497}
498
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200499/*
500 * If logging output to a file, stderr should go to both stderr and f_err
501 */
502#define log_err(args...) do { \
503 fprintf(f_err, ##args); \
504 if (f_err != stderr) \
505 fprintf(stderr, ##args); \
506 } while (0)
507
Jens Axboe2866c822006-10-09 15:57:48 +0200508struct ioengine_ops {
509 char name[16];
510 int version;
511 int flags;
Jens Axboeea2877a2006-10-10 08:30:24 +0200512 int (*setup)(struct thread_data *);
Jens Axboe2866c822006-10-09 15:57:48 +0200513 int (*init)(struct thread_data *);
514 int (*prep)(struct thread_data *, struct io_u *);
515 int (*queue)(struct thread_data *, struct io_u *);
516 int (*getevents)(struct thread_data *, int, int, struct timespec *);
517 struct io_u *(*event)(struct thread_data *, int);
518 int (*cancel)(struct thread_data *, struct io_u *);
519 void (*cleanup)(struct thread_data *);
Jens Axboe53cdc682006-10-18 11:50:58 +0200520 int (*sync)(struct thread_data *, struct fio_file *);
Jens Axboe2866c822006-10-09 15:57:48 +0200521 void *data;
522 void *dlhandle;
523};
524
Jens Axboe53cdc682006-10-18 11:50:58 +0200525#define FIO_IOOPS_VERSION 2
Jens Axboe2866c822006-10-09 15:57:48 +0200526
527extern struct ioengine_ops *load_ioengine(struct thread_data *, char *);
528extern void close_ioengine(struct thread_data *);
529
530/*
531 * Mark unused variables passed to ops functions as unused, to silence gcc
532 */
533#define fio_unused __attribute((__unused__))
534
Jens Axboe53cdc682006-10-18 11:50:58 +0200535#define for_each_file(td, f, i) \
Jens Axboeb2a15192006-10-18 14:10:42 +0200536 for ((i) = 0, (f) = &(td)->files[0]; (i) < (td)->nr_files; (i)++, (f) = &(td)->files[(i)])
Jens Axboe53cdc682006-10-18 11:50:58 +0200537
Jens Axboeebac4652005-12-08 15:25:21 +0100538#endif