xref: /illumos-gate/usr/src/cmd/ztest/ztest.c (revision 86c48bbfeb72d5a6ee171e713059939bab658b77)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 /*
27  * The objective of this program is to provide a DMU/ZAP/SPA stress test
28  * that runs entirely in userland, is easy to use, and easy to extend.
29  *
30  * The overall design of the ztest program is as follows:
31  *
32  * (1) For each major functional area (e.g. adding vdevs to a pool,
33  *     creating and destroying datasets, reading and writing objects, etc)
34  *     we have a simple routine to test that functionality.  These
35  *     individual routines do not have to do anything "stressful".
36  *
37  * (2) We turn these simple functionality tests into a stress test by
38  *     running them all in parallel, with as many threads as desired,
39  *     and spread across as many datasets, objects, and vdevs as desired.
40  *
41  * (3) While all this is happening, we inject faults into the pool to
42  *     verify that self-healing data really works.
43  *
44  * (4) Every time we open a dataset, we change its checksum and compression
45  *     functions.  Thus even individual objects vary from block to block
46  *     in which checksum they use and whether they're compressed.
47  *
48  * (5) To verify that we never lose on-disk consistency after a crash,
49  *     we run the entire test in a child of the main process.
50  *     At random times, the child self-immolates with a SIGKILL.
51  *     This is the software equivalent of pulling the power cord.
52  *     The parent then runs the test again, using the existing
53  *     storage pool, as many times as desired.
54  *
55  * (6) To verify that we don't have future leaks or temporal incursions,
56  *     many of the functional tests record the transaction group number
57  *     as part of their data.  When reading old data, they verify that
58  *     the transaction group number is less than the current, open txg.
59  *     If you add a new test, please do this if applicable.
60  *
61  * When run with no arguments, ztest runs for about five minutes and
62  * produces no output if successful.  To get a little bit of information,
63  * specify -V.  To get more information, specify -VV, and so on.
64  *
65  * To turn this into an overnight stress test, use -T to specify run time.
66  *
67  * You can ask more more vdevs [-v], datasets [-d], or threads [-t]
68  * to increase the pool capacity, fanout, and overall stress level.
69  *
70  * The -N(okill) option will suppress kills, so each child runs to completion.
71  * This can be useful when you're trying to distinguish temporal incursions
72  * from plain old race conditions.
73  */
74 
75 #include <sys/zfs_context.h>
76 #include <sys/spa.h>
77 #include <sys/dmu.h>
78 #include <sys/txg.h>
79 #include <sys/zap.h>
80 #include <sys/dmu_objset.h>
81 #include <sys/poll.h>
82 #include <sys/stat.h>
83 #include <sys/time.h>
84 #include <sys/wait.h>
85 #include <sys/mman.h>
86 #include <sys/resource.h>
87 #include <sys/zio.h>
88 #include <sys/zio_checksum.h>
89 #include <sys/zio_compress.h>
90 #include <sys/zil.h>
91 #include <sys/vdev_impl.h>
92 #include <sys/vdev_file.h>
93 #include <sys/spa_impl.h>
94 #include <sys/dsl_prop.h>
95 #include <sys/dsl_dataset.h>
96 #include <sys/refcount.h>
97 #include <stdio.h>
98 #include <stdio_ext.h>
99 #include <stdlib.h>
100 #include <unistd.h>
101 #include <signal.h>
102 #include <umem.h>
103 #include <dlfcn.h>
104 #include <ctype.h>
105 #include <math.h>
106 #include <sys/fs/zfs.h>
107 
108 static char cmdname[] = "ztest";
109 static char *zopt_pool = cmdname;
110 
111 static uint64_t zopt_vdevs = 5;
112 static uint64_t zopt_vdevtime;
113 static int zopt_ashift = SPA_MINBLOCKSHIFT;
114 static int zopt_mirrors = 2;
115 static int zopt_raidz = 4;
116 static int zopt_raidz_parity = 1;
117 static size_t zopt_vdev_size = SPA_MINDEVSIZE;
118 static int zopt_datasets = 7;
119 static int zopt_threads = 23;
120 static uint64_t zopt_passtime = 60;	/* 60 seconds */
121 static uint64_t zopt_killrate = 70;	/* 70% kill rate */
122 static int zopt_verbose = 0;
123 static int zopt_init = 1;
124 static char *zopt_dir = "/tmp";
125 static uint64_t zopt_time = 300;	/* 5 minutes */
126 static int zopt_maxfaults;
127 
128 typedef struct ztest_block_tag {
129 	uint64_t	bt_objset;
130 	uint64_t	bt_object;
131 	uint64_t	bt_offset;
132 	uint64_t	bt_txg;
133 	uint64_t	bt_thread;
134 	uint64_t	bt_seq;
135 } ztest_block_tag_t;
136 
137 typedef struct ztest_args {
138 	char		za_pool[MAXNAMELEN];
139 	spa_t		*za_spa;
140 	objset_t	*za_os;
141 	zilog_t		*za_zilog;
142 	thread_t	za_thread;
143 	uint64_t	za_instance;
144 	uint64_t	za_random;
145 	uint64_t	za_diroff;
146 	uint64_t	za_diroff_shared;
147 	uint64_t	za_zil_seq;
148 	hrtime_t	za_start;
149 	hrtime_t	za_stop;
150 	hrtime_t	za_kill;
151 	/*
152 	 * Thread-local variables can go here to aid debugging.
153 	 */
154 	ztest_block_tag_t za_rbt;
155 	ztest_block_tag_t za_wbt;
156 	dmu_object_info_t za_doi;
157 	dmu_buf_t	*za_dbuf;
158 } ztest_args_t;
159 
160 typedef void ztest_func_t(ztest_args_t *);
161 
162 /*
163  * Note: these aren't static because we want dladdr() to work.
164  */
165 ztest_func_t ztest_dmu_read_write;
166 ztest_func_t ztest_dmu_write_parallel;
167 ztest_func_t ztest_dmu_object_alloc_free;
168 ztest_func_t ztest_zap;
169 ztest_func_t ztest_zap_parallel;
170 ztest_func_t ztest_traverse;
171 ztest_func_t ztest_dsl_prop_get_set;
172 ztest_func_t ztest_dmu_objset_create_destroy;
173 ztest_func_t ztest_dmu_snapshot_create_destroy;
174 ztest_func_t ztest_dsl_dataset_promote_busy;
175 ztest_func_t ztest_spa_create_destroy;
176 ztest_func_t ztest_fault_inject;
177 ztest_func_t ztest_spa_rename;
178 ztest_func_t ztest_vdev_attach_detach;
179 ztest_func_t ztest_vdev_LUN_growth;
180 ztest_func_t ztest_vdev_add_remove;
181 ztest_func_t ztest_vdev_aux_add_remove;
182 ztest_func_t ztest_scrub;
183 
184 typedef struct ztest_info {
185 	ztest_func_t	*zi_func;	/* test function */
186 	uint64_t	zi_iters;	/* iterations per execution */
187 	uint64_t	*zi_interval;	/* execute every <interval> seconds */
188 	uint64_t	zi_calls;	/* per-pass count */
189 	uint64_t	zi_call_time;	/* per-pass time */
190 	uint64_t	zi_call_total;	/* cumulative total */
191 	uint64_t	zi_call_target;	/* target cumulative total */
192 } ztest_info_t;
193 
194 uint64_t zopt_always = 0;		/* all the time */
195 uint64_t zopt_often = 1;		/* every second */
196 uint64_t zopt_sometimes = 10;		/* every 10 seconds */
197 uint64_t zopt_rarely = 60;		/* every 60 seconds */
198 
199 ztest_info_t ztest_info[] = {
200 	{ ztest_dmu_read_write,			1,	&zopt_always	},
201 	{ ztest_dmu_write_parallel,		30,	&zopt_always	},
202 	{ ztest_dmu_object_alloc_free,		1,	&zopt_always	},
203 	{ ztest_zap,				30,	&zopt_always	},
204 	{ ztest_zap_parallel,			100,	&zopt_always	},
205 	{ ztest_dsl_prop_get_set,		1,	&zopt_sometimes	},
206 	{ ztest_dmu_objset_create_destroy,	1,	&zopt_sometimes },
207 	{ ztest_dmu_snapshot_create_destroy,	1,	&zopt_sometimes },
208 	{ ztest_dsl_dataset_promote_busy,	1,	&zopt_sometimes },
209 	{ ztest_spa_create_destroy,		1,	&zopt_sometimes },
210 	{ ztest_fault_inject,			1,	&zopt_sometimes	},
211 	{ ztest_spa_rename,			1,	&zopt_rarely	},
212 	{ ztest_vdev_attach_detach,		1,	&zopt_rarely	},
213 	{ ztest_vdev_LUN_growth,		1,	&zopt_rarely	},
214 	{ ztest_vdev_add_remove,		1,	&zopt_vdevtime	},
215 	{ ztest_vdev_aux_add_remove,		1,	&zopt_vdevtime	},
216 	{ ztest_scrub,				1,	&zopt_vdevtime	},
217 };
218 
219 #define	ZTEST_FUNCS	(sizeof (ztest_info) / sizeof (ztest_info_t))
220 
221 #define	ZTEST_SYNC_LOCKS	16
222 
223 /*
224  * Stuff we need to share writably between parent and child.
225  */
226 typedef struct ztest_shared {
227 	mutex_t		zs_vdev_lock;
228 	rwlock_t	zs_name_lock;
229 	uint64_t	zs_vdev_primaries;
230 	uint64_t	zs_vdev_aux;
231 	uint64_t	zs_enospc_count;
232 	hrtime_t	zs_start_time;
233 	hrtime_t	zs_stop_time;
234 	uint64_t	zs_alloc;
235 	uint64_t	zs_space;
236 	ztest_info_t	zs_info[ZTEST_FUNCS];
237 	mutex_t		zs_sync_lock[ZTEST_SYNC_LOCKS];
238 	uint64_t	zs_seq[ZTEST_SYNC_LOCKS];
239 } ztest_shared_t;
240 
241 static char ztest_dev_template[] = "%s/%s.%llua";
242 static char ztest_aux_template[] = "%s/%s.%s.%llu";
243 static ztest_shared_t *ztest_shared;
244 
245 static int ztest_random_fd;
246 static int ztest_dump_core = 1;
247 
248 static boolean_t ztest_exiting;
249 
250 extern uint64_t metaslab_gang_bang;
251 
252 #define	ZTEST_DIROBJ		1
253 #define	ZTEST_MICROZAP_OBJ	2
254 #define	ZTEST_FATZAP_OBJ	3
255 
256 #define	ZTEST_DIROBJ_BLOCKSIZE	(1 << 10)
257 #define	ZTEST_DIRSIZE		256
258 
259 static void usage(boolean_t) __NORETURN;
260 
261 /*
262  * These libumem hooks provide a reasonable set of defaults for the allocator's
263  * debugging facilities.
264  */
265 const char *
266 _umem_debug_init()
267 {
268 	return ("default,verbose"); /* $UMEM_DEBUG setting */
269 }
270 
271 const char *
272 _umem_logging_init(void)
273 {
274 	return ("fail,contents"); /* $UMEM_LOGGING setting */
275 }
276 
277 #define	FATAL_MSG_SZ	1024
278 
279 char *fatal_msg;
280 
281 static void
282 fatal(int do_perror, char *message, ...)
283 {
284 	va_list args;
285 	int save_errno = errno;
286 	char buf[FATAL_MSG_SZ];
287 
288 	(void) fflush(stdout);
289 
290 	va_start(args, message);
291 	(void) sprintf(buf, "ztest: ");
292 	/* LINTED */
293 	(void) vsprintf(buf + strlen(buf), message, args);
294 	va_end(args);
295 	if (do_perror) {
296 		(void) snprintf(buf + strlen(buf), FATAL_MSG_SZ - strlen(buf),
297 		    ": %s", strerror(save_errno));
298 	}
299 	(void) fprintf(stderr, "%s\n", buf);
300 	fatal_msg = buf;			/* to ease debugging */
301 	if (ztest_dump_core)
302 		abort();
303 	exit(3);
304 }
305 
306 static int
307 str2shift(const char *buf)
308 {
309 	const char *ends = "BKMGTPEZ";
310 	int i;
311 
312 	if (buf[0] == '\0')
313 		return (0);
314 	for (i = 0; i < strlen(ends); i++) {
315 		if (toupper(buf[0]) == ends[i])
316 			break;
317 	}
318 	if (i == strlen(ends)) {
319 		(void) fprintf(stderr, "ztest: invalid bytes suffix: %s\n",
320 		    buf);
321 		usage(B_FALSE);
322 	}
323 	if (buf[1] == '\0' || (toupper(buf[1]) == 'B' && buf[2] == '\0')) {
324 		return (10*i);
325 	}
326 	(void) fprintf(stderr, "ztest: invalid bytes suffix: %s\n", buf);
327 	usage(B_FALSE);
328 	/* NOTREACHED */
329 }
330 
331 static uint64_t
332 nicenumtoull(const char *buf)
333 {
334 	char *end;
335 	uint64_t val;
336 
337 	val = strtoull(buf, &end, 0);
338 	if (end == buf) {
339 		(void) fprintf(stderr, "ztest: bad numeric value: %s\n", buf);
340 		usage(B_FALSE);
341 	} else if (end[0] == '.') {
342 		double fval = strtod(buf, &end);
343 		fval *= pow(2, str2shift(end));
344 		if (fval > UINT64_MAX) {
345 			(void) fprintf(stderr, "ztest: value too large: %s\n",
346 			    buf);
347 			usage(B_FALSE);
348 		}
349 		val = (uint64_t)fval;
350 	} else {
351 		int shift = str2shift(end);
352 		if (shift >= 64 || (val << shift) >> shift != val) {
353 			(void) fprintf(stderr, "ztest: value too large: %s\n",
354 			    buf);
355 			usage(B_FALSE);
356 		}
357 		val <<= shift;
358 	}
359 	return (val);
360 }
361 
362 static void
363 usage(boolean_t requested)
364 {
365 	char nice_vdev_size[10];
366 	char nice_gang_bang[10];
367 	FILE *fp = requested ? stdout : stderr;
368 
369 	nicenum(zopt_vdev_size, nice_vdev_size);
370 	nicenum(metaslab_gang_bang, nice_gang_bang);
371 
372 	(void) fprintf(fp, "Usage: %s\n"
373 	    "\t[-v vdevs (default: %llu)]\n"
374 	    "\t[-s size_of_each_vdev (default: %s)]\n"
375 	    "\t[-a alignment_shift (default: %d) (use 0 for random)]\n"
376 	    "\t[-m mirror_copies (default: %d)]\n"
377 	    "\t[-r raidz_disks (default: %d)]\n"
378 	    "\t[-R raidz_parity (default: %d)]\n"
379 	    "\t[-d datasets (default: %d)]\n"
380 	    "\t[-t threads (default: %d)]\n"
381 	    "\t[-g gang_block_threshold (default: %s)]\n"
382 	    "\t[-i initialize pool i times (default: %d)]\n"
383 	    "\t[-k kill percentage (default: %llu%%)]\n"
384 	    "\t[-p pool_name (default: %s)]\n"
385 	    "\t[-f file directory for vdev files (default: %s)]\n"
386 	    "\t[-V(erbose)] (use multiple times for ever more blather)\n"
387 	    "\t[-E(xisting)] (use existing pool instead of creating new one)\n"
388 	    "\t[-T time] total run time (default: %llu sec)\n"
389 	    "\t[-P passtime] time per pass (default: %llu sec)\n"
390 	    "\t[-h] (print help)\n"
391 	    "",
392 	    cmdname,
393 	    (u_longlong_t)zopt_vdevs,			/* -v */
394 	    nice_vdev_size,				/* -s */
395 	    zopt_ashift,				/* -a */
396 	    zopt_mirrors,				/* -m */
397 	    zopt_raidz,					/* -r */
398 	    zopt_raidz_parity,				/* -R */
399 	    zopt_datasets,				/* -d */
400 	    zopt_threads,				/* -t */
401 	    nice_gang_bang,				/* -g */
402 	    zopt_init,					/* -i */
403 	    (u_longlong_t)zopt_killrate,		/* -k */
404 	    zopt_pool,					/* -p */
405 	    zopt_dir,					/* -f */
406 	    (u_longlong_t)zopt_time,			/* -T */
407 	    (u_longlong_t)zopt_passtime);		/* -P */
408 	exit(requested ? 0 : 1);
409 }
410 
411 static uint64_t
412 ztest_random(uint64_t range)
413 {
414 	uint64_t r;
415 
416 	if (range == 0)
417 		return (0);
418 
419 	if (read(ztest_random_fd, &r, sizeof (r)) != sizeof (r))
420 		fatal(1, "short read from /dev/urandom");
421 
422 	return (r % range);
423 }
424 
425 /* ARGSUSED */
426 static void
427 ztest_record_enospc(char *s)
428 {
429 	ztest_shared->zs_enospc_count++;
430 }
431 
432 static void
433 process_options(int argc, char **argv)
434 {
435 	int opt;
436 	uint64_t value;
437 
438 	/* By default, test gang blocks for blocks 32K and greater */
439 	metaslab_gang_bang = 32 << 10;
440 
441 	while ((opt = getopt(argc, argv,
442 	    "v:s:a:m:r:R:d:t:g:i:k:p:f:VET:P:h")) != EOF) {
443 		value = 0;
444 		switch (opt) {
445 		case 'v':
446 		case 's':
447 		case 'a':
448 		case 'm':
449 		case 'r':
450 		case 'R':
451 		case 'd':
452 		case 't':
453 		case 'g':
454 		case 'i':
455 		case 'k':
456 		case 'T':
457 		case 'P':
458 			value = nicenumtoull(optarg);
459 		}
460 		switch (opt) {
461 		case 'v':
462 			zopt_vdevs = value;
463 			break;
464 		case 's':
465 			zopt_vdev_size = MAX(SPA_MINDEVSIZE, value);
466 			break;
467 		case 'a':
468 			zopt_ashift = value;
469 			break;
470 		case 'm':
471 			zopt_mirrors = value;
472 			break;
473 		case 'r':
474 			zopt_raidz = MAX(1, value);
475 			break;
476 		case 'R':
477 			zopt_raidz_parity = MIN(MAX(value, 1), 2);
478 			break;
479 		case 'd':
480 			zopt_datasets = MAX(1, value);
481 			break;
482 		case 't':
483 			zopt_threads = MAX(1, value);
484 			break;
485 		case 'g':
486 			metaslab_gang_bang = MAX(SPA_MINBLOCKSIZE << 1, value);
487 			break;
488 		case 'i':
489 			zopt_init = value;
490 			break;
491 		case 'k':
492 			zopt_killrate = value;
493 			break;
494 		case 'p':
495 			zopt_pool = strdup(optarg);
496 			break;
497 		case 'f':
498 			zopt_dir = strdup(optarg);
499 			break;
500 		case 'V':
501 			zopt_verbose++;
502 			break;
503 		case 'E':
504 			zopt_init = 0;
505 			break;
506 		case 'T':
507 			zopt_time = value;
508 			break;
509 		case 'P':
510 			zopt_passtime = MAX(1, value);
511 			break;
512 		case 'h':
513 			usage(B_TRUE);
514 			break;
515 		case '?':
516 		default:
517 			usage(B_FALSE);
518 			break;
519 		}
520 	}
521 
522 	zopt_raidz_parity = MIN(zopt_raidz_parity, zopt_raidz - 1);
523 
524 	zopt_vdevtime = (zopt_vdevs > 0 ? zopt_time / zopt_vdevs : UINT64_MAX);
525 	zopt_maxfaults = MAX(zopt_mirrors, 1) * (zopt_raidz_parity + 1) - 1;
526 }
527 
528 static uint64_t
529 ztest_get_ashift(void)
530 {
531 	if (zopt_ashift == 0)
532 		return (SPA_MINBLOCKSHIFT + ztest_random(3));
533 	return (zopt_ashift);
534 }
535 
536 static nvlist_t *
537 make_vdev_file(char *path, char *aux, size_t size, uint64_t ashift)
538 {
539 	char pathbuf[MAXPATHLEN];
540 	uint64_t vdev;
541 	nvlist_t *file;
542 
543 	if (ashift == 0)
544 		ashift = ztest_get_ashift();
545 
546 	if (path == NULL) {
547 		path = pathbuf;
548 
549 		if (aux != NULL) {
550 			vdev = ztest_shared->zs_vdev_aux;
551 			(void) sprintf(path, ztest_aux_template,
552 			    zopt_dir, zopt_pool, aux, vdev);
553 		} else {
554 			vdev = ztest_shared->zs_vdev_primaries++;
555 			(void) sprintf(path, ztest_dev_template,
556 			    zopt_dir, zopt_pool, vdev);
557 		}
558 	}
559 
560 	if (size != 0) {
561 		int fd = open(path, O_RDWR | O_CREAT | O_TRUNC, 0666);
562 		if (fd == -1)
563 			fatal(1, "can't open %s", path);
564 		if (ftruncate(fd, size) != 0)
565 			fatal(1, "can't ftruncate %s", path);
566 		(void) close(fd);
567 	}
568 
569 	VERIFY(nvlist_alloc(&file, NV_UNIQUE_NAME, 0) == 0);
570 	VERIFY(nvlist_add_string(file, ZPOOL_CONFIG_TYPE, VDEV_TYPE_FILE) == 0);
571 	VERIFY(nvlist_add_string(file, ZPOOL_CONFIG_PATH, path) == 0);
572 	VERIFY(nvlist_add_uint64(file, ZPOOL_CONFIG_ASHIFT, ashift) == 0);
573 
574 	return (file);
575 }
576 
577 static nvlist_t *
578 make_vdev_raidz(char *path, char *aux, size_t size, uint64_t ashift, int r)
579 {
580 	nvlist_t *raidz, **child;
581 	int c;
582 
583 	if (r < 2)
584 		return (make_vdev_file(path, aux, size, ashift));
585 	child = umem_alloc(r * sizeof (nvlist_t *), UMEM_NOFAIL);
586 
587 	for (c = 0; c < r; c++)
588 		child[c] = make_vdev_file(path, aux, size, ashift);
589 
590 	VERIFY(nvlist_alloc(&raidz, NV_UNIQUE_NAME, 0) == 0);
591 	VERIFY(nvlist_add_string(raidz, ZPOOL_CONFIG_TYPE,
592 	    VDEV_TYPE_RAIDZ) == 0);
593 	VERIFY(nvlist_add_uint64(raidz, ZPOOL_CONFIG_NPARITY,
594 	    zopt_raidz_parity) == 0);
595 	VERIFY(nvlist_add_nvlist_array(raidz, ZPOOL_CONFIG_CHILDREN,
596 	    child, r) == 0);
597 
598 	for (c = 0; c < r; c++)
599 		nvlist_free(child[c]);
600 
601 	umem_free(child, r * sizeof (nvlist_t *));
602 
603 	return (raidz);
604 }
605 
606 static nvlist_t *
607 make_vdev_mirror(char *path, char *aux, size_t size, uint64_t ashift,
608 	int r, int m)
609 {
610 	nvlist_t *mirror, **child;
611 	int c;
612 
613 	if (m < 1)
614 		return (make_vdev_raidz(path, aux, size, ashift, r));
615 
616 	child = umem_alloc(m * sizeof (nvlist_t *), UMEM_NOFAIL);
617 
618 	for (c = 0; c < m; c++)
619 		child[c] = make_vdev_raidz(path, aux, size, ashift, r);
620 
621 	VERIFY(nvlist_alloc(&mirror, NV_UNIQUE_NAME, 0) == 0);
622 	VERIFY(nvlist_add_string(mirror, ZPOOL_CONFIG_TYPE,
623 	    VDEV_TYPE_MIRROR) == 0);
624 	VERIFY(nvlist_add_nvlist_array(mirror, ZPOOL_CONFIG_CHILDREN,
625 	    child, m) == 0);
626 
627 	for (c = 0; c < m; c++)
628 		nvlist_free(child[c]);
629 
630 	umem_free(child, m * sizeof (nvlist_t *));
631 
632 	return (mirror);
633 }
634 
635 static nvlist_t *
636 make_vdev_root(char *path, char *aux, size_t size, uint64_t ashift,
637 	int log, int r, int m, int t)
638 {
639 	nvlist_t *root, **child;
640 	int c;
641 
642 	ASSERT(t > 0);
643 
644 	child = umem_alloc(t * sizeof (nvlist_t *), UMEM_NOFAIL);
645 
646 	for (c = 0; c < t; c++) {
647 		child[c] = make_vdev_mirror(path, aux, size, ashift, r, m);
648 		VERIFY(nvlist_add_uint64(child[c], ZPOOL_CONFIG_IS_LOG,
649 		    log) == 0);
650 	}
651 
652 	VERIFY(nvlist_alloc(&root, NV_UNIQUE_NAME, 0) == 0);
653 	VERIFY(nvlist_add_string(root, ZPOOL_CONFIG_TYPE, VDEV_TYPE_ROOT) == 0);
654 	VERIFY(nvlist_add_nvlist_array(root, aux ? aux : ZPOOL_CONFIG_CHILDREN,
655 	    child, t) == 0);
656 
657 	for (c = 0; c < t; c++)
658 		nvlist_free(child[c]);
659 
660 	umem_free(child, t * sizeof (nvlist_t *));
661 
662 	return (root);
663 }
664 
665 static void
666 ztest_set_random_blocksize(objset_t *os, uint64_t object, dmu_tx_t *tx)
667 {
668 	int bs = SPA_MINBLOCKSHIFT +
669 	    ztest_random(SPA_MAXBLOCKSHIFT - SPA_MINBLOCKSHIFT + 1);
670 	int ibs = DN_MIN_INDBLKSHIFT +
671 	    ztest_random(DN_MAX_INDBLKSHIFT - DN_MIN_INDBLKSHIFT + 1);
672 	int error;
673 
674 	error = dmu_object_set_blocksize(os, object, 1ULL << bs, ibs, tx);
675 	if (error) {
676 		char osname[300];
677 		dmu_objset_name(os, osname);
678 		fatal(0, "dmu_object_set_blocksize('%s', %llu, %d, %d) = %d",
679 		    osname, object, 1 << bs, ibs, error);
680 	}
681 }
682 
683 static uint8_t
684 ztest_random_checksum(void)
685 {
686 	uint8_t checksum;
687 
688 	do {
689 		checksum = ztest_random(ZIO_CHECKSUM_FUNCTIONS);
690 	} while (zio_checksum_table[checksum].ci_zbt);
691 
692 	if (checksum == ZIO_CHECKSUM_OFF)
693 		checksum = ZIO_CHECKSUM_ON;
694 
695 	return (checksum);
696 }
697 
698 static uint8_t
699 ztest_random_compress(void)
700 {
701 	return ((uint8_t)ztest_random(ZIO_COMPRESS_FUNCTIONS));
702 }
703 
704 static int
705 ztest_replay_create(objset_t *os, lr_create_t *lr, boolean_t byteswap)
706 {
707 	dmu_tx_t *tx;
708 	int error;
709 
710 	if (byteswap)
711 		byteswap_uint64_array(lr, sizeof (*lr));
712 
713 	tx = dmu_tx_create(os);
714 	dmu_tx_hold_bonus(tx, DMU_NEW_OBJECT);
715 	error = dmu_tx_assign(tx, TXG_WAIT);
716 	if (error) {
717 		dmu_tx_abort(tx);
718 		return (error);
719 	}
720 
721 	error = dmu_object_claim(os, lr->lr_doid, lr->lr_mode, 0,
722 	    DMU_OT_NONE, 0, tx);
723 	ASSERT3U(error, ==, 0);
724 	dmu_tx_commit(tx);
725 
726 	if (zopt_verbose >= 5) {
727 		char osname[MAXNAMELEN];
728 		dmu_objset_name(os, osname);
729 		(void) printf("replay create of %s object %llu"
730 		    " in txg %llu = %d\n",
731 		    osname, (u_longlong_t)lr->lr_doid,
732 		    (u_longlong_t)dmu_tx_get_txg(tx), error);
733 	}
734 
735 	return (error);
736 }
737 
738 static int
739 ztest_replay_remove(objset_t *os, lr_remove_t *lr, boolean_t byteswap)
740 {
741 	dmu_tx_t *tx;
742 	int error;
743 
744 	if (byteswap)
745 		byteswap_uint64_array(lr, sizeof (*lr));
746 
747 	tx = dmu_tx_create(os);
748 	dmu_tx_hold_free(tx, lr->lr_doid, 0, DMU_OBJECT_END);
749 	error = dmu_tx_assign(tx, TXG_WAIT);
750 	if (error) {
751 		dmu_tx_abort(tx);
752 		return (error);
753 	}
754 
755 	error = dmu_object_free(os, lr->lr_doid, tx);
756 	dmu_tx_commit(tx);
757 
758 	return (error);
759 }
760 
761 zil_replay_func_t *ztest_replay_vector[TX_MAX_TYPE] = {
762 	NULL,			/* 0 no such transaction type */
763 	ztest_replay_create,	/* TX_CREATE */
764 	NULL,			/* TX_MKDIR */
765 	NULL,			/* TX_MKXATTR */
766 	NULL,			/* TX_SYMLINK */
767 	ztest_replay_remove,	/* TX_REMOVE */
768 	NULL,			/* TX_RMDIR */
769 	NULL,			/* TX_LINK */
770 	NULL,			/* TX_RENAME */
771 	NULL,			/* TX_WRITE */
772 	NULL,			/* TX_TRUNCATE */
773 	NULL,			/* TX_SETATTR */
774 	NULL,			/* TX_ACL */
775 };
776 
777 /*
778  * Verify that we can't destroy an active pool, create an existing pool,
779  * or create a pool with a bad vdev spec.
780  */
781 void
782 ztest_spa_create_destroy(ztest_args_t *za)
783 {
784 	int error;
785 	spa_t *spa;
786 	nvlist_t *nvroot;
787 
788 	/*
789 	 * Attempt to create using a bad file.
790 	 */
791 	nvroot = make_vdev_root("/dev/bogus", NULL, 0, 0, 0, 0, 0, 1);
792 	error = spa_create("ztest_bad_file", nvroot, NULL, NULL, NULL);
793 	nvlist_free(nvroot);
794 	if (error != ENOENT)
795 		fatal(0, "spa_create(bad_file) = %d", error);
796 
797 	/*
798 	 * Attempt to create using a bad mirror.
799 	 */
800 	nvroot = make_vdev_root("/dev/bogus", NULL, 0, 0, 0, 0, 2, 1);
801 	error = spa_create("ztest_bad_mirror", nvroot, NULL, NULL, NULL);
802 	nvlist_free(nvroot);
803 	if (error != ENOENT)
804 		fatal(0, "spa_create(bad_mirror) = %d", error);
805 
806 	/*
807 	 * Attempt to create an existing pool.  It shouldn't matter
808 	 * what's in the nvroot; we should fail with EEXIST.
809 	 */
810 	(void) rw_rdlock(&ztest_shared->zs_name_lock);
811 	nvroot = make_vdev_root("/dev/bogus", NULL, 0, 0, 0, 0, 0, 1);
812 	error = spa_create(za->za_pool, nvroot, NULL, NULL, NULL);
813 	nvlist_free(nvroot);
814 	if (error != EEXIST)
815 		fatal(0, "spa_create(whatever) = %d", error);
816 
817 	error = spa_open(za->za_pool, &spa, FTAG);
818 	if (error)
819 		fatal(0, "spa_open() = %d", error);
820 
821 	error = spa_destroy(za->za_pool);
822 	if (error != EBUSY)
823 		fatal(0, "spa_destroy() = %d", error);
824 
825 	spa_close(spa, FTAG);
826 	(void) rw_unlock(&ztest_shared->zs_name_lock);
827 }
828 
829 static vdev_t *
830 vdev_lookup_by_path(vdev_t *vd, const char *path)
831 {
832 	vdev_t *mvd;
833 
834 	if (vd->vdev_path != NULL && strcmp(path, vd->vdev_path) == 0)
835 		return (vd);
836 
837 	for (int c = 0; c < vd->vdev_children; c++)
838 		if ((mvd = vdev_lookup_by_path(vd->vdev_child[c], path)) !=
839 		    NULL)
840 			return (mvd);
841 
842 	return (NULL);
843 }
844 
845 /*
846  * Verify that vdev_add() works as expected.
847  */
848 void
849 ztest_vdev_add_remove(ztest_args_t *za)
850 {
851 	spa_t *spa = za->za_spa;
852 	uint64_t leaves = MAX(zopt_mirrors, 1) * zopt_raidz;
853 	nvlist_t *nvroot;
854 	int error;
855 
856 	(void) mutex_lock(&ztest_shared->zs_vdev_lock);
857 
858 	spa_config_enter(spa, SCL_VDEV, FTAG, RW_READER);
859 
860 	ztest_shared->zs_vdev_primaries =
861 	    spa->spa_root_vdev->vdev_children * leaves;
862 
863 	spa_config_exit(spa, SCL_VDEV, FTAG);
864 
865 	/*
866 	 * Make 1/4 of the devices be log devices.
867 	 */
868 	nvroot = make_vdev_root(NULL, NULL, zopt_vdev_size, 0,
869 	    ztest_random(4) == 0, zopt_raidz, zopt_mirrors, 1);
870 
871 	error = spa_vdev_add(spa, nvroot);
872 	nvlist_free(nvroot);
873 
874 	(void) mutex_unlock(&ztest_shared->zs_vdev_lock);
875 
876 	if (error == ENOSPC)
877 		ztest_record_enospc("spa_vdev_add");
878 	else if (error != 0)
879 		fatal(0, "spa_vdev_add() = %d", error);
880 }
881 
882 /*
883  * Verify that adding/removing aux devices (l2arc, hot spare) works as expected.
884  */
885 void
886 ztest_vdev_aux_add_remove(ztest_args_t *za)
887 {
888 	spa_t *spa = za->za_spa;
889 	vdev_t *rvd = spa->spa_root_vdev;
890 	spa_aux_vdev_t *sav;
891 	char *aux;
892 	uint64_t guid = 0;
893 	int error;
894 
895 	if (ztest_random(2) == 0) {
896 		sav = &spa->spa_spares;
897 		aux = ZPOOL_CONFIG_SPARES;
898 	} else {
899 		sav = &spa->spa_l2cache;
900 		aux = ZPOOL_CONFIG_L2CACHE;
901 	}
902 
903 	(void) mutex_lock(&ztest_shared->zs_vdev_lock);
904 
905 	spa_config_enter(spa, SCL_VDEV, FTAG, RW_READER);
906 
907 	if (sav->sav_count != 0 && ztest_random(4) == 0) {
908 		/*
909 		 * Pick a random device to remove.
910 		 */
911 		guid = sav->sav_vdevs[ztest_random(sav->sav_count)]->vdev_guid;
912 	} else {
913 		/*
914 		 * Find an unused device we can add.
915 		 */
916 		ztest_shared->zs_vdev_aux = 0;
917 		for (;;) {
918 			char path[MAXPATHLEN];
919 			int c;
920 			(void) sprintf(path, ztest_aux_template, zopt_dir,
921 			    zopt_pool, aux, ztest_shared->zs_vdev_aux);
922 			for (c = 0; c < sav->sav_count; c++)
923 				if (strcmp(sav->sav_vdevs[c]->vdev_path,
924 				    path) == 0)
925 					break;
926 			if (c == sav->sav_count &&
927 			    vdev_lookup_by_path(rvd, path) == NULL)
928 				break;
929 			ztest_shared->zs_vdev_aux++;
930 		}
931 	}
932 
933 	spa_config_exit(spa, SCL_VDEV, FTAG);
934 
935 	if (guid == 0) {
936 		/*
937 		 * Add a new device.
938 		 */
939 		nvlist_t *nvroot = make_vdev_root(NULL, aux,
940 		    (zopt_vdev_size * 5) / 4, 0, 0, 0, 0, 1);
941 		error = spa_vdev_add(spa, nvroot);
942 		if (error != 0)
943 			fatal(0, "spa_vdev_add(%p) = %d", nvroot, error);
944 		nvlist_free(nvroot);
945 	} else {
946 		/*
947 		 * Remove an existing device.  Sometimes, dirty its
948 		 * vdev state first to make sure we handle removal
949 		 * of devices that have pending state changes.
950 		 */
951 		if (ztest_random(2) == 0)
952 			(void) vdev_online(spa, guid, B_FALSE, NULL);
953 
954 		error = spa_vdev_remove(spa, guid, B_FALSE);
955 		if (error != 0 && error != EBUSY)
956 			fatal(0, "spa_vdev_remove(%llu) = %d", guid, error);
957 	}
958 
959 	(void) mutex_unlock(&ztest_shared->zs_vdev_lock);
960 }
961 
962 /*
963  * Verify that we can attach and detach devices.
964  */
965 void
966 ztest_vdev_attach_detach(ztest_args_t *za)
967 {
968 	spa_t *spa = za->za_spa;
969 	spa_aux_vdev_t *sav = &spa->spa_spares;
970 	vdev_t *rvd = spa->spa_root_vdev;
971 	vdev_t *oldvd, *newvd, *pvd;
972 	nvlist_t *root;
973 	uint64_t leaves = MAX(zopt_mirrors, 1) * zopt_raidz;
974 	uint64_t leaf, top;
975 	uint64_t ashift = ztest_get_ashift();
976 	uint64_t oldguid, pguid;
977 	size_t oldsize, newsize;
978 	char oldpath[MAXPATHLEN], newpath[MAXPATHLEN];
979 	int replacing;
980 	int oldvd_has_siblings = B_FALSE;
981 	int newvd_is_spare = B_FALSE;
982 	int oldvd_is_log;
983 	int error, expected_error;
984 
985 	(void) mutex_lock(&ztest_shared->zs_vdev_lock);
986 
987 	spa_config_enter(spa, SCL_VDEV, FTAG, RW_READER);
988 
989 	/*
990 	 * Decide whether to do an attach or a replace.
991 	 */
992 	replacing = ztest_random(2);
993 
994 	/*
995 	 * Pick a random top-level vdev.
996 	 */
997 	top = ztest_random(rvd->vdev_children);
998 
999 	/*
1000 	 * Pick a random leaf within it.
1001 	 */
1002 	leaf = ztest_random(leaves);
1003 
1004 	/*
1005 	 * Locate this vdev.
1006 	 */
1007 	oldvd = rvd->vdev_child[top];
1008 	if (zopt_mirrors >= 1) {
1009 		ASSERT(oldvd->vdev_ops == &vdev_mirror_ops);
1010 		ASSERT(oldvd->vdev_children >= zopt_mirrors);
1011 		oldvd = oldvd->vdev_child[leaf / zopt_raidz];
1012 	}
1013 	if (zopt_raidz > 1) {
1014 		ASSERT(oldvd->vdev_ops == &vdev_raidz_ops);
1015 		ASSERT(oldvd->vdev_children == zopt_raidz);
1016 		oldvd = oldvd->vdev_child[leaf % zopt_raidz];
1017 	}
1018 
1019 	/*
1020 	 * If we're already doing an attach or replace, oldvd may be a
1021 	 * mirror vdev -- in which case, pick a random child.
1022 	 */
1023 	while (oldvd->vdev_children != 0) {
1024 		oldvd_has_siblings = B_TRUE;
1025 		ASSERT(oldvd->vdev_children >= 2);
1026 		oldvd = oldvd->vdev_child[ztest_random(oldvd->vdev_children)];
1027 	}
1028 
1029 	oldguid = oldvd->vdev_guid;
1030 	oldsize = vdev_get_rsize(oldvd);
1031 	oldvd_is_log = oldvd->vdev_top->vdev_islog;
1032 	(void) strcpy(oldpath, oldvd->vdev_path);
1033 	pvd = oldvd->vdev_parent;
1034 	pguid = pvd->vdev_guid;
1035 
1036 	/*
1037 	 * If oldvd has siblings, then half of the time, detach it.
1038 	 */
1039 	if (oldvd_has_siblings && ztest_random(2) == 0) {
1040 		spa_config_exit(spa, SCL_VDEV, FTAG);
1041 		error = spa_vdev_detach(spa, oldguid, pguid, B_FALSE);
1042 		if (error != 0 && error != ENODEV && error != EBUSY &&
1043 		    error != ENOTSUP)
1044 			fatal(0, "detach (%s) returned %d", oldpath, error);
1045 		(void) mutex_unlock(&ztest_shared->zs_vdev_lock);
1046 		return;
1047 	}
1048 
1049 	/*
1050 	 * For the new vdev, choose with equal probability between the two
1051 	 * standard paths (ending in either 'a' or 'b') or a random hot spare.
1052 	 */
1053 	if (sav->sav_count != 0 && ztest_random(3) == 0) {
1054 		newvd = sav->sav_vdevs[ztest_random(sav->sav_count)];
1055 		newvd_is_spare = B_TRUE;
1056 		(void) strcpy(newpath, newvd->vdev_path);
1057 	} else {
1058 		(void) snprintf(newpath, sizeof (newpath), ztest_dev_template,
1059 		    zopt_dir, zopt_pool, top * leaves + leaf);
1060 		if (ztest_random(2) == 0)
1061 			newpath[strlen(newpath) - 1] = 'b';
1062 		newvd = vdev_lookup_by_path(rvd, newpath);
1063 	}
1064 
1065 	if (newvd) {
1066 		newsize = vdev_get_rsize(newvd);
1067 	} else {
1068 		/*
1069 		 * Make newsize a little bigger or smaller than oldsize.
1070 		 * If it's smaller, the attach should fail.
1071 		 * If it's larger, and we're doing a replace,
1072 		 * we should get dynamic LUN growth when we're done.
1073 		 */
1074 		newsize = 10 * oldsize / (9 + ztest_random(3));
1075 	}
1076 
1077 	/*
1078 	 * If pvd is not a mirror or root, the attach should fail with ENOTSUP,
1079 	 * unless it's a replace; in that case any non-replacing parent is OK.
1080 	 *
1081 	 * If newvd is already part of the pool, it should fail with EBUSY.
1082 	 *
1083 	 * If newvd is too small, it should fail with EOVERFLOW.
1084 	 */
1085 	if (pvd->vdev_ops != &vdev_mirror_ops &&
1086 	    pvd->vdev_ops != &vdev_root_ops && (!replacing ||
1087 	    pvd->vdev_ops == &vdev_replacing_ops ||
1088 	    pvd->vdev_ops == &vdev_spare_ops))
1089 		expected_error = ENOTSUP;
1090 	else if (newvd_is_spare && (!replacing || oldvd_is_log))
1091 		expected_error = ENOTSUP;
1092 	else if (newvd == oldvd)
1093 		expected_error = replacing ? 0 : EBUSY;
1094 	else if (vdev_lookup_by_path(rvd, newpath) != NULL)
1095 		expected_error = EBUSY;
1096 	else if (newsize < oldsize)
1097 		expected_error = EOVERFLOW;
1098 	else if (ashift > oldvd->vdev_top->vdev_ashift)
1099 		expected_error = EDOM;
1100 	else
1101 		expected_error = 0;
1102 
1103 	spa_config_exit(spa, SCL_VDEV, FTAG);
1104 
1105 	/*
1106 	 * Build the nvlist describing newpath.
1107 	 */
1108 	root = make_vdev_root(newpath, NULL, newvd == NULL ? newsize : 0,
1109 	    ashift, 0, 0, 0, 1);
1110 
1111 	error = spa_vdev_attach(spa, oldguid, root, replacing);
1112 
1113 	nvlist_free(root);
1114 
1115 	/*
1116 	 * If our parent was the replacing vdev, but the replace completed,
1117 	 * then instead of failing with ENOTSUP we may either succeed,
1118 	 * fail with ENODEV, or fail with EOVERFLOW.
1119 	 */
1120 	if (expected_error == ENOTSUP &&
1121 	    (error == 0 || error == ENODEV || error == EOVERFLOW))
1122 		expected_error = error;
1123 
1124 	/*
1125 	 * If someone grew the LUN, the replacement may be too small.
1126 	 */
1127 	if (error == EOVERFLOW || error == EBUSY)
1128 		expected_error = error;
1129 
1130 	/* XXX workaround 6690467 */
1131 	if (error != expected_error && expected_error != EBUSY) {
1132 		fatal(0, "attach (%s %llu, %s %llu, %d) "
1133 		    "returned %d, expected %d",
1134 		    oldpath, (longlong_t)oldsize, newpath,
1135 		    (longlong_t)newsize, replacing, error, expected_error);
1136 	}
1137 
1138 	(void) mutex_unlock(&ztest_shared->zs_vdev_lock);
1139 }
1140 
1141 /*
1142  * Verify that dynamic LUN growth works as expected.
1143  */
1144 void
1145 ztest_vdev_LUN_growth(ztest_args_t *za)
1146 {
1147 	spa_t *spa = za->za_spa;
1148 	char dev_name[MAXPATHLEN];
1149 	uint64_t leaves = MAX(zopt_mirrors, 1) * zopt_raidz;
1150 	uint64_t vdev;
1151 	size_t fsize;
1152 	int fd;
1153 
1154 	(void) mutex_lock(&ztest_shared->zs_vdev_lock);
1155 
1156 	/*
1157 	 * Pick a random leaf vdev.
1158 	 */
1159 	spa_config_enter(spa, SCL_VDEV, FTAG, RW_READER);
1160 	vdev = ztest_random(spa->spa_root_vdev->vdev_children * leaves);
1161 	spa_config_exit(spa, SCL_VDEV, FTAG);
1162 
1163 	(void) sprintf(dev_name, ztest_dev_template, zopt_dir, zopt_pool, vdev);
1164 
1165 	if ((fd = open(dev_name, O_RDWR)) != -1) {
1166 		/*
1167 		 * Determine the size.
1168 		 */
1169 		fsize = lseek(fd, 0, SEEK_END);
1170 
1171 		/*
1172 		 * If it's less than 2x the original size, grow by around 3%.
1173 		 */
1174 		if (fsize < 2 * zopt_vdev_size) {
1175 			size_t newsize = fsize + ztest_random(fsize / 32);
1176 			(void) ftruncate(fd, newsize);
1177 			if (zopt_verbose >= 6) {
1178 				(void) printf("%s grew from %lu to %lu bytes\n",
1179 				    dev_name, (ulong_t)fsize, (ulong_t)newsize);
1180 			}
1181 		}
1182 		(void) close(fd);
1183 	}
1184 
1185 	(void) mutex_unlock(&ztest_shared->zs_vdev_lock);
1186 }
1187 
1188 /* ARGSUSED */
1189 static void
1190 ztest_create_cb(objset_t *os, void *arg, cred_t *cr, dmu_tx_t *tx)
1191 {
1192 	/*
1193 	 * Create the directory object.
1194 	 */
1195 	VERIFY(dmu_object_claim(os, ZTEST_DIROBJ,
1196 	    DMU_OT_UINT64_OTHER, ZTEST_DIROBJ_BLOCKSIZE,
1197 	    DMU_OT_UINT64_OTHER, 5 * sizeof (ztest_block_tag_t), tx) == 0);
1198 
1199 	VERIFY(zap_create_claim(os, ZTEST_MICROZAP_OBJ,
1200 	    DMU_OT_ZAP_OTHER, DMU_OT_NONE, 0, tx) == 0);
1201 
1202 	VERIFY(zap_create_claim(os, ZTEST_FATZAP_OBJ,
1203 	    DMU_OT_ZAP_OTHER, DMU_OT_NONE, 0, tx) == 0);
1204 }
1205 
1206 static int
1207 ztest_destroy_cb(char *name, void *arg)
1208 {
1209 	ztest_args_t *za = arg;
1210 	objset_t *os;
1211 	dmu_object_info_t *doi = &za->za_doi;
1212 	int error;
1213 
1214 	/*
1215 	 * Verify that the dataset contains a directory object.
1216 	 */
1217 	error = dmu_objset_open(name, DMU_OST_OTHER,
1218 	    DS_MODE_USER | DS_MODE_READONLY, &os);
1219 	ASSERT3U(error, ==, 0);
1220 	error = dmu_object_info(os, ZTEST_DIROBJ, doi);
1221 	if (error != ENOENT) {
1222 		/* We could have crashed in the middle of destroying it */
1223 		ASSERT3U(error, ==, 0);
1224 		ASSERT3U(doi->doi_type, ==, DMU_OT_UINT64_OTHER);
1225 		ASSERT3S(doi->doi_physical_blks, >=, 0);
1226 	}
1227 	dmu_objset_close(os);
1228 
1229 	/*
1230 	 * Destroy the dataset.
1231 	 */
1232 	error = dmu_objset_destroy(name);
1233 	if (error) {
1234 		(void) dmu_objset_open(name, DMU_OST_OTHER,
1235 		    DS_MODE_USER | DS_MODE_READONLY, &os);
1236 		fatal(0, "dmu_objset_destroy(os=%p) = %d\n", &os, error);
1237 	}
1238 	return (0);
1239 }
1240 
1241 /*
1242  * Verify that dmu_objset_{create,destroy,open,close} work as expected.
1243  */
1244 static uint64_t
1245 ztest_log_create(zilog_t *zilog, dmu_tx_t *tx, uint64_t object, int mode)
1246 {
1247 	itx_t *itx;
1248 	lr_create_t *lr;
1249 	size_t namesize;
1250 	char name[24];
1251 
1252 	(void) sprintf(name, "ZOBJ_%llu", (u_longlong_t)object);
1253 	namesize = strlen(name) + 1;
1254 
1255 	itx = zil_itx_create(TX_CREATE, sizeof (*lr) + namesize +
1256 	    ztest_random(ZIL_MAX_BLKSZ));
1257 	lr = (lr_create_t *)&itx->itx_lr;
1258 	bzero(lr + 1, lr->lr_common.lrc_reclen - sizeof (*lr));
1259 	lr->lr_doid = object;
1260 	lr->lr_foid = 0;
1261 	lr->lr_mode = mode;
1262 	lr->lr_uid = 0;
1263 	lr->lr_gid = 0;
1264 	lr->lr_gen = dmu_tx_get_txg(tx);
1265 	lr->lr_crtime[0] = time(NULL);
1266 	lr->lr_crtime[1] = 0;
1267 	lr->lr_rdev = 0;
1268 	bcopy(name, (char *)(lr + 1), namesize);
1269 
1270 	return (zil_itx_assign(zilog, itx, tx));
1271 }
1272 
1273 void
1274 ztest_dmu_objset_create_destroy(ztest_args_t *za)
1275 {
1276 	int error;
1277 	objset_t *os, *os2;
1278 	char name[100];
1279 	int basemode, expected_error;
1280 	zilog_t *zilog;
1281 	uint64_t seq;
1282 	uint64_t objects;
1283 
1284 	(void) rw_rdlock(&ztest_shared->zs_name_lock);
1285 	(void) snprintf(name, 100, "%s/%s_temp_%llu", za->za_pool, za->za_pool,
1286 	    (u_longlong_t)za->za_instance);
1287 
1288 	basemode = DS_MODE_TYPE(za->za_instance);
1289 	if (basemode != DS_MODE_USER && basemode != DS_MODE_OWNER)
1290 		basemode = DS_MODE_USER;
1291 
1292 	/*
1293 	 * If this dataset exists from a previous run, process its replay log
1294 	 * half of the time.  If we don't replay it, then dmu_objset_destroy()
1295 	 * (invoked from ztest_destroy_cb() below) should just throw it away.
1296 	 */
1297 	if (ztest_random(2) == 0 &&
1298 	    dmu_objset_open(name, DMU_OST_OTHER, DS_MODE_OWNER, &os) == 0) {
1299 		zil_replay(os, os, ztest_replay_vector);
1300 		dmu_objset_close(os);
1301 	}
1302 
1303 	/*
1304 	 * There may be an old instance of the dataset we're about to
1305 	 * create lying around from a previous run.  If so, destroy it
1306 	 * and all of its snapshots.
1307 	 */
1308 	(void) dmu_objset_find(name, ztest_destroy_cb, za,
1309 	    DS_FIND_CHILDREN | DS_FIND_SNAPSHOTS);
1310 
1311 	/*
1312 	 * Verify that the destroyed dataset is no longer in the namespace.
1313 	 */
1314 	error = dmu_objset_open(name, DMU_OST_OTHER, basemode, &os);
1315 	if (error != ENOENT)
1316 		fatal(1, "dmu_objset_open(%s) found destroyed dataset %p",
1317 		    name, os);
1318 
1319 	/*
1320 	 * Verify that we can create a new dataset.
1321 	 */
1322 	error = dmu_objset_create(name, DMU_OST_OTHER, NULL, 0,
1323 	    ztest_create_cb, NULL);
1324 	if (error) {
1325 		if (error == ENOSPC) {
1326 			ztest_record_enospc("dmu_objset_create");
1327 			(void) rw_unlock(&ztest_shared->zs_name_lock);
1328 			return;
1329 		}
1330 		fatal(0, "dmu_objset_create(%s) = %d", name, error);
1331 	}
1332 
1333 	error = dmu_objset_open(name, DMU_OST_OTHER, basemode, &os);
1334 	if (error) {
1335 		fatal(0, "dmu_objset_open(%s) = %d", name, error);
1336 	}
1337 
1338 	/*
1339 	 * Open the intent log for it.
1340 	 */
1341 	zilog = zil_open(os, NULL);
1342 
1343 	/*
1344 	 * Put a random number of objects in there.
1345 	 */
1346 	objects = ztest_random(20);
1347 	seq = 0;
1348 	while (objects-- != 0) {
1349 		uint64_t object;
1350 		dmu_tx_t *tx = dmu_tx_create(os);
1351 		dmu_tx_hold_write(tx, DMU_NEW_OBJECT, 0, sizeof (name));
1352 		error = dmu_tx_assign(tx, TXG_WAIT);
1353 		if (error) {
1354 			dmu_tx_abort(tx);
1355 		} else {
1356 			object = dmu_object_alloc(os, DMU_OT_UINT64_OTHER, 0,
1357 			    DMU_OT_NONE, 0, tx);
1358 			ztest_set_random_blocksize(os, object, tx);
1359 			seq = ztest_log_create(zilog, tx, object,
1360 			    DMU_OT_UINT64_OTHER);
1361 			dmu_write(os, object, 0, sizeof (name), name, tx);
1362 			dmu_tx_commit(tx);
1363 		}
1364 		if (ztest_random(5) == 0) {
1365 			zil_commit(zilog, seq, object);
1366 		}
1367 		if (ztest_random(100) == 0) {
1368 			error = zil_suspend(zilog);
1369 			if (error == 0) {
1370 				zil_resume(zilog);
1371 			}
1372 		}
1373 	}
1374 
1375 	/*
1376 	 * Verify that we cannot create an existing dataset.
1377 	 */
1378 	error = dmu_objset_create(name, DMU_OST_OTHER, NULL, 0, NULL, NULL);
1379 	if (error != EEXIST)
1380 		fatal(0, "created existing dataset, error = %d", error);
1381 
1382 	/*
1383 	 * Verify that multiple dataset holds are allowed, but only when
1384 	 * the new access mode is compatible with the base mode.
1385 	 */
1386 	if (basemode == DS_MODE_OWNER) {
1387 		error = dmu_objset_open(name, DMU_OST_OTHER, DS_MODE_USER,
1388 		    &os2);
1389 		if (error)
1390 			fatal(0, "dmu_objset_open('%s') = %d", name, error);
1391 		else
1392 			dmu_objset_close(os2);
1393 	}
1394 	error = dmu_objset_open(name, DMU_OST_OTHER, DS_MODE_OWNER, &os2);
1395 	expected_error = (basemode == DS_MODE_OWNER) ? EBUSY : 0;
1396 	if (error != expected_error)
1397 		fatal(0, "dmu_objset_open('%s') = %d, expected %d",
1398 		    name, error, expected_error);
1399 	if (error == 0)
1400 		dmu_objset_close(os2);
1401 
1402 	zil_close(zilog);
1403 	dmu_objset_close(os);
1404 
1405 	error = dmu_objset_destroy(name);
1406 	if (error)
1407 		fatal(0, "dmu_objset_destroy(%s) = %d", name, error);
1408 
1409 	(void) rw_unlock(&ztest_shared->zs_name_lock);
1410 }
1411 
1412 /*
1413  * Verify that dmu_snapshot_{create,destroy,open,close} work as expected.
1414  */
1415 void
1416 ztest_dmu_snapshot_create_destroy(ztest_args_t *za)
1417 {
1418 	int error;
1419 	objset_t *os = za->za_os;
1420 	char snapname[100];
1421 	char osname[MAXNAMELEN];
1422 
1423 	(void) rw_rdlock(&ztest_shared->zs_name_lock);
1424 	dmu_objset_name(os, osname);
1425 	(void) snprintf(snapname, 100, "%s@%llu", osname,
1426 	    (u_longlong_t)za->za_instance);
1427 
1428 	error = dmu_objset_destroy(snapname);
1429 	if (error != 0 && error != ENOENT)
1430 		fatal(0, "dmu_objset_destroy() = %d", error);
1431 	error = dmu_objset_snapshot(osname, strchr(snapname, '@')+1, FALSE);
1432 	if (error == ENOSPC)
1433 		ztest_record_enospc("dmu_take_snapshot");
1434 	else if (error != 0 && error != EEXIST)
1435 		fatal(0, "dmu_take_snapshot() = %d", error);
1436 	(void) rw_unlock(&ztest_shared->zs_name_lock);
1437 }
1438 
1439 /*
1440  * Verify dsl_dataset_promote handles EBUSY
1441  */
1442 void
1443 ztest_dsl_dataset_promote_busy(ztest_args_t *za)
1444 {
1445 	int error;
1446 	objset_t *os = za->za_os;
1447 	objset_t *clone;
1448 	dsl_dataset_t *ds;
1449 	char snap1name[100];
1450 	char clone1name[100];
1451 	char snap2name[100];
1452 	char clone2name[100];
1453 	char snap3name[100];
1454 	char osname[MAXNAMELEN];
1455 	static uint64_t uniq = 0;
1456 	uint64_t curval;
1457 
1458 	curval = atomic_add_64_nv(&uniq, 5) - 5;
1459 
1460 	(void) rw_rdlock(&ztest_shared->zs_name_lock);
1461 
1462 	dmu_objset_name(os, osname);
1463 	(void) snprintf(snap1name, 100, "%s@s1_%llu", osname, curval++);
1464 	(void) snprintf(clone1name, 100, "%s/c1_%llu", osname, curval++);
1465 	(void) snprintf(snap2name, 100, "%s@s2_%llu", clone1name, curval++);
1466 	(void) snprintf(clone2name, 100, "%s/c2_%llu", osname, curval++);
1467 	(void) snprintf(snap3name, 100, "%s@s3_%llu", clone1name, curval++);
1468 
1469 	error = dmu_objset_snapshot(osname, strchr(snap1name, '@')+1, FALSE);
1470 	if (error == ENOSPC)
1471 		ztest_record_enospc("dmu_take_snapshot");
1472 	else if (error != 0 && error != EEXIST)
1473 		fatal(0, "dmu_take_snapshot = %d", error);
1474 
1475 	error = dmu_objset_open(snap1name, DMU_OST_OTHER,
1476 	    DS_MODE_USER | DS_MODE_READONLY, &clone);
1477 	if (error)
1478 		fatal(0, "dmu_open_snapshot(%s) = %d", snap1name, error);
1479 
1480 	error = dmu_objset_create(clone1name, DMU_OST_OTHER, clone, 0,
1481 	    NULL, NULL);
1482 	if (error)
1483 		fatal(0, "dmu_objset_create(%s) = %d", clone1name, error);
1484 	dmu_objset_close(clone);
1485 
1486 	error = dmu_objset_snapshot(clone1name, strchr(snap2name, '@')+1,
1487 	    FALSE);
1488 	if (error == ENOSPC)
1489 		ztest_record_enospc("dmu_take_snapshot");
1490 	else if (error != 0 && error != EEXIST)
1491 		fatal(0, "dmu_take_snapshot = %d", error);
1492 
1493 	error = dmu_objset_snapshot(clone1name, strchr(snap3name, '@')+1,
1494 	    FALSE);
1495 	if (error == ENOSPC)
1496 		ztest_record_enospc("dmu_take_snapshot");
1497 	else if (error != 0 && error != EEXIST)
1498 		fatal(0, "dmu_take_snapshot = %d", error);
1499 
1500 	error = dmu_objset_open(snap3name, DMU_OST_OTHER,
1501 	    DS_MODE_USER | DS_MODE_READONLY, &clone);
1502 	if (error)
1503 		fatal(0, "dmu_open_snapshot(%s) = %d", snap3name, error);
1504 
1505 	error = dmu_objset_create(clone2name, DMU_OST_OTHER, clone, 0,
1506 	    NULL, NULL);
1507 	if (error)
1508 		fatal(0, "dmu_objset_create(%s) = %d", clone2name, error);
1509 	dmu_objset_close(clone);
1510 
1511 	error = dsl_dataset_own(snap1name, 0, FTAG, &ds);
1512 	if (error)
1513 		fatal(0, "dsl_dataset_own(%s) = %d", snap1name, error);
1514 	error = dsl_dataset_promote(clone2name);
1515 	if (error != EBUSY)
1516 		fatal(0, "dsl_dataset_promote(%s), %d, not EBUSY", clone2name,
1517 		    error);
1518 	dsl_dataset_disown(ds, FTAG);
1519 
1520 	error = dmu_objset_destroy(clone2name);
1521 	if (error)
1522 		fatal(0, "dmu_objset_destroy(%s) = %d", clone2name, error);
1523 
1524 	error = dmu_objset_destroy(snap3name);
1525 	if (error)
1526 		fatal(0, "dmu_objset_destroy(%s) = %d", snap2name, error);
1527 
1528 	error = dmu_objset_destroy(snap2name);
1529 	if (error)
1530 		fatal(0, "dmu_objset_destroy(%s) = %d", snap2name, error);
1531 
1532 	error = dmu_objset_destroy(clone1name);
1533 	if (error)
1534 		fatal(0, "dmu_objset_destroy(%s) = %d", clone1name, error);
1535 	error = dmu_objset_destroy(snap1name);
1536 	if (error)
1537 		fatal(0, "dmu_objset_destroy(%s) = %d", snap1name, error);
1538 
1539 	(void) rw_unlock(&ztest_shared->zs_name_lock);
1540 }
1541 
1542 /*
1543  * Verify that dmu_object_{alloc,free} work as expected.
1544  */
1545 void
1546 ztest_dmu_object_alloc_free(ztest_args_t *za)
1547 {
1548 	objset_t *os = za->za_os;
1549 	dmu_buf_t *db;
1550 	dmu_tx_t *tx;
1551 	uint64_t batchobj, object, batchsize, endoff, temp;
1552 	int b, c, error, bonuslen;
1553 	dmu_object_info_t *doi = &za->za_doi;
1554 	char osname[MAXNAMELEN];
1555 
1556 	dmu_objset_name(os, osname);
1557 
1558 	endoff = -8ULL;
1559 	batchsize = 2;
1560 
1561 	/*
1562 	 * Create a batch object if necessary, and record it in the directory.
1563 	 */
1564 	VERIFY3U(0, ==, dmu_read(os, ZTEST_DIROBJ, za->za_diroff,
1565 	    sizeof (uint64_t), &batchobj));
1566 	if (batchobj == 0) {
1567 		tx = dmu_tx_create(os);
1568 		dmu_tx_hold_write(tx, ZTEST_DIROBJ, za->za_diroff,
1569 		    sizeof (uint64_t));
1570 		dmu_tx_hold_bonus(tx, DMU_NEW_OBJECT);
1571 		error = dmu_tx_assign(tx, TXG_WAIT);
1572 		if (error) {
1573 			ztest_record_enospc("create a batch object");
1574 			dmu_tx_abort(tx);
1575 			return;
1576 		}
1577 		batchobj = dmu_object_alloc(os, DMU_OT_UINT64_OTHER, 0,
1578 		    DMU_OT_NONE, 0, tx);
1579 		ztest_set_random_blocksize(os, batchobj, tx);
1580 		dmu_write(os, ZTEST_DIROBJ, za->za_diroff,
1581 		    sizeof (uint64_t), &batchobj, tx);
1582 		dmu_tx_commit(tx);
1583 	}
1584 
1585 	/*
1586 	 * Destroy the previous batch of objects.
1587 	 */
1588 	for (b = 0; b < batchsize; b++) {
1589 		VERIFY3U(0, ==, dmu_read(os, batchobj, b * sizeof (uint64_t),
1590 		    sizeof (uint64_t), &object));
1591 		if (object == 0)
1592 			continue;
1593 		/*
1594 		 * Read and validate contents.
1595 		 * We expect the nth byte of the bonus buffer to be n.
1596 		 */
1597 		VERIFY(0 == dmu_bonus_hold(os, object, FTAG, &db));
1598 		za->za_dbuf = db;
1599 
1600 		dmu_object_info_from_db(db, doi);
1601 		ASSERT(doi->doi_type == DMU_OT_UINT64_OTHER);
1602 		ASSERT(doi->doi_bonus_type == DMU_OT_PLAIN_OTHER);
1603 		ASSERT3S(doi->doi_physical_blks, >=, 0);
1604 
1605 		bonuslen = doi->doi_bonus_size;
1606 
1607 		for (c = 0; c < bonuslen; c++) {
1608 			if (((uint8_t *)db->db_data)[c] !=
1609 			    (uint8_t)(c + bonuslen)) {
1610 				fatal(0,
1611 				    "bad bonus: %s, obj %llu, off %d: %u != %u",
1612 				    osname, object, c,
1613 				    ((uint8_t *)db->db_data)[c],
1614 				    (uint8_t)(c + bonuslen));
1615 			}
1616 		}
1617 
1618 		dmu_buf_rele(db, FTAG);
1619 		za->za_dbuf = NULL;
1620 
1621 		/*
1622 		 * We expect the word at endoff to be our object number.
1623 		 */
1624 		VERIFY(0 == dmu_read(os, object, endoff,
1625 		    sizeof (uint64_t), &temp));
1626 
1627 		if (temp != object) {
1628 			fatal(0, "bad data in %s, got %llu, expected %llu",
1629 			    osname, temp, object);
1630 		}
1631 
1632 		/*
1633 		 * Destroy old object and clear batch entry.
1634 		 */
1635 		tx = dmu_tx_create(os);
1636 		dmu_tx_hold_write(tx, batchobj,
1637 		    b * sizeof (uint64_t), sizeof (uint64_t));
1638 		dmu_tx_hold_free(tx, object, 0, DMU_OBJECT_END);
1639 		error = dmu_tx_assign(tx, TXG_WAIT);
1640 		if (error) {
1641 			ztest_record_enospc("free object");
1642 			dmu_tx_abort(tx);
1643 			return;
1644 		}
1645 		error = dmu_object_free(os, object, tx);
1646 		if (error) {
1647 			fatal(0, "dmu_object_free('%s', %llu) = %d",
1648 			    osname, object, error);
1649 		}
1650 		object = 0;
1651 
1652 		dmu_object_set_checksum(os, batchobj,
1653 		    ztest_random_checksum(), tx);
1654 		dmu_object_set_compress(os, batchobj,
1655 		    ztest_random_compress(), tx);
1656 
1657 		dmu_write(os, batchobj, b * sizeof (uint64_t),
1658 		    sizeof (uint64_t), &object, tx);
1659 
1660 		dmu_tx_commit(tx);
1661 	}
1662 
1663 	/*
1664 	 * Before creating the new batch of objects, generate a bunch of churn.
1665 	 */
1666 	for (b = ztest_random(100); b > 0; b--) {
1667 		tx = dmu_tx_create(os);
1668 		dmu_tx_hold_bonus(tx, DMU_NEW_OBJECT);
1669 		error = dmu_tx_assign(tx, TXG_WAIT);
1670 		if (error) {
1671 			ztest_record_enospc("churn objects");
1672 			dmu_tx_abort(tx);
1673 			return;
1674 		}
1675 		object = dmu_object_alloc(os, DMU_OT_UINT64_OTHER, 0,
1676 		    DMU_OT_NONE, 0, tx);
1677 		ztest_set_random_blocksize(os, object, tx);
1678 		error = dmu_object_free(os, object, tx);
1679 		if (error) {
1680 			fatal(0, "dmu_object_free('%s', %llu) = %d",
1681 			    osname, object, error);
1682 		}
1683 		dmu_tx_commit(tx);
1684 	}
1685 
1686 	/*
1687 	 * Create a new batch of objects with randomly chosen
1688 	 * blocksizes and record them in the batch directory.
1689 	 */
1690 	for (b = 0; b < batchsize; b++) {
1691 		uint32_t va_blksize;
1692 		u_longlong_t va_nblocks;
1693 
1694 		tx = dmu_tx_create(os);
1695 		dmu_tx_hold_write(tx, batchobj, b * sizeof (uint64_t),
1696 		    sizeof (uint64_t));
1697 		dmu_tx_hold_bonus(tx, DMU_NEW_OBJECT);
1698 		dmu_tx_hold_write(tx, DMU_NEW_OBJECT, endoff,
1699 		    sizeof (uint64_t));
1700 		error = dmu_tx_assign(tx, TXG_WAIT);
1701 		if (error) {
1702 			ztest_record_enospc("create batchobj");
1703 			dmu_tx_abort(tx);
1704 			return;
1705 		}
1706 		bonuslen = (int)ztest_random(dmu_bonus_max()) + 1;
1707 
1708 		object = dmu_object_alloc(os, DMU_OT_UINT64_OTHER, 0,
1709 		    DMU_OT_PLAIN_OTHER, bonuslen, tx);
1710 
1711 		ztest_set_random_blocksize(os, object, tx);
1712 
1713 		dmu_object_set_checksum(os, object,
1714 		    ztest_random_checksum(), tx);
1715 		dmu_object_set_compress(os, object,
1716 		    ztest_random_compress(), tx);
1717 
1718 		dmu_write(os, batchobj, b * sizeof (uint64_t),
1719 		    sizeof (uint64_t), &object, tx);
1720 
1721 		/*
1722 		 * Write to both the bonus buffer and the regular data.
1723 		 */
1724 		VERIFY(dmu_bonus_hold(os, object, FTAG, &db) == 0);
1725 		za->za_dbuf = db;
1726 		ASSERT3U(bonuslen, <=, db->db_size);
1727 
1728 		dmu_object_size_from_db(db, &va_blksize, &va_nblocks);
1729 		ASSERT3S(va_nblocks, >=, 0);
1730 
1731 		dmu_buf_will_dirty(db, tx);
1732 
1733 		/*
1734 		 * See comments above regarding the contents of
1735 		 * the bonus buffer and the word at endoff.
1736 		 */
1737 		for (c = 0; c < bonuslen; c++)
1738 			((uint8_t *)db->db_data)[c] = (uint8_t)(c + bonuslen);
1739 
1740 		dmu_buf_rele(db, FTAG);
1741 		za->za_dbuf = NULL;
1742 
1743 		/*
1744 		 * Write to a large offset to increase indirection.
1745 		 */
1746 		dmu_write(os, object, endoff, sizeof (uint64_t), &object, tx);
1747 
1748 		dmu_tx_commit(tx);
1749 	}
1750 }
1751 
1752 /*
1753  * Verify that dmu_{read,write} work as expected.
1754  */
1755 typedef struct bufwad {
1756 	uint64_t	bw_index;
1757 	uint64_t	bw_txg;
1758 	uint64_t	bw_data;
1759 } bufwad_t;
1760 
1761 typedef struct dmu_read_write_dir {
1762 	uint64_t	dd_packobj;
1763 	uint64_t	dd_bigobj;
1764 	uint64_t	dd_chunk;
1765 } dmu_read_write_dir_t;
1766 
1767 void
1768 ztest_dmu_read_write(ztest_args_t *za)
1769 {
1770 	objset_t *os = za->za_os;
1771 	dmu_read_write_dir_t dd;
1772 	dmu_tx_t *tx;
1773 	int i, freeit, error;
1774 	uint64_t n, s, txg;
1775 	bufwad_t *packbuf, *bigbuf, *pack, *bigH, *bigT;
1776 	uint64_t packoff, packsize, bigoff, bigsize;
1777 	uint64_t regions = 997;
1778 	uint64_t stride = 123456789ULL;
1779 	uint64_t width = 40;
1780 	int free_percent = 5;
1781 
1782 	/*
1783 	 * This test uses two objects, packobj and bigobj, that are always
1784 	 * updated together (i.e. in the same tx) so that their contents are
1785 	 * in sync and can be compared.  Their contents relate to each other
1786 	 * in a simple way: packobj is a dense array of 'bufwad' structures,
1787 	 * while bigobj is a sparse array of the same bufwads.  Specifically,
1788 	 * for any index n, there are three bufwads that should be identical:
1789 	 *
1790 	 *	packobj, at offset n * sizeof (bufwad_t)
1791 	 *	bigobj, at the head of the nth chunk
1792 	 *	bigobj, at the tail of the nth chunk
1793 	 *
1794 	 * The chunk size is arbitrary. It doesn't have to be a power of two,
1795 	 * and it doesn't have any relation to the object blocksize.
1796 	 * The only requirement is that it can hold at least two bufwads.
1797 	 *
1798 	 * Normally, we write the bufwad to each of these locations.
1799 	 * However, free_percent of the time we instead write zeroes to
1800 	 * packobj and perform a dmu_free_range() on bigobj.  By comparing
1801 	 * bigobj to packobj, we can verify that the DMU is correctly
1802 	 * tracking which parts of an object are allocated and free,
1803 	 * and that the contents of the allocated blocks are correct.
1804 	 */
1805 
1806 	/*
1807 	 * Read the directory info.  If it's the first time, set things up.
1808 	 */
1809 	VERIFY(0 == dmu_read(os, ZTEST_DIROBJ, za->za_diroff,
1810 	    sizeof (dd), &dd));
1811 	if (dd.dd_chunk == 0) {
1812 		ASSERT(dd.dd_packobj == 0);
1813 		ASSERT(dd.dd_bigobj == 0);
1814 		tx = dmu_tx_create(os);
1815 		dmu_tx_hold_write(tx, ZTEST_DIROBJ, za->za_diroff, sizeof (dd));
1816 		dmu_tx_hold_bonus(tx, DMU_NEW_OBJECT);
1817 		error = dmu_tx_assign(tx, TXG_WAIT);
1818 		if (error) {
1819 			ztest_record_enospc("create r/w directory");
1820 			dmu_tx_abort(tx);
1821 			return;
1822 		}
1823 
1824 		dd.dd_packobj = dmu_object_alloc(os, DMU_OT_UINT64_OTHER, 0,
1825 		    DMU_OT_NONE, 0, tx);
1826 		dd.dd_bigobj = dmu_object_alloc(os, DMU_OT_UINT64_OTHER, 0,
1827 		    DMU_OT_NONE, 0, tx);
1828 		dd.dd_chunk = (1000 + ztest_random(1000)) * sizeof (uint64_t);
1829 
1830 		ztest_set_random_blocksize(os, dd.dd_packobj, tx);
1831 		ztest_set_random_blocksize(os, dd.dd_bigobj, tx);
1832 
1833 		dmu_write(os, ZTEST_DIROBJ, za->za_diroff, sizeof (dd), &dd,
1834 		    tx);
1835 		dmu_tx_commit(tx);
1836 	}
1837 
1838 	/*
1839 	 * Prefetch a random chunk of the big object.
1840 	 * Our aim here is to get some async reads in flight
1841 	 * for blocks that we may free below; the DMU should
1842 	 * handle this race correctly.
1843 	 */
1844 	n = ztest_random(regions) * stride + ztest_random(width);
1845 	s = 1 + ztest_random(2 * width - 1);
1846 	dmu_prefetch(os, dd.dd_bigobj, n * dd.dd_chunk, s * dd.dd_chunk);
1847 
1848 	/*
1849 	 * Pick a random index and compute the offsets into packobj and bigobj.
1850 	 */
1851 	n = ztest_random(regions) * stride + ztest_random(width);
1852 	s = 1 + ztest_random(width - 1);
1853 
1854 	packoff = n * sizeof (bufwad_t);
1855 	packsize = s * sizeof (bufwad_t);
1856 
1857 	bigoff = n * dd.dd_chunk;
1858 	bigsize = s * dd.dd_chunk;
1859 
1860 	packbuf = umem_alloc(packsize, UMEM_NOFAIL);
1861 	bigbuf = umem_alloc(bigsize, UMEM_NOFAIL);
1862 
1863 	/*
1864 	 * free_percent of the time, free a range of bigobj rather than
1865 	 * overwriting it.
1866 	 */
1867 	freeit = (ztest_random(100) < free_percent);
1868 
1869 	/*
1870 	 * Read the current contents of our objects.
1871 	 */
1872 	error = dmu_read(os, dd.dd_packobj, packoff, packsize, packbuf);
1873 	ASSERT3U(error, ==, 0);
1874 	error = dmu_read(os, dd.dd_bigobj, bigoff, bigsize, bigbuf);
1875 	ASSERT3U(error, ==, 0);
1876 
1877 	/*
1878 	 * Get a tx for the mods to both packobj and bigobj.
1879 	 */
1880 	tx = dmu_tx_create(os);
1881 
1882 	dmu_tx_hold_write(tx, dd.dd_packobj, packoff, packsize);
1883 
1884 	if (freeit)
1885 		dmu_tx_hold_free(tx, dd.dd_bigobj, bigoff, bigsize);
1886 	else
1887 		dmu_tx_hold_write(tx, dd.dd_bigobj, bigoff, bigsize);
1888 
1889 	error = dmu_tx_assign(tx, TXG_WAIT);
1890 
1891 	if (error) {
1892 		ztest_record_enospc("dmu r/w range");
1893 		dmu_tx_abort(tx);
1894 		umem_free(packbuf, packsize);
1895 		umem_free(bigbuf, bigsize);
1896 		return;
1897 	}
1898 
1899 	txg = dmu_tx_get_txg(tx);
1900 
1901 	/*
1902 	 * For each index from n to n + s, verify that the existing bufwad
1903 	 * in packobj matches the bufwads at the head and tail of the
1904 	 * corresponding chunk in bigobj.  Then update all three bufwads
1905 	 * with the new values we want to write out.
1906 	 */
1907 	for (i = 0; i < s; i++) {
1908 		/* LINTED */
1909 		pack = (bufwad_t *)((char *)packbuf + i * sizeof (bufwad_t));
1910 		/* LINTED */
1911 		bigH = (bufwad_t *)((char *)bigbuf + i * dd.dd_chunk);
1912 		/* LINTED */
1913 		bigT = (bufwad_t *)((char *)bigH + dd.dd_chunk) - 1;
1914 
1915 		ASSERT((uintptr_t)bigH - (uintptr_t)bigbuf < bigsize);
1916 		ASSERT((uintptr_t)bigT - (uintptr_t)bigbuf < bigsize);
1917 
1918 		if (pack->bw_txg > txg)
1919 			fatal(0, "future leak: got %llx, open txg is %llx",
1920 			    pack->bw_txg, txg);
1921 
1922 		if (pack->bw_data != 0 && pack->bw_index != n + i)
1923 			fatal(0, "wrong index: got %llx, wanted %llx+%llx",
1924 			    pack->bw_index, n, i);
1925 
1926 		if (bcmp(pack, bigH, sizeof (bufwad_t)) != 0)
1927 			fatal(0, "pack/bigH mismatch in %p/%p", pack, bigH);
1928 
1929 		if (bcmp(pack, bigT, sizeof (bufwad_t)) != 0)
1930 			fatal(0, "pack/bigT mismatch in %p/%p", pack, bigT);
1931 
1932 		if (freeit) {
1933 			bzero(pack, sizeof (bufwad_t));
1934 		} else {
1935 			pack->bw_index = n + i;
1936 			pack->bw_txg = txg;
1937 			pack->bw_data = 1 + ztest_random(-2ULL);
1938 		}
1939 		*bigH = *pack;
1940 		*bigT = *pack;
1941 	}
1942 
1943 	/*
1944 	 * We've verified all the old bufwads, and made new ones.
1945 	 * Now write them out.
1946 	 */
1947 	dmu_write(os, dd.dd_packobj, packoff, packsize, packbuf, tx);
1948 
1949 	if (freeit) {
1950 		if (zopt_verbose >= 6) {
1951 			(void) printf("freeing offset %llx size %llx"
1952 			    " txg %llx\n",
1953 			    (u_longlong_t)bigoff,
1954 			    (u_longlong_t)bigsize,
1955 			    (u_longlong_t)txg);
1956 		}
1957 		VERIFY(0 == dmu_free_range(os, dd.dd_bigobj, bigoff,
1958 		    bigsize, tx));
1959 	} else {
1960 		if (zopt_verbose >= 6) {
1961 			(void) printf("writing offset %llx size %llx"
1962 			    " txg %llx\n",
1963 			    (u_longlong_t)bigoff,
1964 			    (u_longlong_t)bigsize,
1965 			    (u_longlong_t)txg);
1966 		}
1967 		dmu_write(os, dd.dd_bigobj, bigoff, bigsize, bigbuf, tx);
1968 	}
1969 
1970 	dmu_tx_commit(tx);
1971 
1972 	/*
1973 	 * Sanity check the stuff we just wrote.
1974 	 */
1975 	{
1976 		void *packcheck = umem_alloc(packsize, UMEM_NOFAIL);
1977 		void *bigcheck = umem_alloc(bigsize, UMEM_NOFAIL);
1978 
1979 		VERIFY(0 == dmu_read(os, dd.dd_packobj, packoff,
1980 		    packsize, packcheck));
1981 		VERIFY(0 == dmu_read(os, dd.dd_bigobj, bigoff,
1982 		    bigsize, bigcheck));
1983 
1984 		ASSERT(bcmp(packbuf, packcheck, packsize) == 0);
1985 		ASSERT(bcmp(bigbuf, bigcheck, bigsize) == 0);
1986 
1987 		umem_free(packcheck, packsize);
1988 		umem_free(bigcheck, bigsize);
1989 	}
1990 
1991 	umem_free(packbuf, packsize);
1992 	umem_free(bigbuf, bigsize);
1993 }
1994 
1995 void
1996 ztest_dmu_check_future_leak(ztest_args_t *za)
1997 {
1998 	objset_t *os = za->za_os;
1999 	dmu_buf_t *db;
2000 	ztest_block_tag_t *bt;
2001 	dmu_object_info_t *doi = &za->za_doi;
2002 
2003 	/*
2004 	 * Make sure that, if there is a write record in the bonus buffer
2005 	 * of the ZTEST_DIROBJ, that the txg for this record is <= the
2006 	 * last synced txg of the pool.
2007 	 */
2008 	VERIFY(dmu_bonus_hold(os, ZTEST_DIROBJ, FTAG, &db) == 0);
2009 	za->za_dbuf = db;
2010 	VERIFY(dmu_object_info(os, ZTEST_DIROBJ, doi) == 0);
2011 	ASSERT3U(doi->doi_bonus_size, >=, sizeof (*bt));
2012 	ASSERT3U(doi->doi_bonus_size, <=, db->db_size);
2013 	ASSERT3U(doi->doi_bonus_size % sizeof (*bt), ==, 0);
2014 	bt = (void *)((char *)db->db_data + doi->doi_bonus_size - sizeof (*bt));
2015 	if (bt->bt_objset != 0) {
2016 		ASSERT3U(bt->bt_objset, ==, dmu_objset_id(os));
2017 		ASSERT3U(bt->bt_object, ==, ZTEST_DIROBJ);
2018 		ASSERT3U(bt->bt_offset, ==, -1ULL);
2019 		ASSERT3U(bt->bt_txg, <, spa_first_txg(za->za_spa));
2020 	}
2021 	dmu_buf_rele(db, FTAG);
2022 	za->za_dbuf = NULL;
2023 }
2024 
2025 void
2026 ztest_dmu_write_parallel(ztest_args_t *za)
2027 {
2028 	objset_t *os = za->za_os;
2029 	ztest_block_tag_t *rbt = &za->za_rbt;
2030 	ztest_block_tag_t *wbt = &za->za_wbt;
2031 	const size_t btsize = sizeof (ztest_block_tag_t);
2032 	dmu_buf_t *db;
2033 	int b, error;
2034 	int bs = ZTEST_DIROBJ_BLOCKSIZE;
2035 	int do_free = 0;
2036 	uint64_t off, txg, txg_how;
2037 	mutex_t *lp;
2038 	char osname[MAXNAMELEN];
2039 	char iobuf[SPA_MAXBLOCKSIZE];
2040 	blkptr_t blk = { 0 };
2041 	uint64_t blkoff;
2042 	zbookmark_t zb;
2043 	dmu_tx_t *tx = dmu_tx_create(os);
2044 
2045 	dmu_objset_name(os, osname);
2046 
2047 	/*
2048 	 * Have multiple threads write to large offsets in ZTEST_DIROBJ
2049 	 * to verify that having multiple threads writing to the same object
2050 	 * in parallel doesn't cause any trouble.
2051 	 */
2052 	if (ztest_random(4) == 0) {
2053 		/*
2054 		 * Do the bonus buffer instead of a regular block.
2055 		 * We need a lock to serialize resize vs. others,
2056 		 * so we hash on the objset ID.
2057 		 */
2058 		b = dmu_objset_id(os) % ZTEST_SYNC_LOCKS;
2059 		off = -1ULL;
2060 		dmu_tx_hold_bonus(tx, ZTEST_DIROBJ);
2061 	} else {
2062 		b = ztest_random(ZTEST_SYNC_LOCKS);
2063 		off = za->za_diroff_shared + (b << SPA_MAXBLOCKSHIFT);
2064 		if (ztest_random(4) == 0) {
2065 			do_free = 1;
2066 			dmu_tx_hold_free(tx, ZTEST_DIROBJ, off, bs);
2067 		} else {
2068 			dmu_tx_hold_write(tx, ZTEST_DIROBJ, off, bs);
2069 		}
2070 	}
2071 
2072 	txg_how = ztest_random(2) == 0 ? TXG_WAIT : TXG_NOWAIT;
2073 	error = dmu_tx_assign(tx, txg_how);
2074 	if (error) {
2075 		if (error == ERESTART) {
2076 			ASSERT(txg_how == TXG_NOWAIT);
2077 			dmu_tx_wait(tx);
2078 		} else {
2079 			ztest_record_enospc("dmu write parallel");
2080 		}
2081 		dmu_tx_abort(tx);
2082 		return;
2083 	}
2084 	txg = dmu_tx_get_txg(tx);
2085 
2086 	lp = &ztest_shared->zs_sync_lock[b];
2087 	(void) mutex_lock(lp);
2088 
2089 	wbt->bt_objset = dmu_objset_id(os);
2090 	wbt->bt_object = ZTEST_DIROBJ;
2091 	wbt->bt_offset = off;
2092 	wbt->bt_txg = txg;
2093 	wbt->bt_thread = za->za_instance;
2094 	wbt->bt_seq = ztest_shared->zs_seq[b]++;	/* protected by lp */
2095 
2096 	/*
2097 	 * Occasionally, write an all-zero block to test the behavior
2098 	 * of blocks that compress into holes.
2099 	 */
2100 	if (off != -1ULL && ztest_random(8) == 0)
2101 		bzero(wbt, btsize);
2102 
2103 	if (off == -1ULL) {
2104 		dmu_object_info_t *doi = &za->za_doi;
2105 		char *dboff;
2106 
2107 		VERIFY(dmu_bonus_hold(os, ZTEST_DIROBJ, FTAG, &db) == 0);
2108 		za->za_dbuf = db;
2109 		dmu_object_info_from_db(db, doi);
2110 		ASSERT3U(doi->doi_bonus_size, <=, db->db_size);
2111 		ASSERT3U(doi->doi_bonus_size, >=, btsize);
2112 		ASSERT3U(doi->doi_bonus_size % btsize, ==, 0);
2113 		dboff = (char *)db->db_data + doi->doi_bonus_size - btsize;
2114 		bcopy(dboff, rbt, btsize);
2115 		if (rbt->bt_objset != 0) {
2116 			ASSERT3U(rbt->bt_objset, ==, wbt->bt_objset);
2117 			ASSERT3U(rbt->bt_object, ==, wbt->bt_object);
2118 			ASSERT3U(rbt->bt_offset, ==, wbt->bt_offset);
2119 			ASSERT3U(rbt->bt_txg, <=, wbt->bt_txg);
2120 		}
2121 		if (ztest_random(10) == 0) {
2122 			int newsize = (ztest_random(db->db_size /
2123 			    btsize) + 1) * btsize;
2124 
2125 			ASSERT3U(newsize, >=, btsize);
2126 			ASSERT3U(newsize, <=, db->db_size);
2127 			VERIFY3U(dmu_set_bonus(db, newsize, tx), ==, 0);
2128 			dboff = (char *)db->db_data + newsize - btsize;
2129 		}
2130 		dmu_buf_will_dirty(db, tx);
2131 		bcopy(wbt, dboff, btsize);
2132 		dmu_buf_rele(db, FTAG);
2133 		za->za_dbuf = NULL;
2134 	} else if (do_free) {
2135 		VERIFY(dmu_free_range(os, ZTEST_DIROBJ, off, bs, tx) == 0);
2136 	} else {
2137 		dmu_write(os, ZTEST_DIROBJ, off, btsize, wbt, tx);
2138 	}
2139 
2140 	(void) mutex_unlock(lp);
2141 
2142 	if (ztest_random(1000) == 0)
2143 		(void) poll(NULL, 0, 1); /* open dn_notxholds window */
2144 
2145 	dmu_tx_commit(tx);
2146 
2147 	if (ztest_random(10000) == 0)
2148 		txg_wait_synced(dmu_objset_pool(os), txg);
2149 
2150 	if (off == -1ULL || do_free)
2151 		return;
2152 
2153 	if (ztest_random(2) != 0)
2154 		return;
2155 
2156 	/*
2157 	 * dmu_sync() the block we just wrote.
2158 	 */
2159 	(void) mutex_lock(lp);
2160 
2161 	blkoff = P2ALIGN_TYPED(off, bs, uint64_t);
2162 	error = dmu_buf_hold(os, ZTEST_DIROBJ, blkoff, FTAG, &db);
2163 	za->za_dbuf = db;
2164 	if (error) {
2165 		(void) mutex_unlock(lp);
2166 		return;
2167 	}
2168 	blkoff = off - blkoff;
2169 	error = dmu_sync(NULL, db, &blk, txg, NULL, NULL);
2170 	dmu_buf_rele(db, FTAG);
2171 	za->za_dbuf = NULL;
2172 
2173 	(void) mutex_unlock(lp);
2174 
2175 	if (error)
2176 		return;
2177 
2178 	if (blk.blk_birth == 0)		/* concurrent free */
2179 		return;
2180 
2181 	txg_suspend(dmu_objset_pool(os));
2182 
2183 	ASSERT(blk.blk_fill == 1);
2184 	ASSERT3U(BP_GET_TYPE(&blk), ==, DMU_OT_UINT64_OTHER);
2185 	ASSERT3U(BP_GET_LEVEL(&blk), ==, 0);
2186 	ASSERT3U(BP_GET_LSIZE(&blk), ==, bs);
2187 
2188 	/*
2189 	 * Read the block that dmu_sync() returned to make sure its contents
2190 	 * match what we wrote.  We do this while still txg_suspend()ed
2191 	 * to ensure that the block can't be reused before we read it.
2192 	 */
2193 	zb.zb_objset = dmu_objset_id(os);
2194 	zb.zb_object = ZTEST_DIROBJ;
2195 	zb.zb_level = 0;
2196 	zb.zb_blkid = off / bs;
2197 	error = zio_wait(zio_read(NULL, za->za_spa, &blk, iobuf, bs,
2198 	    NULL, NULL, ZIO_PRIORITY_SYNC_READ, ZIO_FLAG_MUSTSUCCEED, &zb));
2199 	ASSERT3U(error, ==, 0);
2200 
2201 	txg_resume(dmu_objset_pool(os));
2202 
2203 	bcopy(&iobuf[blkoff], rbt, btsize);
2204 
2205 	if (rbt->bt_objset == 0)		/* concurrent free */
2206 		return;
2207 
2208 	if (wbt->bt_objset == 0)		/* all-zero overwrite */
2209 		return;
2210 
2211 	ASSERT3U(rbt->bt_objset, ==, wbt->bt_objset);
2212 	ASSERT3U(rbt->bt_object, ==, wbt->bt_object);
2213 	ASSERT3U(rbt->bt_offset, ==, wbt->bt_offset);
2214 
2215 	/*
2216 	 * The semantic of dmu_sync() is that we always push the most recent
2217 	 * version of the data, so in the face of concurrent updates we may
2218 	 * see a newer version of the block.  That's OK.
2219 	 */
2220 	ASSERT3U(rbt->bt_txg, >=, wbt->bt_txg);
2221 	if (rbt->bt_thread == wbt->bt_thread)
2222 		ASSERT3U(rbt->bt_seq, ==, wbt->bt_seq);
2223 	else
2224 		ASSERT3U(rbt->bt_seq, >, wbt->bt_seq);
2225 }
2226 
2227 /*
2228  * Verify that zap_{create,destroy,add,remove,update} work as expected.
2229  */
2230 #define	ZTEST_ZAP_MIN_INTS	1
2231 #define	ZTEST_ZAP_MAX_INTS	4
2232 #define	ZTEST_ZAP_MAX_PROPS	1000
2233 
2234 void
2235 ztest_zap(ztest_args_t *za)
2236 {
2237 	objset_t *os = za->za_os;
2238 	uint64_t object;
2239 	uint64_t txg, last_txg;
2240 	uint64_t value[ZTEST_ZAP_MAX_INTS];
2241 	uint64_t zl_ints, zl_intsize, prop;
2242 	int i, ints;
2243 	dmu_tx_t *tx;
2244 	char propname[100], txgname[100];
2245 	int error;
2246 	char osname[MAXNAMELEN];
2247 	char *hc[2] = { "s.acl.h", ".s.open.h.hyLZlg" };
2248 
2249 	dmu_objset_name(os, osname);
2250 
2251 	/*
2252 	 * Create a new object if necessary, and record it in the directory.
2253 	 */
2254 	VERIFY(0 == dmu_read(os, ZTEST_DIROBJ, za->za_diroff,
2255 	    sizeof (uint64_t), &object));
2256 
2257 	if (object == 0) {
2258 		tx = dmu_tx_create(os);
2259 		dmu_tx_hold_write(tx, ZTEST_DIROBJ, za->za_diroff,
2260 		    sizeof (uint64_t));
2261 		dmu_tx_hold_zap(tx, DMU_NEW_OBJECT, TRUE, NULL);
2262 		error = dmu_tx_assign(tx, TXG_WAIT);
2263 		if (error) {
2264 			ztest_record_enospc("create zap test obj");
2265 			dmu_tx_abort(tx);
2266 			return;
2267 		}
2268 		object = zap_create(os, DMU_OT_ZAP_OTHER, DMU_OT_NONE, 0, tx);
2269 		if (error) {
2270 			fatal(0, "zap_create('%s', %llu) = %d",
2271 			    osname, object, error);
2272 		}
2273 		ASSERT(object != 0);
2274 		dmu_write(os, ZTEST_DIROBJ, za->za_diroff,
2275 		    sizeof (uint64_t), &object, tx);
2276 		/*
2277 		 * Generate a known hash collision, and verify that
2278 		 * we can lookup and remove both entries.
2279 		 */
2280 		for (i = 0; i < 2; i++) {
2281 			value[i] = i;
2282 			error = zap_add(os, object, hc[i], sizeof (uint64_t),
2283 			    1, &value[i], tx);
2284 			ASSERT3U(error, ==, 0);
2285 		}
2286 		for (i = 0; i < 2; i++) {
2287 			error = zap_add(os, object, hc[i], sizeof (uint64_t),
2288 			    1, &value[i], tx);
2289 			ASSERT3U(error, ==, EEXIST);
2290 			error = zap_length(os, object, hc[i],
2291 			    &zl_intsize, &zl_ints);
2292 			ASSERT3U(error, ==, 0);
2293 			ASSERT3U(zl_intsize, ==, sizeof (uint64_t));
2294 			ASSERT3U(zl_ints, ==, 1);
2295 		}
2296 		for (i = 0; i < 2; i++) {
2297 			error = zap_remove(os, object, hc[i], tx);
2298 			ASSERT3U(error, ==, 0);
2299 		}
2300 
2301 		dmu_tx_commit(tx);
2302 	}
2303 
2304 	ints = MAX(ZTEST_ZAP_MIN_INTS, object % ZTEST_ZAP_MAX_INTS);
2305 
2306 	prop = ztest_random(ZTEST_ZAP_MAX_PROPS);
2307 	(void) sprintf(propname, "prop_%llu", (u_longlong_t)prop);
2308 	(void) sprintf(txgname, "txg_%llu", (u_longlong_t)prop);
2309 	bzero(value, sizeof (value));
2310 	last_txg = 0;
2311 
2312 	/*
2313 	 * If these zap entries already exist, validate their contents.
2314 	 */
2315 	error = zap_length(os, object, txgname, &zl_intsize, &zl_ints);
2316 	if (error == 0) {
2317 		ASSERT3U(zl_intsize, ==, sizeof (uint64_t));
2318 		ASSERT3U(zl_ints, ==, 1);
2319 
2320 		VERIFY(zap_lookup(os, object, txgname, zl_intsize,
2321 		    zl_ints, &last_txg) == 0);
2322 
2323 		VERIFY(zap_length(os, object, propname, &zl_intsize,
2324 		    &zl_ints) == 0);
2325 
2326 		ASSERT3U(zl_intsize, ==, sizeof (uint64_t));
2327 		ASSERT3U(zl_ints, ==, ints);
2328 
2329 		VERIFY(zap_lookup(os, object, propname, zl_intsize,
2330 		    zl_ints, value) == 0);
2331 
2332 		for (i = 0; i < ints; i++) {
2333 			ASSERT3U(value[i], ==, last_txg + object + i);
2334 		}
2335 	} else {
2336 		ASSERT3U(error, ==, ENOENT);
2337 	}
2338 
2339 	/*
2340 	 * Atomically update two entries in our zap object.
2341 	 * The first is named txg_%llu, and contains the txg
2342 	 * in which the property was last updated.  The second
2343 	 * is named prop_%llu, and the nth element of its value
2344 	 * should be txg + object + n.
2345 	 */
2346 	tx = dmu_tx_create(os);
2347 	dmu_tx_hold_zap(tx, object, TRUE, NULL);
2348 	error = dmu_tx_assign(tx, TXG_WAIT);
2349 	if (error) {
2350 		ztest_record_enospc("create zap entry");
2351 		dmu_tx_abort(tx);
2352 		return;
2353 	}
2354 	txg = dmu_tx_get_txg(tx);
2355 
2356 	if (last_txg > txg)
2357 		fatal(0, "zap future leak: old %llu new %llu", last_txg, txg);
2358 
2359 	for (i = 0; i < ints; i++)
2360 		value[i] = txg + object + i;
2361 
2362 	error = zap_update(os, object, txgname, sizeof (uint64_t), 1, &txg, tx);
2363 	if (error)
2364 		fatal(0, "zap_update('%s', %llu, '%s') = %d",
2365 		    osname, object, txgname, error);
2366 
2367 	error = zap_update(os, object, propname, sizeof (uint64_t),
2368 	    ints, value, tx);
2369 	if (error)
2370 		fatal(0, "zap_update('%s', %llu, '%s') = %d",
2371 		    osname, object, propname, error);
2372 
2373 	dmu_tx_commit(tx);
2374 
2375 	/*
2376 	 * Remove a random pair of entries.
2377 	 */
2378 	prop = ztest_random(ZTEST_ZAP_MAX_PROPS);
2379 	(void) sprintf(propname, "prop_%llu", (u_longlong_t)prop);
2380 	(void) sprintf(txgname, "txg_%llu", (u_longlong_t)prop);
2381 
2382 	error = zap_length(os, object, txgname, &zl_intsize, &zl_ints);
2383 
2384 	if (error == ENOENT)
2385 		return;
2386 
2387 	ASSERT3U(error, ==, 0);
2388 
2389 	tx = dmu_tx_create(os);
2390 	dmu_tx_hold_zap(tx, object, TRUE, NULL);
2391 	error = dmu_tx_assign(tx, TXG_WAIT);
2392 	if (error) {
2393 		ztest_record_enospc("remove zap entry");
2394 		dmu_tx_abort(tx);
2395 		return;
2396 	}
2397 	error = zap_remove(os, object, txgname, tx);
2398 	if (error)
2399 		fatal(0, "zap_remove('%s', %llu, '%s') = %d",
2400 		    osname, object, txgname, error);
2401 
2402 	error = zap_remove(os, object, propname, tx);
2403 	if (error)
2404 		fatal(0, "zap_remove('%s', %llu, '%s') = %d",
2405 		    osname, object, propname, error);
2406 
2407 	dmu_tx_commit(tx);
2408 
2409 	/*
2410 	 * Once in a while, destroy the object.
2411 	 */
2412 	if (ztest_random(1000) != 0)
2413 		return;
2414 
2415 	tx = dmu_tx_create(os);
2416 	dmu_tx_hold_write(tx, ZTEST_DIROBJ, za->za_diroff, sizeof (uint64_t));
2417 	dmu_tx_hold_free(tx, object, 0, DMU_OBJECT_END);
2418 	error = dmu_tx_assign(tx, TXG_WAIT);
2419 	if (error) {
2420 		ztest_record_enospc("destroy zap object");
2421 		dmu_tx_abort(tx);
2422 		return;
2423 	}
2424 	error = zap_destroy(os, object, tx);
2425 	if (error)
2426 		fatal(0, "zap_destroy('%s', %llu) = %d",
2427 		    osname, object, error);
2428 	object = 0;
2429 	dmu_write(os, ZTEST_DIROBJ, za->za_diroff, sizeof (uint64_t),
2430 	    &object, tx);
2431 	dmu_tx_commit(tx);
2432 }
2433 
2434 void
2435 ztest_zap_parallel(ztest_args_t *za)
2436 {
2437 	objset_t *os = za->za_os;
2438 	uint64_t txg, object, count, wsize, wc, zl_wsize, zl_wc;
2439 	dmu_tx_t *tx;
2440 	int i, namelen, error;
2441 	char name[20], string_value[20];
2442 	void *data;
2443 
2444 	/*
2445 	 * Generate a random name of the form 'xxx.....' where each
2446 	 * x is a random printable character and the dots are dots.
2447 	 * There are 94 such characters, and the name length goes from
2448 	 * 6 to 20, so there are 94^3 * 15 = 12,458,760 possible names.
2449 	 */
2450 	namelen = ztest_random(sizeof (name) - 5) + 5 + 1;
2451 
2452 	for (i = 0; i < 3; i++)
2453 		name[i] = '!' + ztest_random('~' - '!' + 1);
2454 	for (; i < namelen - 1; i++)
2455 		name[i] = '.';
2456 	name[i] = '\0';
2457 
2458 	if (ztest_random(2) == 0)
2459 		object = ZTEST_MICROZAP_OBJ;
2460 	else
2461 		object = ZTEST_FATZAP_OBJ;
2462 
2463 	if ((namelen & 1) || object == ZTEST_MICROZAP_OBJ) {
2464 		wsize = sizeof (txg);
2465 		wc = 1;
2466 		data = &txg;
2467 	} else {
2468 		wsize = 1;
2469 		wc = namelen;
2470 		data = string_value;
2471 	}
2472 
2473 	count = -1ULL;
2474 	VERIFY(zap_count(os, object, &count) == 0);
2475 	ASSERT(count != -1ULL);
2476 
2477 	/*
2478 	 * Select an operation: length, lookup, add, update, remove.
2479 	 */
2480 	i = ztest_random(5);
2481 
2482 	if (i >= 2) {
2483 		tx = dmu_tx_create(os);
2484 		dmu_tx_hold_zap(tx, object, TRUE, NULL);
2485 		error = dmu_tx_assign(tx, TXG_WAIT);
2486 		if (error) {
2487 			ztest_record_enospc("zap parallel");
2488 			dmu_tx_abort(tx);
2489 			return;
2490 		}
2491 		txg = dmu_tx_get_txg(tx);
2492 		bcopy(name, string_value, namelen);
2493 	} else {
2494 		tx = NULL;
2495 		txg = 0;
2496 		bzero(string_value, namelen);
2497 	}
2498 
2499 	switch (i) {
2500 
2501 	case 0:
2502 		error = zap_length(os, object, name, &zl_wsize, &zl_wc);
2503 		if (error == 0) {
2504 			ASSERT3U(wsize, ==, zl_wsize);
2505 			ASSERT3U(wc, ==, zl_wc);
2506 		} else {
2507 			ASSERT3U(error, ==, ENOENT);
2508 		}
2509 		break;
2510 
2511 	case 1:
2512 		error = zap_lookup(os, object, name, wsize, wc, data);
2513 		if (error == 0) {
2514 			if (data == string_value &&
2515 			    bcmp(name, data, namelen) != 0)
2516 				fatal(0, "name '%s' != val '%s' len %d",
2517 				    name, data, namelen);
2518 		} else {
2519 			ASSERT3U(error, ==, ENOENT);
2520 		}
2521 		break;
2522 
2523 	case 2:
2524 		error = zap_add(os, object, name, wsize, wc, data, tx);
2525 		ASSERT(error == 0 || error == EEXIST);
2526 		break;
2527 
2528 	case 3:
2529 		VERIFY(zap_update(os, object, name, wsize, wc, data, tx) == 0);
2530 		break;
2531 
2532 	case 4:
2533 		error = zap_remove(os, object, name, tx);
2534 		ASSERT(error == 0 || error == ENOENT);
2535 		break;
2536 	}
2537 
2538 	if (tx != NULL)
2539 		dmu_tx_commit(tx);
2540 }
2541 
2542 void
2543 ztest_dsl_prop_get_set(ztest_args_t *za)
2544 {
2545 	objset_t *os = za->za_os;
2546 	int i, inherit;
2547 	uint64_t value;
2548 	const char *prop, *valname;
2549 	char setpoint[MAXPATHLEN];
2550 	char osname[MAXNAMELEN];
2551 	int error;
2552 
2553 	(void) rw_rdlock(&ztest_shared->zs_name_lock);
2554 
2555 	dmu_objset_name(os, osname);
2556 
2557 	for (i = 0; i < 2; i++) {
2558 		if (i == 0) {
2559 			prop = "checksum";
2560 			value = ztest_random_checksum();
2561 			inherit = (value == ZIO_CHECKSUM_INHERIT);
2562 		} else {
2563 			prop = "compression";
2564 			value = ztest_random_compress();
2565 			inherit = (value == ZIO_COMPRESS_INHERIT);
2566 		}
2567 
2568 		error = dsl_prop_set(osname, prop, sizeof (value),
2569 		    !inherit, &value);
2570 
2571 		if (error == ENOSPC) {
2572 			ztest_record_enospc("dsl_prop_set");
2573 			break;
2574 		}
2575 
2576 		ASSERT3U(error, ==, 0);
2577 
2578 		VERIFY3U(dsl_prop_get(osname, prop, sizeof (value),
2579 		    1, &value, setpoint), ==, 0);
2580 
2581 		if (i == 0)
2582 			valname = zio_checksum_table[value].ci_name;
2583 		else
2584 			valname = zio_compress_table[value].ci_name;
2585 
2586 		if (zopt_verbose >= 6) {
2587 			(void) printf("%s %s = %s for '%s'\n",
2588 			    osname, prop, valname, setpoint);
2589 		}
2590 	}
2591 
2592 	(void) rw_unlock(&ztest_shared->zs_name_lock);
2593 }
2594 
2595 /*
2596  * Inject random faults into the on-disk data.
2597  */
2598 void
2599 ztest_fault_inject(ztest_args_t *za)
2600 {
2601 	int fd;
2602 	uint64_t offset;
2603 	uint64_t leaves = MAX(zopt_mirrors, 1) * zopt_raidz;
2604 	uint64_t bad = 0x1990c0ffeedecade;
2605 	uint64_t top, leaf;
2606 	char path0[MAXPATHLEN];
2607 	char pathrand[MAXPATHLEN];
2608 	size_t fsize;
2609 	spa_t *spa = za->za_spa;
2610 	int bshift = SPA_MAXBLOCKSHIFT + 2;	/* don't scrog all labels */
2611 	int iters = 1000;
2612 	int maxfaults = zopt_maxfaults;
2613 	vdev_t *vd0 = NULL;
2614 	uint64_t guid0 = 0;
2615 
2616 	ASSERT(leaves >= 1);
2617 
2618 	/*
2619 	 * We need SCL_STATE here because we're going to look at vd0->vdev_tsd.
2620 	 */
2621 	spa_config_enter(spa, SCL_STATE, FTAG, RW_READER);
2622 
2623 	if (ztest_random(2) == 0) {
2624 		/*
2625 		 * Inject errors on a normal data device.
2626 		 */
2627 		top = ztest_random(spa->spa_root_vdev->vdev_children);
2628 		leaf = ztest_random(leaves);
2629 
2630 		/*
2631 		 * Generate paths to the first leaf in this top-level vdev,
2632 		 * and to the random leaf we selected.  We'll induce transient
2633 		 * write failures and random online/offline activity on leaf 0,
2634 		 * and we'll write random garbage to the randomly chosen leaf.
2635 		 */
2636 		(void) snprintf(path0, sizeof (path0), ztest_dev_template,
2637 		    zopt_dir, zopt_pool, top * leaves + 0);
2638 		(void) snprintf(pathrand, sizeof (pathrand), ztest_dev_template,
2639 		    zopt_dir, zopt_pool, top * leaves + leaf);
2640 
2641 		vd0 = vdev_lookup_by_path(spa->spa_root_vdev, path0);
2642 		if (vd0 != NULL && maxfaults != 1) {
2643 			/*
2644 			 * Make vd0 explicitly claim to be unreadable,
2645 			 * or unwriteable, or reach behind its back
2646 			 * and close the underlying fd.  We can do this if
2647 			 * maxfaults == 0 because we'll fail and reexecute,
2648 			 * and we can do it if maxfaults >= 2 because we'll
2649 			 * have enough redundancy.  If maxfaults == 1, the
2650 			 * combination of this with injection of random data
2651 			 * corruption below exceeds the pool's fault tolerance.
2652 			 */
2653 			vdev_file_t *vf = vd0->vdev_tsd;
2654 
2655 			if (vf != NULL && ztest_random(3) == 0) {
2656 				(void) close(vf->vf_vnode->v_fd);
2657 				vf->vf_vnode->v_fd = -1;
2658 			} else if (ztest_random(2) == 0) {
2659 				vd0->vdev_cant_read = B_TRUE;
2660 			} else {
2661 				vd0->vdev_cant_write = B_TRUE;
2662 			}
2663 			guid0 = vd0->vdev_guid;
2664 		}
2665 	} else {
2666 		/*
2667 		 * Inject errors on an l2cache device.
2668 		 */
2669 		spa_aux_vdev_t *sav = &spa->spa_l2cache;
2670 
2671 		if (sav->sav_count == 0) {
2672 			spa_config_exit(spa, SCL_STATE, FTAG);
2673 			return;
2674 		}
2675 		vd0 = sav->sav_vdevs[ztest_random(sav->sav_count)];
2676 		guid0 = vd0->vdev_guid;
2677 		(void) strcpy(path0, vd0->vdev_path);
2678 		(void) strcpy(pathrand, vd0->vdev_path);
2679 
2680 		leaf = 0;
2681 		leaves = 1;
2682 		maxfaults = INT_MAX;	/* no limit on cache devices */
2683 	}
2684 
2685 	spa_config_exit(spa, SCL_STATE, FTAG);
2686 
2687 	if (maxfaults == 0)
2688 		return;
2689 
2690 	/*
2691 	 * If we can tolerate two or more faults, randomly online/offline vd0.
2692 	 */
2693 	if (maxfaults >= 2 && guid0 != 0) {
2694 		if (ztest_random(10) < 6) {
2695 			int flags = (ztest_random(2) == 0 ?
2696 			    ZFS_OFFLINE_TEMPORARY : 0);
2697 			VERIFY(vdev_offline(spa, guid0, flags) != EBUSY);
2698 		} else {
2699 			(void) vdev_online(spa, guid0, 0, NULL);
2700 		}
2701 	}
2702 
2703 	/*
2704 	 * We have at least single-fault tolerance, so inject data corruption.
2705 	 */
2706 	fd = open(pathrand, O_RDWR);
2707 
2708 	if (fd == -1)	/* we hit a gap in the device namespace */
2709 		return;
2710 
2711 	fsize = lseek(fd, 0, SEEK_END);
2712 
2713 	while (--iters != 0) {
2714 		offset = ztest_random(fsize / (leaves << bshift)) *
2715 		    (leaves << bshift) + (leaf << bshift) +
2716 		    (ztest_random(1ULL << (bshift - 1)) & -8ULL);
2717 
2718 		if (offset >= fsize)
2719 			continue;
2720 
2721 		if (zopt_verbose >= 6)
2722 			(void) printf("injecting bad word into %s,"
2723 			    " offset 0x%llx\n", pathrand, (u_longlong_t)offset);
2724 
2725 		if (pwrite(fd, &bad, sizeof (bad), offset) != sizeof (bad))
2726 			fatal(1, "can't inject bad word at 0x%llx in %s",
2727 			    offset, pathrand);
2728 	}
2729 
2730 	(void) close(fd);
2731 }
2732 
2733 /*
2734  * Scrub the pool.
2735  */
2736 void
2737 ztest_scrub(ztest_args_t *za)
2738 {
2739 	spa_t *spa = za->za_spa;
2740 
2741 	(void) spa_scrub(spa, POOL_SCRUB_EVERYTHING);
2742 	(void) poll(NULL, 0, 1000); /* wait a second, then force a restart */
2743 	(void) spa_scrub(spa, POOL_SCRUB_EVERYTHING);
2744 }
2745 
2746 /*
2747  * Rename the pool to a different name and then rename it back.
2748  */
2749 void
2750 ztest_spa_rename(ztest_args_t *za)
2751 {
2752 	char *oldname, *newname;
2753 	int error;
2754 	spa_t *spa;
2755 
2756 	(void) rw_wrlock(&ztest_shared->zs_name_lock);
2757 
2758 	oldname = za->za_pool;
2759 	newname = umem_alloc(strlen(oldname) + 5, UMEM_NOFAIL);
2760 	(void) strcpy(newname, oldname);
2761 	(void) strcat(newname, "_tmp");
2762 
2763 	/*
2764 	 * Do the rename
2765 	 */
2766 	error = spa_rename(oldname, newname);
2767 	if (error)
2768 		fatal(0, "spa_rename('%s', '%s') = %d", oldname,
2769 		    newname, error);
2770 
2771 	/*
2772 	 * Try to open it under the old name, which shouldn't exist
2773 	 */
2774 	error = spa_open(oldname, &spa, FTAG);
2775 	if (error != ENOENT)
2776 		fatal(0, "spa_open('%s') = %d", oldname, error);
2777 
2778 	/*
2779 	 * Open it under the new name and make sure it's still the same spa_t.
2780 	 */
2781 	error = spa_open(newname, &spa, FTAG);
2782 	if (error != 0)
2783 		fatal(0, "spa_open('%s') = %d", newname, error);
2784 
2785 	ASSERT(spa == za->za_spa);
2786 	spa_close(spa, FTAG);
2787 
2788 	/*
2789 	 * Rename it back to the original
2790 	 */
2791 	error = spa_rename(newname, oldname);
2792 	if (error)
2793 		fatal(0, "spa_rename('%s', '%s') = %d", newname,
2794 		    oldname, error);
2795 
2796 	/*
2797 	 * Make sure it can still be opened
2798 	 */
2799 	error = spa_open(oldname, &spa, FTAG);
2800 	if (error != 0)
2801 		fatal(0, "spa_open('%s') = %d", oldname, error);
2802 
2803 	ASSERT(spa == za->za_spa);
2804 	spa_close(spa, FTAG);
2805 
2806 	umem_free(newname, strlen(newname) + 1);
2807 
2808 	(void) rw_unlock(&ztest_shared->zs_name_lock);
2809 }
2810 
2811 
2812 /*
2813  * Completely obliterate one disk.
2814  */
2815 static void
2816 ztest_obliterate_one_disk(uint64_t vdev)
2817 {
2818 	int fd;
2819 	char dev_name[MAXPATHLEN], copy_name[MAXPATHLEN];
2820 	size_t fsize;
2821 
2822 	if (zopt_maxfaults < 2)
2823 		return;
2824 
2825 	(void) sprintf(dev_name, ztest_dev_template, zopt_dir, zopt_pool, vdev);
2826 	(void) snprintf(copy_name, MAXPATHLEN, "%s.old", dev_name);
2827 
2828 	fd = open(dev_name, O_RDWR);
2829 
2830 	if (fd == -1)
2831 		fatal(1, "can't open %s", dev_name);
2832 
2833 	/*
2834 	 * Determine the size.
2835 	 */
2836 	fsize = lseek(fd, 0, SEEK_END);
2837 
2838 	(void) close(fd);
2839 
2840 	/*
2841 	 * Rename the old device to dev_name.old (useful for debugging).
2842 	 */
2843 	VERIFY(rename(dev_name, copy_name) == 0);
2844 
2845 	/*
2846 	 * Create a new one.
2847 	 */
2848 	VERIFY((fd = open(dev_name, O_RDWR | O_CREAT | O_TRUNC, 0666)) >= 0);
2849 	VERIFY(ftruncate(fd, fsize) == 0);
2850 	(void) close(fd);
2851 }
2852 
2853 static void
2854 ztest_replace_one_disk(spa_t *spa, uint64_t vdev)
2855 {
2856 	char dev_name[MAXPATHLEN];
2857 	nvlist_t *root;
2858 	int error;
2859 	uint64_t guid;
2860 	vdev_t *vd;
2861 
2862 	(void) sprintf(dev_name, ztest_dev_template, zopt_dir, zopt_pool, vdev);
2863 
2864 	/*
2865 	 * Build the nvlist describing dev_name.
2866 	 */
2867 	root = make_vdev_root(dev_name, NULL, 0, 0, 0, 0, 0, 1);
2868 
2869 	spa_config_enter(spa, SCL_VDEV, FTAG, RW_READER);
2870 	if ((vd = vdev_lookup_by_path(spa->spa_root_vdev, dev_name)) == NULL)
2871 		guid = 0;
2872 	else
2873 		guid = vd->vdev_guid;
2874 	spa_config_exit(spa, SCL_VDEV, FTAG);
2875 	error = spa_vdev_attach(spa, guid, root, B_TRUE);
2876 	if (error != 0 &&
2877 	    error != EBUSY &&
2878 	    error != ENOTSUP &&
2879 	    error != ENODEV &&
2880 	    error != EDOM)
2881 		fatal(0, "spa_vdev_attach(in-place) = %d", error);
2882 
2883 	nvlist_free(root);
2884 }
2885 
2886 static void
2887 ztest_verify_blocks(char *pool)
2888 {
2889 	int status;
2890 	char zdb[MAXPATHLEN + MAXNAMELEN + 20];
2891 	char zbuf[1024];
2892 	char *bin;
2893 	char *ztest;
2894 	char *isa;
2895 	int isalen;
2896 	FILE *fp;
2897 
2898 	(void) realpath(getexecname(), zdb);
2899 
2900 	/* zdb lives in /usr/sbin, while ztest lives in /usr/bin */
2901 	bin = strstr(zdb, "/usr/bin/");
2902 	ztest = strstr(bin, "/ztest");
2903 	isa = bin + 8;
2904 	isalen = ztest - isa;
2905 	isa = strdup(isa);
2906 	/* LINTED */
2907 	(void) sprintf(bin,
2908 	    "/usr/sbin%.*s/zdb -bc%s%s -U /tmp/zpool.cache %s",
2909 	    isalen,
2910 	    isa,
2911 	    zopt_verbose >= 3 ? "s" : "",
2912 	    zopt_verbose >= 4 ? "v" : "",
2913 	    pool);
2914 	free(isa);
2915 
2916 	if (zopt_verbose >= 5)
2917 		(void) printf("Executing %s\n", strstr(zdb, "zdb "));
2918 
2919 	fp = popen(zdb, "r");
2920 
2921 	while (fgets(zbuf, sizeof (zbuf), fp) != NULL)
2922 		if (zopt_verbose >= 3)
2923 			(void) printf("%s", zbuf);
2924 
2925 	status = pclose(fp);
2926 
2927 	if (status == 0)
2928 		return;
2929 
2930 	ztest_dump_core = 0;
2931 	if (WIFEXITED(status))
2932 		fatal(0, "'%s' exit code %d", zdb, WEXITSTATUS(status));
2933 	else
2934 		fatal(0, "'%s' died with signal %d", zdb, WTERMSIG(status));
2935 }
2936 
2937 static void
2938 ztest_walk_pool_directory(char *header)
2939 {
2940 	spa_t *spa = NULL;
2941 
2942 	if (zopt_verbose >= 6)
2943 		(void) printf("%s\n", header);
2944 
2945 	mutex_enter(&spa_namespace_lock);
2946 	while ((spa = spa_next(spa)) != NULL)
2947 		if (zopt_verbose >= 6)
2948 			(void) printf("\t%s\n", spa_name(spa));
2949 	mutex_exit(&spa_namespace_lock);
2950 }
2951 
2952 static void
2953 ztest_spa_import_export(char *oldname, char *newname)
2954 {
2955 	nvlist_t *config, *newconfig;
2956 	uint64_t pool_guid;
2957 	spa_t *spa;
2958 	int error;
2959 
2960 	if (zopt_verbose >= 4) {
2961 		(void) printf("import/export: old = %s, new = %s\n",
2962 		    oldname, newname);
2963 	}
2964 
2965 	/*
2966 	 * Clean up from previous runs.
2967 	 */
2968 	(void) spa_destroy(newname);
2969 
2970 	/*
2971 	 * Get the pool's configuration and guid.
2972 	 */
2973 	error = spa_open(oldname, &spa, FTAG);
2974 	if (error)
2975 		fatal(0, "spa_open('%s') = %d", oldname, error);
2976 
2977 	/*
2978 	 * Kick off a scrub to tickle scrub/export races.
2979 	 */
2980 	if (ztest_random(2) == 0)
2981 		(void) spa_scrub(spa, POOL_SCRUB_EVERYTHING);
2982 
2983 	pool_guid = spa_guid(spa);
2984 	spa_close(spa, FTAG);
2985 
2986 	ztest_walk_pool_directory("pools before export");
2987 
2988 	/*
2989 	 * Export it.
2990 	 */
2991 	error = spa_export(oldname, &config, B_FALSE, B_FALSE);
2992 	if (error)
2993 		fatal(0, "spa_export('%s') = %d", oldname, error);
2994 
2995 	ztest_walk_pool_directory("pools after export");
2996 
2997 	/*
2998 	 * Try to import it.
2999 	 */
3000 	newconfig = spa_tryimport(config);
3001 	ASSERT(newconfig != NULL);
3002 	nvlist_free(newconfig);
3003 
3004 	/*
3005 	 * Import it under the new name.
3006 	 */
3007 	error = spa_import(newname, config, NULL);
3008 	if (error)
3009 		fatal(0, "spa_import('%s') = %d", newname, error);
3010 
3011 	ztest_walk_pool_directory("pools after import");
3012 
3013 	/*
3014 	 * Try to import it again -- should fail with EEXIST.
3015 	 */
3016 	error = spa_import(newname, config, NULL);
3017 	if (error != EEXIST)
3018 		fatal(0, "spa_import('%s') twice", newname);
3019 
3020 	/*
3021 	 * Try to import it under a different name -- should fail with EEXIST.
3022 	 */
3023 	error = spa_import(oldname, config, NULL);
3024 	if (error != EEXIST)
3025 		fatal(0, "spa_import('%s') under multiple names", newname);
3026 
3027 	/*
3028 	 * Verify that the pool is no longer visible under the old name.
3029 	 */
3030 	error = spa_open(oldname, &spa, FTAG);
3031 	if (error != ENOENT)
3032 		fatal(0, "spa_open('%s') = %d", newname, error);
3033 
3034 	/*
3035 	 * Verify that we can open and close the pool using the new name.
3036 	 */
3037 	error = spa_open(newname, &spa, FTAG);
3038 	if (error)
3039 		fatal(0, "spa_open('%s') = %d", newname, error);
3040 	ASSERT(pool_guid == spa_guid(spa));
3041 	spa_close(spa, FTAG);
3042 
3043 	nvlist_free(config);
3044 }
3045 
3046 static void
3047 ztest_resume(spa_t *spa)
3048 {
3049 	if (spa_suspended(spa)) {
3050 		spa_vdev_state_enter(spa);
3051 		vdev_clear(spa, NULL);
3052 		(void) spa_vdev_state_exit(spa, NULL, 0);
3053 		zio_resume(spa);
3054 	}
3055 }
3056 
3057 static void *
3058 ztest_resume_thread(void *arg)
3059 {
3060 	spa_t *spa = arg;
3061 
3062 	while (!ztest_exiting) {
3063 		(void) poll(NULL, 0, 1000);
3064 		ztest_resume(spa);
3065 	}
3066 	return (NULL);
3067 }
3068 
3069 static void *
3070 ztest_thread(void *arg)
3071 {
3072 	ztest_args_t *za = arg;
3073 	ztest_shared_t *zs = ztest_shared;
3074 	hrtime_t now, functime;
3075 	ztest_info_t *zi;
3076 	int f, i;
3077 
3078 	while ((now = gethrtime()) < za->za_stop) {
3079 		/*
3080 		 * See if it's time to force a crash.
3081 		 */
3082 		if (now > za->za_kill) {
3083 			zs->zs_alloc = spa_get_alloc(za->za_spa);
3084 			zs->zs_space = spa_get_space(za->za_spa);
3085 			(void) kill(getpid(), SIGKILL);
3086 		}
3087 
3088 		/*
3089 		 * Pick a random function.
3090 		 */
3091 		f = ztest_random(ZTEST_FUNCS);
3092 		zi = &zs->zs_info[f];
3093 
3094 		/*
3095 		 * Decide whether to call it, based on the requested frequency.
3096 		 */
3097 		if (zi->zi_call_target == 0 ||
3098 		    (double)zi->zi_call_total / zi->zi_call_target >
3099 		    (double)(now - zs->zs_start_time) / (zopt_time * NANOSEC))
3100 			continue;
3101 
3102 		atomic_add_64(&zi->zi_calls, 1);
3103 		atomic_add_64(&zi->zi_call_total, 1);
3104 
3105 		za->za_diroff = (za->za_instance * ZTEST_FUNCS + f) *
3106 		    ZTEST_DIRSIZE;
3107 		za->za_diroff_shared = (1ULL << 63);
3108 
3109 		for (i = 0; i < zi->zi_iters; i++)
3110 			zi->zi_func(za);
3111 
3112 		functime = gethrtime() - now;
3113 
3114 		atomic_add_64(&zi->zi_call_time, functime);
3115 
3116 		if (zopt_verbose >= 4) {
3117 			Dl_info dli;
3118 			(void) dladdr((void *)zi->zi_func, &dli);
3119 			(void) printf("%6.2f sec in %s\n",
3120 			    (double)functime / NANOSEC, dli.dli_sname);
3121 		}
3122 
3123 		/*
3124 		 * If we're getting ENOSPC with some regularity, stop.
3125 		 */
3126 		if (zs->zs_enospc_count > 10)
3127 			break;
3128 	}
3129 
3130 	return (NULL);
3131 }
3132 
3133 /*
3134  * Kick off threads to run tests on all datasets in parallel.
3135  */
3136 static void
3137 ztest_run(char *pool)
3138 {
3139 	int t, d, error;
3140 	ztest_shared_t *zs = ztest_shared;
3141 	ztest_args_t *za;
3142 	spa_t *spa;
3143 	char name[100];
3144 	thread_t resume_tid;
3145 
3146 	ztest_exiting = B_FALSE;
3147 
3148 	(void) _mutex_init(&zs->zs_vdev_lock, USYNC_THREAD, NULL);
3149 	(void) rwlock_init(&zs->zs_name_lock, USYNC_THREAD, NULL);
3150 
3151 	for (t = 0; t < ZTEST_SYNC_LOCKS; t++)
3152 		(void) _mutex_init(&zs->zs_sync_lock[t], USYNC_THREAD, NULL);
3153 
3154 	/*
3155 	 * Destroy one disk before we even start.
3156 	 * It's mirrored, so everything should work just fine.
3157 	 * This makes us exercise fault handling very early in spa_load().
3158 	 */
3159 	ztest_obliterate_one_disk(0);
3160 
3161 	/*
3162 	 * Verify that the sum of the sizes of all blocks in the pool
3163 	 * equals the SPA's allocated space total.
3164 	 */
3165 	ztest_verify_blocks(pool);
3166 
3167 	/*
3168 	 * Kick off a replacement of the disk we just obliterated.
3169 	 */
3170 	kernel_init(FREAD | FWRITE);
3171 	VERIFY(spa_open(pool, &spa, FTAG) == 0);
3172 	ztest_replace_one_disk(spa, 0);
3173 	if (zopt_verbose >= 5)
3174 		show_pool_stats(spa);
3175 	spa_close(spa, FTAG);
3176 	kernel_fini();
3177 
3178 	kernel_init(FREAD | FWRITE);
3179 
3180 	/*
3181 	 * Verify that we can export the pool and reimport it under a
3182 	 * different name.
3183 	 */
3184 	if (ztest_random(2) == 0) {
3185 		(void) snprintf(name, 100, "%s_import", pool);
3186 		ztest_spa_import_export(pool, name);
3187 		ztest_spa_import_export(name, pool);
3188 	}
3189 
3190 	/*
3191 	 * Verify that we can loop over all pools.
3192 	 */
3193 	mutex_enter(&spa_namespace_lock);
3194 	for (spa = spa_next(NULL); spa != NULL; spa = spa_next(spa)) {
3195 		if (zopt_verbose > 3) {
3196 			(void) printf("spa_next: found %s\n", spa_name(spa));
3197 		}
3198 	}
3199 	mutex_exit(&spa_namespace_lock);
3200 
3201 	/*
3202 	 * Open our pool.
3203 	 */
3204 	VERIFY(spa_open(pool, &spa, FTAG) == 0);
3205 
3206 	/*
3207 	 * We don't expect the pool to suspend unless maxfaults == 0,
3208 	 * in which case ztest_fault_inject() temporarily takes away
3209 	 * the only valid replica.
3210 	 */
3211 	if (zopt_maxfaults == 0)
3212 		spa->spa_failmode = ZIO_FAILURE_MODE_WAIT;
3213 	else
3214 		spa->spa_failmode = ZIO_FAILURE_MODE_PANIC;
3215 
3216 	/*
3217 	 * Create a thread to periodically resume suspended I/O.
3218 	 */
3219 	VERIFY(thr_create(0, 0, ztest_resume_thread, spa, THR_BOUND,
3220 	    &resume_tid) == 0);
3221 
3222 	/*
3223 	 * Verify that we can safely inquire about about any object,
3224 	 * whether it's allocated or not.  To make it interesting,
3225 	 * we probe a 5-wide window around each power of two.
3226 	 * This hits all edge cases, including zero and the max.
3227 	 */
3228 	for (t = 0; t < 64; t++) {
3229 		for (d = -5; d <= 5; d++) {
3230 			error = dmu_object_info(spa->spa_meta_objset,
3231 			    (1ULL << t) + d, NULL);
3232 			ASSERT(error == 0 || error == ENOENT ||
3233 			    error == EINVAL);
3234 		}
3235 	}
3236 
3237 	/*
3238 	 * Now kick off all the tests that run in parallel.
3239 	 */
3240 	zs->zs_enospc_count = 0;
3241 
3242 	za = umem_zalloc(zopt_threads * sizeof (ztest_args_t), UMEM_NOFAIL);
3243 
3244 	if (zopt_verbose >= 4)
3245 		(void) printf("starting main threads...\n");
3246 
3247 	za[0].za_start = gethrtime();
3248 	za[0].za_stop = za[0].za_start + zopt_passtime * NANOSEC;
3249 	za[0].za_stop = MIN(za[0].za_stop, zs->zs_stop_time);
3250 	za[0].za_kill = za[0].za_stop;
3251 	if (ztest_random(100) < zopt_killrate)
3252 		za[0].za_kill -= ztest_random(zopt_passtime * NANOSEC);
3253 
3254 	for (t = 0; t < zopt_threads; t++) {
3255 		d = t % zopt_datasets;
3256 
3257 		(void) strcpy(za[t].za_pool, pool);
3258 		za[t].za_os = za[d].za_os;
3259 		za[t].za_spa = spa;
3260 		za[t].za_zilog = za[d].za_zilog;
3261 		za[t].za_instance = t;
3262 		za[t].za_random = ztest_random(-1ULL);
3263 		za[t].za_start = za[0].za_start;
3264 		za[t].za_stop = za[0].za_stop;
3265 		za[t].za_kill = za[0].za_kill;
3266 
3267 		if (t < zopt_datasets) {
3268 			int test_future = FALSE;
3269 			(void) rw_rdlock(&ztest_shared->zs_name_lock);
3270 			(void) snprintf(name, 100, "%s/%s_%d", pool, pool, d);
3271 			error = dmu_objset_create(name, DMU_OST_OTHER, NULL, 0,
3272 			    ztest_create_cb, NULL);
3273 			if (error == EEXIST) {
3274 				test_future = TRUE;
3275 			} else if (error == ENOSPC) {
3276 				zs->zs_enospc_count++;
3277 				(void) rw_unlock(&ztest_shared->zs_name_lock);
3278 				break;
3279 			} else if (error != 0) {
3280 				fatal(0, "dmu_objset_create(%s) = %d",
3281 				    name, error);
3282 			}
3283 			error = dmu_objset_open(name, DMU_OST_OTHER,
3284 			    DS_MODE_USER, &za[d].za_os);
3285 			if (error)
3286 				fatal(0, "dmu_objset_open('%s') = %d",
3287 				    name, error);
3288 			(void) rw_unlock(&ztest_shared->zs_name_lock);
3289 			if (test_future)
3290 				ztest_dmu_check_future_leak(&za[t]);
3291 			zil_replay(za[d].za_os, za[d].za_os,
3292 			    ztest_replay_vector);
3293 			za[d].za_zilog = zil_open(za[d].za_os, NULL);
3294 		}
3295 
3296 		VERIFY(thr_create(0, 0, ztest_thread, &za[t], THR_BOUND,
3297 		    &za[t].za_thread) == 0);
3298 	}
3299 
3300 	while (--t >= 0) {
3301 		VERIFY(thr_join(za[t].za_thread, NULL, NULL) == 0);
3302 		if (t < zopt_datasets) {
3303 			zil_close(za[t].za_zilog);
3304 			dmu_objset_close(za[t].za_os);
3305 		}
3306 	}
3307 
3308 	if (zopt_verbose >= 3)
3309 		show_pool_stats(spa);
3310 
3311 	txg_wait_synced(spa_get_dsl(spa), 0);
3312 
3313 	zs->zs_alloc = spa_get_alloc(spa);
3314 	zs->zs_space = spa_get_space(spa);
3315 
3316 	/*
3317 	 * If we had out-of-space errors, destroy a random objset.
3318 	 */
3319 	if (zs->zs_enospc_count != 0) {
3320 		(void) rw_rdlock(&ztest_shared->zs_name_lock);
3321 		d = (int)ztest_random(zopt_datasets);
3322 		(void) snprintf(name, 100, "%s/%s_%d", pool, pool, d);
3323 		if (zopt_verbose >= 3)
3324 			(void) printf("Destroying %s to free up space\n", name);
3325 		(void) dmu_objset_find(name, ztest_destroy_cb, &za[d],
3326 		    DS_FIND_SNAPSHOTS | DS_FIND_CHILDREN);
3327 		(void) rw_unlock(&ztest_shared->zs_name_lock);
3328 	}
3329 
3330 	txg_wait_synced(spa_get_dsl(spa), 0);
3331 
3332 	umem_free(za, zopt_threads * sizeof (ztest_args_t));
3333 
3334 	/* Kill the resume thread */
3335 	ztest_exiting = B_TRUE;
3336 	VERIFY(thr_join(resume_tid, NULL, NULL) == 0);
3337 	ztest_resume(spa);
3338 
3339 	/*
3340 	 * Right before closing the pool, kick off a bunch of async I/O;
3341 	 * spa_close() should wait for it to complete.
3342 	 */
3343 	for (t = 1; t < 50; t++)
3344 		dmu_prefetch(spa->spa_meta_objset, t, 0, 1 << 15);
3345 
3346 	spa_close(spa, FTAG);
3347 
3348 	kernel_fini();
3349 }
3350 
3351 void
3352 print_time(hrtime_t t, char *timebuf)
3353 {
3354 	hrtime_t s = t / NANOSEC;
3355 	hrtime_t m = s / 60;
3356 	hrtime_t h = m / 60;
3357 	hrtime_t d = h / 24;
3358 
3359 	s -= m * 60;
3360 	m -= h * 60;
3361 	h -= d * 24;
3362 
3363 	timebuf[0] = '\0';
3364 
3365 	if (d)
3366 		(void) sprintf(timebuf,
3367 		    "%llud%02lluh%02llum%02llus", d, h, m, s);
3368 	else if (h)
3369 		(void) sprintf(timebuf, "%lluh%02llum%02llus", h, m, s);
3370 	else if (m)
3371 		(void) sprintf(timebuf, "%llum%02llus", m, s);
3372 	else
3373 		(void) sprintf(timebuf, "%llus", s);
3374 }
3375 
3376 /*
3377  * Create a storage pool with the given name and initial vdev size.
3378  * Then create the specified number of datasets in the pool.
3379  */
3380 static void
3381 ztest_init(char *pool)
3382 {
3383 	spa_t *spa;
3384 	int error;
3385 	nvlist_t *nvroot;
3386 
3387 	kernel_init(FREAD | FWRITE);
3388 
3389 	/*
3390 	 * Create the storage pool.
3391 	 */
3392 	(void) spa_destroy(pool);
3393 	ztest_shared->zs_vdev_primaries = 0;
3394 	nvroot = make_vdev_root(NULL, NULL, zopt_vdev_size, 0,
3395 	    0, zopt_raidz, zopt_mirrors, 1);
3396 	error = spa_create(pool, nvroot, NULL, NULL, NULL);
3397 	nvlist_free(nvroot);
3398 
3399 	if (error)
3400 		fatal(0, "spa_create() = %d", error);
3401 	error = spa_open(pool, &spa, FTAG);
3402 	if (error)
3403 		fatal(0, "spa_open() = %d", error);
3404 
3405 	if (zopt_verbose >= 3)
3406 		show_pool_stats(spa);
3407 
3408 	spa_close(spa, FTAG);
3409 
3410 	kernel_fini();
3411 }
3412 
3413 int
3414 main(int argc, char **argv)
3415 {
3416 	int kills = 0;
3417 	int iters = 0;
3418 	int i, f;
3419 	ztest_shared_t *zs;
3420 	ztest_info_t *zi;
3421 	char timebuf[100];
3422 	char numbuf[6];
3423 
3424 	(void) setvbuf(stdout, NULL, _IOLBF, 0);
3425 
3426 	/* Override location of zpool.cache */
3427 	spa_config_path = "/tmp/zpool.cache";
3428 
3429 	ztest_random_fd = open("/dev/urandom", O_RDONLY);
3430 
3431 	process_options(argc, argv);
3432 
3433 	/*
3434 	 * Blow away any existing copy of zpool.cache
3435 	 */
3436 	if (zopt_init != 0)
3437 		(void) remove("/tmp/zpool.cache");
3438 
3439 	zs = ztest_shared = (void *)mmap(0,
3440 	    P2ROUNDUP(sizeof (ztest_shared_t), getpagesize()),
3441 	    PROT_READ | PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0);
3442 
3443 	if (zopt_verbose >= 1) {
3444 		(void) printf("%llu vdevs, %d datasets, %d threads,"
3445 		    " %llu seconds...\n",
3446 		    (u_longlong_t)zopt_vdevs, zopt_datasets, zopt_threads,
3447 		    (u_longlong_t)zopt_time);
3448 	}
3449 
3450 	/*
3451 	 * Create and initialize our storage pool.
3452 	 */
3453 	for (i = 1; i <= zopt_init; i++) {
3454 		bzero(zs, sizeof (ztest_shared_t));
3455 		if (zopt_verbose >= 3 && zopt_init != 1)
3456 			(void) printf("ztest_init(), pass %d\n", i);
3457 		ztest_init(zopt_pool);
3458 	}
3459 
3460 	/*
3461 	 * Initialize the call targets for each function.
3462 	 */
3463 	for (f = 0; f < ZTEST_FUNCS; f++) {
3464 		zi = &zs->zs_info[f];
3465 
3466 		*zi = ztest_info[f];
3467 
3468 		if (*zi->zi_interval == 0)
3469 			zi->zi_call_target = UINT64_MAX;
3470 		else
3471 			zi->zi_call_target = zopt_time / *zi->zi_interval;
3472 	}
3473 
3474 	zs->zs_start_time = gethrtime();
3475 	zs->zs_stop_time = zs->zs_start_time + zopt_time * NANOSEC;
3476 
3477 	/*
3478 	 * Run the tests in a loop.  These tests include fault injection
3479 	 * to verify that self-healing data works, and forced crashes
3480 	 * to verify that we never lose on-disk consistency.
3481 	 */
3482 	while (gethrtime() < zs->zs_stop_time) {
3483 		int status;
3484 		pid_t pid;
3485 		char *tmp;
3486 
3487 		/*
3488 		 * Initialize the workload counters for each function.
3489 		 */
3490 		for (f = 0; f < ZTEST_FUNCS; f++) {
3491 			zi = &zs->zs_info[f];
3492 			zi->zi_calls = 0;
3493 			zi->zi_call_time = 0;
3494 		}
3495 
3496 		pid = fork();
3497 
3498 		if (pid == -1)
3499 			fatal(1, "fork failed");
3500 
3501 		if (pid == 0) {	/* child */
3502 			struct rlimit rl = { 1024, 1024 };
3503 			(void) setrlimit(RLIMIT_NOFILE, &rl);
3504 			(void) enable_extended_FILE_stdio(-1, -1);
3505 			ztest_run(zopt_pool);
3506 			exit(0);
3507 		}
3508 
3509 		while (waitpid(pid, &status, 0) != pid)
3510 			continue;
3511 
3512 		if (WIFEXITED(status)) {
3513 			if (WEXITSTATUS(status) != 0) {
3514 				(void) fprintf(stderr,
3515 				    "child exited with code %d\n",
3516 				    WEXITSTATUS(status));
3517 				exit(2);
3518 			}
3519 		} else if (WIFSIGNALED(status)) {
3520 			if (WTERMSIG(status) != SIGKILL) {
3521 				(void) fprintf(stderr,
3522 				    "child died with signal %d\n",
3523 				    WTERMSIG(status));
3524 				exit(3);
3525 			}
3526 			kills++;
3527 		} else {
3528 			(void) fprintf(stderr, "something strange happened "
3529 			    "to child\n");
3530 			exit(4);
3531 		}
3532 
3533 		iters++;
3534 
3535 		if (zopt_verbose >= 1) {
3536 			hrtime_t now = gethrtime();
3537 
3538 			now = MIN(now, zs->zs_stop_time);
3539 			print_time(zs->zs_stop_time - now, timebuf);
3540 			nicenum(zs->zs_space, numbuf);
3541 
3542 			(void) printf("Pass %3d, %8s, %3llu ENOSPC, "
3543 			    "%4.1f%% of %5s used, %3.0f%% done, %8s to go\n",
3544 			    iters,
3545 			    WIFEXITED(status) ? "Complete" : "SIGKILL",
3546 			    (u_longlong_t)zs->zs_enospc_count,
3547 			    100.0 * zs->zs_alloc / zs->zs_space,
3548 			    numbuf,
3549 			    100.0 * (now - zs->zs_start_time) /
3550 			    (zopt_time * NANOSEC), timebuf);
3551 		}
3552 
3553 		if (zopt_verbose >= 2) {
3554 			(void) printf("\nWorkload summary:\n\n");
3555 			(void) printf("%7s %9s   %s\n",
3556 			    "Calls", "Time", "Function");
3557 			(void) printf("%7s %9s   %s\n",
3558 			    "-----", "----", "--------");
3559 			for (f = 0; f < ZTEST_FUNCS; f++) {
3560 				Dl_info dli;
3561 
3562 				zi = &zs->zs_info[f];
3563 				print_time(zi->zi_call_time, timebuf);
3564 				(void) dladdr((void *)zi->zi_func, &dli);
3565 				(void) printf("%7llu %9s   %s\n",
3566 				    (u_longlong_t)zi->zi_calls, timebuf,
3567 				    dli.dli_sname);
3568 			}
3569 			(void) printf("\n");
3570 		}
3571 
3572 		/*
3573 		 * It's possible that we killed a child during a rename test, in
3574 		 * which case we'll have a 'ztest_tmp' pool lying around instead
3575 		 * of 'ztest'.  Do a blind rename in case this happened.
3576 		 */
3577 		tmp = umem_alloc(strlen(zopt_pool) + 5, UMEM_NOFAIL);
3578 		(void) strcpy(tmp, zopt_pool);
3579 		(void) strcat(tmp, "_tmp");
3580 		kernel_init(FREAD | FWRITE);
3581 		(void) spa_rename(tmp, zopt_pool);
3582 		kernel_fini();
3583 		umem_free(tmp, strlen(tmp) + 1);
3584 	}
3585 
3586 	ztest_verify_blocks(zopt_pool);
3587 
3588 	if (zopt_verbose >= 1) {
3589 		(void) printf("%d killed, %d completed, %.0f%% kill rate\n",
3590 		    kills, iters - kills, (100.0 * kills) / MAX(1, iters));
3591 	}
3592 
3593 	return (0);
3594 }
3595