blob: ee47599b31bfeee8a333dc77f8149d2cd2ce0086 [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;
42 unsigned long long offset;
43 unsigned int len;
Jens Axboeaea47d42006-05-26 19:27:29 +020044 int ddir;
Jens Axboeebac4652005-12-08 15:25:21 +010045};
46
47/*
48 * The io unit
49 */
50struct io_u {
51 union {
52#ifdef FIO_HAVE_LIBAIO
53 struct iocb iocb;
54#endif
55#ifdef FIO_HAVE_POSIXAIO
56 struct aiocb aiocb;
57#endif
58#ifdef FIO_HAVE_SGIO
59 struct sg_io_hdr hdr;
60#endif
61 };
62 struct timeval start_time;
63 struct timeval issue_time;
64
65 char *buf;
66 unsigned int buflen;
67 unsigned long long offset;
Jens Axboeb1ff3402006-02-17 11:35:58 +010068 unsigned int index;
Jens Axboeebac4652005-12-08 15:25:21 +010069
70 unsigned int resid;
71 unsigned int error;
72
73 unsigned char seen;
74 unsigned char ddir;
75
76 struct list_head list;
77};
78
79#define FIO_HDR_MAGIC 0xf00baaef
80
81enum {
82 VERIFY_NONE = 0,
83 VERIFY_MD5,
84 VERIFY_CRC32,
85};
86
87struct verify_header {
88 unsigned int fio_magic;
89 unsigned int len;
90 unsigned int verify_type;
91 union {
92 char md5_digest[MD5_HASH_WORDS * 4];
93 unsigned long crc32;
94 };
95};
96
97struct group_run_stats {
Jens Axboe9104f872005-12-28 23:50:45 +010098 unsigned long long max_run[2], min_run[2];
99 unsigned long long max_bw[2], min_bw[2];
Jens Axboee9b2a3f2006-06-06 15:38:33 +0200100 unsigned long long io_kb[2];
Jens Axboe9104f872005-12-28 23:50:45 +0100101 unsigned long long agg[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100102};
103
Jens Axboee9c047a2006-06-07 21:13:04 +0200104enum fio_ddir {
105 DDIR_READ = 0,
106 DDIR_WRITE,
107};
108
109/*
110 * What type of allocation to use for io buffers
111 */
112enum fio_memtype {
113 MEM_MALLOC = 0, /* ordinary malloc */
114 MEM_SHM, /* use shared memory segments */
115 MEM_MMAP, /* use anonynomous mmap */
116};
117
118/*
119 * The type of object we are working on
120 */
121enum fio_filetype {
122 FIO_TYPE_FILE = 1,
123 FIO_TYPE_BD,
124 FIO_TYPE_CHAR,
125};
126
127enum fio_iotype {
128 FIO_SYNCIO = 1 << 0,
129 FIO_MMAPIO = 1 << 1 | FIO_SYNCIO,
130 FIO_LIBAIO = 1 << 2,
131 FIO_POSIXAIO = 1 << 3,
132 FIO_SGIO = 1 << 4,
133 FIO_SPLICEIO = 1 << 5 | FIO_SYNCIO,
Jens Axboeb990b5c2006-09-14 09:48:22 +0200134 FIO_CPUIO = 1 << 6,
Jens Axboee9c047a2006-06-07 21:13:04 +0200135};
136
137/*
138 * This describes a single thread/process executing a fio job.
139 */
Jens Axboeebac4652005-12-08 15:25:21 +0100140struct thread_data {
Jens Axboee9c047a2006-06-07 21:13:04 +0200141 char name[32];
142 char *file_name;
Jens Axboeef899b62006-06-06 09:31:00 +0200143 char *directory;
Jens Axboeebac4652005-12-08 15:25:21 +0100144 char verror[80];
145 pthread_t thread;
146 int thread_number;
147 int groupid;
Jens Axboee9c047a2006-06-07 21:13:04 +0200148 enum fio_filetype filetype;
Jens Axboeebac4652005-12-08 15:25:21 +0100149 int error;
150 int fd;
151 void *mmap;
152 pid_t pid;
153 char *orig_buffer;
154 size_t orig_buffer_size;
155 volatile int terminate;
156 volatile int runstate;
Jens Axboee9c047a2006-06-07 21:13:04 +0200157 enum fio_ddir ddir;
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200158 unsigned int iomix;
Jens Axboeebac4652005-12-08 15:25:21 +0100159 unsigned int ioprio;
Jens Axboee9c047a2006-06-07 21:13:04 +0200160
161 unsigned char sequential;
162 unsigned char odirect;
163 unsigned char create_file;
164 unsigned char invalidate_cache;
165 unsigned char create_serialize;
166 unsigned char create_fsync;
167 unsigned char end_fsync;
168 unsigned char sync_io;
169 unsigned char verify;
170 unsigned char use_thread;
171 unsigned char do_disk_util;
172 unsigned char override_sync;
Jens Axboe9ebc27e2006-06-12 10:21:50 +0200173 unsigned char rand_repeatable;
Jens Axboee9c047a2006-06-07 21:13:04 +0200174
Jens Axboeebac4652005-12-08 15:25:21 +0100175 unsigned int bs;
176 unsigned int min_bs;
177 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100178 unsigned int thinktime;
179 unsigned int fsync_blocks;
180 unsigned int start_delay;
Jens Axboe906c8d72006-06-13 09:37:56 +0200181 unsigned long timeout;
Jens Axboee9c047a2006-06-07 21:13:04 +0200182 enum fio_iotype io_engine;
Jens Axboeebac4652005-12-08 15:25:21 +0100183 unsigned int overwrite;
Jens Axboeebac4652005-12-08 15:25:21 +0100184 unsigned int bw_avg_time;
Jens Axboeebac4652005-12-08 15:25:21 +0100185 unsigned int loops;
186 unsigned long long file_size;
Jens Axboe838a3cd2006-01-20 12:38:29 +0100187 unsigned long long real_file_size;
Jens Axboeebac4652005-12-08 15:25:21 +0100188 unsigned long long file_offset;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100189 unsigned long long zone_size;
190 unsigned long long zone_skip;
Jens Axboee9c047a2006-06-07 21:13:04 +0200191 enum fio_memtype mem_type;
Jens Axboeebac4652005-12-08 15:25:21 +0100192 unsigned int stonewall;
193 unsigned int numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100194 unsigned int iodepth;
195 os_cpu_mask_t cpumask;
Jens Axboeaea47d42006-05-26 19:27:29 +0200196 unsigned int iolog;
Jens Axboe843a7412006-06-01 21:14:21 -0700197 unsigned int read_iolog;
198 unsigned int write_iolog;
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200199 unsigned int rwmixcycle;
200 unsigned int rwmixread;
Jens Axboeb6f4d882006-06-02 10:32:51 +0200201 unsigned int nice;
Jens Axboeaea47d42006-05-26 19:27:29 +0200202
Jens Axboeef899b62006-06-06 09:31:00 +0200203 char *iolog_file;
Jens Axboe843a7412006-06-01 21:14:21 -0700204 void *iolog_buf;
205 FILE *iolog_f;
Jens Axboeebac4652005-12-08 15:25:21 +0100206
Jens Axboeda867742006-06-06 10:39:10 -0700207 char *sysfs_root;
Jens Axboeda867742006-06-06 10:39:10 -0700208 char *ioscheduler;
209
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200210 os_random_state_t bsrange_state;
211 os_random_state_t verify_state;
Jens Axboeebac4652005-12-08 15:25:21 +0100212
213 int shm_id;
214
Jens Axboee9c047a2006-06-07 21:13:04 +0200215 /*
216 * IO engine hooks, contains everything needed to submit an io_u
217 * to any of the available IO engines.
218 */
Jens Axboeebac4652005-12-08 15:25:21 +0100219 void *io_data;
220 char io_engine_name[16];
221 int (*io_prep)(struct thread_data *, struct io_u *);
222 int (*io_queue)(struct thread_data *, struct io_u *);
223 int (*io_getevents)(struct thread_data *, int, int, struct timespec *);
224 struct io_u *(*io_event)(struct thread_data *, int);
225 int (*io_cancel)(struct thread_data *, struct io_u *);
226 void (*io_cleanup)(struct thread_data *);
227 int (*io_sync)(struct thread_data *);
228
Jens Axboee9c047a2006-06-07 21:13:04 +0200229 /*
230 * Current IO depth and list of free and busy io_u's.
231 */
Jens Axboeebac4652005-12-08 15:25:21 +0100232 unsigned int cur_depth;
233 struct list_head io_u_freelist;
234 struct list_head io_u_busylist;
235
Jens Axboee9c047a2006-06-07 21:13:04 +0200236 /*
237 * Rate state
238 */
Jens Axboeebac4652005-12-08 15:25:21 +0100239 unsigned int rate;
240 unsigned int ratemin;
241 unsigned int ratecycle;
242 unsigned long rate_usec_cycle;
243 long rate_pending_usleep;
244 unsigned long rate_bytes;
245 struct timeval lastrate;
246
247 unsigned long runtime[2]; /* msec */
248 unsigned long long io_size;
249 unsigned long long total_io_size;
250
Jens Axboe9104f872005-12-28 23:50:45 +0100251 unsigned long long io_blocks[2];
252 unsigned long long io_bytes[2];
253 unsigned long long zone_bytes;
254 unsigned long long this_io_bytes[2];
Jens Axboe20dc95c2005-12-09 10:29:35 +0100255 unsigned long long last_pos;
Jens Axboebbfd6b02006-06-07 19:42:54 +0200256 volatile int mutex;
Jens Axboeebac4652005-12-08 15:25:21 +0100257
Jens Axboee9c047a2006-06-07 21:13:04 +0200258 /*
259 * State for random io, a bitmap of blocks done vs not done
260 */
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200261 os_random_state_t random_state;
Jens Axboeebac4652005-12-08 15:25:21 +0100262 unsigned long *file_map;
263 unsigned int num_maps;
264
265 /*
Jens Axboeb990b5c2006-09-14 09:48:22 +0200266 * CPU "io" cycle burner
267 */
268 unsigned int cpuload;
269 unsigned int cpucycle;
270
271 /*
Jens Axboeebac4652005-12-08 15:25:21 +0100272 * bandwidth and latency stats
273 */
274 struct io_stat clat_stat[2]; /* completion latency */
275 struct io_stat slat_stat[2]; /* submission latency */
276 struct io_stat bw_stat[2]; /* bandwidth stats */
277
Jens Axboe9104f872005-12-28 23:50:45 +0100278 unsigned long long stat_io_bytes[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100279 struct timeval stat_sample_time[2];
280
281 struct io_log *slat_log;
282 struct io_log *clat_log;
283 struct io_log *bw_log;
284
285 struct timeval start; /* start of this loop */
286 struct timeval epoch; /* time job was started */
287
Jens Axboee9c047a2006-06-07 21:13:04 +0200288 /*
289 * fio system usage accounting
290 */
Jens Axboeebac4652005-12-08 15:25:21 +0100291 struct rusage ru_start;
292 struct rusage ru_end;
293 unsigned long usr_time;
294 unsigned long sys_time;
295 unsigned long ctx;
296
Jens Axboee9c047a2006-06-07 21:13:04 +0200297 /*
298 * read/write mixed workload state
299 */
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200300 os_random_state_t rwmix_state;
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200301 struct timeval rwmix_switch;
Jens Axboee9c047a2006-06-07 21:13:04 +0200302 enum fio_ddir rwmix_ddir;
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200303
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200304 /*
305 * Pre-run and post-run shell
306 */
307 char *exec_prerun;
308 char *exec_postrun;
309
Jens Axboee9c047a2006-06-07 21:13:04 +0200310 /*
311 * IO historic logs
312 */
Jens Axboeebac4652005-12-08 15:25:21 +0100313 struct list_head io_hist_list;
Jens Axboeaea47d42006-05-26 19:27:29 +0200314 struct list_head io_log_list;
Jens Axboeebac4652005-12-08 15:25:21 +0100315};
316
Jens Axboeb990b5c2006-09-14 09:48:22 +0200317#define __td_verror(td, err, msg) \
Jens Axboeebac4652005-12-08 15:25:21 +0100318 do { \
319 int e = (err); \
320 (td)->error = e; \
Jens Axboeb990b5c2006-09-14 09:48:22 +0200321 snprintf(td->verror, sizeof(td->verror) - 1, "file:%s:%d, error=%s", __FILE__, __LINE__, (msg)); \
Jens Axboeebac4652005-12-08 15:25:21 +0100322 } while (0)
323
Jens Axboeb990b5c2006-09-14 09:48:22 +0200324
325#define td_verror(td, err) __td_verror((td), (err), strerror((err)))
326#define td_vmsg(td, err, msg) __td_verror((td), (err), (msg))
327
Jens Axboeb1ff3402006-02-17 11:35:58 +0100328extern struct io_u *__get_io_u(struct thread_data *);
329extern void put_io_u(struct thread_data *, struct io_u *);
Jens Axboeebac4652005-12-08 15:25:21 +0100330
331extern int rate_quit;
332extern int write_lat_log;
333extern int write_bw_log;
334extern int exitall_on_terminate;
335extern int thread_number;
336extern int shm_id;
337extern int groupid;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200338extern int terse_output;
Jens Axboeeb8bbf42006-06-08 21:40:11 +0200339extern FILE *f_out;
340extern FILE *f_err;
Jens Axboeebac4652005-12-08 15:25:21 +0100341
342extern struct thread_data *threads;
343
Jens Axboeebac4652005-12-08 15:25:21 +0100344#define td_read(td) ((td)->ddir == DDIR_READ)
345#define td_write(td) ((td)->ddir == DDIR_WRITE)
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200346#define td_rw(td) ((td)->iomix != 0)
Jens Axboeebac4652005-12-08 15:25:21 +0100347
348#define BLOCKS_PER_MAP (8 * sizeof(long))
349#define TO_MAP_BLOCK(td, b) ((b) - ((td)->file_offset / (td)->min_bs))
350#define RAND_MAP_IDX(td, b) (TO_MAP_BLOCK(td, b) / BLOCKS_PER_MAP)
351#define RAND_MAP_BIT(td, b) (TO_MAP_BLOCK(td, b) & (BLOCKS_PER_MAP - 1))
352
353#define MAX_JOBS (1024)
354
355struct disk_util_stat {
356 unsigned ios[2];
357 unsigned merges[2];
358 unsigned long long sectors[2];
359 unsigned ticks[2];
360 unsigned io_ticks;
361 unsigned time_in_queue;
362};
363
364struct disk_util {
365 struct list_head list;
366
367 char *name;
368 char path[256];
369 dev_t dev;
370
371 struct disk_util_stat dus;
372 struct disk_util_stat last_dus;
373
374 unsigned long msec;
375 struct timeval time;
376};
377
378struct io_completion_data {
379 int nr; /* input */
380
381 int error; /* output */
382 unsigned long bytes_done[2]; /* output */
383};
384
385#define DISK_UTIL_MSEC (250)
386
Jens Axboe6a0106a2006-05-05 10:34:43 +0200387#ifndef min
388#define min(a, b) ((a) < (b) ? (a) : (b))
389#endif
390
Jens Axboe67962092006-06-07 08:45:01 +0200391/*
392 * Log exports
393 */
394extern int read_iolog_get(struct thread_data *, struct io_u *);
395extern void write_iolog_put(struct thread_data *, struct io_u *);
396extern int init_iolog(struct thread_data *td);
397extern void log_io_piece(struct thread_data *, struct io_u *);
398extern void prune_io_piece_log(struct thread_data *);
399extern void write_iolog_close(struct thread_data *);
400
401/*
402 * Logging
403 */
404extern void add_clat_sample(struct thread_data *, int, unsigned long);
405extern void add_slat_sample(struct thread_data *, int, unsigned long);
406extern void add_bw_sample(struct thread_data *, int);
407extern void show_run_stats(void);
408extern void init_disk_util(struct thread_data *);
409extern void update_rusage_stat(struct thread_data *);
410extern void update_io_ticks(void);
411extern void disk_util_timer_arm(void);
Jens Axboe8914a9d2006-06-07 11:14:56 +0200412extern void setup_log(struct io_log **);
413extern void finish_log(struct thread_data *, struct io_log *, const char *);
414extern int setup_rate(struct thread_data *);
Jens Axboe67962092006-06-07 08:45:01 +0200415
416/*
417 * Time functions
418 */
419extern unsigned long utime_since(struct timeval *, struct timeval *);
420extern unsigned long mtime_since(struct timeval *, struct timeval *);
421extern unsigned long mtime_since_now(struct timeval *);
422extern unsigned long time_since_now(struct timeval *);
Jens Axboeb990b5c2006-09-14 09:48:22 +0200423extern void __usec_sleep(unsigned int);
Jens Axboe67962092006-06-07 08:45:01 +0200424extern void usec_sleep(struct thread_data *, unsigned long);
425extern void rate_throttle(struct thread_data *, unsigned long, unsigned int);
426
Jens Axboe8914a9d2006-06-07 11:14:56 +0200427/*
428 * Init functions
429 */
430extern int parse_options(int, char **);
431extern int init_random_state(struct thread_data *);
432
Jens Axboebbfd6b02006-06-07 19:42:54 +0200433/*
434 * This is a pretty crappy semaphore implementation, but with the use that fio
435 * has (just signalling start/go conditions), it doesn't have to be better.
436 * Naturally this would not work for any type of contended semaphore or
437 * for real locking.
438 */
Jens Axboe1056eaa2006-07-13 10:33:45 -0700439static inline void fio_sem_init(volatile int *sem, int val)
Jens Axboebbfd6b02006-06-07 19:42:54 +0200440{
441 *sem = val;
442}
443
Jens Axboe1056eaa2006-07-13 10:33:45 -0700444static inline void fio_sem_down(volatile int *sem)
Jens Axboebbfd6b02006-06-07 19:42:54 +0200445{
446 while (*sem == 0)
447 usleep(10000);
448
449 (*sem)--;
450}
451
Jens Axboe1056eaa2006-07-13 10:33:45 -0700452static inline void fio_sem_up(volatile int *sem)
Jens Axboebbfd6b02006-06-07 19:42:54 +0200453{
454 (*sem)++;
455}
456
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200457/*
458 * If logging output to a file, stderr should go to both stderr and f_err
459 */
460#define log_err(args...) do { \
461 fprintf(f_err, ##args); \
462 if (f_err != stderr) \
463 fprintf(stderr, ##args); \
464 } while (0)
465
Jens Axboeebac4652005-12-08 15:25:21 +0100466#endif