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