blob: 8880ea61e7a518c02bc33840f9b0f8571a0c6b76 [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 Axboe34cfcda2006-11-03 14:00:45 +010013#include <string.h>
Jens Axboeebac4652005-12-08 15:25:21 +010014
15#include "list.h"
16#include "md5.h"
17#include "crc32.h"
18#include "arch.h"
19#include "os.h"
20
Jens Axboeb6959b52007-02-14 21:40:27 +000021#ifdef FIO_HAVE_SYSLET
Jens Axboea4f4fdd2007-02-14 01:16:39 +010022#include "syslet.h"
Jens Axboeb6959b52007-02-14 21:40:27 +000023#endif
Jens Axboea4f4fdd2007-02-14 01:16:39 +010024
Jens Axboe1e97cce2006-12-05 11:44:16 +010025enum fio_ddir {
26 DDIR_READ = 0,
27 DDIR_WRITE,
28 DDIR_SYNC,
29};
30
Jens Axboe413dd452007-02-23 09:26:09 +010031enum td_ddir {
32 TD_DDIR_READ = 1 << 0,
33 TD_DDIR_WRITE = 1 << 1,
34 TD_DDIR_RAND = 1 << 2,
35 TD_DDIR_RW = TD_DDIR_READ | TD_DDIR_WRITE,
36};
37
Jens Axboe1c9e06e2007-02-11 04:07:57 +010038/*
39 * Use for maintaining statistics
40 */
Jens Axboeebac4652005-12-08 15:25:21 +010041struct io_stat {
Jens Axboeebac4652005-12-08 15:25:21 +010042 unsigned long max_val;
43 unsigned long min_val;
44 unsigned long samples;
Jens Axboe68704082007-01-10 19:56:37 +010045
46 double mean;
47 double S;
Jens Axboeebac4652005-12-08 15:25:21 +010048};
49
Jens Axboe1c9e06e2007-02-11 04:07:57 +010050/*
51 * A single data sample
52 */
Jens Axboeebac4652005-12-08 15:25:21 +010053struct io_sample {
54 unsigned long time;
55 unsigned long val;
Jens Axboe1e97cce2006-12-05 11:44:16 +010056 enum fio_ddir ddir;
Jens Axboeebac4652005-12-08 15:25:21 +010057};
58
Jens Axboe1c9e06e2007-02-11 04:07:57 +010059/*
60 * Dynamically growing data sample log
61 */
Jens Axboeebac4652005-12-08 15:25:21 +010062struct io_log {
63 unsigned long nr_samples;
64 unsigned long max_samples;
65 struct io_sample *log;
66};
67
Jens Axboe1c9e06e2007-02-11 04:07:57 +010068/*
69 * When logging io actions, this matches a single sent io_u
70 */
Jens Axboeebac4652005-12-08 15:25:21 +010071struct io_piece {
72 struct list_head list;
Jens Axboe53cdc682006-10-18 11:50:58 +020073 struct fio_file *file;
Jens Axboeebac4652005-12-08 15:25:21 +010074 unsigned long long offset;
Jens Axboea4f4fdd2007-02-14 01:16:39 +010075 unsigned long len;
Jens Axboe1e97cce2006-12-05 11:44:16 +010076 enum fio_ddir ddir;
Jens Axboeebac4652005-12-08 15:25:21 +010077};
78
Jens Axboea4f4fdd2007-02-14 01:16:39 +010079#ifdef FIO_HAVE_SYSLET
80struct syslet_req {
81 struct syslet_uatom atom;
Jens Axboea4f4fdd2007-02-14 01:16:39 +010082 long ret;
83};
84#endif
85
Jens Axboe0c6e7512007-02-22 11:19:39 +010086enum {
87 IO_U_F_FREE = 1 << 0,
88 IO_U_F_FLIGHT = 1 << 1,
89};
90
Jens Axboeebac4652005-12-08 15:25:21 +010091/*
92 * The io unit
93 */
94struct io_u {
95 union {
96#ifdef FIO_HAVE_LIBAIO
97 struct iocb iocb;
98#endif
99#ifdef FIO_HAVE_POSIXAIO
100 struct aiocb aiocb;
101#endif
102#ifdef FIO_HAVE_SGIO
103 struct sg_io_hdr hdr;
104#endif
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100105#ifdef FIO_HAVE_SYSLET
Jens Axboea2e1b082007-02-14 08:06:19 +0100106 struct syslet_req req;
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100107#endif
Jens Axboeebac4652005-12-08 15:25:21 +0100108 };
109 struct timeval start_time;
110 struct timeval issue_time;
111
Jens Axboe1c9e06e2007-02-11 04:07:57 +0100112 /*
113 * Allocated/set buffer and length
114 */
Jens Axboe6b9cea22006-10-30 17:00:24 +0100115 void *buf;
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100116 unsigned long buflen;
Jens Axboeebac4652005-12-08 15:25:21 +0100117 unsigned long long offset;
118
Jens Axboe1c9e06e2007-02-11 04:07:57 +0100119 /*
120 * IO engine state, may be different from above when we get
121 * partial transfers / residual data counts
122 */
Jens Axboecec6b552007-02-06 20:15:38 +0100123 void *xfer_buf;
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100124 unsigned long xfer_buflen;
Jens Axboecec6b552007-02-06 20:15:38 +0100125
Jens Axboeebac4652005-12-08 15:25:21 +0100126 unsigned int resid;
127 unsigned int error;
128
Jens Axboe1e97cce2006-12-05 11:44:16 +0100129 enum fio_ddir ddir;
Jens Axboeebac4652005-12-08 15:25:21 +0100130
Jens Axboedfd7bc22006-10-24 12:17:57 +0200131 /*
132 * io engine private data
133 */
134 union {
135 unsigned int index;
136 unsigned int seen;
137 };
138
Jens Axboe0c6e7512007-02-22 11:19:39 +0100139 unsigned int flags;
140
Jens Axboe53cdc682006-10-18 11:50:58 +0200141 struct fio_file *file;
142
Jens Axboeebac4652005-12-08 15:25:21 +0100143 struct list_head list;
144};
145
Jens Axboe36167d82007-02-18 05:41:31 +0100146/*
147 * io_ops->queue() return values
148 */
149enum {
150 FIO_Q_COMPLETED = 0, /* completed sync */
151 FIO_Q_QUEUED = 1, /* queued, will complete async */
Jens Axboe755200a2007-02-19 13:08:12 +0100152 FIO_Q_BUSY = 2, /* no more room, call ->commit() */
Jens Axboe36167d82007-02-18 05:41:31 +0100153};
154
Jens Axboeebac4652005-12-08 15:25:21 +0100155#define FIO_HDR_MAGIC 0xf00baaef
156
157enum {
Jens Axboe1c9e06e2007-02-11 04:07:57 +0100158 VERIFY_NONE = 0, /* no verification */
159 VERIFY_MD5, /* md5 sum data blocks */
160 VERIFY_CRC32, /* crc32 sum data blocks */
Jens Axboeebac4652005-12-08 15:25:21 +0100161};
162
Jens Axboe1c9e06e2007-02-11 04:07:57 +0100163/*
164 * A header structure associated with each checksummed data block
165 */
Jens Axboeebac4652005-12-08 15:25:21 +0100166struct verify_header {
167 unsigned int fio_magic;
168 unsigned int len;
169 unsigned int verify_type;
170 union {
171 char md5_digest[MD5_HASH_WORDS * 4];
172 unsigned long crc32;
173 };
174};
175
176struct group_run_stats {
Jens Axboe9104f872005-12-28 23:50:45 +0100177 unsigned long long max_run[2], min_run[2];
178 unsigned long long max_bw[2], min_bw[2];
Jens Axboee9b2a3f2006-06-06 15:38:33 +0200179 unsigned long long io_kb[2];
Jens Axboe9104f872005-12-28 23:50:45 +0100180 unsigned long long agg[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100181};
182
Jens Axboee9c047a2006-06-07 21:13:04 +0200183/*
184 * What type of allocation to use for io buffers
185 */
186enum fio_memtype {
187 MEM_MALLOC = 0, /* ordinary malloc */
188 MEM_SHM, /* use shared memory segments */
Jens Axboe74b025b2006-12-19 15:18:14 +0100189 MEM_SHMHUGE, /* use shared memory segments with huge pages */
Jens Axboee9c047a2006-06-07 21:13:04 +0200190 MEM_MMAP, /* use anonynomous mmap */
Jens Axboed0bdaf42006-12-20 14:40:44 +0100191 MEM_MMAPHUGE, /* memory mapped huge file */
Jens Axboee9c047a2006-06-07 21:13:04 +0200192};
193
194/*
195 * The type of object we are working on
196 */
197enum fio_filetype {
Jens Axboe1c9e06e2007-02-11 04:07:57 +0100198 FIO_TYPE_FILE = 1, /* plain file */
199 FIO_TYPE_BD, /* block device */
200 FIO_TYPE_CHAR, /* character device */
Jens Axboee9c047a2006-06-07 21:13:04 +0200201};
202
Jens Axboe2866c822006-10-09 15:57:48 +0200203enum fio_ioengine_flags {
Jens Axboe1c9e06e2007-02-11 04:07:57 +0100204 FIO_SYNCIO = 1 << 0, /* io engine has synchronous ->queue */
205 FIO_CPUIO = 1 << 1, /* cpu burner, doesn't do real io */
206 FIO_MMAPIO = 1 << 2, /* uses memory mapped io */
207 FIO_RAWIO = 1 << 3, /* some sort of direct/raw io */
208 FIO_NETIO = 1 << 4, /* networked io */
209 FIO_NULLIO = 1 << 5, /* no real data transfer (cpu/null) */
Jens Axboee9c047a2006-06-07 21:13:04 +0200210};
211
Jens Axboe1c9e06e2007-02-11 04:07:57 +0100212/*
213 * Each thread_data structure has a number of files associated with it,
214 * this structure holds state information for a single file.
215 */
Jens Axboe53cdc682006-10-18 11:50:58 +0200216struct fio_file {
217 /*
218 * A file may not be a file descriptor, let the io engine decide
219 */
220 union {
221 unsigned long file_data;
Jens Axboee26f8f72007-02-17 04:39:54 +0100222 int fd;
Jens Axboe53cdc682006-10-18 11:50:58 +0200223 };
224 char *file_name;
225 void *mmap;
226 unsigned long long file_size;
227 unsigned long long real_file_size;
228 unsigned long long file_offset;
229 unsigned long long last_pos;
Jens Axboe02bcaa82006-11-24 10:42:00 +0100230 unsigned long long last_completed_pos;
Jens Axboe53cdc682006-10-18 11:50:58 +0200231
Jens Axboe1c9e06e2007-02-11 04:07:57 +0100232 /*
233 * block map for random io
234 */
Jens Axboe53cdc682006-10-18 11:50:58 +0200235 unsigned long *file_map;
236 unsigned int num_maps;
Jens Axboe1c9e06e2007-02-11 04:07:57 +0100237 unsigned int last_free_lookup;
Jens Axboe9b031dc2006-12-15 16:01:54 +0100238
239 unsigned int unlink;
Jens Axboe53cdc682006-10-18 11:50:58 +0200240};
241
Jens Axboe079ad092007-02-20 13:58:20 +0100242struct thread_stat {
243 struct io_log *slat_log;
244 struct io_log *clat_log;
245 struct io_log *bw_log;
246
247 /*
248 * bandwidth and latency stats
249 */
250 struct io_stat clat_stat[2]; /* completion latency */
251 struct io_stat slat_stat[2]; /* submission latency */
252 struct io_stat bw_stat[2]; /* bandwidth stats */
253
254 unsigned long long stat_io_bytes[2];
255 struct timeval stat_sample_time[2];
256
257 /*
258 * fio system usage accounting
259 */
260 struct rusage ru_start;
261 struct rusage ru_end;
262 unsigned long usr_time;
263 unsigned long sys_time;
264 unsigned long ctx;
265};
266
Jens Axboee9c047a2006-06-07 21:13:04 +0200267/*
Jens Axboe71619dc2007-01-13 23:56:33 +0100268 * How many depth levels to log
269 */
270#define FIO_IO_U_MAP_NR 8
Jens Axboeec118302007-02-17 04:38:20 +0100271#define FIO_IO_U_LAT_NR 12
Jens Axboe71619dc2007-01-13 23:56:33 +0100272
273/*
Jens Axboee9c047a2006-06-07 21:13:04 +0200274 * This describes a single thread/process executing a fio job.
275 */
Jens Axboeebac4652005-12-08 15:25:21 +0100276struct thread_data {
Jens Axboe61697c32007-02-05 15:04:46 +0100277 char *description;
Jens Axboeb4692822006-10-27 13:43:22 +0200278 char *name;
Jens Axboeef899b62006-06-06 09:31:00 +0200279 char *directory;
Jens Axboe13f8e2d2006-10-24 09:29:45 +0200280 char *filename;
Jens Axboeebac4652005-12-08 15:25:21 +0100281 char verror[80];
282 pthread_t thread;
283 int thread_number;
284 int groupid;
Jens Axboe079ad092007-02-20 13:58:20 +0100285 struct thread_stat ts;
Jens Axboee9c047a2006-06-07 21:13:04 +0200286 enum fio_filetype filetype;
Jens Axboe53cdc682006-10-18 11:50:58 +0200287 struct fio_file *files;
288 unsigned int nr_files;
Jens Axboe13f8e2d2006-10-24 09:29:45 +0200289 unsigned int nr_uniq_files;
Jens Axboe0aabe162007-02-23 08:45:55 +0100290 union {
291 unsigned int next_file;
292 os_random_state_t next_file_state;
293 };
Jens Axboeebac4652005-12-08 15:25:21 +0100294 int error;
Jens Axboeebac4652005-12-08 15:25:21 +0100295 pid_t pid;
296 char *orig_buffer;
297 size_t orig_buffer_size;
298 volatile int terminate;
299 volatile int runstate;
Jens Axboe413dd452007-02-23 09:26:09 +0100300 enum td_ddir td_ddir;
Jens Axboeebac4652005-12-08 15:25:21 +0100301 unsigned int ioprio;
Jens Axboe87dc1ab2006-10-24 14:41:26 +0200302 unsigned int last_was_sync;
Jens Axboee9c047a2006-06-07 21:13:04 +0200303
Jens Axboe9158d2f2006-10-27 14:27:39 +0200304 unsigned int odirect;
305 unsigned int invalidate_cache;
306 unsigned int create_serialize;
307 unsigned int create_fsync;
308 unsigned int end_fsync;
309 unsigned int sync_io;
310 unsigned int verify;
311 unsigned int use_thread;
312 unsigned int unlink;
313 unsigned int do_disk_util;
314 unsigned int override_sync;
315 unsigned int rand_repeatable;
316 unsigned int write_lat_log;
317 unsigned int write_bw_log;
Jens Axboebb8895e2006-10-30 15:14:48 +0100318 unsigned int norandommap;
Jens Axboe690adba2006-10-30 15:25:09 +0100319 unsigned int bs_unaligned;
Jens Axboee9c047a2006-06-07 21:13:04 +0200320
Jens Axboea00735e2006-11-03 08:58:08 +0100321 unsigned int bs[2];
322 unsigned int min_bs[2];
323 unsigned int max_bs[2];
Jens Axboe56bb17f2006-12-20 20:27:36 +0100324 unsigned int hugepage_size;
Jens Axboea00735e2006-11-03 08:58:08 +0100325 unsigned int rw_min_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100326 unsigned int thinktime;
Jens Axboe48097d52007-02-17 06:30:44 +0100327 unsigned int thinktime_spin;
Jens Axboe9c1f7432007-01-03 20:43:19 +0100328 unsigned int thinktime_blocks;
Jens Axboeebac4652005-12-08 15:25:21 +0100329 unsigned int fsync_blocks;
330 unsigned int start_delay;
Jens Axboe906c8d72006-06-13 09:37:56 +0200331 unsigned long timeout;
Jens Axboeebac4652005-12-08 15:25:21 +0100332 unsigned int overwrite;
Jens Axboeebac4652005-12-08 15:25:21 +0100333 unsigned int bw_avg_time;
Jens Axboeebac4652005-12-08 15:25:21 +0100334 unsigned int loops;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100335 unsigned long long zone_size;
336 unsigned long long zone_skip;
Jens Axboee9c047a2006-06-07 21:13:04 +0200337 enum fio_memtype mem_type;
Jens Axboe313cb202006-12-21 09:50:00 +0100338 char *mmapfile;
339 int mmapfd;
Jens Axboeebac4652005-12-08 15:25:21 +0100340 unsigned int stonewall;
341 unsigned int numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100342 unsigned int iodepth;
Jens Axboee916b392007-02-20 14:37:26 +0100343 unsigned int iodepth_low;
Jens Axboeebac4652005-12-08 15:25:21 +0100344 os_cpu_mask_t cpumask;
Jens Axboeaea47d42006-05-26 19:27:29 +0200345 unsigned int iolog;
Jens Axboe843a7412006-06-01 21:14:21 -0700346 unsigned int read_iolog;
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200347 unsigned int rwmixcycle;
348 unsigned int rwmixread;
Jens Axboee1f36502006-10-27 10:54:08 +0200349 unsigned int rwmixwrite;
Jens Axboeb6f4d882006-06-02 10:32:51 +0200350 unsigned int nice;
Jens Axboe0aabe162007-02-23 08:45:55 +0100351 unsigned int file_service_type;
Jens Axboeaea47d42006-05-26 19:27:29 +0200352
Jens Axboe076efc72006-10-27 11:24:25 +0200353 char *read_iolog_file;
354 char *write_iolog_file;
Jens Axboe843a7412006-06-01 21:14:21 -0700355 void *iolog_buf;
356 FILE *iolog_f;
Jens Axboeebac4652005-12-08 15:25:21 +0100357
Jens Axboeda867742006-06-06 10:39:10 -0700358 char *sysfs_root;
Jens Axboeda867742006-06-06 10:39:10 -0700359 char *ioscheduler;
360
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200361 os_random_state_t bsrange_state;
362 os_random_state_t verify_state;
Jens Axboeebac4652005-12-08 15:25:21 +0100363
364 int shm_id;
365
Jens Axboee9c047a2006-06-07 21:13:04 +0200366 /*
367 * IO engine hooks, contains everything needed to submit an io_u
368 * to any of the available IO engines.
369 */
Jens Axboe2866c822006-10-09 15:57:48 +0200370 struct ioengine_ops *io_ops;
Jens Axboeebac4652005-12-08 15:25:21 +0100371
Jens Axboee9c047a2006-06-07 21:13:04 +0200372 /*
373 * Current IO depth and list of free and busy io_u's.
374 */
Jens Axboeebac4652005-12-08 15:25:21 +0100375 unsigned int cur_depth;
Jens Axboe71619dc2007-01-13 23:56:33 +0100376 unsigned int io_u_map[FIO_IO_U_MAP_NR];
Jens Axboeec118302007-02-17 04:38:20 +0100377 unsigned int io_u_lat[FIO_IO_U_LAT_NR];
Jens Axboe71619dc2007-01-13 23:56:33 +0100378 unsigned long total_io_u;
Jens Axboeebac4652005-12-08 15:25:21 +0100379 struct list_head io_u_freelist;
380 struct list_head io_u_busylist;
Jens Axboe755200a2007-02-19 13:08:12 +0100381 struct list_head io_u_requeues;
Jens Axboeebac4652005-12-08 15:25:21 +0100382
Jens Axboee9c047a2006-06-07 21:13:04 +0200383 /*
384 * Rate state
385 */
Jens Axboeebac4652005-12-08 15:25:21 +0100386 unsigned int rate;
387 unsigned int ratemin;
388 unsigned int ratecycle;
389 unsigned long rate_usec_cycle;
390 long rate_pending_usleep;
391 unsigned long rate_bytes;
392 struct timeval lastrate;
393
394 unsigned long runtime[2]; /* msec */
395 unsigned long long io_size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200396 unsigned long long total_file_size;
397 unsigned long long start_offset;
Jens Axboeebac4652005-12-08 15:25:21 +0100398 unsigned long long total_io_size;
399
Jens Axboe755200a2007-02-19 13:08:12 +0100400 unsigned long io_issues[2];
Jens Axboe9104f872005-12-28 23:50:45 +0100401 unsigned long long io_blocks[2];
402 unsigned long long io_bytes[2];
Jens Axboe9104f872005-12-28 23:50:45 +0100403 unsigned long long this_io_bytes[2];
Jens Axboe079ad092007-02-20 13:58:20 +0100404 unsigned long long zone_bytes;
Jens Axboebbfd6b02006-06-07 19:42:54 +0200405 volatile int mutex;
Jens Axboeebac4652005-12-08 15:25:21 +0100406
Jens Axboee9c047a2006-06-07 21:13:04 +0200407 /*
408 * State for random io, a bitmap of blocks done vs not done
409 */
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200410 os_random_state_t random_state;
Jens Axboeebac4652005-12-08 15:25:21 +0100411
412 /*
Jens Axboeb990b5c2006-09-14 09:48:22 +0200413 * CPU "io" cycle burner
414 */
415 unsigned int cpuload;
416 unsigned int cpucycle;
417
Jens Axboeebac4652005-12-08 15:25:21 +0100418 struct timeval start; /* start of this loop */
419 struct timeval epoch; /* time job was started */
Jens Axboe69008992006-11-24 13:12:56 +0100420 struct timeval end_time;/* time job ended */
Jens Axboeebac4652005-12-08 15:25:21 +0100421
Jens Axboee9c047a2006-06-07 21:13:04 +0200422 /*
Jens Axboee9c047a2006-06-07 21:13:04 +0200423 * read/write mixed workload state
424 */
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200425 os_random_state_t rwmix_state;
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200426 struct timeval rwmix_switch;
Jens Axboee9c047a2006-06-07 21:13:04 +0200427 enum fio_ddir rwmix_ddir;
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200428
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200429 /*
430 * Pre-run and post-run shell
431 */
432 char *exec_prerun;
433 char *exec_postrun;
434
Jens Axboee9c047a2006-06-07 21:13:04 +0200435 /*
436 * IO historic logs
437 */
Jens Axboeebac4652005-12-08 15:25:21 +0100438 struct list_head io_hist_list;
Jens Axboeaea47d42006-05-26 19:27:29 +0200439 struct list_head io_log_list;
Jens Axboe433afcb2007-02-22 10:39:01 +0100440
441 /*
442 * timeout handling
443 */
444 struct timeval timeout_end;
445 struct itimerval timer;
Jens Axboeebac4652005-12-08 15:25:21 +0100446};
447
Jens Axboe433afcb2007-02-22 10:39:01 +0100448/*
Jens Axboe0aabe162007-02-23 08:45:55 +0100449 * roundrobin available files, or choose one at random.
450 */
451enum {
452 FIO_FSERVICE_RANDOM = 1,
453 FIO_FSERVICE_RR = 2,
454};
455
456/*
Jens Axboe433afcb2007-02-22 10:39:01 +0100457 * 30 second per-io_u timeout, with 5 second intervals to avoid resetting
458 * the timer on each queue operation.
459 */
460#define IO_U_TIMEOUT_INC 5
461#define IO_U_TIMEOUT 30
462
Jens Axboee1161c32007-02-22 19:36:48 +0100463#define __td_verror(td, err, msg, func) \
Jens Axboeebac4652005-12-08 15:25:21 +0100464 do { \
Jens Axboe19abcd32007-02-21 20:14:33 +0100465 if ((td)->error) \
466 break; \
Jens Axboeebac4652005-12-08 15:25:21 +0100467 int e = (err); \
468 (td)->error = e; \
Jens Axboee1161c32007-02-22 19:36:48 +0100469 snprintf(td->verror, sizeof(td->verror) - 1, "file:%s:%d, func=%s, error=%s", __FILE__, __LINE__, (func), (msg)); \
Jens Axboeebac4652005-12-08 15:25:21 +0100470 } while (0)
471
Jens Axboeb990b5c2006-09-14 09:48:22 +0200472
Jens Axboee1161c32007-02-22 19:36:48 +0100473#define td_verror(td, err, func) \
474 __td_verror((td), (err), strerror((err)), (func))
475#define td_vmsg(td, err, msg, func) \
476 __td_verror((td), (err), (msg), (func))
Jens Axboeb990b5c2006-09-14 09:48:22 +0200477
Jens Axboeebac4652005-12-08 15:25:21 +0100478extern int exitall_on_terminate;
479extern int thread_number;
480extern int shm_id;
481extern int groupid;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200482extern int terse_output;
Jens Axboeeb8bbf42006-06-08 21:40:11 +0200483extern FILE *f_out;
484extern FILE *f_err;
Jens Axboe53cdc682006-10-18 11:50:58 +0200485extern int temp_stall_ts;
Jens Axboe1e97cce2006-12-05 11:44:16 +0100486extern unsigned long long mlock_size;
Jens Axboeebac4652005-12-08 15:25:21 +0100487
488extern struct thread_data *threads;
489
Jens Axboe413dd452007-02-23 09:26:09 +0100490#define td_read(td) ((td)->td_ddir & TD_DDIR_READ)
491#define td_write(td) ((td)->td_ddir & TD_DDIR_WRITE)
492#define td_rw(td) (((td)->td_ddir & TD_DDIR_RW) == TD_DDIR_RW)
493#define td_random(td) ((td)->td_ddir & TD_DDIR_RAND)
Jens Axboeebac4652005-12-08 15:25:21 +0100494
495#define BLOCKS_PER_MAP (8 * sizeof(long))
Jens Axboea00735e2006-11-03 08:58:08 +0100496#define TO_MAP_BLOCK(td, f, b) ((b) - ((f)->file_offset / (td)->rw_min_bs))
Jens Axboe53cdc682006-10-18 11:50:58 +0200497#define RAND_MAP_IDX(td, f, b) (TO_MAP_BLOCK(td, f, b) / BLOCKS_PER_MAP)
498#define RAND_MAP_BIT(td, f, b) (TO_MAP_BLOCK(td, f, b) & (BLOCKS_PER_MAP - 1))
Jens Axboeebac4652005-12-08 15:25:21 +0100499
500#define MAX_JOBS (1024)
501
Jens Axboe87dc1ab2006-10-24 14:41:26 +0200502static inline int should_fsync(struct thread_data *td)
503{
504 if (td->last_was_sync)
505 return 0;
506 if (td->odirect)
507 return 0;
508 if (td_write(td) || td_rw(td) || td->override_sync)
509 return 1;
510
511 return 0;
512}
513
Jens Axboe1c9e06e2007-02-11 04:07:57 +0100514/*
515 * Disk utils as read in /sys/block/<dev>/stat
516 */
Jens Axboeebac4652005-12-08 15:25:21 +0100517struct disk_util_stat {
518 unsigned ios[2];
519 unsigned merges[2];
520 unsigned long long sectors[2];
521 unsigned ticks[2];
522 unsigned io_ticks;
523 unsigned time_in_queue;
524};
525
Jens Axboe1c9e06e2007-02-11 04:07:57 +0100526/*
527 * Per-device disk util management
528 */
Jens Axboeebac4652005-12-08 15:25:21 +0100529struct disk_util {
530 struct list_head list;
531
532 char *name;
533 char path[256];
534 dev_t dev;
535
536 struct disk_util_stat dus;
537 struct disk_util_stat last_dus;
538
539 unsigned long msec;
540 struct timeval time;
541};
542
Jens Axboe1c9e06e2007-02-11 04:07:57 +0100543/*
Jens Axboe97601022007-02-18 12:47:29 +0100544 * Callback for io completion
Jens Axboe1c9e06e2007-02-11 04:07:57 +0100545 */
Jens Axboe97601022007-02-18 12:47:29 +0100546typedef int (endio_handler)(struct io_u *);
Jens Axboeebac4652005-12-08 15:25:21 +0100547
548#define DISK_UTIL_MSEC (250)
549
Jens Axboe6a0106a2006-05-05 10:34:43 +0200550#ifndef min
551#define min(a, b) ((a) < (b) ? (a) : (b))
552#endif
Jens Axboea00735e2006-11-03 08:58:08 +0100553#ifndef max
554#define max(a, b) ((a) > (b) ? (a) : (b))
555#endif
Jens Axboe6a0106a2006-05-05 10:34:43 +0200556
Jens Axboe67962092006-06-07 08:45:01 +0200557/*
558 * Log exports
559 */
Jens Axboe72cb9712007-02-20 20:54:45 +0100560extern int __must_check read_iolog_get(struct thread_data *, struct io_u *);
Jens Axboe67962092006-06-07 08:45:01 +0200561extern void write_iolog_put(struct thread_data *, struct io_u *);
Jens Axboe72cb9712007-02-20 20:54:45 +0100562extern int __must_check init_iolog(struct thread_data *td);
Jens Axboe67962092006-06-07 08:45:01 +0200563extern void log_io_piece(struct thread_data *, struct io_u *);
564extern void prune_io_piece_log(struct thread_data *);
565extern void write_iolog_close(struct thread_data *);
566
567/*
568 * Logging
569 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100570extern void add_clat_sample(struct thread_data *, enum fio_ddir, unsigned long);
571extern void add_slat_sample(struct thread_data *, enum fio_ddir, unsigned long);
572extern void add_bw_sample(struct thread_data *, enum fio_ddir, struct timeval *);
Jens Axboe67962092006-06-07 08:45:01 +0200573extern void show_run_stats(void);
574extern void init_disk_util(struct thread_data *);
575extern void update_rusage_stat(struct thread_data *);
576extern void update_io_ticks(void);
577extern void disk_util_timer_arm(void);
Jens Axboe8914a9d2006-06-07 11:14:56 +0200578extern void setup_log(struct io_log **);
579extern void finish_log(struct thread_data *, struct io_log *, const char *);
Jens Axboebb3884d2007-01-17 17:23:11 +1100580extern void __finish_log(struct io_log *, const char *);
Jens Axboe8914a9d2006-06-07 11:14:56 +0200581extern int setup_rate(struct thread_data *);
Jens Axboebb3884d2007-01-17 17:23:11 +1100582extern struct io_log *agg_io_log[2];
583extern int write_bw_log;
584extern void add_agg_sample(unsigned long, enum fio_ddir);
Jens Axboe67962092006-06-07 08:45:01 +0200585
586/*
587 * Time functions
588 */
589extern unsigned long utime_since(struct timeval *, struct timeval *);
Jens Axboe69008992006-11-24 13:12:56 +0100590extern unsigned long utime_since_now(struct timeval *);
Jens Axboe67962092006-06-07 08:45:01 +0200591extern unsigned long mtime_since(struct timeval *, struct timeval *);
592extern unsigned long mtime_since_now(struct timeval *);
593extern unsigned long time_since_now(struct timeval *);
Jens Axboe263e5292006-10-18 15:37:01 +0200594extern unsigned long mtime_since_genesis(void);
Jens Axboeb990b5c2006-09-14 09:48:22 +0200595extern void __usec_sleep(unsigned int);
Jens Axboe67962092006-06-07 08:45:01 +0200596extern void usec_sleep(struct thread_data *, unsigned long);
Jens Axboe413dd452007-02-23 09:26:09 +0100597extern void rate_throttle(struct thread_data *, unsigned long, unsigned int);
Jens Axboe6043c572006-11-03 11:37:47 +0100598extern void fill_start_time(struct timeval *);
Jens Axboe02bcaa82006-11-24 10:42:00 +0100599extern void fio_gettime(struct timeval *, void *);
Jens Axboea2f77c92007-02-22 11:53:00 +0100600extern void set_genesis_time(void);
Jens Axboe67962092006-06-07 08:45:01 +0200601
Jens Axboe8914a9d2006-06-07 11:14:56 +0200602/*
603 * Init functions
604 */
Jens Axboe72cb9712007-02-20 20:54:45 +0100605extern int __must_check parse_options(int, char **);
606extern int __must_check init_random_state(struct thread_data *);
Jens Axboe8914a9d2006-06-07 11:14:56 +0200607
Jens Axboebbfd6b02006-06-07 19:42:54 +0200608/*
Jens Axboe53cdc682006-10-18 11:50:58 +0200609 * File setup/shutdown
610 */
611extern void close_files(struct thread_data *);
Jens Axboeb2fdda42007-02-20 20:52:51 +0100612extern int __must_check setup_files(struct thread_data *);
613extern int __must_check open_files(struct thread_data *);
614extern int __must_check file_invalidate_cache(struct thread_data *, struct fio_file *);
Jens Axboe53cdc682006-10-18 11:50:58 +0200615
616/*
Jens Axboe263e5292006-10-18 15:37:01 +0200617 * ETA/status stuff
618 */
619extern void print_thread_status(void);
620extern void print_status_init(int);
621
622/*
623 * Thread life cycle. Once a thread has a runstate beyond TD_INITIALIZED, it
624 * will never back again. It may cycle between running/verififying/fsyncing.
625 * Once the thread reaches TD_EXITED, it is just waiting for the core to
626 * reap it.
627 */
628enum {
629 TD_NOT_CREATED = 0,
630 TD_CREATED,
631 TD_INITIALIZED,
632 TD_RUNNING,
633 TD_VERIFYING,
634 TD_FSYNCING,
635 TD_EXITED,
636 TD_REAPED,
637};
638
639/*
Jens Axboee29d1b72006-10-18 15:43:15 +0200640 * Verify helpers
641 */
642extern void populate_verify_io_u(struct thread_data *, struct io_u *);
Jens Axboeb2fdda42007-02-20 20:52:51 +0100643extern int __must_check get_next_verify(struct thread_data *td, struct io_u *);
644extern int __must_check verify_io_u(struct io_u *);
Jens Axboee29d1b72006-10-18 15:43:15 +0200645
646/*
Jens Axboe2f9ade32006-10-20 11:25:52 +0200647 * Memory helpers
648 */
Jens Axboeb2fdda42007-02-20 20:52:51 +0100649extern int __must_check fio_pin_memory(void);
Jens Axboe2f9ade32006-10-20 11:25:52 +0200650extern void fio_unpin_memory(void);
Jens Axboeb2fdda42007-02-20 20:52:51 +0100651extern int __must_check allocate_io_mem(struct thread_data *);
Jens Axboe2f9ade32006-10-20 11:25:52 +0200652extern void free_io_mem(struct thread_data *);
653
654/*
Jens Axboe10ba5352006-10-20 11:39:27 +0200655 * io unit handling
656 */
657#define queue_full(td) list_empty(&(td)->io_u_freelist)
658extern struct io_u *__get_io_u(struct thread_data *);
Jens Axboe3d7c3912007-02-19 13:16:12 +0100659extern struct io_u *get_io_u(struct thread_data *);
Jens Axboe10ba5352006-10-20 11:39:27 +0200660extern void put_io_u(struct thread_data *, struct io_u *);
Jens Axboe755200a2007-02-19 13:08:12 +0100661extern void requeue_io_u(struct thread_data *, struct io_u **);
Jens Axboeb2fdda42007-02-20 20:52:51 +0100662extern long __must_check io_u_sync_complete(struct thread_data *, struct io_u *, endio_handler *);
663extern long __must_check io_u_queued_complete(struct thread_data *, int, endio_handler *);
Jens Axboe7e77dd02007-02-20 10:57:34 +0100664extern void io_u_queued(struct thread_data *, struct io_u *);
Jens Axboe433afcb2007-02-22 10:39:01 +0100665extern void io_u_init_timeout(void);
666extern void io_u_set_timeout(struct thread_data *);
Jens Axboe10ba5352006-10-20 11:39:27 +0200667
668/*
669 * io engine entry points
670 */
Jens Axboeb2fdda42007-02-20 20:52:51 +0100671extern int __must_check td_io_init(struct thread_data *);
672extern int __must_check td_io_prep(struct thread_data *, struct io_u *);
673extern int __must_check td_io_queue(struct thread_data *, struct io_u *);
674extern int __must_check td_io_sync(struct thread_data *, struct fio_file *);
675extern int __must_check td_io_getevents(struct thread_data *, int, int, struct timespec *);
676extern int __must_check td_io_commit(struct thread_data *);
Jens Axboe10ba5352006-10-20 11:39:27 +0200677
678/*
Jens Axboebbfd6b02006-06-07 19:42:54 +0200679 * This is a pretty crappy semaphore implementation, but with the use that fio
680 * has (just signalling start/go conditions), it doesn't have to be better.
681 * Naturally this would not work for any type of contended semaphore or
682 * for real locking.
683 */
Jens Axboe1056eaa2006-07-13 10:33:45 -0700684static inline void fio_sem_init(volatile int *sem, int val)
Jens Axboebbfd6b02006-06-07 19:42:54 +0200685{
686 *sem = val;
687}
688
Jens Axboe1056eaa2006-07-13 10:33:45 -0700689static inline void fio_sem_down(volatile int *sem)
Jens Axboebbfd6b02006-06-07 19:42:54 +0200690{
691 while (*sem == 0)
692 usleep(10000);
693
694 (*sem)--;
695}
696
Jens Axboe1056eaa2006-07-13 10:33:45 -0700697static inline void fio_sem_up(volatile int *sem)
Jens Axboebbfd6b02006-06-07 19:42:54 +0200698{
699 (*sem)++;
700}
701
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200702/*
703 * If logging output to a file, stderr should go to both stderr and f_err
704 */
705#define log_err(args...) do { \
706 fprintf(f_err, ##args); \
707 if (f_err != stderr) \
708 fprintf(stderr, ##args); \
709 } while (0)
710
Jens Axboe2866c822006-10-09 15:57:48 +0200711struct ioengine_ops {
Jens Axboe5f350952006-11-07 15:20:59 +0100712 struct list_head list;
Jens Axboe2866c822006-10-09 15:57:48 +0200713 char name[16];
714 int version;
715 int flags;
Jens Axboeea2877a2006-10-10 08:30:24 +0200716 int (*setup)(struct thread_data *);
Jens Axboe2866c822006-10-09 15:57:48 +0200717 int (*init)(struct thread_data *);
718 int (*prep)(struct thread_data *, struct io_u *);
719 int (*queue)(struct thread_data *, struct io_u *);
Jens Axboe755200a2007-02-19 13:08:12 +0100720 int (*commit)(struct thread_data *);
Jens Axboe2866c822006-10-09 15:57:48 +0200721 int (*getevents)(struct thread_data *, int, int, struct timespec *);
722 struct io_u *(*event)(struct thread_data *, int);
723 int (*cancel)(struct thread_data *, struct io_u *);
724 void (*cleanup)(struct thread_data *);
Jens Axboe2866c822006-10-09 15:57:48 +0200725 void *data;
726 void *dlhandle;
Jens Axboe36167d82007-02-18 05:41:31 +0100727 unsigned long priv;
Jens Axboe2866c822006-10-09 15:57:48 +0200728};
729
Jens Axboe755200a2007-02-19 13:08:12 +0100730#define FIO_IOOPS_VERSION 5
Jens Axboe2866c822006-10-09 15:57:48 +0200731
Jens Axboeb4692822006-10-27 13:43:22 +0200732extern struct ioengine_ops *load_ioengine(struct thread_data *, const char *);
Jens Axboeb2fdda42007-02-20 20:52:51 +0100733extern void register_ioengine(struct ioengine_ops *);
Jens Axboe5f350952006-11-07 15:20:59 +0100734extern void unregister_ioengine(struct ioengine_ops *);
Jens Axboe2866c822006-10-09 15:57:48 +0200735extern void close_ioengine(struct thread_data *);
736
737/*
738 * Mark unused variables passed to ops functions as unused, to silence gcc
739 */
740#define fio_unused __attribute((__unused__))
Jens Axboe5f350952006-11-07 15:20:59 +0100741#define fio_init __attribute__((constructor))
742#define fio_exit __attribute__((destructor))
Jens Axboe2866c822006-10-09 15:57:48 +0200743
Jens Axboe34572e22006-10-20 09:33:18 +0200744#define for_each_td(td, i) \
745 for ((i) = 0, (td) = &threads[0]; (i) < (int) thread_number; (i)++, (td)++)
Jens Axboe53cdc682006-10-18 11:50:58 +0200746#define for_each_file(td, f, i) \
Jens Axboe34572e22006-10-20 09:33:18 +0200747 for ((i) = 0, (f) = &(td)->files[0]; (i) < (int) (td)->nr_files; (i)++, (f)++)
Jens Axboe53cdc682006-10-18 11:50:58 +0200748
Jens Axboe0032bf92007-02-13 17:39:56 +0100749#define fio_assert(td, cond) do { \
750 if (!(cond)) { \
Jens Axboe340fd242007-02-13 20:09:10 +0100751 int *__foo = NULL; \
Jens Axboe0032bf92007-02-13 17:39:56 +0100752 fprintf(stderr, "file:%s:%d, assert %s failed\n", __FILE__, __LINE__, #cond); \
753 (td)->runstate = TD_EXITED; \
Jens Axboe437c9b72007-02-13 18:20:37 +0100754 (td)->error = EFAULT; \
Jens Axboe340fd242007-02-13 20:09:10 +0100755 *__foo = 0; \
Jens Axboe0032bf92007-02-13 17:39:56 +0100756 } \
757} while (0)
758
Jens Axboeebac4652005-12-08 15:25:21 +0100759#endif