[PATCH] Be strict in checking option ranges
[fio.git] / init.c
CommitLineData
906c8d75 1/*
cb2c86fd 2 * This file contains job initialization and setup functions.
906c8d75 3 */
ebac4655
JA
4#include <stdio.h>
5#include <stdlib.h>
6#include <unistd.h>
7#include <fcntl.h>
8#include <ctype.h>
9#include <string.h>
10#include <errno.h>
b4692828
JA
11#include <getopt.h>
12#include <assert.h>
ebac4655
JA
13#include <sys/ipc.h>
14#include <sys/shm.h>
15#include <sys/types.h>
16#include <sys/stat.h>
17
18#include "fio.h"
cb2c86fd 19#include "parse.h"
ebac4655 20
ee738499 21#define FIO_RANDSEED (0xb1899bedUL)
ebac4655 22
e1f36503
JA
23#define td_var_offset(var) ((size_t) &((struct thread_data *)0)->var)
24
b4692828
JA
25static int str_rw_cb(void *, const char *);
26static int str_ioengine_cb(void *, const char *);
27static int str_mem_cb(void *, const char *);
28static int str_verify_cb(void *, const char *);
e1f36503 29static int str_lockmem_cb(void *, unsigned long *);
34cfcdaf 30#ifdef FIO_HAVE_IOPRIO
e1f36503
JA
31static int str_prio_cb(void *, unsigned int *);
32static int str_prioclass_cb(void *, unsigned int *);
34cfcdaf 33#endif
e1f36503
JA
34static int str_exitall_cb(void);
35static int str_cpumask_cb(void *, unsigned int *);
36
ee738499
JA
37#define __stringify_1(x) #x
38#define __stringify(x) __stringify_1(x)
39
e1f36503
JA
40/*
41 * Map of job/command line options
42 */
43static struct fio_option options[] = {
44 {
45 .name = "name",
46 .type = FIO_OPT_STR_STORE,
47 .off1 = td_var_offset(name),
fd28ca49 48 .help = "Name of this job",
e1f36503
JA
49 },
50 {
51 .name = "directory",
52 .type = FIO_OPT_STR_STORE,
53 .off1 = td_var_offset(directory),
fd28ca49 54 .help = "Directory to store files in",
e1f36503
JA
55 },
56 {
57 .name = "filename",
58 .type = FIO_OPT_STR_STORE,
59 .off1 = td_var_offset(filename),
fd28ca49 60 .help = "Force the use of a specific file",
e1f36503
JA
61 },
62 {
63 .name = "rw",
64 .type = FIO_OPT_STR,
65 .cb = str_rw_cb,
15f7918f 66 .help = "IO direction",
ee738499 67 .def = "read",
15f7918f
JA
68 .posval = { "read", "write", "randwrite", "randread", "rw",
69 "randrw", },
e1f36503
JA
70 },
71 {
72 .name = "ioengine",
73 .type = FIO_OPT_STR,
74 .cb = str_ioengine_cb,
15f7918f 75 .help = "IO engine to use",
ee738499 76 .def = "sync",
15f7918f
JA
77 .posval = { "sync", "libaio", "posixaio", "mmap", "splice",
78 "sg", "null", },
e1f36503
JA
79 },
80 {
81 .name = "mem",
82 .type = FIO_OPT_STR,
83 .cb = str_mem_cb,
15f7918f 84 .help = "Backing type for IO buffers",
ee738499 85 .def = "malloc",
15f7918f 86 .posval = { "malloc", "shm", "shmhuge", "mmap", "mmaphuge", },
e1f36503
JA
87 },
88 {
89 .name = "verify",
90 .type = FIO_OPT_STR,
91 .cb = str_verify_cb,
15f7918f 92 .help = "Verify sum function",
ee738499 93 .def = "0",
15f7918f 94 .posval = { "crc32", "md5", },
e1f36503
JA
95 },
96 {
97 .name = "write_iolog",
076efc7c
JA
98 .type = FIO_OPT_STR_STORE,
99 .off1 = td_var_offset(write_iolog_file),
fd28ca49 100 .help = "Store IO pattern to file",
e1f36503
JA
101 },
102 {
076efc7c 103 .name = "read_iolog",
e1f36503 104 .type = FIO_OPT_STR_STORE,
076efc7c 105 .off1 = td_var_offset(read_iolog_file),
fd28ca49 106 .help = "Playback IO pattern from file",
e1f36503
JA
107 },
108 {
109 .name = "exec_prerun",
110 .type = FIO_OPT_STR_STORE,
111 .off1 = td_var_offset(exec_prerun),
fd28ca49 112 .help = "Execute this file prior to running job",
e1f36503
JA
113 },
114 {
115 .name = "exec_postrun",
116 .type = FIO_OPT_STR_STORE,
117 .off1 = td_var_offset(exec_postrun),
fd28ca49 118 .help = "Execute this file after running job",
e1f36503
JA
119 },
120#ifdef FIO_HAVE_IOSCHED_SWITCH
121 {
122 .name = "ioscheduler",
123 .type = FIO_OPT_STR_STORE,
124 .off1 = td_var_offset(ioscheduler),
fd28ca49 125 .help = "Use this IO scheduler on the backing device",
e1f36503
JA
126 },
127#endif
128 {
129 .name = "size",
130 .type = FIO_OPT_STR_VAL,
131 .off1 = td_var_offset(total_file_size),
fd28ca49 132 .help = "Size of device or file",
e1f36503
JA
133 },
134 {
135 .name = "bs",
75e6f36f 136 .type = FIO_OPT_STR_VAL_INT,
a00735e6 137 .off1 = td_var_offset(bs[DDIR_READ]),
f90eff5a 138 .off2 = td_var_offset(bs[DDIR_WRITE]),
fd28ca49 139 .help = "Block size unit",
ee738499 140 .def = "4k",
e1f36503
JA
141 },
142 {
143 .name = "offset",
144 .type = FIO_OPT_STR_VAL,
145 .off1 = td_var_offset(start_offset),
fd28ca49 146 .help = "Start IO from this offset",
ee738499 147 .def = "0",
e1f36503
JA
148 },
149 {
150 .name = "zonesize",
151 .type = FIO_OPT_STR_VAL,
152 .off1 = td_var_offset(zone_size),
fd28ca49 153 .help = "Give size of an IO zone",
ee738499 154 .def = "0",
e1f36503
JA
155 },
156 {
157 .name = "zoneskip",
158 .type = FIO_OPT_STR_VAL,
159 .off1 = td_var_offset(zone_skip),
fd28ca49 160 .help = "Space between IO zones",
ee738499 161 .def = "0",
e1f36503
JA
162 },
163 {
164 .name = "lockmem",
165 .type = FIO_OPT_STR_VAL,
166 .cb = str_lockmem_cb,
fd28ca49 167 .help = "Lock down this amount of memory",
ee738499 168 .def = "0",
e1f36503
JA
169 },
170 {
171 .name = "bsrange",
172 .type = FIO_OPT_RANGE,
a00735e6
JA
173 .off1 = td_var_offset(min_bs[DDIR_READ]),
174 .off2 = td_var_offset(max_bs[DDIR_READ]),
f90eff5a
JA
175 .off3 = td_var_offset(min_bs[DDIR_WRITE]),
176 .off4 = td_var_offset(max_bs[DDIR_WRITE]),
fd28ca49 177 .help = "Set block size range",
e1f36503 178 },
ee738499
JA
179 {
180 .name = "randrepeat",
13335ddb 181 .type = FIO_OPT_BOOL,
ee738499
JA
182 .off1 = td_var_offset(rand_repeatable),
183 .help = "Use repeatable random IO pattern",
184 .def = "1",
185 },
e1f36503
JA
186 {
187 .name = "nrfiles",
188 .type = FIO_OPT_INT,
189 .off1 = td_var_offset(nr_files),
fd28ca49 190 .help = "Split job workload between this number of files",
ee738499 191 .def = "1",
e1f36503
JA
192 },
193 {
194 .name = "iodepth",
195 .type = FIO_OPT_INT,
196 .off1 = td_var_offset(iodepth),
fd28ca49 197 .help = "Amount of IO buffers to keep in flight",
ee738499 198 .def = "1",
e1f36503
JA
199 },
200 {
201 .name = "fsync",
202 .type = FIO_OPT_INT,
203 .off1 = td_var_offset(fsync_blocks),
fd28ca49 204 .help = "Issue fsync for writes every given number of blocks",
ee738499 205 .def = "0",
e1f36503
JA
206 },
207 {
208 .name = "rwmixcycle",
209 .type = FIO_OPT_INT,
210 .off1 = td_var_offset(rwmixcycle),
ee738499
JA
211 .help = "Cycle period for mixed read/write workloads (msec)",
212 .def = "500",
e1f36503
JA
213 },
214 {
215 .name = "rwmixread",
216 .type = FIO_OPT_INT,
217 .off1 = td_var_offset(rwmixread),
ee738499 218 .maxval = 100,
fd28ca49 219 .help = "Percentage of mixed workload that is reads",
ee738499 220 .def = "50",
e1f36503
JA
221 },
222 {
223 .name = "rwmixwrite",
224 .type = FIO_OPT_INT,
225 .off1 = td_var_offset(rwmixwrite),
ee738499 226 .maxval = 100,
fd28ca49 227 .help = "Percentage of mixed workload that is writes",
ee738499 228 .def = "50",
e1f36503
JA
229 },
230 {
231 .name = "nice",
232 .type = FIO_OPT_INT,
233 .off1 = td_var_offset(nice),
fd28ca49 234 .help = "Set job CPU nice value",
15f7918f 235 .minval = -19,
ee738499
JA
236 .maxval = 20,
237 .def = "0",
e1f36503
JA
238 },
239#ifdef FIO_HAVE_IOPRIO
240 {
241 .name = "prio",
242 .type = FIO_OPT_INT,
243 .cb = str_prio_cb,
fd28ca49 244 .help = "Set job IO priority value",
15f7918f
JA
245 .minval = 0,
246 .maxval = 7,
e1f36503
JA
247 },
248 {
249 .name = "prioclass",
250 .type = FIO_OPT_INT,
251 .cb = str_prioclass_cb,
fd28ca49 252 .help = "Set job IO priority class",
15f7918f
JA
253 .minval = 0,
254 .maxval = 3,
e1f36503
JA
255 },
256#endif
257 {
258 .name = "thinktime",
259 .type = FIO_OPT_INT,
1304923a 260 .off1 = td_var_offset(thinktime),
fd28ca49 261 .help = "Idle time between IO buffers",
ee738499 262 .def = "0",
e1f36503 263 },
9c1f7434
JA
264 {
265 .name = "thinktime_blocks",
266 .type = FIO_OPT_INT,
1304923a 267 .off1 = td_var_offset(thinktime_blocks),
fd28ca49 268 .help = "IO buffer period between 'thinktime'",
ee738499 269 .def = "1",
9c1f7434 270 },
e1f36503
JA
271 {
272 .name = "rate",
273 .type = FIO_OPT_INT,
1304923a 274 .off1 = td_var_offset(rate),
fd28ca49 275 .help = "Set bandwidth rate",
e1f36503
JA
276 },
277 {
278 .name = "ratemin",
279 .type = FIO_OPT_INT,
1304923a 280 .off1 = td_var_offset(ratemin),
fd28ca49 281 .help = "The bottom limit accepted",
e1f36503
JA
282 },
283 {
284 .name = "ratecycle",
285 .type = FIO_OPT_INT,
1304923a 286 .off1 = td_var_offset(ratecycle),
6da1fa7f 287 .help = "Window average for rate limits (msec)",
ee738499 288 .def = "1000",
e1f36503
JA
289 },
290 {
291 .name = "startdelay",
292 .type = FIO_OPT_INT,
1304923a 293 .off1 = td_var_offset(start_delay),
fd28ca49 294 .help = "Only start job when this period has passed",
ee738499 295 .def = "0",
e1f36503
JA
296 },
297 {
298 .name = "timeout",
299 .type = FIO_OPT_STR_VAL_TIME,
1304923a 300 .off1 = td_var_offset(timeout),
fd28ca49 301 .help = "Stop workload when this amount of time has passed",
ee738499 302 .def = "0",
e1f36503
JA
303 },
304 {
305 .name = "invalidate",
13335ddb 306 .type = FIO_OPT_BOOL,
1304923a 307 .off1 = td_var_offset(invalidate_cache),
fd28ca49 308 .help = "Invalidate buffer/page cache prior to running job",
ee738499 309 .def = "1",
e1f36503
JA
310 },
311 {
312 .name = "sync",
13335ddb 313 .type = FIO_OPT_BOOL,
1304923a 314 .off1 = td_var_offset(sync_io),
fd28ca49 315 .help = "Use O_SYNC for buffered writes",
ee738499 316 .def = "0",
e1f36503
JA
317 },
318 {
319 .name = "bwavgtime",
320 .type = FIO_OPT_INT,
1304923a 321 .off1 = td_var_offset(bw_avg_time),
ee738499
JA
322 .help = "Time window over which to calculate bandwidth (msec)",
323 .def = "500",
e1f36503
JA
324 },
325 {
326 .name = "create_serialize",
13335ddb 327 .type = FIO_OPT_BOOL,
1304923a 328 .off1 = td_var_offset(create_serialize),
fd28ca49 329 .help = "Serialize creating of job files",
ee738499 330 .def = "1",
e1f36503
JA
331 },
332 {
333 .name = "create_fsync",
13335ddb 334 .type = FIO_OPT_BOOL,
1304923a 335 .off1 = td_var_offset(create_fsync),
fd28ca49 336 .help = "Fsync file after creation",
ee738499 337 .def = "1",
e1f36503
JA
338 },
339 {
340 .name = "loops",
341 .type = FIO_OPT_INT,
1304923a 342 .off1 = td_var_offset(loops),
fd28ca49 343 .help = "Number of times to run the job",
ee738499 344 .def = "1",
e1f36503
JA
345 },
346 {
347 .name = "numjobs",
348 .type = FIO_OPT_INT,
1304923a 349 .off1 = td_var_offset(numjobs),
fd28ca49 350 .help = "Duplicate this job this many times",
ee738499 351 .def = "1",
e1f36503
JA
352 },
353 {
354 .name = "cpuload",
355 .type = FIO_OPT_INT,
1304923a 356 .off1 = td_var_offset(cpuload),
fd28ca49 357 .help = "Use this percentage of CPU",
e1f36503
JA
358 },
359 {
360 .name = "cpuchunks",
361 .type = FIO_OPT_INT,
1304923a 362 .off1 = td_var_offset(cpucycle),
fd28ca49 363 .help = "Length of the CPU burn cycles",
e1f36503
JA
364 },
365 {
366 .name = "direct",
13335ddb 367 .type = FIO_OPT_BOOL,
1304923a 368 .off1 = td_var_offset(odirect),
fd28ca49 369 .help = "Use O_DIRECT IO",
ee738499 370 .def = "1",
e1f36503
JA
371 },
372 {
373 .name = "overwrite",
13335ddb 374 .type = FIO_OPT_BOOL,
1304923a 375 .off1 = td_var_offset(overwrite),
fd28ca49 376 .help = "When writing, set whether to overwrite current data",
ee738499 377 .def = "0",
e1f36503
JA
378 },
379#ifdef FIO_HAVE_CPU_AFFINITY
380 {
381 .name = "cpumask",
382 .type = FIO_OPT_INT,
383 .cb = str_cpumask_cb,
fd28ca49 384 .help = "CPU affinity mask",
e1f36503
JA
385 },
386#endif
387 {
388 .name = "end_fsync",
13335ddb 389 .type = FIO_OPT_BOOL,
1304923a 390 .off1 = td_var_offset(end_fsync),
fd28ca49 391 .help = "Include fsync at the end of job",
ee738499 392 .def = "0",
e1f36503
JA
393 },
394 {
395 .name = "unlink",
13335ddb 396 .type = FIO_OPT_BOOL,
e1f36503 397 .off1 = td_var_offset(unlink),
ee738499
JA
398 .help = "Unlink created files after job has completed",
399 .def = "1",
e1f36503
JA
400 },
401 {
402 .name = "exitall",
403 .type = FIO_OPT_STR_SET,
404 .cb = str_exitall_cb,
fd28ca49 405 .help = "Terminate all jobs when one exits",
e1f36503
JA
406 },
407 {
408 .name = "stonewall",
409 .type = FIO_OPT_STR_SET,
410 .off1 = td_var_offset(stonewall),
fd28ca49 411 .help = "Insert a hard barrier between this job and previous",
e1f36503
JA
412 },
413 {
414 .name = "thread",
415 .type = FIO_OPT_STR_SET,
416 .off1 = td_var_offset(thread),
fd28ca49 417 .help = "Use threads instead of forks",
e1f36503
JA
418 },
419 {
420 .name = "write_bw_log",
421 .type = FIO_OPT_STR_SET,
422 .off1 = td_var_offset(write_bw_log),
fd28ca49 423 .help = "Write log of bandwidth during run",
e1f36503
JA
424 },
425 {
426 .name = "write_lat_log",
427 .type = FIO_OPT_STR_SET,
428 .off1 = td_var_offset(write_lat_log),
fd28ca49 429 .help = "Write log of latency during run",
e1f36503 430 },
bb8895e0
JA
431 {
432 .name = "norandommap",
433 .type = FIO_OPT_STR_SET,
434 .off1 = td_var_offset(norandommap),
fd28ca49 435 .help = "Accept potential duplicate random blocks",
bb8895e0 436 },
690adba3
JA
437 {
438 .name = "bs_unaligned",
439 .type = FIO_OPT_STR_SET,
440 .off1 = td_var_offset(bs_unaligned),
fd28ca49 441 .help = "Don't sector align IO buffer sizes",
690adba3 442 },
56bb17f2
JA
443 {
444 .name = "hugepage-size",
445 .type = FIO_OPT_STR_VAL,
446 .off1 = td_var_offset(hugepage_size),
fd28ca49 447 .help = "When using hugepages, specify size of each page",
ee738499 448 .def = __stringify(FIO_HUGE_PAGE),
56bb17f2 449 },
e1f36503
JA
450 {
451 .name = NULL,
452 },
453};
454
b4692828
JA
455#define FIO_JOB_OPTS (sizeof(options) / sizeof(struct fio_option))
456#define FIO_CMD_OPTS (16)
457#define FIO_GETOPT_JOB (0x89988998)
458
459/*
460 * Command line options. These will contain the above, plus a few
461 * extra that only pertain to fio itself and not jobs.
462 */
463static struct option long_options[FIO_JOB_OPTS + FIO_CMD_OPTS] = {
464 {
465 .name = "output",
466 .has_arg = required_argument,
467 .val = 'o',
468 },
469 {
470 .name = "timeout",
471 .has_arg = required_argument,
472 .val = 't',
473 },
474 {
475 .name = "latency-log",
476 .has_arg = required_argument,
477 .val = 'l',
478 },
479 {
480 .name = "bandwidth-log",
481 .has_arg = required_argument,
482 .val = 'b',
483 },
484 {
485 .name = "minimal",
486 .has_arg = optional_argument,
487 .val = 'm',
488 },
489 {
490 .name = "version",
491 .has_arg = no_argument,
492 .val = 'v',
493 },
fd28ca49
JA
494 {
495 .name = "help",
496 .has_arg = no_argument,
497 .val = 'h',
498 },
499 {
500 .name = "cmdhelp",
501 .has_arg = required_argument,
502 .val = 'c',
503 },
b4692828
JA
504 {
505 .name = NULL,
506 },
507};
508
ee738499 509static int def_timeout = 0;
972cfd25 510
5cd033bb 511static char fio_version_string[] = "fio 1.11";
ebac4655 512
972cfd25 513static char **ini_file;
ebac4655
JA
514static int max_jobs = MAX_JOBS;
515
516struct thread_data def_thread;
517struct thread_data *threads = NULL;
518
ebac4655 519int exitall_on_terminate = 0;
c6ae0a5b 520int terse_output = 0;
c04f7ec3 521unsigned long long mlock_size = 0;
eb8bbf48
JA
522FILE *f_out = NULL;
523FILE *f_err = NULL;
ebac4655 524
ee738499
JA
525static int write_lat_log = 0;
526static int write_bw_log = 0;
ec94ec56 527
906c8d75
JA
528/*
529 * Return a free job structure.
530 */
ebac4655
JA
531static struct thread_data *get_new_job(int global, struct thread_data *parent)
532{
533 struct thread_data *td;
534
535 if (global)
536 return &def_thread;
537 if (thread_number >= max_jobs)
538 return NULL;
539
540 td = &threads[thread_number++];
ddaeaa5a 541 *td = *parent;
ebac4655 542
ebac4655 543 td->thread_number = thread_number;
ebac4655
JA
544 return td;
545}
546
547static void put_job(struct thread_data *td)
548{
549577a7
JA
549 if (td == &def_thread)
550 return;
551
ebac4655
JA
552 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
553 thread_number--;
554}
555
dad915e3
JA
556/*
557 * Lazy way of fixing up options that depend on each other. We could also
558 * define option callback handlers, but this is easier.
559 */
e1f36503
JA
560static void fixup_options(struct thread_data *td)
561{
e1f36503
JA
562 if (!td->rwmixread && td->rwmixwrite)
563 td->rwmixread = 100 - td->rwmixwrite;
dad915e3 564
076efc7c
JA
565 if (td->write_iolog_file && td->read_iolog_file) {
566 log_err("fio: read iolog overrides write_iolog\n");
567 free(td->write_iolog_file);
568 td->write_iolog_file = NULL;
569 }
16b462ae
JA
570
571 if (td->io_ops->flags & FIO_SYNCIO)
572 td->iodepth = 1;
573 else {
574 if (!td->iodepth)
575 td->iodepth = td->nr_files;
576 }
577
578 /*
579 * only really works for sequential io for now, and with 1 file
580 */
581 if (td->zone_size && !td->sequential && td->nr_files == 1)
582 td->zone_size = 0;
583
584 /*
585 * Reads can do overwrites, we always need to pre-create the file
586 */
587 if (td_read(td) || td_rw(td))
588 td->overwrite = 1;
589
a00735e6
JA
590 if (!td->min_bs[DDIR_READ])
591 td->min_bs[DDIR_READ]= td->bs[DDIR_READ];
592 if (!td->max_bs[DDIR_READ])
593 td->max_bs[DDIR_READ] = td->bs[DDIR_READ];
594 if (!td->min_bs[DDIR_WRITE])
75e6f36f 595 td->min_bs[DDIR_WRITE]= td->bs[DDIR_WRITE];
a00735e6 596 if (!td->max_bs[DDIR_WRITE])
75e6f36f 597 td->max_bs[DDIR_WRITE] = td->bs[DDIR_WRITE];
a00735e6
JA
598
599 td->rw_min_bs = min(td->min_bs[DDIR_READ], td->min_bs[DDIR_WRITE]);
600
16b462ae
JA
601 if (td_read(td) && !td_rw(td))
602 td->verify = 0;
bb8895e0
JA
603
604 if (td->norandommap && td->verify != VERIFY_NONE) {
605 log_err("fio: norandommap given, verify disabled\n");
606 td->verify = VERIFY_NONE;
607 }
690adba3
JA
608 if (td->bs_unaligned && (td->odirect || td->io_ops->flags & FIO_RAWIO))
609 log_err("fio: bs_unaligned may not work with raw io\n");
e0a22335
JA
610
611 /*
612 * O_DIRECT and char doesn't mix, clear that flag if necessary.
613 */
614 if (td->filetype == FIO_TYPE_CHAR && td->odirect)
615 td->odirect = 0;
e1f36503
JA
616}
617
f8977ee6
JA
618/*
619 * This function leaks the buffer
620 */
621static char *to_kmg(unsigned int val)
622{
623 char *buf = malloc(32);
245142ff 624 char post[] = { 0, 'K', 'M', 'G', 'P', 0 };
f8977ee6
JA
625 char *p = post;
626
245142ff 627 do {
f8977ee6
JA
628 if (val & 1023)
629 break;
630
631 val >>= 10;
632 p++;
245142ff 633 } while (*p);
f8977ee6
JA
634
635 snprintf(buf, 31, "%u%c", val, *p);
636 return buf;
637}
638
906c8d75
JA
639/*
640 * Adds a job to the list of things todo. Sanitizes the various options
641 * to make sure we don't have conflicts, and initializes various
642 * members of td.
643 */
75154845 644static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
ebac4655 645{
3c9b60c1
JA
646 const char *ddir_str[] = { "read", "write", "randread", "randwrite",
647 "rw", NULL, "randrw" };
ebac4655 648 struct stat sb;
53cdc686
JA
649 int numjobs, ddir, i;
650 struct fio_file *f;
ebac4655 651
ebac4655
JA
652 /*
653 * the def_thread is just for options, it's not a real job
654 */
655 if (td == &def_thread)
656 return 0;
657
ee738499 658 assert(td->io_ops);
df64119d 659
690adba3
JA
660 if (td->odirect)
661 td->io_ops->flags |= FIO_RAWIO;
662
ebac4655 663 td->filetype = FIO_TYPE_FILE;
0af7b542
JA
664 if (!stat(jobname, &sb)) {
665 if (S_ISBLK(sb.st_mode))
666 td->filetype = FIO_TYPE_BD;
667 else if (S_ISCHR(sb.st_mode))
668 td->filetype = FIO_TYPE_CHAR;
669 }
ebac4655 670
e0a22335
JA
671 fixup_options(td);
672
13f8e2d2
JA
673 if (td->filename)
674 td->nr_uniq_files = 1;
675 else
676 td->nr_uniq_files = td->nr_files;
677
678 if (td->filetype == FIO_TYPE_FILE || td->filename) {
e9c047a0 679 char tmp[PATH_MAX];
53cdc686 680 int len = 0;
e9c047a0 681
ef899b63 682 if (td->directory && td->directory[0] != '\0')
8aeebd55 683 len = sprintf(tmp, "%s/", td->directory);
ebac4655 684
53cdc686
JA
685 td->files = malloc(sizeof(struct fio_file) * td->nr_files);
686
687 for_each_file(td, f, i) {
688 memset(f, 0, sizeof(*f));
689 f->fd = -1;
690
13f8e2d2
JA
691 if (td->filename)
692 sprintf(tmp + len, "%s", td->filename);
693 else
694 sprintf(tmp + len, "%s.%d.%d", jobname, td->thread_number, i);
53cdc686
JA
695 f->file_name = strdup(tmp);
696 }
697 } else {
698 td->nr_files = 1;
699 td->files = malloc(sizeof(struct fio_file));
700 f = &td->files[0];
701
702 memset(f, 0, sizeof(*f));
703 f->fd = -1;
704 f->file_name = strdup(jobname);
705 }
706
707 for_each_file(td, f, i) {
708 f->file_size = td->total_file_size / td->nr_files;
709 f->file_offset = td->start_offset;
710 }
711
bbfd6b00 712 fio_sem_init(&td->mutex, 0);
ebac4655
JA
713
714 td->clat_stat[0].min_val = td->clat_stat[1].min_val = ULONG_MAX;
715 td->slat_stat[0].min_val = td->slat_stat[1].min_val = ULONG_MAX;
716 td->bw_stat[0].min_val = td->bw_stat[1].min_val = ULONG_MAX;
717
ebac4655
JA
718 if (td->stonewall && td->thread_number > 1)
719 groupid++;
720
721 td->groupid = groupid;
722
723 if (setup_rate(td))
724 goto err;
725
ec94ec56 726 if (td->write_lat_log) {
ebac4655
JA
727 setup_log(&td->slat_log);
728 setup_log(&td->clat_log);
729 }
ec94ec56 730 if (td->write_bw_log)
ebac4655
JA
731 setup_log(&td->bw_log);
732
b4692828
JA
733 if (!td->name)
734 td->name = strdup(jobname);
01452055 735
3d60d1ed 736 ddir = td->ddir + (!td->sequential << 1) + (td->iomix << 2);
75154845 737
c6ae0a5b 738 if (!terse_output) {
b990b5c0 739 if (!job_add_num) {
2866c82d 740 if (td->io_ops->flags & FIO_CPUIO)
b990b5c0 741 fprintf(f_out, "%s: ioengine=cpu, cpuload=%u, cpucycle=%u\n", td->name, td->cpuload, td->cpucycle);
f8977ee6
JA
742 else {
743 char *c1, *c2, *c3, *c4;
744
745 c1 = to_kmg(td->min_bs[DDIR_READ]);
746 c2 = to_kmg(td->max_bs[DDIR_READ]);
747 c3 = to_kmg(td->min_bs[DDIR_WRITE]);
748 c4 = to_kmg(td->max_bs[DDIR_WRITE]);
749
1e97cce9 750 fprintf(f_out, "%s: (g=%d): rw=%s, odir=%u, bs=%s-%s/%s-%s, rate=%u, ioengine=%s, iodepth=%u\n", td->name, td->groupid, ddir_str[ddir], td->odirect, c1, c2, c3, c4, td->rate, td->io_ops->name, td->iodepth);
f8977ee6
JA
751
752 free(c1);
753 free(c2);
754 free(c3);
755 free(c4);
756 }
b990b5c0 757 } else if (job_add_num == 1)
c6ae0a5b
JA
758 fprintf(f_out, "...\n");
759 }
ebac4655
JA
760
761 /*
762 * recurse add identical jobs, clear numjobs and stonewall options
763 * as they don't apply to sub-jobs
764 */
765 numjobs = td->numjobs;
766 while (--numjobs) {
767 struct thread_data *td_new = get_new_job(0, td);
768
769 if (!td_new)
770 goto err;
771
772 td_new->numjobs = 1;
773 td_new->stonewall = 0;
75154845 774 job_add_num = numjobs - 1;
ebac4655 775
75154845 776 if (add_job(td_new, jobname, job_add_num))
ebac4655
JA
777 goto err;
778 }
779 return 0;
780err:
781 put_job(td);
782 return -1;
783}
784
906c8d75
JA
785/*
786 * Initialize the various random states we need (random io, block size ranges,
787 * read/write mix, etc).
788 */
ebac4655
JA
789int init_random_state(struct thread_data *td)
790{
a6ccc7be 791 unsigned long seeds[4];
53cdc686 792 int fd, num_maps, blocks, i;
0ab8db89 793 struct fio_file *f;
ebac4655 794
f48b467c
JA
795 if (td->io_ops->flags & FIO_CPUIO)
796 return 0;
797
1ac267bb 798 fd = open("/dev/urandom", O_RDONLY);
ebac4655
JA
799 if (fd == -1) {
800 td_verror(td, errno);
801 return 1;
802 }
803
a6ccc7be 804 if (read(fd, seeds, sizeof(seeds)) < (int) sizeof(seeds)) {
ebac4655
JA
805 td_verror(td, EIO);
806 close(fd);
807 return 1;
808 }
809
810 close(fd);
811
6dfd46b9
JA
812 os_random_seed(seeds[0], &td->bsrange_state);
813 os_random_seed(seeds[1], &td->verify_state);
814 os_random_seed(seeds[2], &td->rwmix_state);
ebac4655
JA
815
816 if (td->sequential)
817 return 0;
818
9ebc27e1 819 if (td->rand_repeatable)
ee738499 820 seeds[3] = FIO_RANDSEED;
ebac4655 821
bb8895e0
JA
822 if (!td->norandommap) {
823 for_each_file(td, f, i) {
a00735e6 824 blocks = (f->file_size + td->rw_min_bs - 1) / td->rw_min_bs;
c7c280ed 825 num_maps = (blocks + BLOCKS_PER_MAP-1)/ BLOCKS_PER_MAP;
bb8895e0
JA
826 f->file_map = malloc(num_maps * sizeof(long));
827 f->num_maps = num_maps;
828 memset(f->file_map, 0, num_maps * sizeof(long));
829 }
53cdc686 830 }
ebac4655 831
6dfd46b9 832 os_random_seed(seeds[3], &td->random_state);
ebac4655
JA
833 return 0;
834}
835
836static void fill_cpu_mask(os_cpu_mask_t cpumask, int cpu)
837{
838#ifdef FIO_HAVE_CPU_AFFINITY
839 unsigned int i;
840
841 CPU_ZERO(&cpumask);
842
843 for (i = 0; i < sizeof(int) * 8; i++) {
844 if ((1 << i) & cpu)
845 CPU_SET(i, &cpumask);
846 }
847#endif
848}
849
ebac4655
JA
850static int is_empty_or_comment(char *line)
851{
852 unsigned int i;
853
854 for (i = 0; i < strlen(line); i++) {
855 if (line[i] == ';')
856 return 1;
857 if (!isspace(line[i]) && !iscntrl(line[i]))
858 return 0;
859 }
860
861 return 1;
862}
863
b4692828 864static int str_rw_cb(void *data, const char *mem)
ebac4655 865{
cb2c86fd
JA
866 struct thread_data *td = data;
867
ebac4655
JA
868 if (!strncmp(mem, "read", 4) || !strncmp(mem, "0", 1)) {
869 td->ddir = DDIR_READ;
870 td->sequential = 1;
871 return 0;
872 } else if (!strncmp(mem, "randread", 8)) {
873 td->ddir = DDIR_READ;
874 td->sequential = 0;
875 return 0;
876 } else if (!strncmp(mem, "write", 5) || !strncmp(mem, "1", 1)) {
877 td->ddir = DDIR_WRITE;
878 td->sequential = 1;
879 return 0;
880 } else if (!strncmp(mem, "randwrite", 9)) {
881 td->ddir = DDIR_WRITE;
882 td->sequential = 0;
883 return 0;
3d60d1ed 884 } else if (!strncmp(mem, "rw", 2)) {
1e97cce9 885 td->ddir = DDIR_READ;
3d60d1ed
JA
886 td->iomix = 1;
887 td->sequential = 1;
888 return 0;
889 } else if (!strncmp(mem, "randrw", 6)) {
1e97cce9 890 td->ddir = DDIR_READ;
3d60d1ed
JA
891 td->iomix = 1;
892 td->sequential = 0;
893 return 0;
ebac4655
JA
894 }
895
3b70d7e5 896 log_err("fio: data direction: read, write, randread, randwrite, rw, randrw\n");
ebac4655
JA
897 return 1;
898}
899
b4692828 900static int str_verify_cb(void *data, const char *mem)
ebac4655 901{
cb2c86fd
JA
902 struct thread_data *td = data;
903
ebac4655
JA
904 if (!strncmp(mem, "0", 1)) {
905 td->verify = VERIFY_NONE;
906 return 0;
907 } else if (!strncmp(mem, "md5", 3) || !strncmp(mem, "1", 1)) {
908 td->verify = VERIFY_MD5;
909 return 0;
910 } else if (!strncmp(mem, "crc32", 5)) {
911 td->verify = VERIFY_CRC32;
912 return 0;
913 }
914
3b70d7e5 915 log_err("fio: verify types: md5, crc32\n");
ebac4655
JA
916 return 1;
917}
918
313cb206
JA
919/*
920 * Check if mmap/mmaphuge has a :/foo/bar/file at the end. If so, return that.
921 */
922static char *get_mmap_file(const char *str)
923{
924 char *p = strstr(str, ":");
925
926 if (!p)
927 return NULL;
928
929 p++;
930 strip_blank_front(&p);
931 strip_blank_end(p);
932 return strdup(p);
933}
934
b4692828 935static int str_mem_cb(void *data, const char *mem)
ebac4655 936{
cb2c86fd
JA
937 struct thread_data *td = data;
938
ebac4655
JA
939 if (!strncmp(mem, "malloc", 6)) {
940 td->mem_type = MEM_MALLOC;
941 return 0;
d0bdaf49
JA
942 } else if (!strncmp(mem, "mmaphuge", 8)) {
943#ifdef FIO_HAVE_HUGETLB
d0bdaf49
JA
944 /*
945 * mmaphuge must be appended with the actual file
946 */
313cb206
JA
947 td->mmapfile = get_mmap_file(mem);
948 if (!td->mmapfile) {
d0bdaf49
JA
949 log_err("fio: mmaphuge:/path/to/file\n");
950 return 1;
951 }
952
d0bdaf49
JA
953 td->mem_type = MEM_MMAPHUGE;
954 return 0;
955#else
956 log_err("fio: mmaphuge not available\n");
957 return 1;
958#endif
ebac4655 959 } else if (!strncmp(mem, "mmap", 4)) {
313cb206
JA
960 /*
961 * Check if the user wants file backed memory. It's ok
962 * if there's no file given, we'll just use anon mamp then.
963 */
964 td->mmapfile = get_mmap_file(mem);
ebac4655
JA
965 td->mem_type = MEM_MMAP;
966 return 0;
74b025b0
JA
967 } else if (!strncmp(mem, "shmhuge", 7)) {
968#ifdef FIO_HAVE_HUGETLB
969 td->mem_type = MEM_SHMHUGE;
970 return 0;
971#else
972 log_err("fio: shmhuge not available\n");
973 return 1;
974#endif
0268b8ba
JA
975 } else if (!strncmp(mem, "shm", 3)) {
976 td->mem_type = MEM_SHM;
977 return 0;
ebac4655
JA
978 }
979
d0bdaf49 980 log_err("fio: mem type: malloc, shm, shmhuge, mmap, mmaphuge\n");
ebac4655
JA
981 return 1;
982}
983
b4692828 984static int str_ioengine_cb(void *data, const char *str)
ebac4655 985{
cb2c86fd
JA
986 struct thread_data *td = data;
987
2866c82d
JA
988 td->io_ops = load_ioengine(td, str);
989 if (td->io_ops)
b990b5c0 990 return 0;
ebac4655 991
08aae9a0 992 log_err("fio: ioengine= libaio, posixaio, sync, mmap, sgio, splice, cpu, null\n");
5f350952 993 log_err("fio: or specify path to dynamic ioengine module\n");
ebac4655
JA
994 return 1;
995}
996
e1f36503
JA
997static int str_lockmem_cb(void fio_unused *data, unsigned long *val)
998{
999 mlock_size = *val;
1000 return 0;
1001}
1002
34cfcdaf 1003#ifdef FIO_HAVE_IOPRIO
e1f36503
JA
1004static int str_prioclass_cb(void *data, unsigned int *val)
1005{
1006 struct thread_data *td = data;
1007
1008 td->ioprio |= *val << IOPRIO_CLASS_SHIFT;
1009 return 0;
1010}
1011
1012static int str_prio_cb(void *data, unsigned int *val)
1013{
1014 struct thread_data *td = data;
1015
1016 td->ioprio |= *val;
1017 return 0;
1018}
34cfcdaf 1019#endif
e1f36503
JA
1020
1021static int str_exitall_cb(void)
1022{
1023 exitall_on_terminate = 1;
1024 return 0;
1025}
1026
1027static int str_cpumask_cb(void *data, unsigned int *val)
1028{
1029 struct thread_data *td = data;
1030
1031 fill_cpu_mask(td->cpumask, *val);
1032 return 0;
1033}
1034
07261983
JA
1035/*
1036 * This is our [ini] type file parser.
1037 */
1e97cce9 1038static int parse_jobs_ini(char *file, int stonewall_flag)
ebac4655 1039{
e1f36503 1040 unsigned int global;
ebac4655 1041 struct thread_data *td;
fee3bb48 1042 char *string, *name;
ebac4655
JA
1043 fpos_t off;
1044 FILE *f;
1045 char *p;
0c7e37a0 1046 int ret = 0, stonewall;
ebac4655
JA
1047
1048 f = fopen(file, "r");
1049 if (!f) {
aea47d44 1050 perror("fopen job file");
ebac4655
JA
1051 return 1;
1052 }
1053
1054 string = malloc(4096);
1055 name = malloc(256);
fee3bb48 1056 memset(name, 0, 256);
ebac4655 1057
0c7e37a0 1058 stonewall = stonewall_flag;
7c124ac1
JA
1059 do {
1060 p = fgets(string, 4095, f);
1061 if (!p)
45410acb 1062 break;
ebac4655
JA
1063 if (is_empty_or_comment(p))
1064 continue;
fee3bb48 1065 if (sscanf(p, "[%255s]", name) != 1)
ebac4655
JA
1066 continue;
1067
1068 global = !strncmp(name, "global", 6);
1069
1070 name[strlen(name) - 1] = '\0';
1071
1072 td = get_new_job(global, &def_thread);
45410acb
JA
1073 if (!td) {
1074 ret = 1;
1075 break;
1076 }
ebac4655 1077
972cfd25
JA
1078 /*
1079 * Seperate multiple job files by a stonewall
1080 */
f9481919 1081 if (!global && stonewall) {
972cfd25
JA
1082 td->stonewall = stonewall;
1083 stonewall = 0;
1084 }
1085
ebac4655
JA
1086 fgetpos(f, &off);
1087 while ((p = fgets(string, 4096, f)) != NULL) {
1088 if (is_empty_or_comment(p))
1089 continue;
e1f36503 1090
b6754f9d 1091 strip_blank_front(&p);
7c124ac1
JA
1092
1093 if (p[0] == '[')
1094 break;
1095
4ae3f763 1096 strip_blank_end(p);
aea47d44 1097
e1f36503 1098 fgetpos(f, &off);
ebac4655 1099
45410acb
JA
1100 /*
1101 * Don't break here, continue parsing options so we
1102 * dump all the bad ones. Makes trial/error fixups
1103 * easier on the user.
1104 */
7c124ac1 1105 ret |= parse_option(p, options, td);
ebac4655 1106 }
ebac4655 1107
45410acb
JA
1108 if (!ret) {
1109 fsetpos(f, &off);
1110 ret = add_job(td, name, 0);
b1508cf9
JA
1111 } else {
1112 log_err("fio: job %s dropped\n", name);
1113 put_job(td);
45410acb 1114 }
7c124ac1 1115 } while (!ret);
ebac4655
JA
1116
1117 free(string);
1118 free(name);
1119 fclose(f);
45410acb 1120 return ret;
ebac4655
JA
1121}
1122
1123static int fill_def_thread(void)
1124{
1125 memset(&def_thread, 0, sizeof(def_thread));
1126
1127 if (fio_getaffinity(getpid(), &def_thread.cpumask) == -1) {
1128 perror("sched_getaffinity");
1129 return 1;
1130 }
1131
1132 /*
ee738499 1133 * fill default options
ebac4655 1134 */
ee738499
JA
1135 fill_default_options(&def_thread, options);
1136
972cfd25 1137 def_thread.timeout = def_timeout;
ec94ec56
JA
1138 def_thread.write_bw_log = write_bw_log;
1139 def_thread.write_lat_log = write_lat_log;
ee738499 1140
ebac4655
JA
1141#ifdef FIO_HAVE_DISK_UTIL
1142 def_thread.do_disk_util = 1;
1143#endif
1144
1145 return 0;
1146}
1147
0ab8db89 1148static void usage(void)
4785f995
JA
1149{
1150 printf("%s\n", fio_version_string);
b4692828
JA
1151 printf("\t--output\tWrite output to file\n");
1152 printf("\t--timeout\tRuntime in seconds\n");
1153 printf("\t--latency-log\tGenerate per-job latency logs\n");
1154 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
1155 printf("\t--minimal\tMinimal (terse) output\n");
1156 printf("\t--version\tPrint version info and exit\n");
fd28ca49
JA
1157 printf("\t--help\t\tPrint this page\n");
1158 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of them\n");
4785f995
JA
1159}
1160
972cfd25 1161static int parse_cmd_line(int argc, char *argv[])
ebac4655 1162{
b4692828 1163 struct thread_data *td = NULL;
c2b1e753 1164 int c, ini_idx = 0, lidx, ret;
ebac4655 1165
b4692828 1166 while ((c = getopt_long(argc, argv, "", long_options, &lidx)) != -1) {
ebac4655 1167 switch (c) {
b4692828
JA
1168 case 't':
1169 def_timeout = atoi(optarg);
1170 break;
1171 case 'l':
1172 write_lat_log = 1;
1173 break;
1174 case 'w':
1175 write_bw_log = 1;
1176 break;
1177 case 'o':
1178 f_out = fopen(optarg, "w+");
1179 if (!f_out) {
1180 perror("fopen output");
1181 exit(1);
1182 }
1183 f_err = f_out;
1184 break;
1185 case 'm':
1186 terse_output = 1;
1187 break;
1188 case 'h':
1189 usage();
1190 exit(0);
fd28ca49 1191 case 'c':
29fc6afe
JA
1192 ret = show_cmd_help(options, optarg);
1193 exit(ret);
b4692828
JA
1194 case 'v':
1195 printf("%s\n", fio_version_string);
1196 exit(0);
1197 case FIO_GETOPT_JOB: {
1198 const char *opt = long_options[lidx].name;
1199 char *val = optarg;
1200
c2b1e753
JA
1201 if (!strncmp(opt, "name", 4) && td) {
1202 ret = add_job(td, td->name ?: "fio", 0);
1203 if (ret) {
1204 put_job(td);
1205 return 0;
1206 }
1207 td = NULL;
1208 }
b4692828 1209 if (!td) {
38d0adb0 1210 int global = !strncmp(val, "global", 6);
c2b1e753
JA
1211
1212 td = get_new_job(global, &def_thread);
b4692828
JA
1213 if (!td)
1214 return 0;
1215 }
38d0adb0 1216
b1508cf9
JA
1217 ret = parse_cmd_option(opt, val, options, td);
1218 if (ret) {
1219 log_err("fio: job dropped\n");
1220 put_job(td);
1221 td = NULL;
1222 }
b4692828
JA
1223 break;
1224 }
1225 default:
b4692828 1226 break;
ebac4655
JA
1227 }
1228 }
c9fad893 1229
b4692828 1230 if (td) {
c2b1e753 1231 ret = add_job(td, td->name ?: "fio", 0);
b4692828
JA
1232 if (ret)
1233 put_job(td);
972cfd25 1234 }
774a6177 1235
b4692828
JA
1236 while (optind < argc) {
1237 ini_idx++;
1238 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
1239 ini_file[ini_idx - 1] = strdup(argv[optind]);
1240 optind++;
eb8bbf48 1241 }
972cfd25
JA
1242
1243 return ini_idx;
ebac4655
JA
1244}
1245
1246static void free_shm(void)
1247{
1248 struct shmid_ds sbuf;
1249
1250 if (threads) {
2c0ecd28 1251 shmdt((void *) threads);
ebac4655
JA
1252 threads = NULL;
1253 shmctl(shm_id, IPC_RMID, &sbuf);
1254 }
1255}
1256
906c8d75
JA
1257/*
1258 * The thread area is shared between the main process and the job
1259 * threads/processes. So setup a shared memory segment that will hold
1260 * all the job info.
1261 */
ebac4655
JA
1262static int setup_thread_area(void)
1263{
1264 /*
1265 * 1024 is too much on some machines, scale max_jobs if
1266 * we get a failure that looks like too large a shm segment
1267 */
1268 do {
906c8d75 1269 size_t size = max_jobs * sizeof(struct thread_data);
ebac4655 1270
906c8d75 1271 shm_id = shmget(0, size, IPC_CREAT | 0600);
ebac4655
JA
1272 if (shm_id != -1)
1273 break;
1274 if (errno != EINVAL) {
1275 perror("shmget");
1276 break;
1277 }
1278
1279 max_jobs >>= 1;
1280 } while (max_jobs);
1281
1282 if (shm_id == -1)
1283 return 1;
1284
1285 threads = shmat(shm_id, NULL, 0);
1286 if (threads == (void *) -1) {
1287 perror("shmat");
1288 return 1;
1289 }
1290
1291 atexit(free_shm);
1292 return 0;
1293}
1294
b4692828
JA
1295/*
1296 * Copy the fio options into the long options map, so we mirror
1297 * job and cmd line options.
1298 */
1299static void dupe_job_options(void)
1300{
1301 struct fio_option *o;
1302 unsigned int i;
1303
1304 i = 0;
1305 while (long_options[i].name)
1306 i++;
1307
1308 o = &options[0];
1309 while (o->name) {
1310 long_options[i].name = o->name;
1311 long_options[i].val = FIO_GETOPT_JOB;
1312 if (o->type == FIO_OPT_STR_SET)
1313 long_options[i].has_arg = no_argument;
1314 else
1315 long_options[i].has_arg = required_argument;
1316
1317 i++;
1318 o++;
1319 assert(i < FIO_JOB_OPTS + FIO_CMD_OPTS);
1320 }
1321}
1322
ebac4655
JA
1323int parse_options(int argc, char *argv[])
1324{
972cfd25
JA
1325 int job_files, i;
1326
b4692828
JA
1327 f_out = stdout;
1328 f_err = stderr;
1329
13335ddb
JA
1330 options_init(options);
1331
b4692828
JA
1332 dupe_job_options();
1333
ebac4655
JA
1334 if (setup_thread_area())
1335 return 1;
1336 if (fill_def_thread())
1337 return 1;
1338
972cfd25 1339 job_files = parse_cmd_line(argc, argv);
ebac4655 1340
972cfd25
JA
1341 for (i = 0; i < job_files; i++) {
1342 if (fill_def_thread())
1343 return 1;
0c7e37a0 1344 if (parse_jobs_ini(ini_file[i], i))
972cfd25 1345 return 1;
88c6ed80 1346 free(ini_file[i]);
972cfd25 1347 }
ebac4655 1348
88c6ed80 1349 free(ini_file);
b4692828
JA
1350
1351 if (!thread_number) {
1352 log_err("No jobs defined(s)\n");
b4692828
JA
1353 return 1;
1354 }
1355
ebac4655
JA
1356 return 0;
1357}