Print this page
3956 ::vdev -r should work with pipelines
3957 ztest should update the cachefile before killing itself
3958 multiple scans can lead to partial resilvering
3959 ddt entries are not always resilvered
3960 dsl_scan can skip over dedup-ed blocks if physical birth != logical birth
3961 freed gang blocks are not resilvered and can cause pool to suspend
3962 ztest should print out zfs debug buffer before exiting
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed by: Adam Leventhal <ahl@delphix.com>
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/cmd/ztest/ztest.c
+++ new/usr/src/cmd/ztest/ztest.c
1 1 /*
2 2 * CDDL HEADER START
3 3 *
4 4 * The contents of this file are subject to the terms of the
5 5 * Common Development and Distribution License (the "License").
6 6 * You may not use this file except in compliance with the License.
7 7 *
8 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 * or http://www.opensolaris.org/os/licensing.
10 10 * See the License for the specific language governing permissions
11 11 * and limitations under the License.
12 12 *
↓ open down ↓ |
12 lines elided |
↑ open up ↑ |
13 13 * When distributing Covered Code, include this CDDL HEADER in each
14 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 * If applicable, add the following below this CDDL HEADER, with the
16 16 * fields enclosed by brackets "[]" replaced with your own identifying
17 17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 18 *
19 19 * CDDL HEADER END
20 20 */
21 21 /*
22 22 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23 - * Copyright (c) 2012 by Delphix. All rights reserved.
23 + * Copyright (c) 2013 by Delphix. All rights reserved.
24 24 * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
25 25 * Copyright (c) 2013 Steven Hartland. All rights reserved.
26 26 */
27 27
28 28 /*
29 29 * The objective of this program is to provide a DMU/ZAP/SPA stress test
30 30 * that runs entirely in userland, is easy to use, and easy to extend.
31 31 *
32 32 * The overall design of the ztest program is as follows:
33 33 *
34 34 * (1) For each major functional area (e.g. adding vdevs to a pool,
35 35 * creating and destroying datasets, reading and writing objects, etc)
36 36 * we have a simple routine to test that functionality. These
37 37 * individual routines do not have to do anything "stressful".
38 38 *
39 39 * (2) We turn these simple functionality tests into a stress test by
40 40 * running them all in parallel, with as many threads as desired,
41 41 * and spread across as many datasets, objects, and vdevs as desired.
42 42 *
43 43 * (3) While all this is happening, we inject faults into the pool to
44 44 * verify that self-healing data really works.
45 45 *
46 46 * (4) Every time we open a dataset, we change its checksum and compression
47 47 * functions. Thus even individual objects vary from block to block
48 48 * in which checksum they use and whether they're compressed.
49 49 *
50 50 * (5) To verify that we never lose on-disk consistency after a crash,
51 51 * we run the entire test in a child of the main process.
52 52 * At random times, the child self-immolates with a SIGKILL.
53 53 * This is the software equivalent of pulling the power cord.
54 54 * The parent then runs the test again, using the existing
55 55 * storage pool, as many times as desired. If backwards compatability
56 56 * testing is enabled ztest will sometimes run the "older" version
57 57 * of ztest after a SIGKILL.
58 58 *
59 59 * (6) To verify that we don't have future leaks or temporal incursions,
60 60 * many of the functional tests record the transaction group number
61 61 * as part of their data. When reading old data, they verify that
62 62 * the transaction group number is less than the current, open txg.
63 63 * If you add a new test, please do this if applicable.
64 64 *
65 65 * When run with no arguments, ztest runs for about five minutes and
66 66 * produces no output if successful. To get a little bit of information,
67 67 * specify -V. To get more information, specify -VV, and so on.
68 68 *
69 69 * To turn this into an overnight stress test, use -T to specify run time.
70 70 *
71 71 * You can ask more more vdevs [-v], datasets [-d], or threads [-t]
72 72 * to increase the pool capacity, fanout, and overall stress level.
73 73 *
74 74 * Use the -k option to set the desired frequency of kills.
75 75 *
76 76 * When ztest invokes itself it passes all relevant information through a
77 77 * temporary file which is mmap-ed in the child process. This allows shared
78 78 * memory to survive the exec syscall. The ztest_shared_hdr_t struct is always
79 79 * stored at offset 0 of this file and contains information on the size and
80 80 * number of shared structures in the file. The information stored in this file
81 81 * must remain backwards compatible with older versions of ztest so that
82 82 * ztest can invoke them during backwards compatibility testing (-B).
83 83 */
84 84
85 85 #include <sys/zfs_context.h>
86 86 #include <sys/spa.h>
87 87 #include <sys/dmu.h>
88 88 #include <sys/txg.h>
89 89 #include <sys/dbuf.h>
90 90 #include <sys/zap.h>
91 91 #include <sys/dmu_objset.h>
92 92 #include <sys/poll.h>
93 93 #include <sys/stat.h>
94 94 #include <sys/time.h>
95 95 #include <sys/wait.h>
96 96 #include <sys/mman.h>
97 97 #include <sys/resource.h>
98 98 #include <sys/zio.h>
99 99 #include <sys/zil.h>
100 100 #include <sys/zil_impl.h>
101 101 #include <sys/vdev_impl.h>
102 102 #include <sys/vdev_file.h>
103 103 #include <sys/spa_impl.h>
104 104 #include <sys/metaslab_impl.h>
105 105 #include <sys/dsl_prop.h>
106 106 #include <sys/dsl_dataset.h>
107 107 #include <sys/dsl_destroy.h>
108 108 #include <sys/dsl_scan.h>
109 109 #include <sys/zio_checksum.h>
110 110 #include <sys/refcount.h>
111 111 #include <sys/zfeature.h>
112 112 #include <sys/dsl_userhold.h>
113 113 #include <stdio.h>
114 114 #include <stdio_ext.h>
115 115 #include <stdlib.h>
116 116 #include <unistd.h>
117 117 #include <signal.h>
118 118 #include <umem.h>
119 119 #include <dlfcn.h>
120 120 #include <ctype.h>
121 121 #include <math.h>
122 122 #include <sys/fs/zfs.h>
123 123 #include <libnvpair.h>
124 124
125 125 static int ztest_fd_data = -1;
126 126 static int ztest_fd_rand = -1;
127 127
128 128 typedef struct ztest_shared_hdr {
129 129 uint64_t zh_hdr_size;
130 130 uint64_t zh_opts_size;
131 131 uint64_t zh_size;
132 132 uint64_t zh_stats_size;
133 133 uint64_t zh_stats_count;
134 134 uint64_t zh_ds_size;
135 135 uint64_t zh_ds_count;
136 136 } ztest_shared_hdr_t;
137 137
138 138 static ztest_shared_hdr_t *ztest_shared_hdr;
139 139
140 140 typedef struct ztest_shared_opts {
141 141 char zo_pool[MAXNAMELEN];
142 142 char zo_dir[MAXNAMELEN];
143 143 char zo_alt_ztest[MAXNAMELEN];
144 144 char zo_alt_libpath[MAXNAMELEN];
145 145 uint64_t zo_vdevs;
146 146 uint64_t zo_vdevtime;
147 147 size_t zo_vdev_size;
148 148 int zo_ashift;
149 149 int zo_mirrors;
150 150 int zo_raidz;
151 151 int zo_raidz_parity;
152 152 int zo_datasets;
153 153 int zo_threads;
154 154 uint64_t zo_passtime;
155 155 uint64_t zo_killrate;
156 156 int zo_verbose;
157 157 int zo_init;
158 158 uint64_t zo_time;
159 159 uint64_t zo_maxloops;
160 160 uint64_t zo_metaslab_gang_bang;
161 161 } ztest_shared_opts_t;
162 162
163 163 static const ztest_shared_opts_t ztest_opts_defaults = {
164 164 .zo_pool = { 'z', 't', 'e', 's', 't', '\0' },
165 165 .zo_dir = { '/', 't', 'm', 'p', '\0' },
166 166 .zo_alt_ztest = { '\0' },
167 167 .zo_alt_libpath = { '\0' },
168 168 .zo_vdevs = 5,
169 169 .zo_ashift = SPA_MINBLOCKSHIFT,
170 170 .zo_mirrors = 2,
171 171 .zo_raidz = 4,
172 172 .zo_raidz_parity = 1,
173 173 .zo_vdev_size = SPA_MINDEVSIZE,
174 174 .zo_datasets = 7,
175 175 .zo_threads = 23,
176 176 .zo_passtime = 60, /* 60 seconds */
177 177 .zo_killrate = 70, /* 70% kill rate */
178 178 .zo_verbose = 0,
179 179 .zo_init = 1,
180 180 .zo_time = 300, /* 5 minutes */
181 181 .zo_maxloops = 50, /* max loops during spa_freeze() */
182 182 .zo_metaslab_gang_bang = 32 << 10
183 183 };
184 184
185 185 extern uint64_t metaslab_gang_bang;
186 186 extern uint64_t metaslab_df_alloc_threshold;
187 187 extern uint64_t zfs_deadman_synctime;
188 188
189 189 static ztest_shared_opts_t *ztest_shared_opts;
190 190 static ztest_shared_opts_t ztest_opts;
191 191
192 192 typedef struct ztest_shared_ds {
193 193 uint64_t zd_seq;
194 194 } ztest_shared_ds_t;
195 195
196 196 static ztest_shared_ds_t *ztest_shared_ds;
197 197 #define ZTEST_GET_SHARED_DS(d) (&ztest_shared_ds[d])
198 198
199 199 #define BT_MAGIC 0x123456789abcdefULL
200 200 #define MAXFAULTS() \
201 201 (MAX(zs->zs_mirrors, 1) * (ztest_opts.zo_raidz_parity + 1) - 1)
202 202
203 203 enum ztest_io_type {
204 204 ZTEST_IO_WRITE_TAG,
205 205 ZTEST_IO_WRITE_PATTERN,
206 206 ZTEST_IO_WRITE_ZEROES,
207 207 ZTEST_IO_TRUNCATE,
208 208 ZTEST_IO_SETATTR,
209 209 ZTEST_IO_REWRITE,
210 210 ZTEST_IO_TYPES
211 211 };
212 212
213 213 typedef struct ztest_block_tag {
214 214 uint64_t bt_magic;
215 215 uint64_t bt_objset;
216 216 uint64_t bt_object;
217 217 uint64_t bt_offset;
218 218 uint64_t bt_gen;
219 219 uint64_t bt_txg;
220 220 uint64_t bt_crtxg;
221 221 } ztest_block_tag_t;
222 222
223 223 typedef struct bufwad {
224 224 uint64_t bw_index;
225 225 uint64_t bw_txg;
226 226 uint64_t bw_data;
227 227 } bufwad_t;
228 228
229 229 /*
230 230 * XXX -- fix zfs range locks to be generic so we can use them here.
231 231 */
232 232 typedef enum {
233 233 RL_READER,
234 234 RL_WRITER,
235 235 RL_APPEND
236 236 } rl_type_t;
237 237
238 238 typedef struct rll {
239 239 void *rll_writer;
240 240 int rll_readers;
241 241 mutex_t rll_lock;
242 242 cond_t rll_cv;
243 243 } rll_t;
244 244
245 245 typedef struct rl {
246 246 uint64_t rl_object;
247 247 uint64_t rl_offset;
248 248 uint64_t rl_size;
249 249 rll_t *rl_lock;
250 250 } rl_t;
251 251
252 252 #define ZTEST_RANGE_LOCKS 64
253 253 #define ZTEST_OBJECT_LOCKS 64
254 254
255 255 /*
256 256 * Object descriptor. Used as a template for object lookup/create/remove.
257 257 */
258 258 typedef struct ztest_od {
259 259 uint64_t od_dir;
260 260 uint64_t od_object;
261 261 dmu_object_type_t od_type;
262 262 dmu_object_type_t od_crtype;
263 263 uint64_t od_blocksize;
264 264 uint64_t od_crblocksize;
265 265 uint64_t od_gen;
266 266 uint64_t od_crgen;
267 267 char od_name[MAXNAMELEN];
268 268 } ztest_od_t;
269 269
270 270 /*
271 271 * Per-dataset state.
272 272 */
273 273 typedef struct ztest_ds {
274 274 ztest_shared_ds_t *zd_shared;
275 275 objset_t *zd_os;
276 276 rwlock_t zd_zilog_lock;
277 277 zilog_t *zd_zilog;
278 278 ztest_od_t *zd_od; /* debugging aid */
279 279 char zd_name[MAXNAMELEN];
280 280 mutex_t zd_dirobj_lock;
281 281 rll_t zd_object_lock[ZTEST_OBJECT_LOCKS];
282 282 rll_t zd_range_lock[ZTEST_RANGE_LOCKS];
283 283 } ztest_ds_t;
284 284
285 285 /*
286 286 * Per-iteration state.
287 287 */
288 288 typedef void ztest_func_t(ztest_ds_t *zd, uint64_t id);
289 289
290 290 typedef struct ztest_info {
291 291 ztest_func_t *zi_func; /* test function */
292 292 uint64_t zi_iters; /* iterations per execution */
293 293 uint64_t *zi_interval; /* execute every <interval> seconds */
294 294 } ztest_info_t;
295 295
296 296 typedef struct ztest_shared_callstate {
297 297 uint64_t zc_count; /* per-pass count */
298 298 uint64_t zc_time; /* per-pass time */
299 299 uint64_t zc_next; /* next time to call this function */
300 300 } ztest_shared_callstate_t;
301 301
302 302 static ztest_shared_callstate_t *ztest_shared_callstate;
303 303 #define ZTEST_GET_SHARED_CALLSTATE(c) (&ztest_shared_callstate[c])
304 304
305 305 /*
306 306 * Note: these aren't static because we want dladdr() to work.
307 307 */
308 308 ztest_func_t ztest_dmu_read_write;
309 309 ztest_func_t ztest_dmu_write_parallel;
310 310 ztest_func_t ztest_dmu_object_alloc_free;
311 311 ztest_func_t ztest_dmu_commit_callbacks;
312 312 ztest_func_t ztest_zap;
313 313 ztest_func_t ztest_zap_parallel;
314 314 ztest_func_t ztest_zil_commit;
315 315 ztest_func_t ztest_zil_remount;
316 316 ztest_func_t ztest_dmu_read_write_zcopy;
317 317 ztest_func_t ztest_dmu_objset_create_destroy;
318 318 ztest_func_t ztest_dmu_prealloc;
319 319 ztest_func_t ztest_fzap;
320 320 ztest_func_t ztest_dmu_snapshot_create_destroy;
321 321 ztest_func_t ztest_dsl_prop_get_set;
322 322 ztest_func_t ztest_spa_prop_get_set;
323 323 ztest_func_t ztest_spa_create_destroy;
324 324 ztest_func_t ztest_fault_inject;
325 325 ztest_func_t ztest_ddt_repair;
326 326 ztest_func_t ztest_dmu_snapshot_hold;
327 327 ztest_func_t ztest_spa_rename;
328 328 ztest_func_t ztest_scrub;
329 329 ztest_func_t ztest_dsl_dataset_promote_busy;
330 330 ztest_func_t ztest_vdev_attach_detach;
331 331 ztest_func_t ztest_vdev_LUN_growth;
332 332 ztest_func_t ztest_vdev_add_remove;
333 333 ztest_func_t ztest_vdev_aux_add_remove;
334 334 ztest_func_t ztest_split_pool;
335 335 ztest_func_t ztest_reguid;
336 336 ztest_func_t ztest_spa_upgrade;
337 337
338 338 uint64_t zopt_always = 0ULL * NANOSEC; /* all the time */
339 339 uint64_t zopt_incessant = 1ULL * NANOSEC / 10; /* every 1/10 second */
340 340 uint64_t zopt_often = 1ULL * NANOSEC; /* every second */
341 341 uint64_t zopt_sometimes = 10ULL * NANOSEC; /* every 10 seconds */
342 342 uint64_t zopt_rarely = 60ULL * NANOSEC; /* every 60 seconds */
343 343
344 344 ztest_info_t ztest_info[] = {
345 345 { ztest_dmu_read_write, 1, &zopt_always },
346 346 { ztest_dmu_write_parallel, 10, &zopt_always },
347 347 { ztest_dmu_object_alloc_free, 1, &zopt_always },
348 348 { ztest_dmu_commit_callbacks, 1, &zopt_always },
349 349 { ztest_zap, 30, &zopt_always },
350 350 { ztest_zap_parallel, 100, &zopt_always },
351 351 { ztest_split_pool, 1, &zopt_always },
352 352 { ztest_zil_commit, 1, &zopt_incessant },
353 353 { ztest_zil_remount, 1, &zopt_sometimes },
354 354 { ztest_dmu_read_write_zcopy, 1, &zopt_often },
355 355 { ztest_dmu_objset_create_destroy, 1, &zopt_often },
356 356 { ztest_dsl_prop_get_set, 1, &zopt_often },
357 357 { ztest_spa_prop_get_set, 1, &zopt_sometimes },
358 358 #if 0
359 359 { ztest_dmu_prealloc, 1, &zopt_sometimes },
360 360 #endif
361 361 { ztest_fzap, 1, &zopt_sometimes },
362 362 { ztest_dmu_snapshot_create_destroy, 1, &zopt_sometimes },
363 363 { ztest_spa_create_destroy, 1, &zopt_sometimes },
364 364 { ztest_fault_inject, 1, &zopt_sometimes },
365 365 { ztest_ddt_repair, 1, &zopt_sometimes },
366 366 { ztest_dmu_snapshot_hold, 1, &zopt_sometimes },
367 367 { ztest_reguid, 1, &zopt_rarely },
368 368 { ztest_spa_rename, 1, &zopt_rarely },
369 369 { ztest_scrub, 1, &zopt_rarely },
370 370 { ztest_spa_upgrade, 1, &zopt_rarely },
371 371 { ztest_dsl_dataset_promote_busy, 1, &zopt_rarely },
372 372 { ztest_vdev_attach_detach, 1, &zopt_sometimes },
373 373 { ztest_vdev_LUN_growth, 1, &zopt_rarely },
374 374 { ztest_vdev_add_remove, 1,
375 375 &ztest_opts.zo_vdevtime },
376 376 { ztest_vdev_aux_add_remove, 1,
377 377 &ztest_opts.zo_vdevtime },
378 378 };
379 379
380 380 #define ZTEST_FUNCS (sizeof (ztest_info) / sizeof (ztest_info_t))
381 381
382 382 /*
383 383 * The following struct is used to hold a list of uncalled commit callbacks.
384 384 * The callbacks are ordered by txg number.
385 385 */
386 386 typedef struct ztest_cb_list {
387 387 mutex_t zcl_callbacks_lock;
388 388 list_t zcl_callbacks;
389 389 } ztest_cb_list_t;
390 390
391 391 /*
392 392 * Stuff we need to share writably between parent and child.
393 393 */
394 394 typedef struct ztest_shared {
395 395 boolean_t zs_do_init;
396 396 hrtime_t zs_proc_start;
397 397 hrtime_t zs_proc_stop;
398 398 hrtime_t zs_thread_start;
399 399 hrtime_t zs_thread_stop;
400 400 hrtime_t zs_thread_kill;
401 401 uint64_t zs_enospc_count;
402 402 uint64_t zs_vdev_next_leaf;
403 403 uint64_t zs_vdev_aux;
404 404 uint64_t zs_alloc;
405 405 uint64_t zs_space;
406 406 uint64_t zs_splits;
407 407 uint64_t zs_mirrors;
408 408 uint64_t zs_metaslab_sz;
409 409 uint64_t zs_metaslab_df_alloc_threshold;
410 410 uint64_t zs_guid;
411 411 } ztest_shared_t;
412 412
413 413 #define ID_PARALLEL -1ULL
414 414
415 415 static char ztest_dev_template[] = "%s/%s.%llua";
416 416 static char ztest_aux_template[] = "%s/%s.%s.%llu";
417 417 ztest_shared_t *ztest_shared;
418 418
419 419 static spa_t *ztest_spa = NULL;
420 420 static ztest_ds_t *ztest_ds;
421 421
422 422 static mutex_t ztest_vdev_lock;
423 423
424 424 /*
425 425 * The ztest_name_lock protects the pool and dataset namespace used by
426 426 * the individual tests. To modify the namespace, consumers must grab
427 427 * this lock as writer. Grabbing the lock as reader will ensure that the
428 428 * namespace does not change while the lock is held.
429 429 */
430 430 static rwlock_t ztest_name_lock;
431 431
432 432 static boolean_t ztest_dump_core = B_TRUE;
433 433 static boolean_t ztest_exiting;
434 434
435 435 /* Global commit callback list */
436 436 static ztest_cb_list_t zcl;
437 437
438 438 enum ztest_object {
439 439 ZTEST_META_DNODE = 0,
440 440 ZTEST_DIROBJ,
441 441 ZTEST_OBJECTS
442 442 };
443 443
444 444 static void usage(boolean_t) __NORETURN;
445 445
446 446 /*
447 447 * These libumem hooks provide a reasonable set of defaults for the allocator's
448 448 * debugging facilities.
449 449 */
450 450 const char *
451 451 _umem_debug_init()
452 452 {
453 453 return ("default,verbose"); /* $UMEM_DEBUG setting */
454 454 }
455 455
456 456 const char *
457 457 _umem_logging_init(void)
458 458 {
459 459 return ("fail,contents"); /* $UMEM_LOGGING setting */
460 460 }
461 461
462 462 #define FATAL_MSG_SZ 1024
463 463
464 464 char *fatal_msg;
465 465
466 466 static void
467 467 fatal(int do_perror, char *message, ...)
468 468 {
469 469 va_list args;
470 470 int save_errno = errno;
471 471 char buf[FATAL_MSG_SZ];
472 472
473 473 (void) fflush(stdout);
474 474
475 475 va_start(args, message);
476 476 (void) sprintf(buf, "ztest: ");
477 477 /* LINTED */
478 478 (void) vsprintf(buf + strlen(buf), message, args);
479 479 va_end(args);
480 480 if (do_perror) {
481 481 (void) snprintf(buf + strlen(buf), FATAL_MSG_SZ - strlen(buf),
482 482 ": %s", strerror(save_errno));
483 483 }
484 484 (void) fprintf(stderr, "%s\n", buf);
485 485 fatal_msg = buf; /* to ease debugging */
486 486 if (ztest_dump_core)
487 487 abort();
488 488 exit(3);
489 489 }
490 490
491 491 static int
492 492 str2shift(const char *buf)
493 493 {
494 494 const char *ends = "BKMGTPEZ";
495 495 int i;
496 496
497 497 if (buf[0] == '\0')
498 498 return (0);
499 499 for (i = 0; i < strlen(ends); i++) {
500 500 if (toupper(buf[0]) == ends[i])
501 501 break;
502 502 }
503 503 if (i == strlen(ends)) {
504 504 (void) fprintf(stderr, "ztest: invalid bytes suffix: %s\n",
505 505 buf);
506 506 usage(B_FALSE);
507 507 }
508 508 if (buf[1] == '\0' || (toupper(buf[1]) == 'B' && buf[2] == '\0')) {
509 509 return (10*i);
510 510 }
511 511 (void) fprintf(stderr, "ztest: invalid bytes suffix: %s\n", buf);
512 512 usage(B_FALSE);
513 513 /* NOTREACHED */
514 514 }
515 515
516 516 static uint64_t
517 517 nicenumtoull(const char *buf)
518 518 {
519 519 char *end;
520 520 uint64_t val;
521 521
522 522 val = strtoull(buf, &end, 0);
523 523 if (end == buf) {
524 524 (void) fprintf(stderr, "ztest: bad numeric value: %s\n", buf);
525 525 usage(B_FALSE);
526 526 } else if (end[0] == '.') {
527 527 double fval = strtod(buf, &end);
528 528 fval *= pow(2, str2shift(end));
529 529 if (fval > UINT64_MAX) {
530 530 (void) fprintf(stderr, "ztest: value too large: %s\n",
531 531 buf);
532 532 usage(B_FALSE);
533 533 }
534 534 val = (uint64_t)fval;
535 535 } else {
536 536 int shift = str2shift(end);
537 537 if (shift >= 64 || (val << shift) >> shift != val) {
538 538 (void) fprintf(stderr, "ztest: value too large: %s\n",
539 539 buf);
540 540 usage(B_FALSE);
541 541 }
542 542 val <<= shift;
543 543 }
544 544 return (val);
545 545 }
546 546
547 547 static void
548 548 usage(boolean_t requested)
549 549 {
550 550 const ztest_shared_opts_t *zo = &ztest_opts_defaults;
551 551
552 552 char nice_vdev_size[10];
553 553 char nice_gang_bang[10];
554 554 FILE *fp = requested ? stdout : stderr;
555 555
556 556 nicenum(zo->zo_vdev_size, nice_vdev_size);
557 557 nicenum(zo->zo_metaslab_gang_bang, nice_gang_bang);
558 558
559 559 (void) fprintf(fp, "Usage: %s\n"
560 560 "\t[-v vdevs (default: %llu)]\n"
561 561 "\t[-s size_of_each_vdev (default: %s)]\n"
562 562 "\t[-a alignment_shift (default: %d)] use 0 for random\n"
563 563 "\t[-m mirror_copies (default: %d)]\n"
564 564 "\t[-r raidz_disks (default: %d)]\n"
565 565 "\t[-R raidz_parity (default: %d)]\n"
566 566 "\t[-d datasets (default: %d)]\n"
567 567 "\t[-t threads (default: %d)]\n"
568 568 "\t[-g gang_block_threshold (default: %s)]\n"
569 569 "\t[-i init_count (default: %d)] initialize pool i times\n"
570 570 "\t[-k kill_percentage (default: %llu%%)]\n"
571 571 "\t[-p pool_name (default: %s)]\n"
572 572 "\t[-f dir (default: %s)] file directory for vdev files\n"
573 573 "\t[-V] verbose (use multiple times for ever more blather)\n"
574 574 "\t[-E] use existing pool instead of creating new one\n"
575 575 "\t[-T time (default: %llu sec)] total run time\n"
576 576 "\t[-F freezeloops (default: %llu)] max loops in spa_freeze()\n"
577 577 "\t[-P passtime (default: %llu sec)] time per pass\n"
578 578 "\t[-B alt_ztest (default: <none>)] alternate ztest path\n"
579 579 "\t[-h] (print help)\n"
580 580 "",
581 581 zo->zo_pool,
582 582 (u_longlong_t)zo->zo_vdevs, /* -v */
583 583 nice_vdev_size, /* -s */
584 584 zo->zo_ashift, /* -a */
585 585 zo->zo_mirrors, /* -m */
586 586 zo->zo_raidz, /* -r */
587 587 zo->zo_raidz_parity, /* -R */
588 588 zo->zo_datasets, /* -d */
589 589 zo->zo_threads, /* -t */
590 590 nice_gang_bang, /* -g */
591 591 zo->zo_init, /* -i */
592 592 (u_longlong_t)zo->zo_killrate, /* -k */
593 593 zo->zo_pool, /* -p */
594 594 zo->zo_dir, /* -f */
595 595 (u_longlong_t)zo->zo_time, /* -T */
596 596 (u_longlong_t)zo->zo_maxloops, /* -F */
597 597 (u_longlong_t)zo->zo_passtime);
598 598 exit(requested ? 0 : 1);
599 599 }
600 600
601 601 static void
602 602 process_options(int argc, char **argv)
603 603 {
604 604 char *path;
605 605 ztest_shared_opts_t *zo = &ztest_opts;
606 606
607 607 int opt;
608 608 uint64_t value;
609 609 char altdir[MAXNAMELEN] = { 0 };
610 610
611 611 bcopy(&ztest_opts_defaults, zo, sizeof (*zo));
612 612
613 613 while ((opt = getopt(argc, argv,
614 614 "v:s:a:m:r:R:d:t:g:i:k:p:f:VET:P:hF:B:")) != EOF) {
615 615 value = 0;
616 616 switch (opt) {
617 617 case 'v':
618 618 case 's':
619 619 case 'a':
620 620 case 'm':
621 621 case 'r':
622 622 case 'R':
623 623 case 'd':
624 624 case 't':
625 625 case 'g':
626 626 case 'i':
627 627 case 'k':
628 628 case 'T':
629 629 case 'P':
630 630 case 'F':
631 631 value = nicenumtoull(optarg);
632 632 }
633 633 switch (opt) {
634 634 case 'v':
635 635 zo->zo_vdevs = value;
636 636 break;
637 637 case 's':
638 638 zo->zo_vdev_size = MAX(SPA_MINDEVSIZE, value);
639 639 break;
640 640 case 'a':
641 641 zo->zo_ashift = value;
642 642 break;
643 643 case 'm':
644 644 zo->zo_mirrors = value;
645 645 break;
646 646 case 'r':
647 647 zo->zo_raidz = MAX(1, value);
648 648 break;
649 649 case 'R':
650 650 zo->zo_raidz_parity = MIN(MAX(value, 1), 3);
651 651 break;
652 652 case 'd':
653 653 zo->zo_datasets = MAX(1, value);
654 654 break;
655 655 case 't':
656 656 zo->zo_threads = MAX(1, value);
657 657 break;
658 658 case 'g':
659 659 zo->zo_metaslab_gang_bang = MAX(SPA_MINBLOCKSIZE << 1,
660 660 value);
661 661 break;
662 662 case 'i':
663 663 zo->zo_init = value;
664 664 break;
665 665 case 'k':
666 666 zo->zo_killrate = value;
667 667 break;
668 668 case 'p':
669 669 (void) strlcpy(zo->zo_pool, optarg,
670 670 sizeof (zo->zo_pool));
671 671 break;
672 672 case 'f':
673 673 path = realpath(optarg, NULL);
674 674 if (path == NULL) {
675 675 (void) fprintf(stderr, "error: %s: %s\n",
676 676 optarg, strerror(errno));
677 677 usage(B_FALSE);
678 678 } else {
679 679 (void) strlcpy(zo->zo_dir, path,
680 680 sizeof (zo->zo_dir));
681 681 }
682 682 break;
683 683 case 'V':
684 684 zo->zo_verbose++;
685 685 break;
686 686 case 'E':
687 687 zo->zo_init = 0;
688 688 break;
689 689 case 'T':
690 690 zo->zo_time = value;
691 691 break;
692 692 case 'P':
693 693 zo->zo_passtime = MAX(1, value);
694 694 break;
695 695 case 'F':
696 696 zo->zo_maxloops = MAX(1, value);
697 697 break;
698 698 case 'B':
699 699 (void) strlcpy(altdir, optarg, sizeof (altdir));
700 700 break;
701 701 case 'h':
702 702 usage(B_TRUE);
703 703 break;
704 704 case '?':
705 705 default:
706 706 usage(B_FALSE);
707 707 break;
708 708 }
709 709 }
710 710
711 711 zo->zo_raidz_parity = MIN(zo->zo_raidz_parity, zo->zo_raidz - 1);
712 712
713 713 zo->zo_vdevtime =
714 714 (zo->zo_vdevs > 0 ? zo->zo_time * NANOSEC / zo->zo_vdevs :
715 715 UINT64_MAX >> 2);
716 716
717 717 if (strlen(altdir) > 0) {
718 718 char *cmd;
719 719 char *realaltdir;
720 720 char *bin;
721 721 char *ztest;
722 722 char *isa;
723 723 int isalen;
724 724
725 725 cmd = umem_alloc(MAXPATHLEN, UMEM_NOFAIL);
726 726 realaltdir = umem_alloc(MAXPATHLEN, UMEM_NOFAIL);
727 727
728 728 VERIFY(NULL != realpath(getexecname(), cmd));
729 729 if (0 != access(altdir, F_OK)) {
730 730 ztest_dump_core = B_FALSE;
731 731 fatal(B_TRUE, "invalid alternate ztest path: %s",
732 732 altdir);
733 733 }
734 734 VERIFY(NULL != realpath(altdir, realaltdir));
735 735
736 736 /*
737 737 * 'cmd' should be of the form "<anything>/usr/bin/<isa>/ztest".
738 738 * We want to extract <isa> to determine if we should use
739 739 * 32 or 64 bit binaries.
740 740 */
741 741 bin = strstr(cmd, "/usr/bin/");
742 742 ztest = strstr(bin, "/ztest");
743 743 isa = bin + 9;
744 744 isalen = ztest - isa;
745 745 (void) snprintf(zo->zo_alt_ztest, sizeof (zo->zo_alt_ztest),
746 746 "%s/usr/bin/%.*s/ztest", realaltdir, isalen, isa);
747 747 (void) snprintf(zo->zo_alt_libpath, sizeof (zo->zo_alt_libpath),
748 748 "%s/usr/lib/%.*s", realaltdir, isalen, isa);
749 749
750 750 if (0 != access(zo->zo_alt_ztest, X_OK)) {
751 751 ztest_dump_core = B_FALSE;
752 752 fatal(B_TRUE, "invalid alternate ztest: %s",
753 753 zo->zo_alt_ztest);
754 754 } else if (0 != access(zo->zo_alt_libpath, X_OK)) {
755 755 ztest_dump_core = B_FALSE;
756 756 fatal(B_TRUE, "invalid alternate lib directory %s",
757 757 zo->zo_alt_libpath);
758 758 }
759 759
↓ open down ↓ |
726 lines elided |
↑ open up ↑ |
760 760 umem_free(cmd, MAXPATHLEN);
761 761 umem_free(realaltdir, MAXPATHLEN);
762 762 }
763 763 }
764 764
765 765 static void
766 766 ztest_kill(ztest_shared_t *zs)
767 767 {
768 768 zs->zs_alloc = metaslab_class_get_alloc(spa_normal_class(ztest_spa));
769 769 zs->zs_space = metaslab_class_get_space(spa_normal_class(ztest_spa));
770 +
771 + /*
772 + * Before we kill off ztest, make sure that the config is updated.
773 + * See comment above spa_config_sync().
774 + */
775 + mutex_enter(&spa_namespace_lock);
776 + spa_config_sync(ztest_spa, B_FALSE, B_FALSE);
777 + mutex_exit(&spa_namespace_lock);
778 +
779 + zfs_dbgmsg_print(FTAG);
770 780 (void) kill(getpid(), SIGKILL);
771 781 }
772 782
773 783 static uint64_t
774 784 ztest_random(uint64_t range)
775 785 {
776 786 uint64_t r;
777 787
778 788 ASSERT3S(ztest_fd_rand, >=, 0);
779 789
780 790 if (range == 0)
781 791 return (0);
782 792
783 793 if (read(ztest_fd_rand, &r, sizeof (r)) != sizeof (r))
784 794 fatal(1, "short read from /dev/urandom");
785 795
786 796 return (r % range);
787 797 }
788 798
789 799 /* ARGSUSED */
790 800 static void
791 801 ztest_record_enospc(const char *s)
792 802 {
793 803 ztest_shared->zs_enospc_count++;
794 804 }
795 805
796 806 static uint64_t
797 807 ztest_get_ashift(void)
798 808 {
799 809 if (ztest_opts.zo_ashift == 0)
800 810 return (SPA_MINBLOCKSHIFT + ztest_random(3));
801 811 return (ztest_opts.zo_ashift);
802 812 }
803 813
804 814 static nvlist_t *
805 815 make_vdev_file(char *path, char *aux, char *pool, size_t size, uint64_t ashift)
806 816 {
807 817 char pathbuf[MAXPATHLEN];
808 818 uint64_t vdev;
809 819 nvlist_t *file;
810 820
811 821 if (ashift == 0)
812 822 ashift = ztest_get_ashift();
813 823
814 824 if (path == NULL) {
815 825 path = pathbuf;
816 826
817 827 if (aux != NULL) {
818 828 vdev = ztest_shared->zs_vdev_aux;
819 829 (void) snprintf(path, sizeof (pathbuf),
820 830 ztest_aux_template, ztest_opts.zo_dir,
821 831 pool == NULL ? ztest_opts.zo_pool : pool,
822 832 aux, vdev);
823 833 } else {
824 834 vdev = ztest_shared->zs_vdev_next_leaf++;
825 835 (void) snprintf(path, sizeof (pathbuf),
826 836 ztest_dev_template, ztest_opts.zo_dir,
827 837 pool == NULL ? ztest_opts.zo_pool : pool, vdev);
828 838 }
829 839 }
830 840
831 841 if (size != 0) {
832 842 int fd = open(path, O_RDWR | O_CREAT | O_TRUNC, 0666);
833 843 if (fd == -1)
834 844 fatal(1, "can't open %s", path);
835 845 if (ftruncate(fd, size) != 0)
836 846 fatal(1, "can't ftruncate %s", path);
837 847 (void) close(fd);
838 848 }
839 849
840 850 VERIFY(nvlist_alloc(&file, NV_UNIQUE_NAME, 0) == 0);
841 851 VERIFY(nvlist_add_string(file, ZPOOL_CONFIG_TYPE, VDEV_TYPE_FILE) == 0);
842 852 VERIFY(nvlist_add_string(file, ZPOOL_CONFIG_PATH, path) == 0);
843 853 VERIFY(nvlist_add_uint64(file, ZPOOL_CONFIG_ASHIFT, ashift) == 0);
844 854
845 855 return (file);
846 856 }
847 857
848 858 static nvlist_t *
849 859 make_vdev_raidz(char *path, char *aux, char *pool, size_t size,
850 860 uint64_t ashift, int r)
851 861 {
852 862 nvlist_t *raidz, **child;
853 863 int c;
854 864
855 865 if (r < 2)
856 866 return (make_vdev_file(path, aux, pool, size, ashift));
857 867 child = umem_alloc(r * sizeof (nvlist_t *), UMEM_NOFAIL);
858 868
859 869 for (c = 0; c < r; c++)
860 870 child[c] = make_vdev_file(path, aux, pool, size, ashift);
861 871
862 872 VERIFY(nvlist_alloc(&raidz, NV_UNIQUE_NAME, 0) == 0);
863 873 VERIFY(nvlist_add_string(raidz, ZPOOL_CONFIG_TYPE,
864 874 VDEV_TYPE_RAIDZ) == 0);
865 875 VERIFY(nvlist_add_uint64(raidz, ZPOOL_CONFIG_NPARITY,
866 876 ztest_opts.zo_raidz_parity) == 0);
867 877 VERIFY(nvlist_add_nvlist_array(raidz, ZPOOL_CONFIG_CHILDREN,
868 878 child, r) == 0);
869 879
870 880 for (c = 0; c < r; c++)
871 881 nvlist_free(child[c]);
872 882
873 883 umem_free(child, r * sizeof (nvlist_t *));
874 884
875 885 return (raidz);
876 886 }
877 887
878 888 static nvlist_t *
879 889 make_vdev_mirror(char *path, char *aux, char *pool, size_t size,
880 890 uint64_t ashift, int r, int m)
881 891 {
882 892 nvlist_t *mirror, **child;
883 893 int c;
884 894
885 895 if (m < 1)
886 896 return (make_vdev_raidz(path, aux, pool, size, ashift, r));
887 897
888 898 child = umem_alloc(m * sizeof (nvlist_t *), UMEM_NOFAIL);
889 899
890 900 for (c = 0; c < m; c++)
891 901 child[c] = make_vdev_raidz(path, aux, pool, size, ashift, r);
892 902
893 903 VERIFY(nvlist_alloc(&mirror, NV_UNIQUE_NAME, 0) == 0);
894 904 VERIFY(nvlist_add_string(mirror, ZPOOL_CONFIG_TYPE,
895 905 VDEV_TYPE_MIRROR) == 0);
896 906 VERIFY(nvlist_add_nvlist_array(mirror, ZPOOL_CONFIG_CHILDREN,
897 907 child, m) == 0);
898 908
899 909 for (c = 0; c < m; c++)
900 910 nvlist_free(child[c]);
901 911
902 912 umem_free(child, m * sizeof (nvlist_t *));
903 913
904 914 return (mirror);
905 915 }
906 916
907 917 static nvlist_t *
908 918 make_vdev_root(char *path, char *aux, char *pool, size_t size, uint64_t ashift,
909 919 int log, int r, int m, int t)
910 920 {
911 921 nvlist_t *root, **child;
912 922 int c;
913 923
914 924 ASSERT(t > 0);
915 925
916 926 child = umem_alloc(t * sizeof (nvlist_t *), UMEM_NOFAIL);
917 927
918 928 for (c = 0; c < t; c++) {
919 929 child[c] = make_vdev_mirror(path, aux, pool, size, ashift,
920 930 r, m);
921 931 VERIFY(nvlist_add_uint64(child[c], ZPOOL_CONFIG_IS_LOG,
922 932 log) == 0);
923 933 }
924 934
925 935 VERIFY(nvlist_alloc(&root, NV_UNIQUE_NAME, 0) == 0);
926 936 VERIFY(nvlist_add_string(root, ZPOOL_CONFIG_TYPE, VDEV_TYPE_ROOT) == 0);
927 937 VERIFY(nvlist_add_nvlist_array(root, aux ? aux : ZPOOL_CONFIG_CHILDREN,
928 938 child, t) == 0);
929 939
930 940 for (c = 0; c < t; c++)
931 941 nvlist_free(child[c]);
932 942
933 943 umem_free(child, t * sizeof (nvlist_t *));
934 944
935 945 return (root);
936 946 }
937 947
938 948 /*
939 949 * Find a random spa version. Returns back a random spa version in the
940 950 * range [initial_version, SPA_VERSION_FEATURES].
941 951 */
942 952 static uint64_t
943 953 ztest_random_spa_version(uint64_t initial_version)
944 954 {
945 955 uint64_t version = initial_version;
946 956
947 957 if (version <= SPA_VERSION_BEFORE_FEATURES) {
948 958 version = version +
949 959 ztest_random(SPA_VERSION_BEFORE_FEATURES - version + 1);
950 960 }
951 961
952 962 if (version > SPA_VERSION_BEFORE_FEATURES)
953 963 version = SPA_VERSION_FEATURES;
954 964
955 965 ASSERT(SPA_VERSION_IS_SUPPORTED(version));
956 966 return (version);
957 967 }
958 968
959 969 static int
960 970 ztest_random_blocksize(void)
961 971 {
962 972 return (1 << (SPA_MINBLOCKSHIFT +
963 973 ztest_random(SPA_MAXBLOCKSHIFT - SPA_MINBLOCKSHIFT + 1)));
964 974 }
965 975
966 976 static int
967 977 ztest_random_ibshift(void)
968 978 {
969 979 return (DN_MIN_INDBLKSHIFT +
970 980 ztest_random(DN_MAX_INDBLKSHIFT - DN_MIN_INDBLKSHIFT + 1));
971 981 }
972 982
973 983 static uint64_t
974 984 ztest_random_vdev_top(spa_t *spa, boolean_t log_ok)
975 985 {
976 986 uint64_t top;
977 987 vdev_t *rvd = spa->spa_root_vdev;
978 988 vdev_t *tvd;
979 989
980 990 ASSERT(spa_config_held(spa, SCL_ALL, RW_READER) != 0);
981 991
982 992 do {
983 993 top = ztest_random(rvd->vdev_children);
984 994 tvd = rvd->vdev_child[top];
985 995 } while (tvd->vdev_ishole || (tvd->vdev_islog && !log_ok) ||
986 996 tvd->vdev_mg == NULL || tvd->vdev_mg->mg_class == NULL);
987 997
988 998 return (top);
989 999 }
990 1000
991 1001 static uint64_t
992 1002 ztest_random_dsl_prop(zfs_prop_t prop)
993 1003 {
994 1004 uint64_t value;
995 1005
996 1006 do {
997 1007 value = zfs_prop_random_value(prop, ztest_random(-1ULL));
998 1008 } while (prop == ZFS_PROP_CHECKSUM && value == ZIO_CHECKSUM_OFF);
999 1009
1000 1010 return (value);
1001 1011 }
1002 1012
1003 1013 static int
1004 1014 ztest_dsl_prop_set_uint64(char *osname, zfs_prop_t prop, uint64_t value,
1005 1015 boolean_t inherit)
1006 1016 {
1007 1017 const char *propname = zfs_prop_to_name(prop);
1008 1018 const char *valname;
1009 1019 char setpoint[MAXPATHLEN];
1010 1020 uint64_t curval;
1011 1021 int error;
1012 1022
1013 1023 error = dsl_prop_set_int(osname, propname,
1014 1024 (inherit ? ZPROP_SRC_NONE : ZPROP_SRC_LOCAL), value);
1015 1025
1016 1026 if (error == ENOSPC) {
1017 1027 ztest_record_enospc(FTAG);
1018 1028 return (error);
1019 1029 }
1020 1030 ASSERT0(error);
1021 1031
1022 1032 VERIFY0(dsl_prop_get_integer(osname, propname, &curval, setpoint));
1023 1033
1024 1034 if (ztest_opts.zo_verbose >= 6) {
1025 1035 VERIFY(zfs_prop_index_to_string(prop, curval, &valname) == 0);
1026 1036 (void) printf("%s %s = %s at '%s'\n",
1027 1037 osname, propname, valname, setpoint);
1028 1038 }
1029 1039
1030 1040 return (error);
1031 1041 }
1032 1042
1033 1043 static int
1034 1044 ztest_spa_prop_set_uint64(zpool_prop_t prop, uint64_t value)
1035 1045 {
1036 1046 spa_t *spa = ztest_spa;
1037 1047 nvlist_t *props = NULL;
1038 1048 int error;
1039 1049
1040 1050 VERIFY(nvlist_alloc(&props, NV_UNIQUE_NAME, 0) == 0);
1041 1051 VERIFY(nvlist_add_uint64(props, zpool_prop_to_name(prop), value) == 0);
1042 1052
1043 1053 error = spa_prop_set(spa, props);
1044 1054
1045 1055 nvlist_free(props);
1046 1056
1047 1057 if (error == ENOSPC) {
1048 1058 ztest_record_enospc(FTAG);
1049 1059 return (error);
1050 1060 }
1051 1061 ASSERT0(error);
1052 1062
1053 1063 return (error);
1054 1064 }
1055 1065
1056 1066 static void
1057 1067 ztest_rll_init(rll_t *rll)
1058 1068 {
1059 1069 rll->rll_writer = NULL;
1060 1070 rll->rll_readers = 0;
1061 1071 VERIFY(_mutex_init(&rll->rll_lock, USYNC_THREAD, NULL) == 0);
1062 1072 VERIFY(cond_init(&rll->rll_cv, USYNC_THREAD, NULL) == 0);
1063 1073 }
1064 1074
1065 1075 static void
1066 1076 ztest_rll_destroy(rll_t *rll)
1067 1077 {
1068 1078 ASSERT(rll->rll_writer == NULL);
1069 1079 ASSERT(rll->rll_readers == 0);
1070 1080 VERIFY(_mutex_destroy(&rll->rll_lock) == 0);
1071 1081 VERIFY(cond_destroy(&rll->rll_cv) == 0);
1072 1082 }
1073 1083
1074 1084 static void
1075 1085 ztest_rll_lock(rll_t *rll, rl_type_t type)
1076 1086 {
1077 1087 VERIFY(mutex_lock(&rll->rll_lock) == 0);
1078 1088
1079 1089 if (type == RL_READER) {
1080 1090 while (rll->rll_writer != NULL)
1081 1091 (void) cond_wait(&rll->rll_cv, &rll->rll_lock);
1082 1092 rll->rll_readers++;
1083 1093 } else {
1084 1094 while (rll->rll_writer != NULL || rll->rll_readers)
1085 1095 (void) cond_wait(&rll->rll_cv, &rll->rll_lock);
1086 1096 rll->rll_writer = curthread;
1087 1097 }
1088 1098
1089 1099 VERIFY(mutex_unlock(&rll->rll_lock) == 0);
1090 1100 }
1091 1101
1092 1102 static void
1093 1103 ztest_rll_unlock(rll_t *rll)
1094 1104 {
1095 1105 VERIFY(mutex_lock(&rll->rll_lock) == 0);
1096 1106
1097 1107 if (rll->rll_writer) {
1098 1108 ASSERT(rll->rll_readers == 0);
1099 1109 rll->rll_writer = NULL;
1100 1110 } else {
1101 1111 ASSERT(rll->rll_readers != 0);
1102 1112 ASSERT(rll->rll_writer == NULL);
1103 1113 rll->rll_readers--;
1104 1114 }
1105 1115
1106 1116 if (rll->rll_writer == NULL && rll->rll_readers == 0)
1107 1117 VERIFY(cond_broadcast(&rll->rll_cv) == 0);
1108 1118
1109 1119 VERIFY(mutex_unlock(&rll->rll_lock) == 0);
1110 1120 }
1111 1121
1112 1122 static void
1113 1123 ztest_object_lock(ztest_ds_t *zd, uint64_t object, rl_type_t type)
1114 1124 {
1115 1125 rll_t *rll = &zd->zd_object_lock[object & (ZTEST_OBJECT_LOCKS - 1)];
1116 1126
1117 1127 ztest_rll_lock(rll, type);
1118 1128 }
1119 1129
1120 1130 static void
1121 1131 ztest_object_unlock(ztest_ds_t *zd, uint64_t object)
1122 1132 {
1123 1133 rll_t *rll = &zd->zd_object_lock[object & (ZTEST_OBJECT_LOCKS - 1)];
1124 1134
1125 1135 ztest_rll_unlock(rll);
1126 1136 }
1127 1137
1128 1138 static rl_t *
1129 1139 ztest_range_lock(ztest_ds_t *zd, uint64_t object, uint64_t offset,
1130 1140 uint64_t size, rl_type_t type)
1131 1141 {
1132 1142 uint64_t hash = object ^ (offset % (ZTEST_RANGE_LOCKS + 1));
1133 1143 rll_t *rll = &zd->zd_range_lock[hash & (ZTEST_RANGE_LOCKS - 1)];
1134 1144 rl_t *rl;
1135 1145
1136 1146 rl = umem_alloc(sizeof (*rl), UMEM_NOFAIL);
1137 1147 rl->rl_object = object;
1138 1148 rl->rl_offset = offset;
1139 1149 rl->rl_size = size;
1140 1150 rl->rl_lock = rll;
1141 1151
1142 1152 ztest_rll_lock(rll, type);
1143 1153
1144 1154 return (rl);
1145 1155 }
1146 1156
1147 1157 static void
1148 1158 ztest_range_unlock(rl_t *rl)
1149 1159 {
1150 1160 rll_t *rll = rl->rl_lock;
1151 1161
1152 1162 ztest_rll_unlock(rll);
1153 1163
1154 1164 umem_free(rl, sizeof (*rl));
1155 1165 }
1156 1166
1157 1167 static void
1158 1168 ztest_zd_init(ztest_ds_t *zd, ztest_shared_ds_t *szd, objset_t *os)
1159 1169 {
1160 1170 zd->zd_os = os;
1161 1171 zd->zd_zilog = dmu_objset_zil(os);
1162 1172 zd->zd_shared = szd;
1163 1173 dmu_objset_name(os, zd->zd_name);
1164 1174
1165 1175 if (zd->zd_shared != NULL)
1166 1176 zd->zd_shared->zd_seq = 0;
1167 1177
1168 1178 VERIFY(rwlock_init(&zd->zd_zilog_lock, USYNC_THREAD, NULL) == 0);
1169 1179 VERIFY(_mutex_init(&zd->zd_dirobj_lock, USYNC_THREAD, NULL) == 0);
1170 1180
1171 1181 for (int l = 0; l < ZTEST_OBJECT_LOCKS; l++)
1172 1182 ztest_rll_init(&zd->zd_object_lock[l]);
1173 1183
1174 1184 for (int l = 0; l < ZTEST_RANGE_LOCKS; l++)
1175 1185 ztest_rll_init(&zd->zd_range_lock[l]);
1176 1186 }
1177 1187
1178 1188 static void
1179 1189 ztest_zd_fini(ztest_ds_t *zd)
1180 1190 {
1181 1191 VERIFY(_mutex_destroy(&zd->zd_dirobj_lock) == 0);
1182 1192
1183 1193 for (int l = 0; l < ZTEST_OBJECT_LOCKS; l++)
1184 1194 ztest_rll_destroy(&zd->zd_object_lock[l]);
1185 1195
1186 1196 for (int l = 0; l < ZTEST_RANGE_LOCKS; l++)
1187 1197 ztest_rll_destroy(&zd->zd_range_lock[l]);
1188 1198 }
1189 1199
1190 1200 #define TXG_MIGHTWAIT (ztest_random(10) == 0 ? TXG_NOWAIT : TXG_WAIT)
1191 1201
1192 1202 static uint64_t
1193 1203 ztest_tx_assign(dmu_tx_t *tx, uint64_t txg_how, const char *tag)
1194 1204 {
1195 1205 uint64_t txg;
1196 1206 int error;
1197 1207
1198 1208 /*
1199 1209 * Attempt to assign tx to some transaction group.
1200 1210 */
1201 1211 error = dmu_tx_assign(tx, txg_how);
1202 1212 if (error) {
1203 1213 if (error == ERESTART) {
1204 1214 ASSERT(txg_how == TXG_NOWAIT);
1205 1215 dmu_tx_wait(tx);
1206 1216 } else {
1207 1217 ASSERT3U(error, ==, ENOSPC);
1208 1218 ztest_record_enospc(tag);
1209 1219 }
1210 1220 dmu_tx_abort(tx);
1211 1221 return (0);
1212 1222 }
1213 1223 txg = dmu_tx_get_txg(tx);
1214 1224 ASSERT(txg != 0);
1215 1225 return (txg);
1216 1226 }
1217 1227
1218 1228 static void
1219 1229 ztest_pattern_set(void *buf, uint64_t size, uint64_t value)
1220 1230 {
1221 1231 uint64_t *ip = buf;
1222 1232 uint64_t *ip_end = (uint64_t *)((uintptr_t)buf + (uintptr_t)size);
1223 1233
1224 1234 while (ip < ip_end)
1225 1235 *ip++ = value;
1226 1236 }
1227 1237
1228 1238 static boolean_t
1229 1239 ztest_pattern_match(void *buf, uint64_t size, uint64_t value)
1230 1240 {
1231 1241 uint64_t *ip = buf;
1232 1242 uint64_t *ip_end = (uint64_t *)((uintptr_t)buf + (uintptr_t)size);
1233 1243 uint64_t diff = 0;
1234 1244
1235 1245 while (ip < ip_end)
1236 1246 diff |= (value - *ip++);
1237 1247
1238 1248 return (diff == 0);
1239 1249 }
1240 1250
1241 1251 static void
1242 1252 ztest_bt_generate(ztest_block_tag_t *bt, objset_t *os, uint64_t object,
1243 1253 uint64_t offset, uint64_t gen, uint64_t txg, uint64_t crtxg)
1244 1254 {
1245 1255 bt->bt_magic = BT_MAGIC;
1246 1256 bt->bt_objset = dmu_objset_id(os);
1247 1257 bt->bt_object = object;
1248 1258 bt->bt_offset = offset;
1249 1259 bt->bt_gen = gen;
1250 1260 bt->bt_txg = txg;
1251 1261 bt->bt_crtxg = crtxg;
1252 1262 }
1253 1263
1254 1264 static void
1255 1265 ztest_bt_verify(ztest_block_tag_t *bt, objset_t *os, uint64_t object,
1256 1266 uint64_t offset, uint64_t gen, uint64_t txg, uint64_t crtxg)
1257 1267 {
1258 1268 ASSERT(bt->bt_magic == BT_MAGIC);
1259 1269 ASSERT(bt->bt_objset == dmu_objset_id(os));
1260 1270 ASSERT(bt->bt_object == object);
1261 1271 ASSERT(bt->bt_offset == offset);
1262 1272 ASSERT(bt->bt_gen <= gen);
1263 1273 ASSERT(bt->bt_txg <= txg);
1264 1274 ASSERT(bt->bt_crtxg == crtxg);
1265 1275 }
1266 1276
1267 1277 static ztest_block_tag_t *
1268 1278 ztest_bt_bonus(dmu_buf_t *db)
1269 1279 {
1270 1280 dmu_object_info_t doi;
1271 1281 ztest_block_tag_t *bt;
1272 1282
1273 1283 dmu_object_info_from_db(db, &doi);
1274 1284 ASSERT3U(doi.doi_bonus_size, <=, db->db_size);
1275 1285 ASSERT3U(doi.doi_bonus_size, >=, sizeof (*bt));
1276 1286 bt = (void *)((char *)db->db_data + doi.doi_bonus_size - sizeof (*bt));
1277 1287
1278 1288 return (bt);
1279 1289 }
1280 1290
1281 1291 /*
1282 1292 * ZIL logging ops
1283 1293 */
1284 1294
1285 1295 #define lrz_type lr_mode
1286 1296 #define lrz_blocksize lr_uid
1287 1297 #define lrz_ibshift lr_gid
1288 1298 #define lrz_bonustype lr_rdev
1289 1299 #define lrz_bonuslen lr_crtime[1]
1290 1300
1291 1301 static void
1292 1302 ztest_log_create(ztest_ds_t *zd, dmu_tx_t *tx, lr_create_t *lr)
1293 1303 {
1294 1304 char *name = (void *)(lr + 1); /* name follows lr */
1295 1305 size_t namesize = strlen(name) + 1;
1296 1306 itx_t *itx;
1297 1307
1298 1308 if (zil_replaying(zd->zd_zilog, tx))
1299 1309 return;
1300 1310
1301 1311 itx = zil_itx_create(TX_CREATE, sizeof (*lr) + namesize);
1302 1312 bcopy(&lr->lr_common + 1, &itx->itx_lr + 1,
1303 1313 sizeof (*lr) + namesize - sizeof (lr_t));
1304 1314
1305 1315 zil_itx_assign(zd->zd_zilog, itx, tx);
1306 1316 }
1307 1317
1308 1318 static void
1309 1319 ztest_log_remove(ztest_ds_t *zd, dmu_tx_t *tx, lr_remove_t *lr, uint64_t object)
1310 1320 {
1311 1321 char *name = (void *)(lr + 1); /* name follows lr */
1312 1322 size_t namesize = strlen(name) + 1;
1313 1323 itx_t *itx;
1314 1324
1315 1325 if (zil_replaying(zd->zd_zilog, tx))
1316 1326 return;
1317 1327
1318 1328 itx = zil_itx_create(TX_REMOVE, sizeof (*lr) + namesize);
1319 1329 bcopy(&lr->lr_common + 1, &itx->itx_lr + 1,
1320 1330 sizeof (*lr) + namesize - sizeof (lr_t));
1321 1331
1322 1332 itx->itx_oid = object;
1323 1333 zil_itx_assign(zd->zd_zilog, itx, tx);
1324 1334 }
1325 1335
1326 1336 static void
1327 1337 ztest_log_write(ztest_ds_t *zd, dmu_tx_t *tx, lr_write_t *lr)
1328 1338 {
1329 1339 itx_t *itx;
1330 1340 itx_wr_state_t write_state = ztest_random(WR_NUM_STATES);
1331 1341
1332 1342 if (zil_replaying(zd->zd_zilog, tx))
1333 1343 return;
1334 1344
1335 1345 if (lr->lr_length > ZIL_MAX_LOG_DATA)
1336 1346 write_state = WR_INDIRECT;
1337 1347
1338 1348 itx = zil_itx_create(TX_WRITE,
1339 1349 sizeof (*lr) + (write_state == WR_COPIED ? lr->lr_length : 0));
1340 1350
1341 1351 if (write_state == WR_COPIED &&
1342 1352 dmu_read(zd->zd_os, lr->lr_foid, lr->lr_offset, lr->lr_length,
1343 1353 ((lr_write_t *)&itx->itx_lr) + 1, DMU_READ_NO_PREFETCH) != 0) {
1344 1354 zil_itx_destroy(itx);
1345 1355 itx = zil_itx_create(TX_WRITE, sizeof (*lr));
1346 1356 write_state = WR_NEED_COPY;
1347 1357 }
1348 1358 itx->itx_private = zd;
1349 1359 itx->itx_wr_state = write_state;
1350 1360 itx->itx_sync = (ztest_random(8) == 0);
1351 1361 itx->itx_sod += (write_state == WR_NEED_COPY ? lr->lr_length : 0);
1352 1362
1353 1363 bcopy(&lr->lr_common + 1, &itx->itx_lr + 1,
1354 1364 sizeof (*lr) - sizeof (lr_t));
1355 1365
1356 1366 zil_itx_assign(zd->zd_zilog, itx, tx);
1357 1367 }
1358 1368
1359 1369 static void
1360 1370 ztest_log_truncate(ztest_ds_t *zd, dmu_tx_t *tx, lr_truncate_t *lr)
1361 1371 {
1362 1372 itx_t *itx;
1363 1373
1364 1374 if (zil_replaying(zd->zd_zilog, tx))
1365 1375 return;
1366 1376
1367 1377 itx = zil_itx_create(TX_TRUNCATE, sizeof (*lr));
1368 1378 bcopy(&lr->lr_common + 1, &itx->itx_lr + 1,
1369 1379 sizeof (*lr) - sizeof (lr_t));
1370 1380
1371 1381 itx->itx_sync = B_FALSE;
1372 1382 zil_itx_assign(zd->zd_zilog, itx, tx);
1373 1383 }
1374 1384
1375 1385 static void
1376 1386 ztest_log_setattr(ztest_ds_t *zd, dmu_tx_t *tx, lr_setattr_t *lr)
1377 1387 {
1378 1388 itx_t *itx;
1379 1389
1380 1390 if (zil_replaying(zd->zd_zilog, tx))
1381 1391 return;
1382 1392
1383 1393 itx = zil_itx_create(TX_SETATTR, sizeof (*lr));
1384 1394 bcopy(&lr->lr_common + 1, &itx->itx_lr + 1,
1385 1395 sizeof (*lr) - sizeof (lr_t));
1386 1396
1387 1397 itx->itx_sync = B_FALSE;
1388 1398 zil_itx_assign(zd->zd_zilog, itx, tx);
1389 1399 }
1390 1400
1391 1401 /*
1392 1402 * ZIL replay ops
1393 1403 */
1394 1404 static int
1395 1405 ztest_replay_create(ztest_ds_t *zd, lr_create_t *lr, boolean_t byteswap)
1396 1406 {
1397 1407 char *name = (void *)(lr + 1); /* name follows lr */
1398 1408 objset_t *os = zd->zd_os;
1399 1409 ztest_block_tag_t *bbt;
1400 1410 dmu_buf_t *db;
1401 1411 dmu_tx_t *tx;
1402 1412 uint64_t txg;
1403 1413 int error = 0;
1404 1414
1405 1415 if (byteswap)
1406 1416 byteswap_uint64_array(lr, sizeof (*lr));
1407 1417
1408 1418 ASSERT(lr->lr_doid == ZTEST_DIROBJ);
1409 1419 ASSERT(name[0] != '\0');
1410 1420
1411 1421 tx = dmu_tx_create(os);
1412 1422
1413 1423 dmu_tx_hold_zap(tx, lr->lr_doid, B_TRUE, name);
1414 1424
1415 1425 if (lr->lrz_type == DMU_OT_ZAP_OTHER) {
1416 1426 dmu_tx_hold_zap(tx, DMU_NEW_OBJECT, B_TRUE, NULL);
1417 1427 } else {
1418 1428 dmu_tx_hold_bonus(tx, DMU_NEW_OBJECT);
1419 1429 }
1420 1430
1421 1431 txg = ztest_tx_assign(tx, TXG_WAIT, FTAG);
1422 1432 if (txg == 0)
1423 1433 return (ENOSPC);
1424 1434
1425 1435 ASSERT(dmu_objset_zil(os)->zl_replay == !!lr->lr_foid);
1426 1436
1427 1437 if (lr->lrz_type == DMU_OT_ZAP_OTHER) {
1428 1438 if (lr->lr_foid == 0) {
1429 1439 lr->lr_foid = zap_create(os,
1430 1440 lr->lrz_type, lr->lrz_bonustype,
1431 1441 lr->lrz_bonuslen, tx);
1432 1442 } else {
1433 1443 error = zap_create_claim(os, lr->lr_foid,
1434 1444 lr->lrz_type, lr->lrz_bonustype,
1435 1445 lr->lrz_bonuslen, tx);
1436 1446 }
1437 1447 } else {
1438 1448 if (lr->lr_foid == 0) {
1439 1449 lr->lr_foid = dmu_object_alloc(os,
1440 1450 lr->lrz_type, 0, lr->lrz_bonustype,
1441 1451 lr->lrz_bonuslen, tx);
1442 1452 } else {
1443 1453 error = dmu_object_claim(os, lr->lr_foid,
1444 1454 lr->lrz_type, 0, lr->lrz_bonustype,
1445 1455 lr->lrz_bonuslen, tx);
1446 1456 }
1447 1457 }
1448 1458
1449 1459 if (error) {
1450 1460 ASSERT3U(error, ==, EEXIST);
1451 1461 ASSERT(zd->zd_zilog->zl_replay);
1452 1462 dmu_tx_commit(tx);
1453 1463 return (error);
1454 1464 }
1455 1465
1456 1466 ASSERT(lr->lr_foid != 0);
1457 1467
1458 1468 if (lr->lrz_type != DMU_OT_ZAP_OTHER)
1459 1469 VERIFY3U(0, ==, dmu_object_set_blocksize(os, lr->lr_foid,
1460 1470 lr->lrz_blocksize, lr->lrz_ibshift, tx));
1461 1471
1462 1472 VERIFY3U(0, ==, dmu_bonus_hold(os, lr->lr_foid, FTAG, &db));
1463 1473 bbt = ztest_bt_bonus(db);
1464 1474 dmu_buf_will_dirty(db, tx);
1465 1475 ztest_bt_generate(bbt, os, lr->lr_foid, -1ULL, lr->lr_gen, txg, txg);
1466 1476 dmu_buf_rele(db, FTAG);
1467 1477
1468 1478 VERIFY3U(0, ==, zap_add(os, lr->lr_doid, name, sizeof (uint64_t), 1,
1469 1479 &lr->lr_foid, tx));
1470 1480
1471 1481 (void) ztest_log_create(zd, tx, lr);
1472 1482
1473 1483 dmu_tx_commit(tx);
1474 1484
1475 1485 return (0);
1476 1486 }
1477 1487
1478 1488 static int
1479 1489 ztest_replay_remove(ztest_ds_t *zd, lr_remove_t *lr, boolean_t byteswap)
1480 1490 {
1481 1491 char *name = (void *)(lr + 1); /* name follows lr */
1482 1492 objset_t *os = zd->zd_os;
1483 1493 dmu_object_info_t doi;
1484 1494 dmu_tx_t *tx;
1485 1495 uint64_t object, txg;
1486 1496
1487 1497 if (byteswap)
1488 1498 byteswap_uint64_array(lr, sizeof (*lr));
1489 1499
1490 1500 ASSERT(lr->lr_doid == ZTEST_DIROBJ);
1491 1501 ASSERT(name[0] != '\0');
1492 1502
1493 1503 VERIFY3U(0, ==,
1494 1504 zap_lookup(os, lr->lr_doid, name, sizeof (object), 1, &object));
1495 1505 ASSERT(object != 0);
1496 1506
1497 1507 ztest_object_lock(zd, object, RL_WRITER);
1498 1508
1499 1509 VERIFY3U(0, ==, dmu_object_info(os, object, &doi));
1500 1510
1501 1511 tx = dmu_tx_create(os);
1502 1512
1503 1513 dmu_tx_hold_zap(tx, lr->lr_doid, B_FALSE, name);
1504 1514 dmu_tx_hold_free(tx, object, 0, DMU_OBJECT_END);
1505 1515
1506 1516 txg = ztest_tx_assign(tx, TXG_WAIT, FTAG);
1507 1517 if (txg == 0) {
1508 1518 ztest_object_unlock(zd, object);
1509 1519 return (ENOSPC);
1510 1520 }
1511 1521
1512 1522 if (doi.doi_type == DMU_OT_ZAP_OTHER) {
1513 1523 VERIFY3U(0, ==, zap_destroy(os, object, tx));
1514 1524 } else {
1515 1525 VERIFY3U(0, ==, dmu_object_free(os, object, tx));
1516 1526 }
1517 1527
1518 1528 VERIFY3U(0, ==, zap_remove(os, lr->lr_doid, name, tx));
1519 1529
1520 1530 (void) ztest_log_remove(zd, tx, lr, object);
1521 1531
1522 1532 dmu_tx_commit(tx);
1523 1533
1524 1534 ztest_object_unlock(zd, object);
1525 1535
1526 1536 return (0);
1527 1537 }
1528 1538
1529 1539 static int
1530 1540 ztest_replay_write(ztest_ds_t *zd, lr_write_t *lr, boolean_t byteswap)
1531 1541 {
1532 1542 objset_t *os = zd->zd_os;
1533 1543 void *data = lr + 1; /* data follows lr */
1534 1544 uint64_t offset, length;
1535 1545 ztest_block_tag_t *bt = data;
1536 1546 ztest_block_tag_t *bbt;
1537 1547 uint64_t gen, txg, lrtxg, crtxg;
1538 1548 dmu_object_info_t doi;
1539 1549 dmu_tx_t *tx;
1540 1550 dmu_buf_t *db;
1541 1551 arc_buf_t *abuf = NULL;
1542 1552 rl_t *rl;
1543 1553
1544 1554 if (byteswap)
1545 1555 byteswap_uint64_array(lr, sizeof (*lr));
1546 1556
1547 1557 offset = lr->lr_offset;
1548 1558 length = lr->lr_length;
1549 1559
1550 1560 /* If it's a dmu_sync() block, write the whole block */
1551 1561 if (lr->lr_common.lrc_reclen == sizeof (lr_write_t)) {
1552 1562 uint64_t blocksize = BP_GET_LSIZE(&lr->lr_blkptr);
1553 1563 if (length < blocksize) {
1554 1564 offset -= offset % blocksize;
1555 1565 length = blocksize;
1556 1566 }
1557 1567 }
1558 1568
1559 1569 if (bt->bt_magic == BSWAP_64(BT_MAGIC))
1560 1570 byteswap_uint64_array(bt, sizeof (*bt));
1561 1571
1562 1572 if (bt->bt_magic != BT_MAGIC)
1563 1573 bt = NULL;
1564 1574
1565 1575 ztest_object_lock(zd, lr->lr_foid, RL_READER);
1566 1576 rl = ztest_range_lock(zd, lr->lr_foid, offset, length, RL_WRITER);
1567 1577
1568 1578 VERIFY3U(0, ==, dmu_bonus_hold(os, lr->lr_foid, FTAG, &db));
1569 1579
1570 1580 dmu_object_info_from_db(db, &doi);
1571 1581
1572 1582 bbt = ztest_bt_bonus(db);
1573 1583 ASSERT3U(bbt->bt_magic, ==, BT_MAGIC);
1574 1584 gen = bbt->bt_gen;
1575 1585 crtxg = bbt->bt_crtxg;
1576 1586 lrtxg = lr->lr_common.lrc_txg;
1577 1587
1578 1588 tx = dmu_tx_create(os);
1579 1589
1580 1590 dmu_tx_hold_write(tx, lr->lr_foid, offset, length);
1581 1591
1582 1592 if (ztest_random(8) == 0 && length == doi.doi_data_block_size &&
1583 1593 P2PHASE(offset, length) == 0)
1584 1594 abuf = dmu_request_arcbuf(db, length);
1585 1595
1586 1596 txg = ztest_tx_assign(tx, TXG_WAIT, FTAG);
1587 1597 if (txg == 0) {
1588 1598 if (abuf != NULL)
1589 1599 dmu_return_arcbuf(abuf);
1590 1600 dmu_buf_rele(db, FTAG);
1591 1601 ztest_range_unlock(rl);
1592 1602 ztest_object_unlock(zd, lr->lr_foid);
1593 1603 return (ENOSPC);
1594 1604 }
1595 1605
1596 1606 if (bt != NULL) {
1597 1607 /*
1598 1608 * Usually, verify the old data before writing new data --
1599 1609 * but not always, because we also want to verify correct
1600 1610 * behavior when the data was not recently read into cache.
1601 1611 */
1602 1612 ASSERT(offset % doi.doi_data_block_size == 0);
1603 1613 if (ztest_random(4) != 0) {
1604 1614 int prefetch = ztest_random(2) ?
1605 1615 DMU_READ_PREFETCH : DMU_READ_NO_PREFETCH;
1606 1616 ztest_block_tag_t rbt;
1607 1617
1608 1618 VERIFY(dmu_read(os, lr->lr_foid, offset,
1609 1619 sizeof (rbt), &rbt, prefetch) == 0);
1610 1620 if (rbt.bt_magic == BT_MAGIC) {
1611 1621 ztest_bt_verify(&rbt, os, lr->lr_foid,
1612 1622 offset, gen, txg, crtxg);
1613 1623 }
1614 1624 }
1615 1625
1616 1626 /*
1617 1627 * Writes can appear to be newer than the bonus buffer because
1618 1628 * the ztest_get_data() callback does a dmu_read() of the
1619 1629 * open-context data, which may be different than the data
1620 1630 * as it was when the write was generated.
1621 1631 */
1622 1632 if (zd->zd_zilog->zl_replay) {
1623 1633 ztest_bt_verify(bt, os, lr->lr_foid, offset,
1624 1634 MAX(gen, bt->bt_gen), MAX(txg, lrtxg),
1625 1635 bt->bt_crtxg);
1626 1636 }
1627 1637
1628 1638 /*
1629 1639 * Set the bt's gen/txg to the bonus buffer's gen/txg
1630 1640 * so that all of the usual ASSERTs will work.
1631 1641 */
1632 1642 ztest_bt_generate(bt, os, lr->lr_foid, offset, gen, txg, crtxg);
1633 1643 }
1634 1644
1635 1645 if (abuf == NULL) {
1636 1646 dmu_write(os, lr->lr_foid, offset, length, data, tx);
1637 1647 } else {
1638 1648 bcopy(data, abuf->b_data, length);
1639 1649 dmu_assign_arcbuf(db, offset, abuf, tx);
1640 1650 }
1641 1651
1642 1652 (void) ztest_log_write(zd, tx, lr);
1643 1653
1644 1654 dmu_buf_rele(db, FTAG);
1645 1655
1646 1656 dmu_tx_commit(tx);
1647 1657
1648 1658 ztest_range_unlock(rl);
1649 1659 ztest_object_unlock(zd, lr->lr_foid);
1650 1660
1651 1661 return (0);
1652 1662 }
1653 1663
1654 1664 static int
1655 1665 ztest_replay_truncate(ztest_ds_t *zd, lr_truncate_t *lr, boolean_t byteswap)
1656 1666 {
1657 1667 objset_t *os = zd->zd_os;
1658 1668 dmu_tx_t *tx;
1659 1669 uint64_t txg;
1660 1670 rl_t *rl;
1661 1671
1662 1672 if (byteswap)
1663 1673 byteswap_uint64_array(lr, sizeof (*lr));
1664 1674
1665 1675 ztest_object_lock(zd, lr->lr_foid, RL_READER);
1666 1676 rl = ztest_range_lock(zd, lr->lr_foid, lr->lr_offset, lr->lr_length,
1667 1677 RL_WRITER);
1668 1678
1669 1679 tx = dmu_tx_create(os);
1670 1680
1671 1681 dmu_tx_hold_free(tx, lr->lr_foid, lr->lr_offset, lr->lr_length);
1672 1682
1673 1683 txg = ztest_tx_assign(tx, TXG_WAIT, FTAG);
1674 1684 if (txg == 0) {
1675 1685 ztest_range_unlock(rl);
1676 1686 ztest_object_unlock(zd, lr->lr_foid);
1677 1687 return (ENOSPC);
1678 1688 }
1679 1689
1680 1690 VERIFY(dmu_free_range(os, lr->lr_foid, lr->lr_offset,
1681 1691 lr->lr_length, tx) == 0);
1682 1692
1683 1693 (void) ztest_log_truncate(zd, tx, lr);
1684 1694
1685 1695 dmu_tx_commit(tx);
1686 1696
1687 1697 ztest_range_unlock(rl);
1688 1698 ztest_object_unlock(zd, lr->lr_foid);
1689 1699
1690 1700 return (0);
1691 1701 }
1692 1702
1693 1703 static int
1694 1704 ztest_replay_setattr(ztest_ds_t *zd, lr_setattr_t *lr, boolean_t byteswap)
1695 1705 {
1696 1706 objset_t *os = zd->zd_os;
1697 1707 dmu_tx_t *tx;
1698 1708 dmu_buf_t *db;
1699 1709 ztest_block_tag_t *bbt;
1700 1710 uint64_t txg, lrtxg, crtxg;
1701 1711
1702 1712 if (byteswap)
1703 1713 byteswap_uint64_array(lr, sizeof (*lr));
1704 1714
1705 1715 ztest_object_lock(zd, lr->lr_foid, RL_WRITER);
1706 1716
1707 1717 VERIFY3U(0, ==, dmu_bonus_hold(os, lr->lr_foid, FTAG, &db));
1708 1718
1709 1719 tx = dmu_tx_create(os);
1710 1720 dmu_tx_hold_bonus(tx, lr->lr_foid);
1711 1721
1712 1722 txg = ztest_tx_assign(tx, TXG_WAIT, FTAG);
1713 1723 if (txg == 0) {
1714 1724 dmu_buf_rele(db, FTAG);
1715 1725 ztest_object_unlock(zd, lr->lr_foid);
1716 1726 return (ENOSPC);
1717 1727 }
1718 1728
1719 1729 bbt = ztest_bt_bonus(db);
1720 1730 ASSERT3U(bbt->bt_magic, ==, BT_MAGIC);
1721 1731 crtxg = bbt->bt_crtxg;
1722 1732 lrtxg = lr->lr_common.lrc_txg;
1723 1733
1724 1734 if (zd->zd_zilog->zl_replay) {
1725 1735 ASSERT(lr->lr_size != 0);
1726 1736 ASSERT(lr->lr_mode != 0);
1727 1737 ASSERT(lrtxg != 0);
1728 1738 } else {
1729 1739 /*
1730 1740 * Randomly change the size and increment the generation.
1731 1741 */
1732 1742 lr->lr_size = (ztest_random(db->db_size / sizeof (*bbt)) + 1) *
1733 1743 sizeof (*bbt);
1734 1744 lr->lr_mode = bbt->bt_gen + 1;
1735 1745 ASSERT(lrtxg == 0);
1736 1746 }
1737 1747
1738 1748 /*
1739 1749 * Verify that the current bonus buffer is not newer than our txg.
1740 1750 */
1741 1751 ztest_bt_verify(bbt, os, lr->lr_foid, -1ULL, lr->lr_mode,
1742 1752 MAX(txg, lrtxg), crtxg);
1743 1753
1744 1754 dmu_buf_will_dirty(db, tx);
1745 1755
1746 1756 ASSERT3U(lr->lr_size, >=, sizeof (*bbt));
1747 1757 ASSERT3U(lr->lr_size, <=, db->db_size);
1748 1758 VERIFY0(dmu_set_bonus(db, lr->lr_size, tx));
1749 1759 bbt = ztest_bt_bonus(db);
1750 1760
1751 1761 ztest_bt_generate(bbt, os, lr->lr_foid, -1ULL, lr->lr_mode, txg, crtxg);
1752 1762
1753 1763 dmu_buf_rele(db, FTAG);
1754 1764
1755 1765 (void) ztest_log_setattr(zd, tx, lr);
1756 1766
1757 1767 dmu_tx_commit(tx);
1758 1768
1759 1769 ztest_object_unlock(zd, lr->lr_foid);
1760 1770
1761 1771 return (0);
1762 1772 }
1763 1773
1764 1774 zil_replay_func_t *ztest_replay_vector[TX_MAX_TYPE] = {
1765 1775 NULL, /* 0 no such transaction type */
1766 1776 ztest_replay_create, /* TX_CREATE */
1767 1777 NULL, /* TX_MKDIR */
1768 1778 NULL, /* TX_MKXATTR */
1769 1779 NULL, /* TX_SYMLINK */
1770 1780 ztest_replay_remove, /* TX_REMOVE */
1771 1781 NULL, /* TX_RMDIR */
1772 1782 NULL, /* TX_LINK */
1773 1783 NULL, /* TX_RENAME */
1774 1784 ztest_replay_write, /* TX_WRITE */
1775 1785 ztest_replay_truncate, /* TX_TRUNCATE */
1776 1786 ztest_replay_setattr, /* TX_SETATTR */
1777 1787 NULL, /* TX_ACL */
1778 1788 NULL, /* TX_CREATE_ACL */
1779 1789 NULL, /* TX_CREATE_ATTR */
1780 1790 NULL, /* TX_CREATE_ACL_ATTR */
1781 1791 NULL, /* TX_MKDIR_ACL */
1782 1792 NULL, /* TX_MKDIR_ATTR */
1783 1793 NULL, /* TX_MKDIR_ACL_ATTR */
1784 1794 NULL, /* TX_WRITE2 */
1785 1795 };
1786 1796
1787 1797 /*
1788 1798 * ZIL get_data callbacks
1789 1799 */
1790 1800
1791 1801 static void
1792 1802 ztest_get_done(zgd_t *zgd, int error)
1793 1803 {
1794 1804 ztest_ds_t *zd = zgd->zgd_private;
1795 1805 uint64_t object = zgd->zgd_rl->rl_object;
1796 1806
1797 1807 if (zgd->zgd_db)
1798 1808 dmu_buf_rele(zgd->zgd_db, zgd);
1799 1809
1800 1810 ztest_range_unlock(zgd->zgd_rl);
1801 1811 ztest_object_unlock(zd, object);
1802 1812
1803 1813 if (error == 0 && zgd->zgd_bp)
1804 1814 zil_add_block(zgd->zgd_zilog, zgd->zgd_bp);
1805 1815
1806 1816 umem_free(zgd, sizeof (*zgd));
1807 1817 }
1808 1818
1809 1819 static int
1810 1820 ztest_get_data(void *arg, lr_write_t *lr, char *buf, zio_t *zio)
1811 1821 {
1812 1822 ztest_ds_t *zd = arg;
1813 1823 objset_t *os = zd->zd_os;
1814 1824 uint64_t object = lr->lr_foid;
1815 1825 uint64_t offset = lr->lr_offset;
1816 1826 uint64_t size = lr->lr_length;
1817 1827 blkptr_t *bp = &lr->lr_blkptr;
1818 1828 uint64_t txg = lr->lr_common.lrc_txg;
1819 1829 uint64_t crtxg;
1820 1830 dmu_object_info_t doi;
1821 1831 dmu_buf_t *db;
1822 1832 zgd_t *zgd;
1823 1833 int error;
1824 1834
1825 1835 ztest_object_lock(zd, object, RL_READER);
1826 1836 error = dmu_bonus_hold(os, object, FTAG, &db);
1827 1837 if (error) {
1828 1838 ztest_object_unlock(zd, object);
1829 1839 return (error);
1830 1840 }
1831 1841
1832 1842 crtxg = ztest_bt_bonus(db)->bt_crtxg;
1833 1843
1834 1844 if (crtxg == 0 || crtxg > txg) {
1835 1845 dmu_buf_rele(db, FTAG);
1836 1846 ztest_object_unlock(zd, object);
1837 1847 return (ENOENT);
1838 1848 }
1839 1849
1840 1850 dmu_object_info_from_db(db, &doi);
1841 1851 dmu_buf_rele(db, FTAG);
1842 1852 db = NULL;
1843 1853
1844 1854 zgd = umem_zalloc(sizeof (*zgd), UMEM_NOFAIL);
1845 1855 zgd->zgd_zilog = zd->zd_zilog;
1846 1856 zgd->zgd_private = zd;
1847 1857
1848 1858 if (buf != NULL) { /* immediate write */
1849 1859 zgd->zgd_rl = ztest_range_lock(zd, object, offset, size,
1850 1860 RL_READER);
1851 1861
1852 1862 error = dmu_read(os, object, offset, size, buf,
1853 1863 DMU_READ_NO_PREFETCH);
1854 1864 ASSERT(error == 0);
1855 1865 } else {
1856 1866 size = doi.doi_data_block_size;
1857 1867 if (ISP2(size)) {
1858 1868 offset = P2ALIGN(offset, size);
1859 1869 } else {
1860 1870 ASSERT(offset < size);
1861 1871 offset = 0;
1862 1872 }
1863 1873
1864 1874 zgd->zgd_rl = ztest_range_lock(zd, object, offset, size,
1865 1875 RL_READER);
1866 1876
1867 1877 error = dmu_buf_hold(os, object, offset, zgd, &db,
1868 1878 DMU_READ_NO_PREFETCH);
1869 1879
1870 1880 if (error == 0) {
1871 1881 blkptr_t *obp = dmu_buf_get_blkptr(db);
1872 1882 if (obp) {
1873 1883 ASSERT(BP_IS_HOLE(bp));
1874 1884 *bp = *obp;
1875 1885 }
1876 1886
1877 1887 zgd->zgd_db = db;
1878 1888 zgd->zgd_bp = bp;
1879 1889
1880 1890 ASSERT(db->db_offset == offset);
1881 1891 ASSERT(db->db_size == size);
1882 1892
1883 1893 error = dmu_sync(zio, lr->lr_common.lrc_txg,
1884 1894 ztest_get_done, zgd);
1885 1895
1886 1896 if (error == 0)
1887 1897 return (0);
1888 1898 }
1889 1899 }
1890 1900
1891 1901 ztest_get_done(zgd, error);
1892 1902
1893 1903 return (error);
1894 1904 }
1895 1905
1896 1906 static void *
1897 1907 ztest_lr_alloc(size_t lrsize, char *name)
1898 1908 {
1899 1909 char *lr;
1900 1910 size_t namesize = name ? strlen(name) + 1 : 0;
1901 1911
1902 1912 lr = umem_zalloc(lrsize + namesize, UMEM_NOFAIL);
1903 1913
1904 1914 if (name)
1905 1915 bcopy(name, lr + lrsize, namesize);
1906 1916
1907 1917 return (lr);
1908 1918 }
1909 1919
1910 1920 void
1911 1921 ztest_lr_free(void *lr, size_t lrsize, char *name)
1912 1922 {
1913 1923 size_t namesize = name ? strlen(name) + 1 : 0;
1914 1924
1915 1925 umem_free(lr, lrsize + namesize);
1916 1926 }
1917 1927
1918 1928 /*
1919 1929 * Lookup a bunch of objects. Returns the number of objects not found.
1920 1930 */
1921 1931 static int
1922 1932 ztest_lookup(ztest_ds_t *zd, ztest_od_t *od, int count)
1923 1933 {
1924 1934 int missing = 0;
1925 1935 int error;
1926 1936
1927 1937 ASSERT(_mutex_held(&zd->zd_dirobj_lock));
1928 1938
1929 1939 for (int i = 0; i < count; i++, od++) {
1930 1940 od->od_object = 0;
1931 1941 error = zap_lookup(zd->zd_os, od->od_dir, od->od_name,
1932 1942 sizeof (uint64_t), 1, &od->od_object);
1933 1943 if (error) {
1934 1944 ASSERT(error == ENOENT);
1935 1945 ASSERT(od->od_object == 0);
1936 1946 missing++;
1937 1947 } else {
1938 1948 dmu_buf_t *db;
1939 1949 ztest_block_tag_t *bbt;
1940 1950 dmu_object_info_t doi;
1941 1951
1942 1952 ASSERT(od->od_object != 0);
1943 1953 ASSERT(missing == 0); /* there should be no gaps */
1944 1954
1945 1955 ztest_object_lock(zd, od->od_object, RL_READER);
1946 1956 VERIFY3U(0, ==, dmu_bonus_hold(zd->zd_os,
1947 1957 od->od_object, FTAG, &db));
1948 1958 dmu_object_info_from_db(db, &doi);
1949 1959 bbt = ztest_bt_bonus(db);
1950 1960 ASSERT3U(bbt->bt_magic, ==, BT_MAGIC);
1951 1961 od->od_type = doi.doi_type;
1952 1962 od->od_blocksize = doi.doi_data_block_size;
1953 1963 od->od_gen = bbt->bt_gen;
1954 1964 dmu_buf_rele(db, FTAG);
1955 1965 ztest_object_unlock(zd, od->od_object);
1956 1966 }
1957 1967 }
1958 1968
1959 1969 return (missing);
1960 1970 }
1961 1971
1962 1972 static int
1963 1973 ztest_create(ztest_ds_t *zd, ztest_od_t *od, int count)
1964 1974 {
1965 1975 int missing = 0;
1966 1976
1967 1977 ASSERT(_mutex_held(&zd->zd_dirobj_lock));
1968 1978
1969 1979 for (int i = 0; i < count; i++, od++) {
1970 1980 if (missing) {
1971 1981 od->od_object = 0;
1972 1982 missing++;
1973 1983 continue;
1974 1984 }
1975 1985
1976 1986 lr_create_t *lr = ztest_lr_alloc(sizeof (*lr), od->od_name);
1977 1987
1978 1988 lr->lr_doid = od->od_dir;
1979 1989 lr->lr_foid = 0; /* 0 to allocate, > 0 to claim */
1980 1990 lr->lrz_type = od->od_crtype;
1981 1991 lr->lrz_blocksize = od->od_crblocksize;
1982 1992 lr->lrz_ibshift = ztest_random_ibshift();
1983 1993 lr->lrz_bonustype = DMU_OT_UINT64_OTHER;
1984 1994 lr->lrz_bonuslen = dmu_bonus_max();
1985 1995 lr->lr_gen = od->od_crgen;
1986 1996 lr->lr_crtime[0] = time(NULL);
1987 1997
1988 1998 if (ztest_replay_create(zd, lr, B_FALSE) != 0) {
1989 1999 ASSERT(missing == 0);
1990 2000 od->od_object = 0;
1991 2001 missing++;
1992 2002 } else {
1993 2003 od->od_object = lr->lr_foid;
1994 2004 od->od_type = od->od_crtype;
1995 2005 od->od_blocksize = od->od_crblocksize;
1996 2006 od->od_gen = od->od_crgen;
1997 2007 ASSERT(od->od_object != 0);
1998 2008 }
1999 2009
2000 2010 ztest_lr_free(lr, sizeof (*lr), od->od_name);
2001 2011 }
2002 2012
2003 2013 return (missing);
2004 2014 }
2005 2015
2006 2016 static int
2007 2017 ztest_remove(ztest_ds_t *zd, ztest_od_t *od, int count)
2008 2018 {
2009 2019 int missing = 0;
2010 2020 int error;
2011 2021
2012 2022 ASSERT(_mutex_held(&zd->zd_dirobj_lock));
2013 2023
2014 2024 od += count - 1;
2015 2025
2016 2026 for (int i = count - 1; i >= 0; i--, od--) {
2017 2027 if (missing) {
2018 2028 missing++;
2019 2029 continue;
2020 2030 }
2021 2031
2022 2032 /*
2023 2033 * No object was found.
2024 2034 */
2025 2035 if (od->od_object == 0)
2026 2036 continue;
2027 2037
2028 2038 lr_remove_t *lr = ztest_lr_alloc(sizeof (*lr), od->od_name);
2029 2039
2030 2040 lr->lr_doid = od->od_dir;
2031 2041
2032 2042 if ((error = ztest_replay_remove(zd, lr, B_FALSE)) != 0) {
2033 2043 ASSERT3U(error, ==, ENOSPC);
2034 2044 missing++;
2035 2045 } else {
2036 2046 od->od_object = 0;
2037 2047 }
2038 2048 ztest_lr_free(lr, sizeof (*lr), od->od_name);
2039 2049 }
2040 2050
2041 2051 return (missing);
2042 2052 }
2043 2053
2044 2054 static int
2045 2055 ztest_write(ztest_ds_t *zd, uint64_t object, uint64_t offset, uint64_t size,
2046 2056 void *data)
2047 2057 {
2048 2058 lr_write_t *lr;
2049 2059 int error;
2050 2060
2051 2061 lr = ztest_lr_alloc(sizeof (*lr) + size, NULL);
2052 2062
2053 2063 lr->lr_foid = object;
2054 2064 lr->lr_offset = offset;
2055 2065 lr->lr_length = size;
2056 2066 lr->lr_blkoff = 0;
2057 2067 BP_ZERO(&lr->lr_blkptr);
2058 2068
2059 2069 bcopy(data, lr + 1, size);
2060 2070
2061 2071 error = ztest_replay_write(zd, lr, B_FALSE);
2062 2072
2063 2073 ztest_lr_free(lr, sizeof (*lr) + size, NULL);
2064 2074
2065 2075 return (error);
2066 2076 }
2067 2077
2068 2078 static int
2069 2079 ztest_truncate(ztest_ds_t *zd, uint64_t object, uint64_t offset, uint64_t size)
2070 2080 {
2071 2081 lr_truncate_t *lr;
2072 2082 int error;
2073 2083
2074 2084 lr = ztest_lr_alloc(sizeof (*lr), NULL);
2075 2085
2076 2086 lr->lr_foid = object;
2077 2087 lr->lr_offset = offset;
2078 2088 lr->lr_length = size;
2079 2089
2080 2090 error = ztest_replay_truncate(zd, lr, B_FALSE);
2081 2091
2082 2092 ztest_lr_free(lr, sizeof (*lr), NULL);
2083 2093
2084 2094 return (error);
2085 2095 }
2086 2096
2087 2097 static int
2088 2098 ztest_setattr(ztest_ds_t *zd, uint64_t object)
2089 2099 {
2090 2100 lr_setattr_t *lr;
2091 2101 int error;
2092 2102
2093 2103 lr = ztest_lr_alloc(sizeof (*lr), NULL);
2094 2104
2095 2105 lr->lr_foid = object;
2096 2106 lr->lr_size = 0;
2097 2107 lr->lr_mode = 0;
2098 2108
2099 2109 error = ztest_replay_setattr(zd, lr, B_FALSE);
2100 2110
2101 2111 ztest_lr_free(lr, sizeof (*lr), NULL);
2102 2112
2103 2113 return (error);
2104 2114 }
2105 2115
2106 2116 static void
2107 2117 ztest_prealloc(ztest_ds_t *zd, uint64_t object, uint64_t offset, uint64_t size)
2108 2118 {
2109 2119 objset_t *os = zd->zd_os;
2110 2120 dmu_tx_t *tx;
2111 2121 uint64_t txg;
2112 2122 rl_t *rl;
2113 2123
2114 2124 txg_wait_synced(dmu_objset_pool(os), 0);
2115 2125
2116 2126 ztest_object_lock(zd, object, RL_READER);
2117 2127 rl = ztest_range_lock(zd, object, offset, size, RL_WRITER);
2118 2128
2119 2129 tx = dmu_tx_create(os);
2120 2130
2121 2131 dmu_tx_hold_write(tx, object, offset, size);
2122 2132
2123 2133 txg = ztest_tx_assign(tx, TXG_WAIT, FTAG);
2124 2134
2125 2135 if (txg != 0) {
2126 2136 dmu_prealloc(os, object, offset, size, tx);
2127 2137 dmu_tx_commit(tx);
2128 2138 txg_wait_synced(dmu_objset_pool(os), txg);
2129 2139 } else {
2130 2140 (void) dmu_free_long_range(os, object, offset, size);
2131 2141 }
2132 2142
2133 2143 ztest_range_unlock(rl);
2134 2144 ztest_object_unlock(zd, object);
2135 2145 }
2136 2146
2137 2147 static void
2138 2148 ztest_io(ztest_ds_t *zd, uint64_t object, uint64_t offset)
2139 2149 {
2140 2150 int err;
2141 2151 ztest_block_tag_t wbt;
2142 2152 dmu_object_info_t doi;
2143 2153 enum ztest_io_type io_type;
2144 2154 uint64_t blocksize;
2145 2155 void *data;
2146 2156
2147 2157 VERIFY(dmu_object_info(zd->zd_os, object, &doi) == 0);
2148 2158 blocksize = doi.doi_data_block_size;
2149 2159 data = umem_alloc(blocksize, UMEM_NOFAIL);
2150 2160
2151 2161 /*
2152 2162 * Pick an i/o type at random, biased toward writing block tags.
2153 2163 */
2154 2164 io_type = ztest_random(ZTEST_IO_TYPES);
2155 2165 if (ztest_random(2) == 0)
2156 2166 io_type = ZTEST_IO_WRITE_TAG;
2157 2167
2158 2168 (void) rw_rdlock(&zd->zd_zilog_lock);
2159 2169
2160 2170 switch (io_type) {
2161 2171
2162 2172 case ZTEST_IO_WRITE_TAG:
2163 2173 ztest_bt_generate(&wbt, zd->zd_os, object, offset, 0, 0, 0);
2164 2174 (void) ztest_write(zd, object, offset, sizeof (wbt), &wbt);
2165 2175 break;
2166 2176
2167 2177 case ZTEST_IO_WRITE_PATTERN:
2168 2178 (void) memset(data, 'a' + (object + offset) % 5, blocksize);
2169 2179 if (ztest_random(2) == 0) {
2170 2180 /*
2171 2181 * Induce fletcher2 collisions to ensure that
2172 2182 * zio_ddt_collision() detects and resolves them
2173 2183 * when using fletcher2-verify for deduplication.
2174 2184 */
2175 2185 ((uint64_t *)data)[0] ^= 1ULL << 63;
2176 2186 ((uint64_t *)data)[4] ^= 1ULL << 63;
2177 2187 }
2178 2188 (void) ztest_write(zd, object, offset, blocksize, data);
2179 2189 break;
2180 2190
2181 2191 case ZTEST_IO_WRITE_ZEROES:
2182 2192 bzero(data, blocksize);
2183 2193 (void) ztest_write(zd, object, offset, blocksize, data);
2184 2194 break;
2185 2195
2186 2196 case ZTEST_IO_TRUNCATE:
2187 2197 (void) ztest_truncate(zd, object, offset, blocksize);
2188 2198 break;
2189 2199
2190 2200 case ZTEST_IO_SETATTR:
2191 2201 (void) ztest_setattr(zd, object);
2192 2202 break;
2193 2203
2194 2204 case ZTEST_IO_REWRITE:
2195 2205 (void) rw_rdlock(&ztest_name_lock);
2196 2206 err = ztest_dsl_prop_set_uint64(zd->zd_name,
2197 2207 ZFS_PROP_CHECKSUM, spa_dedup_checksum(ztest_spa),
2198 2208 B_FALSE);
2199 2209 VERIFY(err == 0 || err == ENOSPC);
2200 2210 err = ztest_dsl_prop_set_uint64(zd->zd_name,
2201 2211 ZFS_PROP_COMPRESSION,
2202 2212 ztest_random_dsl_prop(ZFS_PROP_COMPRESSION),
2203 2213 B_FALSE);
2204 2214 VERIFY(err == 0 || err == ENOSPC);
2205 2215 (void) rw_unlock(&ztest_name_lock);
2206 2216
2207 2217 VERIFY0(dmu_read(zd->zd_os, object, offset, blocksize, data,
2208 2218 DMU_READ_NO_PREFETCH));
2209 2219
2210 2220 (void) ztest_write(zd, object, offset, blocksize, data);
2211 2221 break;
2212 2222 }
2213 2223
2214 2224 (void) rw_unlock(&zd->zd_zilog_lock);
2215 2225
2216 2226 umem_free(data, blocksize);
2217 2227 }
2218 2228
2219 2229 /*
2220 2230 * Initialize an object description template.
2221 2231 */
2222 2232 static void
2223 2233 ztest_od_init(ztest_od_t *od, uint64_t id, char *tag, uint64_t index,
2224 2234 dmu_object_type_t type, uint64_t blocksize, uint64_t gen)
2225 2235 {
2226 2236 od->od_dir = ZTEST_DIROBJ;
2227 2237 od->od_object = 0;
2228 2238
2229 2239 od->od_crtype = type;
2230 2240 od->od_crblocksize = blocksize ? blocksize : ztest_random_blocksize();
2231 2241 od->od_crgen = gen;
2232 2242
2233 2243 od->od_type = DMU_OT_NONE;
2234 2244 od->od_blocksize = 0;
2235 2245 od->od_gen = 0;
2236 2246
2237 2247 (void) snprintf(od->od_name, sizeof (od->od_name), "%s(%lld)[%llu]",
2238 2248 tag, (int64_t)id, index);
2239 2249 }
2240 2250
2241 2251 /*
2242 2252 * Lookup or create the objects for a test using the od template.
2243 2253 * If the objects do not all exist, or if 'remove' is specified,
2244 2254 * remove any existing objects and create new ones. Otherwise,
2245 2255 * use the existing objects.
2246 2256 */
2247 2257 static int
2248 2258 ztest_object_init(ztest_ds_t *zd, ztest_od_t *od, size_t size, boolean_t remove)
2249 2259 {
2250 2260 int count = size / sizeof (*od);
2251 2261 int rv = 0;
2252 2262
2253 2263 VERIFY(mutex_lock(&zd->zd_dirobj_lock) == 0);
2254 2264 if ((ztest_lookup(zd, od, count) != 0 || remove) &&
2255 2265 (ztest_remove(zd, od, count) != 0 ||
2256 2266 ztest_create(zd, od, count) != 0))
2257 2267 rv = -1;
2258 2268 zd->zd_od = od;
2259 2269 VERIFY(mutex_unlock(&zd->zd_dirobj_lock) == 0);
2260 2270
2261 2271 return (rv);
2262 2272 }
2263 2273
2264 2274 /* ARGSUSED */
2265 2275 void
2266 2276 ztest_zil_commit(ztest_ds_t *zd, uint64_t id)
2267 2277 {
2268 2278 zilog_t *zilog = zd->zd_zilog;
2269 2279
2270 2280 (void) rw_rdlock(&zd->zd_zilog_lock);
2271 2281
2272 2282 zil_commit(zilog, ztest_random(ZTEST_OBJECTS));
2273 2283
2274 2284 /*
2275 2285 * Remember the committed values in zd, which is in parent/child
2276 2286 * shared memory. If we die, the next iteration of ztest_run()
2277 2287 * will verify that the log really does contain this record.
2278 2288 */
2279 2289 mutex_enter(&zilog->zl_lock);
2280 2290 ASSERT(zd->zd_shared != NULL);
2281 2291 ASSERT3U(zd->zd_shared->zd_seq, <=, zilog->zl_commit_lr_seq);
2282 2292 zd->zd_shared->zd_seq = zilog->zl_commit_lr_seq;
2283 2293 mutex_exit(&zilog->zl_lock);
2284 2294
2285 2295 (void) rw_unlock(&zd->zd_zilog_lock);
2286 2296 }
2287 2297
2288 2298 /*
2289 2299 * This function is designed to simulate the operations that occur during a
2290 2300 * mount/unmount operation. We hold the dataset across these operations in an
2291 2301 * attempt to expose any implicit assumptions about ZIL management.
2292 2302 */
2293 2303 /* ARGSUSED */
2294 2304 void
2295 2305 ztest_zil_remount(ztest_ds_t *zd, uint64_t id)
2296 2306 {
2297 2307 objset_t *os = zd->zd_os;
2298 2308
2299 2309 /*
2300 2310 * We grab the zd_dirobj_lock to ensure that no other thread is
2301 2311 * updating the zil (i.e. adding in-memory log records) and the
2302 2312 * zd_zilog_lock to block any I/O.
2303 2313 */
2304 2314 VERIFY0(mutex_lock(&zd->zd_dirobj_lock));
2305 2315 (void) rw_wrlock(&zd->zd_zilog_lock);
2306 2316
2307 2317 /* zfsvfs_teardown() */
2308 2318 zil_close(zd->zd_zilog);
2309 2319
2310 2320 /* zfsvfs_setup() */
2311 2321 VERIFY(zil_open(os, ztest_get_data) == zd->zd_zilog);
2312 2322 zil_replay(os, zd, ztest_replay_vector);
2313 2323
2314 2324 (void) rw_unlock(&zd->zd_zilog_lock);
2315 2325 VERIFY(mutex_unlock(&zd->zd_dirobj_lock) == 0);
2316 2326 }
2317 2327
2318 2328 /*
2319 2329 * Verify that we can't destroy an active pool, create an existing pool,
2320 2330 * or create a pool with a bad vdev spec.
2321 2331 */
2322 2332 /* ARGSUSED */
2323 2333 void
2324 2334 ztest_spa_create_destroy(ztest_ds_t *zd, uint64_t id)
2325 2335 {
2326 2336 ztest_shared_opts_t *zo = &ztest_opts;
2327 2337 spa_t *spa;
2328 2338 nvlist_t *nvroot;
2329 2339
2330 2340 /*
2331 2341 * Attempt to create using a bad file.
2332 2342 */
2333 2343 nvroot = make_vdev_root("/dev/bogus", NULL, NULL, 0, 0, 0, 0, 0, 1);
2334 2344 VERIFY3U(ENOENT, ==,
2335 2345 spa_create("ztest_bad_file", nvroot, NULL, NULL));
2336 2346 nvlist_free(nvroot);
2337 2347
2338 2348 /*
2339 2349 * Attempt to create using a bad mirror.
2340 2350 */
2341 2351 nvroot = make_vdev_root("/dev/bogus", NULL, NULL, 0, 0, 0, 0, 2, 1);
2342 2352 VERIFY3U(ENOENT, ==,
2343 2353 spa_create("ztest_bad_mirror", nvroot, NULL, NULL));
2344 2354 nvlist_free(nvroot);
2345 2355
2346 2356 /*
2347 2357 * Attempt to create an existing pool. It shouldn't matter
2348 2358 * what's in the nvroot; we should fail with EEXIST.
2349 2359 */
2350 2360 (void) rw_rdlock(&ztest_name_lock);
2351 2361 nvroot = make_vdev_root("/dev/bogus", NULL, NULL, 0, 0, 0, 0, 0, 1);
2352 2362 VERIFY3U(EEXIST, ==, spa_create(zo->zo_pool, nvroot, NULL, NULL));
2353 2363 nvlist_free(nvroot);
2354 2364 VERIFY3U(0, ==, spa_open(zo->zo_pool, &spa, FTAG));
2355 2365 VERIFY3U(EBUSY, ==, spa_destroy(zo->zo_pool));
2356 2366 spa_close(spa, FTAG);
2357 2367
2358 2368 (void) rw_unlock(&ztest_name_lock);
2359 2369 }
2360 2370
2361 2371 /* ARGSUSED */
2362 2372 void
2363 2373 ztest_spa_upgrade(ztest_ds_t *zd, uint64_t id)
2364 2374 {
2365 2375 spa_t *spa;
2366 2376 uint64_t initial_version = SPA_VERSION_INITIAL;
2367 2377 uint64_t version, newversion;
2368 2378 nvlist_t *nvroot, *props;
2369 2379 char *name;
2370 2380
2371 2381 VERIFY0(mutex_lock(&ztest_vdev_lock));
2372 2382 name = kmem_asprintf("%s_upgrade", ztest_opts.zo_pool);
2373 2383
2374 2384 /*
2375 2385 * Clean up from previous runs.
2376 2386 */
2377 2387 (void) spa_destroy(name);
2378 2388
2379 2389 nvroot = make_vdev_root(NULL, NULL, name, ztest_opts.zo_vdev_size, 0,
2380 2390 0, ztest_opts.zo_raidz, ztest_opts.zo_mirrors, 1);
2381 2391
2382 2392 /*
2383 2393 * If we're configuring a RAIDZ device then make sure that the
2384 2394 * the initial version is capable of supporting that feature.
2385 2395 */
2386 2396 switch (ztest_opts.zo_raidz_parity) {
2387 2397 case 0:
2388 2398 case 1:
2389 2399 initial_version = SPA_VERSION_INITIAL;
2390 2400 break;
2391 2401 case 2:
2392 2402 initial_version = SPA_VERSION_RAIDZ2;
2393 2403 break;
2394 2404 case 3:
2395 2405 initial_version = SPA_VERSION_RAIDZ3;
2396 2406 break;
2397 2407 }
2398 2408
2399 2409 /*
2400 2410 * Create a pool with a spa version that can be upgraded. Pick
2401 2411 * a value between initial_version and SPA_VERSION_BEFORE_FEATURES.
2402 2412 */
2403 2413 do {
2404 2414 version = ztest_random_spa_version(initial_version);
2405 2415 } while (version > SPA_VERSION_BEFORE_FEATURES);
2406 2416
2407 2417 props = fnvlist_alloc();
2408 2418 fnvlist_add_uint64(props,
2409 2419 zpool_prop_to_name(ZPOOL_PROP_VERSION), version);
2410 2420 VERIFY0(spa_create(name, nvroot, props, NULL));
2411 2421 fnvlist_free(nvroot);
2412 2422 fnvlist_free(props);
2413 2423
2414 2424 VERIFY0(spa_open(name, &spa, FTAG));
2415 2425 VERIFY3U(spa_version(spa), ==, version);
2416 2426 newversion = ztest_random_spa_version(version + 1);
2417 2427
2418 2428 if (ztest_opts.zo_verbose >= 4) {
2419 2429 (void) printf("upgrading spa version from %llu to %llu\n",
2420 2430 (u_longlong_t)version, (u_longlong_t)newversion);
2421 2431 }
2422 2432
2423 2433 spa_upgrade(spa, newversion);
2424 2434 VERIFY3U(spa_version(spa), >, version);
2425 2435 VERIFY3U(spa_version(spa), ==, fnvlist_lookup_uint64(spa->spa_config,
2426 2436 zpool_prop_to_name(ZPOOL_PROP_VERSION)));
2427 2437 spa_close(spa, FTAG);
2428 2438
2429 2439 strfree(name);
2430 2440 VERIFY0(mutex_unlock(&ztest_vdev_lock));
2431 2441 }
2432 2442
2433 2443 static vdev_t *
2434 2444 vdev_lookup_by_path(vdev_t *vd, const char *path)
2435 2445 {
2436 2446 vdev_t *mvd;
2437 2447
2438 2448 if (vd->vdev_path != NULL && strcmp(path, vd->vdev_path) == 0)
2439 2449 return (vd);
2440 2450
2441 2451 for (int c = 0; c < vd->vdev_children; c++)
2442 2452 if ((mvd = vdev_lookup_by_path(vd->vdev_child[c], path)) !=
2443 2453 NULL)
2444 2454 return (mvd);
2445 2455
2446 2456 return (NULL);
2447 2457 }
2448 2458
2449 2459 /*
2450 2460 * Find the first available hole which can be used as a top-level.
2451 2461 */
2452 2462 int
2453 2463 find_vdev_hole(spa_t *spa)
2454 2464 {
2455 2465 vdev_t *rvd = spa->spa_root_vdev;
2456 2466 int c;
2457 2467
2458 2468 ASSERT(spa_config_held(spa, SCL_VDEV, RW_READER) == SCL_VDEV);
2459 2469
2460 2470 for (c = 0; c < rvd->vdev_children; c++) {
2461 2471 vdev_t *cvd = rvd->vdev_child[c];
2462 2472
2463 2473 if (cvd->vdev_ishole)
2464 2474 break;
2465 2475 }
2466 2476 return (c);
2467 2477 }
2468 2478
2469 2479 /*
2470 2480 * Verify that vdev_add() works as expected.
2471 2481 */
2472 2482 /* ARGSUSED */
2473 2483 void
2474 2484 ztest_vdev_add_remove(ztest_ds_t *zd, uint64_t id)
2475 2485 {
2476 2486 ztest_shared_t *zs = ztest_shared;
2477 2487 spa_t *spa = ztest_spa;
2478 2488 uint64_t leaves;
2479 2489 uint64_t guid;
2480 2490 nvlist_t *nvroot;
2481 2491 int error;
2482 2492
2483 2493 VERIFY(mutex_lock(&ztest_vdev_lock) == 0);
2484 2494 leaves = MAX(zs->zs_mirrors + zs->zs_splits, 1) * ztest_opts.zo_raidz;
2485 2495
2486 2496 spa_config_enter(spa, SCL_VDEV, FTAG, RW_READER);
2487 2497
2488 2498 ztest_shared->zs_vdev_next_leaf = find_vdev_hole(spa) * leaves;
2489 2499
2490 2500 /*
2491 2501 * If we have slogs then remove them 1/4 of the time.
2492 2502 */
2493 2503 if (spa_has_slogs(spa) && ztest_random(4) == 0) {
2494 2504 /*
2495 2505 * Grab the guid from the head of the log class rotor.
2496 2506 */
2497 2507 guid = spa_log_class(spa)->mc_rotor->mg_vd->vdev_guid;
2498 2508
2499 2509 spa_config_exit(spa, SCL_VDEV, FTAG);
2500 2510
2501 2511 /*
2502 2512 * We have to grab the zs_name_lock as writer to
2503 2513 * prevent a race between removing a slog (dmu_objset_find)
2504 2514 * and destroying a dataset. Removing the slog will
2505 2515 * grab a reference on the dataset which may cause
2506 2516 * dmu_objset_destroy() to fail with EBUSY thus
2507 2517 * leaving the dataset in an inconsistent state.
2508 2518 */
2509 2519 VERIFY(rw_wrlock(&ztest_name_lock) == 0);
2510 2520 error = spa_vdev_remove(spa, guid, B_FALSE);
2511 2521 VERIFY(rw_unlock(&ztest_name_lock) == 0);
2512 2522
2513 2523 if (error && error != EEXIST)
2514 2524 fatal(0, "spa_vdev_remove() = %d", error);
2515 2525 } else {
2516 2526 spa_config_exit(spa, SCL_VDEV, FTAG);
2517 2527
2518 2528 /*
2519 2529 * Make 1/4 of the devices be log devices.
2520 2530 */
2521 2531 nvroot = make_vdev_root(NULL, NULL, NULL,
2522 2532 ztest_opts.zo_vdev_size, 0,
2523 2533 ztest_random(4) == 0, ztest_opts.zo_raidz,
2524 2534 zs->zs_mirrors, 1);
2525 2535
2526 2536 error = spa_vdev_add(spa, nvroot);
2527 2537 nvlist_free(nvroot);
2528 2538
2529 2539 if (error == ENOSPC)
2530 2540 ztest_record_enospc("spa_vdev_add");
2531 2541 else if (error != 0)
2532 2542 fatal(0, "spa_vdev_add() = %d", error);
2533 2543 }
2534 2544
2535 2545 VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
2536 2546 }
2537 2547
2538 2548 /*
2539 2549 * Verify that adding/removing aux devices (l2arc, hot spare) works as expected.
2540 2550 */
2541 2551 /* ARGSUSED */
2542 2552 void
2543 2553 ztest_vdev_aux_add_remove(ztest_ds_t *zd, uint64_t id)
2544 2554 {
2545 2555 ztest_shared_t *zs = ztest_shared;
2546 2556 spa_t *spa = ztest_spa;
2547 2557 vdev_t *rvd = spa->spa_root_vdev;
2548 2558 spa_aux_vdev_t *sav;
2549 2559 char *aux;
2550 2560 uint64_t guid = 0;
2551 2561 int error;
2552 2562
2553 2563 if (ztest_random(2) == 0) {
2554 2564 sav = &spa->spa_spares;
2555 2565 aux = ZPOOL_CONFIG_SPARES;
2556 2566 } else {
2557 2567 sav = &spa->spa_l2cache;
2558 2568 aux = ZPOOL_CONFIG_L2CACHE;
2559 2569 }
2560 2570
2561 2571 VERIFY(mutex_lock(&ztest_vdev_lock) == 0);
2562 2572
2563 2573 spa_config_enter(spa, SCL_VDEV, FTAG, RW_READER);
2564 2574
2565 2575 if (sav->sav_count != 0 && ztest_random(4) == 0) {
2566 2576 /*
2567 2577 * Pick a random device to remove.
2568 2578 */
2569 2579 guid = sav->sav_vdevs[ztest_random(sav->sav_count)]->vdev_guid;
2570 2580 } else {
2571 2581 /*
2572 2582 * Find an unused device we can add.
2573 2583 */
2574 2584 zs->zs_vdev_aux = 0;
2575 2585 for (;;) {
2576 2586 char path[MAXPATHLEN];
2577 2587 int c;
2578 2588 (void) snprintf(path, sizeof (path), ztest_aux_template,
2579 2589 ztest_opts.zo_dir, ztest_opts.zo_pool, aux,
2580 2590 zs->zs_vdev_aux);
2581 2591 for (c = 0; c < sav->sav_count; c++)
2582 2592 if (strcmp(sav->sav_vdevs[c]->vdev_path,
2583 2593 path) == 0)
2584 2594 break;
2585 2595 if (c == sav->sav_count &&
2586 2596 vdev_lookup_by_path(rvd, path) == NULL)
2587 2597 break;
2588 2598 zs->zs_vdev_aux++;
2589 2599 }
2590 2600 }
2591 2601
2592 2602 spa_config_exit(spa, SCL_VDEV, FTAG);
2593 2603
2594 2604 if (guid == 0) {
2595 2605 /*
2596 2606 * Add a new device.
2597 2607 */
2598 2608 nvlist_t *nvroot = make_vdev_root(NULL, aux, NULL,
2599 2609 (ztest_opts.zo_vdev_size * 5) / 4, 0, 0, 0, 0, 1);
2600 2610 error = spa_vdev_add(spa, nvroot);
2601 2611 if (error != 0)
2602 2612 fatal(0, "spa_vdev_add(%p) = %d", nvroot, error);
2603 2613 nvlist_free(nvroot);
2604 2614 } else {
2605 2615 /*
2606 2616 * Remove an existing device. Sometimes, dirty its
2607 2617 * vdev state first to make sure we handle removal
2608 2618 * of devices that have pending state changes.
2609 2619 */
2610 2620 if (ztest_random(2) == 0)
2611 2621 (void) vdev_online(spa, guid, 0, NULL);
2612 2622
2613 2623 error = spa_vdev_remove(spa, guid, B_FALSE);
2614 2624 if (error != 0 && error != EBUSY)
2615 2625 fatal(0, "spa_vdev_remove(%llu) = %d", guid, error);
2616 2626 }
2617 2627
2618 2628 VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
2619 2629 }
2620 2630
2621 2631 /*
2622 2632 * split a pool if it has mirror tlvdevs
2623 2633 */
2624 2634 /* ARGSUSED */
2625 2635 void
2626 2636 ztest_split_pool(ztest_ds_t *zd, uint64_t id)
2627 2637 {
2628 2638 ztest_shared_t *zs = ztest_shared;
2629 2639 spa_t *spa = ztest_spa;
2630 2640 vdev_t *rvd = spa->spa_root_vdev;
2631 2641 nvlist_t *tree, **child, *config, *split, **schild;
2632 2642 uint_t c, children, schildren = 0, lastlogid = 0;
2633 2643 int error = 0;
2634 2644
2635 2645 VERIFY(mutex_lock(&ztest_vdev_lock) == 0);
2636 2646
2637 2647 /* ensure we have a useable config; mirrors of raidz aren't supported */
2638 2648 if (zs->zs_mirrors < 3 || ztest_opts.zo_raidz > 1) {
2639 2649 VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
2640 2650 return;
2641 2651 }
2642 2652
2643 2653 /* clean up the old pool, if any */
2644 2654 (void) spa_destroy("splitp");
2645 2655
2646 2656 spa_config_enter(spa, SCL_VDEV, FTAG, RW_READER);
2647 2657
2648 2658 /* generate a config from the existing config */
2649 2659 mutex_enter(&spa->spa_props_lock);
2650 2660 VERIFY(nvlist_lookup_nvlist(spa->spa_config, ZPOOL_CONFIG_VDEV_TREE,
2651 2661 &tree) == 0);
2652 2662 mutex_exit(&spa->spa_props_lock);
2653 2663
2654 2664 VERIFY(nvlist_lookup_nvlist_array(tree, ZPOOL_CONFIG_CHILDREN, &child,
2655 2665 &children) == 0);
2656 2666
2657 2667 schild = malloc(rvd->vdev_children * sizeof (nvlist_t *));
2658 2668 for (c = 0; c < children; c++) {
2659 2669 vdev_t *tvd = rvd->vdev_child[c];
2660 2670 nvlist_t **mchild;
2661 2671 uint_t mchildren;
2662 2672
2663 2673 if (tvd->vdev_islog || tvd->vdev_ops == &vdev_hole_ops) {
2664 2674 VERIFY(nvlist_alloc(&schild[schildren], NV_UNIQUE_NAME,
2665 2675 0) == 0);
2666 2676 VERIFY(nvlist_add_string(schild[schildren],
2667 2677 ZPOOL_CONFIG_TYPE, VDEV_TYPE_HOLE) == 0);
2668 2678 VERIFY(nvlist_add_uint64(schild[schildren],
2669 2679 ZPOOL_CONFIG_IS_HOLE, 1) == 0);
2670 2680 if (lastlogid == 0)
2671 2681 lastlogid = schildren;
2672 2682 ++schildren;
2673 2683 continue;
2674 2684 }
2675 2685 lastlogid = 0;
2676 2686 VERIFY(nvlist_lookup_nvlist_array(child[c],
2677 2687 ZPOOL_CONFIG_CHILDREN, &mchild, &mchildren) == 0);
2678 2688 VERIFY(nvlist_dup(mchild[0], &schild[schildren++], 0) == 0);
2679 2689 }
2680 2690
2681 2691 /* OK, create a config that can be used to split */
2682 2692 VERIFY(nvlist_alloc(&split, NV_UNIQUE_NAME, 0) == 0);
2683 2693 VERIFY(nvlist_add_string(split, ZPOOL_CONFIG_TYPE,
2684 2694 VDEV_TYPE_ROOT) == 0);
2685 2695 VERIFY(nvlist_add_nvlist_array(split, ZPOOL_CONFIG_CHILDREN, schild,
2686 2696 lastlogid != 0 ? lastlogid : schildren) == 0);
2687 2697
2688 2698 VERIFY(nvlist_alloc(&config, NV_UNIQUE_NAME, 0) == 0);
2689 2699 VERIFY(nvlist_add_nvlist(config, ZPOOL_CONFIG_VDEV_TREE, split) == 0);
2690 2700
2691 2701 for (c = 0; c < schildren; c++)
2692 2702 nvlist_free(schild[c]);
2693 2703 free(schild);
2694 2704 nvlist_free(split);
2695 2705
2696 2706 spa_config_exit(spa, SCL_VDEV, FTAG);
2697 2707
2698 2708 (void) rw_wrlock(&ztest_name_lock);
2699 2709 error = spa_vdev_split_mirror(spa, "splitp", config, NULL, B_FALSE);
2700 2710 (void) rw_unlock(&ztest_name_lock);
2701 2711
2702 2712 nvlist_free(config);
2703 2713
2704 2714 if (error == 0) {
2705 2715 (void) printf("successful split - results:\n");
2706 2716 mutex_enter(&spa_namespace_lock);
2707 2717 show_pool_stats(spa);
2708 2718 show_pool_stats(spa_lookup("splitp"));
2709 2719 mutex_exit(&spa_namespace_lock);
2710 2720 ++zs->zs_splits;
2711 2721 --zs->zs_mirrors;
2712 2722 }
2713 2723 VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
2714 2724
2715 2725 }
2716 2726
2717 2727 /*
2718 2728 * Verify that we can attach and detach devices.
2719 2729 */
2720 2730 /* ARGSUSED */
2721 2731 void
2722 2732 ztest_vdev_attach_detach(ztest_ds_t *zd, uint64_t id)
2723 2733 {
↓ open down ↓ |
1944 lines elided |
↑ open up ↑ |
2724 2734 ztest_shared_t *zs = ztest_shared;
2725 2735 spa_t *spa = ztest_spa;
2726 2736 spa_aux_vdev_t *sav = &spa->spa_spares;
2727 2737 vdev_t *rvd = spa->spa_root_vdev;
2728 2738 vdev_t *oldvd, *newvd, *pvd;
2729 2739 nvlist_t *root;
2730 2740 uint64_t leaves;
2731 2741 uint64_t leaf, top;
2732 2742 uint64_t ashift = ztest_get_ashift();
2733 2743 uint64_t oldguid, pguid;
2734 - size_t oldsize, newsize;
2744 + uint64_t oldsize, newsize;
2735 2745 char oldpath[MAXPATHLEN], newpath[MAXPATHLEN];
2736 2746 int replacing;
2737 2747 int oldvd_has_siblings = B_FALSE;
2738 2748 int newvd_is_spare = B_FALSE;
2739 2749 int oldvd_is_log;
2740 2750 int error, expected_error;
2741 2751
2742 2752 VERIFY(mutex_lock(&ztest_vdev_lock) == 0);
2743 2753 leaves = MAX(zs->zs_mirrors, 1) * ztest_opts.zo_raidz;
2744 2754
2745 2755 spa_config_enter(spa, SCL_VDEV, FTAG, RW_READER);
2746 2756
2747 2757 /*
2748 2758 * Decide whether to do an attach or a replace.
2749 2759 */
2750 2760 replacing = ztest_random(2);
2751 2761
2752 2762 /*
2753 2763 * Pick a random top-level vdev.
2754 2764 */
2755 2765 top = ztest_random_vdev_top(spa, B_TRUE);
2756 2766
2757 2767 /*
2758 2768 * Pick a random leaf within it.
2759 2769 */
2760 2770 leaf = ztest_random(leaves);
2761 2771
2762 2772 /*
2763 2773 * Locate this vdev.
2764 2774 */
2765 2775 oldvd = rvd->vdev_child[top];
2766 2776 if (zs->zs_mirrors >= 1) {
2767 2777 ASSERT(oldvd->vdev_ops == &vdev_mirror_ops);
2768 2778 ASSERT(oldvd->vdev_children >= zs->zs_mirrors);
2769 2779 oldvd = oldvd->vdev_child[leaf / ztest_opts.zo_raidz];
2770 2780 }
2771 2781 if (ztest_opts.zo_raidz > 1) {
2772 2782 ASSERT(oldvd->vdev_ops == &vdev_raidz_ops);
2773 2783 ASSERT(oldvd->vdev_children == ztest_opts.zo_raidz);
2774 2784 oldvd = oldvd->vdev_child[leaf % ztest_opts.zo_raidz];
2775 2785 }
2776 2786
2777 2787 /*
2778 2788 * If we're already doing an attach or replace, oldvd may be a
2779 2789 * mirror vdev -- in which case, pick a random child.
2780 2790 */
2781 2791 while (oldvd->vdev_children != 0) {
2782 2792 oldvd_has_siblings = B_TRUE;
2783 2793 ASSERT(oldvd->vdev_children >= 2);
2784 2794 oldvd = oldvd->vdev_child[ztest_random(oldvd->vdev_children)];
2785 2795 }
2786 2796
2787 2797 oldguid = oldvd->vdev_guid;
2788 2798 oldsize = vdev_get_min_asize(oldvd);
2789 2799 oldvd_is_log = oldvd->vdev_top->vdev_islog;
2790 2800 (void) strcpy(oldpath, oldvd->vdev_path);
2791 2801 pvd = oldvd->vdev_parent;
2792 2802 pguid = pvd->vdev_guid;
2793 2803
2794 2804 /*
2795 2805 * If oldvd has siblings, then half of the time, detach it.
2796 2806 */
2797 2807 if (oldvd_has_siblings && ztest_random(2) == 0) {
2798 2808 spa_config_exit(spa, SCL_VDEV, FTAG);
2799 2809 error = spa_vdev_detach(spa, oldguid, pguid, B_FALSE);
2800 2810 if (error != 0 && error != ENODEV && error != EBUSY &&
2801 2811 error != ENOTSUP)
2802 2812 fatal(0, "detach (%s) returned %d", oldpath, error);
2803 2813 VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
2804 2814 return;
2805 2815 }
2806 2816
2807 2817 /*
2808 2818 * For the new vdev, choose with equal probability between the two
2809 2819 * standard paths (ending in either 'a' or 'b') or a random hot spare.
2810 2820 */
2811 2821 if (sav->sav_count != 0 && ztest_random(3) == 0) {
2812 2822 newvd = sav->sav_vdevs[ztest_random(sav->sav_count)];
2813 2823 newvd_is_spare = B_TRUE;
2814 2824 (void) strcpy(newpath, newvd->vdev_path);
2815 2825 } else {
2816 2826 (void) snprintf(newpath, sizeof (newpath), ztest_dev_template,
2817 2827 ztest_opts.zo_dir, ztest_opts.zo_pool,
2818 2828 top * leaves + leaf);
2819 2829 if (ztest_random(2) == 0)
2820 2830 newpath[strlen(newpath) - 1] = 'b';
2821 2831 newvd = vdev_lookup_by_path(rvd, newpath);
2822 2832 }
2823 2833
2824 2834 if (newvd) {
2825 2835 newsize = vdev_get_min_asize(newvd);
2826 2836 } else {
2827 2837 /*
2828 2838 * Make newsize a little bigger or smaller than oldsize.
2829 2839 * If it's smaller, the attach should fail.
2830 2840 * If it's larger, and we're doing a replace,
2831 2841 * we should get dynamic LUN growth when we're done.
2832 2842 */
2833 2843 newsize = 10 * oldsize / (9 + ztest_random(3));
2834 2844 }
2835 2845
2836 2846 /*
2837 2847 * If pvd is not a mirror or root, the attach should fail with ENOTSUP,
2838 2848 * unless it's a replace; in that case any non-replacing parent is OK.
2839 2849 *
2840 2850 * If newvd is already part of the pool, it should fail with EBUSY.
2841 2851 *
2842 2852 * If newvd is too small, it should fail with EOVERFLOW.
2843 2853 */
2844 2854 if (pvd->vdev_ops != &vdev_mirror_ops &&
2845 2855 pvd->vdev_ops != &vdev_root_ops && (!replacing ||
2846 2856 pvd->vdev_ops == &vdev_replacing_ops ||
2847 2857 pvd->vdev_ops == &vdev_spare_ops))
2848 2858 expected_error = ENOTSUP;
2849 2859 else if (newvd_is_spare && (!replacing || oldvd_is_log))
2850 2860 expected_error = ENOTSUP;
2851 2861 else if (newvd == oldvd)
2852 2862 expected_error = replacing ? 0 : EBUSY;
2853 2863 else if (vdev_lookup_by_path(rvd, newpath) != NULL)
2854 2864 expected_error = EBUSY;
2855 2865 else if (newsize < oldsize)
2856 2866 expected_error = EOVERFLOW;
2857 2867 else if (ashift > oldvd->vdev_top->vdev_ashift)
2858 2868 expected_error = EDOM;
2859 2869 else
2860 2870 expected_error = 0;
2861 2871
2862 2872 spa_config_exit(spa, SCL_VDEV, FTAG);
2863 2873
2864 2874 /*
2865 2875 * Build the nvlist describing newpath.
2866 2876 */
2867 2877 root = make_vdev_root(newpath, NULL, NULL, newvd == NULL ? newsize : 0,
2868 2878 ashift, 0, 0, 0, 1);
2869 2879
2870 2880 error = spa_vdev_attach(spa, oldguid, root, replacing);
2871 2881
2872 2882 nvlist_free(root);
2873 2883
2874 2884 /*
2875 2885 * If our parent was the replacing vdev, but the replace completed,
2876 2886 * then instead of failing with ENOTSUP we may either succeed,
2877 2887 * fail with ENODEV, or fail with EOVERFLOW.
2878 2888 */
2879 2889 if (expected_error == ENOTSUP &&
2880 2890 (error == 0 || error == ENODEV || error == EOVERFLOW))
2881 2891 expected_error = error;
2882 2892
↓ open down ↓ |
138 lines elided |
↑ open up ↑ |
2883 2893 /*
2884 2894 * If someone grew the LUN, the replacement may be too small.
2885 2895 */
2886 2896 if (error == EOVERFLOW || error == EBUSY)
2887 2897 expected_error = error;
2888 2898
2889 2899 /* XXX workaround 6690467 */
2890 2900 if (error != expected_error && expected_error != EBUSY) {
2891 2901 fatal(0, "attach (%s %llu, %s %llu, %d) "
2892 2902 "returned %d, expected %d",
2893 - oldpath, (longlong_t)oldsize, newpath,
2894 - (longlong_t)newsize, replacing, error, expected_error);
2903 + oldpath, oldsize, newpath,
2904 + newsize, replacing, error, expected_error);
2895 2905 }
2896 2906
2897 2907 VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
2898 2908 }
2899 2909
2900 2910 /*
2901 2911 * Callback function which expands the physical size of the vdev.
2902 2912 */
2903 2913 vdev_t *
2904 2914 grow_vdev(vdev_t *vd, void *arg)
2905 2915 {
2906 2916 spa_t *spa = vd->vdev_spa;
2907 2917 size_t *newsize = arg;
2908 2918 size_t fsize;
2909 2919 int fd;
2910 2920
2911 2921 ASSERT(spa_config_held(spa, SCL_STATE, RW_READER) == SCL_STATE);
2912 2922 ASSERT(vd->vdev_ops->vdev_op_leaf);
2913 2923
2914 2924 if ((fd = open(vd->vdev_path, O_RDWR)) == -1)
2915 2925 return (vd);
2916 2926
2917 2927 fsize = lseek(fd, 0, SEEK_END);
2918 2928 (void) ftruncate(fd, *newsize);
2919 2929
2920 2930 if (ztest_opts.zo_verbose >= 6) {
2921 2931 (void) printf("%s grew from %lu to %lu bytes\n",
2922 2932 vd->vdev_path, (ulong_t)fsize, (ulong_t)*newsize);
2923 2933 }
2924 2934 (void) close(fd);
2925 2935 return (NULL);
2926 2936 }
2927 2937
2928 2938 /*
2929 2939 * Callback function which expands a given vdev by calling vdev_online().
2930 2940 */
2931 2941 /* ARGSUSED */
2932 2942 vdev_t *
2933 2943 online_vdev(vdev_t *vd, void *arg)
2934 2944 {
2935 2945 spa_t *spa = vd->vdev_spa;
2936 2946 vdev_t *tvd = vd->vdev_top;
2937 2947 uint64_t guid = vd->vdev_guid;
2938 2948 uint64_t generation = spa->spa_config_generation + 1;
2939 2949 vdev_state_t newstate = VDEV_STATE_UNKNOWN;
2940 2950 int error;
2941 2951
2942 2952 ASSERT(spa_config_held(spa, SCL_STATE, RW_READER) == SCL_STATE);
2943 2953 ASSERT(vd->vdev_ops->vdev_op_leaf);
2944 2954
2945 2955 /* Calling vdev_online will initialize the new metaslabs */
2946 2956 spa_config_exit(spa, SCL_STATE, spa);
2947 2957 error = vdev_online(spa, guid, ZFS_ONLINE_EXPAND, &newstate);
2948 2958 spa_config_enter(spa, SCL_STATE, spa, RW_READER);
2949 2959
2950 2960 /*
2951 2961 * If vdev_online returned an error or the underlying vdev_open
2952 2962 * failed then we abort the expand. The only way to know that
2953 2963 * vdev_open fails is by checking the returned newstate.
2954 2964 */
2955 2965 if (error || newstate != VDEV_STATE_HEALTHY) {
2956 2966 if (ztest_opts.zo_verbose >= 5) {
2957 2967 (void) printf("Unable to expand vdev, state %llu, "
2958 2968 "error %d\n", (u_longlong_t)newstate, error);
2959 2969 }
2960 2970 return (vd);
2961 2971 }
2962 2972 ASSERT3U(newstate, ==, VDEV_STATE_HEALTHY);
2963 2973
2964 2974 /*
2965 2975 * Since we dropped the lock we need to ensure that we're
2966 2976 * still talking to the original vdev. It's possible this
2967 2977 * vdev may have been detached/replaced while we were
2968 2978 * trying to online it.
2969 2979 */
2970 2980 if (generation != spa->spa_config_generation) {
2971 2981 if (ztest_opts.zo_verbose >= 5) {
2972 2982 (void) printf("vdev configuration has changed, "
2973 2983 "guid %llu, state %llu, expected gen %llu, "
2974 2984 "got gen %llu\n",
2975 2985 (u_longlong_t)guid,
2976 2986 (u_longlong_t)tvd->vdev_state,
2977 2987 (u_longlong_t)generation,
2978 2988 (u_longlong_t)spa->spa_config_generation);
2979 2989 }
2980 2990 return (vd);
2981 2991 }
2982 2992 return (NULL);
2983 2993 }
2984 2994
2985 2995 /*
2986 2996 * Traverse the vdev tree calling the supplied function.
2987 2997 * We continue to walk the tree until we either have walked all
2988 2998 * children or we receive a non-NULL return from the callback.
2989 2999 * If a NULL callback is passed, then we just return back the first
2990 3000 * leaf vdev we encounter.
2991 3001 */
2992 3002 vdev_t *
2993 3003 vdev_walk_tree(vdev_t *vd, vdev_t *(*func)(vdev_t *, void *), void *arg)
2994 3004 {
2995 3005 if (vd->vdev_ops->vdev_op_leaf) {
2996 3006 if (func == NULL)
2997 3007 return (vd);
2998 3008 else
2999 3009 return (func(vd, arg));
3000 3010 }
3001 3011
3002 3012 for (uint_t c = 0; c < vd->vdev_children; c++) {
3003 3013 vdev_t *cvd = vd->vdev_child[c];
3004 3014 if ((cvd = vdev_walk_tree(cvd, func, arg)) != NULL)
3005 3015 return (cvd);
3006 3016 }
3007 3017 return (NULL);
3008 3018 }
3009 3019
3010 3020 /*
3011 3021 * Verify that dynamic LUN growth works as expected.
3012 3022 */
3013 3023 /* ARGSUSED */
3014 3024 void
3015 3025 ztest_vdev_LUN_growth(ztest_ds_t *zd, uint64_t id)
3016 3026 {
3017 3027 spa_t *spa = ztest_spa;
3018 3028 vdev_t *vd, *tvd;
3019 3029 metaslab_class_t *mc;
3020 3030 metaslab_group_t *mg;
3021 3031 size_t psize, newsize;
3022 3032 uint64_t top;
3023 3033 uint64_t old_class_space, new_class_space, old_ms_count, new_ms_count;
3024 3034
3025 3035 VERIFY(mutex_lock(&ztest_vdev_lock) == 0);
3026 3036 spa_config_enter(spa, SCL_STATE, spa, RW_READER);
3027 3037
3028 3038 top = ztest_random_vdev_top(spa, B_TRUE);
3029 3039
3030 3040 tvd = spa->spa_root_vdev->vdev_child[top];
3031 3041 mg = tvd->vdev_mg;
3032 3042 mc = mg->mg_class;
3033 3043 old_ms_count = tvd->vdev_ms_count;
3034 3044 old_class_space = metaslab_class_get_space(mc);
3035 3045
3036 3046 /*
3037 3047 * Determine the size of the first leaf vdev associated with
3038 3048 * our top-level device.
3039 3049 */
3040 3050 vd = vdev_walk_tree(tvd, NULL, NULL);
3041 3051 ASSERT3P(vd, !=, NULL);
3042 3052 ASSERT(vd->vdev_ops->vdev_op_leaf);
3043 3053
3044 3054 psize = vd->vdev_psize;
3045 3055
3046 3056 /*
3047 3057 * We only try to expand the vdev if it's healthy, less than 4x its
3048 3058 * original size, and it has a valid psize.
3049 3059 */
3050 3060 if (tvd->vdev_state != VDEV_STATE_HEALTHY ||
3051 3061 psize == 0 || psize >= 4 * ztest_opts.zo_vdev_size) {
3052 3062 spa_config_exit(spa, SCL_STATE, spa);
3053 3063 VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
3054 3064 return;
3055 3065 }
3056 3066 ASSERT(psize > 0);
3057 3067 newsize = psize + psize / 8;
3058 3068 ASSERT3U(newsize, >, psize);
3059 3069
3060 3070 if (ztest_opts.zo_verbose >= 6) {
3061 3071 (void) printf("Expanding LUN %s from %lu to %lu\n",
3062 3072 vd->vdev_path, (ulong_t)psize, (ulong_t)newsize);
3063 3073 }
3064 3074
3065 3075 /*
3066 3076 * Growing the vdev is a two step process:
3067 3077 * 1). expand the physical size (i.e. relabel)
3068 3078 * 2). online the vdev to create the new metaslabs
3069 3079 */
3070 3080 if (vdev_walk_tree(tvd, grow_vdev, &newsize) != NULL ||
3071 3081 vdev_walk_tree(tvd, online_vdev, NULL) != NULL ||
3072 3082 tvd->vdev_state != VDEV_STATE_HEALTHY) {
3073 3083 if (ztest_opts.zo_verbose >= 5) {
3074 3084 (void) printf("Could not expand LUN because "
3075 3085 "the vdev configuration changed.\n");
3076 3086 }
3077 3087 spa_config_exit(spa, SCL_STATE, spa);
3078 3088 VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
3079 3089 return;
3080 3090 }
3081 3091
3082 3092 spa_config_exit(spa, SCL_STATE, spa);
3083 3093
3084 3094 /*
3085 3095 * Expanding the LUN will update the config asynchronously,
3086 3096 * thus we must wait for the async thread to complete any
3087 3097 * pending tasks before proceeding.
3088 3098 */
3089 3099 for (;;) {
3090 3100 boolean_t done;
3091 3101 mutex_enter(&spa->spa_async_lock);
3092 3102 done = (spa->spa_async_thread == NULL && !spa->spa_async_tasks);
3093 3103 mutex_exit(&spa->spa_async_lock);
3094 3104 if (done)
3095 3105 break;
3096 3106 txg_wait_synced(spa_get_dsl(spa), 0);
3097 3107 (void) poll(NULL, 0, 100);
3098 3108 }
3099 3109
3100 3110 spa_config_enter(spa, SCL_STATE, spa, RW_READER);
3101 3111
3102 3112 tvd = spa->spa_root_vdev->vdev_child[top];
3103 3113 new_ms_count = tvd->vdev_ms_count;
3104 3114 new_class_space = metaslab_class_get_space(mc);
3105 3115
3106 3116 if (tvd->vdev_mg != mg || mg->mg_class != mc) {
3107 3117 if (ztest_opts.zo_verbose >= 5) {
3108 3118 (void) printf("Could not verify LUN expansion due to "
3109 3119 "intervening vdev offline or remove.\n");
3110 3120 }
3111 3121 spa_config_exit(spa, SCL_STATE, spa);
3112 3122 VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
3113 3123 return;
3114 3124 }
3115 3125
3116 3126 /*
3117 3127 * Make sure we were able to grow the vdev.
3118 3128 */
3119 3129 if (new_ms_count <= old_ms_count)
3120 3130 fatal(0, "LUN expansion failed: ms_count %llu <= %llu\n",
3121 3131 old_ms_count, new_ms_count);
3122 3132
3123 3133 /*
3124 3134 * Make sure we were able to grow the pool.
3125 3135 */
3126 3136 if (new_class_space <= old_class_space)
3127 3137 fatal(0, "LUN expansion failed: class_space %llu <= %llu\n",
3128 3138 old_class_space, new_class_space);
3129 3139
3130 3140 if (ztest_opts.zo_verbose >= 5) {
3131 3141 char oldnumbuf[6], newnumbuf[6];
3132 3142
3133 3143 nicenum(old_class_space, oldnumbuf);
3134 3144 nicenum(new_class_space, newnumbuf);
3135 3145 (void) printf("%s grew from %s to %s\n",
3136 3146 spa->spa_name, oldnumbuf, newnumbuf);
3137 3147 }
3138 3148
3139 3149 spa_config_exit(spa, SCL_STATE, spa);
3140 3150 VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
3141 3151 }
3142 3152
3143 3153 /*
3144 3154 * Verify that dmu_objset_{create,destroy,open,close} work as expected.
3145 3155 */
3146 3156 /* ARGSUSED */
3147 3157 static void
3148 3158 ztest_objset_create_cb(objset_t *os, void *arg, cred_t *cr, dmu_tx_t *tx)
3149 3159 {
3150 3160 /*
3151 3161 * Create the objects common to all ztest datasets.
3152 3162 */
3153 3163 VERIFY(zap_create_claim(os, ZTEST_DIROBJ,
3154 3164 DMU_OT_ZAP_OTHER, DMU_OT_NONE, 0, tx) == 0);
3155 3165 }
3156 3166
3157 3167 static int
3158 3168 ztest_dataset_create(char *dsname)
3159 3169 {
3160 3170 uint64_t zilset = ztest_random(100);
3161 3171 int err = dmu_objset_create(dsname, DMU_OST_OTHER, 0,
3162 3172 ztest_objset_create_cb, NULL);
3163 3173
3164 3174 if (err || zilset < 80)
3165 3175 return (err);
3166 3176
3167 3177 if (ztest_opts.zo_verbose >= 6)
3168 3178 (void) printf("Setting dataset %s to sync always\n", dsname);
3169 3179 return (ztest_dsl_prop_set_uint64(dsname, ZFS_PROP_SYNC,
3170 3180 ZFS_SYNC_ALWAYS, B_FALSE));
3171 3181 }
3172 3182
3173 3183 /* ARGSUSED */
3174 3184 static int
3175 3185 ztest_objset_destroy_cb(const char *name, void *arg)
3176 3186 {
3177 3187 objset_t *os;
3178 3188 dmu_object_info_t doi;
3179 3189 int error;
3180 3190
3181 3191 /*
3182 3192 * Verify that the dataset contains a directory object.
3183 3193 */
3184 3194 VERIFY0(dmu_objset_own(name, DMU_OST_OTHER, B_TRUE, FTAG, &os));
3185 3195 error = dmu_object_info(os, ZTEST_DIROBJ, &doi);
3186 3196 if (error != ENOENT) {
3187 3197 /* We could have crashed in the middle of destroying it */
3188 3198 ASSERT0(error);
3189 3199 ASSERT3U(doi.doi_type, ==, DMU_OT_ZAP_OTHER);
3190 3200 ASSERT3S(doi.doi_physical_blocks_512, >=, 0);
3191 3201 }
3192 3202 dmu_objset_disown(os, FTAG);
3193 3203
3194 3204 /*
3195 3205 * Destroy the dataset.
3196 3206 */
3197 3207 if (strchr(name, '@') != NULL) {
3198 3208 VERIFY0(dsl_destroy_snapshot(name, B_FALSE));
3199 3209 } else {
3200 3210 VERIFY0(dsl_destroy_head(name));
3201 3211 }
3202 3212 return (0);
3203 3213 }
3204 3214
3205 3215 static boolean_t
3206 3216 ztest_snapshot_create(char *osname, uint64_t id)
3207 3217 {
3208 3218 char snapname[MAXNAMELEN];
3209 3219 int error;
3210 3220
3211 3221 (void) snprintf(snapname, sizeof (snapname), "%llu", (u_longlong_t)id);
3212 3222
3213 3223 error = dmu_objset_snapshot_one(osname, snapname);
3214 3224 if (error == ENOSPC) {
3215 3225 ztest_record_enospc(FTAG);
3216 3226 return (B_FALSE);
3217 3227 }
3218 3228 if (error != 0 && error != EEXIST) {
3219 3229 fatal(0, "ztest_snapshot_create(%s@%s) = %d", osname,
3220 3230 snapname, error);
3221 3231 }
3222 3232 return (B_TRUE);
3223 3233 }
3224 3234
3225 3235 static boolean_t
3226 3236 ztest_snapshot_destroy(char *osname, uint64_t id)
3227 3237 {
3228 3238 char snapname[MAXNAMELEN];
3229 3239 int error;
3230 3240
3231 3241 (void) snprintf(snapname, MAXNAMELEN, "%s@%llu", osname,
3232 3242 (u_longlong_t)id);
3233 3243
3234 3244 error = dsl_destroy_snapshot(snapname, B_FALSE);
3235 3245 if (error != 0 && error != ENOENT)
3236 3246 fatal(0, "ztest_snapshot_destroy(%s) = %d", snapname, error);
3237 3247 return (B_TRUE);
3238 3248 }
3239 3249
3240 3250 /* ARGSUSED */
3241 3251 void
3242 3252 ztest_dmu_objset_create_destroy(ztest_ds_t *zd, uint64_t id)
3243 3253 {
3244 3254 ztest_ds_t zdtmp;
3245 3255 int iters;
3246 3256 int error;
3247 3257 objset_t *os, *os2;
3248 3258 char name[MAXNAMELEN];
3249 3259 zilog_t *zilog;
3250 3260
3251 3261 (void) rw_rdlock(&ztest_name_lock);
3252 3262
3253 3263 (void) snprintf(name, MAXNAMELEN, "%s/temp_%llu",
3254 3264 ztest_opts.zo_pool, (u_longlong_t)id);
3255 3265
3256 3266 /*
3257 3267 * If this dataset exists from a previous run, process its replay log
3258 3268 * half of the time. If we don't replay it, then dmu_objset_destroy()
3259 3269 * (invoked from ztest_objset_destroy_cb()) should just throw it away.
3260 3270 */
3261 3271 if (ztest_random(2) == 0 &&
3262 3272 dmu_objset_own(name, DMU_OST_OTHER, B_FALSE, FTAG, &os) == 0) {
3263 3273 ztest_zd_init(&zdtmp, NULL, os);
3264 3274 zil_replay(os, &zdtmp, ztest_replay_vector);
3265 3275 ztest_zd_fini(&zdtmp);
3266 3276 dmu_objset_disown(os, FTAG);
3267 3277 }
3268 3278
3269 3279 /*
3270 3280 * There may be an old instance of the dataset we're about to
3271 3281 * create lying around from a previous run. If so, destroy it
3272 3282 * and all of its snapshots.
3273 3283 */
3274 3284 (void) dmu_objset_find(name, ztest_objset_destroy_cb, NULL,
3275 3285 DS_FIND_CHILDREN | DS_FIND_SNAPSHOTS);
3276 3286
3277 3287 /*
3278 3288 * Verify that the destroyed dataset is no longer in the namespace.
3279 3289 */
3280 3290 VERIFY3U(ENOENT, ==, dmu_objset_own(name, DMU_OST_OTHER, B_TRUE,
3281 3291 FTAG, &os));
3282 3292
3283 3293 /*
3284 3294 * Verify that we can create a new dataset.
3285 3295 */
3286 3296 error = ztest_dataset_create(name);
3287 3297 if (error) {
3288 3298 if (error == ENOSPC) {
3289 3299 ztest_record_enospc(FTAG);
3290 3300 (void) rw_unlock(&ztest_name_lock);
3291 3301 return;
3292 3302 }
3293 3303 fatal(0, "dmu_objset_create(%s) = %d", name, error);
3294 3304 }
3295 3305
3296 3306 VERIFY0(dmu_objset_own(name, DMU_OST_OTHER, B_FALSE, FTAG, &os));
3297 3307
3298 3308 ztest_zd_init(&zdtmp, NULL, os);
3299 3309
3300 3310 /*
3301 3311 * Open the intent log for it.
3302 3312 */
3303 3313 zilog = zil_open(os, ztest_get_data);
3304 3314
3305 3315 /*
3306 3316 * Put some objects in there, do a little I/O to them,
3307 3317 * and randomly take a couple of snapshots along the way.
3308 3318 */
3309 3319 iters = ztest_random(5);
3310 3320 for (int i = 0; i < iters; i++) {
3311 3321 ztest_dmu_object_alloc_free(&zdtmp, id);
3312 3322 if (ztest_random(iters) == 0)
3313 3323 (void) ztest_snapshot_create(name, i);
3314 3324 }
3315 3325
3316 3326 /*
3317 3327 * Verify that we cannot create an existing dataset.
3318 3328 */
3319 3329 VERIFY3U(EEXIST, ==,
3320 3330 dmu_objset_create(name, DMU_OST_OTHER, 0, NULL, NULL));
3321 3331
3322 3332 /*
3323 3333 * Verify that we can hold an objset that is also owned.
3324 3334 */
3325 3335 VERIFY3U(0, ==, dmu_objset_hold(name, FTAG, &os2));
3326 3336 dmu_objset_rele(os2, FTAG);
3327 3337
3328 3338 /*
3329 3339 * Verify that we cannot own an objset that is already owned.
3330 3340 */
3331 3341 VERIFY3U(EBUSY, ==,
3332 3342 dmu_objset_own(name, DMU_OST_OTHER, B_FALSE, FTAG, &os2));
3333 3343
3334 3344 zil_close(zilog);
3335 3345 dmu_objset_disown(os, FTAG);
3336 3346 ztest_zd_fini(&zdtmp);
3337 3347
3338 3348 (void) rw_unlock(&ztest_name_lock);
3339 3349 }
3340 3350
3341 3351 /*
3342 3352 * Verify that dmu_snapshot_{create,destroy,open,close} work as expected.
3343 3353 */
3344 3354 void
3345 3355 ztest_dmu_snapshot_create_destroy(ztest_ds_t *zd, uint64_t id)
3346 3356 {
3347 3357 (void) rw_rdlock(&ztest_name_lock);
3348 3358 (void) ztest_snapshot_destroy(zd->zd_name, id);
3349 3359 (void) ztest_snapshot_create(zd->zd_name, id);
3350 3360 (void) rw_unlock(&ztest_name_lock);
3351 3361 }
3352 3362
3353 3363 /*
3354 3364 * Cleanup non-standard snapshots and clones.
3355 3365 */
3356 3366 void
3357 3367 ztest_dsl_dataset_cleanup(char *osname, uint64_t id)
3358 3368 {
3359 3369 char snap1name[MAXNAMELEN];
3360 3370 char clone1name[MAXNAMELEN];
3361 3371 char snap2name[MAXNAMELEN];
3362 3372 char clone2name[MAXNAMELEN];
3363 3373 char snap3name[MAXNAMELEN];
3364 3374 int error;
3365 3375
3366 3376 (void) snprintf(snap1name, MAXNAMELEN, "%s@s1_%llu", osname, id);
3367 3377 (void) snprintf(clone1name, MAXNAMELEN, "%s/c1_%llu", osname, id);
3368 3378 (void) snprintf(snap2name, MAXNAMELEN, "%s@s2_%llu", clone1name, id);
3369 3379 (void) snprintf(clone2name, MAXNAMELEN, "%s/c2_%llu", osname, id);
3370 3380 (void) snprintf(snap3name, MAXNAMELEN, "%s@s3_%llu", clone1name, id);
3371 3381
3372 3382 error = dsl_destroy_head(clone2name);
3373 3383 if (error && error != ENOENT)
3374 3384 fatal(0, "dsl_destroy_head(%s) = %d", clone2name, error);
3375 3385 error = dsl_destroy_snapshot(snap3name, B_FALSE);
3376 3386 if (error && error != ENOENT)
3377 3387 fatal(0, "dsl_destroy_snapshot(%s) = %d", snap3name, error);
3378 3388 error = dsl_destroy_snapshot(snap2name, B_FALSE);
3379 3389 if (error && error != ENOENT)
3380 3390 fatal(0, "dsl_destroy_snapshot(%s) = %d", snap2name, error);
3381 3391 error = dsl_destroy_head(clone1name);
3382 3392 if (error && error != ENOENT)
3383 3393 fatal(0, "dsl_destroy_head(%s) = %d", clone1name, error);
3384 3394 error = dsl_destroy_snapshot(snap1name, B_FALSE);
3385 3395 if (error && error != ENOENT)
3386 3396 fatal(0, "dsl_destroy_snapshot(%s) = %d", snap1name, error);
3387 3397 }
3388 3398
3389 3399 /*
3390 3400 * Verify dsl_dataset_promote handles EBUSY
3391 3401 */
3392 3402 void
3393 3403 ztest_dsl_dataset_promote_busy(ztest_ds_t *zd, uint64_t id)
3394 3404 {
3395 3405 objset_t *os;
3396 3406 char snap1name[MAXNAMELEN];
3397 3407 char clone1name[MAXNAMELEN];
3398 3408 char snap2name[MAXNAMELEN];
3399 3409 char clone2name[MAXNAMELEN];
3400 3410 char snap3name[MAXNAMELEN];
3401 3411 char *osname = zd->zd_name;
3402 3412 int error;
3403 3413
3404 3414 (void) rw_rdlock(&ztest_name_lock);
3405 3415
3406 3416 ztest_dsl_dataset_cleanup(osname, id);
3407 3417
3408 3418 (void) snprintf(snap1name, MAXNAMELEN, "%s@s1_%llu", osname, id);
3409 3419 (void) snprintf(clone1name, MAXNAMELEN, "%s/c1_%llu", osname, id);
3410 3420 (void) snprintf(snap2name, MAXNAMELEN, "%s@s2_%llu", clone1name, id);
3411 3421 (void) snprintf(clone2name, MAXNAMELEN, "%s/c2_%llu", osname, id);
3412 3422 (void) snprintf(snap3name, MAXNAMELEN, "%s@s3_%llu", clone1name, id);
3413 3423
3414 3424 error = dmu_objset_snapshot_one(osname, strchr(snap1name, '@') + 1);
3415 3425 if (error && error != EEXIST) {
3416 3426 if (error == ENOSPC) {
3417 3427 ztest_record_enospc(FTAG);
3418 3428 goto out;
3419 3429 }
3420 3430 fatal(0, "dmu_take_snapshot(%s) = %d", snap1name, error);
3421 3431 }
3422 3432
3423 3433 error = dmu_objset_clone(clone1name, snap1name);
3424 3434 if (error) {
3425 3435 if (error == ENOSPC) {
3426 3436 ztest_record_enospc(FTAG);
3427 3437 goto out;
3428 3438 }
3429 3439 fatal(0, "dmu_objset_create(%s) = %d", clone1name, error);
3430 3440 }
3431 3441
3432 3442 error = dmu_objset_snapshot_one(clone1name, strchr(snap2name, '@') + 1);
3433 3443 if (error && error != EEXIST) {
3434 3444 if (error == ENOSPC) {
3435 3445 ztest_record_enospc(FTAG);
3436 3446 goto out;
3437 3447 }
3438 3448 fatal(0, "dmu_open_snapshot(%s) = %d", snap2name, error);
3439 3449 }
3440 3450
3441 3451 error = dmu_objset_snapshot_one(clone1name, strchr(snap3name, '@') + 1);
3442 3452 if (error && error != EEXIST) {
3443 3453 if (error == ENOSPC) {
3444 3454 ztest_record_enospc(FTAG);
3445 3455 goto out;
3446 3456 }
3447 3457 fatal(0, "dmu_open_snapshot(%s) = %d", snap3name, error);
3448 3458 }
3449 3459
3450 3460 error = dmu_objset_clone(clone2name, snap3name);
3451 3461 if (error) {
3452 3462 if (error == ENOSPC) {
3453 3463 ztest_record_enospc(FTAG);
3454 3464 goto out;
3455 3465 }
3456 3466 fatal(0, "dmu_objset_create(%s) = %d", clone2name, error);
3457 3467 }
3458 3468
3459 3469 error = dmu_objset_own(snap2name, DMU_OST_ANY, B_TRUE, FTAG, &os);
3460 3470 if (error)
3461 3471 fatal(0, "dmu_objset_own(%s) = %d", snap2name, error);
3462 3472 error = dsl_dataset_promote(clone2name, NULL);
3463 3473 if (error != EBUSY)
3464 3474 fatal(0, "dsl_dataset_promote(%s), %d, not EBUSY", clone2name,
3465 3475 error);
3466 3476 dmu_objset_disown(os, FTAG);
3467 3477
3468 3478 out:
3469 3479 ztest_dsl_dataset_cleanup(osname, id);
3470 3480
3471 3481 (void) rw_unlock(&ztest_name_lock);
3472 3482 }
3473 3483
3474 3484 /*
3475 3485 * Verify that dmu_object_{alloc,free} work as expected.
3476 3486 */
3477 3487 void
3478 3488 ztest_dmu_object_alloc_free(ztest_ds_t *zd, uint64_t id)
3479 3489 {
3480 3490 ztest_od_t od[4];
3481 3491 int batchsize = sizeof (od) / sizeof (od[0]);
3482 3492
3483 3493 for (int b = 0; b < batchsize; b++)
3484 3494 ztest_od_init(&od[b], id, FTAG, b, DMU_OT_UINT64_OTHER, 0, 0);
3485 3495
3486 3496 /*
3487 3497 * Destroy the previous batch of objects, create a new batch,
3488 3498 * and do some I/O on the new objects.
3489 3499 */
3490 3500 if (ztest_object_init(zd, od, sizeof (od), B_TRUE) != 0)
3491 3501 return;
3492 3502
3493 3503 while (ztest_random(4 * batchsize) != 0)
3494 3504 ztest_io(zd, od[ztest_random(batchsize)].od_object,
3495 3505 ztest_random(ZTEST_RANGE_LOCKS) << SPA_MAXBLOCKSHIFT);
3496 3506 }
3497 3507
3498 3508 /*
3499 3509 * Verify that dmu_{read,write} work as expected.
3500 3510 */
3501 3511 void
3502 3512 ztest_dmu_read_write(ztest_ds_t *zd, uint64_t id)
3503 3513 {
3504 3514 objset_t *os = zd->zd_os;
3505 3515 ztest_od_t od[2];
3506 3516 dmu_tx_t *tx;
3507 3517 int i, freeit, error;
3508 3518 uint64_t n, s, txg;
3509 3519 bufwad_t *packbuf, *bigbuf, *pack, *bigH, *bigT;
3510 3520 uint64_t packobj, packoff, packsize, bigobj, bigoff, bigsize;
3511 3521 uint64_t chunksize = (1000 + ztest_random(1000)) * sizeof (uint64_t);
3512 3522 uint64_t regions = 997;
3513 3523 uint64_t stride = 123456789ULL;
3514 3524 uint64_t width = 40;
3515 3525 int free_percent = 5;
3516 3526
3517 3527 /*
3518 3528 * This test uses two objects, packobj and bigobj, that are always
3519 3529 * updated together (i.e. in the same tx) so that their contents are
3520 3530 * in sync and can be compared. Their contents relate to each other
3521 3531 * in a simple way: packobj is a dense array of 'bufwad' structures,
3522 3532 * while bigobj is a sparse array of the same bufwads. Specifically,
3523 3533 * for any index n, there are three bufwads that should be identical:
3524 3534 *
3525 3535 * packobj, at offset n * sizeof (bufwad_t)
3526 3536 * bigobj, at the head of the nth chunk
3527 3537 * bigobj, at the tail of the nth chunk
3528 3538 *
3529 3539 * The chunk size is arbitrary. It doesn't have to be a power of two,
3530 3540 * and it doesn't have any relation to the object blocksize.
3531 3541 * The only requirement is that it can hold at least two bufwads.
3532 3542 *
3533 3543 * Normally, we write the bufwad to each of these locations.
3534 3544 * However, free_percent of the time we instead write zeroes to
3535 3545 * packobj and perform a dmu_free_range() on bigobj. By comparing
3536 3546 * bigobj to packobj, we can verify that the DMU is correctly
3537 3547 * tracking which parts of an object are allocated and free,
3538 3548 * and that the contents of the allocated blocks are correct.
3539 3549 */
3540 3550
3541 3551 /*
3542 3552 * Read the directory info. If it's the first time, set things up.
3543 3553 */
3544 3554 ztest_od_init(&od[0], id, FTAG, 0, DMU_OT_UINT64_OTHER, 0, chunksize);
3545 3555 ztest_od_init(&od[1], id, FTAG, 1, DMU_OT_UINT64_OTHER, 0, chunksize);
3546 3556
3547 3557 if (ztest_object_init(zd, od, sizeof (od), B_FALSE) != 0)
3548 3558 return;
3549 3559
3550 3560 bigobj = od[0].od_object;
3551 3561 packobj = od[1].od_object;
3552 3562 chunksize = od[0].od_gen;
3553 3563 ASSERT(chunksize == od[1].od_gen);
3554 3564
3555 3565 /*
3556 3566 * Prefetch a random chunk of the big object.
3557 3567 * Our aim here is to get some async reads in flight
3558 3568 * for blocks that we may free below; the DMU should
3559 3569 * handle this race correctly.
3560 3570 */
3561 3571 n = ztest_random(regions) * stride + ztest_random(width);
3562 3572 s = 1 + ztest_random(2 * width - 1);
3563 3573 dmu_prefetch(os, bigobj, n * chunksize, s * chunksize);
3564 3574
3565 3575 /*
3566 3576 * Pick a random index and compute the offsets into packobj and bigobj.
3567 3577 */
3568 3578 n = ztest_random(regions) * stride + ztest_random(width);
3569 3579 s = 1 + ztest_random(width - 1);
3570 3580
3571 3581 packoff = n * sizeof (bufwad_t);
3572 3582 packsize = s * sizeof (bufwad_t);
3573 3583
3574 3584 bigoff = n * chunksize;
3575 3585 bigsize = s * chunksize;
3576 3586
3577 3587 packbuf = umem_alloc(packsize, UMEM_NOFAIL);
3578 3588 bigbuf = umem_alloc(bigsize, UMEM_NOFAIL);
3579 3589
3580 3590 /*
3581 3591 * free_percent of the time, free a range of bigobj rather than
3582 3592 * overwriting it.
3583 3593 */
3584 3594 freeit = (ztest_random(100) < free_percent);
3585 3595
3586 3596 /*
3587 3597 * Read the current contents of our objects.
3588 3598 */
3589 3599 error = dmu_read(os, packobj, packoff, packsize, packbuf,
3590 3600 DMU_READ_PREFETCH);
3591 3601 ASSERT0(error);
3592 3602 error = dmu_read(os, bigobj, bigoff, bigsize, bigbuf,
3593 3603 DMU_READ_PREFETCH);
3594 3604 ASSERT0(error);
3595 3605
3596 3606 /*
3597 3607 * Get a tx for the mods to both packobj and bigobj.
3598 3608 */
3599 3609 tx = dmu_tx_create(os);
3600 3610
3601 3611 dmu_tx_hold_write(tx, packobj, packoff, packsize);
3602 3612
3603 3613 if (freeit)
3604 3614 dmu_tx_hold_free(tx, bigobj, bigoff, bigsize);
3605 3615 else
3606 3616 dmu_tx_hold_write(tx, bigobj, bigoff, bigsize);
3607 3617
3608 3618 /* This accounts for setting the checksum/compression. */
3609 3619 dmu_tx_hold_bonus(tx, bigobj);
3610 3620
3611 3621 txg = ztest_tx_assign(tx, TXG_MIGHTWAIT, FTAG);
3612 3622 if (txg == 0) {
3613 3623 umem_free(packbuf, packsize);
3614 3624 umem_free(bigbuf, bigsize);
3615 3625 return;
3616 3626 }
3617 3627
3618 3628 dmu_object_set_checksum(os, bigobj,
3619 3629 (enum zio_checksum)ztest_random_dsl_prop(ZFS_PROP_CHECKSUM), tx);
3620 3630
3621 3631 dmu_object_set_compress(os, bigobj,
3622 3632 (enum zio_compress)ztest_random_dsl_prop(ZFS_PROP_COMPRESSION), tx);
3623 3633
3624 3634 /*
3625 3635 * For each index from n to n + s, verify that the existing bufwad
3626 3636 * in packobj matches the bufwads at the head and tail of the
3627 3637 * corresponding chunk in bigobj. Then update all three bufwads
3628 3638 * with the new values we want to write out.
3629 3639 */
3630 3640 for (i = 0; i < s; i++) {
3631 3641 /* LINTED */
3632 3642 pack = (bufwad_t *)((char *)packbuf + i * sizeof (bufwad_t));
3633 3643 /* LINTED */
3634 3644 bigH = (bufwad_t *)((char *)bigbuf + i * chunksize);
3635 3645 /* LINTED */
3636 3646 bigT = (bufwad_t *)((char *)bigH + chunksize) - 1;
3637 3647
3638 3648 ASSERT((uintptr_t)bigH - (uintptr_t)bigbuf < bigsize);
3639 3649 ASSERT((uintptr_t)bigT - (uintptr_t)bigbuf < bigsize);
3640 3650
3641 3651 if (pack->bw_txg > txg)
3642 3652 fatal(0, "future leak: got %llx, open txg is %llx",
3643 3653 pack->bw_txg, txg);
3644 3654
3645 3655 if (pack->bw_data != 0 && pack->bw_index != n + i)
3646 3656 fatal(0, "wrong index: got %llx, wanted %llx+%llx",
3647 3657 pack->bw_index, n, i);
3648 3658
3649 3659 if (bcmp(pack, bigH, sizeof (bufwad_t)) != 0)
3650 3660 fatal(0, "pack/bigH mismatch in %p/%p", pack, bigH);
3651 3661
3652 3662 if (bcmp(pack, bigT, sizeof (bufwad_t)) != 0)
3653 3663 fatal(0, "pack/bigT mismatch in %p/%p", pack, bigT);
3654 3664
3655 3665 if (freeit) {
3656 3666 bzero(pack, sizeof (bufwad_t));
3657 3667 } else {
3658 3668 pack->bw_index = n + i;
3659 3669 pack->bw_txg = txg;
3660 3670 pack->bw_data = 1 + ztest_random(-2ULL);
3661 3671 }
3662 3672 *bigH = *pack;
3663 3673 *bigT = *pack;
3664 3674 }
3665 3675
3666 3676 /*
3667 3677 * We've verified all the old bufwads, and made new ones.
3668 3678 * Now write them out.
3669 3679 */
3670 3680 dmu_write(os, packobj, packoff, packsize, packbuf, tx);
3671 3681
3672 3682 if (freeit) {
3673 3683 if (ztest_opts.zo_verbose >= 7) {
3674 3684 (void) printf("freeing offset %llx size %llx"
3675 3685 " txg %llx\n",
3676 3686 (u_longlong_t)bigoff,
3677 3687 (u_longlong_t)bigsize,
3678 3688 (u_longlong_t)txg);
3679 3689 }
3680 3690 VERIFY(0 == dmu_free_range(os, bigobj, bigoff, bigsize, tx));
3681 3691 } else {
3682 3692 if (ztest_opts.zo_verbose >= 7) {
3683 3693 (void) printf("writing offset %llx size %llx"
3684 3694 " txg %llx\n",
3685 3695 (u_longlong_t)bigoff,
3686 3696 (u_longlong_t)bigsize,
3687 3697 (u_longlong_t)txg);
3688 3698 }
3689 3699 dmu_write(os, bigobj, bigoff, bigsize, bigbuf, tx);
3690 3700 }
3691 3701
3692 3702 dmu_tx_commit(tx);
3693 3703
3694 3704 /*
3695 3705 * Sanity check the stuff we just wrote.
3696 3706 */
3697 3707 {
3698 3708 void *packcheck = umem_alloc(packsize, UMEM_NOFAIL);
3699 3709 void *bigcheck = umem_alloc(bigsize, UMEM_NOFAIL);
3700 3710
3701 3711 VERIFY(0 == dmu_read(os, packobj, packoff,
3702 3712 packsize, packcheck, DMU_READ_PREFETCH));
3703 3713 VERIFY(0 == dmu_read(os, bigobj, bigoff,
3704 3714 bigsize, bigcheck, DMU_READ_PREFETCH));
3705 3715
3706 3716 ASSERT(bcmp(packbuf, packcheck, packsize) == 0);
3707 3717 ASSERT(bcmp(bigbuf, bigcheck, bigsize) == 0);
3708 3718
3709 3719 umem_free(packcheck, packsize);
3710 3720 umem_free(bigcheck, bigsize);
3711 3721 }
3712 3722
3713 3723 umem_free(packbuf, packsize);
3714 3724 umem_free(bigbuf, bigsize);
3715 3725 }
3716 3726
3717 3727 void
3718 3728 compare_and_update_pbbufs(uint64_t s, bufwad_t *packbuf, bufwad_t *bigbuf,
3719 3729 uint64_t bigsize, uint64_t n, uint64_t chunksize, uint64_t txg)
3720 3730 {
3721 3731 uint64_t i;
3722 3732 bufwad_t *pack;
3723 3733 bufwad_t *bigH;
3724 3734 bufwad_t *bigT;
3725 3735
3726 3736 /*
3727 3737 * For each index from n to n + s, verify that the existing bufwad
3728 3738 * in packobj matches the bufwads at the head and tail of the
3729 3739 * corresponding chunk in bigobj. Then update all three bufwads
3730 3740 * with the new values we want to write out.
3731 3741 */
3732 3742 for (i = 0; i < s; i++) {
3733 3743 /* LINTED */
3734 3744 pack = (bufwad_t *)((char *)packbuf + i * sizeof (bufwad_t));
3735 3745 /* LINTED */
3736 3746 bigH = (bufwad_t *)((char *)bigbuf + i * chunksize);
3737 3747 /* LINTED */
3738 3748 bigT = (bufwad_t *)((char *)bigH + chunksize) - 1;
3739 3749
3740 3750 ASSERT((uintptr_t)bigH - (uintptr_t)bigbuf < bigsize);
3741 3751 ASSERT((uintptr_t)bigT - (uintptr_t)bigbuf < bigsize);
3742 3752
3743 3753 if (pack->bw_txg > txg)
3744 3754 fatal(0, "future leak: got %llx, open txg is %llx",
3745 3755 pack->bw_txg, txg);
3746 3756
3747 3757 if (pack->bw_data != 0 && pack->bw_index != n + i)
3748 3758 fatal(0, "wrong index: got %llx, wanted %llx+%llx",
3749 3759 pack->bw_index, n, i);
3750 3760
3751 3761 if (bcmp(pack, bigH, sizeof (bufwad_t)) != 0)
3752 3762 fatal(0, "pack/bigH mismatch in %p/%p", pack, bigH);
3753 3763
3754 3764 if (bcmp(pack, bigT, sizeof (bufwad_t)) != 0)
3755 3765 fatal(0, "pack/bigT mismatch in %p/%p", pack, bigT);
3756 3766
3757 3767 pack->bw_index = n + i;
3758 3768 pack->bw_txg = txg;
3759 3769 pack->bw_data = 1 + ztest_random(-2ULL);
3760 3770
3761 3771 *bigH = *pack;
3762 3772 *bigT = *pack;
3763 3773 }
3764 3774 }
3765 3775
3766 3776 void
3767 3777 ztest_dmu_read_write_zcopy(ztest_ds_t *zd, uint64_t id)
3768 3778 {
3769 3779 objset_t *os = zd->zd_os;
3770 3780 ztest_od_t od[2];
3771 3781 dmu_tx_t *tx;
3772 3782 uint64_t i;
3773 3783 int error;
3774 3784 uint64_t n, s, txg;
3775 3785 bufwad_t *packbuf, *bigbuf;
3776 3786 uint64_t packobj, packoff, packsize, bigobj, bigoff, bigsize;
3777 3787 uint64_t blocksize = ztest_random_blocksize();
3778 3788 uint64_t chunksize = blocksize;
3779 3789 uint64_t regions = 997;
3780 3790 uint64_t stride = 123456789ULL;
3781 3791 uint64_t width = 9;
3782 3792 dmu_buf_t *bonus_db;
3783 3793 arc_buf_t **bigbuf_arcbufs;
3784 3794 dmu_object_info_t doi;
3785 3795
3786 3796 /*
3787 3797 * This test uses two objects, packobj and bigobj, that are always
3788 3798 * updated together (i.e. in the same tx) so that their contents are
3789 3799 * in sync and can be compared. Their contents relate to each other
3790 3800 * in a simple way: packobj is a dense array of 'bufwad' structures,
3791 3801 * while bigobj is a sparse array of the same bufwads. Specifically,
3792 3802 * for any index n, there are three bufwads that should be identical:
3793 3803 *
3794 3804 * packobj, at offset n * sizeof (bufwad_t)
3795 3805 * bigobj, at the head of the nth chunk
3796 3806 * bigobj, at the tail of the nth chunk
3797 3807 *
3798 3808 * The chunk size is set equal to bigobj block size so that
3799 3809 * dmu_assign_arcbuf() can be tested for object updates.
3800 3810 */
3801 3811
3802 3812 /*
3803 3813 * Read the directory info. If it's the first time, set things up.
3804 3814 */
3805 3815 ztest_od_init(&od[0], id, FTAG, 0, DMU_OT_UINT64_OTHER, blocksize, 0);
3806 3816 ztest_od_init(&od[1], id, FTAG, 1, DMU_OT_UINT64_OTHER, 0, chunksize);
3807 3817
3808 3818 if (ztest_object_init(zd, od, sizeof (od), B_FALSE) != 0)
3809 3819 return;
3810 3820
3811 3821 bigobj = od[0].od_object;
3812 3822 packobj = od[1].od_object;
3813 3823 blocksize = od[0].od_blocksize;
3814 3824 chunksize = blocksize;
3815 3825 ASSERT(chunksize == od[1].od_gen);
3816 3826
3817 3827 VERIFY(dmu_object_info(os, bigobj, &doi) == 0);
3818 3828 VERIFY(ISP2(doi.doi_data_block_size));
3819 3829 VERIFY(chunksize == doi.doi_data_block_size);
3820 3830 VERIFY(chunksize >= 2 * sizeof (bufwad_t));
3821 3831
3822 3832 /*
3823 3833 * Pick a random index and compute the offsets into packobj and bigobj.
3824 3834 */
3825 3835 n = ztest_random(regions) * stride + ztest_random(width);
3826 3836 s = 1 + ztest_random(width - 1);
3827 3837
3828 3838 packoff = n * sizeof (bufwad_t);
3829 3839 packsize = s * sizeof (bufwad_t);
3830 3840
3831 3841 bigoff = n * chunksize;
3832 3842 bigsize = s * chunksize;
3833 3843
3834 3844 packbuf = umem_zalloc(packsize, UMEM_NOFAIL);
3835 3845 bigbuf = umem_zalloc(bigsize, UMEM_NOFAIL);
3836 3846
3837 3847 VERIFY3U(0, ==, dmu_bonus_hold(os, bigobj, FTAG, &bonus_db));
3838 3848
3839 3849 bigbuf_arcbufs = umem_zalloc(2 * s * sizeof (arc_buf_t *), UMEM_NOFAIL);
3840 3850
3841 3851 /*
3842 3852 * Iteration 0 test zcopy for DB_UNCACHED dbufs.
3843 3853 * Iteration 1 test zcopy to already referenced dbufs.
3844 3854 * Iteration 2 test zcopy to dirty dbuf in the same txg.
3845 3855 * Iteration 3 test zcopy to dbuf dirty in previous txg.
3846 3856 * Iteration 4 test zcopy when dbuf is no longer dirty.
3847 3857 * Iteration 5 test zcopy when it can't be done.
3848 3858 * Iteration 6 one more zcopy write.
3849 3859 */
3850 3860 for (i = 0; i < 7; i++) {
3851 3861 uint64_t j;
3852 3862 uint64_t off;
3853 3863
3854 3864 /*
3855 3865 * In iteration 5 (i == 5) use arcbufs
3856 3866 * that don't match bigobj blksz to test
3857 3867 * dmu_assign_arcbuf() when it can't directly
3858 3868 * assign an arcbuf to a dbuf.
3859 3869 */
3860 3870 for (j = 0; j < s; j++) {
3861 3871 if (i != 5) {
3862 3872 bigbuf_arcbufs[j] =
3863 3873 dmu_request_arcbuf(bonus_db, chunksize);
3864 3874 } else {
3865 3875 bigbuf_arcbufs[2 * j] =
3866 3876 dmu_request_arcbuf(bonus_db, chunksize / 2);
3867 3877 bigbuf_arcbufs[2 * j + 1] =
3868 3878 dmu_request_arcbuf(bonus_db, chunksize / 2);
3869 3879 }
3870 3880 }
3871 3881
3872 3882 /*
3873 3883 * Get a tx for the mods to both packobj and bigobj.
3874 3884 */
3875 3885 tx = dmu_tx_create(os);
3876 3886
3877 3887 dmu_tx_hold_write(tx, packobj, packoff, packsize);
3878 3888 dmu_tx_hold_write(tx, bigobj, bigoff, bigsize);
3879 3889
3880 3890 txg = ztest_tx_assign(tx, TXG_MIGHTWAIT, FTAG);
3881 3891 if (txg == 0) {
3882 3892 umem_free(packbuf, packsize);
3883 3893 umem_free(bigbuf, bigsize);
3884 3894 for (j = 0; j < s; j++) {
3885 3895 if (i != 5) {
3886 3896 dmu_return_arcbuf(bigbuf_arcbufs[j]);
3887 3897 } else {
3888 3898 dmu_return_arcbuf(
3889 3899 bigbuf_arcbufs[2 * j]);
3890 3900 dmu_return_arcbuf(
3891 3901 bigbuf_arcbufs[2 * j + 1]);
3892 3902 }
3893 3903 }
3894 3904 umem_free(bigbuf_arcbufs, 2 * s * sizeof (arc_buf_t *));
3895 3905 dmu_buf_rele(bonus_db, FTAG);
3896 3906 return;
3897 3907 }
3898 3908
3899 3909 /*
3900 3910 * 50% of the time don't read objects in the 1st iteration to
3901 3911 * test dmu_assign_arcbuf() for the case when there're no
3902 3912 * existing dbufs for the specified offsets.
3903 3913 */
3904 3914 if (i != 0 || ztest_random(2) != 0) {
3905 3915 error = dmu_read(os, packobj, packoff,
3906 3916 packsize, packbuf, DMU_READ_PREFETCH);
3907 3917 ASSERT0(error);
3908 3918 error = dmu_read(os, bigobj, bigoff, bigsize,
3909 3919 bigbuf, DMU_READ_PREFETCH);
3910 3920 ASSERT0(error);
3911 3921 }
3912 3922 compare_and_update_pbbufs(s, packbuf, bigbuf, bigsize,
3913 3923 n, chunksize, txg);
3914 3924
3915 3925 /*
3916 3926 * We've verified all the old bufwads, and made new ones.
3917 3927 * Now write them out.
3918 3928 */
3919 3929 dmu_write(os, packobj, packoff, packsize, packbuf, tx);
3920 3930 if (ztest_opts.zo_verbose >= 7) {
3921 3931 (void) printf("writing offset %llx size %llx"
3922 3932 " txg %llx\n",
3923 3933 (u_longlong_t)bigoff,
3924 3934 (u_longlong_t)bigsize,
3925 3935 (u_longlong_t)txg);
3926 3936 }
3927 3937 for (off = bigoff, j = 0; j < s; j++, off += chunksize) {
3928 3938 dmu_buf_t *dbt;
3929 3939 if (i != 5) {
3930 3940 bcopy((caddr_t)bigbuf + (off - bigoff),
3931 3941 bigbuf_arcbufs[j]->b_data, chunksize);
3932 3942 } else {
3933 3943 bcopy((caddr_t)bigbuf + (off - bigoff),
3934 3944 bigbuf_arcbufs[2 * j]->b_data,
3935 3945 chunksize / 2);
3936 3946 bcopy((caddr_t)bigbuf + (off - bigoff) +
3937 3947 chunksize / 2,
3938 3948 bigbuf_arcbufs[2 * j + 1]->b_data,
3939 3949 chunksize / 2);
3940 3950 }
3941 3951
3942 3952 if (i == 1) {
3943 3953 VERIFY(dmu_buf_hold(os, bigobj, off,
3944 3954 FTAG, &dbt, DMU_READ_NO_PREFETCH) == 0);
3945 3955 }
3946 3956 if (i != 5) {
3947 3957 dmu_assign_arcbuf(bonus_db, off,
3948 3958 bigbuf_arcbufs[j], tx);
3949 3959 } else {
3950 3960 dmu_assign_arcbuf(bonus_db, off,
3951 3961 bigbuf_arcbufs[2 * j], tx);
3952 3962 dmu_assign_arcbuf(bonus_db,
3953 3963 off + chunksize / 2,
3954 3964 bigbuf_arcbufs[2 * j + 1], tx);
3955 3965 }
3956 3966 if (i == 1) {
3957 3967 dmu_buf_rele(dbt, FTAG);
3958 3968 }
3959 3969 }
3960 3970 dmu_tx_commit(tx);
3961 3971
3962 3972 /*
3963 3973 * Sanity check the stuff we just wrote.
3964 3974 */
3965 3975 {
3966 3976 void *packcheck = umem_alloc(packsize, UMEM_NOFAIL);
3967 3977 void *bigcheck = umem_alloc(bigsize, UMEM_NOFAIL);
3968 3978
3969 3979 VERIFY(0 == dmu_read(os, packobj, packoff,
3970 3980 packsize, packcheck, DMU_READ_PREFETCH));
3971 3981 VERIFY(0 == dmu_read(os, bigobj, bigoff,
3972 3982 bigsize, bigcheck, DMU_READ_PREFETCH));
3973 3983
3974 3984 ASSERT(bcmp(packbuf, packcheck, packsize) == 0);
3975 3985 ASSERT(bcmp(bigbuf, bigcheck, bigsize) == 0);
3976 3986
3977 3987 umem_free(packcheck, packsize);
3978 3988 umem_free(bigcheck, bigsize);
3979 3989 }
3980 3990 if (i == 2) {
3981 3991 txg_wait_open(dmu_objset_pool(os), 0);
3982 3992 } else if (i == 3) {
3983 3993 txg_wait_synced(dmu_objset_pool(os), 0);
3984 3994 }
3985 3995 }
3986 3996
3987 3997 dmu_buf_rele(bonus_db, FTAG);
3988 3998 umem_free(packbuf, packsize);
3989 3999 umem_free(bigbuf, bigsize);
3990 4000 umem_free(bigbuf_arcbufs, 2 * s * sizeof (arc_buf_t *));
3991 4001 }
3992 4002
3993 4003 /* ARGSUSED */
3994 4004 void
3995 4005 ztest_dmu_write_parallel(ztest_ds_t *zd, uint64_t id)
3996 4006 {
3997 4007 ztest_od_t od[1];
3998 4008 uint64_t offset = (1ULL << (ztest_random(20) + 43)) +
3999 4009 (ztest_random(ZTEST_RANGE_LOCKS) << SPA_MAXBLOCKSHIFT);
4000 4010
4001 4011 /*
4002 4012 * Have multiple threads write to large offsets in an object
4003 4013 * to verify that parallel writes to an object -- even to the
4004 4014 * same blocks within the object -- doesn't cause any trouble.
4005 4015 */
4006 4016 ztest_od_init(&od[0], ID_PARALLEL, FTAG, 0, DMU_OT_UINT64_OTHER, 0, 0);
4007 4017
4008 4018 if (ztest_object_init(zd, od, sizeof (od), B_FALSE) != 0)
4009 4019 return;
4010 4020
4011 4021 while (ztest_random(10) != 0)
4012 4022 ztest_io(zd, od[0].od_object, offset);
4013 4023 }
4014 4024
4015 4025 void
4016 4026 ztest_dmu_prealloc(ztest_ds_t *zd, uint64_t id)
4017 4027 {
4018 4028 ztest_od_t od[1];
4019 4029 uint64_t offset = (1ULL << (ztest_random(4) + SPA_MAXBLOCKSHIFT)) +
4020 4030 (ztest_random(ZTEST_RANGE_LOCKS) << SPA_MAXBLOCKSHIFT);
4021 4031 uint64_t count = ztest_random(20) + 1;
4022 4032 uint64_t blocksize = ztest_random_blocksize();
4023 4033 void *data;
4024 4034
4025 4035 ztest_od_init(&od[0], id, FTAG, 0, DMU_OT_UINT64_OTHER, blocksize, 0);
4026 4036
4027 4037 if (ztest_object_init(zd, od, sizeof (od), !ztest_random(2)) != 0)
4028 4038 return;
4029 4039
4030 4040 if (ztest_truncate(zd, od[0].od_object, offset, count * blocksize) != 0)
4031 4041 return;
4032 4042
4033 4043 ztest_prealloc(zd, od[0].od_object, offset, count * blocksize);
4034 4044
4035 4045 data = umem_zalloc(blocksize, UMEM_NOFAIL);
4036 4046
4037 4047 while (ztest_random(count) != 0) {
4038 4048 uint64_t randoff = offset + (ztest_random(count) * blocksize);
4039 4049 if (ztest_write(zd, od[0].od_object, randoff, blocksize,
4040 4050 data) != 0)
4041 4051 break;
4042 4052 while (ztest_random(4) != 0)
4043 4053 ztest_io(zd, od[0].od_object, randoff);
4044 4054 }
4045 4055
4046 4056 umem_free(data, blocksize);
4047 4057 }
4048 4058
4049 4059 /*
4050 4060 * Verify that zap_{create,destroy,add,remove,update} work as expected.
4051 4061 */
4052 4062 #define ZTEST_ZAP_MIN_INTS 1
4053 4063 #define ZTEST_ZAP_MAX_INTS 4
4054 4064 #define ZTEST_ZAP_MAX_PROPS 1000
4055 4065
4056 4066 void
4057 4067 ztest_zap(ztest_ds_t *zd, uint64_t id)
4058 4068 {
4059 4069 objset_t *os = zd->zd_os;
4060 4070 ztest_od_t od[1];
4061 4071 uint64_t object;
4062 4072 uint64_t txg, last_txg;
4063 4073 uint64_t value[ZTEST_ZAP_MAX_INTS];
4064 4074 uint64_t zl_ints, zl_intsize, prop;
4065 4075 int i, ints;
4066 4076 dmu_tx_t *tx;
4067 4077 char propname[100], txgname[100];
4068 4078 int error;
4069 4079 char *hc[2] = { "s.acl.h", ".s.open.h.hyLZlg" };
4070 4080
4071 4081 ztest_od_init(&od[0], id, FTAG, 0, DMU_OT_ZAP_OTHER, 0, 0);
4072 4082
4073 4083 if (ztest_object_init(zd, od, sizeof (od), !ztest_random(2)) != 0)
4074 4084 return;
4075 4085
4076 4086 object = od[0].od_object;
4077 4087
4078 4088 /*
4079 4089 * Generate a known hash collision, and verify that
4080 4090 * we can lookup and remove both entries.
4081 4091 */
4082 4092 tx = dmu_tx_create(os);
4083 4093 dmu_tx_hold_zap(tx, object, B_TRUE, NULL);
4084 4094 txg = ztest_tx_assign(tx, TXG_MIGHTWAIT, FTAG);
4085 4095 if (txg == 0)
4086 4096 return;
4087 4097 for (i = 0; i < 2; i++) {
4088 4098 value[i] = i;
4089 4099 VERIFY3U(0, ==, zap_add(os, object, hc[i], sizeof (uint64_t),
4090 4100 1, &value[i], tx));
4091 4101 }
4092 4102 for (i = 0; i < 2; i++) {
4093 4103 VERIFY3U(EEXIST, ==, zap_add(os, object, hc[i],
4094 4104 sizeof (uint64_t), 1, &value[i], tx));
4095 4105 VERIFY3U(0, ==,
4096 4106 zap_length(os, object, hc[i], &zl_intsize, &zl_ints));
4097 4107 ASSERT3U(zl_intsize, ==, sizeof (uint64_t));
4098 4108 ASSERT3U(zl_ints, ==, 1);
4099 4109 }
4100 4110 for (i = 0; i < 2; i++) {
4101 4111 VERIFY3U(0, ==, zap_remove(os, object, hc[i], tx));
4102 4112 }
4103 4113 dmu_tx_commit(tx);
4104 4114
4105 4115 /*
4106 4116 * Generate a buch of random entries.
4107 4117 */
4108 4118 ints = MAX(ZTEST_ZAP_MIN_INTS, object % ZTEST_ZAP_MAX_INTS);
4109 4119
4110 4120 prop = ztest_random(ZTEST_ZAP_MAX_PROPS);
4111 4121 (void) sprintf(propname, "prop_%llu", (u_longlong_t)prop);
4112 4122 (void) sprintf(txgname, "txg_%llu", (u_longlong_t)prop);
4113 4123 bzero(value, sizeof (value));
4114 4124 last_txg = 0;
4115 4125
4116 4126 /*
4117 4127 * If these zap entries already exist, validate their contents.
4118 4128 */
4119 4129 error = zap_length(os, object, txgname, &zl_intsize, &zl_ints);
4120 4130 if (error == 0) {
4121 4131 ASSERT3U(zl_intsize, ==, sizeof (uint64_t));
4122 4132 ASSERT3U(zl_ints, ==, 1);
4123 4133
4124 4134 VERIFY(zap_lookup(os, object, txgname, zl_intsize,
4125 4135 zl_ints, &last_txg) == 0);
4126 4136
4127 4137 VERIFY(zap_length(os, object, propname, &zl_intsize,
4128 4138 &zl_ints) == 0);
4129 4139
4130 4140 ASSERT3U(zl_intsize, ==, sizeof (uint64_t));
4131 4141 ASSERT3U(zl_ints, ==, ints);
4132 4142
4133 4143 VERIFY(zap_lookup(os, object, propname, zl_intsize,
4134 4144 zl_ints, value) == 0);
4135 4145
4136 4146 for (i = 0; i < ints; i++) {
4137 4147 ASSERT3U(value[i], ==, last_txg + object + i);
4138 4148 }
4139 4149 } else {
4140 4150 ASSERT3U(error, ==, ENOENT);
4141 4151 }
4142 4152
4143 4153 /*
4144 4154 * Atomically update two entries in our zap object.
4145 4155 * The first is named txg_%llu, and contains the txg
4146 4156 * in which the property was last updated. The second
4147 4157 * is named prop_%llu, and the nth element of its value
4148 4158 * should be txg + object + n.
4149 4159 */
4150 4160 tx = dmu_tx_create(os);
4151 4161 dmu_tx_hold_zap(tx, object, B_TRUE, NULL);
4152 4162 txg = ztest_tx_assign(tx, TXG_MIGHTWAIT, FTAG);
4153 4163 if (txg == 0)
4154 4164 return;
4155 4165
4156 4166 if (last_txg > txg)
4157 4167 fatal(0, "zap future leak: old %llu new %llu", last_txg, txg);
4158 4168
4159 4169 for (i = 0; i < ints; i++)
4160 4170 value[i] = txg + object + i;
4161 4171
4162 4172 VERIFY3U(0, ==, zap_update(os, object, txgname, sizeof (uint64_t),
4163 4173 1, &txg, tx));
4164 4174 VERIFY3U(0, ==, zap_update(os, object, propname, sizeof (uint64_t),
4165 4175 ints, value, tx));
4166 4176
4167 4177 dmu_tx_commit(tx);
4168 4178
4169 4179 /*
4170 4180 * Remove a random pair of entries.
4171 4181 */
4172 4182 prop = ztest_random(ZTEST_ZAP_MAX_PROPS);
4173 4183 (void) sprintf(propname, "prop_%llu", (u_longlong_t)prop);
4174 4184 (void) sprintf(txgname, "txg_%llu", (u_longlong_t)prop);
4175 4185
4176 4186 error = zap_length(os, object, txgname, &zl_intsize, &zl_ints);
4177 4187
4178 4188 if (error == ENOENT)
4179 4189 return;
4180 4190
4181 4191 ASSERT0(error);
4182 4192
4183 4193 tx = dmu_tx_create(os);
4184 4194 dmu_tx_hold_zap(tx, object, B_TRUE, NULL);
4185 4195 txg = ztest_tx_assign(tx, TXG_MIGHTWAIT, FTAG);
4186 4196 if (txg == 0)
4187 4197 return;
4188 4198 VERIFY3U(0, ==, zap_remove(os, object, txgname, tx));
4189 4199 VERIFY3U(0, ==, zap_remove(os, object, propname, tx));
4190 4200 dmu_tx_commit(tx);
4191 4201 }
4192 4202
4193 4203 /*
4194 4204 * Testcase to test the upgrading of a microzap to fatzap.
4195 4205 */
4196 4206 void
4197 4207 ztest_fzap(ztest_ds_t *zd, uint64_t id)
4198 4208 {
4199 4209 objset_t *os = zd->zd_os;
4200 4210 ztest_od_t od[1];
4201 4211 uint64_t object, txg;
4202 4212
4203 4213 ztest_od_init(&od[0], id, FTAG, 0, DMU_OT_ZAP_OTHER, 0, 0);
4204 4214
4205 4215 if (ztest_object_init(zd, od, sizeof (od), !ztest_random(2)) != 0)
4206 4216 return;
4207 4217
4208 4218 object = od[0].od_object;
4209 4219
4210 4220 /*
4211 4221 * Add entries to this ZAP and make sure it spills over
4212 4222 * and gets upgraded to a fatzap. Also, since we are adding
4213 4223 * 2050 entries we should see ptrtbl growth and leaf-block split.
4214 4224 */
4215 4225 for (int i = 0; i < 2050; i++) {
4216 4226 char name[MAXNAMELEN];
4217 4227 uint64_t value = i;
4218 4228 dmu_tx_t *tx;
4219 4229 int error;
4220 4230
4221 4231 (void) snprintf(name, sizeof (name), "fzap-%llu-%llu",
4222 4232 id, value);
4223 4233
4224 4234 tx = dmu_tx_create(os);
4225 4235 dmu_tx_hold_zap(tx, object, B_TRUE, name);
4226 4236 txg = ztest_tx_assign(tx, TXG_MIGHTWAIT, FTAG);
4227 4237 if (txg == 0)
4228 4238 return;
4229 4239 error = zap_add(os, object, name, sizeof (uint64_t), 1,
4230 4240 &value, tx);
4231 4241 ASSERT(error == 0 || error == EEXIST);
4232 4242 dmu_tx_commit(tx);
4233 4243 }
4234 4244 }
4235 4245
4236 4246 /* ARGSUSED */
4237 4247 void
4238 4248 ztest_zap_parallel(ztest_ds_t *zd, uint64_t id)
4239 4249 {
4240 4250 objset_t *os = zd->zd_os;
4241 4251 ztest_od_t od[1];
4242 4252 uint64_t txg, object, count, wsize, wc, zl_wsize, zl_wc;
4243 4253 dmu_tx_t *tx;
4244 4254 int i, namelen, error;
4245 4255 int micro = ztest_random(2);
4246 4256 char name[20], string_value[20];
4247 4257 void *data;
4248 4258
4249 4259 ztest_od_init(&od[0], ID_PARALLEL, FTAG, micro, DMU_OT_ZAP_OTHER, 0, 0);
4250 4260
4251 4261 if (ztest_object_init(zd, od, sizeof (od), B_FALSE) != 0)
4252 4262 return;
4253 4263
4254 4264 object = od[0].od_object;
4255 4265
4256 4266 /*
4257 4267 * Generate a random name of the form 'xxx.....' where each
4258 4268 * x is a random printable character and the dots are dots.
4259 4269 * There are 94 such characters, and the name length goes from
4260 4270 * 6 to 20, so there are 94^3 * 15 = 12,458,760 possible names.
4261 4271 */
4262 4272 namelen = ztest_random(sizeof (name) - 5) + 5 + 1;
4263 4273
4264 4274 for (i = 0; i < 3; i++)
4265 4275 name[i] = '!' + ztest_random('~' - '!' + 1);
4266 4276 for (; i < namelen - 1; i++)
4267 4277 name[i] = '.';
4268 4278 name[i] = '\0';
4269 4279
4270 4280 if ((namelen & 1) || micro) {
4271 4281 wsize = sizeof (txg);
4272 4282 wc = 1;
4273 4283 data = &txg;
4274 4284 } else {
4275 4285 wsize = 1;
4276 4286 wc = namelen;
4277 4287 data = string_value;
4278 4288 }
4279 4289
4280 4290 count = -1ULL;
4281 4291 VERIFY0(zap_count(os, object, &count));
4282 4292 ASSERT(count != -1ULL);
4283 4293
4284 4294 /*
4285 4295 * Select an operation: length, lookup, add, update, remove.
4286 4296 */
4287 4297 i = ztest_random(5);
4288 4298
4289 4299 if (i >= 2) {
4290 4300 tx = dmu_tx_create(os);
4291 4301 dmu_tx_hold_zap(tx, object, B_TRUE, NULL);
4292 4302 txg = ztest_tx_assign(tx, TXG_MIGHTWAIT, FTAG);
4293 4303 if (txg == 0)
4294 4304 return;
4295 4305 bcopy(name, string_value, namelen);
4296 4306 } else {
4297 4307 tx = NULL;
4298 4308 txg = 0;
4299 4309 bzero(string_value, namelen);
4300 4310 }
4301 4311
4302 4312 switch (i) {
4303 4313
4304 4314 case 0:
4305 4315 error = zap_length(os, object, name, &zl_wsize, &zl_wc);
4306 4316 if (error == 0) {
4307 4317 ASSERT3U(wsize, ==, zl_wsize);
4308 4318 ASSERT3U(wc, ==, zl_wc);
4309 4319 } else {
4310 4320 ASSERT3U(error, ==, ENOENT);
4311 4321 }
4312 4322 break;
4313 4323
4314 4324 case 1:
4315 4325 error = zap_lookup(os, object, name, wsize, wc, data);
4316 4326 if (error == 0) {
4317 4327 if (data == string_value &&
4318 4328 bcmp(name, data, namelen) != 0)
4319 4329 fatal(0, "name '%s' != val '%s' len %d",
4320 4330 name, data, namelen);
4321 4331 } else {
4322 4332 ASSERT3U(error, ==, ENOENT);
4323 4333 }
4324 4334 break;
4325 4335
4326 4336 case 2:
4327 4337 error = zap_add(os, object, name, wsize, wc, data, tx);
4328 4338 ASSERT(error == 0 || error == EEXIST);
4329 4339 break;
4330 4340
4331 4341 case 3:
4332 4342 VERIFY(zap_update(os, object, name, wsize, wc, data, tx) == 0);
4333 4343 break;
4334 4344
4335 4345 case 4:
4336 4346 error = zap_remove(os, object, name, tx);
4337 4347 ASSERT(error == 0 || error == ENOENT);
4338 4348 break;
4339 4349 }
4340 4350
4341 4351 if (tx != NULL)
4342 4352 dmu_tx_commit(tx);
4343 4353 }
4344 4354
4345 4355 /*
4346 4356 * Commit callback data.
4347 4357 */
4348 4358 typedef struct ztest_cb_data {
4349 4359 list_node_t zcd_node;
4350 4360 uint64_t zcd_txg;
4351 4361 int zcd_expected_err;
4352 4362 boolean_t zcd_added;
4353 4363 boolean_t zcd_called;
4354 4364 spa_t *zcd_spa;
4355 4365 } ztest_cb_data_t;
4356 4366
4357 4367 /* This is the actual commit callback function */
4358 4368 static void
4359 4369 ztest_commit_callback(void *arg, int error)
4360 4370 {
4361 4371 ztest_cb_data_t *data = arg;
4362 4372 uint64_t synced_txg;
4363 4373
4364 4374 VERIFY(data != NULL);
4365 4375 VERIFY3S(data->zcd_expected_err, ==, error);
4366 4376 VERIFY(!data->zcd_called);
4367 4377
4368 4378 synced_txg = spa_last_synced_txg(data->zcd_spa);
4369 4379 if (data->zcd_txg > synced_txg)
4370 4380 fatal(0, "commit callback of txg %" PRIu64 " called prematurely"
4371 4381 ", last synced txg = %" PRIu64 "\n", data->zcd_txg,
4372 4382 synced_txg);
4373 4383
4374 4384 data->zcd_called = B_TRUE;
4375 4385
4376 4386 if (error == ECANCELED) {
4377 4387 ASSERT0(data->zcd_txg);
4378 4388 ASSERT(!data->zcd_added);
4379 4389
4380 4390 /*
4381 4391 * The private callback data should be destroyed here, but
4382 4392 * since we are going to check the zcd_called field after
4383 4393 * dmu_tx_abort(), we will destroy it there.
4384 4394 */
4385 4395 return;
4386 4396 }
4387 4397
4388 4398 /* Was this callback added to the global callback list? */
4389 4399 if (!data->zcd_added)
4390 4400 goto out;
4391 4401
4392 4402 ASSERT3U(data->zcd_txg, !=, 0);
4393 4403
4394 4404 /* Remove our callback from the list */
4395 4405 (void) mutex_lock(&zcl.zcl_callbacks_lock);
4396 4406 list_remove(&zcl.zcl_callbacks, data);
4397 4407 (void) mutex_unlock(&zcl.zcl_callbacks_lock);
4398 4408
4399 4409 out:
4400 4410 umem_free(data, sizeof (ztest_cb_data_t));
4401 4411 }
4402 4412
4403 4413 /* Allocate and initialize callback data structure */
4404 4414 static ztest_cb_data_t *
4405 4415 ztest_create_cb_data(objset_t *os, uint64_t txg)
4406 4416 {
4407 4417 ztest_cb_data_t *cb_data;
4408 4418
4409 4419 cb_data = umem_zalloc(sizeof (ztest_cb_data_t), UMEM_NOFAIL);
4410 4420
4411 4421 cb_data->zcd_txg = txg;
4412 4422 cb_data->zcd_spa = dmu_objset_spa(os);
4413 4423
4414 4424 return (cb_data);
4415 4425 }
4416 4426
4417 4427 /*
4418 4428 * If a number of txgs equal to this threshold have been created after a commit
4419 4429 * callback has been registered but not called, then we assume there is an
4420 4430 * implementation bug.
4421 4431 */
4422 4432 #define ZTEST_COMMIT_CALLBACK_THRESH (TXG_CONCURRENT_STATES + 2)
4423 4433
4424 4434 /*
4425 4435 * Commit callback test.
4426 4436 */
4427 4437 void
4428 4438 ztest_dmu_commit_callbacks(ztest_ds_t *zd, uint64_t id)
4429 4439 {
4430 4440 objset_t *os = zd->zd_os;
4431 4441 ztest_od_t od[1];
4432 4442 dmu_tx_t *tx;
4433 4443 ztest_cb_data_t *cb_data[3], *tmp_cb;
4434 4444 uint64_t old_txg, txg;
4435 4445 int i, error;
4436 4446
4437 4447 ztest_od_init(&od[0], id, FTAG, 0, DMU_OT_UINT64_OTHER, 0, 0);
4438 4448
4439 4449 if (ztest_object_init(zd, od, sizeof (od), B_FALSE) != 0)
4440 4450 return;
4441 4451
4442 4452 tx = dmu_tx_create(os);
4443 4453
4444 4454 cb_data[0] = ztest_create_cb_data(os, 0);
4445 4455 dmu_tx_callback_register(tx, ztest_commit_callback, cb_data[0]);
4446 4456
4447 4457 dmu_tx_hold_write(tx, od[0].od_object, 0, sizeof (uint64_t));
4448 4458
4449 4459 /* Every once in a while, abort the transaction on purpose */
4450 4460 if (ztest_random(100) == 0)
4451 4461 error = -1;
4452 4462
4453 4463 if (!error)
4454 4464 error = dmu_tx_assign(tx, TXG_NOWAIT);
4455 4465
4456 4466 txg = error ? 0 : dmu_tx_get_txg(tx);
4457 4467
4458 4468 cb_data[0]->zcd_txg = txg;
4459 4469 cb_data[1] = ztest_create_cb_data(os, txg);
4460 4470 dmu_tx_callback_register(tx, ztest_commit_callback, cb_data[1]);
4461 4471
4462 4472 if (error) {
4463 4473 /*
4464 4474 * It's not a strict requirement to call the registered
4465 4475 * callbacks from inside dmu_tx_abort(), but that's what
4466 4476 * it's supposed to happen in the current implementation
4467 4477 * so we will check for that.
4468 4478 */
4469 4479 for (i = 0; i < 2; i++) {
4470 4480 cb_data[i]->zcd_expected_err = ECANCELED;
4471 4481 VERIFY(!cb_data[i]->zcd_called);
4472 4482 }
4473 4483
4474 4484 dmu_tx_abort(tx);
4475 4485
4476 4486 for (i = 0; i < 2; i++) {
4477 4487 VERIFY(cb_data[i]->zcd_called);
4478 4488 umem_free(cb_data[i], sizeof (ztest_cb_data_t));
4479 4489 }
4480 4490
4481 4491 return;
4482 4492 }
4483 4493
4484 4494 cb_data[2] = ztest_create_cb_data(os, txg);
4485 4495 dmu_tx_callback_register(tx, ztest_commit_callback, cb_data[2]);
4486 4496
4487 4497 /*
4488 4498 * Read existing data to make sure there isn't a future leak.
4489 4499 */
4490 4500 VERIFY(0 == dmu_read(os, od[0].od_object, 0, sizeof (uint64_t),
4491 4501 &old_txg, DMU_READ_PREFETCH));
4492 4502
4493 4503 if (old_txg > txg)
4494 4504 fatal(0, "future leak: got %" PRIu64 ", open txg is %" PRIu64,
4495 4505 old_txg, txg);
4496 4506
4497 4507 dmu_write(os, od[0].od_object, 0, sizeof (uint64_t), &txg, tx);
4498 4508
4499 4509 (void) mutex_lock(&zcl.zcl_callbacks_lock);
4500 4510
4501 4511 /*
4502 4512 * Since commit callbacks don't have any ordering requirement and since
4503 4513 * it is theoretically possible for a commit callback to be called
4504 4514 * after an arbitrary amount of time has elapsed since its txg has been
4505 4515 * synced, it is difficult to reliably determine whether a commit
4506 4516 * callback hasn't been called due to high load or due to a flawed
4507 4517 * implementation.
4508 4518 *
4509 4519 * In practice, we will assume that if after a certain number of txgs a
4510 4520 * commit callback hasn't been called, then most likely there's an
4511 4521 * implementation bug..
4512 4522 */
4513 4523 tmp_cb = list_head(&zcl.zcl_callbacks);
4514 4524 if (tmp_cb != NULL &&
4515 4525 (txg - ZTEST_COMMIT_CALLBACK_THRESH) > tmp_cb->zcd_txg) {
4516 4526 fatal(0, "Commit callback threshold exceeded, oldest txg: %"
4517 4527 PRIu64 ", open txg: %" PRIu64 "\n", tmp_cb->zcd_txg, txg);
4518 4528 }
4519 4529
4520 4530 /*
4521 4531 * Let's find the place to insert our callbacks.
4522 4532 *
4523 4533 * Even though the list is ordered by txg, it is possible for the
4524 4534 * insertion point to not be the end because our txg may already be
4525 4535 * quiescing at this point and other callbacks in the open txg
4526 4536 * (from other objsets) may have sneaked in.
4527 4537 */
4528 4538 tmp_cb = list_tail(&zcl.zcl_callbacks);
4529 4539 while (tmp_cb != NULL && tmp_cb->zcd_txg > txg)
4530 4540 tmp_cb = list_prev(&zcl.zcl_callbacks, tmp_cb);
4531 4541
4532 4542 /* Add the 3 callbacks to the list */
4533 4543 for (i = 0; i < 3; i++) {
4534 4544 if (tmp_cb == NULL)
4535 4545 list_insert_head(&zcl.zcl_callbacks, cb_data[i]);
4536 4546 else
4537 4547 list_insert_after(&zcl.zcl_callbacks, tmp_cb,
4538 4548 cb_data[i]);
4539 4549
4540 4550 cb_data[i]->zcd_added = B_TRUE;
4541 4551 VERIFY(!cb_data[i]->zcd_called);
4542 4552
4543 4553 tmp_cb = cb_data[i];
4544 4554 }
4545 4555
4546 4556 (void) mutex_unlock(&zcl.zcl_callbacks_lock);
4547 4557
4548 4558 dmu_tx_commit(tx);
4549 4559 }
4550 4560
4551 4561 /* ARGSUSED */
4552 4562 void
4553 4563 ztest_dsl_prop_get_set(ztest_ds_t *zd, uint64_t id)
4554 4564 {
4555 4565 zfs_prop_t proplist[] = {
4556 4566 ZFS_PROP_CHECKSUM,
4557 4567 ZFS_PROP_COMPRESSION,
4558 4568 ZFS_PROP_COPIES,
4559 4569 ZFS_PROP_DEDUP
4560 4570 };
4561 4571
4562 4572 (void) rw_rdlock(&ztest_name_lock);
4563 4573
4564 4574 for (int p = 0; p < sizeof (proplist) / sizeof (proplist[0]); p++)
4565 4575 (void) ztest_dsl_prop_set_uint64(zd->zd_name, proplist[p],
4566 4576 ztest_random_dsl_prop(proplist[p]), (int)ztest_random(2));
4567 4577
4568 4578 (void) rw_unlock(&ztest_name_lock);
4569 4579 }
4570 4580
4571 4581 /* ARGSUSED */
4572 4582 void
4573 4583 ztest_spa_prop_get_set(ztest_ds_t *zd, uint64_t id)
4574 4584 {
4575 4585 nvlist_t *props = NULL;
4576 4586
4577 4587 (void) rw_rdlock(&ztest_name_lock);
4578 4588
4579 4589 (void) ztest_spa_prop_set_uint64(ZPOOL_PROP_DEDUPDITTO,
4580 4590 ZIO_DEDUPDITTO_MIN + ztest_random(ZIO_DEDUPDITTO_MIN));
4581 4591
4582 4592 VERIFY0(spa_prop_get(ztest_spa, &props));
4583 4593
4584 4594 if (ztest_opts.zo_verbose >= 6)
4585 4595 dump_nvlist(props, 4);
4586 4596
4587 4597 nvlist_free(props);
4588 4598
4589 4599 (void) rw_unlock(&ztest_name_lock);
4590 4600 }
4591 4601
4592 4602 static int
4593 4603 user_release_one(const char *snapname, const char *holdname)
4594 4604 {
4595 4605 nvlist_t *snaps, *holds;
4596 4606 int error;
4597 4607
4598 4608 snaps = fnvlist_alloc();
4599 4609 holds = fnvlist_alloc();
4600 4610 fnvlist_add_boolean(holds, holdname);
4601 4611 fnvlist_add_nvlist(snaps, snapname, holds);
4602 4612 fnvlist_free(holds);
4603 4613 error = dsl_dataset_user_release(snaps, NULL);
4604 4614 fnvlist_free(snaps);
4605 4615 return (error);
4606 4616 }
4607 4617
4608 4618 /*
4609 4619 * Test snapshot hold/release and deferred destroy.
4610 4620 */
4611 4621 void
4612 4622 ztest_dmu_snapshot_hold(ztest_ds_t *zd, uint64_t id)
4613 4623 {
4614 4624 int error;
4615 4625 objset_t *os = zd->zd_os;
4616 4626 objset_t *origin;
4617 4627 char snapname[100];
4618 4628 char fullname[100];
4619 4629 char clonename[100];
4620 4630 char tag[100];
4621 4631 char osname[MAXNAMELEN];
4622 4632 nvlist_t *holds;
4623 4633
4624 4634 (void) rw_rdlock(&ztest_name_lock);
4625 4635
4626 4636 dmu_objset_name(os, osname);
4627 4637
4628 4638 (void) snprintf(snapname, sizeof (snapname), "sh1_%llu", id);
4629 4639 (void) snprintf(fullname, sizeof (fullname), "%s@%s", osname, snapname);
4630 4640 (void) snprintf(clonename, sizeof (clonename),
4631 4641 "%s/ch1_%llu", osname, id);
4632 4642 (void) snprintf(tag, sizeof (tag), "tag_%llu", id);
4633 4643
4634 4644 /*
4635 4645 * Clean up from any previous run.
4636 4646 */
4637 4647 error = dsl_destroy_head(clonename);
4638 4648 if (error != ENOENT)
4639 4649 ASSERT0(error);
4640 4650 error = user_release_one(fullname, tag);
4641 4651 if (error != ESRCH && error != ENOENT)
4642 4652 ASSERT0(error);
4643 4653 error = dsl_destroy_snapshot(fullname, B_FALSE);
4644 4654 if (error != ENOENT)
4645 4655 ASSERT0(error);
4646 4656
4647 4657 /*
4648 4658 * Create snapshot, clone it, mark snap for deferred destroy,
4649 4659 * destroy clone, verify snap was also destroyed.
4650 4660 */
4651 4661 error = dmu_objset_snapshot_one(osname, snapname);
4652 4662 if (error) {
4653 4663 if (error == ENOSPC) {
4654 4664 ztest_record_enospc("dmu_objset_snapshot");
4655 4665 goto out;
4656 4666 }
4657 4667 fatal(0, "dmu_objset_snapshot(%s) = %d", fullname, error);
4658 4668 }
4659 4669
4660 4670 error = dmu_objset_clone(clonename, fullname);
4661 4671 if (error) {
4662 4672 if (error == ENOSPC) {
4663 4673 ztest_record_enospc("dmu_objset_clone");
4664 4674 goto out;
4665 4675 }
4666 4676 fatal(0, "dmu_objset_clone(%s) = %d", clonename, error);
4667 4677 }
4668 4678
4669 4679 error = dsl_destroy_snapshot(fullname, B_TRUE);
4670 4680 if (error) {
4671 4681 fatal(0, "dsl_destroy_snapshot(%s, B_TRUE) = %d",
4672 4682 fullname, error);
4673 4683 }
4674 4684
4675 4685 error = dsl_destroy_head(clonename);
4676 4686 if (error)
4677 4687 fatal(0, "dsl_destroy_head(%s) = %d", clonename, error);
4678 4688
4679 4689 error = dmu_objset_hold(fullname, FTAG, &origin);
4680 4690 if (error != ENOENT)
4681 4691 fatal(0, "dmu_objset_hold(%s) = %d", fullname, error);
4682 4692
4683 4693 /*
4684 4694 * Create snapshot, add temporary hold, verify that we can't
4685 4695 * destroy a held snapshot, mark for deferred destroy,
4686 4696 * release hold, verify snapshot was destroyed.
4687 4697 */
4688 4698 error = dmu_objset_snapshot_one(osname, snapname);
4689 4699 if (error) {
4690 4700 if (error == ENOSPC) {
4691 4701 ztest_record_enospc("dmu_objset_snapshot");
4692 4702 goto out;
4693 4703 }
4694 4704 fatal(0, "dmu_objset_snapshot(%s) = %d", fullname, error);
4695 4705 }
4696 4706
4697 4707 holds = fnvlist_alloc();
4698 4708 fnvlist_add_string(holds, fullname, tag);
4699 4709 error = dsl_dataset_user_hold(holds, 0, NULL);
4700 4710 fnvlist_free(holds);
4701 4711
4702 4712 if (error)
4703 4713 fatal(0, "dsl_dataset_user_hold(%s)", fullname, tag);
4704 4714
4705 4715 error = dsl_destroy_snapshot(fullname, B_FALSE);
4706 4716 if (error != EBUSY) {
4707 4717 fatal(0, "dsl_destroy_snapshot(%s, B_FALSE) = %d",
4708 4718 fullname, error);
4709 4719 }
4710 4720
4711 4721 error = dsl_destroy_snapshot(fullname, B_TRUE);
4712 4722 if (error) {
4713 4723 fatal(0, "dsl_destroy_snapshot(%s, B_TRUE) = %d",
4714 4724 fullname, error);
4715 4725 }
4716 4726
4717 4727 error = user_release_one(fullname, tag);
4718 4728 if (error)
4719 4729 fatal(0, "user_release_one(%s, %s) = %d", fullname, tag, error);
4720 4730
4721 4731 VERIFY3U(dmu_objset_hold(fullname, FTAG, &origin), ==, ENOENT);
4722 4732
4723 4733 out:
4724 4734 (void) rw_unlock(&ztest_name_lock);
4725 4735 }
4726 4736
4727 4737 /*
4728 4738 * Inject random faults into the on-disk data.
4729 4739 */
4730 4740 /* ARGSUSED */
4731 4741 void
4732 4742 ztest_fault_inject(ztest_ds_t *zd, uint64_t id)
4733 4743 {
4734 4744 ztest_shared_t *zs = ztest_shared;
4735 4745 spa_t *spa = ztest_spa;
4736 4746 int fd;
4737 4747 uint64_t offset;
4738 4748 uint64_t leaves;
4739 4749 uint64_t bad = 0x1990c0ffeedecade;
4740 4750 uint64_t top, leaf;
4741 4751 char path0[MAXPATHLEN];
4742 4752 char pathrand[MAXPATHLEN];
4743 4753 size_t fsize;
4744 4754 int bshift = SPA_MAXBLOCKSHIFT + 2; /* don't scrog all labels */
4745 4755 int iters = 1000;
4746 4756 int maxfaults;
4747 4757 int mirror_save;
4748 4758 vdev_t *vd0 = NULL;
4749 4759 uint64_t guid0 = 0;
4750 4760 boolean_t islog = B_FALSE;
4751 4761
4752 4762 VERIFY(mutex_lock(&ztest_vdev_lock) == 0);
4753 4763 maxfaults = MAXFAULTS();
4754 4764 leaves = MAX(zs->zs_mirrors, 1) * ztest_opts.zo_raidz;
4755 4765 mirror_save = zs->zs_mirrors;
4756 4766 VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
4757 4767
4758 4768 ASSERT(leaves >= 1);
4759 4769
4760 4770 /*
4761 4771 * Grab the name lock as reader. There are some operations
4762 4772 * which don't like to have their vdevs changed while
4763 4773 * they are in progress (i.e. spa_change_guid). Those
4764 4774 * operations will have grabbed the name lock as writer.
4765 4775 */
4766 4776 (void) rw_rdlock(&ztest_name_lock);
4767 4777
4768 4778 /*
4769 4779 * We need SCL_STATE here because we're going to look at vd0->vdev_tsd.
4770 4780 */
4771 4781 spa_config_enter(spa, SCL_STATE, FTAG, RW_READER);
4772 4782
4773 4783 if (ztest_random(2) == 0) {
4774 4784 /*
4775 4785 * Inject errors on a normal data device or slog device.
4776 4786 */
4777 4787 top = ztest_random_vdev_top(spa, B_TRUE);
4778 4788 leaf = ztest_random(leaves) + zs->zs_splits;
4779 4789
4780 4790 /*
4781 4791 * Generate paths to the first leaf in this top-level vdev,
4782 4792 * and to the random leaf we selected. We'll induce transient
4783 4793 * write failures and random online/offline activity on leaf 0,
4784 4794 * and we'll write random garbage to the randomly chosen leaf.
4785 4795 */
4786 4796 (void) snprintf(path0, sizeof (path0), ztest_dev_template,
4787 4797 ztest_opts.zo_dir, ztest_opts.zo_pool,
4788 4798 top * leaves + zs->zs_splits);
4789 4799 (void) snprintf(pathrand, sizeof (pathrand), ztest_dev_template,
4790 4800 ztest_opts.zo_dir, ztest_opts.zo_pool,
4791 4801 top * leaves + leaf);
4792 4802
4793 4803 vd0 = vdev_lookup_by_path(spa->spa_root_vdev, path0);
↓ open down ↓ |
1889 lines elided |
↑ open up ↑ |
4794 4804 if (vd0 != NULL && vd0->vdev_top->vdev_islog)
4795 4805 islog = B_TRUE;
4796 4806
4797 4807 /*
4798 4808 * If the top-level vdev needs to be resilvered
4799 4809 * then we only allow faults on the device that is
4800 4810 * resilvering.
4801 4811 */
4802 4812 if (vd0 != NULL && maxfaults != 1 &&
4803 4813 (!vdev_resilver_needed(vd0->vdev_top, NULL, NULL) ||
4804 - vd0->vdev_resilvering)) {
4814 + vd0->vdev_resilver_txg != 0)) {
4805 4815 /*
4806 4816 * Make vd0 explicitly claim to be unreadable,
4807 4817 * or unwriteable, or reach behind its back
4808 4818 * and close the underlying fd. We can do this if
4809 4819 * maxfaults == 0 because we'll fail and reexecute,
4810 4820 * and we can do it if maxfaults >= 2 because we'll
4811 4821 * have enough redundancy. If maxfaults == 1, the
4812 4822 * combination of this with injection of random data
4813 4823 * corruption below exceeds the pool's fault tolerance.
4814 4824 */
4815 4825 vdev_file_t *vf = vd0->vdev_tsd;
4816 4826
4817 4827 if (vf != NULL && ztest_random(3) == 0) {
4818 4828 (void) close(vf->vf_vnode->v_fd);
4819 4829 vf->vf_vnode->v_fd = -1;
4820 4830 } else if (ztest_random(2) == 0) {
4821 4831 vd0->vdev_cant_read = B_TRUE;
4822 4832 } else {
4823 4833 vd0->vdev_cant_write = B_TRUE;
4824 4834 }
4825 4835 guid0 = vd0->vdev_guid;
4826 4836 }
4827 4837 } else {
4828 4838 /*
4829 4839 * Inject errors on an l2cache device.
4830 4840 */
4831 4841 spa_aux_vdev_t *sav = &spa->spa_l2cache;
4832 4842
4833 4843 if (sav->sav_count == 0) {
4834 4844 spa_config_exit(spa, SCL_STATE, FTAG);
4835 4845 (void) rw_unlock(&ztest_name_lock);
4836 4846 return;
4837 4847 }
4838 4848 vd0 = sav->sav_vdevs[ztest_random(sav->sav_count)];
4839 4849 guid0 = vd0->vdev_guid;
4840 4850 (void) strcpy(path0, vd0->vdev_path);
4841 4851 (void) strcpy(pathrand, vd0->vdev_path);
4842 4852
4843 4853 leaf = 0;
4844 4854 leaves = 1;
4845 4855 maxfaults = INT_MAX; /* no limit on cache devices */
4846 4856 }
4847 4857
4848 4858 spa_config_exit(spa, SCL_STATE, FTAG);
4849 4859 (void) rw_unlock(&ztest_name_lock);
4850 4860
4851 4861 /*
4852 4862 * If we can tolerate two or more faults, or we're dealing
4853 4863 * with a slog, randomly online/offline vd0.
4854 4864 */
4855 4865 if ((maxfaults >= 2 || islog) && guid0 != 0) {
4856 4866 if (ztest_random(10) < 6) {
4857 4867 int flags = (ztest_random(2) == 0 ?
4858 4868 ZFS_OFFLINE_TEMPORARY : 0);
4859 4869
4860 4870 /*
4861 4871 * We have to grab the zs_name_lock as writer to
4862 4872 * prevent a race between offlining a slog and
4863 4873 * destroying a dataset. Offlining the slog will
4864 4874 * grab a reference on the dataset which may cause
4865 4875 * dmu_objset_destroy() to fail with EBUSY thus
4866 4876 * leaving the dataset in an inconsistent state.
4867 4877 */
4868 4878 if (islog)
4869 4879 (void) rw_wrlock(&ztest_name_lock);
4870 4880
4871 4881 VERIFY(vdev_offline(spa, guid0, flags) != EBUSY);
4872 4882
4873 4883 if (islog)
4874 4884 (void) rw_unlock(&ztest_name_lock);
4875 4885 } else {
4876 4886 /*
4877 4887 * Ideally we would like to be able to randomly
4878 4888 * call vdev_[on|off]line without holding locks
4879 4889 * to force unpredictable failures but the side
4880 4890 * effects of vdev_[on|off]line prevent us from
4881 4891 * doing so. We grab the ztest_vdev_lock here to
4882 4892 * prevent a race between injection testing and
4883 4893 * aux_vdev removal.
4884 4894 */
4885 4895 VERIFY(mutex_lock(&ztest_vdev_lock) == 0);
4886 4896 (void) vdev_online(spa, guid0, 0, NULL);
4887 4897 VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
4888 4898 }
4889 4899 }
4890 4900
4891 4901 if (maxfaults == 0)
4892 4902 return;
4893 4903
4894 4904 /*
4895 4905 * We have at least single-fault tolerance, so inject data corruption.
4896 4906 */
4897 4907 fd = open(pathrand, O_RDWR);
4898 4908
4899 4909 if (fd == -1) /* we hit a gap in the device namespace */
4900 4910 return;
4901 4911
4902 4912 fsize = lseek(fd, 0, SEEK_END);
4903 4913
4904 4914 while (--iters != 0) {
4905 4915 offset = ztest_random(fsize / (leaves << bshift)) *
4906 4916 (leaves << bshift) + (leaf << bshift) +
4907 4917 (ztest_random(1ULL << (bshift - 1)) & -8ULL);
4908 4918
4909 4919 if (offset >= fsize)
4910 4920 continue;
4911 4921
4912 4922 VERIFY(mutex_lock(&ztest_vdev_lock) == 0);
4913 4923 if (mirror_save != zs->zs_mirrors) {
4914 4924 VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
4915 4925 (void) close(fd);
4916 4926 return;
4917 4927 }
4918 4928
4919 4929 if (pwrite(fd, &bad, sizeof (bad), offset) != sizeof (bad))
4920 4930 fatal(1, "can't inject bad word at 0x%llx in %s",
4921 4931 offset, pathrand);
4922 4932
4923 4933 VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
4924 4934
4925 4935 if (ztest_opts.zo_verbose >= 7)
4926 4936 (void) printf("injected bad word into %s,"
4927 4937 " offset 0x%llx\n", pathrand, (u_longlong_t)offset);
4928 4938 }
4929 4939
4930 4940 (void) close(fd);
4931 4941 }
4932 4942
4933 4943 /*
4934 4944 * Verify that DDT repair works as expected.
4935 4945 */
4936 4946 void
4937 4947 ztest_ddt_repair(ztest_ds_t *zd, uint64_t id)
4938 4948 {
4939 4949 ztest_shared_t *zs = ztest_shared;
4940 4950 spa_t *spa = ztest_spa;
4941 4951 objset_t *os = zd->zd_os;
4942 4952 ztest_od_t od[1];
4943 4953 uint64_t object, blocksize, txg, pattern, psize;
4944 4954 enum zio_checksum checksum = spa_dedup_checksum(spa);
4945 4955 dmu_buf_t *db;
4946 4956 dmu_tx_t *tx;
4947 4957 void *buf;
4948 4958 blkptr_t blk;
4949 4959 int copies = 2 * ZIO_DEDUPDITTO_MIN;
4950 4960
4951 4961 blocksize = ztest_random_blocksize();
4952 4962 blocksize = MIN(blocksize, 2048); /* because we write so many */
4953 4963
4954 4964 ztest_od_init(&od[0], id, FTAG, 0, DMU_OT_UINT64_OTHER, blocksize, 0);
4955 4965
4956 4966 if (ztest_object_init(zd, od, sizeof (od), B_FALSE) != 0)
4957 4967 return;
4958 4968
4959 4969 /*
4960 4970 * Take the name lock as writer to prevent anyone else from changing
4961 4971 * the pool and dataset properies we need to maintain during this test.
4962 4972 */
4963 4973 (void) rw_wrlock(&ztest_name_lock);
4964 4974
4965 4975 if (ztest_dsl_prop_set_uint64(zd->zd_name, ZFS_PROP_DEDUP, checksum,
4966 4976 B_FALSE) != 0 ||
4967 4977 ztest_dsl_prop_set_uint64(zd->zd_name, ZFS_PROP_COPIES, 1,
4968 4978 B_FALSE) != 0) {
4969 4979 (void) rw_unlock(&ztest_name_lock);
4970 4980 return;
4971 4981 }
4972 4982
4973 4983 object = od[0].od_object;
4974 4984 blocksize = od[0].od_blocksize;
4975 4985 pattern = zs->zs_guid ^ dmu_objset_fsid_guid(os);
4976 4986
4977 4987 ASSERT(object != 0);
4978 4988
4979 4989 tx = dmu_tx_create(os);
4980 4990 dmu_tx_hold_write(tx, object, 0, copies * blocksize);
4981 4991 txg = ztest_tx_assign(tx, TXG_WAIT, FTAG);
4982 4992 if (txg == 0) {
4983 4993 (void) rw_unlock(&ztest_name_lock);
4984 4994 return;
4985 4995 }
4986 4996
4987 4997 /*
4988 4998 * Write all the copies of our block.
4989 4999 */
4990 5000 for (int i = 0; i < copies; i++) {
4991 5001 uint64_t offset = i * blocksize;
4992 5002 int error = dmu_buf_hold(os, object, offset, FTAG, &db,
4993 5003 DMU_READ_NO_PREFETCH);
4994 5004 if (error != 0) {
4995 5005 fatal(B_FALSE, "dmu_buf_hold(%p, %llu, %llu) = %u",
4996 5006 os, (long long)object, (long long) offset, error);
4997 5007 }
4998 5008 ASSERT(db->db_offset == offset);
4999 5009 ASSERT(db->db_size == blocksize);
5000 5010 ASSERT(ztest_pattern_match(db->db_data, db->db_size, pattern) ||
5001 5011 ztest_pattern_match(db->db_data, db->db_size, 0ULL));
5002 5012 dmu_buf_will_fill(db, tx);
5003 5013 ztest_pattern_set(db->db_data, db->db_size, pattern);
5004 5014 dmu_buf_rele(db, FTAG);
5005 5015 }
5006 5016
5007 5017 dmu_tx_commit(tx);
5008 5018 txg_wait_synced(spa_get_dsl(spa), txg);
5009 5019
5010 5020 /*
5011 5021 * Find out what block we got.
5012 5022 */
5013 5023 VERIFY0(dmu_buf_hold(os, object, 0, FTAG, &db,
5014 5024 DMU_READ_NO_PREFETCH));
5015 5025 blk = *((dmu_buf_impl_t *)db)->db_blkptr;
5016 5026 dmu_buf_rele(db, FTAG);
5017 5027
5018 5028 /*
5019 5029 * Damage the block. Dedup-ditto will save us when we read it later.
5020 5030 */
5021 5031 psize = BP_GET_PSIZE(&blk);
5022 5032 buf = zio_buf_alloc(psize);
5023 5033 ztest_pattern_set(buf, psize, ~pattern);
5024 5034
5025 5035 (void) zio_wait(zio_rewrite(NULL, spa, 0, &blk,
5026 5036 buf, psize, NULL, NULL, ZIO_PRIORITY_SYNC_WRITE,
5027 5037 ZIO_FLAG_CANFAIL | ZIO_FLAG_INDUCE_DAMAGE, NULL));
5028 5038
5029 5039 zio_buf_free(buf, psize);
5030 5040
5031 5041 (void) rw_unlock(&ztest_name_lock);
5032 5042 }
5033 5043
5034 5044 /*
5035 5045 * Scrub the pool.
5036 5046 */
5037 5047 /* ARGSUSED */
5038 5048 void
5039 5049 ztest_scrub(ztest_ds_t *zd, uint64_t id)
5040 5050 {
5041 5051 spa_t *spa = ztest_spa;
5042 5052
5043 5053 (void) spa_scan(spa, POOL_SCAN_SCRUB);
5044 5054 (void) poll(NULL, 0, 100); /* wait a moment, then force a restart */
5045 5055 (void) spa_scan(spa, POOL_SCAN_SCRUB);
5046 5056 }
5047 5057
5048 5058 /*
5049 5059 * Change the guid for the pool.
5050 5060 */
5051 5061 /* ARGSUSED */
5052 5062 void
5053 5063 ztest_reguid(ztest_ds_t *zd, uint64_t id)
5054 5064 {
5055 5065 spa_t *spa = ztest_spa;
5056 5066 uint64_t orig, load;
5057 5067 int error;
5058 5068
5059 5069 orig = spa_guid(spa);
5060 5070 load = spa_load_guid(spa);
5061 5071
5062 5072 (void) rw_wrlock(&ztest_name_lock);
5063 5073 error = spa_change_guid(spa);
5064 5074 (void) rw_unlock(&ztest_name_lock);
5065 5075
5066 5076 if (error != 0)
5067 5077 return;
5068 5078
5069 5079 if (ztest_opts.zo_verbose >= 4) {
5070 5080 (void) printf("Changed guid old %llu -> %llu\n",
5071 5081 (u_longlong_t)orig, (u_longlong_t)spa_guid(spa));
5072 5082 }
5073 5083
5074 5084 VERIFY3U(orig, !=, spa_guid(spa));
5075 5085 VERIFY3U(load, ==, spa_load_guid(spa));
5076 5086 }
5077 5087
5078 5088 /*
5079 5089 * Rename the pool to a different name and then rename it back.
5080 5090 */
5081 5091 /* ARGSUSED */
5082 5092 void
5083 5093 ztest_spa_rename(ztest_ds_t *zd, uint64_t id)
5084 5094 {
5085 5095 char *oldname, *newname;
5086 5096 spa_t *spa;
5087 5097
5088 5098 (void) rw_wrlock(&ztest_name_lock);
5089 5099
5090 5100 oldname = ztest_opts.zo_pool;
5091 5101 newname = umem_alloc(strlen(oldname) + 5, UMEM_NOFAIL);
5092 5102 (void) strcpy(newname, oldname);
5093 5103 (void) strcat(newname, "_tmp");
5094 5104
5095 5105 /*
5096 5106 * Do the rename
5097 5107 */
5098 5108 VERIFY3U(0, ==, spa_rename(oldname, newname));
5099 5109
5100 5110 /*
5101 5111 * Try to open it under the old name, which shouldn't exist
5102 5112 */
5103 5113 VERIFY3U(ENOENT, ==, spa_open(oldname, &spa, FTAG));
5104 5114
5105 5115 /*
5106 5116 * Open it under the new name and make sure it's still the same spa_t.
5107 5117 */
5108 5118 VERIFY3U(0, ==, spa_open(newname, &spa, FTAG));
5109 5119
5110 5120 ASSERT(spa == ztest_spa);
5111 5121 spa_close(spa, FTAG);
5112 5122
5113 5123 /*
5114 5124 * Rename it back to the original
5115 5125 */
5116 5126 VERIFY3U(0, ==, spa_rename(newname, oldname));
5117 5127
5118 5128 /*
5119 5129 * Make sure it can still be opened
5120 5130 */
5121 5131 VERIFY3U(0, ==, spa_open(oldname, &spa, FTAG));
5122 5132
5123 5133 ASSERT(spa == ztest_spa);
5124 5134 spa_close(spa, FTAG);
5125 5135
5126 5136 umem_free(newname, strlen(newname) + 1);
5127 5137
5128 5138 (void) rw_unlock(&ztest_name_lock);
5129 5139 }
5130 5140
5131 5141 /*
5132 5142 * Verify pool integrity by running zdb.
5133 5143 */
5134 5144 static void
5135 5145 ztest_run_zdb(char *pool)
5136 5146 {
5137 5147 int status;
5138 5148 char zdb[MAXPATHLEN + MAXNAMELEN + 20];
5139 5149 char zbuf[1024];
5140 5150 char *bin;
5141 5151 char *ztest;
5142 5152 char *isa;
5143 5153 int isalen;
5144 5154 FILE *fp;
5145 5155
5146 5156 (void) realpath(getexecname(), zdb);
5147 5157
5148 5158 /* zdb lives in /usr/sbin, while ztest lives in /usr/bin */
5149 5159 bin = strstr(zdb, "/usr/bin/");
5150 5160 ztest = strstr(bin, "/ztest");
5151 5161 isa = bin + 8;
5152 5162 isalen = ztest - isa;
5153 5163 isa = strdup(isa);
5154 5164 /* LINTED */
5155 5165 (void) sprintf(bin,
5156 5166 "/usr/sbin%.*s/zdb -bcc%s%s -U %s %s",
5157 5167 isalen,
5158 5168 isa,
5159 5169 ztest_opts.zo_verbose >= 3 ? "s" : "",
5160 5170 ztest_opts.zo_verbose >= 4 ? "v" : "",
5161 5171 spa_config_path,
5162 5172 pool);
5163 5173 free(isa);
5164 5174
5165 5175 if (ztest_opts.zo_verbose >= 5)
5166 5176 (void) printf("Executing %s\n", strstr(zdb, "zdb "));
5167 5177
5168 5178 fp = popen(zdb, "r");
5169 5179
5170 5180 while (fgets(zbuf, sizeof (zbuf), fp) != NULL)
5171 5181 if (ztest_opts.zo_verbose >= 3)
5172 5182 (void) printf("%s", zbuf);
5173 5183
5174 5184 status = pclose(fp);
5175 5185
5176 5186 if (status == 0)
5177 5187 return;
5178 5188
5179 5189 ztest_dump_core = 0;
5180 5190 if (WIFEXITED(status))
5181 5191 fatal(0, "'%s' exit code %d", zdb, WEXITSTATUS(status));
5182 5192 else
5183 5193 fatal(0, "'%s' died with signal %d", zdb, WTERMSIG(status));
5184 5194 }
5185 5195
5186 5196 static void
5187 5197 ztest_walk_pool_directory(char *header)
5188 5198 {
5189 5199 spa_t *spa = NULL;
5190 5200
5191 5201 if (ztest_opts.zo_verbose >= 6)
5192 5202 (void) printf("%s\n", header);
5193 5203
5194 5204 mutex_enter(&spa_namespace_lock);
5195 5205 while ((spa = spa_next(spa)) != NULL)
5196 5206 if (ztest_opts.zo_verbose >= 6)
5197 5207 (void) printf("\t%s\n", spa_name(spa));
5198 5208 mutex_exit(&spa_namespace_lock);
5199 5209 }
5200 5210
5201 5211 static void
5202 5212 ztest_spa_import_export(char *oldname, char *newname)
5203 5213 {
5204 5214 nvlist_t *config, *newconfig;
5205 5215 uint64_t pool_guid;
5206 5216 spa_t *spa;
5207 5217 int error;
5208 5218
5209 5219 if (ztest_opts.zo_verbose >= 4) {
5210 5220 (void) printf("import/export: old = %s, new = %s\n",
5211 5221 oldname, newname);
5212 5222 }
5213 5223
5214 5224 /*
5215 5225 * Clean up from previous runs.
5216 5226 */
5217 5227 (void) spa_destroy(newname);
5218 5228
5219 5229 /*
5220 5230 * Get the pool's configuration and guid.
5221 5231 */
5222 5232 VERIFY3U(0, ==, spa_open(oldname, &spa, FTAG));
5223 5233
5224 5234 /*
5225 5235 * Kick off a scrub to tickle scrub/export races.
5226 5236 */
5227 5237 if (ztest_random(2) == 0)
5228 5238 (void) spa_scan(spa, POOL_SCAN_SCRUB);
5229 5239
5230 5240 pool_guid = spa_guid(spa);
5231 5241 spa_close(spa, FTAG);
5232 5242
5233 5243 ztest_walk_pool_directory("pools before export");
5234 5244
5235 5245 /*
5236 5246 * Export it.
5237 5247 */
5238 5248 VERIFY3U(0, ==, spa_export(oldname, &config, B_FALSE, B_FALSE));
5239 5249
5240 5250 ztest_walk_pool_directory("pools after export");
5241 5251
5242 5252 /*
5243 5253 * Try to import it.
5244 5254 */
5245 5255 newconfig = spa_tryimport(config);
5246 5256 ASSERT(newconfig != NULL);
5247 5257 nvlist_free(newconfig);
5248 5258
5249 5259 /*
5250 5260 * Import it under the new name.
5251 5261 */
5252 5262 error = spa_import(newname, config, NULL, 0);
5253 5263 if (error != 0) {
5254 5264 dump_nvlist(config, 0);
5255 5265 fatal(B_FALSE, "couldn't import pool %s as %s: error %u",
5256 5266 oldname, newname, error);
5257 5267 }
5258 5268
5259 5269 ztest_walk_pool_directory("pools after import");
5260 5270
5261 5271 /*
5262 5272 * Try to import it again -- should fail with EEXIST.
5263 5273 */
5264 5274 VERIFY3U(EEXIST, ==, spa_import(newname, config, NULL, 0));
5265 5275
5266 5276 /*
5267 5277 * Try to import it under a different name -- should fail with EEXIST.
5268 5278 */
5269 5279 VERIFY3U(EEXIST, ==, spa_import(oldname, config, NULL, 0));
5270 5280
5271 5281 /*
5272 5282 * Verify that the pool is no longer visible under the old name.
5273 5283 */
5274 5284 VERIFY3U(ENOENT, ==, spa_open(oldname, &spa, FTAG));
5275 5285
5276 5286 /*
5277 5287 * Verify that we can open and close the pool using the new name.
5278 5288 */
5279 5289 VERIFY3U(0, ==, spa_open(newname, &spa, FTAG));
5280 5290 ASSERT(pool_guid == spa_guid(spa));
5281 5291 spa_close(spa, FTAG);
5282 5292
5283 5293 nvlist_free(config);
5284 5294 }
5285 5295
5286 5296 static void
5287 5297 ztest_resume(spa_t *spa)
5288 5298 {
5289 5299 if (spa_suspended(spa) && ztest_opts.zo_verbose >= 6)
5290 5300 (void) printf("resuming from suspended state\n");
5291 5301 spa_vdev_state_enter(spa, SCL_NONE);
5292 5302 vdev_clear(spa, NULL);
5293 5303 (void) spa_vdev_state_exit(spa, NULL, 0);
5294 5304 (void) zio_resume(spa);
5295 5305 }
5296 5306
5297 5307 static void *
5298 5308 ztest_resume_thread(void *arg)
5299 5309 {
5300 5310 spa_t *spa = arg;
5301 5311
5302 5312 while (!ztest_exiting) {
5303 5313 if (spa_suspended(spa))
5304 5314 ztest_resume(spa);
5305 5315 (void) poll(NULL, 0, 100);
5306 5316 }
5307 5317 return (NULL);
5308 5318 }
5309 5319
5310 5320 static void *
5311 5321 ztest_deadman_thread(void *arg)
5312 5322 {
5313 5323 ztest_shared_t *zs = arg;
5314 5324 spa_t *spa = ztest_spa;
5315 5325 hrtime_t delta, total = 0;
5316 5326
5317 5327 for (;;) {
5318 5328 delta = (zs->zs_thread_stop - zs->zs_thread_start) /
5319 5329 NANOSEC + zfs_deadman_synctime;
5320 5330
5321 5331 (void) poll(NULL, 0, (int)(1000 * delta));
5322 5332
5323 5333 /*
5324 5334 * If the pool is suspended then fail immediately. Otherwise,
5325 5335 * check to see if the pool is making any progress. If
5326 5336 * vdev_deadman() discovers that there hasn't been any recent
5327 5337 * I/Os then it will end up aborting the tests.
5328 5338 */
5329 5339 if (spa_suspended(spa)) {
5330 5340 fatal(0, "aborting test after %llu seconds because "
5331 5341 "pool has transitioned to a suspended state.",
5332 5342 zfs_deadman_synctime);
5333 5343 return (NULL);
5334 5344 }
5335 5345 vdev_deadman(spa->spa_root_vdev);
5336 5346
5337 5347 total += zfs_deadman_synctime;
5338 5348 (void) printf("ztest has been running for %lld seconds\n",
5339 5349 total);
5340 5350 }
5341 5351 }
5342 5352
5343 5353 static void
5344 5354 ztest_execute(int test, ztest_info_t *zi, uint64_t id)
5345 5355 {
5346 5356 ztest_ds_t *zd = &ztest_ds[id % ztest_opts.zo_datasets];
5347 5357 ztest_shared_callstate_t *zc = ZTEST_GET_SHARED_CALLSTATE(test);
5348 5358 hrtime_t functime = gethrtime();
5349 5359
5350 5360 for (int i = 0; i < zi->zi_iters; i++)
5351 5361 zi->zi_func(zd, id);
5352 5362
5353 5363 functime = gethrtime() - functime;
5354 5364
5355 5365 atomic_add_64(&zc->zc_count, 1);
5356 5366 atomic_add_64(&zc->zc_time, functime);
5357 5367
5358 5368 if (ztest_opts.zo_verbose >= 4) {
5359 5369 Dl_info dli;
5360 5370 (void) dladdr((void *)zi->zi_func, &dli);
5361 5371 (void) printf("%6.2f sec in %s\n",
5362 5372 (double)functime / NANOSEC, dli.dli_sname);
5363 5373 }
5364 5374 }
5365 5375
5366 5376 static void *
5367 5377 ztest_thread(void *arg)
5368 5378 {
5369 5379 int rand;
5370 5380 uint64_t id = (uintptr_t)arg;
5371 5381 ztest_shared_t *zs = ztest_shared;
5372 5382 uint64_t call_next;
5373 5383 hrtime_t now;
5374 5384 ztest_info_t *zi;
5375 5385 ztest_shared_callstate_t *zc;
5376 5386
5377 5387 while ((now = gethrtime()) < zs->zs_thread_stop) {
5378 5388 /*
5379 5389 * See if it's time to force a crash.
5380 5390 */
5381 5391 if (now > zs->zs_thread_kill)
5382 5392 ztest_kill(zs);
5383 5393
5384 5394 /*
5385 5395 * If we're getting ENOSPC with some regularity, stop.
5386 5396 */
5387 5397 if (zs->zs_enospc_count > 10)
5388 5398 break;
5389 5399
5390 5400 /*
5391 5401 * Pick a random function to execute.
5392 5402 */
5393 5403 rand = ztest_random(ZTEST_FUNCS);
5394 5404 zi = &ztest_info[rand];
5395 5405 zc = ZTEST_GET_SHARED_CALLSTATE(rand);
5396 5406 call_next = zc->zc_next;
5397 5407
5398 5408 if (now >= call_next &&
5399 5409 atomic_cas_64(&zc->zc_next, call_next, call_next +
5400 5410 ztest_random(2 * zi->zi_interval[0] + 1)) == call_next) {
5401 5411 ztest_execute(rand, zi, id);
5402 5412 }
5403 5413 }
5404 5414
5405 5415 return (NULL);
5406 5416 }
5407 5417
5408 5418 static void
5409 5419 ztest_dataset_name(char *dsname, char *pool, int d)
5410 5420 {
5411 5421 (void) snprintf(dsname, MAXNAMELEN, "%s/ds_%d", pool, d);
5412 5422 }
5413 5423
5414 5424 static void
5415 5425 ztest_dataset_destroy(int d)
5416 5426 {
5417 5427 char name[MAXNAMELEN];
5418 5428
5419 5429 ztest_dataset_name(name, ztest_opts.zo_pool, d);
5420 5430
5421 5431 if (ztest_opts.zo_verbose >= 3)
5422 5432 (void) printf("Destroying %s to free up space\n", name);
5423 5433
5424 5434 /*
5425 5435 * Cleanup any non-standard clones and snapshots. In general,
5426 5436 * ztest thread t operates on dataset (t % zopt_datasets),
5427 5437 * so there may be more than one thing to clean up.
5428 5438 */
5429 5439 for (int t = d; t < ztest_opts.zo_threads;
5430 5440 t += ztest_opts.zo_datasets) {
5431 5441 ztest_dsl_dataset_cleanup(name, t);
5432 5442 }
5433 5443
5434 5444 (void) dmu_objset_find(name, ztest_objset_destroy_cb, NULL,
5435 5445 DS_FIND_SNAPSHOTS | DS_FIND_CHILDREN);
5436 5446 }
5437 5447
5438 5448 static void
5439 5449 ztest_dataset_dirobj_verify(ztest_ds_t *zd)
5440 5450 {
5441 5451 uint64_t usedobjs, dirobjs, scratch;
5442 5452
5443 5453 /*
5444 5454 * ZTEST_DIROBJ is the object directory for the entire dataset.
5445 5455 * Therefore, the number of objects in use should equal the
5446 5456 * number of ZTEST_DIROBJ entries, +1 for ZTEST_DIROBJ itself.
5447 5457 * If not, we have an object leak.
5448 5458 *
5449 5459 * Note that we can only check this in ztest_dataset_open(),
5450 5460 * when the open-context and syncing-context values agree.
5451 5461 * That's because zap_count() returns the open-context value,
5452 5462 * while dmu_objset_space() returns the rootbp fill count.
5453 5463 */
5454 5464 VERIFY3U(0, ==, zap_count(zd->zd_os, ZTEST_DIROBJ, &dirobjs));
5455 5465 dmu_objset_space(zd->zd_os, &scratch, &scratch, &usedobjs, &scratch);
5456 5466 ASSERT3U(dirobjs + 1, ==, usedobjs);
5457 5467 }
5458 5468
5459 5469 static int
5460 5470 ztest_dataset_open(int d)
5461 5471 {
5462 5472 ztest_ds_t *zd = &ztest_ds[d];
5463 5473 uint64_t committed_seq = ZTEST_GET_SHARED_DS(d)->zd_seq;
5464 5474 objset_t *os;
5465 5475 zilog_t *zilog;
5466 5476 char name[MAXNAMELEN];
5467 5477 int error;
5468 5478
5469 5479 ztest_dataset_name(name, ztest_opts.zo_pool, d);
5470 5480
5471 5481 (void) rw_rdlock(&ztest_name_lock);
5472 5482
5473 5483 error = ztest_dataset_create(name);
5474 5484 if (error == ENOSPC) {
5475 5485 (void) rw_unlock(&ztest_name_lock);
5476 5486 ztest_record_enospc(FTAG);
5477 5487 return (error);
5478 5488 }
5479 5489 ASSERT(error == 0 || error == EEXIST);
5480 5490
5481 5491 VERIFY0(dmu_objset_own(name, DMU_OST_OTHER, B_FALSE, zd, &os));
5482 5492 (void) rw_unlock(&ztest_name_lock);
5483 5493
5484 5494 ztest_zd_init(zd, ZTEST_GET_SHARED_DS(d), os);
5485 5495
5486 5496 zilog = zd->zd_zilog;
5487 5497
5488 5498 if (zilog->zl_header->zh_claim_lr_seq != 0 &&
5489 5499 zilog->zl_header->zh_claim_lr_seq < committed_seq)
5490 5500 fatal(0, "missing log records: claimed %llu < committed %llu",
5491 5501 zilog->zl_header->zh_claim_lr_seq, committed_seq);
5492 5502
5493 5503 ztest_dataset_dirobj_verify(zd);
5494 5504
5495 5505 zil_replay(os, zd, ztest_replay_vector);
5496 5506
5497 5507 ztest_dataset_dirobj_verify(zd);
5498 5508
5499 5509 if (ztest_opts.zo_verbose >= 6)
5500 5510 (void) printf("%s replay %llu blocks, %llu records, seq %llu\n",
5501 5511 zd->zd_name,
5502 5512 (u_longlong_t)zilog->zl_parse_blk_count,
5503 5513 (u_longlong_t)zilog->zl_parse_lr_count,
5504 5514 (u_longlong_t)zilog->zl_replaying_seq);
5505 5515
5506 5516 zilog = zil_open(os, ztest_get_data);
5507 5517
5508 5518 if (zilog->zl_replaying_seq != 0 &&
5509 5519 zilog->zl_replaying_seq < committed_seq)
5510 5520 fatal(0, "missing log records: replayed %llu < committed %llu",
5511 5521 zilog->zl_replaying_seq, committed_seq);
5512 5522
5513 5523 return (0);
5514 5524 }
5515 5525
5516 5526 static void
5517 5527 ztest_dataset_close(int d)
5518 5528 {
5519 5529 ztest_ds_t *zd = &ztest_ds[d];
5520 5530
5521 5531 zil_close(zd->zd_zilog);
5522 5532 dmu_objset_disown(zd->zd_os, zd);
5523 5533
5524 5534 ztest_zd_fini(zd);
5525 5535 }
5526 5536
5527 5537 /*
5528 5538 * Kick off threads to run tests on all datasets in parallel.
5529 5539 */
5530 5540 static void
5531 5541 ztest_run(ztest_shared_t *zs)
5532 5542 {
5533 5543 thread_t *tid;
5534 5544 spa_t *spa;
5535 5545 objset_t *os;
5536 5546 thread_t resume_tid;
5537 5547 int error;
5538 5548
5539 5549 ztest_exiting = B_FALSE;
5540 5550
5541 5551 /*
5542 5552 * Initialize parent/child shared state.
5543 5553 */
5544 5554 VERIFY(_mutex_init(&ztest_vdev_lock, USYNC_THREAD, NULL) == 0);
5545 5555 VERIFY(rwlock_init(&ztest_name_lock, USYNC_THREAD, NULL) == 0);
5546 5556
5547 5557 zs->zs_thread_start = gethrtime();
5548 5558 zs->zs_thread_stop =
5549 5559 zs->zs_thread_start + ztest_opts.zo_passtime * NANOSEC;
5550 5560 zs->zs_thread_stop = MIN(zs->zs_thread_stop, zs->zs_proc_stop);
5551 5561 zs->zs_thread_kill = zs->zs_thread_stop;
5552 5562 if (ztest_random(100) < ztest_opts.zo_killrate) {
5553 5563 zs->zs_thread_kill -=
5554 5564 ztest_random(ztest_opts.zo_passtime * NANOSEC);
5555 5565 }
5556 5566
5557 5567 (void) _mutex_init(&zcl.zcl_callbacks_lock, USYNC_THREAD, NULL);
5558 5568
5559 5569 list_create(&zcl.zcl_callbacks, sizeof (ztest_cb_data_t),
5560 5570 offsetof(ztest_cb_data_t, zcd_node));
5561 5571
5562 5572 /*
5563 5573 * Open our pool.
5564 5574 */
5565 5575 kernel_init(FREAD | FWRITE);
5566 5576 VERIFY0(spa_open(ztest_opts.zo_pool, &spa, FTAG));
5567 5577 spa->spa_debug = B_TRUE;
5568 5578 ztest_spa = spa;
5569 5579
5570 5580 VERIFY0(dmu_objset_own(ztest_opts.zo_pool,
5571 5581 DMU_OST_ANY, B_TRUE, FTAG, &os));
5572 5582 zs->zs_guid = dmu_objset_fsid_guid(os);
5573 5583 dmu_objset_disown(os, FTAG);
5574 5584
5575 5585 spa->spa_dedup_ditto = 2 * ZIO_DEDUPDITTO_MIN;
5576 5586
5577 5587 /*
5578 5588 * We don't expect the pool to suspend unless maxfaults == 0,
5579 5589 * in which case ztest_fault_inject() temporarily takes away
5580 5590 * the only valid replica.
5581 5591 */
5582 5592 if (MAXFAULTS() == 0)
5583 5593 spa->spa_failmode = ZIO_FAILURE_MODE_WAIT;
5584 5594 else
5585 5595 spa->spa_failmode = ZIO_FAILURE_MODE_PANIC;
5586 5596
5587 5597 /*
5588 5598 * Create a thread to periodically resume suspended I/O.
5589 5599 */
5590 5600 VERIFY(thr_create(0, 0, ztest_resume_thread, spa, THR_BOUND,
5591 5601 &resume_tid) == 0);
5592 5602
5593 5603 /*
5594 5604 * Create a deadman thread to abort() if we hang.
5595 5605 */
5596 5606 VERIFY(thr_create(0, 0, ztest_deadman_thread, zs, THR_BOUND,
5597 5607 NULL) == 0);
5598 5608
5599 5609 /*
5600 5610 * Verify that we can safely inquire about about any object,
5601 5611 * whether it's allocated or not. To make it interesting,
5602 5612 * we probe a 5-wide window around each power of two.
5603 5613 * This hits all edge cases, including zero and the max.
5604 5614 */
5605 5615 for (int t = 0; t < 64; t++) {
5606 5616 for (int d = -5; d <= 5; d++) {
5607 5617 error = dmu_object_info(spa->spa_meta_objset,
5608 5618 (1ULL << t) + d, NULL);
5609 5619 ASSERT(error == 0 || error == ENOENT ||
5610 5620 error == EINVAL);
5611 5621 }
5612 5622 }
5613 5623
5614 5624 /*
5615 5625 * If we got any ENOSPC errors on the previous run, destroy something.
5616 5626 */
5617 5627 if (zs->zs_enospc_count != 0) {
5618 5628 int d = ztest_random(ztest_opts.zo_datasets);
5619 5629 ztest_dataset_destroy(d);
5620 5630 }
5621 5631 zs->zs_enospc_count = 0;
5622 5632
5623 5633 tid = umem_zalloc(ztest_opts.zo_threads * sizeof (thread_t),
5624 5634 UMEM_NOFAIL);
5625 5635
5626 5636 if (ztest_opts.zo_verbose >= 4)
5627 5637 (void) printf("starting main threads...\n");
5628 5638
5629 5639 /*
5630 5640 * Kick off all the tests that run in parallel.
5631 5641 */
5632 5642 for (int t = 0; t < ztest_opts.zo_threads; t++) {
5633 5643 if (t < ztest_opts.zo_datasets &&
5634 5644 ztest_dataset_open(t) != 0)
5635 5645 return;
5636 5646 VERIFY(thr_create(0, 0, ztest_thread, (void *)(uintptr_t)t,
5637 5647 THR_BOUND, &tid[t]) == 0);
5638 5648 }
5639 5649
5640 5650 /*
5641 5651 * Wait for all of the tests to complete. We go in reverse order
5642 5652 * so we don't close datasets while threads are still using them.
5643 5653 */
↓ open down ↓ |
829 lines elided |
↑ open up ↑ |
5644 5654 for (int t = ztest_opts.zo_threads - 1; t >= 0; t--) {
5645 5655 VERIFY(thr_join(tid[t], NULL, NULL) == 0);
5646 5656 if (t < ztest_opts.zo_datasets)
5647 5657 ztest_dataset_close(t);
5648 5658 }
5649 5659
5650 5660 txg_wait_synced(spa_get_dsl(spa), 0);
5651 5661
5652 5662 zs->zs_alloc = metaslab_class_get_alloc(spa_normal_class(spa));
5653 5663 zs->zs_space = metaslab_class_get_space(spa_normal_class(spa));
5664 + zfs_dbgmsg_print(FTAG);
5654 5665
5655 5666 umem_free(tid, ztest_opts.zo_threads * sizeof (thread_t));
5656 5667
5657 5668 /* Kill the resume thread */
5658 5669 ztest_exiting = B_TRUE;
5659 5670 VERIFY(thr_join(resume_tid, NULL, NULL) == 0);
5660 5671 ztest_resume(spa);
5661 5672
5662 5673 /*
5663 5674 * Right before closing the pool, kick off a bunch of async I/O;
5664 5675 * spa_close() should wait for it to complete.
5665 5676 */
5666 5677 for (uint64_t object = 1; object < 50; object++)
5667 5678 dmu_prefetch(spa->spa_meta_objset, object, 0, 1ULL << 20);
5668 5679
5669 5680 spa_close(spa, FTAG);
5670 5681
5671 5682 /*
5672 5683 * Verify that we can loop over all pools.
5673 5684 */
5674 5685 mutex_enter(&spa_namespace_lock);
5675 5686 for (spa = spa_next(NULL); spa != NULL; spa = spa_next(spa))
5676 5687 if (ztest_opts.zo_verbose > 3)
5677 5688 (void) printf("spa_next: found %s\n", spa_name(spa));
5678 5689 mutex_exit(&spa_namespace_lock);
5679 5690
5680 5691 /*
5681 5692 * Verify that we can export the pool and reimport it under a
5682 5693 * different name.
5683 5694 */
5684 5695 if (ztest_random(2) == 0) {
5685 5696 char name[MAXNAMELEN];
5686 5697 (void) snprintf(name, MAXNAMELEN, "%s_import",
5687 5698 ztest_opts.zo_pool);
5688 5699 ztest_spa_import_export(ztest_opts.zo_pool, name);
5689 5700 ztest_spa_import_export(name, ztest_opts.zo_pool);
5690 5701 }
5691 5702
5692 5703 kernel_fini();
5693 5704
5694 5705 list_destroy(&zcl.zcl_callbacks);
5695 5706
5696 5707 (void) _mutex_destroy(&zcl.zcl_callbacks_lock);
5697 5708
5698 5709 (void) rwlock_destroy(&ztest_name_lock);
5699 5710 (void) _mutex_destroy(&ztest_vdev_lock);
5700 5711 }
5701 5712
5702 5713 static void
5703 5714 ztest_freeze(void)
5704 5715 {
5705 5716 ztest_ds_t *zd = &ztest_ds[0];
5706 5717 spa_t *spa;
5707 5718 int numloops = 0;
5708 5719
5709 5720 if (ztest_opts.zo_verbose >= 3)
5710 5721 (void) printf("testing spa_freeze()...\n");
5711 5722
5712 5723 kernel_init(FREAD | FWRITE);
5713 5724 VERIFY3U(0, ==, spa_open(ztest_opts.zo_pool, &spa, FTAG));
5714 5725 VERIFY3U(0, ==, ztest_dataset_open(0));
5715 5726 spa->spa_debug = B_TRUE;
5716 5727 ztest_spa = spa;
5717 5728
5718 5729 /*
5719 5730 * Force the first log block to be transactionally allocated.
5720 5731 * We have to do this before we freeze the pool -- otherwise
5721 5732 * the log chain won't be anchored.
5722 5733 */
5723 5734 while (BP_IS_HOLE(&zd->zd_zilog->zl_header->zh_log)) {
5724 5735 ztest_dmu_object_alloc_free(zd, 0);
5725 5736 zil_commit(zd->zd_zilog, 0);
5726 5737 }
5727 5738
5728 5739 txg_wait_synced(spa_get_dsl(spa), 0);
5729 5740
5730 5741 /*
5731 5742 * Freeze the pool. This stops spa_sync() from doing anything,
5732 5743 * so that the only way to record changes from now on is the ZIL.
5733 5744 */
5734 5745 spa_freeze(spa);
5735 5746
5736 5747 /*
5737 5748 * Run tests that generate log records but don't alter the pool config
5738 5749 * or depend on DSL sync tasks (snapshots, objset create/destroy, etc).
5739 5750 * We do a txg_wait_synced() after each iteration to force the txg
5740 5751 * to increase well beyond the last synced value in the uberblock.
5741 5752 * The ZIL should be OK with that.
5742 5753 */
5743 5754 while (ztest_random(10) != 0 &&
5744 5755 numloops++ < ztest_opts.zo_maxloops) {
5745 5756 ztest_dmu_write_parallel(zd, 0);
5746 5757 ztest_dmu_object_alloc_free(zd, 0);
5747 5758 txg_wait_synced(spa_get_dsl(spa), 0);
5748 5759 }
5749 5760
5750 5761 /*
5751 5762 * Commit all of the changes we just generated.
5752 5763 */
5753 5764 zil_commit(zd->zd_zilog, 0);
5754 5765 txg_wait_synced(spa_get_dsl(spa), 0);
5755 5766
5756 5767 /*
5757 5768 * Close our dataset and close the pool.
5758 5769 */
5759 5770 ztest_dataset_close(0);
5760 5771 spa_close(spa, FTAG);
5761 5772 kernel_fini();
5762 5773
5763 5774 /*
5764 5775 * Open and close the pool and dataset to induce log replay.
5765 5776 */
5766 5777 kernel_init(FREAD | FWRITE);
5767 5778 VERIFY3U(0, ==, spa_open(ztest_opts.zo_pool, &spa, FTAG));
5768 5779 ASSERT(spa_freeze_txg(spa) == UINT64_MAX);
5769 5780 VERIFY3U(0, ==, ztest_dataset_open(0));
5770 5781 ztest_dataset_close(0);
5771 5782
5772 5783 spa->spa_debug = B_TRUE;
5773 5784 ztest_spa = spa;
5774 5785 txg_wait_synced(spa_get_dsl(spa), 0);
5775 5786 ztest_reguid(NULL, 0);
5776 5787
5777 5788 spa_close(spa, FTAG);
5778 5789 kernel_fini();
5779 5790 }
5780 5791
5781 5792 void
5782 5793 print_time(hrtime_t t, char *timebuf)
5783 5794 {
5784 5795 hrtime_t s = t / NANOSEC;
5785 5796 hrtime_t m = s / 60;
5786 5797 hrtime_t h = m / 60;
5787 5798 hrtime_t d = h / 24;
5788 5799
5789 5800 s -= m * 60;
5790 5801 m -= h * 60;
5791 5802 h -= d * 24;
5792 5803
5793 5804 timebuf[0] = '\0';
5794 5805
5795 5806 if (d)
5796 5807 (void) sprintf(timebuf,
5797 5808 "%llud%02lluh%02llum%02llus", d, h, m, s);
5798 5809 else if (h)
5799 5810 (void) sprintf(timebuf, "%lluh%02llum%02llus", h, m, s);
5800 5811 else if (m)
5801 5812 (void) sprintf(timebuf, "%llum%02llus", m, s);
5802 5813 else
5803 5814 (void) sprintf(timebuf, "%llus", s);
5804 5815 }
5805 5816
5806 5817 static nvlist_t *
5807 5818 make_random_props()
5808 5819 {
5809 5820 nvlist_t *props;
5810 5821
5811 5822 VERIFY(nvlist_alloc(&props, NV_UNIQUE_NAME, 0) == 0);
5812 5823 if (ztest_random(2) == 0)
5813 5824 return (props);
5814 5825 VERIFY(nvlist_add_uint64(props, "autoreplace", 1) == 0);
5815 5826
5816 5827 return (props);
5817 5828 }
5818 5829
5819 5830 /*
5820 5831 * Create a storage pool with the given name and initial vdev size.
5821 5832 * Then test spa_freeze() functionality.
5822 5833 */
5823 5834 static void
5824 5835 ztest_init(ztest_shared_t *zs)
5825 5836 {
5826 5837 spa_t *spa;
5827 5838 nvlist_t *nvroot, *props;
5828 5839
5829 5840 VERIFY(_mutex_init(&ztest_vdev_lock, USYNC_THREAD, NULL) == 0);
5830 5841 VERIFY(rwlock_init(&ztest_name_lock, USYNC_THREAD, NULL) == 0);
5831 5842
5832 5843 kernel_init(FREAD | FWRITE);
5833 5844
5834 5845 /*
5835 5846 * Create the storage pool.
5836 5847 */
5837 5848 (void) spa_destroy(ztest_opts.zo_pool);
5838 5849 ztest_shared->zs_vdev_next_leaf = 0;
5839 5850 zs->zs_splits = 0;
5840 5851 zs->zs_mirrors = ztest_opts.zo_mirrors;
5841 5852 nvroot = make_vdev_root(NULL, NULL, NULL, ztest_opts.zo_vdev_size, 0,
5842 5853 0, ztest_opts.zo_raidz, zs->zs_mirrors, 1);
5843 5854 props = make_random_props();
5844 5855 for (int i = 0; i < SPA_FEATURES; i++) {
5845 5856 char buf[1024];
5846 5857 (void) snprintf(buf, sizeof (buf), "feature@%s",
5847 5858 spa_feature_table[i].fi_uname);
5848 5859 VERIFY3U(0, ==, nvlist_add_uint64(props, buf, 0));
5849 5860 }
5850 5861 VERIFY3U(0, ==, spa_create(ztest_opts.zo_pool, nvroot, props, NULL));
5851 5862 nvlist_free(nvroot);
5852 5863
5853 5864 VERIFY3U(0, ==, spa_open(ztest_opts.zo_pool, &spa, FTAG));
5854 5865 zs->zs_metaslab_sz =
5855 5866 1ULL << spa->spa_root_vdev->vdev_child[0]->vdev_ms_shift;
5856 5867
5857 5868 spa_close(spa, FTAG);
5858 5869
5859 5870 kernel_fini();
5860 5871
5861 5872 ztest_run_zdb(ztest_opts.zo_pool);
5862 5873
5863 5874 ztest_freeze();
5864 5875
5865 5876 ztest_run_zdb(ztest_opts.zo_pool);
5866 5877
5867 5878 (void) rwlock_destroy(&ztest_name_lock);
5868 5879 (void) _mutex_destroy(&ztest_vdev_lock);
5869 5880 }
5870 5881
5871 5882 static void
5872 5883 setup_data_fd(void)
5873 5884 {
5874 5885 static char ztest_name_data[] = "/tmp/ztest.data.XXXXXX";
5875 5886
5876 5887 ztest_fd_data = mkstemp(ztest_name_data);
5877 5888 ASSERT3S(ztest_fd_data, >=, 0);
5878 5889 (void) unlink(ztest_name_data);
5879 5890 }
5880 5891
5881 5892
5882 5893 static int
5883 5894 shared_data_size(ztest_shared_hdr_t *hdr)
5884 5895 {
5885 5896 int size;
5886 5897
5887 5898 size = hdr->zh_hdr_size;
5888 5899 size += hdr->zh_opts_size;
5889 5900 size += hdr->zh_size;
5890 5901 size += hdr->zh_stats_size * hdr->zh_stats_count;
5891 5902 size += hdr->zh_ds_size * hdr->zh_ds_count;
5892 5903
5893 5904 return (size);
5894 5905 }
5895 5906
5896 5907 static void
5897 5908 setup_hdr(void)
5898 5909 {
5899 5910 int size;
5900 5911 ztest_shared_hdr_t *hdr;
5901 5912
5902 5913 hdr = (void *)mmap(0, P2ROUNDUP(sizeof (*hdr), getpagesize()),
5903 5914 PROT_READ | PROT_WRITE, MAP_SHARED, ztest_fd_data, 0);
5904 5915 ASSERT(hdr != MAP_FAILED);
5905 5916
5906 5917 VERIFY3U(0, ==, ftruncate(ztest_fd_data, sizeof (ztest_shared_hdr_t)));
5907 5918
5908 5919 hdr->zh_hdr_size = sizeof (ztest_shared_hdr_t);
5909 5920 hdr->zh_opts_size = sizeof (ztest_shared_opts_t);
5910 5921 hdr->zh_size = sizeof (ztest_shared_t);
5911 5922 hdr->zh_stats_size = sizeof (ztest_shared_callstate_t);
5912 5923 hdr->zh_stats_count = ZTEST_FUNCS;
5913 5924 hdr->zh_ds_size = sizeof (ztest_shared_ds_t);
5914 5925 hdr->zh_ds_count = ztest_opts.zo_datasets;
5915 5926
5916 5927 size = shared_data_size(hdr);
5917 5928 VERIFY3U(0, ==, ftruncate(ztest_fd_data, size));
5918 5929
5919 5930 (void) munmap((caddr_t)hdr, P2ROUNDUP(sizeof (*hdr), getpagesize()));
5920 5931 }
5921 5932
5922 5933 static void
5923 5934 setup_data(void)
5924 5935 {
5925 5936 int size, offset;
5926 5937 ztest_shared_hdr_t *hdr;
5927 5938 uint8_t *buf;
5928 5939
5929 5940 hdr = (void *)mmap(0, P2ROUNDUP(sizeof (*hdr), getpagesize()),
5930 5941 PROT_READ, MAP_SHARED, ztest_fd_data, 0);
5931 5942 ASSERT(hdr != MAP_FAILED);
5932 5943
5933 5944 size = shared_data_size(hdr);
5934 5945
5935 5946 (void) munmap((caddr_t)hdr, P2ROUNDUP(sizeof (*hdr), getpagesize()));
5936 5947 hdr = ztest_shared_hdr = (void *)mmap(0, P2ROUNDUP(size, getpagesize()),
5937 5948 PROT_READ | PROT_WRITE, MAP_SHARED, ztest_fd_data, 0);
5938 5949 ASSERT(hdr != MAP_FAILED);
5939 5950 buf = (uint8_t *)hdr;
5940 5951
5941 5952 offset = hdr->zh_hdr_size;
5942 5953 ztest_shared_opts = (void *)&buf[offset];
5943 5954 offset += hdr->zh_opts_size;
5944 5955 ztest_shared = (void *)&buf[offset];
5945 5956 offset += hdr->zh_size;
5946 5957 ztest_shared_callstate = (void *)&buf[offset];
5947 5958 offset += hdr->zh_stats_size * hdr->zh_stats_count;
5948 5959 ztest_shared_ds = (void *)&buf[offset];
5949 5960 }
5950 5961
5951 5962 static boolean_t
5952 5963 exec_child(char *cmd, char *libpath, boolean_t ignorekill, int *statusp)
5953 5964 {
5954 5965 pid_t pid;
5955 5966 int status;
5956 5967 char *cmdbuf = NULL;
5957 5968
5958 5969 pid = fork();
5959 5970
5960 5971 if (cmd == NULL) {
5961 5972 cmdbuf = umem_alloc(MAXPATHLEN, UMEM_NOFAIL);
5962 5973 (void) strlcpy(cmdbuf, getexecname(), MAXPATHLEN);
5963 5974 cmd = cmdbuf;
5964 5975 }
5965 5976
5966 5977 if (pid == -1)
5967 5978 fatal(1, "fork failed");
5968 5979
5969 5980 if (pid == 0) { /* child */
5970 5981 char *emptyargv[2] = { cmd, NULL };
5971 5982 char fd_data_str[12];
5972 5983
5973 5984 struct rlimit rl = { 1024, 1024 };
5974 5985 (void) setrlimit(RLIMIT_NOFILE, &rl);
5975 5986
5976 5987 (void) close(ztest_fd_rand);
5977 5988 VERIFY3U(11, >=,
5978 5989 snprintf(fd_data_str, 12, "%d", ztest_fd_data));
5979 5990 VERIFY0(setenv("ZTEST_FD_DATA", fd_data_str, 1));
5980 5991
5981 5992 (void) enable_extended_FILE_stdio(-1, -1);
5982 5993 if (libpath != NULL)
5983 5994 VERIFY(0 == setenv("LD_LIBRARY_PATH", libpath, 1));
5984 5995 (void) execv(cmd, emptyargv);
5985 5996 ztest_dump_core = B_FALSE;
5986 5997 fatal(B_TRUE, "exec failed: %s", cmd);
5987 5998 }
5988 5999
5989 6000 if (cmdbuf != NULL) {
5990 6001 umem_free(cmdbuf, MAXPATHLEN);
5991 6002 cmd = NULL;
5992 6003 }
5993 6004
5994 6005 while (waitpid(pid, &status, 0) != pid)
5995 6006 continue;
5996 6007 if (statusp != NULL)
5997 6008 *statusp = status;
5998 6009
5999 6010 if (WIFEXITED(status)) {
6000 6011 if (WEXITSTATUS(status) != 0) {
6001 6012 (void) fprintf(stderr, "child exited with code %d\n",
6002 6013 WEXITSTATUS(status));
6003 6014 exit(2);
6004 6015 }
6005 6016 return (B_FALSE);
6006 6017 } else if (WIFSIGNALED(status)) {
6007 6018 if (!ignorekill || WTERMSIG(status) != SIGKILL) {
6008 6019 (void) fprintf(stderr, "child died with signal %d\n",
6009 6020 WTERMSIG(status));
6010 6021 exit(3);
6011 6022 }
6012 6023 return (B_TRUE);
6013 6024 } else {
6014 6025 (void) fprintf(stderr, "something strange happened to child\n");
6015 6026 exit(4);
6016 6027 /* NOTREACHED */
6017 6028 }
6018 6029 }
6019 6030
6020 6031 static void
6021 6032 ztest_run_init(void)
6022 6033 {
6023 6034 ztest_shared_t *zs = ztest_shared;
6024 6035
6025 6036 ASSERT(ztest_opts.zo_init != 0);
6026 6037
6027 6038 /*
6028 6039 * Blow away any existing copy of zpool.cache
6029 6040 */
6030 6041 (void) remove(spa_config_path);
6031 6042
6032 6043 /*
6033 6044 * Create and initialize our storage pool.
6034 6045 */
6035 6046 for (int i = 1; i <= ztest_opts.zo_init; i++) {
6036 6047 bzero(zs, sizeof (ztest_shared_t));
6037 6048 if (ztest_opts.zo_verbose >= 3 &&
6038 6049 ztest_opts.zo_init != 1) {
6039 6050 (void) printf("ztest_init(), pass %d\n", i);
6040 6051 }
6041 6052 ztest_init(zs);
6042 6053 }
6043 6054 }
6044 6055
6045 6056 int
6046 6057 main(int argc, char **argv)
6047 6058 {
6048 6059 int kills = 0;
6049 6060 int iters = 0;
6050 6061 int older = 0;
6051 6062 int newer = 0;
6052 6063 ztest_shared_t *zs;
6053 6064 ztest_info_t *zi;
6054 6065 ztest_shared_callstate_t *zc;
6055 6066 char timebuf[100];
6056 6067 char numbuf[6];
6057 6068 spa_t *spa;
6058 6069 char *cmd;
6059 6070 boolean_t hasalt;
6060 6071 char *fd_data_str = getenv("ZTEST_FD_DATA");
6061 6072
6062 6073 (void) setvbuf(stdout, NULL, _IOLBF, 0);
6063 6074
6064 6075 dprintf_setup(&argc, argv);
6065 6076 zfs_deadman_synctime = 300;
6066 6077
6067 6078 ztest_fd_rand = open("/dev/urandom", O_RDONLY);
6068 6079 ASSERT3S(ztest_fd_rand, >=, 0);
6069 6080
6070 6081 if (!fd_data_str) {
6071 6082 process_options(argc, argv);
6072 6083
6073 6084 setup_data_fd();
6074 6085 setup_hdr();
6075 6086 setup_data();
6076 6087 bcopy(&ztest_opts, ztest_shared_opts,
6077 6088 sizeof (*ztest_shared_opts));
6078 6089 } else {
6079 6090 ztest_fd_data = atoi(fd_data_str);
6080 6091 setup_data();
6081 6092 bcopy(ztest_shared_opts, &ztest_opts, sizeof (ztest_opts));
6082 6093 }
6083 6094 ASSERT3U(ztest_opts.zo_datasets, ==, ztest_shared_hdr->zh_ds_count);
6084 6095
6085 6096 /* Override location of zpool.cache */
6086 6097 VERIFY3U(asprintf((char **)&spa_config_path, "%s/zpool.cache",
6087 6098 ztest_opts.zo_dir), !=, -1);
6088 6099
6089 6100 ztest_ds = umem_alloc(ztest_opts.zo_datasets * sizeof (ztest_ds_t),
6090 6101 UMEM_NOFAIL);
6091 6102 zs = ztest_shared;
6092 6103
6093 6104 if (fd_data_str) {
6094 6105 metaslab_gang_bang = ztest_opts.zo_metaslab_gang_bang;
6095 6106 metaslab_df_alloc_threshold =
6096 6107 zs->zs_metaslab_df_alloc_threshold;
6097 6108
6098 6109 if (zs->zs_do_init)
6099 6110 ztest_run_init();
6100 6111 else
6101 6112 ztest_run(zs);
6102 6113 exit(0);
6103 6114 }
6104 6115
6105 6116 hasalt = (strlen(ztest_opts.zo_alt_ztest) != 0);
6106 6117
6107 6118 if (ztest_opts.zo_verbose >= 1) {
6108 6119 (void) printf("%llu vdevs, %d datasets, %d threads,"
6109 6120 " %llu seconds...\n",
6110 6121 (u_longlong_t)ztest_opts.zo_vdevs,
6111 6122 ztest_opts.zo_datasets,
6112 6123 ztest_opts.zo_threads,
6113 6124 (u_longlong_t)ztest_opts.zo_time);
6114 6125 }
6115 6126
6116 6127 cmd = umem_alloc(MAXNAMELEN, UMEM_NOFAIL);
6117 6128 (void) strlcpy(cmd, getexecname(), MAXNAMELEN);
6118 6129
6119 6130 zs->zs_do_init = B_TRUE;
6120 6131 if (strlen(ztest_opts.zo_alt_ztest) != 0) {
6121 6132 if (ztest_opts.zo_verbose >= 1) {
6122 6133 (void) printf("Executing older ztest for "
6123 6134 "initialization: %s\n", ztest_opts.zo_alt_ztest);
6124 6135 }
6125 6136 VERIFY(!exec_child(ztest_opts.zo_alt_ztest,
6126 6137 ztest_opts.zo_alt_libpath, B_FALSE, NULL));
6127 6138 } else {
6128 6139 VERIFY(!exec_child(NULL, NULL, B_FALSE, NULL));
6129 6140 }
6130 6141 zs->zs_do_init = B_FALSE;
6131 6142
6132 6143 zs->zs_proc_start = gethrtime();
6133 6144 zs->zs_proc_stop = zs->zs_proc_start + ztest_opts.zo_time * NANOSEC;
6134 6145
6135 6146 for (int f = 0; f < ZTEST_FUNCS; f++) {
6136 6147 zi = &ztest_info[f];
6137 6148 zc = ZTEST_GET_SHARED_CALLSTATE(f);
6138 6149 if (zs->zs_proc_start + zi->zi_interval[0] > zs->zs_proc_stop)
6139 6150 zc->zc_next = UINT64_MAX;
6140 6151 else
6141 6152 zc->zc_next = zs->zs_proc_start +
6142 6153 ztest_random(2 * zi->zi_interval[0] + 1);
6143 6154 }
6144 6155
6145 6156 /*
6146 6157 * Run the tests in a loop. These tests include fault injection
6147 6158 * to verify that self-healing data works, and forced crashes
6148 6159 * to verify that we never lose on-disk consistency.
6149 6160 */
6150 6161 while (gethrtime() < zs->zs_proc_stop) {
6151 6162 int status;
6152 6163 boolean_t killed;
6153 6164
6154 6165 /*
6155 6166 * Initialize the workload counters for each function.
6156 6167 */
6157 6168 for (int f = 0; f < ZTEST_FUNCS; f++) {
6158 6169 zc = ZTEST_GET_SHARED_CALLSTATE(f);
6159 6170 zc->zc_count = 0;
6160 6171 zc->zc_time = 0;
6161 6172 }
6162 6173
6163 6174 /* Set the allocation switch size */
6164 6175 zs->zs_metaslab_df_alloc_threshold =
6165 6176 ztest_random(zs->zs_metaslab_sz / 4) + 1;
6166 6177
6167 6178 if (!hasalt || ztest_random(2) == 0) {
6168 6179 if (hasalt && ztest_opts.zo_verbose >= 1) {
6169 6180 (void) printf("Executing newer ztest: %s\n",
6170 6181 cmd);
6171 6182 }
6172 6183 newer++;
6173 6184 killed = exec_child(cmd, NULL, B_TRUE, &status);
6174 6185 } else {
6175 6186 if (hasalt && ztest_opts.zo_verbose >= 1) {
6176 6187 (void) printf("Executing older ztest: %s\n",
6177 6188 ztest_opts.zo_alt_ztest);
6178 6189 }
6179 6190 older++;
6180 6191 killed = exec_child(ztest_opts.zo_alt_ztest,
6181 6192 ztest_opts.zo_alt_libpath, B_TRUE, &status);
6182 6193 }
6183 6194
6184 6195 if (killed)
6185 6196 kills++;
6186 6197 iters++;
6187 6198
6188 6199 if (ztest_opts.zo_verbose >= 1) {
6189 6200 hrtime_t now = gethrtime();
6190 6201
6191 6202 now = MIN(now, zs->zs_proc_stop);
6192 6203 print_time(zs->zs_proc_stop - now, timebuf);
6193 6204 nicenum(zs->zs_space, numbuf);
6194 6205
6195 6206 (void) printf("Pass %3d, %8s, %3llu ENOSPC, "
6196 6207 "%4.1f%% of %5s used, %3.0f%% done, %8s to go\n",
6197 6208 iters,
6198 6209 WIFEXITED(status) ? "Complete" : "SIGKILL",
6199 6210 (u_longlong_t)zs->zs_enospc_count,
6200 6211 100.0 * zs->zs_alloc / zs->zs_space,
6201 6212 numbuf,
6202 6213 100.0 * (now - zs->zs_proc_start) /
6203 6214 (ztest_opts.zo_time * NANOSEC), timebuf);
6204 6215 }
6205 6216
6206 6217 if (ztest_opts.zo_verbose >= 2) {
6207 6218 (void) printf("\nWorkload summary:\n\n");
6208 6219 (void) printf("%7s %9s %s\n",
6209 6220 "Calls", "Time", "Function");
6210 6221 (void) printf("%7s %9s %s\n",
6211 6222 "-----", "----", "--------");
6212 6223 for (int f = 0; f < ZTEST_FUNCS; f++) {
6213 6224 Dl_info dli;
6214 6225
6215 6226 zi = &ztest_info[f];
6216 6227 zc = ZTEST_GET_SHARED_CALLSTATE(f);
6217 6228 print_time(zc->zc_time, timebuf);
6218 6229 (void) dladdr((void *)zi->zi_func, &dli);
6219 6230 (void) printf("%7llu %9s %s\n",
6220 6231 (u_longlong_t)zc->zc_count, timebuf,
6221 6232 dli.dli_sname);
6222 6233 }
6223 6234 (void) printf("\n");
6224 6235 }
6225 6236
6226 6237 /*
6227 6238 * It's possible that we killed a child during a rename test,
6228 6239 * in which case we'll have a 'ztest_tmp' pool lying around
6229 6240 * instead of 'ztest'. Do a blind rename in case this happened.
6230 6241 */
6231 6242 kernel_init(FREAD);
6232 6243 if (spa_open(ztest_opts.zo_pool, &spa, FTAG) == 0) {
6233 6244 spa_close(spa, FTAG);
6234 6245 } else {
6235 6246 char tmpname[MAXNAMELEN];
6236 6247 kernel_fini();
6237 6248 kernel_init(FREAD | FWRITE);
6238 6249 (void) snprintf(tmpname, sizeof (tmpname), "%s_tmp",
6239 6250 ztest_opts.zo_pool);
6240 6251 (void) spa_rename(tmpname, ztest_opts.zo_pool);
6241 6252 }
6242 6253 kernel_fini();
6243 6254
6244 6255 ztest_run_zdb(ztest_opts.zo_pool);
6245 6256 }
6246 6257
6247 6258 if (ztest_opts.zo_verbose >= 1) {
6248 6259 if (hasalt) {
6249 6260 (void) printf("%d runs of older ztest: %s\n", older,
6250 6261 ztest_opts.zo_alt_ztest);
6251 6262 (void) printf("%d runs of newer ztest: %s\n", newer,
6252 6263 cmd);
6253 6264 }
6254 6265 (void) printf("%d killed, %d completed, %.0f%% kill rate\n",
6255 6266 kills, iters - kills, (100.0 * kills) / MAX(1, iters));
6256 6267 }
6257 6268
6258 6269 umem_free(cmd, MAXNAMELEN);
6259 6270
6260 6271 return (0);
6261 6272 }
↓ open down ↓ |
598 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX