xref: /illumos-gate/usr/src/cmd/ztest/ztest.c (revision 1df447eb)
1fa9e4066Sahrens /*
2fa9e4066Sahrens  * CDDL HEADER START
3fa9e4066Sahrens  *
4fa9e4066Sahrens  * The contents of this file are subject to the terms of the
5441d80aaSlling  * Common Development and Distribution License (the "License").
6441d80aaSlling  * You may not use this file except in compliance with the License.
7fa9e4066Sahrens  *
8fa9e4066Sahrens  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9fa9e4066Sahrens  * or http://www.opensolaris.org/os/licensing.
10fa9e4066Sahrens  * See the License for the specific language governing permissions
11fa9e4066Sahrens  * and limitations under the License.
12fa9e4066Sahrens  *
13fa9e4066Sahrens  * When distributing Covered Code, include this CDDL HEADER in each
14fa9e4066Sahrens  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15fa9e4066Sahrens  * If applicable, add the following below this CDDL HEADER, with the
16fa9e4066Sahrens  * fields enclosed by brackets "[]" replaced with your own identifying
17fa9e4066Sahrens  * information: Portions Copyright [yyyy] [name of copyright owner]
18fa9e4066Sahrens  *
19fa9e4066Sahrens  * CDDL HEADER END
20fa9e4066Sahrens  */
21fa9e4066Sahrens /*
2247cb52daSJeff Bonwick  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
2381cd5c55SMatthew Ahrens  * Copyright (c) 2011, 2015 by Delphix. All rights reserved.
24e9103aaeSGarrett D'Amore  * Copyright 2011 Nexenta Systems, Inc.  All rights reserved.
25a7a845e4SSteven Hartland  * Copyright (c) 2013 Steven Hartland. All rights reserved.
26fa9e4066Sahrens  */
27fa9e4066Sahrens 
28fa9e4066Sahrens /*
29fa9e4066Sahrens  * The objective of this program is to provide a DMU/ZAP/SPA stress test
30fa9e4066Sahrens  * that runs entirely in userland, is easy to use, and easy to extend.
31fa9e4066Sahrens  *
32fa9e4066Sahrens  * The overall design of the ztest program is as follows:
33fa9e4066Sahrens  *
34fa9e4066Sahrens  * (1) For each major functional area (e.g. adding vdevs to a pool,
35fa9e4066Sahrens  *     creating and destroying datasets, reading and writing objects, etc)
36fa9e4066Sahrens  *     we have a simple routine to test that functionality.  These
37fa9e4066Sahrens  *     individual routines do not have to do anything "stressful".
38fa9e4066Sahrens  *
39fa9e4066Sahrens  * (2) We turn these simple functionality tests into a stress test by
40fa9e4066Sahrens  *     running them all in parallel, with as many threads as desired,
41fa9e4066Sahrens  *     and spread across as many datasets, objects, and vdevs as desired.
42fa9e4066Sahrens  *
43fa9e4066Sahrens  * (3) While all this is happening, we inject faults into the pool to
44fa9e4066Sahrens  *     verify that self-healing data really works.
45fa9e4066Sahrens  *
46fa9e4066Sahrens  * (4) Every time we open a dataset, we change its checksum and compression
47fa9e4066Sahrens  *     functions.  Thus even individual objects vary from block to block
48fa9e4066Sahrens  *     in which checksum they use and whether they're compressed.
49fa9e4066Sahrens  *
50fa9e4066Sahrens  * (5) To verify that we never lose on-disk consistency after a crash,
51fa9e4066Sahrens  *     we run the entire test in a child of the main process.
52fa9e4066Sahrens  *     At random times, the child self-immolates with a SIGKILL.
53fa9e4066Sahrens  *     This is the software equivalent of pulling the power cord.
54fa9e4066Sahrens  *     The parent then runs the test again, using the existing
555d7b4d43SMatthew Ahrens  *     storage pool, as many times as desired. If backwards compatibility
56420dfc95SChris Siden  *     testing is enabled ztest will sometimes run the "older" version
57420dfc95SChris Siden  *     of ztest after a SIGKILL.
58fa9e4066Sahrens  *
59fa9e4066Sahrens  * (6) To verify that we don't have future leaks or temporal incursions,
60fa9e4066Sahrens  *     many of the functional tests record the transaction group number
61fa9e4066Sahrens  *     as part of their data.  When reading old data, they verify that
62fa9e4066Sahrens  *     the transaction group number is less than the current, open txg.
63fa9e4066Sahrens  *     If you add a new test, please do this if applicable.
64fa9e4066Sahrens  *
65fa9e4066Sahrens  * When run with no arguments, ztest runs for about five minutes and
66fa9e4066Sahrens  * produces no output if successful.  To get a little bit of information,
67fa9e4066Sahrens  * specify -V.  To get more information, specify -VV, and so on.
68fa9e4066Sahrens  *
69fa9e4066Sahrens  * To turn this into an overnight stress test, use -T to specify run time.
70fa9e4066Sahrens  *
71fa9e4066Sahrens  * You can ask more more vdevs [-v], datasets [-d], or threads [-t]
72fa9e4066Sahrens  * to increase the pool capacity, fanout, and overall stress level.
73fa9e4066Sahrens  *
74420dfc95SChris Siden  * Use the -k option to set the desired frequency of kills.
75420dfc95SChris Siden  *
76420dfc95SChris Siden  * When ztest invokes itself it passes all relevant information through a
77420dfc95SChris Siden  * temporary file which is mmap-ed in the child process. This allows shared
78420dfc95SChris Siden  * memory to survive the exec syscall. The ztest_shared_hdr_t struct is always
79420dfc95SChris Siden  * stored at offset 0 of this file and contains information on the size and
80420dfc95SChris Siden  * number of shared structures in the file. The information stored in this file
81420dfc95SChris Siden  * must remain backwards compatible with older versions of ztest so that
82420dfc95SChris Siden  * ztest can invoke them during backwards compatibility testing (-B).
83fa9e4066Sahrens  */
84fa9e4066Sahrens 
85fa9e4066Sahrens #include <sys/zfs_context.h>
86fa9e4066Sahrens #include <sys/spa.h>
87fa9e4066Sahrens #include <sys/dmu.h>
88fa9e4066Sahrens #include <sys/txg.h>
892fdbea25SAleksandr Guzovskiy #include <sys/dbuf.h>
90fa9e4066Sahrens #include <sys/zap.h>
91fa9e4066Sahrens #include <sys/dmu_objset.h>
92fa9e4066Sahrens #include <sys/poll.h>
93fa9e4066Sahrens #include <sys/stat.h>
94fa9e4066Sahrens #include <sys/time.h>
95fa9e4066Sahrens #include <sys/wait.h>
96fa9e4066Sahrens #include <sys/mman.h>
97fa9e4066Sahrens #include <sys/resource.h>
98fa9e4066Sahrens #include <sys/zio.h>
99fa9e4066Sahrens #include <sys/zil.h>
100b24ab676SJeff Bonwick #include <sys/zil_impl.h>
101fa9e4066Sahrens #include <sys/vdev_impl.h>
102e14bb325SJeff Bonwick #include <sys/vdev_file.h>
103fa9e4066Sahrens #include <sys/spa_impl.h>
10488ecc943SGeorge Wilson #include <sys/metaslab_impl.h>
105fa9e4066Sahrens #include <sys/dsl_prop.h>
1064f5064b7SMark J Musante #include <sys/dsl_dataset.h>
1073b2aab18SMatthew Ahrens #include <sys/dsl_destroy.h>
1083f9d6ad7SLin Ling #include <sys/dsl_scan.h>
109cde58dbcSMatthew Ahrens #include <sys/zio_checksum.h>
110fa9e4066Sahrens #include <sys/refcount.h>
111ad135b5dSChristopher Siden #include <sys/zfeature.h>
1123b2aab18SMatthew Ahrens #include <sys/dsl_userhold.h>
113fa9e4066Sahrens #include <stdio.h>
114004388ebScasper #include <stdio_ext.h>
115fa9e4066Sahrens #include <stdlib.h>
116fa9e4066Sahrens #include <unistd.h>
117fa9e4066Sahrens #include <signal.h>
118fa9e4066Sahrens #include <umem.h>
119fa9e4066Sahrens #include <dlfcn.h>
120fa9e4066Sahrens #include <ctype.h>
121fa9e4066Sahrens #include <math.h>
122fa9e4066Sahrens #include <sys/fs/zfs.h>
123b24ab676SJeff Bonwick #include <libnvpair.h>
124fa9e4066Sahrens 
125741652b0SEtienne Dechamps static int ztest_fd_data = -1;
126741652b0SEtienne Dechamps static int ztest_fd_rand = -1;
127420dfc95SChris Siden 
128420dfc95SChris Siden typedef struct ztest_shared_hdr {
129420dfc95SChris Siden 	uint64_t	zh_hdr_size;
130420dfc95SChris Siden 	uint64_t	zh_opts_size;
131420dfc95SChris Siden 	uint64_t	zh_size;
132420dfc95SChris Siden 	uint64_t	zh_stats_size;
133420dfc95SChris Siden 	uint64_t	zh_stats_count;
134420dfc95SChris Siden 	uint64_t	zh_ds_size;
135420dfc95SChris Siden 	uint64_t	zh_ds_count;
136420dfc95SChris Siden } ztest_shared_hdr_t;
137420dfc95SChris Siden 
138420dfc95SChris Siden static ztest_shared_hdr_t *ztest_shared_hdr;
139420dfc95SChris Siden 
140420dfc95SChris Siden typedef struct ztest_shared_opts {
141420dfc95SChris Siden 	char zo_pool[MAXNAMELEN];
142420dfc95SChris Siden 	char zo_dir[MAXNAMELEN];
143420dfc95SChris Siden 	char zo_alt_ztest[MAXNAMELEN];
144420dfc95SChris Siden 	char zo_alt_libpath[MAXNAMELEN];
145420dfc95SChris Siden 	uint64_t zo_vdevs;
146420dfc95SChris Siden 	uint64_t zo_vdevtime;
147420dfc95SChris Siden 	size_t zo_vdev_size;
148420dfc95SChris Siden 	int zo_ashift;
149420dfc95SChris Siden 	int zo_mirrors;
150420dfc95SChris Siden 	int zo_raidz;
151420dfc95SChris Siden 	int zo_raidz_parity;
152420dfc95SChris Siden 	int zo_datasets;
153420dfc95SChris Siden 	int zo_threads;
154420dfc95SChris Siden 	uint64_t zo_passtime;
155420dfc95SChris Siden 	uint64_t zo_killrate;
156420dfc95SChris Siden 	int zo_verbose;
157420dfc95SChris Siden 	int zo_init;
158420dfc95SChris Siden 	uint64_t zo_time;
159420dfc95SChris Siden 	uint64_t zo_maxloops;
160420dfc95SChris Siden 	uint64_t zo_metaslab_gang_bang;
161420dfc95SChris Siden } ztest_shared_opts_t;
162420dfc95SChris Siden 
163420dfc95SChris Siden static const ztest_shared_opts_t ztest_opts_defaults = {
164420dfc95SChris Siden 	.zo_pool = { 'z', 't', 'e', 's', 't', '\0' },
165420dfc95SChris Siden 	.zo_dir = { '/', 't', 'm', 'p', '\0' },
166420dfc95SChris Siden 	.zo_alt_ztest = { '\0' },
167420dfc95SChris Siden 	.zo_alt_libpath = { '\0' },
168420dfc95SChris Siden 	.zo_vdevs = 5,
169420dfc95SChris Siden 	.zo_ashift = SPA_MINBLOCKSHIFT,
170420dfc95SChris Siden 	.zo_mirrors = 2,
171420dfc95SChris Siden 	.zo_raidz = 4,
172420dfc95SChris Siden 	.zo_raidz_parity = 1,
173539eed8aSMatthew Ahrens 	.zo_vdev_size = SPA_MINDEVSIZE * 2,
174420dfc95SChris Siden 	.zo_datasets = 7,
175420dfc95SChris Siden 	.zo_threads = 23,
176420dfc95SChris Siden 	.zo_passtime = 60,		/* 60 seconds */
177420dfc95SChris Siden 	.zo_killrate = 70,		/* 70% kill rate */
178420dfc95SChris Siden 	.zo_verbose = 0,
179420dfc95SChris Siden 	.zo_init = 1,
180420dfc95SChris Siden 	.zo_time = 300,			/* 5 minutes */
181420dfc95SChris Siden 	.zo_maxloops = 50,		/* max loops during spa_freeze() */
182420dfc95SChris Siden 	.zo_metaslab_gang_bang = 32 << 10
183420dfc95SChris Siden };
184420dfc95SChris Siden 
185420dfc95SChris Siden extern uint64_t metaslab_gang_bang;
186420dfc95SChris Siden extern uint64_t metaslab_df_alloc_threshold;
18769962b56SMatthew Ahrens extern uint64_t zfs_deadman_synctime_ms;
18830beaff4SGeorge Wilson extern int metaslab_preload_limit;
189420dfc95SChris Siden 
190420dfc95SChris Siden static ztest_shared_opts_t *ztest_shared_opts;
191420dfc95SChris Siden static ztest_shared_opts_t ztest_opts;
192420dfc95SChris Siden 
193420dfc95SChris Siden typedef struct ztest_shared_ds {
194420dfc95SChris Siden 	uint64_t	zd_seq;
195420dfc95SChris Siden } ztest_shared_ds_t;
196420dfc95SChris Siden 
197420dfc95SChris Siden static ztest_shared_ds_t *ztest_shared_ds;
198420dfc95SChris Siden #define	ZTEST_GET_SHARED_DS(d) (&ztest_shared_ds[d])
199fa9e4066Sahrens 
200b24ab676SJeff Bonwick #define	BT_MAGIC	0x123456789abcdefULL
201420dfc95SChris Siden #define	MAXFAULTS() \
202420dfc95SChris Siden 	(MAX(zs->zs_mirrors, 1) * (ztest_opts.zo_raidz_parity + 1) - 1)
203b24ab676SJeff Bonwick 
204b24ab676SJeff Bonwick enum ztest_io_type {
205b24ab676SJeff Bonwick 	ZTEST_IO_WRITE_TAG,
206b24ab676SJeff Bonwick 	ZTEST_IO_WRITE_PATTERN,
207b24ab676SJeff Bonwick 	ZTEST_IO_WRITE_ZEROES,
208b24ab676SJeff Bonwick 	ZTEST_IO_TRUNCATE,
209b24ab676SJeff Bonwick 	ZTEST_IO_SETATTR,
21080901aeaSGeorge Wilson 	ZTEST_IO_REWRITE,
211b24ab676SJeff Bonwick 	ZTEST_IO_TYPES
212b24ab676SJeff Bonwick };
213b24ab676SJeff Bonwick 
214e05725b1Sbonwick typedef struct ztest_block_tag {
215b24ab676SJeff Bonwick 	uint64_t	bt_magic;
216e05725b1Sbonwick 	uint64_t	bt_objset;
217e05725b1Sbonwick 	uint64_t	bt_object;
218e05725b1Sbonwick 	uint64_t	bt_offset;
219b24ab676SJeff Bonwick 	uint64_t	bt_gen;
220e05725b1Sbonwick 	uint64_t	bt_txg;
221b24ab676SJeff Bonwick 	uint64_t	bt_crtxg;
222e05725b1Sbonwick } ztest_block_tag_t;
223e05725b1Sbonwick 
224b24ab676SJeff Bonwick typedef struct bufwad {
225b24ab676SJeff Bonwick 	uint64_t	bw_index;
226b24ab676SJeff Bonwick 	uint64_t	bw_txg;
227b24ab676SJeff Bonwick 	uint64_t	bw_data;
228b24ab676SJeff Bonwick } bufwad_t;
229b24ab676SJeff Bonwick 
230b24ab676SJeff Bonwick /*
231b24ab676SJeff Bonwick  * XXX -- fix zfs range locks to be generic so we can use them here.
232b24ab676SJeff Bonwick  */
233b24ab676SJeff Bonwick typedef enum {
234b24ab676SJeff Bonwick 	RL_READER,
235b24ab676SJeff Bonwick 	RL_WRITER,
236b24ab676SJeff Bonwick 	RL_APPEND
237b24ab676SJeff Bonwick } rl_type_t;
238b24ab676SJeff Bonwick 
239b24ab676SJeff Bonwick typedef struct rll {
240b24ab676SJeff Bonwick 	void		*rll_writer;
241b24ab676SJeff Bonwick 	int		rll_readers;
242b24ab676SJeff Bonwick 	mutex_t		rll_lock;
243b24ab676SJeff Bonwick 	cond_t		rll_cv;
244b24ab676SJeff Bonwick } rll_t;
245b24ab676SJeff Bonwick 
246b24ab676SJeff Bonwick typedef struct rl {
247b24ab676SJeff Bonwick 	uint64_t	rl_object;
248b24ab676SJeff Bonwick 	uint64_t	rl_offset;
249b24ab676SJeff Bonwick 	uint64_t	rl_size;
250b24ab676SJeff Bonwick 	rll_t		*rl_lock;
251b24ab676SJeff Bonwick } rl_t;
252b24ab676SJeff Bonwick 
253b24ab676SJeff Bonwick #define	ZTEST_RANGE_LOCKS	64
254b24ab676SJeff Bonwick #define	ZTEST_OBJECT_LOCKS	64
255b24ab676SJeff Bonwick 
256b24ab676SJeff Bonwick /*
257b24ab676SJeff Bonwick  * Object descriptor.  Used as a template for object lookup/create/remove.
258b24ab676SJeff Bonwick  */
259b24ab676SJeff Bonwick typedef struct ztest_od {
260b24ab676SJeff Bonwick 	uint64_t	od_dir;
261b24ab676SJeff Bonwick 	uint64_t	od_object;
262b24ab676SJeff Bonwick 	dmu_object_type_t od_type;
263b24ab676SJeff Bonwick 	dmu_object_type_t od_crtype;
264b24ab676SJeff Bonwick 	uint64_t	od_blocksize;
265b24ab676SJeff Bonwick 	uint64_t	od_crblocksize;
266b24ab676SJeff Bonwick 	uint64_t	od_gen;
267b24ab676SJeff Bonwick 	uint64_t	od_crgen;
268b24ab676SJeff Bonwick 	char		od_name[MAXNAMELEN];
269b24ab676SJeff Bonwick } ztest_od_t;
270fa9e4066Sahrens 
271b24ab676SJeff Bonwick /*
272b24ab676SJeff Bonwick  * Per-dataset state.
273b24ab676SJeff Bonwick  */
274b24ab676SJeff Bonwick typedef struct ztest_ds {
275420dfc95SChris Siden 	ztest_shared_ds_t *zd_shared;
276b24ab676SJeff Bonwick 	objset_t	*zd_os;
277c9ba2a43SEric Schrock 	rwlock_t	zd_zilog_lock;
278b24ab676SJeff Bonwick 	zilog_t		*zd_zilog;
279b24ab676SJeff Bonwick 	ztest_od_t	*zd_od;		/* debugging aid */
280b24ab676SJeff Bonwick 	char		zd_name[MAXNAMELEN];
281b24ab676SJeff Bonwick 	mutex_t		zd_dirobj_lock;
282b24ab676SJeff Bonwick 	rll_t		zd_object_lock[ZTEST_OBJECT_LOCKS];
283b24ab676SJeff Bonwick 	rll_t		zd_range_lock[ZTEST_RANGE_LOCKS];
284b24ab676SJeff Bonwick } ztest_ds_t;
285b24ab676SJeff Bonwick 
286b24ab676SJeff Bonwick /*
287b24ab676SJeff Bonwick  * Per-iteration state.
288b24ab676SJeff Bonwick  */
289b24ab676SJeff Bonwick typedef void ztest_func_t(ztest_ds_t *zd, uint64_t id);
290b24ab676SJeff Bonwick 
291b24ab676SJeff Bonwick typedef struct ztest_info {
292b24ab676SJeff Bonwick 	ztest_func_t	*zi_func;	/* test function */
293b24ab676SJeff Bonwick 	uint64_t	zi_iters;	/* iterations per execution */
294b24ab676SJeff Bonwick 	uint64_t	*zi_interval;	/* execute every <interval> seconds */
295b24ab676SJeff Bonwick } ztest_info_t;
296fa9e4066Sahrens 
297420dfc95SChris Siden typedef struct ztest_shared_callstate {
298420dfc95SChris Siden 	uint64_t	zc_count;	/* per-pass count */
299420dfc95SChris Siden 	uint64_t	zc_time;	/* per-pass time */
300420dfc95SChris Siden 	uint64_t	zc_next;	/* next time to call this function */
301420dfc95SChris Siden } ztest_shared_callstate_t;
302420dfc95SChris Siden 
303420dfc95SChris Siden static ztest_shared_callstate_t *ztest_shared_callstate;
304420dfc95SChris Siden #define	ZTEST_GET_SHARED_CALLSTATE(c) (&ztest_shared_callstate[c])
305420dfc95SChris Siden 
306fa9e4066Sahrens /*
307fa9e4066Sahrens  * Note: these aren't static because we want dladdr() to work.
308fa9e4066Sahrens  */
309fa9e4066Sahrens ztest_func_t ztest_dmu_read_write;
310fa9e4066Sahrens ztest_func_t ztest_dmu_write_parallel;
311fa9e4066Sahrens ztest_func_t ztest_dmu_object_alloc_free;
312d20e665cSRicardo M. Correia ztest_func_t ztest_dmu_commit_callbacks;
313fa9e4066Sahrens ztest_func_t ztest_zap;
314fa9e4066Sahrens ztest_func_t ztest_zap_parallel;
315b24ab676SJeff Bonwick ztest_func_t ztest_zil_commit;
316c9ba2a43SEric Schrock ztest_func_t ztest_zil_remount;
317b24ab676SJeff Bonwick ztest_func_t ztest_dmu_read_write_zcopy;
318fa9e4066Sahrens ztest_func_t ztest_dmu_objset_create_destroy;
319b24ab676SJeff Bonwick ztest_func_t ztest_dmu_prealloc;
320b24ab676SJeff Bonwick ztest_func_t ztest_fzap;
321fa9e4066Sahrens ztest_func_t ztest_dmu_snapshot_create_destroy;
322b24ab676SJeff Bonwick ztest_func_t ztest_dsl_prop_get_set;
323b24ab676SJeff Bonwick ztest_func_t ztest_spa_prop_get_set;
324fa9e4066Sahrens ztest_func_t ztest_spa_create_destroy;
325fa9e4066Sahrens ztest_func_t ztest_fault_inject;
326b24ab676SJeff Bonwick ztest_func_t ztest_ddt_repair;
327b24ab676SJeff Bonwick ztest_func_t ztest_dmu_snapshot_hold;
328e14bb325SJeff Bonwick ztest_func_t ztest_spa_rename;
329b24ab676SJeff Bonwick ztest_func_t ztest_scrub;
330b24ab676SJeff Bonwick ztest_func_t ztest_dsl_dataset_promote_busy;
331fa9e4066Sahrens ztest_func_t ztest_vdev_attach_detach;
332fa9e4066Sahrens ztest_func_t ztest_vdev_LUN_growth;
333fa9e4066Sahrens ztest_func_t ztest_vdev_add_remove;
334e14bb325SJeff Bonwick ztest_func_t ztest_vdev_aux_add_remove;
3351195e687SMark J Musante ztest_func_t ztest_split_pool;
336e9103aaeSGarrett D'Amore ztest_func_t ztest_reguid;
33725345e46SGeorge Wilson ztest_func_t ztest_spa_upgrade;
338fa9e4066Sahrens 
339b24ab676SJeff Bonwick uint64_t zopt_always = 0ULL * NANOSEC;		/* all the time */
340b24ab676SJeff Bonwick uint64_t zopt_incessant = 1ULL * NANOSEC / 10;	/* every 1/10 second */
341b24ab676SJeff Bonwick uint64_t zopt_often = 1ULL * NANOSEC;		/* every second */
342b24ab676SJeff Bonwick uint64_t zopt_sometimes = 10ULL * NANOSEC;	/* every 10 seconds */
343b24ab676SJeff Bonwick uint64_t zopt_rarely = 60ULL * NANOSEC;		/* every 60 seconds */
344fa9e4066Sahrens 
345fa9e4066Sahrens ztest_info_t ztest_info[] = {
346e05725b1Sbonwick 	{ ztest_dmu_read_write,			1,	&zopt_always	},
347b24ab676SJeff Bonwick 	{ ztest_dmu_write_parallel,		10,	&zopt_always	},
348e05725b1Sbonwick 	{ ztest_dmu_object_alloc_free,		1,	&zopt_always	},
349b24ab676SJeff Bonwick 	{ ztest_dmu_commit_callbacks,		1,	&zopt_always	},
350e05725b1Sbonwick 	{ ztest_zap,				30,	&zopt_always	},
351e05725b1Sbonwick 	{ ztest_zap_parallel,			100,	&zopt_always	},
3521195e687SMark J Musante 	{ ztest_split_pool,			1,	&zopt_always	},
353b24ab676SJeff Bonwick 	{ ztest_zil_commit,			1,	&zopt_incessant	},
354c9ba2a43SEric Schrock 	{ ztest_zil_remount,			1,	&zopt_sometimes	},
355b24ab676SJeff Bonwick 	{ ztest_dmu_read_write_zcopy,		1,	&zopt_often	},
356b24ab676SJeff Bonwick 	{ ztest_dmu_objset_create_destroy,	1,	&zopt_often	},
357b24ab676SJeff Bonwick 	{ ztest_dsl_prop_get_set,		1,	&zopt_often	},
358b24ab676SJeff Bonwick 	{ ztest_spa_prop_get_set,		1,	&zopt_sometimes	},
359b24ab676SJeff Bonwick #if 0
360b24ab676SJeff Bonwick 	{ ztest_dmu_prealloc,			1,	&zopt_sometimes	},
361b24ab676SJeff Bonwick #endif
362b24ab676SJeff Bonwick 	{ ztest_fzap,				1,	&zopt_sometimes	},
363b24ab676SJeff Bonwick 	{ ztest_dmu_snapshot_create_destroy,	1,	&zopt_sometimes	},
364b24ab676SJeff Bonwick 	{ ztest_spa_create_destroy,		1,	&zopt_sometimes	},
365e05725b1Sbonwick 	{ ztest_fault_inject,			1,	&zopt_sometimes	},
366b24ab676SJeff Bonwick 	{ ztest_ddt_repair,			1,	&zopt_sometimes	},
3675c987a37SChris Kirby 	{ ztest_dmu_snapshot_hold,		1,	&zopt_sometimes	},
3682c1e2b44SGeorge Wilson 	{ ztest_reguid,				1,	&zopt_rarely	},
369e05725b1Sbonwick 	{ ztest_spa_rename,			1,	&zopt_rarely	},
370b24ab676SJeff Bonwick 	{ ztest_scrub,				1,	&zopt_rarely	},
37125345e46SGeorge Wilson 	{ ztest_spa_upgrade,			1,	&zopt_rarely	},
372b24ab676SJeff Bonwick 	{ ztest_dsl_dataset_promote_busy,	1,	&zopt_rarely	},
3733b2aab18SMatthew Ahrens 	{ ztest_vdev_attach_detach,		1,	&zopt_sometimes	},
374e14bb325SJeff Bonwick 	{ ztest_vdev_LUN_growth,		1,	&zopt_rarely	},
375420dfc95SChris Siden 	{ ztest_vdev_add_remove,		1,
376420dfc95SChris Siden 	    &ztest_opts.zo_vdevtime				},
377420dfc95SChris Siden 	{ ztest_vdev_aux_add_remove,		1,
378420dfc95SChris Siden 	    &ztest_opts.zo_vdevtime				},
379fa9e4066Sahrens };
380fa9e4066Sahrens 
381fa9e4066Sahrens #define	ZTEST_FUNCS	(sizeof (ztest_info) / sizeof (ztest_info_t))
382fa9e4066Sahrens 
383d20e665cSRicardo M. Correia /*
384d20e665cSRicardo M. Correia  * The following struct is used to hold a list of uncalled commit callbacks.
385d20e665cSRicardo M. Correia  * The callbacks are ordered by txg number.
386d20e665cSRicardo M. Correia  */
387d20e665cSRicardo M. Correia typedef struct ztest_cb_list {
388d20e665cSRicardo M. Correia 	mutex_t	zcl_callbacks_lock;
389d20e665cSRicardo M. Correia 	list_t	zcl_callbacks;
390d20e665cSRicardo M. Correia } ztest_cb_list_t;
391d20e665cSRicardo M. Correia 
392fa9e4066Sahrens /*
393fa9e4066Sahrens  * Stuff we need to share writably between parent and child.
394fa9e4066Sahrens  */
395fa9e4066Sahrens typedef struct ztest_shared {
396420dfc95SChris Siden 	boolean_t	zs_do_init;
397b24ab676SJeff Bonwick 	hrtime_t	zs_proc_start;
398b24ab676SJeff Bonwick 	hrtime_t	zs_proc_stop;
399b24ab676SJeff Bonwick 	hrtime_t	zs_thread_start;
400b24ab676SJeff Bonwick 	hrtime_t	zs_thread_stop;
401b24ab676SJeff Bonwick 	hrtime_t	zs_thread_kill;
402b24ab676SJeff Bonwick 	uint64_t	zs_enospc_count;
40388ecc943SGeorge Wilson 	uint64_t	zs_vdev_next_leaf;
404e14bb325SJeff Bonwick 	uint64_t	zs_vdev_aux;
405fa9e4066Sahrens 	uint64_t	zs_alloc;
406fa9e4066Sahrens 	uint64_t	zs_space;
4071195e687SMark J Musante 	uint64_t	zs_splits;
4081195e687SMark J Musante 	uint64_t	zs_mirrors;
409420dfc95SChris Siden 	uint64_t	zs_metaslab_sz;
410420dfc95SChris Siden 	uint64_t	zs_metaslab_df_alloc_threshold;
411420dfc95SChris Siden 	uint64_t	zs_guid;
412fa9e4066Sahrens } ztest_shared_t;
413fa9e4066Sahrens 
414b24ab676SJeff Bonwick #define	ID_PARALLEL	-1ULL
415b24ab676SJeff Bonwick 
416fa9e4066Sahrens static char ztest_dev_template[] = "%s/%s.%llua";
417e14bb325SJeff Bonwick static char ztest_aux_template[] = "%s/%s.%s.%llu";
418b24ab676SJeff Bonwick ztest_shared_t *ztest_shared;
419fa9e4066Sahrens 
420420dfc95SChris Siden static spa_t *ztest_spa = NULL;
421420dfc95SChris Siden static ztest_ds_t *ztest_ds;
422420dfc95SChris Siden 
423420dfc95SChris Siden static mutex_t ztest_vdev_lock;
424dfbb9432SGeorge Wilson 
425dfbb9432SGeorge Wilson /*
426dfbb9432SGeorge Wilson  * The ztest_name_lock protects the pool and dataset namespace used by
427dfbb9432SGeorge Wilson  * the individual tests. To modify the namespace, consumers must grab
428dfbb9432SGeorge Wilson  * this lock as writer. Grabbing the lock as reader will ensure that the
429dfbb9432SGeorge Wilson  * namespace does not change while the lock is held.
430dfbb9432SGeorge Wilson  */
431420dfc95SChris Siden static rwlock_t ztest_name_lock;
432fa9e4066Sahrens 
433420dfc95SChris Siden static boolean_t ztest_dump_core = B_TRUE;
434e14bb325SJeff Bonwick static boolean_t ztest_exiting;
4350a4e9518Sgw 
436d20e665cSRicardo M. Correia /* Global commit callback list */
437d20e665cSRicardo M. Correia static ztest_cb_list_t zcl;
438d20e665cSRicardo M. Correia 
439b24ab676SJeff Bonwick enum ztest_object {
440b24ab676SJeff Bonwick 	ZTEST_META_DNODE = 0,
441b24ab676SJeff Bonwick 	ZTEST_DIROBJ,
442b24ab676SJeff Bonwick 	ZTEST_OBJECTS
443b24ab676SJeff Bonwick };
444fa9e4066Sahrens 
4451ce825d8Sraf static void usage(boolean_t) __NORETURN;
446f1b4288bSvb 
447fa9e4066Sahrens /*
448fa9e4066Sahrens  * These libumem hooks provide a reasonable set of defaults for the allocator's
449fa9e4066Sahrens  * debugging facilities.
450fa9e4066Sahrens  */
451fa9e4066Sahrens const char *
452fa9e4066Sahrens _umem_debug_init()
453fa9e4066Sahrens {
454fa9e4066Sahrens 	return ("default,verbose"); /* $UMEM_DEBUG setting */
455fa9e4066Sahrens }
456fa9e4066Sahrens 
457fa9e4066Sahrens const char *
458fa9e4066Sahrens _umem_logging_init(void)
459fa9e4066Sahrens {
460fa9e4066Sahrens 	return ("fail,contents"); /* $UMEM_LOGGING setting */
461fa9e4066Sahrens }
462fa9e4066Sahrens 
463fa9e4066Sahrens #define	FATAL_MSG_SZ	1024
464fa9e4066Sahrens 
465fa9e4066Sahrens char *fatal_msg;
466fa9e4066Sahrens 
467fa9e4066Sahrens static void
468fa9e4066Sahrens fatal(int do_perror, char *message, ...)
469fa9e4066Sahrens {
470fa9e4066Sahrens 	va_list args;
471fa9e4066Sahrens 	int save_errno = errno;
472fa9e4066Sahrens 	char buf[FATAL_MSG_SZ];
473fa9e4066Sahrens 
474fa9e4066Sahrens 	(void) fflush(stdout);
475fa9e4066Sahrens 
476fa9e4066Sahrens 	va_start(args, message);
477fa9e4066Sahrens 	(void) sprintf(buf, "ztest: ");
478fa9e4066Sahrens 	/* LINTED */
479fa9e4066Sahrens 	(void) vsprintf(buf + strlen(buf), message, args);
480fa9e4066Sahrens 	va_end(args);
481fa9e4066Sahrens 	if (do_perror) {
482fa9e4066Sahrens 		(void) snprintf(buf + strlen(buf), FATAL_MSG_SZ - strlen(buf),
483fa9e4066Sahrens 		    ": %s", strerror(save_errno));
484fa9e4066Sahrens 	}
485fa9e4066Sahrens 	(void) fprintf(stderr, "%s\n", buf);
486fa9e4066Sahrens 	fatal_msg = buf;			/* to ease debugging */
487fa9e4066Sahrens 	if (ztest_dump_core)
488fa9e4066Sahrens 		abort();
489fa9e4066Sahrens 	exit(3);
490fa9e4066Sahrens }
491fa9e4066Sahrens 
492fa9e4066Sahrens static int
493fa9e4066Sahrens str2shift(const char *buf)
494fa9e4066Sahrens {
495fa9e4066Sahrens 	const char *ends = "BKMGTPEZ";
496fa9e4066Sahrens 	int i;
497fa9e4066Sahrens 
498fa9e4066Sahrens 	if (buf[0] == '\0')
499fa9e4066Sahrens 		return (0);
500fa9e4066Sahrens 	for (i = 0; i < strlen(ends); i++) {
501fa9e4066Sahrens 		if (toupper(buf[0]) == ends[i])
502fa9e4066Sahrens 			break;
503fa9e4066Sahrens 	}
504f1b4288bSvb 	if (i == strlen(ends)) {
505f1b4288bSvb 		(void) fprintf(stderr, "ztest: invalid bytes suffix: %s\n",
506f1b4288bSvb 		    buf);
507f1b4288bSvb 		usage(B_FALSE);
508f1b4288bSvb 	}
509fa9e4066Sahrens 	if (buf[1] == '\0' || (toupper(buf[1]) == 'B' && buf[2] == '\0')) {
510fa9e4066Sahrens 		return (10*i);
511fa9e4066Sahrens 	}
512f1b4288bSvb 	(void) fprintf(stderr, "ztest: invalid bytes suffix: %s\n", buf);
513f1b4288bSvb 	usage(B_FALSE);
514f1b4288bSvb 	/* NOTREACHED */
515fa9e4066Sahrens }
516fa9e4066Sahrens 
517fa9e4066Sahrens static uint64_t
518fa9e4066Sahrens nicenumtoull(const char *buf)
519fa9e4066Sahrens {
520fa9e4066Sahrens 	char *end;
521fa9e4066Sahrens 	uint64_t val;
522fa9e4066Sahrens 
523fa9e4066Sahrens 	val = strtoull(buf, &end, 0);
524fa9e4066Sahrens 	if (end == buf) {
525f1b4288bSvb 		(void) fprintf(stderr, "ztest: bad numeric value: %s\n", buf);
526f1b4288bSvb 		usage(B_FALSE);
527fa9e4066Sahrens 	} else if (end[0] == '.') {
528fa9e4066Sahrens 		double fval = strtod(buf, &end);
529fa9e4066Sahrens 		fval *= pow(2, str2shift(end));
530f1b4288bSvb 		if (fval > UINT64_MAX) {
531f1b4288bSvb 			(void) fprintf(stderr, "ztest: value too large: %s\n",
532f1b4288bSvb 			    buf);
533f1b4288bSvb 			usage(B_FALSE);
534f1b4288bSvb 		}
535fa9e4066Sahrens 		val = (uint64_t)fval;
536fa9e4066Sahrens 	} else {
537fa9e4066Sahrens 		int shift = str2shift(end);
538f1b4288bSvb 		if (shift >= 64 || (val << shift) >> shift != val) {
539f1b4288bSvb 			(void) fprintf(stderr, "ztest: value too large: %s\n",
540f1b4288bSvb 			    buf);
541f1b4288bSvb 			usage(B_FALSE);
542f1b4288bSvb 		}
543fa9e4066Sahrens 		val <<= shift;
544fa9e4066Sahrens 	}
545fa9e4066Sahrens 	return (val);
546fa9e4066Sahrens }
547fa9e4066Sahrens 
548fa9e4066Sahrens static void
549f1b4288bSvb usage(boolean_t requested)
550fa9e4066Sahrens {
551420dfc95SChris Siden 	const ztest_shared_opts_t *zo = &ztest_opts_defaults;
552420dfc95SChris Siden 
553fa9e4066Sahrens 	char nice_vdev_size[10];
554fa9e4066Sahrens 	char nice_gang_bang[10];
555f1b4288bSvb 	FILE *fp = requested ? stdout : stderr;
556fa9e4066Sahrens 
557420dfc95SChris Siden 	nicenum(zo->zo_vdev_size, nice_vdev_size);
558420dfc95SChris Siden 	nicenum(zo->zo_metaslab_gang_bang, nice_gang_bang);
559fa9e4066Sahrens 
560f1b4288bSvb 	(void) fprintf(fp, "Usage: %s\n"
561fa9e4066Sahrens 	    "\t[-v vdevs (default: %llu)]\n"
562fa9e4066Sahrens 	    "\t[-s size_of_each_vdev (default: %s)]\n"
5632215e990SMark J Musante 	    "\t[-a alignment_shift (default: %d)] use 0 for random\n"
564fa9e4066Sahrens 	    "\t[-m mirror_copies (default: %d)]\n"
565fa9e4066Sahrens 	    "\t[-r raidz_disks (default: %d)]\n"
56699653d4eSeschrock 	    "\t[-R raidz_parity (default: %d)]\n"
567fa9e4066Sahrens 	    "\t[-d datasets (default: %d)]\n"
568fa9e4066Sahrens 	    "\t[-t threads (default: %d)]\n"
569fa9e4066Sahrens 	    "\t[-g gang_block_threshold (default: %s)]\n"
5702215e990SMark J Musante 	    "\t[-i init_count (default: %d)] initialize pool i times\n"
5712215e990SMark J Musante 	    "\t[-k kill_percentage (default: %llu%%)]\n"
572fa9e4066Sahrens 	    "\t[-p pool_name (default: %s)]\n"
5732215e990SMark J Musante 	    "\t[-f dir (default: %s)] file directory for vdev files\n"
5742215e990SMark J Musante 	    "\t[-V] verbose (use multiple times for ever more blather)\n"
5752215e990SMark J Musante 	    "\t[-E] use existing pool instead of creating new one\n"
5762215e990SMark J Musante 	    "\t[-T time (default: %llu sec)] total run time\n"
5772215e990SMark J Musante 	    "\t[-F freezeloops (default: %llu)] max loops in spa_freeze()\n"
5782215e990SMark J Musante 	    "\t[-P passtime (default: %llu sec)] time per pass\n"
579420dfc95SChris Siden 	    "\t[-B alt_ztest (default: <none>)] alternate ztest path\n"
580f1b4288bSvb 	    "\t[-h] (print help)\n"
581fa9e4066Sahrens 	    "",
582420dfc95SChris Siden 	    zo->zo_pool,
583420dfc95SChris Siden 	    (u_longlong_t)zo->zo_vdevs,			/* -v */
5840a4e9518Sgw 	    nice_vdev_size,				/* -s */
585420dfc95SChris Siden 	    zo->zo_ashift,				/* -a */
586420dfc95SChris Siden 	    zo->zo_mirrors,				/* -m */
587420dfc95SChris Siden 	    zo->zo_raidz,				/* -r */
588420dfc95SChris Siden 	    zo->zo_raidz_parity,			/* -R */
589420dfc95SChris Siden 	    zo->zo_datasets,				/* -d */
590420dfc95SChris Siden 	    zo->zo_threads,				/* -t */
5910a4e9518Sgw 	    nice_gang_bang,				/* -g */
592420dfc95SChris Siden 	    zo->zo_init,				/* -i */
593420dfc95SChris Siden 	    (u_longlong_t)zo->zo_killrate,		/* -k */
594420dfc95SChris Siden 	    zo->zo_pool,				/* -p */
595420dfc95SChris Siden 	    zo->zo_dir,					/* -f */
596420dfc95SChris Siden 	    (u_longlong_t)zo->zo_time,			/* -T */
597420dfc95SChris Siden 	    (u_longlong_t)zo->zo_maxloops,		/* -F */
598420dfc95SChris Siden 	    (u_longlong_t)zo->zo_passtime);
599f1b4288bSvb 	exit(requested ? 0 : 1);
600fa9e4066Sahrens }
601fa9e4066Sahrens 
602fa9e4066Sahrens static void
603fa9e4066Sahrens process_options(int argc, char **argv)
604fa9e4066Sahrens {
605420dfc95SChris Siden 	char *path;
606420dfc95SChris Siden 	ztest_shared_opts_t *zo = &ztest_opts;
607420dfc95SChris Siden 
608fa9e4066Sahrens 	int opt;
609fa9e4066Sahrens 	uint64_t value;
610420dfc95SChris Siden 	char altdir[MAXNAMELEN] = { 0 };
611fa9e4066Sahrens 
612420dfc95SChris Siden 	bcopy(&ztest_opts_defaults, zo, sizeof (*zo));
613fa9e4066Sahrens 
614fa9e4066Sahrens 	while ((opt = getopt(argc, argv,
615420dfc95SChris Siden 	    "v:s:a:m:r:R:d:t:g:i:k:p:f:VET:P:hF:B:")) != EOF) {
616fa9e4066Sahrens 		value = 0;
617fa9e4066Sahrens 		switch (opt) {
6183d7072f8Seschrock 		case 'v':
6193d7072f8Seschrock 		case 's':
6203d7072f8Seschrock 		case 'a':
6213d7072f8Seschrock 		case 'm':
6223d7072f8Seschrock 		case 'r':
6233d7072f8Seschrock 		case 'R':
6243d7072f8Seschrock 		case 'd':
6253d7072f8Seschrock 		case 't':
6263d7072f8Seschrock 		case 'g':
6273d7072f8Seschrock 		case 'i':
6283d7072f8Seschrock 		case 'k':
6293d7072f8Seschrock 		case 'T':
6303d7072f8Seschrock 		case 'P':
6312215e990SMark J Musante 		case 'F':
632fa9e4066Sahrens 			value = nicenumtoull(optarg);
633fa9e4066Sahrens 		}
634fa9e4066Sahrens 		switch (opt) {
6353d7072f8Seschrock 		case 'v':
636420dfc95SChris Siden 			zo->zo_vdevs = value;
637fa9e4066Sahrens 			break;
6383d7072f8Seschrock 		case 's':
639420dfc95SChris Siden 			zo->zo_vdev_size = MAX(SPA_MINDEVSIZE, value);
640fa9e4066Sahrens 			break;
6413d7072f8Seschrock 		case 'a':
642420dfc95SChris Siden 			zo->zo_ashift = value;
643ecc2d604Sbonwick 			break;
6443d7072f8Seschrock 		case 'm':
645420dfc95SChris Siden 			zo->zo_mirrors = value;
646fa9e4066Sahrens 			break;
6473d7072f8Seschrock 		case 'r':
648420dfc95SChris Siden 			zo->zo_raidz = MAX(1, value);
649fa9e4066Sahrens 			break;
6503d7072f8Seschrock 		case 'R':
651420dfc95SChris Siden 			zo->zo_raidz_parity = MIN(MAX(value, 1), 3);
65299653d4eSeschrock 			break;
6533d7072f8Seschrock 		case 'd':
654420dfc95SChris Siden 			zo->zo_datasets = MAX(1, value);
655fa9e4066Sahrens 			break;
6563d7072f8Seschrock 		case 't':
657420dfc95SChris Siden 			zo->zo_threads = MAX(1, value);
658fa9e4066Sahrens 			break;
6593d7072f8Seschrock 		case 'g':
660420dfc95SChris Siden 			zo->zo_metaslab_gang_bang = MAX(SPA_MINBLOCKSIZE << 1,
661420dfc95SChris Siden 			    value);
662fa9e4066Sahrens 			break;
6633d7072f8Seschrock 		case 'i':
664420dfc95SChris Siden 			zo->zo_init = value;
665fa9e4066Sahrens 			break;
6663d7072f8Seschrock 		case 'k':
667420dfc95SChris Siden 			zo->zo_killrate = value;
668fa9e4066Sahrens 			break;
6693d7072f8Seschrock 		case 'p':
670420dfc95SChris Siden 			(void) strlcpy(zo->zo_pool, optarg,
671420dfc95SChris Siden 			    sizeof (zo->zo_pool));
672fa9e4066Sahrens 			break;
6733d7072f8Seschrock 		case 'f':
674420dfc95SChris Siden 			path = realpath(optarg, NULL);
675420dfc95SChris Siden 			if (path == NULL) {
676420dfc95SChris Siden 				(void) fprintf(stderr, "error: %s: %s\n",
677420dfc95SChris Siden 				    optarg, strerror(errno));
678420dfc95SChris Siden 				usage(B_FALSE);
679420dfc95SChris Siden 			} else {
680420dfc95SChris Siden 				(void) strlcpy(zo->zo_dir, path,
681420dfc95SChris Siden 				    sizeof (zo->zo_dir));
682420dfc95SChris Siden 			}
683fa9e4066Sahrens 			break;
6843d7072f8Seschrock 		case 'V':
685420dfc95SChris Siden 			zo->zo_verbose++;
686fa9e4066Sahrens 			break;
6873d7072f8Seschrock 		case 'E':
688420dfc95SChris Siden 			zo->zo_init = 0;
689fa9e4066Sahrens 			break;
6903d7072f8Seschrock 		case 'T':
691420dfc95SChris Siden 			zo->zo_time = value;
692fa9e4066Sahrens 			break;
6933d7072f8Seschrock 		case 'P':
694420dfc95SChris Siden 			zo->zo_passtime = MAX(1, value);
695fa9e4066Sahrens 			break;
6962215e990SMark J Musante 		case 'F':
697420dfc95SChris Siden 			zo->zo_maxloops = MAX(1, value);
698420dfc95SChris Siden 			break;
699420dfc95SChris Siden 		case 'B':
700420dfc95SChris Siden 			(void) strlcpy(altdir, optarg, sizeof (altdir));
7012215e990SMark J Musante 			break;
7023d7072f8Seschrock 		case 'h':
703f1b4288bSvb 			usage(B_TRUE);
704f1b4288bSvb 			break;
7053d7072f8Seschrock 		case '?':
7063d7072f8Seschrock 		default:
707f1b4288bSvb 			usage(B_FALSE);
708fa9e4066Sahrens 			break;
709fa9e4066Sahrens 		}
710fa9e4066Sahrens 	}
711fa9e4066Sahrens 
712420dfc95SChris Siden 	zo->zo_raidz_parity = MIN(zo->zo_raidz_parity, zo->zo_raidz - 1);
71399653d4eSeschrock 
714420dfc95SChris Siden 	zo->zo_vdevtime =
715420dfc95SChris Siden 	    (zo->zo_vdevs > 0 ? zo->zo_time * NANOSEC / zo->zo_vdevs :
716b24ab676SJeff Bonwick 	    UINT64_MAX >> 2);
717420dfc95SChris Siden 
718420dfc95SChris Siden 	if (strlen(altdir) > 0) {
719741652b0SEtienne Dechamps 		char *cmd;
720741652b0SEtienne Dechamps 		char *realaltdir;
721420dfc95SChris Siden 		char *bin;
722420dfc95SChris Siden 		char *ztest;
723420dfc95SChris Siden 		char *isa;
724420dfc95SChris Siden 		int isalen;
725420dfc95SChris Siden 
726741652b0SEtienne Dechamps 		cmd = umem_alloc(MAXPATHLEN, UMEM_NOFAIL);
727741652b0SEtienne Dechamps 		realaltdir = umem_alloc(MAXPATHLEN, UMEM_NOFAIL);
728741652b0SEtienne Dechamps 
729741652b0SEtienne Dechamps 		VERIFY(NULL != realpath(getexecname(), cmd));
730420dfc95SChris Siden 		if (0 != access(altdir, F_OK)) {
731420dfc95SChris Siden 			ztest_dump_core = B_FALSE;
732420dfc95SChris Siden 			fatal(B_TRUE, "invalid alternate ztest path: %s",
733420dfc95SChris Siden 			    altdir);
734420dfc95SChris Siden 		}
735420dfc95SChris Siden 		VERIFY(NULL != realpath(altdir, realaltdir));
736420dfc95SChris Siden 
737420dfc95SChris Siden 		/*
738420dfc95SChris Siden 		 * 'cmd' should be of the form "<anything>/usr/bin/<isa>/ztest".
739420dfc95SChris Siden 		 * We want to extract <isa> to determine if we should use
740420dfc95SChris Siden 		 * 32 or 64 bit binaries.
741420dfc95SChris Siden 		 */
742420dfc95SChris Siden 		bin = strstr(cmd, "/usr/bin/");
743420dfc95SChris Siden 		ztest = strstr(bin, "/ztest");
744420dfc95SChris Siden 		isa = bin + 9;
745420dfc95SChris Siden 		isalen = ztest - isa;
746420dfc95SChris Siden 		(void) snprintf(zo->zo_alt_ztest, sizeof (zo->zo_alt_ztest),
747420dfc95SChris Siden 		    "%s/usr/bin/%.*s/ztest", realaltdir, isalen, isa);
748420dfc95SChris Siden 		(void) snprintf(zo->zo_alt_libpath, sizeof (zo->zo_alt_libpath),
749420dfc95SChris Siden 		    "%s/usr/lib/%.*s", realaltdir, isalen, isa);
750420dfc95SChris Siden 
751420dfc95SChris Siden 		if (0 != access(zo->zo_alt_ztest, X_OK)) {
752420dfc95SChris Siden 			ztest_dump_core = B_FALSE;
753420dfc95SChris Siden 			fatal(B_TRUE, "invalid alternate ztest: %s",
754420dfc95SChris Siden 			    zo->zo_alt_ztest);
755420dfc95SChris Siden 		} else if (0 != access(zo->zo_alt_libpath, X_OK)) {
756420dfc95SChris Siden 			ztest_dump_core = B_FALSE;
757420dfc95SChris Siden 			fatal(B_TRUE, "invalid alternate lib directory %s",
758420dfc95SChris Siden 			    zo->zo_alt_libpath);
759420dfc95SChris Siden 		}
760741652b0SEtienne Dechamps 
761741652b0SEtienne Dechamps 		umem_free(cmd, MAXPATHLEN);
762741652b0SEtienne Dechamps 		umem_free(realaltdir, MAXPATHLEN);
763420dfc95SChris Siden 	}
764fa9e4066Sahrens }
765fa9e4066Sahrens 
766b24ab676SJeff Bonwick static void
767b24ab676SJeff Bonwick ztest_kill(ztest_shared_t *zs)
768b24ab676SJeff Bonwick {
769420dfc95SChris Siden 	zs->zs_alloc = metaslab_class_get_alloc(spa_normal_class(ztest_spa));
770420dfc95SChris Siden 	zs->zs_space = metaslab_class_get_space(spa_normal_class(ztest_spa));
771b4952e17SGeorge Wilson 
772b4952e17SGeorge Wilson 	/*
773b4952e17SGeorge Wilson 	 * Before we kill off ztest, make sure that the config is updated.
774b4952e17SGeorge Wilson 	 * See comment above spa_config_sync().
775b4952e17SGeorge Wilson 	 */
776b4952e17SGeorge Wilson 	mutex_enter(&spa_namespace_lock);
777b4952e17SGeorge Wilson 	spa_config_sync(ztest_spa, B_FALSE, B_FALSE);
778b4952e17SGeorge Wilson 	mutex_exit(&spa_namespace_lock);
779b4952e17SGeorge Wilson 
780b4952e17SGeorge Wilson 	zfs_dbgmsg_print(FTAG);
781b24ab676SJeff Bonwick 	(void) kill(getpid(), SIGKILL);
782b24ab676SJeff Bonwick }
783b24ab676SJeff Bonwick 
784b24ab676SJeff Bonwick static uint64_t
785b24ab676SJeff Bonwick ztest_random(uint64_t range)
786b24ab676SJeff Bonwick {
787b24ab676SJeff Bonwick 	uint64_t r;
788b24ab676SJeff Bonwick 
789741652b0SEtienne Dechamps 	ASSERT3S(ztest_fd_rand, >=, 0);
790741652b0SEtienne Dechamps 
791b24ab676SJeff Bonwick 	if (range == 0)
792b24ab676SJeff Bonwick 		return (0);
793b24ab676SJeff Bonwick 
794741652b0SEtienne Dechamps 	if (read(ztest_fd_rand, &r, sizeof (r)) != sizeof (r))
795b24ab676SJeff Bonwick 		fatal(1, "short read from /dev/urandom");
796b24ab676SJeff Bonwick 
797b24ab676SJeff Bonwick 	return (r % range);
798b24ab676SJeff Bonwick }
799b24ab676SJeff Bonwick 
800b24ab676SJeff Bonwick /* ARGSUSED */
801b24ab676SJeff Bonwick static void
802b24ab676SJeff Bonwick ztest_record_enospc(const char *s)
803b24ab676SJeff Bonwick {
804b24ab676SJeff Bonwick 	ztest_shared->zs_enospc_count++;
805b24ab676SJeff Bonwick }
806b24ab676SJeff Bonwick 
807ecc2d604Sbonwick static uint64_t
808ecc2d604Sbonwick ztest_get_ashift(void)
809ecc2d604Sbonwick {
810420dfc95SChris Siden 	if (ztest_opts.zo_ashift == 0)
8112a104a52SAlex Reece 		return (SPA_MINBLOCKSHIFT + ztest_random(5));
812420dfc95SChris Siden 	return (ztest_opts.zo_ashift);
813ecc2d604Sbonwick }
814ecc2d604Sbonwick 
815fa9e4066Sahrens static nvlist_t *
81625345e46SGeorge Wilson make_vdev_file(char *path, char *aux, char *pool, size_t size, uint64_t ashift)
817fa9e4066Sahrens {
818e14bb325SJeff Bonwick 	char pathbuf[MAXPATHLEN];
819fa9e4066Sahrens 	uint64_t vdev;
820fa9e4066Sahrens 	nvlist_t *file;
821fa9e4066Sahrens 
822e14bb325SJeff Bonwick 	if (ashift == 0)
823e14bb325SJeff Bonwick 		ashift = ztest_get_ashift();
824e14bb325SJeff Bonwick 
825e14bb325SJeff Bonwick 	if (path == NULL) {
826e14bb325SJeff Bonwick 		path = pathbuf;
827fa9e4066Sahrens 
828e14bb325SJeff Bonwick 		if (aux != NULL) {
829e14bb325SJeff Bonwick 			vdev = ztest_shared->zs_vdev_aux;
830420dfc95SChris Siden 			(void) snprintf(path, sizeof (pathbuf),
831420dfc95SChris Siden 			    ztest_aux_template, ztest_opts.zo_dir,
83225345e46SGeorge Wilson 			    pool == NULL ? ztest_opts.zo_pool : pool,
83325345e46SGeorge Wilson 			    aux, vdev);
834e14bb325SJeff Bonwick 		} else {
83588ecc943SGeorge Wilson 			vdev = ztest_shared->zs_vdev_next_leaf++;
836420dfc95SChris Siden 			(void) snprintf(path, sizeof (pathbuf),
837420dfc95SChris Siden 			    ztest_dev_template, ztest_opts.zo_dir,
83825345e46SGeorge Wilson 			    pool == NULL ? ztest_opts.zo_pool : pool, vdev);
839e14bb325SJeff Bonwick 		}
840e14bb325SJeff Bonwick 	}
841e14bb325SJeff Bonwick 
842e14bb325SJeff Bonwick 	if (size != 0) {
843e14bb325SJeff Bonwick 		int fd = open(path, O_RDWR | O_CREAT | O_TRUNC, 0666);
844fa9e4066Sahrens 		if (fd == -1)
845e14bb325SJeff Bonwick 			fatal(1, "can't open %s", path);
846fa9e4066Sahrens 		if (ftruncate(fd, size) != 0)
847e14bb325SJeff Bonwick 			fatal(1, "can't ftruncate %s", path);
848fa9e4066Sahrens 		(void) close(fd);
849fa9e4066Sahrens 	}
850fa9e4066Sahrens 
851fa9e4066Sahrens 	VERIFY(nvlist_alloc(&file, NV_UNIQUE_NAME, 0) == 0);
852fa9e4066Sahrens 	VERIFY(nvlist_add_string(file, ZPOOL_CONFIG_TYPE, VDEV_TYPE_FILE) == 0);
853e14bb325SJeff Bonwick 	VERIFY(nvlist_add_string(file, ZPOOL_CONFIG_PATH, path) == 0);
854ecc2d604Sbonwick 	VERIFY(nvlist_add_uint64(file, ZPOOL_CONFIG_ASHIFT, ashift) == 0);
855fa9e4066Sahrens 
856fa9e4066Sahrens 	return (file);
857fa9e4066Sahrens }
858fa9e4066Sahrens 
859fa9e4066Sahrens static nvlist_t *
86025345e46SGeorge Wilson make_vdev_raidz(char *path, char *aux, char *pool, size_t size,
86125345e46SGeorge Wilson     uint64_t ashift, int r)
862fa9e4066Sahrens {
863fa9e4066Sahrens 	nvlist_t *raidz, **child;
864fa9e4066Sahrens 	int c;
865fa9e4066Sahrens 
866fa9e4066Sahrens 	if (r < 2)
86725345e46SGeorge Wilson 		return (make_vdev_file(path, aux, pool, size, ashift));
868fa9e4066Sahrens 	child = umem_alloc(r * sizeof (nvlist_t *), UMEM_NOFAIL);
869fa9e4066Sahrens 
870fa9e4066Sahrens 	for (c = 0; c < r; c++)
87125345e46SGeorge Wilson 		child[c] = make_vdev_file(path, aux, pool, size, ashift);
872fa9e4066Sahrens 
873fa9e4066Sahrens 	VERIFY(nvlist_alloc(&raidz, NV_UNIQUE_NAME, 0) == 0);
874fa9e4066Sahrens 	VERIFY(nvlist_add_string(raidz, ZPOOL_CONFIG_TYPE,
875fa9e4066Sahrens 	    VDEV_TYPE_RAIDZ) == 0);
87699653d4eSeschrock 	VERIFY(nvlist_add_uint64(raidz, ZPOOL_CONFIG_NPARITY,
877420dfc95SChris Siden 	    ztest_opts.zo_raidz_parity) == 0);
878fa9e4066Sahrens 	VERIFY(nvlist_add_nvlist_array(raidz, ZPOOL_CONFIG_CHILDREN,
879fa9e4066Sahrens 	    child, r) == 0);
880fa9e4066Sahrens 
881fa9e4066Sahrens 	for (c = 0; c < r; c++)
882fa9e4066Sahrens 		nvlist_free(child[c]);
883fa9e4066Sahrens 
884fa9e4066Sahrens 	umem_free(child, r * sizeof (nvlist_t *));
885fa9e4066Sahrens 
886fa9e4066Sahrens 	return (raidz);
887fa9e4066Sahrens }
888fa9e4066Sahrens 
889fa9e4066Sahrens static nvlist_t *
89025345e46SGeorge Wilson make_vdev_mirror(char *path, char *aux, char *pool, size_t size,
89125345e46SGeorge Wilson     uint64_t ashift, int r, int m)
892fa9e4066Sahrens {
893fa9e4066Sahrens 	nvlist_t *mirror, **child;
894fa9e4066Sahrens 	int c;
895fa9e4066Sahrens 
896fa9e4066Sahrens 	if (m < 1)
89725345e46SGeorge Wilson 		return (make_vdev_raidz(path, aux, pool, size, ashift, r));
898fa9e4066Sahrens 
899fa9e4066Sahrens 	child = umem_alloc(m * sizeof (nvlist_t *), UMEM_NOFAIL);
900fa9e4066Sahrens 
901fa9e4066Sahrens 	for (c = 0; c < m; c++)
90225345e46SGeorge Wilson 		child[c] = make_vdev_raidz(path, aux, pool, size, ashift, r);
903fa9e4066Sahrens 
904fa9e4066Sahrens 	VERIFY(nvlist_alloc(&mirror, NV_UNIQUE_NAME, 0) == 0);
905fa9e4066Sahrens 	VERIFY(nvlist_add_string(mirror, ZPOOL_CONFIG_TYPE,
906fa9e4066Sahrens 	    VDEV_TYPE_MIRROR) == 0);
907fa9e4066Sahrens 	VERIFY(nvlist_add_nvlist_array(mirror, ZPOOL_CONFIG_CHILDREN,
908fa9e4066Sahrens 	    child, m) == 0);
909fa9e4066Sahrens 
910fa9e4066Sahrens 	for (c = 0; c < m; c++)
911fa9e4066Sahrens 		nvlist_free(child[c]);
912fa9e4066Sahrens 
913fa9e4066Sahrens 	umem_free(child, m * sizeof (nvlist_t *));
914fa9e4066Sahrens 
915fa9e4066Sahrens 	return (mirror);
916fa9e4066Sahrens }
917fa9e4066Sahrens 
918fa9e4066Sahrens static nvlist_t *
91925345e46SGeorge Wilson make_vdev_root(char *path, char *aux, char *pool, size_t size, uint64_t ashift,
92025345e46SGeorge Wilson     int log, int r, int m, int t)
921fa9e4066Sahrens {
922fa9e4066Sahrens 	nvlist_t *root, **child;
923fa9e4066Sahrens 	int c;
924fa9e4066Sahrens 
925fa9e4066Sahrens 	ASSERT(t > 0);
926fa9e4066Sahrens 
927fa9e4066Sahrens 	child = umem_alloc(t * sizeof (nvlist_t *), UMEM_NOFAIL);
928fa9e4066Sahrens 
92931157203SJeff Bonwick 	for (c = 0; c < t; c++) {
93025345e46SGeorge Wilson 		child[c] = make_vdev_mirror(path, aux, pool, size, ashift,
93125345e46SGeorge Wilson 		    r, m);
93231157203SJeff Bonwick 		VERIFY(nvlist_add_uint64(child[c], ZPOOL_CONFIG_IS_LOG,
93331157203SJeff Bonwick 		    log) == 0);
93431157203SJeff Bonwick 	}
935fa9e4066Sahrens 
936fa9e4066Sahrens 	VERIFY(nvlist_alloc(&root, NV_UNIQUE_NAME, 0) == 0);
937fa9e4066Sahrens 	VERIFY(nvlist_add_string(root, ZPOOL_CONFIG_TYPE, VDEV_TYPE_ROOT) == 0);
938e14bb325SJeff Bonwick 	VERIFY(nvlist_add_nvlist_array(root, aux ? aux : ZPOOL_CONFIG_CHILDREN,
939fa9e4066Sahrens 	    child, t) == 0);
940fa9e4066Sahrens 
941fa9e4066Sahrens 	for (c = 0; c < t; c++)
942fa9e4066Sahrens 		nvlist_free(child[c]);
943fa9e4066Sahrens 
944fa9e4066Sahrens 	umem_free(child, t * sizeof (nvlist_t *));
945fa9e4066Sahrens 
946fa9e4066Sahrens 	return (root);
947fa9e4066Sahrens }
948fa9e4066Sahrens 
94925345e46SGeorge Wilson /*
95025345e46SGeorge Wilson  * Find a random spa version. Returns back a random spa version in the
95125345e46SGeorge Wilson  * range [initial_version, SPA_VERSION_FEATURES].
95225345e46SGeorge Wilson  */
95325345e46SGeorge Wilson static uint64_t
95425345e46SGeorge Wilson ztest_random_spa_version(uint64_t initial_version)
95525345e46SGeorge Wilson {
95625345e46SGeorge Wilson 	uint64_t version = initial_version;
95725345e46SGeorge Wilson 
95825345e46SGeorge Wilson 	if (version <= SPA_VERSION_BEFORE_FEATURES) {
95925345e46SGeorge Wilson 		version = version +
96025345e46SGeorge Wilson 		    ztest_random(SPA_VERSION_BEFORE_FEATURES - version + 1);
96125345e46SGeorge Wilson 	}
96225345e46SGeorge Wilson 
96325345e46SGeorge Wilson 	if (version > SPA_VERSION_BEFORE_FEATURES)
96425345e46SGeorge Wilson 		version = SPA_VERSION_FEATURES;
96525345e46SGeorge Wilson 
96625345e46SGeorge Wilson 	ASSERT(SPA_VERSION_IS_SUPPORTED(version));
96725345e46SGeorge Wilson 	return (version);
96825345e46SGeorge Wilson }
96925345e46SGeorge Wilson 
970b24ab676SJeff Bonwick static int
971b24ab676SJeff Bonwick ztest_random_blocksize(void)
972fa9e4066Sahrens {
973b5152584SMatthew Ahrens 	uint64_t block_shift;
974b5152584SMatthew Ahrens 	/*
975b5152584SMatthew Ahrens 	 * Choose a block size >= the ashift.
976b5152584SMatthew Ahrens 	 * If the SPA supports new MAXBLOCKSIZE, test up to 1MB blocks.
977b5152584SMatthew Ahrens 	 */
978b5152584SMatthew Ahrens 	int maxbs = SPA_OLD_MAXBLOCKSHIFT;
979b5152584SMatthew Ahrens 	if (spa_maxblocksize(ztest_spa) == SPA_MAXBLOCKSIZE)
980b5152584SMatthew Ahrens 		maxbs = 20;
98181cd5c55SMatthew Ahrens 	block_shift = ztest_random(maxbs - ztest_spa->spa_max_ashift + 1);
9822a104a52SAlex Reece 	return (1 << (SPA_MINBLOCKSHIFT + block_shift));
983b24ab676SJeff Bonwick }
984fa9e4066Sahrens 
985b24ab676SJeff Bonwick static int
986b24ab676SJeff Bonwick ztest_random_ibshift(void)
987b24ab676SJeff Bonwick {
988b24ab676SJeff Bonwick 	return (DN_MIN_INDBLKSHIFT +
989b24ab676SJeff Bonwick 	    ztest_random(DN_MAX_INDBLKSHIFT - DN_MIN_INDBLKSHIFT + 1));
990fa9e4066Sahrens }
991fa9e4066Sahrens 
992b24ab676SJeff Bonwick static uint64_t
993b24ab676SJeff Bonwick ztest_random_vdev_top(spa_t *spa, boolean_t log_ok)
994fa9e4066Sahrens {
995b24ab676SJeff Bonwick 	uint64_t top;
996b24ab676SJeff Bonwick 	vdev_t *rvd = spa->spa_root_vdev;
997b24ab676SJeff Bonwick 	vdev_t *tvd;
998fa9e4066Sahrens 
999b24ab676SJeff Bonwick 	ASSERT(spa_config_held(spa, SCL_ALL, RW_READER) != 0);
1000fa9e4066Sahrens 
1001b24ab676SJeff Bonwick 	do {
1002b24ab676SJeff Bonwick 		top = ztest_random(rvd->vdev_children);
1003b24ab676SJeff Bonwick 		tvd = rvd->vdev_child[top];
1004b24ab676SJeff Bonwick 	} while (tvd->vdev_ishole || (tvd->vdev_islog && !log_ok) ||
1005b24ab676SJeff Bonwick 	    tvd->vdev_mg == NULL || tvd->vdev_mg->mg_class == NULL);
1006fa9e4066Sahrens 
1007b24ab676SJeff Bonwick 	return (top);
1008fa9e4066Sahrens }
1009fa9e4066Sahrens 
1010b24ab676SJeff Bonwick static uint64_t
1011b24ab676SJeff Bonwick ztest_random_dsl_prop(zfs_prop_t prop)
1012fa9e4066Sahrens {
1013b24ab676SJeff Bonwick 	uint64_t value;
1014b24ab676SJeff Bonwick 
1015b24ab676SJeff Bonwick 	do {
1016b24ab676SJeff Bonwick 		value = zfs_prop_random_value(prop, ztest_random(-1ULL));
1017b24ab676SJeff Bonwick 	} while (prop == ZFS_PROP_CHECKSUM && value == ZIO_CHECKSUM_OFF);
1018b24ab676SJeff Bonwick 
1019b24ab676SJeff Bonwick 	return (value);
1020fa9e4066Sahrens }
1021fa9e4066Sahrens 
1022fa9e4066Sahrens static int
1023b24ab676SJeff Bonwick ztest_dsl_prop_set_uint64(char *osname, zfs_prop_t prop, uint64_t value,
1024b24ab676SJeff Bonwick     boolean_t inherit)
1025fa9e4066Sahrens {
1026b24ab676SJeff Bonwick 	const char *propname = zfs_prop_to_name(prop);
1027b24ab676SJeff Bonwick 	const char *valname;
1028b24ab676SJeff Bonwick 	char setpoint[MAXPATHLEN];
1029b24ab676SJeff Bonwick 	uint64_t curval;
1030fa9e4066Sahrens 	int error;
1031fa9e4066Sahrens 
10323b2aab18SMatthew Ahrens 	error = dsl_prop_set_int(osname, propname,
10333b2aab18SMatthew Ahrens 	    (inherit ? ZPROP_SRC_NONE : ZPROP_SRC_LOCAL), value);
1034fa9e4066Sahrens 
1035b24ab676SJeff Bonwick 	if (error == ENOSPC) {
1036b24ab676SJeff Bonwick 		ztest_record_enospc(FTAG);
1037fa9e4066Sahrens 		return (error);
1038fa9e4066Sahrens 	}
1039fb09f5aaSMadhav Suresh 	ASSERT0(error);
1040fa9e4066Sahrens 
10413b2aab18SMatthew Ahrens 	VERIFY0(dsl_prop_get_integer(osname, propname, &curval, setpoint));
1042b24ab676SJeff Bonwick 
1043420dfc95SChris Siden 	if (ztest_opts.zo_verbose >= 6) {
1044b24ab676SJeff Bonwick 		VERIFY(zfs_prop_index_to_string(prop, curval, &valname) == 0);
1045b24ab676SJeff Bonwick 		(void) printf("%s %s = %s at '%s'\n",
1046b24ab676SJeff Bonwick 		    osname, propname, valname, setpoint);
1047fa9e4066Sahrens 	}
1048fa9e4066Sahrens 
1049fa9e4066Sahrens 	return (error);
1050fa9e4066Sahrens }
1051fa9e4066Sahrens 
1052fa9e4066Sahrens static int
1053420dfc95SChris Siden ztest_spa_prop_set_uint64(zpool_prop_t prop, uint64_t value)
1054fa9e4066Sahrens {
1055420dfc95SChris Siden 	spa_t *spa = ztest_spa;
1056b24ab676SJeff Bonwick 	nvlist_t *props = NULL;
1057fa9e4066Sahrens 	int error;
1058fa9e4066Sahrens 
1059b24ab676SJeff Bonwick 	VERIFY(nvlist_alloc(&props, NV_UNIQUE_NAME, 0) == 0);
1060b24ab676SJeff Bonwick 	VERIFY(nvlist_add_uint64(props, zpool_prop_to_name(prop), value) == 0);
1061fa9e4066Sahrens 
1062b24ab676SJeff Bonwick 	error = spa_prop_set(spa, props);
1063b24ab676SJeff Bonwick 
1064b24ab676SJeff Bonwick 	nvlist_free(props);
1065b24ab676SJeff Bonwick 
1066b24ab676SJeff Bonwick 	if (error == ENOSPC) {
1067b24ab676SJeff Bonwick 		ztest_record_enospc(FTAG);
1068fa9e4066Sahrens 		return (error);
1069fa9e4066Sahrens 	}
1070fb09f5aaSMadhav Suresh 	ASSERT0(error);
1071fa9e4066Sahrens 
1072fa9e4066Sahrens 	return (error);
1073fa9e4066Sahrens }
1074fa9e4066Sahrens 
1075b24ab676SJeff Bonwick static void
1076b24ab676SJeff Bonwick ztest_rll_init(rll_t *rll)
1077b24ab676SJeff Bonwick {
1078b24ab676SJeff Bonwick 	rll->rll_writer = NULL;
1079b24ab676SJeff Bonwick 	rll->rll_readers = 0;
1080b24ab676SJeff Bonwick 	VERIFY(_mutex_init(&rll->rll_lock, USYNC_THREAD, NULL) == 0);
1081b24ab676SJeff Bonwick 	VERIFY(cond_init(&rll->rll_cv, USYNC_THREAD, NULL) == 0);
1082b24ab676SJeff Bonwick }
1083fa9e4066Sahrens 
1084b24ab676SJeff Bonwick static void
1085b24ab676SJeff Bonwick ztest_rll_destroy(rll_t *rll)
1086fa9e4066Sahrens {
1087b24ab676SJeff Bonwick 	ASSERT(rll->rll_writer == NULL);
1088b24ab676SJeff Bonwick 	ASSERT(rll->rll_readers == 0);
1089b24ab676SJeff Bonwick 	VERIFY(_mutex_destroy(&rll->rll_lock) == 0);
1090b24ab676SJeff Bonwick 	VERIFY(cond_destroy(&rll->rll_cv) == 0);
1091b24ab676SJeff Bonwick }
1092fa9e4066Sahrens 
1093b24ab676SJeff Bonwick static void
1094b24ab676SJeff Bonwick ztest_rll_lock(rll_t *rll, rl_type_t type)
1095b24ab676SJeff Bonwick {
1096b24ab676SJeff Bonwick 	VERIFY(mutex_lock(&rll->rll_lock) == 0);
1097fa9e4066Sahrens 
1098b24ab676SJeff Bonwick 	if (type == RL_READER) {
1099b24ab676SJeff Bonwick 		while (rll->rll_writer != NULL)
1100b24ab676SJeff Bonwick 			(void) cond_wait(&rll->rll_cv, &rll->rll_lock);
1101b24ab676SJeff Bonwick 		rll->rll_readers++;
1102b24ab676SJeff Bonwick 	} else {
1103b24ab676SJeff Bonwick 		while (rll->rll_writer != NULL || rll->rll_readers)
1104b24ab676SJeff Bonwick 			(void) cond_wait(&rll->rll_cv, &rll->rll_lock);
1105b24ab676SJeff Bonwick 		rll->rll_writer = curthread;
1106b24ab676SJeff Bonwick 	}
1107fa9e4066Sahrens 
1108b24ab676SJeff Bonwick 	VERIFY(mutex_unlock(&rll->rll_lock) == 0);
1109b24ab676SJeff Bonwick }
1110fa9e4066Sahrens 
1111b24ab676SJeff Bonwick static void
1112b24ab676SJeff Bonwick ztest_rll_unlock(rll_t *rll)
1113b24ab676SJeff Bonwick {
1114b24ab676SJeff Bonwick 	VERIFY(mutex_lock(&rll->rll_lock) == 0);
1115fa9e4066Sahrens 
1116b24ab676SJeff Bonwick 	if (rll->rll_writer) {
1117b24ab676SJeff Bonwick 		ASSERT(rll->rll_readers == 0);
1118b24ab676SJeff Bonwick 		rll->rll_writer = NULL;
1119b24ab676SJeff Bonwick 	} else {
1120b24ab676SJeff Bonwick 		ASSERT(rll->rll_readers != 0);
1121b24ab676SJeff Bonwick 		ASSERT(rll->rll_writer == NULL);
1122b24ab676SJeff Bonwick 		rll->rll_readers--;
1123b24ab676SJeff Bonwick 	}
1124fa9e4066Sahrens 
1125b24ab676SJeff Bonwick 	if (rll->rll_writer == NULL && rll->rll_readers == 0)
1126b24ab676SJeff Bonwick 		VERIFY(cond_broadcast(&rll->rll_cv) == 0);
1127b24ab676SJeff Bonwick 
1128b24ab676SJeff Bonwick 	VERIFY(mutex_unlock(&rll->rll_lock) == 0);
1129fa9e4066Sahrens }
1130fa9e4066Sahrens 
1131b24ab676SJeff Bonwick static void
1132b24ab676SJeff Bonwick ztest_object_lock(ztest_ds_t *zd, uint64_t object, rl_type_t type)
113331157203SJeff Bonwick {
1134b24ab676SJeff Bonwick 	rll_t *rll = &zd->zd_object_lock[object & (ZTEST_OBJECT_LOCKS - 1)];
113531157203SJeff Bonwick 
1136b24ab676SJeff Bonwick 	ztest_rll_lock(rll, type);
1137b24ab676SJeff Bonwick }
113831157203SJeff Bonwick 
1139b24ab676SJeff Bonwick static void
1140b24ab676SJeff Bonwick ztest_object_unlock(ztest_ds_t *zd, uint64_t object)
1141b24ab676SJeff Bonwick {
1142b24ab676SJeff Bonwick 	rll_t *rll = &zd->zd_object_lock[object & (ZTEST_OBJECT_LOCKS - 1)];
114331157203SJeff Bonwick 
1144b24ab676SJeff Bonwick 	ztest_rll_unlock(rll);
114531157203SJeff Bonwick }
114631157203SJeff Bonwick 
1147b24ab676SJeff Bonwick static rl_t *
1148b24ab676SJeff Bonwick ztest_range_lock(ztest_ds_t *zd, uint64_t object, uint64_t offset,
1149b24ab676SJeff Bonwick     uint64_t size, rl_type_t type)
115088ecc943SGeorge Wilson {
1151b24ab676SJeff Bonwick 	uint64_t hash = object ^ (offset % (ZTEST_RANGE_LOCKS + 1));
1152b24ab676SJeff Bonwick 	rll_t *rll = &zd->zd_range_lock[hash & (ZTEST_RANGE_LOCKS - 1)];
1153b24ab676SJeff Bonwick 	rl_t *rl;
115488ecc943SGeorge Wilson 
1155b24ab676SJeff Bonwick 	rl = umem_alloc(sizeof (*rl), UMEM_NOFAIL);
1156b24ab676SJeff Bonwick 	rl->rl_object = object;
1157b24ab676SJeff Bonwick 	rl->rl_offset = offset;
1158b24ab676SJeff Bonwick 	rl->rl_size = size;
1159b24ab676SJeff Bonwick 	rl->rl_lock = rll;
116088ecc943SGeorge Wilson 
1161b24ab676SJeff Bonwick 	ztest_rll_lock(rll, type);
116288ecc943SGeorge Wilson 
1163b24ab676SJeff Bonwick 	return (rl);
116488ecc943SGeorge Wilson }
116588ecc943SGeorge Wilson 
1166b24ab676SJeff Bonwick static void
1167b24ab676SJeff Bonwick ztest_range_unlock(rl_t *rl)
1168fa9e4066Sahrens {
1169b24ab676SJeff Bonwick 	rll_t *rll = rl->rl_lock;
1170fa9e4066Sahrens 
1171b24ab676SJeff Bonwick 	ztest_rll_unlock(rll);
1172fa9e4066Sahrens 
1173b24ab676SJeff Bonwick 	umem_free(rl, sizeof (*rl));
1174b24ab676SJeff Bonwick }
1175fa9e4066Sahrens 
1176b24ab676SJeff Bonwick static void
1177420dfc95SChris Siden ztest_zd_init(ztest_ds_t *zd, ztest_shared_ds_t *szd, objset_t *os)
1178b24ab676SJeff Bonwick {
1179b24ab676SJeff Bonwick 	zd->zd_os = os;
1180b24ab676SJeff Bonwick 	zd->zd_zilog = dmu_objset_zil(os);
1181420dfc95SChris Siden 	zd->zd_shared = szd;
1182b24ab676SJeff Bonwick 	dmu_objset_name(os, zd->zd_name);
1183fa9e4066Sahrens 
1184420dfc95SChris Siden 	if (zd->zd_shared != NULL)
1185420dfc95SChris Siden 		zd->zd_shared->zd_seq = 0;
1186420dfc95SChris Siden 
1187c9ba2a43SEric Schrock 	VERIFY(rwlock_init(&zd->zd_zilog_lock, USYNC_THREAD, NULL) == 0);
1188b24ab676SJeff Bonwick 	VERIFY(_mutex_init(&zd->zd_dirobj_lock, USYNC_THREAD, NULL) == 0);
1189b24ab676SJeff Bonwick 
1190b24ab676SJeff Bonwick 	for (int l = 0; l < ZTEST_OBJECT_LOCKS; l++)
1191b24ab676SJeff Bonwick 		ztest_rll_init(&zd->zd_object_lock[l]);
1192b24ab676SJeff Bonwick 
1193b24ab676SJeff Bonwick 	for (int l = 0; l < ZTEST_RANGE_LOCKS; l++)
1194b24ab676SJeff Bonwick 		ztest_rll_init(&zd->zd_range_lock[l]);
1195b24ab676SJeff Bonwick }
1196b24ab676SJeff Bonwick 
1197b24ab676SJeff Bonwick static void
1198b24ab676SJeff Bonwick ztest_zd_fini(ztest_ds_t *zd)
1199b24ab676SJeff Bonwick {
1200b24ab676SJeff Bonwick 	VERIFY(_mutex_destroy(&zd->zd_dirobj_lock) == 0);
1201b24ab676SJeff Bonwick 
1202b24ab676SJeff Bonwick 	for (int l = 0; l < ZTEST_OBJECT_LOCKS; l++)
1203b24ab676SJeff Bonwick 		ztest_rll_destroy(&zd->zd_object_lock[l]);
1204b24ab676SJeff Bonwick 
1205b24ab676SJeff Bonwick 	for (int l = 0; l < ZTEST_RANGE_LOCKS; l++)
1206b24ab676SJeff Bonwick 		ztest_rll_destroy(&zd->zd_range_lock[l]);
1207b24ab676SJeff Bonwick }
1208b24ab676SJeff Bonwick 
1209b24ab676SJeff Bonwick #define	TXG_MIGHTWAIT	(ztest_random(10) == 0 ? TXG_NOWAIT : TXG_WAIT)
1210b24ab676SJeff Bonwick 
1211b24ab676SJeff Bonwick static uint64_t
1212b24ab676SJeff Bonwick ztest_tx_assign(dmu_tx_t *tx, uint64_t txg_how, const char *tag)
1213b24ab676SJeff Bonwick {
1214b24ab676SJeff Bonwick 	uint64_t txg;
1215b24ab676SJeff Bonwick 	int error;
1216b24ab676SJeff Bonwick 
1217b24ab676SJeff Bonwick 	/*
1218b24ab676SJeff Bonwick 	 * Attempt to assign tx to some transaction group.
1219b24ab676SJeff Bonwick 	 */
1220b24ab676SJeff Bonwick 	error = dmu_tx_assign(tx, txg_how);
1221b24ab676SJeff Bonwick 	if (error) {
1222b24ab676SJeff Bonwick 		if (error == ERESTART) {
1223b24ab676SJeff Bonwick 			ASSERT(txg_how == TXG_NOWAIT);
1224b24ab676SJeff Bonwick 			dmu_tx_wait(tx);
1225b24ab676SJeff Bonwick 		} else {
1226b24ab676SJeff Bonwick 			ASSERT3U(error, ==, ENOSPC);
1227b24ab676SJeff Bonwick 			ztest_record_enospc(tag);
1228b24ab676SJeff Bonwick 		}
1229b24ab676SJeff Bonwick 		dmu_tx_abort(tx);
1230b24ab676SJeff Bonwick 		return (0);
1231b24ab676SJeff Bonwick 	}
1232b24ab676SJeff Bonwick 	txg = dmu_tx_get_txg(tx);
1233b24ab676SJeff Bonwick 	ASSERT(txg != 0);
1234b24ab676SJeff Bonwick 	return (txg);
1235b24ab676SJeff Bonwick }
1236b24ab676SJeff Bonwick 
1237b24ab676SJeff Bonwick static void
1238b24ab676SJeff Bonwick ztest_pattern_set(void *buf, uint64_t size, uint64_t value)
1239b24ab676SJeff Bonwick {
1240b24ab676SJeff Bonwick 	uint64_t *ip = buf;
1241b24ab676SJeff Bonwick 	uint64_t *ip_end = (uint64_t *)((uintptr_t)buf + (uintptr_t)size);
1242b24ab676SJeff Bonwick 
1243b24ab676SJeff Bonwick 	while (ip < ip_end)
1244b24ab676SJeff Bonwick 		*ip++ = value;
1245b24ab676SJeff Bonwick }
1246b24ab676SJeff Bonwick 
1247b24ab676SJeff Bonwick static boolean_t
1248b24ab676SJeff Bonwick ztest_pattern_match(void *buf, uint64_t size, uint64_t value)
1249b24ab676SJeff Bonwick {
1250b24ab676SJeff Bonwick 	uint64_t *ip = buf;
1251b24ab676SJeff Bonwick 	uint64_t *ip_end = (uint64_t *)((uintptr_t)buf + (uintptr_t)size);
1252b24ab676SJeff Bonwick 	uint64_t diff = 0;
1253b24ab676SJeff Bonwick 
1254b24ab676SJeff Bonwick 	while (ip < ip_end)
1255b24ab676SJeff Bonwick 		diff |= (value - *ip++);
1256b24ab676SJeff Bonwick 
1257b24ab676SJeff Bonwick 	return (diff == 0);
1258b24ab676SJeff Bonwick }
1259b24ab676SJeff Bonwick 
1260b24ab676SJeff Bonwick static void
1261b24ab676SJeff Bonwick ztest_bt_generate(ztest_block_tag_t *bt, objset_t *os, uint64_t object,
1262b24ab676SJeff Bonwick     uint64_t offset, uint64_t gen, uint64_t txg, uint64_t crtxg)
1263b24ab676SJeff Bonwick {
1264b24ab676SJeff Bonwick 	bt->bt_magic = BT_MAGIC;
1265b24ab676SJeff Bonwick 	bt->bt_objset = dmu_objset_id(os);
1266b24ab676SJeff Bonwick 	bt->bt_object = object;
1267b24ab676SJeff Bonwick 	bt->bt_offset = offset;
1268b24ab676SJeff Bonwick 	bt->bt_gen = gen;
1269b24ab676SJeff Bonwick 	bt->bt_txg = txg;
1270b24ab676SJeff Bonwick 	bt->bt_crtxg = crtxg;
1271b24ab676SJeff Bonwick }
1272b24ab676SJeff Bonwick 
1273b24ab676SJeff Bonwick static void
1274b24ab676SJeff Bonwick ztest_bt_verify(ztest_block_tag_t *bt, objset_t *os, uint64_t object,
1275b24ab676SJeff Bonwick     uint64_t offset, uint64_t gen, uint64_t txg, uint64_t crtxg)
1276b24ab676SJeff Bonwick {
12775d7b4d43SMatthew Ahrens 	ASSERT3U(bt->bt_magic, ==, BT_MAGIC);
12785d7b4d43SMatthew Ahrens 	ASSERT3U(bt->bt_objset, ==, dmu_objset_id(os));
12795d7b4d43SMatthew Ahrens 	ASSERT3U(bt->bt_object, ==, object);
12805d7b4d43SMatthew Ahrens 	ASSERT3U(bt->bt_offset, ==, offset);
12815d7b4d43SMatthew Ahrens 	ASSERT3U(bt->bt_gen, <=, gen);
12825d7b4d43SMatthew Ahrens 	ASSERT3U(bt->bt_txg, <=, txg);
12835d7b4d43SMatthew Ahrens 	ASSERT3U(bt->bt_crtxg, ==, crtxg);
1284b24ab676SJeff Bonwick }
1285b24ab676SJeff Bonwick 
1286b24ab676SJeff Bonwick static ztest_block_tag_t *
1287b24ab676SJeff Bonwick ztest_bt_bonus(dmu_buf_t *db)
1288b24ab676SJeff Bonwick {
1289b24ab676SJeff Bonwick 	dmu_object_info_t doi;
1290b24ab676SJeff Bonwick 	ztest_block_tag_t *bt;
1291b24ab676SJeff Bonwick 
1292b24ab676SJeff Bonwick 	dmu_object_info_from_db(db, &doi);
1293b24ab676SJeff Bonwick 	ASSERT3U(doi.doi_bonus_size, <=, db->db_size);
1294b24ab676SJeff Bonwick 	ASSERT3U(doi.doi_bonus_size, >=, sizeof (*bt));
1295b24ab676SJeff Bonwick 	bt = (void *)((char *)db->db_data + doi.doi_bonus_size - sizeof (*bt));
1296b24ab676SJeff Bonwick 
1297b24ab676SJeff Bonwick 	return (bt);
1298b24ab676SJeff Bonwick }
1299b24ab676SJeff Bonwick 
1300b24ab676SJeff Bonwick /*
1301b24ab676SJeff Bonwick  * ZIL logging ops
1302b24ab676SJeff Bonwick  */
1303b24ab676SJeff Bonwick 
1304b24ab676SJeff Bonwick #define	lrz_type	lr_mode
1305b24ab676SJeff Bonwick #define	lrz_blocksize	lr_uid
1306b24ab676SJeff Bonwick #define	lrz_ibshift	lr_gid
1307b24ab676SJeff Bonwick #define	lrz_bonustype	lr_rdev
1308b24ab676SJeff Bonwick #define	lrz_bonuslen	lr_crtime[1]
1309b24ab676SJeff Bonwick 
13105002558fSNeil Perrin static void
1311b24ab676SJeff Bonwick ztest_log_create(ztest_ds_t *zd, dmu_tx_t *tx, lr_create_t *lr)
1312b24ab676SJeff Bonwick {
1313b24ab676SJeff Bonwick 	char *name = (void *)(lr + 1);		/* name follows lr */
1314b24ab676SJeff Bonwick 	size_t namesize = strlen(name) + 1;
1315b24ab676SJeff Bonwick 	itx_t *itx;
1316b24ab676SJeff Bonwick 
1317b24ab676SJeff Bonwick 	if (zil_replaying(zd->zd_zilog, tx))
13185002558fSNeil Perrin 		return;
1319b24ab676SJeff Bonwick 
1320b24ab676SJeff Bonwick 	itx = zil_itx_create(TX_CREATE, sizeof (*lr) + namesize);
1321b24ab676SJeff Bonwick 	bcopy(&lr->lr_common + 1, &itx->itx_lr + 1,
1322b24ab676SJeff Bonwick 	    sizeof (*lr) + namesize - sizeof (lr_t));
1323b24ab676SJeff Bonwick 
13245002558fSNeil Perrin 	zil_itx_assign(zd->zd_zilog, itx, tx);
1325b24ab676SJeff Bonwick }
1326b24ab676SJeff Bonwick 
13275002558fSNeil Perrin static void
13285002558fSNeil Perrin ztest_log_remove(ztest_ds_t *zd, dmu_tx_t *tx, lr_remove_t *lr, uint64_t object)
1329b24ab676SJeff Bonwick {
1330b24ab676SJeff Bonwick 	char *name = (void *)(lr + 1);		/* name follows lr */
1331b24ab676SJeff Bonwick 	size_t namesize = strlen(name) + 1;
1332b24ab676SJeff Bonwick 	itx_t *itx;
1333b24ab676SJeff Bonwick 
1334b24ab676SJeff Bonwick 	if (zil_replaying(zd->zd_zilog, tx))
13355002558fSNeil Perrin 		return;
1336b24ab676SJeff Bonwick 
1337b24ab676SJeff Bonwick 	itx = zil_itx_create(TX_REMOVE, sizeof (*lr) + namesize);
1338b24ab676SJeff Bonwick 	bcopy(&lr->lr_common + 1, &itx->itx_lr + 1,
1339b24ab676SJeff Bonwick 	    sizeof (*lr) + namesize - sizeof (lr_t));
1340b24ab676SJeff Bonwick 
134151bd2f97SNeil Perrin 	itx->itx_oid = object;
13425002558fSNeil Perrin 	zil_itx_assign(zd->zd_zilog, itx, tx);
1343b24ab676SJeff Bonwick }
1344b24ab676SJeff Bonwick 
13455002558fSNeil Perrin static void
1346b24ab676SJeff Bonwick ztest_log_write(ztest_ds_t *zd, dmu_tx_t *tx, lr_write_t *lr)
1347b24ab676SJeff Bonwick {
1348b24ab676SJeff Bonwick 	itx_t *itx;
1349b24ab676SJeff Bonwick 	itx_wr_state_t write_state = ztest_random(WR_NUM_STATES);
1350b24ab676SJeff Bonwick 
1351b24ab676SJeff Bonwick 	if (zil_replaying(zd->zd_zilog, tx))
13525002558fSNeil Perrin 		return;
1353b24ab676SJeff Bonwick 
1354b24ab676SJeff Bonwick 	if (lr->lr_length > ZIL_MAX_LOG_DATA)
1355b24ab676SJeff Bonwick 		write_state = WR_INDIRECT;
1356b24ab676SJeff Bonwick 
1357b24ab676SJeff Bonwick 	itx = zil_itx_create(TX_WRITE,
1358b24ab676SJeff Bonwick 	    sizeof (*lr) + (write_state == WR_COPIED ? lr->lr_length : 0));
1359b24ab676SJeff Bonwick 
1360b24ab676SJeff Bonwick 	if (write_state == WR_COPIED &&
1361b24ab676SJeff Bonwick 	    dmu_read(zd->zd_os, lr->lr_foid, lr->lr_offset, lr->lr_length,
1362b24ab676SJeff Bonwick 	    ((lr_write_t *)&itx->itx_lr) + 1, DMU_READ_NO_PREFETCH) != 0) {
1363b24ab676SJeff Bonwick 		zil_itx_destroy(itx);
1364b24ab676SJeff Bonwick 		itx = zil_itx_create(TX_WRITE, sizeof (*lr));
1365b24ab676SJeff Bonwick 		write_state = WR_NEED_COPY;
1366b24ab676SJeff Bonwick 	}
1367b24ab676SJeff Bonwick 	itx->itx_private = zd;
1368b24ab676SJeff Bonwick 	itx->itx_wr_state = write_state;
1369b24ab676SJeff Bonwick 	itx->itx_sync = (ztest_random(8) == 0);
1370b24ab676SJeff Bonwick 	itx->itx_sod += (write_state == WR_NEED_COPY ? lr->lr_length : 0);
1371b24ab676SJeff Bonwick 
1372b24ab676SJeff Bonwick 	bcopy(&lr->lr_common + 1, &itx->itx_lr + 1,
1373b24ab676SJeff Bonwick 	    sizeof (*lr) - sizeof (lr_t));
1374b24ab676SJeff Bonwick 
13755002558fSNeil Perrin 	zil_itx_assign(zd->zd_zilog, itx, tx);
1376b24ab676SJeff Bonwick }
1377b24ab676SJeff Bonwick 
13785002558fSNeil Perrin static void
1379b24ab676SJeff Bonwick ztest_log_truncate(ztest_ds_t *zd, dmu_tx_t *tx, lr_truncate_t *lr)
1380b24ab676SJeff Bonwick {
1381b24ab676SJeff Bonwick 	itx_t *itx;
1382b24ab676SJeff Bonwick 
1383b24ab676SJeff Bonwick 	if (zil_replaying(zd->zd_zilog, tx))
13845002558fSNeil Perrin 		return;
1385b24ab676SJeff Bonwick 
1386b24ab676SJeff Bonwick 	itx = zil_itx_create(TX_TRUNCATE, sizeof (*lr));
1387b24ab676SJeff Bonwick 	bcopy(&lr->lr_common + 1, &itx->itx_lr + 1,
1388b24ab676SJeff Bonwick 	    sizeof (*lr) - sizeof (lr_t));
1389b24ab676SJeff Bonwick 
13905002558fSNeil Perrin 	itx->itx_sync = B_FALSE;
13915002558fSNeil Perrin 	zil_itx_assign(zd->zd_zilog, itx, tx);
1392b24ab676SJeff Bonwick }
1393b24ab676SJeff Bonwick 
13945002558fSNeil Perrin static void
1395b24ab676SJeff Bonwick ztest_log_setattr(ztest_ds_t *zd, dmu_tx_t *tx, lr_setattr_t *lr)
1396b24ab676SJeff Bonwick {
1397b24ab676SJeff Bonwick 	itx_t *itx;
1398b24ab676SJeff Bonwick 
1399b24ab676SJeff Bonwick 	if (zil_replaying(zd->zd_zilog, tx))
14005002558fSNeil Perrin 		return;
1401b24ab676SJeff Bonwick 
1402b24ab676SJeff Bonwick 	itx = zil_itx_create(TX_SETATTR, sizeof (*lr));
1403b24ab676SJeff Bonwick 	bcopy(&lr->lr_common + 1, &itx->itx_lr + 1,
1404b24ab676SJeff Bonwick 	    sizeof (*lr) - sizeof (lr_t));
1405b24ab676SJeff Bonwick 
14065002558fSNeil Perrin 	itx->itx_sync = B_FALSE;
14075002558fSNeil Perrin 	zil_itx_assign(zd->zd_zilog, itx, tx);
1408b24ab676SJeff Bonwick }
1409b24ab676SJeff Bonwick 
1410b24ab676SJeff Bonwick /*
1411b24ab676SJeff Bonwick  * ZIL replay ops
1412b24ab676SJeff Bonwick  */
1413b24ab676SJeff Bonwick static int
1414b24ab676SJeff Bonwick ztest_replay_create(ztest_ds_t *zd, lr_create_t *lr, boolean_t byteswap)
1415b24ab676SJeff Bonwick {
1416b24ab676SJeff Bonwick 	char *name = (void *)(lr + 1);		/* name follows lr */
1417b24ab676SJeff Bonwick 	objset_t *os = zd->zd_os;
1418b24ab676SJeff Bonwick 	ztest_block_tag_t *bbt;
1419b24ab676SJeff Bonwick 	dmu_buf_t *db;
1420b24ab676SJeff Bonwick 	dmu_tx_t *tx;
1421b24ab676SJeff Bonwick 	uint64_t txg;
1422b24ab676SJeff Bonwick 	int error = 0;
1423b24ab676SJeff Bonwick 
1424b24ab676SJeff Bonwick 	if (byteswap)
1425b24ab676SJeff Bonwick 		byteswap_uint64_array(lr, sizeof (*lr));
1426b24ab676SJeff Bonwick 
1427b24ab676SJeff Bonwick 	ASSERT(lr->lr_doid == ZTEST_DIROBJ);
1428b24ab676SJeff Bonwick 	ASSERT(name[0] != '\0');
1429b24ab676SJeff Bonwick 
1430b24ab676SJeff Bonwick 	tx = dmu_tx_create(os);
1431b24ab676SJeff Bonwick 
1432b24ab676SJeff Bonwick 	dmu_tx_hold_zap(tx, lr->lr_doid, B_TRUE, name);
1433b24ab676SJeff Bonwick 
1434b24ab676SJeff Bonwick 	if (lr->lrz_type == DMU_OT_ZAP_OTHER) {
1435b24ab676SJeff Bonwick 		dmu_tx_hold_zap(tx, DMU_NEW_OBJECT, B_TRUE, NULL);
1436b24ab676SJeff Bonwick 	} else {
1437b24ab676SJeff Bonwick 		dmu_tx_hold_bonus(tx, DMU_NEW_OBJECT);
1438b24ab676SJeff Bonwick 	}
1439b24ab676SJeff Bonwick 
1440b24ab676SJeff Bonwick 	txg = ztest_tx_assign(tx, TXG_WAIT, FTAG);
1441b24ab676SJeff Bonwick 	if (txg == 0)
1442b24ab676SJeff Bonwick 		return (ENOSPC);
1443b24ab676SJeff Bonwick 
1444b24ab676SJeff Bonwick 	ASSERT(dmu_objset_zil(os)->zl_replay == !!lr->lr_foid);
1445b24ab676SJeff Bonwick 
1446b24ab676SJeff Bonwick 	if (lr->lrz_type == DMU_OT_ZAP_OTHER) {
1447b24ab676SJeff Bonwick 		if (lr->lr_foid == 0) {
1448b24ab676SJeff Bonwick 			lr->lr_foid = zap_create(os,
1449b24ab676SJeff Bonwick 			    lr->lrz_type, lr->lrz_bonustype,
1450b24ab676SJeff Bonwick 			    lr->lrz_bonuslen, tx);
1451b24ab676SJeff Bonwick 		} else {
1452b24ab676SJeff Bonwick 			error = zap_create_claim(os, lr->lr_foid,
1453b24ab676SJeff Bonwick 			    lr->lrz_type, lr->lrz_bonustype,
1454b24ab676SJeff Bonwick 			    lr->lrz_bonuslen, tx);
1455b24ab676SJeff Bonwick 		}
1456b24ab676SJeff Bonwick 	} else {
1457b24ab676SJeff Bonwick 		if (lr->lr_foid == 0) {
1458b24ab676SJeff Bonwick 			lr->lr_foid = dmu_object_alloc(os,
1459b24ab676SJeff Bonwick 			    lr->lrz_type, 0, lr->lrz_bonustype,
1460b24ab676SJeff Bonwick 			    lr->lrz_bonuslen, tx);
1461b24ab676SJeff Bonwick 		} else {
1462b24ab676SJeff Bonwick 			error = dmu_object_claim(os, lr->lr_foid,
1463b24ab676SJeff Bonwick 			    lr->lrz_type, 0, lr->lrz_bonustype,
1464b24ab676SJeff Bonwick 			    lr->lrz_bonuslen, tx);
1465b24ab676SJeff Bonwick 		}
1466b24ab676SJeff Bonwick 	}
1467b24ab676SJeff Bonwick 
1468b24ab676SJeff Bonwick 	if (error) {
1469b24ab676SJeff Bonwick 		ASSERT3U(error, ==, EEXIST);
1470b24ab676SJeff Bonwick 		ASSERT(zd->zd_zilog->zl_replay);
1471b24ab676SJeff Bonwick 		dmu_tx_commit(tx);
1472b24ab676SJeff Bonwick 		return (error);
1473b24ab676SJeff Bonwick 	}
1474b24ab676SJeff Bonwick 
1475b24ab676SJeff Bonwick 	ASSERT(lr->lr_foid != 0);
1476b24ab676SJeff Bonwick 
1477b24ab676SJeff Bonwick 	if (lr->lrz_type != DMU_OT_ZAP_OTHER)
1478b420f3adSRichard Lowe 		VERIFY3U(0, ==, dmu_object_set_blocksize(os, lr->lr_foid,
1479b24ab676SJeff Bonwick 		    lr->lrz_blocksize, lr->lrz_ibshift, tx));
1480b24ab676SJeff Bonwick 
1481b420f3adSRichard Lowe 	VERIFY3U(0, ==, dmu_bonus_hold(os, lr->lr_foid, FTAG, &db));
1482b24ab676SJeff Bonwick 	bbt = ztest_bt_bonus(db);
1483b24ab676SJeff Bonwick 	dmu_buf_will_dirty(db, tx);
1484b24ab676SJeff Bonwick 	ztest_bt_generate(bbt, os, lr->lr_foid, -1ULL, lr->lr_gen, txg, txg);
1485b24ab676SJeff Bonwick 	dmu_buf_rele(db, FTAG);
1486b24ab676SJeff Bonwick 
1487b420f3adSRichard Lowe 	VERIFY3U(0, ==, zap_add(os, lr->lr_doid, name, sizeof (uint64_t), 1,
1488b24ab676SJeff Bonwick 	    &lr->lr_foid, tx));
1489b24ab676SJeff Bonwick 
1490b24ab676SJeff Bonwick 	(void) ztest_log_create(zd, tx, lr);
1491b24ab676SJeff Bonwick 
1492b24ab676SJeff Bonwick 	dmu_tx_commit(tx);
1493b24ab676SJeff Bonwick 
1494b24ab676SJeff Bonwick 	return (0);
1495b24ab676SJeff Bonwick }
1496b24ab676SJeff Bonwick 
1497b24ab676SJeff Bonwick static int
1498b24ab676SJeff Bonwick ztest_replay_remove(ztest_ds_t *zd, lr_remove_t *lr, boolean_t byteswap)
1499b24ab676SJeff Bonwick {
1500b24ab676SJeff Bonwick 	char *name = (void *)(lr + 1);		/* name follows lr */
1501b24ab676SJeff Bonwick 	objset_t *os = zd->zd_os;
1502b24ab676SJeff Bonwick 	dmu_object_info_t doi;
1503b24ab676SJeff Bonwick 	dmu_tx_t *tx;
1504b24ab676SJeff Bonwick 	uint64_t object, txg;
1505b24ab676SJeff Bonwick 
1506b24ab676SJeff Bonwick 	if (byteswap)
1507b24ab676SJeff Bonwick 		byteswap_uint64_array(lr, sizeof (*lr));
1508b24ab676SJeff Bonwick 
1509b24ab676SJeff Bonwick 	ASSERT(lr->lr_doid == ZTEST_DIROBJ);
1510b24ab676SJeff Bonwick 	ASSERT(name[0] != '\0');
1511b24ab676SJeff Bonwick 
1512b420f3adSRichard Lowe 	VERIFY3U(0, ==,
1513b24ab676SJeff Bonwick 	    zap_lookup(os, lr->lr_doid, name, sizeof (object), 1, &object));
1514b24ab676SJeff Bonwick 	ASSERT(object != 0);
1515b24ab676SJeff Bonwick 
1516b24ab676SJeff Bonwick 	ztest_object_lock(zd, object, RL_WRITER);
1517b24ab676SJeff Bonwick 
1518b420f3adSRichard Lowe 	VERIFY3U(0, ==, dmu_object_info(os, object, &doi));
1519b24ab676SJeff Bonwick 
1520b24ab676SJeff Bonwick 	tx = dmu_tx_create(os);
1521b24ab676SJeff Bonwick 
1522b24ab676SJeff Bonwick 	dmu_tx_hold_zap(tx, lr->lr_doid, B_FALSE, name);
1523b24ab676SJeff Bonwick 	dmu_tx_hold_free(tx, object, 0, DMU_OBJECT_END);
1524b24ab676SJeff Bonwick 
1525b24ab676SJeff Bonwick 	txg = ztest_tx_assign(tx, TXG_WAIT, FTAG);
1526b24ab676SJeff Bonwick 	if (txg == 0) {
1527b24ab676SJeff Bonwick 		ztest_object_unlock(zd, object);
1528b24ab676SJeff Bonwick 		return (ENOSPC);
1529b24ab676SJeff Bonwick 	}
1530b24ab676SJeff Bonwick 
1531b24ab676SJeff Bonwick 	if (doi.doi_type == DMU_OT_ZAP_OTHER) {
1532b420f3adSRichard Lowe 		VERIFY3U(0, ==, zap_destroy(os, object, tx));
1533b24ab676SJeff Bonwick 	} else {
1534b420f3adSRichard Lowe 		VERIFY3U(0, ==, dmu_object_free(os, object, tx));
1535b24ab676SJeff Bonwick 	}
1536b24ab676SJeff Bonwick 
1537b420f3adSRichard Lowe 	VERIFY3U(0, ==, zap_remove(os, lr->lr_doid, name, tx));
1538b24ab676SJeff Bonwick 
15395002558fSNeil Perrin 	(void) ztest_log_remove(zd, tx, lr, object);
1540b24ab676SJeff Bonwick 
1541b24ab676SJeff Bonwick 	dmu_tx_commit(tx);
1542b24ab676SJeff Bonwick 
1543b24ab676SJeff Bonwick 	ztest_object_unlock(zd, object);
1544b24ab676SJeff Bonwick 
1545b24ab676SJeff Bonwick 	return (0);
1546b24ab676SJeff Bonwick }
1547b24ab676SJeff Bonwick 
1548b24ab676SJeff Bonwick static int
1549b24ab676SJeff Bonwick ztest_replay_write(ztest_ds_t *zd, lr_write_t *lr, boolean_t byteswap)
1550b24ab676SJeff Bonwick {
1551b24ab676SJeff Bonwick 	objset_t *os = zd->zd_os;
1552b24ab676SJeff Bonwick 	void *data = lr + 1;			/* data follows lr */
1553b24ab676SJeff Bonwick 	uint64_t offset, length;
1554b24ab676SJeff Bonwick 	ztest_block_tag_t *bt = data;
1555b24ab676SJeff Bonwick 	ztest_block_tag_t *bbt;
1556b24ab676SJeff Bonwick 	uint64_t gen, txg, lrtxg, crtxg;
1557b24ab676SJeff Bonwick 	dmu_object_info_t doi;
1558b24ab676SJeff Bonwick 	dmu_tx_t *tx;
1559b24ab676SJeff Bonwick 	dmu_buf_t *db;
1560b24ab676SJeff Bonwick 	arc_buf_t *abuf = NULL;
1561b24ab676SJeff Bonwick 	rl_t *rl;
1562b24ab676SJeff Bonwick 
1563b24ab676SJeff Bonwick 	if (byteswap)
1564b24ab676SJeff Bonwick 		byteswap_uint64_array(lr, sizeof (*lr));
1565b24ab676SJeff Bonwick 
1566b24ab676SJeff Bonwick 	offset = lr->lr_offset;
1567b24ab676SJeff Bonwick 	length = lr->lr_length;
1568b24ab676SJeff Bonwick 
1569b24ab676SJeff Bonwick 	/* If it's a dmu_sync() block, write the whole block */
1570b24ab676SJeff Bonwick 	if (lr->lr_common.lrc_reclen == sizeof (lr_write_t)) {
1571b24ab676SJeff Bonwick 		uint64_t blocksize = BP_GET_LSIZE(&lr->lr_blkptr);
1572b24ab676SJeff Bonwick 		if (length < blocksize) {
1573b24ab676SJeff Bonwick 			offset -= offset % blocksize;
1574b24ab676SJeff Bonwick 			length = blocksize;
1575b24ab676SJeff Bonwick 		}
1576b24ab676SJeff Bonwick 	}
1577b24ab676SJeff Bonwick 
1578b24ab676SJeff Bonwick 	if (bt->bt_magic == BSWAP_64(BT_MAGIC))
1579b24ab676SJeff Bonwick 		byteswap_uint64_array(bt, sizeof (*bt));
1580b24ab676SJeff Bonwick 
1581b24ab676SJeff Bonwick 	if (bt->bt_magic != BT_MAGIC)
1582b24ab676SJeff Bonwick 		bt = NULL;
1583b24ab676SJeff Bonwick 
1584b24ab676SJeff Bonwick 	ztest_object_lock(zd, lr->lr_foid, RL_READER);
1585b24ab676SJeff Bonwick 	rl = ztest_range_lock(zd, lr->lr_foid, offset, length, RL_WRITER);
1586b24ab676SJeff Bonwick 
1587b420f3adSRichard Lowe 	VERIFY3U(0, ==, dmu_bonus_hold(os, lr->lr_foid, FTAG, &db));
1588b24ab676SJeff Bonwick 
1589b24ab676SJeff Bonwick 	dmu_object_info_from_db(db, &doi);
1590b24ab676SJeff Bonwick 
1591b24ab676SJeff Bonwick 	bbt = ztest_bt_bonus(db);
1592b24ab676SJeff Bonwick 	ASSERT3U(bbt->bt_magic, ==, BT_MAGIC);
1593b24ab676SJeff Bonwick 	gen = bbt->bt_gen;
1594b24ab676SJeff Bonwick 	crtxg = bbt->bt_crtxg;
1595b24ab676SJeff Bonwick 	lrtxg = lr->lr_common.lrc_txg;
1596b24ab676SJeff Bonwick 
1597b24ab676SJeff Bonwick 	tx = dmu_tx_create(os);
1598b24ab676SJeff Bonwick 
1599b24ab676SJeff Bonwick 	dmu_tx_hold_write(tx, lr->lr_foid, offset, length);
1600b24ab676SJeff Bonwick 
1601b24ab676SJeff Bonwick 	if (ztest_random(8) == 0 && length == doi.doi_data_block_size &&
1602b24ab676SJeff Bonwick 	    P2PHASE(offset, length) == 0)
1603b24ab676SJeff Bonwick 		abuf = dmu_request_arcbuf(db, length);
1604b24ab676SJeff Bonwick 
1605b24ab676SJeff Bonwick 	txg = ztest_tx_assign(tx, TXG_WAIT, FTAG);
1606b24ab676SJeff Bonwick 	if (txg == 0) {
1607b24ab676SJeff Bonwick 		if (abuf != NULL)
1608b24ab676SJeff Bonwick 			dmu_return_arcbuf(abuf);
1609b24ab676SJeff Bonwick 		dmu_buf_rele(db, FTAG);
1610b24ab676SJeff Bonwick 		ztest_range_unlock(rl);
1611b24ab676SJeff Bonwick 		ztest_object_unlock(zd, lr->lr_foid);
1612b24ab676SJeff Bonwick 		return (ENOSPC);
1613b24ab676SJeff Bonwick 	}
1614b24ab676SJeff Bonwick 
1615b24ab676SJeff Bonwick 	if (bt != NULL) {
1616b24ab676SJeff Bonwick 		/*
1617b24ab676SJeff Bonwick 		 * Usually, verify the old data before writing new data --
1618b24ab676SJeff Bonwick 		 * but not always, because we also want to verify correct
1619b24ab676SJeff Bonwick 		 * behavior when the data was not recently read into cache.
1620b24ab676SJeff Bonwick 		 */
1621b24ab676SJeff Bonwick 		ASSERT(offset % doi.doi_data_block_size == 0);
1622b24ab676SJeff Bonwick 		if (ztest_random(4) != 0) {
1623b24ab676SJeff Bonwick 			int prefetch = ztest_random(2) ?
1624b24ab676SJeff Bonwick 			    DMU_READ_PREFETCH : DMU_READ_NO_PREFETCH;
1625b24ab676SJeff Bonwick 			ztest_block_tag_t rbt;
1626b24ab676SJeff Bonwick 
1627b24ab676SJeff Bonwick 			VERIFY(dmu_read(os, lr->lr_foid, offset,
1628b24ab676SJeff Bonwick 			    sizeof (rbt), &rbt, prefetch) == 0);
1629b24ab676SJeff Bonwick 			if (rbt.bt_magic == BT_MAGIC) {
1630b24ab676SJeff Bonwick 				ztest_bt_verify(&rbt, os, lr->lr_foid,
1631b24ab676SJeff Bonwick 				    offset, gen, txg, crtxg);
1632b24ab676SJeff Bonwick 			}
1633b24ab676SJeff Bonwick 		}
1634b24ab676SJeff Bonwick 
1635b24ab676SJeff Bonwick 		/*
1636b24ab676SJeff Bonwick 		 * Writes can appear to be newer than the bonus buffer because
1637b24ab676SJeff Bonwick 		 * the ztest_get_data() callback does a dmu_read() of the
1638b24ab676SJeff Bonwick 		 * open-context data, which may be different than the data
1639b24ab676SJeff Bonwick 		 * as it was when the write was generated.
1640b24ab676SJeff Bonwick 		 */
1641b24ab676SJeff Bonwick 		if (zd->zd_zilog->zl_replay) {
1642b24ab676SJeff Bonwick 			ztest_bt_verify(bt, os, lr->lr_foid, offset,
1643b24ab676SJeff Bonwick 			    MAX(gen, bt->bt_gen), MAX(txg, lrtxg),
1644b24ab676SJeff Bonwick 			    bt->bt_crtxg);
1645b24ab676SJeff Bonwick 		}
1646b24ab676SJeff Bonwick 
1647b24ab676SJeff Bonwick 		/*
1648b24ab676SJeff Bonwick 		 * Set the bt's gen/txg to the bonus buffer's gen/txg
1649b24ab676SJeff Bonwick 		 * so that all of the usual ASSERTs will work.
1650b24ab676SJeff Bonwick 		 */
1651b24ab676SJeff Bonwick 		ztest_bt_generate(bt, os, lr->lr_foid, offset, gen, txg, crtxg);
1652b24ab676SJeff Bonwick 	}
1653b24ab676SJeff Bonwick 
1654b24ab676SJeff Bonwick 	if (abuf == NULL) {
1655b24ab676SJeff Bonwick 		dmu_write(os, lr->lr_foid, offset, length, data, tx);
1656b24ab676SJeff Bonwick 	} else {
1657b24ab676SJeff Bonwick 		bcopy(data, abuf->b_data, length);
1658b24ab676SJeff Bonwick 		dmu_assign_arcbuf(db, offset, abuf, tx);
1659b24ab676SJeff Bonwick 	}
1660b24ab676SJeff Bonwick 
1661b24ab676SJeff Bonwick 	(void) ztest_log_write(zd, tx, lr);
1662b24ab676SJeff Bonwick 
1663b24ab676SJeff Bonwick 	dmu_buf_rele(db, FTAG);
1664b24ab676SJeff Bonwick 
1665b24ab676SJeff Bonwick 	dmu_tx_commit(tx);
1666b24ab676SJeff Bonwick 
1667b24ab676SJeff Bonwick 	ztest_range_unlock(rl);
1668b24ab676SJeff Bonwick 	ztest_object_unlock(zd, lr->lr_foid);
1669b24ab676SJeff Bonwick 
1670b24ab676SJeff Bonwick 	return (0);
1671b24ab676SJeff Bonwick }
1672b24ab676SJeff Bonwick 
1673b24ab676SJeff Bonwick static int
1674b24ab676SJeff Bonwick ztest_replay_truncate(ztest_ds_t *zd, lr_truncate_t *lr, boolean_t byteswap)
1675b24ab676SJeff Bonwick {
1676b24ab676SJeff Bonwick 	objset_t *os = zd->zd_os;
1677b24ab676SJeff Bonwick 	dmu_tx_t *tx;
1678b24ab676SJeff Bonwick 	uint64_t txg;
1679b24ab676SJeff Bonwick 	rl_t *rl;
1680b24ab676SJeff Bonwick 
1681b24ab676SJeff Bonwick 	if (byteswap)
1682b24ab676SJeff Bonwick 		byteswap_uint64_array(lr, sizeof (*lr));
1683b24ab676SJeff Bonwick 
1684b24ab676SJeff Bonwick 	ztest_object_lock(zd, lr->lr_foid, RL_READER);
1685b24ab676SJeff Bonwick 	rl = ztest_range_lock(zd, lr->lr_foid, lr->lr_offset, lr->lr_length,
1686b24ab676SJeff Bonwick 	    RL_WRITER);
1687b24ab676SJeff Bonwick 
1688b24ab676SJeff Bonwick 	tx = dmu_tx_create(os);
1689b24ab676SJeff Bonwick 
1690b24ab676SJeff Bonwick 	dmu_tx_hold_free(tx, lr->lr_foid, lr->lr_offset, lr->lr_length);
1691b24ab676SJeff Bonwick 
1692b24ab676SJeff Bonwick 	txg = ztest_tx_assign(tx, TXG_WAIT, FTAG);
1693b24ab676SJeff Bonwick 	if (txg == 0) {
1694b24ab676SJeff Bonwick 		ztest_range_unlock(rl);
1695b24ab676SJeff Bonwick 		ztest_object_unlock(zd, lr->lr_foid);
1696b24ab676SJeff Bonwick 		return (ENOSPC);
1697b24ab676SJeff Bonwick 	}
1698b24ab676SJeff Bonwick 
1699b24ab676SJeff Bonwick 	VERIFY(dmu_free_range(os, lr->lr_foid, lr->lr_offset,
1700b24ab676SJeff Bonwick 	    lr->lr_length, tx) == 0);
1701b24ab676SJeff Bonwick 
1702b24ab676SJeff Bonwick 	(void) ztest_log_truncate(zd, tx, lr);
1703b24ab676SJeff Bonwick 
1704b24ab676SJeff Bonwick 	dmu_tx_commit(tx);
1705b24ab676SJeff Bonwick 
1706b24ab676SJeff Bonwick 	ztest_range_unlock(rl);
1707b24ab676SJeff Bonwick 	ztest_object_unlock(zd, lr->lr_foid);
1708b24ab676SJeff Bonwick 
1709b24ab676SJeff Bonwick 	return (0);
1710b24ab676SJeff Bonwick }
1711b24ab676SJeff Bonwick 
1712b24ab676SJeff Bonwick static int
1713b24ab676SJeff Bonwick ztest_replay_setattr(ztest_ds_t *zd, lr_setattr_t *lr, boolean_t byteswap)
1714b24ab676SJeff Bonwick {
1715b24ab676SJeff Bonwick 	objset_t *os = zd->zd_os;
1716b24ab676SJeff Bonwick 	dmu_tx_t *tx;
1717b24ab676SJeff Bonwick 	dmu_buf_t *db;
1718b24ab676SJeff Bonwick 	ztest_block_tag_t *bbt;
1719b24ab676SJeff Bonwick 	uint64_t txg, lrtxg, crtxg;
1720b24ab676SJeff Bonwick 
1721b24ab676SJeff Bonwick 	if (byteswap)
1722b24ab676SJeff Bonwick 		byteswap_uint64_array(lr, sizeof (*lr));
1723b24ab676SJeff Bonwick 
1724b24ab676SJeff Bonwick 	ztest_object_lock(zd, lr->lr_foid, RL_WRITER);
1725b24ab676SJeff Bonwick 
1726b420f3adSRichard Lowe 	VERIFY3U(0, ==, dmu_bonus_hold(os, lr->lr_foid, FTAG, &db));
1727b24ab676SJeff Bonwick 
1728b24ab676SJeff Bonwick 	tx = dmu_tx_create(os);
1729b24ab676SJeff Bonwick 	dmu_tx_hold_bonus(tx, lr->lr_foid);
1730b24ab676SJeff Bonwick 
1731b24ab676SJeff Bonwick 	txg = ztest_tx_assign(tx, TXG_WAIT, FTAG);
1732b24ab676SJeff Bonwick 	if (txg == 0) {
1733b24ab676SJeff Bonwick 		dmu_buf_rele(db, FTAG);
1734b24ab676SJeff Bonwick 		ztest_object_unlock(zd, lr->lr_foid);
1735b24ab676SJeff Bonwick 		return (ENOSPC);
1736b24ab676SJeff Bonwick 	}
1737b24ab676SJeff Bonwick 
1738b24ab676SJeff Bonwick 	bbt = ztest_bt_bonus(db);
1739b24ab676SJeff Bonwick 	ASSERT3U(bbt->bt_magic, ==, BT_MAGIC);
1740b24ab676SJeff Bonwick 	crtxg = bbt->bt_crtxg;
1741b24ab676SJeff Bonwick 	lrtxg = lr->lr_common.lrc_txg;
1742b24ab676SJeff Bonwick 
1743b24ab676SJeff Bonwick 	if (zd->zd_zilog->zl_replay) {
1744b24ab676SJeff Bonwick 		ASSERT(lr->lr_size != 0);
1745b24ab676SJeff Bonwick 		ASSERT(lr->lr_mode != 0);
1746b24ab676SJeff Bonwick 		ASSERT(lrtxg != 0);
1747b24ab676SJeff Bonwick 	} else {
1748b24ab676SJeff Bonwick 		/*
1749b24ab676SJeff Bonwick 		 * Randomly change the size and increment the generation.
1750b24ab676SJeff Bonwick 		 */
1751b24ab676SJeff Bonwick 		lr->lr_size = (ztest_random(db->db_size / sizeof (*bbt)) + 1) *
1752b24ab676SJeff Bonwick 		    sizeof (*bbt);
1753b24ab676SJeff Bonwick 		lr->lr_mode = bbt->bt_gen + 1;
1754b24ab676SJeff Bonwick 		ASSERT(lrtxg == 0);
1755b24ab676SJeff Bonwick 	}
1756b24ab676SJeff Bonwick 
1757b24ab676SJeff Bonwick 	/*
1758b24ab676SJeff Bonwick 	 * Verify that the current bonus buffer is not newer than our txg.
1759b24ab676SJeff Bonwick 	 */
1760b24ab676SJeff Bonwick 	ztest_bt_verify(bbt, os, lr->lr_foid, -1ULL, lr->lr_mode,
1761b24ab676SJeff Bonwick 	    MAX(txg, lrtxg), crtxg);
1762b24ab676SJeff Bonwick 
1763b24ab676SJeff Bonwick 	dmu_buf_will_dirty(db, tx);
1764b24ab676SJeff Bonwick 
1765b24ab676SJeff Bonwick 	ASSERT3U(lr->lr_size, >=, sizeof (*bbt));
1766b24ab676SJeff Bonwick 	ASSERT3U(lr->lr_size, <=, db->db_size);
1767fb09f5aaSMadhav Suresh 	VERIFY0(dmu_set_bonus(db, lr->lr_size, tx));
1768b24ab676SJeff Bonwick 	bbt = ztest_bt_bonus(db);
1769b24ab676SJeff Bonwick 
1770b24ab676SJeff Bonwick 	ztest_bt_generate(bbt, os, lr->lr_foid, -1ULL, lr->lr_mode, txg, crtxg);
1771b24ab676SJeff Bonwick 
1772b24ab676SJeff Bonwick 	dmu_buf_rele(db, FTAG);
1773b24ab676SJeff Bonwick 
1774b24ab676SJeff Bonwick 	(void) ztest_log_setattr(zd, tx, lr);
1775b24ab676SJeff Bonwick 
1776b24ab676SJeff Bonwick 	dmu_tx_commit(tx);
1777b24ab676SJeff Bonwick 
1778b24ab676SJeff Bonwick 	ztest_object_unlock(zd, lr->lr_foid);
1779b24ab676SJeff Bonwick 
1780b24ab676SJeff Bonwick 	return (0);
1781b24ab676SJeff Bonwick }
1782b24ab676SJeff Bonwick 
1783b24ab676SJeff Bonwick zil_replay_func_t *ztest_replay_vector[TX_MAX_TYPE] = {
1784b24ab676SJeff Bonwick 	NULL,			/* 0 no such transaction type */
1785b24ab676SJeff Bonwick 	ztest_replay_create,	/* TX_CREATE */
1786b24ab676SJeff Bonwick 	NULL,			/* TX_MKDIR */
1787b24ab676SJeff Bonwick 	NULL,			/* TX_MKXATTR */
1788b24ab676SJeff Bonwick 	NULL,			/* TX_SYMLINK */
1789b24ab676SJeff Bonwick 	ztest_replay_remove,	/* TX_REMOVE */
1790b24ab676SJeff Bonwick 	NULL,			/* TX_RMDIR */
1791b24ab676SJeff Bonwick 	NULL,			/* TX_LINK */
1792b24ab676SJeff Bonwick 	NULL,			/* TX_RENAME */
1793b24ab676SJeff Bonwick 	ztest_replay_write,	/* TX_WRITE */
1794b24ab676SJeff Bonwick 	ztest_replay_truncate,	/* TX_TRUNCATE */
1795b24ab676SJeff Bonwick 	ztest_replay_setattr,	/* TX_SETATTR */
1796b24ab676SJeff Bonwick 	NULL,			/* TX_ACL */
1797b24ab676SJeff Bonwick 	NULL,			/* TX_CREATE_ACL */
1798b24ab676SJeff Bonwick 	NULL,			/* TX_CREATE_ATTR */
1799b24ab676SJeff Bonwick 	NULL,			/* TX_CREATE_ACL_ATTR */
1800b24ab676SJeff Bonwick 	NULL,			/* TX_MKDIR_ACL */
1801b24ab676SJeff Bonwick 	NULL,			/* TX_MKDIR_ATTR */
1802b24ab676SJeff Bonwick 	NULL,			/* TX_MKDIR_ACL_ATTR */
1803b24ab676SJeff Bonwick 	NULL,			/* TX_WRITE2 */
1804b24ab676SJeff Bonwick };
1805b24ab676SJeff Bonwick 
1806b24ab676SJeff Bonwick /*
1807b24ab676SJeff Bonwick  * ZIL get_data callbacks
1808b24ab676SJeff Bonwick  */
1809b24ab676SJeff Bonwick 
1810b24ab676SJeff Bonwick static void
1811b24ab676SJeff Bonwick ztest_get_done(zgd_t *zgd, int error)
1812b24ab676SJeff Bonwick {
1813b24ab676SJeff Bonwick 	ztest_ds_t *zd = zgd->zgd_private;
1814b24ab676SJeff Bonwick 	uint64_t object = zgd->zgd_rl->rl_object;
1815b24ab676SJeff Bonwick 
1816b24ab676SJeff Bonwick 	if (zgd->zgd_db)
1817b24ab676SJeff Bonwick 		dmu_buf_rele(zgd->zgd_db, zgd);
1818b24ab676SJeff Bonwick 
1819b24ab676SJeff Bonwick 	ztest_range_unlock(zgd->zgd_rl);
1820b24ab676SJeff Bonwick 	ztest_object_unlock(zd, object);
1821b24ab676SJeff Bonwick 
1822b24ab676SJeff Bonwick 	if (error == 0 && zgd->zgd_bp)
1823b24ab676SJeff Bonwick 		zil_add_block(zgd->zgd_zilog, zgd->zgd_bp);
1824b24ab676SJeff Bonwick 
1825b24ab676SJeff Bonwick 	umem_free(zgd, sizeof (*zgd));
1826b24ab676SJeff Bonwick }
1827b24ab676SJeff Bonwick 
1828b24ab676SJeff Bonwick static int
1829b24ab676SJeff Bonwick ztest_get_data(void *arg, lr_write_t *lr, char *buf, zio_t *zio)
1830b24ab676SJeff Bonwick {
1831b24ab676SJeff Bonwick 	ztest_ds_t *zd = arg;
1832b24ab676SJeff Bonwick 	objset_t *os = zd->zd_os;
1833b24ab676SJeff Bonwick 	uint64_t object = lr->lr_foid;
1834b24ab676SJeff Bonwick 	uint64_t offset = lr->lr_offset;
1835b24ab676SJeff Bonwick 	uint64_t size = lr->lr_length;
1836b24ab676SJeff Bonwick 	blkptr_t *bp = &lr->lr_blkptr;
1837b24ab676SJeff Bonwick 	uint64_t txg = lr->lr_common.lrc_txg;
1838b24ab676SJeff Bonwick 	uint64_t crtxg;
1839b24ab676SJeff Bonwick 	dmu_object_info_t doi;
1840b24ab676SJeff Bonwick 	dmu_buf_t *db;
1841b24ab676SJeff Bonwick 	zgd_t *zgd;
1842b24ab676SJeff Bonwick 	int error;
1843b24ab676SJeff Bonwick 
1844b24ab676SJeff Bonwick 	ztest_object_lock(zd, object, RL_READER);
1845b24ab676SJeff Bonwick 	error = dmu_bonus_hold(os, object, FTAG, &db);
1846b24ab676SJeff Bonwick 	if (error) {
1847b24ab676SJeff Bonwick 		ztest_object_unlock(zd, object);
1848b24ab676SJeff Bonwick 		return (error);
1849b24ab676SJeff Bonwick 	}
1850b24ab676SJeff Bonwick 
1851b24ab676SJeff Bonwick 	crtxg = ztest_bt_bonus(db)->bt_crtxg;
1852b24ab676SJeff Bonwick 
1853b24ab676SJeff Bonwick 	if (crtxg == 0 || crtxg > txg) {
1854b24ab676SJeff Bonwick 		dmu_buf_rele(db, FTAG);
1855b24ab676SJeff Bonwick 		ztest_object_unlock(zd, object);
1856b24ab676SJeff Bonwick 		return (ENOENT);
1857b24ab676SJeff Bonwick 	}
1858b24ab676SJeff Bonwick 
1859b24ab676SJeff Bonwick 	dmu_object_info_from_db(db, &doi);
1860b24ab676SJeff Bonwick 	dmu_buf_rele(db, FTAG);
1861b24ab676SJeff Bonwick 	db = NULL;
1862b24ab676SJeff Bonwick 
1863b24ab676SJeff Bonwick 	zgd = umem_zalloc(sizeof (*zgd), UMEM_NOFAIL);
1864b24ab676SJeff Bonwick 	zgd->zgd_zilog = zd->zd_zilog;
1865b24ab676SJeff Bonwick 	zgd->zgd_private = zd;
1866b24ab676SJeff Bonwick 
1867b24ab676SJeff Bonwick 	if (buf != NULL) {	/* immediate write */
1868b24ab676SJeff Bonwick 		zgd->zgd_rl = ztest_range_lock(zd, object, offset, size,
1869b24ab676SJeff Bonwick 		    RL_READER);
1870b24ab676SJeff Bonwick 
1871b24ab676SJeff Bonwick 		error = dmu_read(os, object, offset, size, buf,
1872b24ab676SJeff Bonwick 		    DMU_READ_NO_PREFETCH);
1873b24ab676SJeff Bonwick 		ASSERT(error == 0);
1874b24ab676SJeff Bonwick 	} else {
1875b24ab676SJeff Bonwick 		size = doi.doi_data_block_size;
1876dfe73b3dSJeff Bonwick 		if (ISP2(size)) {
1877b24ab676SJeff Bonwick 			offset = P2ALIGN(offset, size);
1878dfe73b3dSJeff Bonwick 		} else {
1879dfe73b3dSJeff Bonwick 			ASSERT(offset < size);
1880dfe73b3dSJeff Bonwick 			offset = 0;
1881dfe73b3dSJeff Bonwick 		}
1882b24ab676SJeff Bonwick 
1883b24ab676SJeff Bonwick 		zgd->zgd_rl = ztest_range_lock(zd, object, offset, size,
1884b24ab676SJeff Bonwick 		    RL_READER);
1885b24ab676SJeff Bonwick 
188647cb52daSJeff Bonwick 		error = dmu_buf_hold(os, object, offset, zgd, &db,
188747cb52daSJeff Bonwick 		    DMU_READ_NO_PREFETCH);
1888b24ab676SJeff Bonwick 
1889b24ab676SJeff Bonwick 		if (error == 0) {
189080901aeaSGeorge Wilson 			blkptr_t *obp = dmu_buf_get_blkptr(db);
189180901aeaSGeorge Wilson 			if (obp) {
189280901aeaSGeorge Wilson 				ASSERT(BP_IS_HOLE(bp));
189380901aeaSGeorge Wilson 				*bp = *obp;
189480901aeaSGeorge Wilson 			}
189580901aeaSGeorge Wilson 
1896b24ab676SJeff Bonwick 			zgd->zgd_db = db;
1897b24ab676SJeff Bonwick 			zgd->zgd_bp = bp;
1898b24ab676SJeff Bonwick 
1899b24ab676SJeff Bonwick 			ASSERT(db->db_offset == offset);
1900b24ab676SJeff Bonwick 			ASSERT(db->db_size == size);
1901b24ab676SJeff Bonwick 
1902b24ab676SJeff Bonwick 			error = dmu_sync(zio, lr->lr_common.lrc_txg,
1903b24ab676SJeff Bonwick 			    ztest_get_done, zgd);
1904b24ab676SJeff Bonwick 
1905b24ab676SJeff Bonwick 			if (error == 0)
1906b24ab676SJeff Bonwick 				return (0);
1907b24ab676SJeff Bonwick 		}
1908b24ab676SJeff Bonwick 	}
1909b24ab676SJeff Bonwick 
1910b24ab676SJeff Bonwick 	ztest_get_done(zgd, error);
1911b24ab676SJeff Bonwick 
1912b24ab676SJeff Bonwick 	return (error);
1913b24ab676SJeff Bonwick }
1914b24ab676SJeff Bonwick 
1915b24ab676SJeff Bonwick static void *
1916b24ab676SJeff Bonwick ztest_lr_alloc(size_t lrsize, char *name)
1917b24ab676SJeff Bonwick {
1918b24ab676SJeff Bonwick 	char *lr;
1919b24ab676SJeff Bonwick 	size_t namesize = name ? strlen(name) + 1 : 0;
1920b24ab676SJeff Bonwick 
1921b24ab676SJeff Bonwick 	lr = umem_zalloc(lrsize + namesize, UMEM_NOFAIL);
1922b24ab676SJeff Bonwick 
1923b24ab676SJeff Bonwick 	if (name)
1924b24ab676SJeff Bonwick 		bcopy(name, lr + lrsize, namesize);
1925b24ab676SJeff Bonwick 
1926b24ab676SJeff Bonwick 	return (lr);
1927b24ab676SJeff Bonwick }
1928b24ab676SJeff Bonwick 
1929b24ab676SJeff Bonwick void
1930b24ab676SJeff Bonwick ztest_lr_free(void *lr, size_t lrsize, char *name)
1931b24ab676SJeff Bonwick {
1932b24ab676SJeff Bonwick 	size_t namesize = name ? strlen(name) + 1 : 0;
1933b24ab676SJeff Bonwick 
1934b24ab676SJeff Bonwick 	umem_free(lr, lrsize + namesize);
1935b24ab676SJeff Bonwick }
1936b24ab676SJeff Bonwick 
1937b24ab676SJeff Bonwick /*
1938b24ab676SJeff Bonwick  * Lookup a bunch of objects.  Returns the number of objects not found.
1939b24ab676SJeff Bonwick  */
1940b24ab676SJeff Bonwick static int
1941b24ab676SJeff Bonwick ztest_lookup(ztest_ds_t *zd, ztest_od_t *od, int count)
1942b24ab676SJeff Bonwick {
1943b24ab676SJeff Bonwick 	int missing = 0;
1944b24ab676SJeff Bonwick 	int error;
1945b24ab676SJeff Bonwick 
1946b24ab676SJeff Bonwick 	ASSERT(_mutex_held(&zd->zd_dirobj_lock));
1947b24ab676SJeff Bonwick 
1948b24ab676SJeff Bonwick 	for (int i = 0; i < count; i++, od++) {
1949b24ab676SJeff Bonwick 		od->od_object = 0;
1950b24ab676SJeff Bonwick 		error = zap_lookup(zd->zd_os, od->od_dir, od->od_name,
1951b24ab676SJeff Bonwick 		    sizeof (uint64_t), 1, &od->od_object);
1952b24ab676SJeff Bonwick 		if (error) {
1953b24ab676SJeff Bonwick 			ASSERT(error == ENOENT);
1954b24ab676SJeff Bonwick 			ASSERT(od->od_object == 0);
1955b24ab676SJeff Bonwick 			missing++;
1956b24ab676SJeff Bonwick 		} else {
1957b24ab676SJeff Bonwick 			dmu_buf_t *db;
1958b24ab676SJeff Bonwick 			ztest_block_tag_t *bbt;
1959b24ab676SJeff Bonwick 			dmu_object_info_t doi;
1960b24ab676SJeff Bonwick 
1961b24ab676SJeff Bonwick 			ASSERT(od->od_object != 0);
1962b24ab676SJeff Bonwick 			ASSERT(missing == 0);	/* there should be no gaps */
1963b24ab676SJeff Bonwick 
1964b24ab676SJeff Bonwick 			ztest_object_lock(zd, od->od_object, RL_READER);
1965b420f3adSRichard Lowe 			VERIFY3U(0, ==, dmu_bonus_hold(zd->zd_os,
1966b24ab676SJeff Bonwick 			    od->od_object, FTAG, &db));
1967b24ab676SJeff Bonwick 			dmu_object_info_from_db(db, &doi);
1968b24ab676SJeff Bonwick 			bbt = ztest_bt_bonus(db);
1969b24ab676SJeff Bonwick 			ASSERT3U(bbt->bt_magic, ==, BT_MAGIC);
1970b24ab676SJeff Bonwick 			od->od_type = doi.doi_type;
1971b24ab676SJeff Bonwick 			od->od_blocksize = doi.doi_data_block_size;
1972b24ab676SJeff Bonwick 			od->od_gen = bbt->bt_gen;
1973b24ab676SJeff Bonwick 			dmu_buf_rele(db, FTAG);
1974b24ab676SJeff Bonwick 			ztest_object_unlock(zd, od->od_object);
1975b24ab676SJeff Bonwick 		}
1976b24ab676SJeff Bonwick 	}
1977b24ab676SJeff Bonwick 
1978b24ab676SJeff Bonwick 	return (missing);
1979b24ab676SJeff Bonwick }
1980b24ab676SJeff Bonwick 
1981b24ab676SJeff Bonwick static int
1982b24ab676SJeff Bonwick ztest_create(ztest_ds_t *zd, ztest_od_t *od, int count)
1983b24ab676SJeff Bonwick {
1984b24ab676SJeff Bonwick 	int missing = 0;
1985b24ab676SJeff Bonwick 
1986b24ab676SJeff Bonwick 	ASSERT(_mutex_held(&zd->zd_dirobj_lock));
1987b24ab676SJeff Bonwick 
1988b24ab676SJeff Bonwick 	for (int i = 0; i < count; i++, od++) {
1989b24ab676SJeff Bonwick 		if (missing) {
1990b24ab676SJeff Bonwick 			od->od_object = 0;
1991b24ab676SJeff Bonwick 			missing++;
1992b24ab676SJeff Bonwick 			continue;
1993b24ab676SJeff Bonwick 		}
1994b24ab676SJeff Bonwick 
1995b24ab676SJeff Bonwick 		lr_create_t *lr = ztest_lr_alloc(sizeof (*lr), od->od_name);
1996b24ab676SJeff Bonwick 
1997b24ab676SJeff Bonwick 		lr->lr_doid = od->od_dir;
1998b24ab676SJeff Bonwick 		lr->lr_foid = 0;	/* 0 to allocate, > 0 to claim */
1999b24ab676SJeff Bonwick 		lr->lrz_type = od->od_crtype;
2000b24ab676SJeff Bonwick 		lr->lrz_blocksize = od->od_crblocksize;
2001b24ab676SJeff Bonwick 		lr->lrz_ibshift = ztest_random_ibshift();
2002b24ab676SJeff Bonwick 		lr->lrz_bonustype = DMU_OT_UINT64_OTHER;
2003b24ab676SJeff Bonwick 		lr->lrz_bonuslen = dmu_bonus_max();
2004b24ab676SJeff Bonwick 		lr->lr_gen = od->od_crgen;
2005b24ab676SJeff Bonwick 		lr->lr_crtime[0] = time(NULL);
2006b24ab676SJeff Bonwick 
2007b24ab676SJeff Bonwick 		if (ztest_replay_create(zd, lr, B_FALSE) != 0) {
2008b24ab676SJeff Bonwick 			ASSERT(missing == 0);
2009b24ab676SJeff Bonwick 			od->od_object = 0;
2010b24ab676SJeff Bonwick 			missing++;
2011b24ab676SJeff Bonwick 		} else {
2012b24ab676SJeff Bonwick 			od->od_object = lr->lr_foid;
2013b24ab676SJeff Bonwick 			od->od_type = od->od_crtype;
2014b24ab676SJeff Bonwick 			od->od_blocksize = od->od_crblocksize;
2015b24ab676SJeff Bonwick 			od->od_gen = od->od_crgen;
2016b24ab676SJeff Bonwick 			ASSERT(od->od_object != 0);
2017b24ab676SJeff Bonwick 		}
2018b24ab676SJeff Bonwick 
2019b24ab676SJeff Bonwick 		ztest_lr_free(lr, sizeof (*lr), od->od_name);
2020b24ab676SJeff Bonwick 	}
2021b24ab676SJeff Bonwick 
2022b24ab676SJeff Bonwick 	return (missing);
2023b24ab676SJeff Bonwick }
2024b24ab676SJeff Bonwick 
2025b24ab676SJeff Bonwick static int
2026b24ab676SJeff Bonwick ztest_remove(ztest_ds_t *zd, ztest_od_t *od, int count)
2027b24ab676SJeff Bonwick {
2028b24ab676SJeff Bonwick 	int missing = 0;
2029b24ab676SJeff Bonwick 	int error;
2030b24ab676SJeff Bonwick 
2031b24ab676SJeff Bonwick 	ASSERT(_mutex_held(&zd->zd_dirobj_lock));
2032b24ab676SJeff Bonwick 
2033b24ab676SJeff Bonwick 	od += count - 1;
2034b24ab676SJeff Bonwick 
2035b24ab676SJeff Bonwick 	for (int i = count - 1; i >= 0; i--, od--) {
2036b24ab676SJeff Bonwick 		if (missing) {
2037b24ab676SJeff Bonwick 			missing++;
2038b24ab676SJeff Bonwick 			continue;
2039b24ab676SJeff Bonwick 		}
2040b24ab676SJeff Bonwick 
204180901aeaSGeorge Wilson 		/*
204280901aeaSGeorge Wilson 		 * No object was found.
204380901aeaSGeorge Wilson 		 */
2044b24ab676SJeff Bonwick 		if (od->od_object == 0)
2045b24ab676SJeff Bonwick 			continue;
2046b24ab676SJeff Bonwick 
2047b24ab676SJeff Bonwick 		lr_remove_t *lr = ztest_lr_alloc(sizeof (*lr), od->od_name);
2048b24ab676SJeff Bonwick 
2049b24ab676SJeff Bonwick 		lr->lr_doid = od->od_dir;
2050b24ab676SJeff Bonwick 
2051b24ab676SJeff Bonwick 		if ((error = ztest_replay_remove(zd, lr, B_FALSE)) != 0) {
2052b24ab676SJeff Bonwick 			ASSERT3U(error, ==, ENOSPC);
2053b24ab676SJeff Bonwick 			missing++;
2054b24ab676SJeff Bonwick 		} else {
2055b24ab676SJeff Bonwick 			od->od_object = 0;
2056b24ab676SJeff Bonwick 		}
2057b24ab676SJeff Bonwick 		ztest_lr_free(lr, sizeof (*lr), od->od_name);
2058b24ab676SJeff Bonwick 	}
2059b24ab676SJeff Bonwick 
2060b24ab676SJeff Bonwick 	return (missing);
2061b24ab676SJeff Bonwick }
2062b24ab676SJeff Bonwick 
2063b24ab676SJeff Bonwick static int
2064b24ab676SJeff Bonwick ztest_write(ztest_ds_t *zd, uint64_t object, uint64_t offset, uint64_t size,
2065b24ab676SJeff Bonwick     void *data)
2066b24ab676SJeff Bonwick {
2067b24ab676SJeff Bonwick 	lr_write_t *lr;
2068b24ab676SJeff Bonwick 	int error;
2069b24ab676SJeff Bonwick 
2070b24ab676SJeff Bonwick 	lr = ztest_lr_alloc(sizeof (*lr) + size, NULL);
2071b24ab676SJeff Bonwick 
2072b24ab676SJeff Bonwick 	lr->lr_foid = object;
2073b24ab676SJeff Bonwick 	lr->lr_offset = offset;
2074b24ab676SJeff Bonwick 	lr->lr_length = size;
2075b24ab676SJeff Bonwick 	lr->lr_blkoff = 0;
2076b24ab676SJeff Bonwick 	BP_ZERO(&lr->lr_blkptr);
2077b24ab676SJeff Bonwick 
2078b24ab676SJeff Bonwick 	bcopy(data, lr + 1, size);
2079b24ab676SJeff Bonwick 
2080b24ab676SJeff Bonwick 	error = ztest_replay_write(zd, lr, B_FALSE);
2081b24ab676SJeff Bonwick 
2082b24ab676SJeff Bonwick 	ztest_lr_free(lr, sizeof (*lr) + size, NULL);
2083b24ab676SJeff Bonwick 
2084b24ab676SJeff Bonwick 	return (error);
2085b24ab676SJeff Bonwick }
2086b24ab676SJeff Bonwick 
2087b24ab676SJeff Bonwick static int
2088b24ab676SJeff Bonwick ztest_truncate(ztest_ds_t *zd, uint64_t object, uint64_t offset, uint64_t size)
2089b24ab676SJeff Bonwick {
2090b24ab676SJeff Bonwick 	lr_truncate_t *lr;
2091b24ab676SJeff Bonwick 	int error;
2092b24ab676SJeff Bonwick 
2093b24ab676SJeff Bonwick 	lr = ztest_lr_alloc(sizeof (*lr), NULL);
2094b24ab676SJeff Bonwick 
2095b24ab676SJeff Bonwick 	lr->lr_foid = object;
2096b24ab676SJeff Bonwick 	lr->lr_offset = offset;
2097b24ab676SJeff Bonwick 	lr->lr_length = size;
2098b24ab676SJeff Bonwick 
2099b24ab676SJeff Bonwick 	error = ztest_replay_truncate(zd, lr, B_FALSE);
2100b24ab676SJeff Bonwick 
2101b24ab676SJeff Bonwick 	ztest_lr_free(lr, sizeof (*lr), NULL);
2102b24ab676SJeff Bonwick 
2103b24ab676SJeff Bonwick 	return (error);
2104b24ab676SJeff Bonwick }
2105b24ab676SJeff Bonwick 
2106b24ab676SJeff Bonwick static int
2107b24ab676SJeff Bonwick ztest_setattr(ztest_ds_t *zd, uint64_t object)
2108b24ab676SJeff Bonwick {
2109b24ab676SJeff Bonwick 	lr_setattr_t *lr;
2110b24ab676SJeff Bonwick 	int error;
2111b24ab676SJeff Bonwick 
2112b24ab676SJeff Bonwick 	lr = ztest_lr_alloc(sizeof (*lr), NULL);
2113b24ab676SJeff Bonwick 
2114b24ab676SJeff Bonwick 	lr->lr_foid = object;
2115b24ab676SJeff Bonwick 	lr->lr_size = 0;
2116b24ab676SJeff Bonwick 	lr->lr_mode = 0;
2117b24ab676SJeff Bonwick 
2118b24ab676SJeff Bonwick 	error = ztest_replay_setattr(zd, lr, B_FALSE);
2119b24ab676SJeff Bonwick 
2120b24ab676SJeff Bonwick 	ztest_lr_free(lr, sizeof (*lr), NULL);
2121b24ab676SJeff Bonwick 
2122b24ab676SJeff Bonwick 	return (error);
2123b24ab676SJeff Bonwick }
2124b24ab676SJeff Bonwick 
2125b24ab676SJeff Bonwick static void
2126b24ab676SJeff Bonwick ztest_prealloc(ztest_ds_t *zd, uint64_t object, uint64_t offset, uint64_t size)
2127b24ab676SJeff Bonwick {
2128b24ab676SJeff Bonwick 	objset_t *os = zd->zd_os;
2129b24ab676SJeff Bonwick 	dmu_tx_t *tx;
2130b24ab676SJeff Bonwick 	uint64_t txg;
2131b24ab676SJeff Bonwick 	rl_t *rl;
2132b24ab676SJeff Bonwick 
2133b24ab676SJeff Bonwick 	txg_wait_synced(dmu_objset_pool(os), 0);
2134b24ab676SJeff Bonwick 
2135b24ab676SJeff Bonwick 	ztest_object_lock(zd, object, RL_READER);
2136b24ab676SJeff Bonwick 	rl = ztest_range_lock(zd, object, offset, size, RL_WRITER);
2137b24ab676SJeff Bonwick 
2138b24ab676SJeff Bonwick 	tx = dmu_tx_create(os);
2139b24ab676SJeff Bonwick 
2140b24ab676SJeff Bonwick 	dmu_tx_hold_write(tx, object, offset, size);
2141b24ab676SJeff Bonwick 
2142b24ab676SJeff Bonwick 	txg = ztest_tx_assign(tx, TXG_WAIT, FTAG);
2143b24ab676SJeff Bonwick 
2144b24ab676SJeff Bonwick 	if (txg != 0) {
2145b24ab676SJeff Bonwick 		dmu_prealloc(os, object, offset, size, tx);
2146b24ab676SJeff Bonwick 		dmu_tx_commit(tx);
2147b24ab676SJeff Bonwick 		txg_wait_synced(dmu_objset_pool(os), txg);
2148b24ab676SJeff Bonwick 	} else {
2149b24ab676SJeff Bonwick 		(void) dmu_free_long_range(os, object, offset, size);
2150b24ab676SJeff Bonwick 	}
2151b24ab676SJeff Bonwick 
2152b24ab676SJeff Bonwick 	ztest_range_unlock(rl);
2153b24ab676SJeff Bonwick 	ztest_object_unlock(zd, object);
2154b24ab676SJeff Bonwick }
2155b24ab676SJeff Bonwick 
2156b24ab676SJeff Bonwick static void
2157b24ab676SJeff Bonwick ztest_io(ztest_ds_t *zd, uint64_t object, uint64_t offset)
2158b24ab676SJeff Bonwick {
215980901aeaSGeorge Wilson 	int err;
2160b24ab676SJeff Bonwick 	ztest_block_tag_t wbt;
2161b24ab676SJeff Bonwick 	dmu_object_info_t doi;
2162b24ab676SJeff Bonwick 	enum ztest_io_type io_type;
2163b24ab676SJeff Bonwick 	uint64_t blocksize;
2164b24ab676SJeff Bonwick 	void *data;
2165b24ab676SJeff Bonwick 
2166b24ab676SJeff Bonwick 	VERIFY(dmu_object_info(zd->zd_os, object, &doi) == 0);
2167b24ab676SJeff Bonwick 	blocksize = doi.doi_data_block_size;
2168b24ab676SJeff Bonwick 	data = umem_alloc(blocksize, UMEM_NOFAIL);
2169b24ab676SJeff Bonwick 
2170b24ab676SJeff Bonwick 	/*
2171b24ab676SJeff Bonwick 	 * Pick an i/o type at random, biased toward writing block tags.
2172b24ab676SJeff Bonwick 	 */
2173b24ab676SJeff Bonwick 	io_type = ztest_random(ZTEST_IO_TYPES);
2174b24ab676SJeff Bonwick 	if (ztest_random(2) == 0)
2175b24ab676SJeff Bonwick 		io_type = ZTEST_IO_WRITE_TAG;
2176b24ab676SJeff Bonwick 
2177c9ba2a43SEric Schrock 	(void) rw_rdlock(&zd->zd_zilog_lock);
2178c9ba2a43SEric Schrock 
2179b24ab676SJeff Bonwick 	switch (io_type) {
2180b24ab676SJeff Bonwick 
2181b24ab676SJeff Bonwick 	case ZTEST_IO_WRITE_TAG:
2182b24ab676SJeff Bonwick 		ztest_bt_generate(&wbt, zd->zd_os, object, offset, 0, 0, 0);
2183b24ab676SJeff Bonwick 		(void) ztest_write(zd, object, offset, sizeof (wbt), &wbt);
2184b24ab676SJeff Bonwick 		break;
2185b24ab676SJeff Bonwick 
2186b24ab676SJeff Bonwick 	case ZTEST_IO_WRITE_PATTERN:
2187b24ab676SJeff Bonwick 		(void) memset(data, 'a' + (object + offset) % 5, blocksize);
2188b24ab676SJeff Bonwick 		if (ztest_random(2) == 0) {
2189b24ab676SJeff Bonwick 			/*
2190b24ab676SJeff Bonwick 			 * Induce fletcher2 collisions to ensure that
2191b24ab676SJeff Bonwick 			 * zio_ddt_collision() detects and resolves them
2192b24ab676SJeff Bonwick 			 * when using fletcher2-verify for deduplication.
2193b24ab676SJeff Bonwick 			 */
2194b24ab676SJeff Bonwick 			((uint64_t *)data)[0] ^= 1ULL << 63;
2195b24ab676SJeff Bonwick 			((uint64_t *)data)[4] ^= 1ULL << 63;
2196b24ab676SJeff Bonwick 		}
2197b24ab676SJeff Bonwick 		(void) ztest_write(zd, object, offset, blocksize, data);
2198b24ab676SJeff Bonwick 		break;
2199b24ab676SJeff Bonwick 
2200b24ab676SJeff Bonwick 	case ZTEST_IO_WRITE_ZEROES:
2201b24ab676SJeff Bonwick 		bzero(data, blocksize);
2202b24ab676SJeff Bonwick 		(void) ztest_write(zd, object, offset, blocksize, data);
2203b24ab676SJeff Bonwick 		break;
2204b24ab676SJeff Bonwick 
2205b24ab676SJeff Bonwick 	case ZTEST_IO_TRUNCATE:
2206b24ab676SJeff Bonwick 		(void) ztest_truncate(zd, object, offset, blocksize);
2207b24ab676SJeff Bonwick 		break;
2208b24ab676SJeff Bonwick 
2209b24ab676SJeff Bonwick 	case ZTEST_IO_SETATTR:
2210b24ab676SJeff Bonwick 		(void) ztest_setattr(zd, object);
2211b24ab676SJeff Bonwick 		break;
221280901aeaSGeorge Wilson 
221380901aeaSGeorge Wilson 	case ZTEST_IO_REWRITE:
221480901aeaSGeorge Wilson 		(void) rw_rdlock(&ztest_name_lock);
221580901aeaSGeorge Wilson 		err = ztest_dsl_prop_set_uint64(zd->zd_name,
221680901aeaSGeorge Wilson 		    ZFS_PROP_CHECKSUM, spa_dedup_checksum(ztest_spa),
221780901aeaSGeorge Wilson 		    B_FALSE);
221880901aeaSGeorge Wilson 		VERIFY(err == 0 || err == ENOSPC);
221980901aeaSGeorge Wilson 		err = ztest_dsl_prop_set_uint64(zd->zd_name,
222080901aeaSGeorge Wilson 		    ZFS_PROP_COMPRESSION,
222180901aeaSGeorge Wilson 		    ztest_random_dsl_prop(ZFS_PROP_COMPRESSION),
222280901aeaSGeorge Wilson 		    B_FALSE);
222380901aeaSGeorge Wilson 		VERIFY(err == 0 || err == ENOSPC);
222480901aeaSGeorge Wilson 		(void) rw_unlock(&ztest_name_lock);
222580901aeaSGeorge Wilson 
222680901aeaSGeorge Wilson 		VERIFY0(dmu_read(zd->zd_os, object, offset, blocksize, data,
222780901aeaSGeorge Wilson 		    DMU_READ_NO_PREFETCH));
222880901aeaSGeorge Wilson 
222980901aeaSGeorge Wilson 		(void) ztest_write(zd, object, offset, blocksize, data);
223080901aeaSGeorge Wilson 		break;
2231b24ab676SJeff Bonwick 	}
2232b24ab676SJeff Bonwick 
2233c9ba2a43SEric Schrock 	(void) rw_unlock(&zd->zd_zilog_lock);
2234c9ba2a43SEric Schrock 
2235b24ab676SJeff Bonwick 	umem_free(data, blocksize);
2236b24ab676SJeff Bonwick }
2237b24ab676SJeff Bonwick 
2238b24ab676SJeff Bonwick /*
2239b24ab676SJeff Bonwick  * Initialize an object description template.
2240b24ab676SJeff Bonwick  */
2241b24ab676SJeff Bonwick static void
2242b24ab676SJeff Bonwick ztest_od_init(ztest_od_t *od, uint64_t id, char *tag, uint64_t index,
2243b24ab676SJeff Bonwick     dmu_object_type_t type, uint64_t blocksize, uint64_t gen)
2244b24ab676SJeff Bonwick {
2245b24ab676SJeff Bonwick 	od->od_dir = ZTEST_DIROBJ;
2246b24ab676SJeff Bonwick 	od->od_object = 0;
2247b24ab676SJeff Bonwick 
2248b24ab676SJeff Bonwick 	od->od_crtype = type;
2249b24ab676SJeff Bonwick 	od->od_crblocksize = blocksize ? blocksize : ztest_random_blocksize();
2250b24ab676SJeff Bonwick 	od->od_crgen = gen;
2251b24ab676SJeff Bonwick 
2252b24ab676SJeff Bonwick 	od->od_type = DMU_OT_NONE;
2253b24ab676SJeff Bonwick 	od->od_blocksize = 0;
2254b24ab676SJeff Bonwick 	od->od_gen = 0;
2255b24ab676SJeff Bonwick 
2256b24ab676SJeff Bonwick 	(void) snprintf(od->od_name, sizeof (od->od_name), "%s(%lld)[%llu]",
2257b24ab676SJeff Bonwick 	    tag, (int64_t)id, index);
2258b24ab676SJeff Bonwick }
2259b24ab676SJeff Bonwick 
2260b24ab676SJeff Bonwick /*
2261b24ab676SJeff Bonwick  * Lookup or create the objects for a test using the od template.
2262b24ab676SJeff Bonwick  * If the objects do not all exist, or if 'remove' is specified,
2263b24ab676SJeff Bonwick  * remove any existing objects and create new ones.  Otherwise,
2264b24ab676SJeff Bonwick  * use the existing objects.
2265b24ab676SJeff Bonwick  */
2266b24ab676SJeff Bonwick static int
2267b24ab676SJeff Bonwick ztest_object_init(ztest_ds_t *zd, ztest_od_t *od, size_t size, boolean_t remove)
2268b24ab676SJeff Bonwick {
2269b24ab676SJeff Bonwick 	int count = size / sizeof (*od);
2270b24ab676SJeff Bonwick 	int rv = 0;
2271b24ab676SJeff Bonwick 
2272b24ab676SJeff Bonwick 	VERIFY(mutex_lock(&zd->zd_dirobj_lock) == 0);
2273b24ab676SJeff Bonwick 	if ((ztest_lookup(zd, od, count) != 0 || remove) &&
2274b24ab676SJeff Bonwick 	    (ztest_remove(zd, od, count) != 0 ||
2275b24ab676SJeff Bonwick 	    ztest_create(zd, od, count) != 0))
2276b24ab676SJeff Bonwick 		rv = -1;
2277b24ab676SJeff Bonwick 	zd->zd_od = od;
2278b24ab676SJeff Bonwick 	VERIFY(mutex_unlock(&zd->zd_dirobj_lock) == 0);
2279b24ab676SJeff Bonwick 
2280b24ab676SJeff Bonwick 	return (rv);
2281b24ab676SJeff Bonwick }
2282b24ab676SJeff Bonwick 
2283b24ab676SJeff Bonwick /* ARGSUSED */
2284b24ab676SJeff Bonwick void
2285b24ab676SJeff Bonwick ztest_zil_commit(ztest_ds_t *zd, uint64_t id)
2286b24ab676SJeff Bonwick {
2287b24ab676SJeff Bonwick 	zilog_t *zilog = zd->zd_zilog;
2288b24ab676SJeff Bonwick 
2289c9ba2a43SEric Schrock 	(void) rw_rdlock(&zd->zd_zilog_lock);
2290c9ba2a43SEric Schrock 
22915002558fSNeil Perrin 	zil_commit(zilog, ztest_random(ZTEST_OBJECTS));
2292b24ab676SJeff Bonwick 
2293b24ab676SJeff Bonwick 	/*
2294b24ab676SJeff Bonwick 	 * Remember the committed values in zd, which is in parent/child
2295b24ab676SJeff Bonwick 	 * shared memory.  If we die, the next iteration of ztest_run()
2296b24ab676SJeff Bonwick 	 * will verify that the log really does contain this record.
2297b24ab676SJeff Bonwick 	 */
2298b24ab676SJeff Bonwick 	mutex_enter(&zilog->zl_lock);
2299420dfc95SChris Siden 	ASSERT(zd->zd_shared != NULL);
2300420dfc95SChris Siden 	ASSERT3U(zd->zd_shared->zd_seq, <=, zilog->zl_commit_lr_seq);
2301420dfc95SChris Siden 	zd->zd_shared->zd_seq = zilog->zl_commit_lr_seq;
2302b24ab676SJeff Bonwick 	mutex_exit(&zilog->zl_lock);
2303c9ba2a43SEric Schrock 
2304c9ba2a43SEric Schrock 	(void) rw_unlock(&zd->zd_zilog_lock);
2305c9ba2a43SEric Schrock }
2306c9ba2a43SEric Schrock 
2307c9ba2a43SEric Schrock /*
2308c9ba2a43SEric Schrock  * This function is designed to simulate the operations that occur during a
2309c9ba2a43SEric Schrock  * mount/unmount operation.  We hold the dataset across these operations in an
2310c9ba2a43SEric Schrock  * attempt to expose any implicit assumptions about ZIL management.
2311c9ba2a43SEric Schrock  */
2312c9ba2a43SEric Schrock /* ARGSUSED */
2313c9ba2a43SEric Schrock void
2314c9ba2a43SEric Schrock ztest_zil_remount(ztest_ds_t *zd, uint64_t id)
2315c9ba2a43SEric Schrock {
2316c9ba2a43SEric Schrock 	objset_t *os = zd->zd_os;
2317c9ba2a43SEric Schrock 
231880901aeaSGeorge Wilson 	/*
231980901aeaSGeorge Wilson 	 * We grab the zd_dirobj_lock to ensure that no other thread is
232080901aeaSGeorge Wilson 	 * updating the zil (i.e. adding in-memory log records) and the
232180901aeaSGeorge Wilson 	 * zd_zilog_lock to block any I/O.
232280901aeaSGeorge Wilson 	 */
232380901aeaSGeorge Wilson 	VERIFY0(mutex_lock(&zd->zd_dirobj_lock));
2324c9ba2a43SEric Schrock 	(void) rw_wrlock(&zd->zd_zilog_lock);
2325c9ba2a43SEric Schrock 
2326c9ba2a43SEric Schrock 	/* zfsvfs_teardown() */
2327c9ba2a43SEric Schrock 	zil_close(zd->zd_zilog);
2328c9ba2a43SEric Schrock 
2329c9ba2a43SEric Schrock 	/* zfsvfs_setup() */
2330c9ba2a43SEric Schrock 	VERIFY(zil_open(os, ztest_get_data) == zd->zd_zilog);
2331c9ba2a43SEric Schrock 	zil_replay(os, zd, ztest_replay_vector);
2332c9ba2a43SEric Schrock 
2333c9ba2a43SEric Schrock 	(void) rw_unlock(&zd->zd_zilog_lock);
2334ce636f8bSMatthew Ahrens 	VERIFY(mutex_unlock(&zd->zd_dirobj_lock) == 0);
2335b24ab676SJeff Bonwick }
2336b24ab676SJeff Bonwick 
2337b24ab676SJeff Bonwick /*
2338b24ab676SJeff Bonwick  * Verify that we can't destroy an active pool, create an existing pool,
2339b24ab676SJeff Bonwick  * or create a pool with a bad vdev spec.
2340b24ab676SJeff Bonwick  */
2341b24ab676SJeff Bonwick /* ARGSUSED */
2342b24ab676SJeff Bonwick void
2343b24ab676SJeff Bonwick ztest_spa_create_destroy(ztest_ds_t *zd, uint64_t id)
2344b24ab676SJeff Bonwick {
2345420dfc95SChris Siden 	ztest_shared_opts_t *zo = &ztest_opts;
2346b24ab676SJeff Bonwick 	spa_t *spa;
2347b24ab676SJeff Bonwick 	nvlist_t *nvroot;
2348b24ab676SJeff Bonwick 
2349b24ab676SJeff Bonwick 	/*
2350b24ab676SJeff Bonwick 	 * Attempt to create using a bad file.
2351b24ab676SJeff Bonwick 	 */
235225345e46SGeorge Wilson 	nvroot = make_vdev_root("/dev/bogus", NULL, NULL, 0, 0, 0, 0, 0, 1);
2353b24ab676SJeff Bonwick 	VERIFY3U(ENOENT, ==,
23544445fffbSMatthew Ahrens 	    spa_create("ztest_bad_file", nvroot, NULL, NULL));
2355b24ab676SJeff Bonwick 	nvlist_free(nvroot);
2356b24ab676SJeff Bonwick 
2357b24ab676SJeff Bonwick 	/*
2358b24ab676SJeff Bonwick 	 * Attempt to create using a bad mirror.
2359b24ab676SJeff Bonwick 	 */
236025345e46SGeorge Wilson 	nvroot = make_vdev_root("/dev/bogus", NULL, NULL, 0, 0, 0, 0, 2, 1);
2361b24ab676SJeff Bonwick 	VERIFY3U(ENOENT, ==,
23624445fffbSMatthew Ahrens 	    spa_create("ztest_bad_mirror", nvroot, NULL, NULL));
2363b24ab676SJeff Bonwick 	nvlist_free(nvroot);
2364b24ab676SJeff Bonwick 
2365b24ab676SJeff Bonwick 	/*
2366b24ab676SJeff Bonwick 	 * Attempt to create an existing pool.  It shouldn't matter
2367b24ab676SJeff Bonwick 	 * what's in the nvroot; we should fail with EEXIST.
2368b24ab676SJeff Bonwick 	 */
2369420dfc95SChris Siden 	(void) rw_rdlock(&ztest_name_lock);
237025345e46SGeorge Wilson 	nvroot = make_vdev_root("/dev/bogus", NULL, NULL, 0, 0, 0, 0, 0, 1);
23714445fffbSMatthew Ahrens 	VERIFY3U(EEXIST, ==, spa_create(zo->zo_pool, nvroot, NULL, NULL));
2372b24ab676SJeff Bonwick 	nvlist_free(nvroot);
2373b420f3adSRichard Lowe 	VERIFY3U(0, ==, spa_open(zo->zo_pool, &spa, FTAG));
2374420dfc95SChris Siden 	VERIFY3U(EBUSY, ==, spa_destroy(zo->zo_pool));
2375b24ab676SJeff Bonwick 	spa_close(spa, FTAG);
2376b24ab676SJeff Bonwick 
2377420dfc95SChris Siden 	(void) rw_unlock(&ztest_name_lock);
2378b24ab676SJeff Bonwick }
2379b24ab676SJeff Bonwick 
238025345e46SGeorge Wilson /* ARGSUSED */
238125345e46SGeorge Wilson void
238225345e46SGeorge Wilson ztest_spa_upgrade(ztest_ds_t *zd, uint64_t id)
238325345e46SGeorge Wilson {
238425345e46SGeorge Wilson 	spa_t *spa;
238525345e46SGeorge Wilson 	uint64_t initial_version = SPA_VERSION_INITIAL;
238625345e46SGeorge Wilson 	uint64_t version, newversion;
238725345e46SGeorge Wilson 	nvlist_t *nvroot, *props;
238825345e46SGeorge Wilson 	char *name;
238925345e46SGeorge Wilson 
239025345e46SGeorge Wilson 	VERIFY0(mutex_lock(&ztest_vdev_lock));
239125345e46SGeorge Wilson 	name = kmem_asprintf("%s_upgrade", ztest_opts.zo_pool);
239225345e46SGeorge Wilson 
239325345e46SGeorge Wilson 	/*
239425345e46SGeorge Wilson 	 * Clean up from previous runs.
239525345e46SGeorge Wilson 	 */
239625345e46SGeorge Wilson 	(void) spa_destroy(name);
239725345e46SGeorge Wilson 
239825345e46SGeorge Wilson 	nvroot = make_vdev_root(NULL, NULL, name, ztest_opts.zo_vdev_size, 0,
239925345e46SGeorge Wilson 	    0, ztest_opts.zo_raidz, ztest_opts.zo_mirrors, 1);
240025345e46SGeorge Wilson 
240125345e46SGeorge Wilson 	/*
240225345e46SGeorge Wilson 	 * If we're configuring a RAIDZ device then make sure that the
240325345e46SGeorge Wilson 	 * the initial version is capable of supporting that feature.
240425345e46SGeorge Wilson 	 */
240525345e46SGeorge Wilson 	switch (ztest_opts.zo_raidz_parity) {
240625345e46SGeorge Wilson 	case 0:
240725345e46SGeorge Wilson 	case 1:
240825345e46SGeorge Wilson 		initial_version = SPA_VERSION_INITIAL;
240925345e46SGeorge Wilson 		break;
241025345e46SGeorge Wilson 	case 2:
241125345e46SGeorge Wilson 		initial_version = SPA_VERSION_RAIDZ2;
241225345e46SGeorge Wilson 		break;
241325345e46SGeorge Wilson 	case 3:
241425345e46SGeorge Wilson 		initial_version = SPA_VERSION_RAIDZ3;
241525345e46SGeorge Wilson 		break;
241625345e46SGeorge Wilson 	}
241725345e46SGeorge Wilson 
241825345e46SGeorge Wilson 	/*
241925345e46SGeorge Wilson 	 * Create a pool with a spa version that can be upgraded. Pick
242025345e46SGeorge Wilson 	 * a value between initial_version and SPA_VERSION_BEFORE_FEATURES.
242125345e46SGeorge Wilson 	 */
242225345e46SGeorge Wilson 	do {
242325345e46SGeorge Wilson 		version = ztest_random_spa_version(initial_version);
242425345e46SGeorge Wilson 	} while (version > SPA_VERSION_BEFORE_FEATURES);
242525345e46SGeorge Wilson 
242625345e46SGeorge Wilson 	props = fnvlist_alloc();
242725345e46SGeorge Wilson 	fnvlist_add_uint64(props,
242825345e46SGeorge Wilson 	    zpool_prop_to_name(ZPOOL_PROP_VERSION), version);
242925345e46SGeorge Wilson 	VERIFY0(spa_create(name, nvroot, props, NULL));
243025345e46SGeorge Wilson 	fnvlist_free(nvroot);
243125345e46SGeorge Wilson 	fnvlist_free(props);
243225345e46SGeorge Wilson 
243325345e46SGeorge Wilson 	VERIFY0(spa_open(name, &spa, FTAG));
243425345e46SGeorge Wilson 	VERIFY3U(spa_version(spa), ==, version);
243525345e46SGeorge Wilson 	newversion = ztest_random_spa_version(version + 1);
243625345e46SGeorge Wilson 
243725345e46SGeorge Wilson 	if (ztest_opts.zo_verbose >= 4) {
243825345e46SGeorge Wilson 		(void) printf("upgrading spa version from %llu to %llu\n",
243925345e46SGeorge Wilson 		    (u_longlong_t)version, (u_longlong_t)newversion);
244025345e46SGeorge Wilson 	}
244125345e46SGeorge Wilson 
244225345e46SGeorge Wilson 	spa_upgrade(spa, newversion);
244325345e46SGeorge Wilson 	VERIFY3U(spa_version(spa), >, version);
244425345e46SGeorge Wilson 	VERIFY3U(spa_version(spa), ==, fnvlist_lookup_uint64(spa->spa_config,
244525345e46SGeorge Wilson 	    zpool_prop_to_name(ZPOOL_PROP_VERSION)));
244625345e46SGeorge Wilson 	spa_close(spa, FTAG);
244725345e46SGeorge Wilson 
244825345e46SGeorge Wilson 	strfree(name);
244925345e46SGeorge Wilson 	VERIFY0(mutex_unlock(&ztest_vdev_lock));
245025345e46SGeorge Wilson }
245125345e46SGeorge Wilson 
2452b24ab676SJeff Bonwick static vdev_t *
2453b24ab676SJeff Bonwick vdev_lookup_by_path(vdev_t *vd, const char *path)
2454b24ab676SJeff Bonwick {
2455b24ab676SJeff Bonwick 	vdev_t *mvd;
2456b24ab676SJeff Bonwick 
2457b24ab676SJeff Bonwick 	if (vd->vdev_path != NULL && strcmp(path, vd->vdev_path) == 0)
2458b24ab676SJeff Bonwick 		return (vd);
2459b24ab676SJeff Bonwick 
2460b24ab676SJeff Bonwick 	for (int c = 0; c < vd->vdev_children; c++)
2461b24ab676SJeff Bonwick 		if ((mvd = vdev_lookup_by_path(vd->vdev_child[c], path)) !=
2462b24ab676SJeff Bonwick 		    NULL)
2463b24ab676SJeff Bonwick 			return (mvd);
2464b24ab676SJeff Bonwick 
2465b24ab676SJeff Bonwick 	return (NULL);
2466b24ab676SJeff Bonwick }
2467b24ab676SJeff Bonwick 
2468b24ab676SJeff Bonwick /*
2469b24ab676SJeff Bonwick  * Find the first available hole which can be used as a top-level.
2470b24ab676SJeff Bonwick  */
2471b24ab676SJeff Bonwick int
2472b24ab676SJeff Bonwick find_vdev_hole(spa_t *spa)
2473b24ab676SJeff Bonwick {
2474b24ab676SJeff Bonwick 	vdev_t *rvd = spa->spa_root_vdev;
2475b24ab676SJeff Bonwick 	int c;
2476b24ab676SJeff Bonwick 
2477b24ab676SJeff Bonwick 	ASSERT(spa_config_held(spa, SCL_VDEV, RW_READER) == SCL_VDEV);
2478b24ab676SJeff Bonwick 
2479b24ab676SJeff Bonwick 	for (c = 0; c < rvd->vdev_children; c++) {
2480b24ab676SJeff Bonwick 		vdev_t *cvd = rvd->vdev_child[c];
2481b24ab676SJeff Bonwick 
2482b24ab676SJeff Bonwick 		if (cvd->vdev_ishole)
2483b24ab676SJeff Bonwick 			break;
2484b24ab676SJeff Bonwick 	}
2485b24ab676SJeff Bonwick 	return (c);
2486b24ab676SJeff Bonwick }
2487b24ab676SJeff Bonwick 
2488b24ab676SJeff Bonwick /*
2489b24ab676SJeff Bonwick  * Verify that vdev_add() works as expected.
2490b24ab676SJeff Bonwick  */
2491b24ab676SJeff Bonwick /* ARGSUSED */
2492b24ab676SJeff Bonwick void
2493b24ab676SJeff Bonwick ztest_vdev_add_remove(ztest_ds_t *zd, uint64_t id)
2494b24ab676SJeff Bonwick {
2495b24ab676SJeff Bonwick 	ztest_shared_t *zs = ztest_shared;
2496420dfc95SChris Siden 	spa_t *spa = ztest_spa;
24971195e687SMark J Musante 	uint64_t leaves;
2498b24ab676SJeff Bonwick 	uint64_t guid;
2499b24ab676SJeff Bonwick 	nvlist_t *nvroot;
2500b24ab676SJeff Bonwick 	int error;
2501b24ab676SJeff Bonwick 
2502420dfc95SChris Siden 	VERIFY(mutex_lock(&ztest_vdev_lock) == 0);
25033b2aab18SMatthew Ahrens 	leaves = MAX(zs->zs_mirrors + zs->zs_splits, 1) * ztest_opts.zo_raidz;
2504b24ab676SJeff Bonwick 
2505b24ab676SJeff Bonwick 	spa_config_enter(spa, SCL_VDEV, FTAG, RW_READER);
2506b24ab676SJeff Bonwick 
2507b24ab676SJeff Bonwick 	ztest_shared->zs_vdev_next_leaf = find_vdev_hole(spa) * leaves;
2508b24ab676SJeff Bonwick 
2509b24ab676SJeff Bonwick 	/*
2510b24ab676SJeff Bonwick 	 * If we have slogs then remove them 1/4 of the time.
2511b24ab676SJeff Bonwick 	 */
251288ecc943SGeorge Wilson 	if (spa_has_slogs(spa) && ztest_random(4) == 0) {
251388ecc943SGeorge Wilson 		/*
251488ecc943SGeorge Wilson 		 * Grab the guid from the head of the log class rotor.
251588ecc943SGeorge Wilson 		 */
2516b24ab676SJeff Bonwick 		guid = spa_log_class(spa)->mc_rotor->mg_vd->vdev_guid;
25178654d025Sperrin 
251888ecc943SGeorge Wilson 		spa_config_exit(spa, SCL_VDEV, FTAG);
2519fa9e4066Sahrens 
252088ecc943SGeorge Wilson 		/*
252188ecc943SGeorge Wilson 		 * We have to grab the zs_name_lock as writer to
252288ecc943SGeorge Wilson 		 * prevent a race between removing a slog (dmu_objset_find)
252388ecc943SGeorge Wilson 		 * and destroying a dataset. Removing the slog will
252488ecc943SGeorge Wilson 		 * grab a reference on the dataset which may cause
252588ecc943SGeorge Wilson 		 * dmu_objset_destroy() to fail with EBUSY thus
252688ecc943SGeorge Wilson 		 * leaving the dataset in an inconsistent state.
252788ecc943SGeorge Wilson 		 */
2528420dfc95SChris Siden 		VERIFY(rw_wrlock(&ztest_name_lock) == 0);
252988ecc943SGeorge Wilson 		error = spa_vdev_remove(spa, guid, B_FALSE);
2530420dfc95SChris Siden 		VERIFY(rw_unlock(&ztest_name_lock) == 0);
2531fa9e4066Sahrens 
253288ecc943SGeorge Wilson 		if (error && error != EEXIST)
253388ecc943SGeorge Wilson 			fatal(0, "spa_vdev_remove() = %d", error);
253488ecc943SGeorge Wilson 	} else {
253588ecc943SGeorge Wilson 		spa_config_exit(spa, SCL_VDEV, FTAG);
253688ecc943SGeorge Wilson 
253788ecc943SGeorge Wilson 		/*
253888ecc943SGeorge Wilson 		 * Make 1/4 of the devices be log devices.
253988ecc943SGeorge Wilson 		 */
254025345e46SGeorge Wilson 		nvroot = make_vdev_root(NULL, NULL, NULL,
2541420dfc95SChris Siden 		    ztest_opts.zo_vdev_size, 0,
2542420dfc95SChris Siden 		    ztest_random(4) == 0, ztest_opts.zo_raidz,
2543420dfc95SChris Siden 		    zs->zs_mirrors, 1);
254488ecc943SGeorge Wilson 
254588ecc943SGeorge Wilson 		error = spa_vdev_add(spa, nvroot);
254688ecc943SGeorge Wilson 		nvlist_free(nvroot);
254788ecc943SGeorge Wilson 
254888ecc943SGeorge Wilson 		if (error == ENOSPC)
254988ecc943SGeorge Wilson 			ztest_record_enospc("spa_vdev_add");
255088ecc943SGeorge Wilson 		else if (error != 0)
255188ecc943SGeorge Wilson 			fatal(0, "spa_vdev_add() = %d", error);
255288ecc943SGeorge Wilson 	}
255388ecc943SGeorge Wilson 
2554420dfc95SChris Siden 	VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
2555e14bb325SJeff Bonwick }
2556fa9e4066Sahrens 
2557e14bb325SJeff Bonwick /*
2558e14bb325SJeff Bonwick  * Verify that adding/removing aux devices (l2arc, hot spare) works as expected.
2559e14bb325SJeff Bonwick  */
2560b24ab676SJeff Bonwick /* ARGSUSED */
2561e14bb325SJeff Bonwick void
2562b24ab676SJeff Bonwick ztest_vdev_aux_add_remove(ztest_ds_t *zd, uint64_t id)
2563e14bb325SJeff Bonwick {
2564b24ab676SJeff Bonwick 	ztest_shared_t *zs = ztest_shared;
2565420dfc95SChris Siden 	spa_t *spa = ztest_spa;
256631157203SJeff Bonwick 	vdev_t *rvd = spa->spa_root_vdev;
2567e14bb325SJeff Bonwick 	spa_aux_vdev_t *sav;
2568e14bb325SJeff Bonwick 	char *aux;
2569e14bb325SJeff Bonwick 	uint64_t guid = 0;
2570e14bb325SJeff Bonwick 	int error;
2571e14bb325SJeff Bonwick 
257231157203SJeff Bonwick 	if (ztest_random(2) == 0) {
2573e14bb325SJeff Bonwick 		sav = &spa->spa_spares;
2574e14bb325SJeff Bonwick 		aux = ZPOOL_CONFIG_SPARES;
2575e14bb325SJeff Bonwick 	} else {
2576e14bb325SJeff Bonwick 		sav = &spa->spa_l2cache;
2577e14bb325SJeff Bonwick 		aux = ZPOOL_CONFIG_L2CACHE;
2578e14bb325SJeff Bonwick 	}
2579e14bb325SJeff Bonwick 
2580420dfc95SChris Siden 	VERIFY(mutex_lock(&ztest_vdev_lock) == 0);
2581e14bb325SJeff Bonwick 
2582e14bb325SJeff Bonwick 	spa_config_enter(spa, SCL_VDEV, FTAG, RW_READER);
2583e14bb325SJeff Bonwick 
2584e14bb325SJeff Bonwick 	if (sav->sav_count != 0 && ztest_random(4) == 0) {
2585e14bb325SJeff Bonwick 		/*
2586e14bb325SJeff Bonwick 		 * Pick a random device to remove.
2587e14bb325SJeff Bonwick 		 */
2588e14bb325SJeff Bonwick 		guid = sav->sav_vdevs[ztest_random(sav->sav_count)]->vdev_guid;
2589e14bb325SJeff Bonwick 	} else {
2590e14bb325SJeff Bonwick 		/*
2591e14bb325SJeff Bonwick 		 * Find an unused device we can add.
2592e14bb325SJeff Bonwick 		 */
2593b24ab676SJeff Bonwick 		zs->zs_vdev_aux = 0;
2594e14bb325SJeff Bonwick 		for (;;) {
2595e14bb325SJeff Bonwick 			char path[MAXPATHLEN];
2596e14bb325SJeff Bonwick 			int c;
2597420dfc95SChris Siden 			(void) snprintf(path, sizeof (path), ztest_aux_template,
2598420dfc95SChris Siden 			    ztest_opts.zo_dir, ztest_opts.zo_pool, aux,
2599420dfc95SChris Siden 			    zs->zs_vdev_aux);
2600e14bb325SJeff Bonwick 			for (c = 0; c < sav->sav_count; c++)
2601e14bb325SJeff Bonwick 				if (strcmp(sav->sav_vdevs[c]->vdev_path,
2602e14bb325SJeff Bonwick 				    path) == 0)
2603e14bb325SJeff Bonwick 					break;
260431157203SJeff Bonwick 			if (c == sav->sav_count &&
260531157203SJeff Bonwick 			    vdev_lookup_by_path(rvd, path) == NULL)
2606e14bb325SJeff Bonwick 				break;
2607b24ab676SJeff Bonwick 			zs->zs_vdev_aux++;
2608e14bb325SJeff Bonwick 		}
2609e14bb325SJeff Bonwick 	}
2610e14bb325SJeff Bonwick 
2611e14bb325SJeff Bonwick 	spa_config_exit(spa, SCL_VDEV, FTAG);
2612e14bb325SJeff Bonwick 
2613e14bb325SJeff Bonwick 	if (guid == 0) {
2614e14bb325SJeff Bonwick 		/*
2615e14bb325SJeff Bonwick 		 * Add a new device.
2616e14bb325SJeff Bonwick 		 */
261725345e46SGeorge Wilson 		nvlist_t *nvroot = make_vdev_root(NULL, aux, NULL,
2618420dfc95SChris Siden 		    (ztest_opts.zo_vdev_size * 5) / 4, 0, 0, 0, 0, 1);
2619e14bb325SJeff Bonwick 		error = spa_vdev_add(spa, nvroot);
2620e14bb325SJeff Bonwick 		if (error != 0)
2621e14bb325SJeff Bonwick 			fatal(0, "spa_vdev_add(%p) = %d", nvroot, error);
2622e14bb325SJeff Bonwick 		nvlist_free(nvroot);
2623e14bb325SJeff Bonwick 	} else {
2624e14bb325SJeff Bonwick 		/*
2625e14bb325SJeff Bonwick 		 * Remove an existing device.  Sometimes, dirty its
2626e14bb325SJeff Bonwick 		 * vdev state first to make sure we handle removal
2627e14bb325SJeff Bonwick 		 * of devices that have pending state changes.
2628e14bb325SJeff Bonwick 		 */
2629e14bb325SJeff Bonwick 		if (ztest_random(2) == 0)
2630573ca77eSGeorge Wilson 			(void) vdev_online(spa, guid, 0, NULL);
2631e14bb325SJeff Bonwick 
2632e14bb325SJeff Bonwick 		error = spa_vdev_remove(spa, guid, B_FALSE);
2633e14bb325SJeff Bonwick 		if (error != 0 && error != EBUSY)
2634e14bb325SJeff Bonwick 			fatal(0, "spa_vdev_remove(%llu) = %d", guid, error);
2635e14bb325SJeff Bonwick 	}
2636e14bb325SJeff Bonwick 
2637420dfc95SChris Siden 	VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
2638fa9e4066Sahrens }
2639fa9e4066Sahrens 
26401195e687SMark J Musante /*
26411195e687SMark J Musante  * split a pool if it has mirror tlvdevs
26421195e687SMark J Musante  */
26431195e687SMark J Musante /* ARGSUSED */
26441195e687SMark J Musante void
26451195e687SMark J Musante ztest_split_pool(ztest_ds_t *zd, uint64_t id)
26461195e687SMark J Musante {
26471195e687SMark J Musante 	ztest_shared_t *zs = ztest_shared;
2648420dfc95SChris Siden 	spa_t *spa = ztest_spa;
26491195e687SMark J Musante 	vdev_t *rvd = spa->spa_root_vdev;
26501195e687SMark J Musante 	nvlist_t *tree, **child, *config, *split, **schild;
26511195e687SMark J Musante 	uint_t c, children, schildren = 0, lastlogid = 0;
26521195e687SMark J Musante 	int error = 0;
26531195e687SMark J Musante 
2654420dfc95SChris Siden 	VERIFY(mutex_lock(&ztest_vdev_lock) == 0);
26551195e687SMark J Musante 
26561195e687SMark J Musante 	/* ensure we have a useable config; mirrors of raidz aren't supported */
2657420dfc95SChris Siden 	if (zs->zs_mirrors < 3 || ztest_opts.zo_raidz > 1) {
2658420dfc95SChris Siden 		VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
26591195e687SMark J Musante 		return;
26601195e687SMark J Musante 	}
26611195e687SMark J Musante 
26621195e687SMark J Musante 	/* clean up the old pool, if any */
26631195e687SMark J Musante 	(void) spa_destroy("splitp");
26641195e687SMark J Musante 
26651195e687SMark J Musante 	spa_config_enter(spa, SCL_VDEV, FTAG, RW_READER);
26661195e687SMark J Musante 
26671195e687SMark J Musante 	/* generate a config from the existing config */
266898295d61SMark J Musante 	mutex_enter(&spa->spa_props_lock);
26691195e687SMark J Musante 	VERIFY(nvlist_lookup_nvlist(spa->spa_config, ZPOOL_CONFIG_VDEV_TREE,
26701195e687SMark J Musante 	    &tree) == 0);
267198295d61SMark J Musante 	mutex_exit(&spa->spa_props_lock);
267298295d61SMark J Musante 
26731195e687SMark J Musante 	VERIFY(nvlist_lookup_nvlist_array(tree, ZPOOL_CONFIG_CHILDREN, &child,
26741195e687SMark J Musante 	    &children) == 0);
26751195e687SMark J Musante 
26761195e687SMark J Musante 	schild = malloc(rvd->vdev_children * sizeof (nvlist_t *));
26771195e687SMark J Musante 	for (c = 0; c < children; c++) {
26781195e687SMark J Musante 		vdev_t *tvd = rvd->vdev_child[c];
26791195e687SMark J Musante 		nvlist_t **mchild;
26801195e687SMark J Musante 		uint_t mchildren;
26811195e687SMark J Musante 
26821195e687SMark J Musante 		if (tvd->vdev_islog || tvd->vdev_ops == &vdev_hole_ops) {
26831195e687SMark J Musante 			VERIFY(nvlist_alloc(&schild[schildren], NV_UNIQUE_NAME,
26841195e687SMark J Musante 			    0) == 0);
26851195e687SMark J Musante 			VERIFY(nvlist_add_string(schild[schildren],
26861195e687SMark J Musante 			    ZPOOL_CONFIG_TYPE, VDEV_TYPE_HOLE) == 0);
26871195e687SMark J Musante 			VERIFY(nvlist_add_uint64(schild[schildren],
26881195e687SMark J Musante 			    ZPOOL_CONFIG_IS_HOLE, 1) == 0);
26891195e687SMark J Musante 			if (lastlogid == 0)
26901195e687SMark J Musante 				lastlogid = schildren;
26911195e687SMark J Musante 			++schildren;
26921195e687SMark J Musante 			continue;
26931195e687SMark J Musante 		}
26941195e687SMark J Musante 		lastlogid = 0;
26951195e687SMark J Musante 		VERIFY(nvlist_lookup_nvlist_array(child[c],
26961195e687SMark J Musante 		    ZPOOL_CONFIG_CHILDREN, &mchild, &mchildren) == 0);
26971195e687SMark J Musante 		VERIFY(nvlist_dup(mchild[0], &schild[schildren++], 0) == 0);
26981195e687SMark J Musante 	}
26991195e687SMark J Musante 
27001195e687SMark J Musante 	/* OK, create a config that can be used to split */
27011195e687SMark J Musante 	VERIFY(nvlist_alloc(&split, NV_UNIQUE_NAME, 0) == 0);
27021195e687SMark J Musante 	VERIFY(nvlist_add_string(split, ZPOOL_CONFIG_TYPE,
27031195e687SMark J Musante 	    VDEV_TYPE_ROOT) == 0);
27041195e687SMark J Musante 	VERIFY(nvlist_add_nvlist_array(split, ZPOOL_CONFIG_CHILDREN, schild,
27051195e687SMark J Musante 	    lastlogid != 0 ? lastlogid : schildren) == 0);
27061195e687SMark J Musante 
27071195e687SMark J Musante 	VERIFY(nvlist_alloc(&config, NV_UNIQUE_NAME, 0) == 0);
27081195e687SMark J Musante 	VERIFY(nvlist_add_nvlist(config, ZPOOL_CONFIG_VDEV_TREE, split) == 0);
27091195e687SMark J Musante 
27101195e687SMark J Musante 	for (c = 0; c < schildren; c++)
27111195e687SMark J Musante 		nvlist_free(schild[c]);
27121195e687SMark J Musante 	free(schild);
27131195e687SMark J Musante 	nvlist_free(split);
27141195e687SMark J Musante 
27151195e687SMark J Musante 	spa_config_exit(spa, SCL_VDEV, FTAG);
27161195e687SMark J Musante 
2717420dfc95SChris Siden 	(void) rw_wrlock(&ztest_name_lock);
27181195e687SMark J Musante 	error = spa_vdev_split_mirror(spa, "splitp", config, NULL, B_FALSE);
2719420dfc95SChris Siden 	(void) rw_unlock(&ztest_name_lock);
27201195e687SMark J Musante 
27211195e687SMark J Musante 	nvlist_free(config);
27221195e687SMark J Musante 
27231195e687SMark J Musante 	if (error == 0) {
27241195e687SMark J Musante 		(void) printf("successful split - results:\n");
27251195e687SMark J Musante 		mutex_enter(&spa_namespace_lock);
27261195e687SMark J Musante 		show_pool_stats(spa);
27271195e687SMark J Musante 		show_pool_stats(spa_lookup("splitp"));
27281195e687SMark J Musante 		mutex_exit(&spa_namespace_lock);
27291195e687SMark J Musante 		++zs->zs_splits;
27301195e687SMark J Musante 		--zs->zs_mirrors;
27311195e687SMark J Musante 	}
2732420dfc95SChris Siden 	VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
27331195e687SMark J Musante 
27341195e687SMark J Musante }
27351195e687SMark J Musante 
2736fa9e4066Sahrens /*
2737fa9e4066Sahrens  * Verify that we can attach and detach devices.
2738fa9e4066Sahrens  */
2739b24ab676SJeff Bonwick /* ARGSUSED */
2740fa9e4066Sahrens void
2741b24ab676SJeff Bonwick ztest_vdev_attach_detach(ztest_ds_t *zd, uint64_t id)
2742fa9e4066Sahrens {
2743b24ab676SJeff Bonwick 	ztest_shared_t *zs = ztest_shared;
2744420dfc95SChris Siden 	spa_t *spa = ztest_spa;
274531157203SJeff Bonwick 	spa_aux_vdev_t *sav = &spa->spa_spares;
2746fa9e4066Sahrens 	vdev_t *rvd = spa->spa_root_vdev;
2747ea8dc4b6Seschrock 	vdev_t *oldvd, *newvd, *pvd;
2748e14bb325SJeff Bonwick 	nvlist_t *root;
27491195e687SMark J Musante 	uint64_t leaves;
2750fa9e4066Sahrens 	uint64_t leaf, top;
2751ecc2d604Sbonwick 	uint64_t ashift = ztest_get_ashift();
27528ad4d6ddSJeff Bonwick 	uint64_t oldguid, pguid;
2753b4952e17SGeorge Wilson 	uint64_t oldsize, newsize;
2754ea8dc4b6Seschrock 	char oldpath[MAXPATHLEN], newpath[MAXPATHLEN];
2755fa9e4066Sahrens 	int replacing;
27569af0a4dfSJeff Bonwick 	int oldvd_has_siblings = B_FALSE;
275731157203SJeff Bonwick 	int newvd_is_spare = B_FALSE;
275831157203SJeff Bonwick 	int oldvd_is_log;
2759fa9e4066Sahrens 	int error, expected_error;
2760fa9e4066Sahrens 
2761420dfc95SChris Siden 	VERIFY(mutex_lock(&ztest_vdev_lock) == 0);
2762420dfc95SChris Siden 	leaves = MAX(zs->zs_mirrors, 1) * ztest_opts.zo_raidz;
2763fa9e4066Sahrens 
2764e14bb325SJeff Bonwick 	spa_config_enter(spa, SCL_VDEV, FTAG, RW_READER);
2765fa9e4066Sahrens 
2766fa9e4066Sahrens 	/*
2767fa9e4066Sahrens 	 * Decide whether to do an attach or a replace.
2768fa9e4066Sahrens 	 */
2769fa9e4066Sahrens 	replacing = ztest_random(2);
2770fa9e4066Sahrens 
2771fa9e4066Sahrens 	/*
2772fa9e4066Sahrens 	 * Pick a random top-level vdev.
2773fa9e4066Sahrens 	 */
2774b24ab676SJeff Bonwick 	top = ztest_random_vdev_top(spa, B_TRUE);
2775fa9e4066Sahrens 
2776fa9e4066Sahrens 	/*
2777fa9e4066Sahrens 	 * Pick a random leaf within it.
2778fa9e4066Sahrens 	 */
2779d41c4376SMark J Musante 	leaf = ztest_random(leaves);
2780fa9e4066Sahrens 
2781fa9e4066Sahrens 	/*
278231157203SJeff Bonwick 	 * Locate this vdev.
2783fa9e4066Sahrens 	 */
278431157203SJeff Bonwick 	oldvd = rvd->vdev_child[top];
27851195e687SMark J Musante 	if (zs->zs_mirrors >= 1) {
27868ad4d6ddSJeff Bonwick 		ASSERT(oldvd->vdev_ops == &vdev_mirror_ops);
27871195e687SMark J Musante 		ASSERT(oldvd->vdev_children >= zs->zs_mirrors);
2788420dfc95SChris Siden 		oldvd = oldvd->vdev_child[leaf / ztest_opts.zo_raidz];
27898ad4d6ddSJeff Bonwick 	}
2790420dfc95SChris Siden 	if (ztest_opts.zo_raidz > 1) {
27918ad4d6ddSJeff Bonwick 		ASSERT(oldvd->vdev_ops == &vdev_raidz_ops);
2792420dfc95SChris Siden 		ASSERT(oldvd->vdev_children == ztest_opts.zo_raidz);
2793420dfc95SChris Siden 		oldvd = oldvd->vdev_child[leaf % ztest_opts.zo_raidz];
27948ad4d6ddSJeff Bonwick 	}
2795fa9e4066Sahrens 
2796fa9e4066Sahrens 	/*
279731157203SJeff Bonwick 	 * If we're already doing an attach or replace, oldvd may be a
279831157203SJeff Bonwick 	 * mirror vdev -- in which case, pick a random child.
2799fa9e4066Sahrens 	 */
280031157203SJeff Bonwick 	while (oldvd->vdev_children != 0) {
28019af0a4dfSJeff Bonwick 		oldvd_has_siblings = B_TRUE;
28028ad4d6ddSJeff Bonwick 		ASSERT(oldvd->vdev_children >= 2);
28038ad4d6ddSJeff Bonwick 		oldvd = oldvd->vdev_child[ztest_random(oldvd->vdev_children)];
280431157203SJeff Bonwick 	}
2805fa9e4066Sahrens 
280631157203SJeff Bonwick 	oldguid = oldvd->vdev_guid;
2807573ca77eSGeorge Wilson 	oldsize = vdev_get_min_asize(oldvd);
280831157203SJeff Bonwick 	oldvd_is_log = oldvd->vdev_top->vdev_islog;
280931157203SJeff Bonwick 	(void) strcpy(oldpath, oldvd->vdev_path);
2810ea8dc4b6Seschrock 	pvd = oldvd->vdev_parent;
28118ad4d6ddSJeff Bonwick 	pguid = pvd->vdev_guid;
2812fa9e4066Sahrens 
28139af0a4dfSJeff Bonwick 	/*
28149af0a4dfSJeff Bonwick 	 * If oldvd has siblings, then half of the time, detach it.
28159af0a4dfSJeff Bonwick 	 */
28169af0a4dfSJeff Bonwick 	if (oldvd_has_siblings && ztest_random(2) == 0) {
28179af0a4dfSJeff Bonwick 		spa_config_exit(spa, SCL_VDEV, FTAG);
28188ad4d6ddSJeff Bonwick 		error = spa_vdev_detach(spa, oldguid, pguid, B_FALSE);
28198ad4d6ddSJeff Bonwick 		if (error != 0 && error != ENODEV && error != EBUSY &&
28208ad4d6ddSJeff Bonwick 		    error != ENOTSUP)
28218ad4d6ddSJeff Bonwick 			fatal(0, "detach (%s) returned %d", oldpath, error);
2822420dfc95SChris Siden 		VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
28239af0a4dfSJeff Bonwick 		return;
28249af0a4dfSJeff Bonwick 	}
28259af0a4dfSJeff Bonwick 
2826fa9e4066Sahrens 	/*
282731157203SJeff Bonwick 	 * For the new vdev, choose with equal probability between the two
282831157203SJeff Bonwick 	 * standard paths (ending in either 'a' or 'b') or a random hot spare.
2829fa9e4066Sahrens 	 */
283031157203SJeff Bonwick 	if (sav->sav_count != 0 && ztest_random(3) == 0) {
283131157203SJeff Bonwick 		newvd = sav->sav_vdevs[ztest_random(sav->sav_count)];
283231157203SJeff Bonwick 		newvd_is_spare = B_TRUE;
283331157203SJeff Bonwick 		(void) strcpy(newpath, newvd->vdev_path);
283431157203SJeff Bonwick 	} else {
283531157203SJeff Bonwick 		(void) snprintf(newpath, sizeof (newpath), ztest_dev_template,
2836420dfc95SChris Siden 		    ztest_opts.zo_dir, ztest_opts.zo_pool,
2837420dfc95SChris Siden 		    top * leaves + leaf);
283831157203SJeff Bonwick 		if (ztest_random(2) == 0)
283931157203SJeff Bonwick 			newpath[strlen(newpath) - 1] = 'b';
284031157203SJeff Bonwick 		newvd = vdev_lookup_by_path(rvd, newpath);
284131157203SJeff Bonwick 	}
284231157203SJeff Bonwick 
284331157203SJeff Bonwick 	if (newvd) {
2844573ca77eSGeorge Wilson 		newsize = vdev_get_min_asize(newvd);
284531157203SJeff Bonwick 	} else {
284631157203SJeff Bonwick 		/*
284731157203SJeff Bonwick 		 * Make newsize a little bigger or smaller than oldsize.
284831157203SJeff Bonwick 		 * If it's smaller, the attach should fail.
284931157203SJeff Bonwick 		 * If it's larger, and we're doing a replace,
285031157203SJeff Bonwick 		 * we should get dynamic LUN growth when we're done.
285131157203SJeff Bonwick 		 */
285231157203SJeff Bonwick 		newsize = 10 * oldsize / (9 + ztest_random(3));
285331157203SJeff Bonwick 	}
2854fa9e4066Sahrens 
2855fa9e4066Sahrens 	/*
2856fa9e4066Sahrens 	 * If pvd is not a mirror or root, the attach should fail with ENOTSUP,
2857fa9e4066Sahrens 	 * unless it's a replace; in that case any non-replacing parent is OK.
2858fa9e4066Sahrens 	 *
2859ea8dc4b6Seschrock 	 * If newvd is already part of the pool, it should fail with EBUSY.
2860fa9e4066Sahrens 	 *
2861ea8dc4b6Seschrock 	 * If newvd is too small, it should fail with EOVERFLOW.
2862fa9e4066Sahrens 	 */
286331157203SJeff Bonwick 	if (pvd->vdev_ops != &vdev_mirror_ops &&
286431157203SJeff Bonwick 	    pvd->vdev_ops != &vdev_root_ops && (!replacing ||
286531157203SJeff Bonwick 	    pvd->vdev_ops == &vdev_replacing_ops ||
286631157203SJeff Bonwick 	    pvd->vdev_ops == &vdev_spare_ops))
286731157203SJeff Bonwick 		expected_error = ENOTSUP;
286831157203SJeff Bonwick 	else if (newvd_is_spare && (!replacing || oldvd_is_log))
2869fa9e4066Sahrens 		expected_error = ENOTSUP;
287031157203SJeff Bonwick 	else if (newvd == oldvd)
287131157203SJeff Bonwick 		expected_error = replacing ? 0 : EBUSY;
287231157203SJeff Bonwick 	else if (vdev_lookup_by_path(rvd, newpath) != NULL)
287331157203SJeff Bonwick 		expected_error = EBUSY;
2874ea8dc4b6Seschrock 	else if (newsize < oldsize)
2875fa9e4066Sahrens 		expected_error = EOVERFLOW;
2876ecc2d604Sbonwick 	else if (ashift > oldvd->vdev_top->vdev_ashift)
2877ecc2d604Sbonwick 		expected_error = EDOM;
2878fa9e4066Sahrens 	else
2879fa9e4066Sahrens 		expected_error = 0;
2880fa9e4066Sahrens 
2881e14bb325SJeff Bonwick 	spa_config_exit(spa, SCL_VDEV, FTAG);
2882fa9e4066Sahrens 
2883fa9e4066Sahrens 	/*
2884ea8dc4b6Seschrock 	 * Build the nvlist describing newpath.
2885fa9e4066Sahrens 	 */
288625345e46SGeorge Wilson 	root = make_vdev_root(newpath, NULL, NULL, newvd == NULL ? newsize : 0,
2887e14bb325SJeff Bonwick 	    ashift, 0, 0, 0, 1);
2888fa9e4066Sahrens 
288931157203SJeff Bonwick 	error = spa_vdev_attach(spa, oldguid, root, replacing);
2890fa9e4066Sahrens 
2891fa9e4066Sahrens 	nvlist_free(root);
2892fa9e4066Sahrens 
2893fa9e4066Sahrens 	/*
2894fa9e4066Sahrens 	 * If our parent was the replacing vdev, but the replace completed,
2895fa9e4066Sahrens 	 * then instead of failing with ENOTSUP we may either succeed,
2896fa9e4066Sahrens 	 * fail with ENODEV, or fail with EOVERFLOW.
2897fa9e4066Sahrens 	 */
2898fa9e4066Sahrens 	if (expected_error == ENOTSUP &&
2899fa9e4066Sahrens 	    (error == 0 || error == ENODEV || error == EOVERFLOW))
2900fa9e4066Sahrens 		expected_error = error;
2901fa9e4066Sahrens 
2902f0aa80d4Sbonwick 	/*
2903f0aa80d4Sbonwick 	 * If someone grew the LUN, the replacement may be too small.
2904f0aa80d4Sbonwick 	 */
2905088f3894Sahrens 	if (error == EOVERFLOW || error == EBUSY)
2906f0aa80d4Sbonwick 		expected_error = error;
2907f0aa80d4Sbonwick 
2908088f3894Sahrens 	/* XXX workaround 6690467 */
2909088f3894Sahrens 	if (error != expected_error && expected_error != EBUSY) {
2910088f3894Sahrens 		fatal(0, "attach (%s %llu, %s %llu, %d) "
2911088f3894Sahrens 		    "returned %d, expected %d",
2912b4952e17SGeorge Wilson 		    oldpath, oldsize, newpath,
2913b4952e17SGeorge Wilson 		    newsize, replacing, error, expected_error);
2914fa9e4066Sahrens 	}
2915fa9e4066Sahrens 
2916420dfc95SChris Siden 	VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
2917fa9e4066Sahrens }
2918fa9e4066Sahrens 
2919573ca77eSGeorge Wilson /*
2920573ca77eSGeorge Wilson  * Callback function which expands the physical size of the vdev.
2921573ca77eSGeorge Wilson  */
2922573ca77eSGeorge Wilson vdev_t *
2923573ca77eSGeorge Wilson grow_vdev(vdev_t *vd, void *arg)
2924573ca77eSGeorge Wilson {
2925573ca77eSGeorge Wilson 	spa_t *spa = vd->vdev_spa;
2926573ca77eSGeorge Wilson 	size_t *newsize = arg;
2927573ca77eSGeorge Wilson 	size_t fsize;
2928573ca77eSGeorge Wilson 	int fd;
2929573ca77eSGeorge Wilson 
2930573ca77eSGeorge Wilson 	ASSERT(spa_config_held(spa, SCL_STATE, RW_READER) == SCL_STATE);
2931573ca77eSGeorge Wilson 	ASSERT(vd->vdev_ops->vdev_op_leaf);
2932573ca77eSGeorge Wilson 
2933573ca77eSGeorge Wilson 	if ((fd = open(vd->vdev_path, O_RDWR)) == -1)
2934573ca77eSGeorge Wilson 		return (vd);
2935573ca77eSGeorge Wilson 
2936573ca77eSGeorge Wilson 	fsize = lseek(fd, 0, SEEK_END);
2937573ca77eSGeorge Wilson 	(void) ftruncate(fd, *newsize);
2938573ca77eSGeorge Wilson 
2939420dfc95SChris Siden 	if (ztest_opts.zo_verbose >= 6) {
2940573ca77eSGeorge Wilson 		(void) printf("%s grew from %lu to %lu bytes\n",
2941573ca77eSGeorge Wilson 		    vd->vdev_path, (ulong_t)fsize, (ulong_t)*newsize);
2942573ca77eSGeorge Wilson 	}
2943573ca77eSGeorge Wilson 	(void) close(fd);
2944573ca77eSGeorge Wilson 	return (NULL);
2945573ca77eSGeorge Wilson }
2946573ca77eSGeorge Wilson 
2947573ca77eSGeorge Wilson /*
2948573ca77eSGeorge Wilson  * Callback function which expands a given vdev by calling vdev_online().
2949573ca77eSGeorge Wilson  */
2950573ca77eSGeorge Wilson /* ARGSUSED */
2951573ca77eSGeorge Wilson vdev_t *
2952573ca77eSGeorge Wilson online_vdev(vdev_t *vd, void *arg)
2953573ca77eSGeorge Wilson {
2954573ca77eSGeorge Wilson 	spa_t *spa = vd->vdev_spa;
2955573ca77eSGeorge Wilson 	vdev_t *tvd = vd->vdev_top;
2956573ca77eSGeorge Wilson 	uint64_t guid = vd->vdev_guid;
29578f18d1faSGeorge Wilson 	uint64_t generation = spa->spa_config_generation + 1;
2958095bcd66SGeorge Wilson 	vdev_state_t newstate = VDEV_STATE_UNKNOWN;
2959095bcd66SGeorge Wilson 	int error;
2960573ca77eSGeorge Wilson 
2961573ca77eSGeorge Wilson 	ASSERT(spa_config_held(spa, SCL_STATE, RW_READER) == SCL_STATE);
2962573ca77eSGeorge Wilson 	ASSERT(vd->vdev_ops->vdev_op_leaf);
2963573ca77eSGeorge Wilson 
2964573ca77eSGeorge Wilson 	/* Calling vdev_online will initialize the new metaslabs */
2965573ca77eSGeorge Wilson 	spa_config_exit(spa, SCL_STATE, spa);
2966095bcd66SGeorge Wilson 	error = vdev_online(spa, guid, ZFS_ONLINE_EXPAND, &newstate);
2967573ca77eSGeorge Wilson 	spa_config_enter(spa, SCL_STATE, spa, RW_READER);
2968573ca77eSGeorge Wilson 
2969095bcd66SGeorge Wilson 	/*
2970095bcd66SGeorge Wilson 	 * If vdev_online returned an error or the underlying vdev_open
2971095bcd66SGeorge Wilson 	 * failed then we abort the expand. The only way to know that
2972095bcd66SGeorge Wilson 	 * vdev_open fails is by checking the returned newstate.
2973095bcd66SGeorge Wilson 	 */
2974095bcd66SGeorge Wilson 	if (error || newstate != VDEV_STATE_HEALTHY) {
2975420dfc95SChris Siden 		if (ztest_opts.zo_verbose >= 5) {
2976095bcd66SGeorge Wilson 			(void) printf("Unable to expand vdev, state %llu, "
2977095bcd66SGeorge Wilson 			    "error %d\n", (u_longlong_t)newstate, error);
2978095bcd66SGeorge Wilson 		}
2979095bcd66SGeorge Wilson 		return (vd);
2980095bcd66SGeorge Wilson 	}
2981095bcd66SGeorge Wilson 	ASSERT3U(newstate, ==, VDEV_STATE_HEALTHY);
2982095bcd66SGeorge Wilson 
2983573ca77eSGeorge Wilson 	/*
2984573ca77eSGeorge Wilson 	 * Since we dropped the lock we need to ensure that we're
2985573ca77eSGeorge Wilson 	 * still talking to the original vdev. It's possible this
2986573ca77eSGeorge Wilson 	 * vdev may have been detached/replaced while we were
2987573ca77eSGeorge Wilson 	 * trying to online it.
2988573ca77eSGeorge Wilson 	 */
29898f18d1faSGeorge Wilson 	if (generation != spa->spa_config_generation) {
2990420dfc95SChris Siden 		if (ztest_opts.zo_verbose >= 5) {
29918f18d1faSGeorge Wilson 			(void) printf("vdev configuration has changed, "
29928f18d1faSGeorge Wilson 			    "guid %llu, state %llu, expected gen %llu, "
2993b24ab676SJeff Bonwick 			    "got gen %llu\n",
2994b24ab676SJeff Bonwick 			    (u_longlong_t)guid,
29958f18d1faSGeorge Wilson 			    (u_longlong_t)tvd->vdev_state,
29968f18d1faSGeorge Wilson 			    (u_longlong_t)generation,
29978f18d1faSGeorge Wilson 			    (u_longlong_t)spa->spa_config_generation);
2998573ca77eSGeorge Wilson 		}
2999573ca77eSGeorge Wilson 		return (vd);
3000573ca77eSGeorge Wilson 	}
3001573ca77eSGeorge Wilson 	return (NULL);
3002573ca77eSGeorge Wilson }
3003573ca77eSGeorge Wilson 
3004573ca77eSGeorge Wilson /*
3005573ca77eSGeorge Wilson  * Traverse the vdev tree calling the supplied function.
3006573ca77eSGeorge Wilson  * We continue to walk the tree until we either have walked all
3007573ca77eSGeorge Wilson  * children or we receive a non-NULL return from the callback.
3008573ca77eSGeorge Wilson  * If a NULL callback is passed, then we just return back the first
3009573ca77eSGeorge Wilson  * leaf vdev we encounter.
3010573ca77eSGeorge Wilson  */
3011573ca77eSGeorge Wilson vdev_t *
3012573ca77eSGeorge Wilson vdev_walk_tree(vdev_t *vd, vdev_t *(*func)(vdev_t *, void *), void *arg)
3013573ca77eSGeorge Wilson {
3014573ca77eSGeorge Wilson 	if (vd->vdev_ops->vdev_op_leaf) {
3015573ca77eSGeorge Wilson 		if (func == NULL)
3016573ca77eSGeorge Wilson 			return (vd);
3017573ca77eSGeorge Wilson 		else
3018573ca77eSGeorge Wilson 			return (func(vd, arg));
3019573ca77eSGeorge Wilson 	}
3020573ca77eSGeorge Wilson 
3021573ca77eSGeorge Wilson 	for (uint_t c = 0; c < vd->vdev_children; c++) {
3022573ca77eSGeorge Wilson 		vdev_t *cvd = vd->vdev_child[c];
3023573ca77eSGeorge Wilson 		if ((cvd = vdev_walk_tree(cvd, func, arg)) != NULL)
3024573ca77eSGeorge Wilson 			return (cvd);
3025573ca77eSGeorge Wilson 	}
3026573ca77eSGeorge Wilson 	return (NULL);
3027573ca77eSGeorge Wilson }
3028573ca77eSGeorge Wilson 
3029fa9e4066Sahrens /*
3030fa9e4066Sahrens  * Verify that dynamic LUN growth works as expected.
3031fa9e4066Sahrens  */
3032b24ab676SJeff Bonwick /* ARGSUSED */
3033fa9e4066Sahrens void
3034b24ab676SJeff Bonwick ztest_vdev_LUN_growth(ztest_ds_t *zd, uint64_t id)
3035fa9e4066Sahrens {
3036420dfc95SChris Siden 	spa_t *spa = ztest_spa;
3037b24ab676SJeff Bonwick 	vdev_t *vd, *tvd;
3038b24ab676SJeff Bonwick 	metaslab_class_t *mc;
3039b24ab676SJeff Bonwick 	metaslab_group_t *mg;
3040573ca77eSGeorge Wilson 	size_t psize, newsize;
3041b24ab676SJeff Bonwick 	uint64_t top;
3042b24ab676SJeff Bonwick 	uint64_t old_class_space, new_class_space, old_ms_count, new_ms_count;
3043fa9e4066Sahrens 
3044420dfc95SChris Siden 	VERIFY(mutex_lock(&ztest_vdev_lock) == 0);
3045573ca77eSGeorge Wilson 	spa_config_enter(spa, SCL_STATE, spa, RW_READER);
3046573ca77eSGeorge Wilson 
3047b24ab676SJeff Bonwick 	top = ztest_random_vdev_top(spa, B_TRUE);
3048573ca77eSGeorge Wilson 
3049b24ab676SJeff Bonwick 	tvd = spa->spa_root_vdev->vdev_child[top];
3050b24ab676SJeff Bonwick 	mg = tvd->vdev_mg;
3051b24ab676SJeff Bonwick 	mc = mg->mg_class;
3052b24ab676SJeff Bonwick 	old_ms_count = tvd->vdev_ms_count;
3053b24ab676SJeff Bonwick 	old_class_space = metaslab_class_get_space(mc);
3054fa9e4066Sahrens 
3055fa9e4066Sahrens 	/*
3056573ca77eSGeorge Wilson 	 * Determine the size of the first leaf vdev associated with
3057573ca77eSGeorge Wilson 	 * our top-level device.
3058fa9e4066Sahrens 	 */
3059573ca77eSGeorge Wilson 	vd = vdev_walk_tree(tvd, NULL, NULL);
3060573ca77eSGeorge Wilson 	ASSERT3P(vd, !=, NULL);
3061573ca77eSGeorge Wilson 	ASSERT(vd->vdev_ops->vdev_op_leaf);
3062fa9e4066Sahrens 
3063573ca77eSGeorge Wilson 	psize = vd->vdev_psize;
3064fa9e4066Sahrens 
3065573ca77eSGeorge Wilson 	/*
30668f18d1faSGeorge Wilson 	 * We only try to expand the vdev if it's healthy, less than 4x its
30678f18d1faSGeorge Wilson 	 * original size, and it has a valid psize.
3068573ca77eSGeorge Wilson 	 */
30698f18d1faSGeorge Wilson 	if (tvd->vdev_state != VDEV_STATE_HEALTHY ||
3070420dfc95SChris Siden 	    psize == 0 || psize >= 4 * ztest_opts.zo_vdev_size) {
3071573ca77eSGeorge Wilson 		spa_config_exit(spa, SCL_STATE, spa);
3072420dfc95SChris Siden 		VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
3073573ca77eSGeorge Wilson 		return;
3074573ca77eSGeorge Wilson 	}
3075573ca77eSGeorge Wilson 	ASSERT(psize > 0);
3076573ca77eSGeorge Wilson 	newsize = psize + psize / 8;
3077573ca77eSGeorge Wilson 	ASSERT3U(newsize, >, psize);
3078fa9e4066Sahrens 
3079420dfc95SChris Siden 	if (ztest_opts.zo_verbose >= 6) {
3080b24ab676SJeff Bonwick 		(void) printf("Expanding LUN %s from %lu to %lu\n",
3081573ca77eSGeorge Wilson 		    vd->vdev_path, (ulong_t)psize, (ulong_t)newsize);
3082573ca77eSGeorge Wilson 	}
3083573ca77eSGeorge Wilson 
3084573ca77eSGeorge Wilson 	/*
3085573ca77eSGeorge Wilson 	 * Growing the vdev is a two step process:
3086573ca77eSGeorge Wilson 	 *	1). expand the physical size (i.e. relabel)
3087573ca77eSGeorge Wilson 	 *	2). online the vdev to create the new metaslabs
3088573ca77eSGeorge Wilson 	 */
3089573ca77eSGeorge Wilson 	if (vdev_walk_tree(tvd, grow_vdev, &newsize) != NULL ||
3090573ca77eSGeorge Wilson 	    vdev_walk_tree(tvd, online_vdev, NULL) != NULL ||
3091573ca77eSGeorge Wilson 	    tvd->vdev_state != VDEV_STATE_HEALTHY) {
3092420dfc95SChris Siden 		if (ztest_opts.zo_verbose >= 5) {
3093b24ab676SJeff Bonwick 			(void) printf("Could not expand LUN because "
3094b24ab676SJeff Bonwick 			    "the vdev configuration changed.\n");
3095b24ab676SJeff Bonwick 		}
3096b24ab676SJeff Bonwick 		spa_config_exit(spa, SCL_STATE, spa);
3097420dfc95SChris Siden 		VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
3098b24ab676SJeff Bonwick 		return;
3099b24ab676SJeff Bonwick 	}
3100b24ab676SJeff Bonwick 
3101b24ab676SJeff Bonwick 	spa_config_exit(spa, SCL_STATE, spa);
3102b24ab676SJeff Bonwick 
3103b24ab676SJeff Bonwick 	/*
3104b24ab676SJeff Bonwick 	 * Expanding the LUN will update the config asynchronously,
3105b24ab676SJeff Bonwick 	 * thus we must wait for the async thread to complete any
3106b24ab676SJeff Bonwick 	 * pending tasks before proceeding.
3107b24ab676SJeff Bonwick 	 */
3108b24ab676SJeff Bonwick 	for (;;) {
3109b24ab676SJeff Bonwick 		boolean_t done;
3110b24ab676SJeff Bonwick 		mutex_enter(&spa->spa_async_lock);
3111b24ab676SJeff Bonwick 		done = (spa->spa_async_thread == NULL && !spa->spa_async_tasks);
3112b24ab676SJeff Bonwick 		mutex_exit(&spa->spa_async_lock);
3113b24ab676SJeff Bonwick 		if (done)
3114b24ab676SJeff Bonwick 			break;
3115b24ab676SJeff Bonwick 		txg_wait_synced(spa_get_dsl(spa), 0);
3116b24ab676SJeff Bonwick 		(void) poll(NULL, 0, 100);
3117b24ab676SJeff Bonwick 	}
3118b24ab676SJeff Bonwick 
3119b24ab676SJeff Bonwick 	spa_config_enter(spa, SCL_STATE, spa, RW_READER);
3120b24ab676SJeff Bonwick 
3121b24ab676SJeff Bonwick 	tvd = spa->spa_root_vdev->vdev_child[top];
3122b24ab676SJeff Bonwick 	new_ms_count = tvd->vdev_ms_count;
3123b24ab676SJeff Bonwick 	new_class_space = metaslab_class_get_space(mc);
3124b24ab676SJeff Bonwick 
3125b24ab676SJeff Bonwick 	if (tvd->vdev_mg != mg || mg->mg_class != mc) {
3126420dfc95SChris Siden 		if (ztest_opts.zo_verbose >= 5) {
3127b24ab676SJeff Bonwick 			(void) printf("Could not verify LUN expansion due to "
3128b24ab676SJeff Bonwick 			    "intervening vdev offline or remove.\n");
3129fa9e4066Sahrens 		}
3130b24ab676SJeff Bonwick 		spa_config_exit(spa, SCL_STATE, spa);
3131420dfc95SChris Siden 		VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
3132573ca77eSGeorge Wilson 		return;
3133fa9e4066Sahrens 	}
3134fa9e4066Sahrens 
3135573ca77eSGeorge Wilson 	/*
3136b24ab676SJeff Bonwick 	 * Make sure we were able to grow the vdev.
3137573ca77eSGeorge Wilson 	 */
3138b24ab676SJeff Bonwick 	if (new_ms_count <= old_ms_count)
3139b24ab676SJeff Bonwick 		fatal(0, "LUN expansion failed: ms_count %llu <= %llu\n",
3140b24ab676SJeff Bonwick 		    old_ms_count, new_ms_count);
3141573ca77eSGeorge Wilson 
3142573ca77eSGeorge Wilson 	/*
3143573ca77eSGeorge Wilson 	 * Make sure we were able to grow the pool.
3144573ca77eSGeorge Wilson 	 */
3145b24ab676SJeff Bonwick 	if (new_class_space <= old_class_space)
3146b24ab676SJeff Bonwick 		fatal(0, "LUN expansion failed: class_space %llu <= %llu\n",
3147b24ab676SJeff Bonwick 		    old_class_space, new_class_space);
3148b24ab676SJeff Bonwick 
3149420dfc95SChris Siden 	if (ztest_opts.zo_verbose >= 5) {
3150573ca77eSGeorge Wilson 		char oldnumbuf[6], newnumbuf[6];
3151573ca77eSGeorge Wilson 
3152b24ab676SJeff Bonwick 		nicenum(old_class_space, oldnumbuf);
3153b24ab676SJeff Bonwick 		nicenum(new_class_space, newnumbuf);
3154573ca77eSGeorge Wilson 		(void) printf("%s grew from %s to %s\n",
3155573ca77eSGeorge Wilson 		    spa->spa_name, oldnumbuf, newnumbuf);
3156573ca77eSGeorge Wilson 	}
3157b24ab676SJeff Bonwick 
3158573ca77eSGeorge Wilson 	spa_config_exit(spa, SCL_STATE, spa);
3159420dfc95SChris Siden 	VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
3160fa9e4066Sahrens }
3161fa9e4066Sahrens 
3162b24ab676SJeff Bonwick /*
3163b24ab676SJeff Bonwick  * Verify that dmu_objset_{create,destroy,open,close} work as expected.
3164b24ab676SJeff Bonwick  */
3165fa9e4066Sahrens /* ARGSUSED */
3166fa9e4066Sahrens static void
3167b24ab676SJeff Bonwick ztest_objset_create_cb(objset_t *os, void *arg, cred_t *cr, dmu_tx_t *tx)
3168fa9e4066Sahrens {
3169fa9e4066Sahrens 	/*
3170b24ab676SJeff Bonwick 	 * Create the objects common to all ztest datasets.
3171fa9e4066Sahrens 	 */
3172b24ab676SJeff Bonwick 	VERIFY(zap_create_claim(os, ZTEST_DIROBJ,
3173fa9e4066Sahrens 	    DMU_OT_ZAP_OTHER, DMU_OT_NONE, 0, tx) == 0);
3174fa9e4066Sahrens }
3175fa9e4066Sahrens 
317655da60b9SMark J Musante static int
317755da60b9SMark J Musante ztest_dataset_create(char *dsname)
317855da60b9SMark J Musante {
317955da60b9SMark J Musante 	uint64_t zilset = ztest_random(100);
318055da60b9SMark J Musante 	int err = dmu_objset_create(dsname, DMU_OST_OTHER, 0,
318155da60b9SMark J Musante 	    ztest_objset_create_cb, NULL);
318255da60b9SMark J Musante 
318355da60b9SMark J Musante 	if (err || zilset < 80)
318455da60b9SMark J Musante 		return (err);
318555da60b9SMark J Musante 
3186420dfc95SChris Siden 	if (ztest_opts.zo_verbose >= 6)
3187420dfc95SChris Siden 		(void) printf("Setting dataset %s to sync always\n", dsname);
318855da60b9SMark J Musante 	return (ztest_dsl_prop_set_uint64(dsname, ZFS_PROP_SYNC,
318955da60b9SMark J Musante 	    ZFS_SYNC_ALWAYS, B_FALSE));
319055da60b9SMark J Musante }
319155da60b9SMark J Musante 
3192b24ab676SJeff Bonwick /* ARGSUSED */
31931d452cf5Sahrens static int
3194fd136879SMatthew Ahrens ztest_objset_destroy_cb(const char *name, void *arg)
3195fa9e4066Sahrens {
3196fa9e4066Sahrens 	objset_t *os;
3197b24ab676SJeff Bonwick 	dmu_object_info_t doi;
3198fa9e4066Sahrens 	int error;
3199fa9e4066Sahrens 
3200fa9e4066Sahrens 	/*
3201fa9e4066Sahrens 	 * Verify that the dataset contains a directory object.
3202fa9e4066Sahrens 	 */
32033b2aab18SMatthew Ahrens 	VERIFY0(dmu_objset_own(name, DMU_OST_OTHER, B_TRUE, FTAG, &os));
3204b24ab676SJeff Bonwick 	error = dmu_object_info(os, ZTEST_DIROBJ, &doi);
3205e1930233Sbonwick 	if (error != ENOENT) {
3206e1930233Sbonwick 		/* We could have crashed in the middle of destroying it */
3207fb09f5aaSMadhav Suresh 		ASSERT0(error);
3208b24ab676SJeff Bonwick 		ASSERT3U(doi.doi_type, ==, DMU_OT_ZAP_OTHER);
3209b24ab676SJeff Bonwick 		ASSERT3S(doi.doi_physical_blocks_512, >=, 0);
3210e1930233Sbonwick 	}
32113b2aab18SMatthew Ahrens 	dmu_objset_disown(os, FTAG);
3212fa9e4066Sahrens 
3213fa9e4066Sahrens 	/*
3214fa9e4066Sahrens 	 * Destroy the dataset.
3215fa9e4066Sahrens 	 */
32163b2aab18SMatthew Ahrens 	if (strchr(name, '@') != NULL) {
32173b2aab18SMatthew Ahrens 		VERIFY0(dsl_destroy_snapshot(name, B_FALSE));
32183b2aab18SMatthew Ahrens 	} else {
32193b2aab18SMatthew Ahrens 		VERIFY0(dsl_destroy_head(name));
32203b2aab18SMatthew Ahrens 	}
32211d452cf5Sahrens 	return (0);
3222fa9e4066Sahrens }
3223fa9e4066Sahrens 
3224b24ab676SJeff Bonwick static boolean_t
3225b24ab676SJeff Bonwick ztest_snapshot_create(char *osname, uint64_t id)
3226fa9e4066Sahrens {
3227b24ab676SJeff Bonwick 	char snapname[MAXNAMELEN];
3228b24ab676SJeff Bonwick 	int error;
3229b24ab676SJeff Bonwick 
32303b2aab18SMatthew Ahrens 	(void) snprintf(snapname, sizeof (snapname), "%llu", (u_longlong_t)id);
3231b24ab676SJeff Bonwick 
32323b2aab18SMatthew Ahrens 	error = dmu_objset_snapshot_one(osname, snapname);
3233b24ab676SJeff Bonwick 	if (error == ENOSPC) {
3234b24ab676SJeff Bonwick 		ztest_record_enospc(FTAG);
3235b24ab676SJeff Bonwick 		return (B_FALSE);
3236b24ab676SJeff Bonwick 	}
32373b2aab18SMatthew Ahrens 	if (error != 0 && error != EEXIST) {
32383b2aab18SMatthew Ahrens 		fatal(0, "ztest_snapshot_create(%s@%s) = %d", osname,
32393b2aab18SMatthew Ahrens 		    snapname, error);
32403b2aab18SMatthew Ahrens 	}
3241b24ab676SJeff Bonwick 	return (B_TRUE);
3242b24ab676SJeff Bonwick }
3243b24ab676SJeff Bonwick 
3244b24ab676SJeff Bonwick static boolean_t
3245b24ab676SJeff Bonwick ztest_snapshot_destroy(char *osname, uint64_t id)
3246b24ab676SJeff Bonwick {
3247b24ab676SJeff Bonwick 	char snapname[MAXNAMELEN];
3248b24ab676SJeff Bonwick 	int error;
3249b24ab676SJeff Bonwick 
3250b24ab676SJeff Bonwick 	(void) snprintf(snapname, MAXNAMELEN, "%s@%llu", osname,
3251b24ab676SJeff Bonwick 	    (u_longlong_t)id);
3252b24ab676SJeff Bonwick 
32533b2aab18SMatthew Ahrens 	error = dsl_destroy_snapshot(snapname, B_FALSE);
3254b24ab676SJeff Bonwick 	if (error != 0 && error != ENOENT)
3255b24ab676SJeff Bonwick 		fatal(0, "ztest_snapshot_destroy(%s) = %d", snapname, error);
3256b24ab676SJeff Bonwick 	return (B_TRUE);
3257fa9e4066Sahrens }
3258fa9e4066Sahrens 
3259b24ab676SJeff Bonwick /* ARGSUSED */
3260fa9e4066Sahrens void
3261b24ab676SJeff Bonwick ztest_dmu_objset_create_destroy(ztest_ds_t *zd, uint64_t id)
3262fa9e4066Sahrens {
3263b24ab676SJeff Bonwick 	ztest_ds_t zdtmp;
3264b24ab676SJeff Bonwick 	int iters;
3265fa9e4066Sahrens 	int error;
3266745cd3c5Smaybee 	objset_t *os, *os2;
3267b24ab676SJeff Bonwick 	char name[MAXNAMELEN];
3268fa9e4066Sahrens 	zilog_t *zilog;
3269fa9e4066Sahrens 
3270420dfc95SChris Siden 	(void) rw_rdlock(&ztest_name_lock);
3271b24ab676SJeff Bonwick 
3272b24ab676SJeff Bonwick 	(void) snprintf(name, MAXNAMELEN, "%s/temp_%llu",
3273420dfc95SChris Siden 	    ztest_opts.zo_pool, (u_longlong_t)id);
3274fa9e4066Sahrens 
3275fa9e4066Sahrens 	/*
3276fa9e4066Sahrens 	 * If this dataset exists from a previous run, process its replay log
3277fa9e4066Sahrens 	 * half of the time.  If we don't replay it, then dmu_objset_destroy()
3278b24ab676SJeff Bonwick 	 * (invoked from ztest_objset_destroy_cb()) should just throw it away.
3279fa9e4066Sahrens 	 */
3280fa9e4066Sahrens 	if (ztest_random(2) == 0 &&
3281503ad85cSMatthew Ahrens 	    dmu_objset_own(name, DMU_OST_OTHER, B_FALSE, FTAG, &os) == 0) {
3282420dfc95SChris Siden 		ztest_zd_init(&zdtmp, NULL, os);
3283b24ab676SJeff Bonwick 		zil_replay(os, &zdtmp, ztest_replay_vector);
3284b24ab676SJeff Bonwick 		ztest_zd_fini(&zdtmp);
3285503ad85cSMatthew Ahrens 		dmu_objset_disown(os, FTAG);
3286fa9e4066Sahrens 	}
3287fa9e4066Sahrens 
3288fa9e4066Sahrens 	/*
3289fa9e4066Sahrens 	 * There may be an old instance of the dataset we're about to
3290fa9e4066Sahrens 	 * create lying around from a previous run.  If so, destroy it
3291fa9e4066Sahrens 	 * and all of its snapshots.
3292fa9e4066Sahrens 	 */
3293b24ab676SJeff Bonwick 	(void) dmu_objset_find(name, ztest_objset_destroy_cb, NULL,
32940b69c2f0Sahrens 	    DS_FIND_CHILDREN | DS_FIND_SNAPSHOTS);
3295fa9e4066Sahrens 
3296fa9e4066Sahrens 	/*
3297fa9e4066Sahrens 	 * Verify that the destroyed dataset is no longer in the namespace.
3298fa9e4066Sahrens 	 */
32993b2aab18SMatthew Ahrens 	VERIFY3U(ENOENT, ==, dmu_objset_own(name, DMU_OST_OTHER, B_TRUE,
33003b2aab18SMatthew Ahrens 	    FTAG, &os));
3301fa9e4066Sahrens 
3302fa9e4066Sahrens 	/*
3303fa9e4066Sahrens 	 * Verify that we can create a new dataset.
3304fa9e4066Sahrens 	 */
330555da60b9SMark J Musante 	error = ztest_dataset_create(name);
3306fa9e4066Sahrens 	if (error) {
3307fa9e4066Sahrens 		if (error == ENOSPC) {
3308b24ab676SJeff Bonwick 			ztest_record_enospc(FTAG);
3309420dfc95SChris Siden 			(void) rw_unlock(&ztest_name_lock);
3310fa9e4066Sahrens 			return;
3311fa9e4066Sahrens 		}
3312fa9e4066Sahrens 		fatal(0, "dmu_objset_create(%s) = %d", name, error);
3313fa9e4066Sahrens 	}
3314fa9e4066Sahrens 
33153b2aab18SMatthew Ahrens 	VERIFY0(dmu_objset_own(name, DMU_OST_OTHER, B_FALSE, FTAG, &os));
3316b24ab676SJeff Bonwick 
3317420dfc95SChris Siden 	ztest_zd_init(&zdtmp, NULL, os);
3318fa9e4066Sahrens 
3319fa9e4066Sahrens 	/*
3320fa9e4066Sahrens 	 * Open the intent log for it.
3321fa9e4066Sahrens 	 */
3322b24ab676SJeff Bonwick 	zilog = zil_open(os, ztest_get_data);
3323fa9e4066Sahrens 
3324fa9e4066Sahrens 	/*
3325b24ab676SJeff Bonwick 	 * Put some objects in there, do a little I/O to them,
3326b24ab676SJeff Bonwick 	 * and randomly take a couple of snapshots along the way.
3327fa9e4066Sahrens 	 */
3328b24ab676SJeff Bonwick 	iters = ztest_random(5);
3329b24ab676SJeff Bonwick 	for (int i = 0; i < iters; i++) {
3330b24ab676SJeff Bonwick 		ztest_dmu_object_alloc_free(&zdtmp, id);
3331b24ab676SJeff Bonwick 		if (ztest_random(iters) == 0)
3332b24ab676SJeff Bonwick 			(void) ztest_snapshot_create(name, i);
3333fa9e4066Sahrens 	}
3334fa9e4066Sahrens 
3335fa9e4066Sahrens 	/*
3336fa9e4066Sahrens 	 * Verify that we cannot create an existing dataset.
3337fa9e4066Sahrens 	 */
3338b24ab676SJeff Bonwick 	VERIFY3U(EEXIST, ==,
3339b24ab676SJeff Bonwick 	    dmu_objset_create(name, DMU_OST_OTHER, 0, NULL, NULL));
3340fa9e4066Sahrens 
3341fa9e4066Sahrens 	/*
3342503ad85cSMatthew Ahrens 	 * Verify that we can hold an objset that is also owned.
3343745cd3c5Smaybee 	 */
3344b420f3adSRichard Lowe 	VERIFY3U(0, ==, dmu_objset_hold(name, FTAG, &os2));
3345503ad85cSMatthew Ahrens 	dmu_objset_rele(os2, FTAG);
3346503ad85cSMatthew Ahrens 
3347503ad85cSMatthew Ahrens 	/*
3348b24ab676SJeff Bonwick 	 * Verify that we cannot own an objset that is already owned.
3349503ad85cSMatthew Ahrens 	 */
3350b24ab676SJeff Bonwick 	VERIFY3U(EBUSY, ==,
3351b24ab676SJeff Bonwick 	    dmu_objset_own(name, DMU_OST_OTHER, B_FALSE, FTAG, &os2));
3352fa9e4066Sahrens 
3353fa9e4066Sahrens 	zil_close(zilog);
3354503ad85cSMatthew Ahrens 	dmu_objset_disown(os, FTAG);
3355b24ab676SJeff Bonwick 	ztest_zd_fini(&zdtmp);
3356fa9e4066Sahrens 
3357420dfc95SChris Siden 	(void) rw_unlock(&ztest_name_lock);
3358fa9e4066Sahrens }
3359fa9e4066Sahrens 
3360fa9e4066Sahrens /*
3361fa9e4066Sahrens  * Verify that dmu_snapshot_{create,destroy,open,close} work as expected.
3362fa9e4066Sahrens  */
3363fa9e4066Sahrens void
3364b24ab676SJeff Bonwick ztest_dmu_snapshot_create_destroy(ztest_ds_t *zd, uint64_t id)
3365fa9e4066Sahrens {
3366420dfc95SChris Siden 	(void) rw_rdlock(&ztest_name_lock);
3367b24ab676SJeff Bonwick 	(void) ztest_snapshot_destroy(zd->zd_name, id);
3368b24ab676SJeff Bonwick 	(void) ztest_snapshot_create(zd->zd_name, id);
3369420dfc95SChris Siden 	(void) rw_unlock(&ztest_name_lock);
33704f5064b7SMark J Musante }
33714f5064b7SMark J Musante 
3372718d718aSGeorge Wilson /*
3373718d718aSGeorge Wilson  * Cleanup non-standard snapshots and clones.
3374718d718aSGeorge Wilson  */
3375718d718aSGeorge Wilson void
3376b24ab676SJeff Bonwick ztest_dsl_dataset_cleanup(char *osname, uint64_t id)
3377718d718aSGeorge Wilson {
3378b24ab676SJeff Bonwick 	char snap1name[MAXNAMELEN];
3379b24ab676SJeff Bonwick 	char clone1name[MAXNAMELEN];
3380b24ab676SJeff Bonwick 	char snap2name[MAXNAMELEN];
3381b24ab676SJeff Bonwick 	char clone2name[MAXNAMELEN];
3382b24ab676SJeff Bonwick 	char snap3name[MAXNAMELEN];
3383718d718aSGeorge Wilson 	int error;
3384718d718aSGeorge Wilson 
3385b24ab676SJeff Bonwick 	(void) snprintf(snap1name, MAXNAMELEN, "%s@s1_%llu", osname, id);
3386b24ab676SJeff Bonwick 	(void) snprintf(clone1name, MAXNAMELEN, "%s/c1_%llu", osname, id);
3387b24ab676SJeff Bonwick 	(void) snprintf(snap2name, MAXNAMELEN, "%s@s2_%llu", clone1name, id);
3388b24ab676SJeff Bonwick 	(void) snprintf(clone2name, MAXNAMELEN, "%s/c2_%llu", osname, id);
3389b24ab676SJeff Bonwick 	(void) snprintf(snap3name, MAXNAMELEN, "%s@s3_%llu", clone1name, id);
3390718d718aSGeorge Wilson 
33913b2aab18SMatthew Ahrens 	error = dsl_destroy_head(clone2name);
3392718d718aSGeorge Wilson 	if (error && error != ENOENT)
33933b2aab18SMatthew Ahrens 		fatal(0, "dsl_destroy_head(%s) = %d", clone2name, error);
33943b2aab18SMatthew Ahrens 	error = dsl_destroy_snapshot(snap3name, B_FALSE);
3395718d718aSGeorge Wilson 	if (error && error != ENOENT)
33963b2aab18SMatthew Ahrens 		fatal(0, "dsl_destroy_snapshot(%s) = %d", snap3name, error);
33973b2aab18SMatthew Ahrens 	error = dsl_destroy_snapshot(snap2name, B_FALSE);
3398718d718aSGeorge Wilson 	if (error && error != ENOENT)
33993b2aab18SMatthew Ahrens 		fatal(0, "dsl_destroy_snapshot(%s) = %d", snap2name, error);
34003b2aab18SMatthew Ahrens 	error = dsl_destroy_head(clone1name);
3401718d718aSGeorge Wilson 	if (error && error != ENOENT)
34023b2aab18SMatthew Ahrens 		fatal(0, "dsl_destroy_head(%s) = %d", clone1name, error);
34033b2aab18SMatthew Ahrens 	error = dsl_destroy_snapshot(snap1name, B_FALSE);
3404718d718aSGeorge Wilson 	if (error && error != ENOENT)
34053b2aab18SMatthew Ahrens 		fatal(0, "dsl_destroy_snapshot(%s) = %d", snap1name, error);
3406718d718aSGeorge Wilson }
3407718d718aSGeorge Wilson 
34084f5064b7SMark J Musante /*
34094f5064b7SMark J Musante  * Verify dsl_dataset_promote handles EBUSY
34104f5064b7SMark J Musante  */
34114f5064b7SMark J Musante void
3412b24ab676SJeff Bonwick ztest_dsl_dataset_promote_busy(ztest_ds_t *zd, uint64_t id)
34134f5064b7SMark J Musante {
34143b2aab18SMatthew Ahrens 	objset_t *os;
3415b24ab676SJeff Bonwick 	char snap1name[MAXNAMELEN];
3416b24ab676SJeff Bonwick 	char clone1name[MAXNAMELEN];
3417b24ab676SJeff Bonwick 	char snap2name[MAXNAMELEN];
3418b24ab676SJeff Bonwick 	char clone2name[MAXNAMELEN];
3419b24ab676SJeff Bonwick 	char snap3name[MAXNAMELEN];
3420b24ab676SJeff Bonwick 	char *osname = zd->zd_name;
3421b24ab676SJeff Bonwick 	int error;
34224f5064b7SMark J Musante 
3423420dfc95SChris Siden 	(void) rw_rdlock(&ztest_name_lock);
34244f5064b7SMark J Musante 
3425b24ab676SJeff Bonwick 	ztest_dsl_dataset_cleanup(osname, id);
3426718d718aSGeorge Wilson 
3427b24ab676SJeff Bonwick 	(void) snprintf(snap1name, MAXNAMELEN, "%s@s1_%llu", osname, id);
3428b24ab676SJeff Bonwick 	(void) snprintf(clone1name, MAXNAMELEN, "%s/c1_%llu", osname, id);
3429b24ab676SJeff Bonwick 	(void) snprintf(snap2name, MAXNAMELEN, "%s@s2_%llu", clone1name, id);
3430b24ab676SJeff Bonwick 	(void) snprintf(clone2name, MAXNAMELEN, "%s/c2_%llu", osname, id);
3431b24ab676SJeff Bonwick 	(void) snprintf(snap3name, MAXNAMELEN, "%s@s3_%llu", clone1name, id);
343205312e2cSMark J Musante 
34334445fffbSMatthew Ahrens 	error = dmu_objset_snapshot_one(osname, strchr(snap1name, '@') + 1);
3434b2d22b66SGeorge Wilson 	if (error && error != EEXIST) {
3435b2d22b66SGeorge Wilson 		if (error == ENOSPC) {
3436b24ab676SJeff Bonwick 			ztest_record_enospc(FTAG);
3437b2d22b66SGeorge Wilson 			goto out;
3438b2d22b66SGeorge Wilson 		}
3439b2d22b66SGeorge Wilson 		fatal(0, "dmu_take_snapshot(%s) = %d", snap1name, error);
3440b2d22b66SGeorge Wilson 	}
34414f5064b7SMark J Musante 
34423b2aab18SMatthew Ahrens 	error = dmu_objset_clone(clone1name, snap1name);
3443b2d22b66SGeorge Wilson 	if (error) {
3444b2d22b66SGeorge Wilson 		if (error == ENOSPC) {
3445b24ab676SJeff Bonwick 			ztest_record_enospc(FTAG);
3446b2d22b66SGeorge Wilson 			goto out;
3447b2d22b66SGeorge Wilson 		}
3448b2d22b66SGeorge Wilson 		fatal(0, "dmu_objset_create(%s) = %d", clone1name, error);
3449b2d22b66SGeorge Wilson 	}
34504f5064b7SMark J Musante 
34514445fffbSMatthew Ahrens 	error = dmu_objset_snapshot_one(clone1name, strchr(snap2name, '@') + 1);
3452b2d22b66SGeorge Wilson 	if (error && error != EEXIST) {
3453b2d22b66SGeorge Wilson 		if (error == ENOSPC) {
3454b24ab676SJeff Bonwick 			ztest_record_enospc(FTAG);
3455b2d22b66SGeorge Wilson 			goto out;
3456b2d22b66SGeorge Wilson 		}
3457b2d22b66SGeorge Wilson 		fatal(0, "dmu_open_snapshot(%s) = %d", snap2name, error);
3458b2d22b66SGeorge Wilson 	}
34594f5064b7SMark J Musante 
34604445fffbSMatthew Ahrens 	error = dmu_objset_snapshot_one(clone1name, strchr(snap3name, '@') + 1);
3461b2d22b66SGeorge Wilson 	if (error && error != EEXIST) {
3462b2d22b66SGeorge Wilson 		if (error == ENOSPC) {
3463b24ab676SJeff Bonwick 			ztest_record_enospc(FTAG);
3464b2d22b66SGeorge Wilson 			goto out;
3465b2d22b66SGeorge Wilson 		}
3466b2d22b66SGeorge Wilson 		fatal(0, "dmu_open_snapshot(%s) = %d", snap3name, error);
3467b2d22b66SGeorge Wilson 	}
34684f5064b7SMark J Musante 
34693b2aab18SMatthew Ahrens 	error = dmu_objset_clone(clone2name, snap3name);
3470b2d22b66SGeorge Wilson 	if (error) {
3471b2d22b66SGeorge Wilson 		if (error == ENOSPC) {
3472b24ab676SJeff Bonwick 			ztest_record_enospc(FTAG);
3473b2d22b66SGeorge Wilson 			goto out;
3474b2d22b66SGeorge Wilson 		}
3475b2d22b66SGeorge Wilson 		fatal(0, "dmu_objset_create(%s) = %d", clone2name, error);
3476b2d22b66SGeorge Wilson 	}
34774f5064b7SMark J Musante 
34783b2aab18SMatthew Ahrens 	error = dmu_objset_own(snap2name, DMU_OST_ANY, B_TRUE, FTAG, &os);
34794f5064b7SMark J Musante 	if (error)
34803b2aab18SMatthew Ahrens 		fatal(0, "dmu_objset_own(%s) = %d", snap2name, error);
3481681d9761SEric Taylor 	error = dsl_dataset_promote(clone2name, NULL);
34825d7b4d43SMatthew Ahrens 	if (error == ENOSPC) {
34835d7b4d43SMatthew Ahrens 		dmu_objset_disown(os, FTAG);
34845d7b4d43SMatthew Ahrens 		ztest_record_enospc(FTAG);
34855d7b4d43SMatthew Ahrens 		goto out;
34865d7b4d43SMatthew Ahrens 	}
34874f5064b7SMark J Musante 	if (error != EBUSY)
34884f5064b7SMark J Musante 		fatal(0, "dsl_dataset_promote(%s), %d, not EBUSY", clone2name,
34894f5064b7SMark J Musante 		    error);
34903b2aab18SMatthew Ahrens 	dmu_objset_disown(os, FTAG);
34914f5064b7SMark J Musante 
3492b2d22b66SGeorge Wilson out:
3493b24ab676SJeff Bonwick 	ztest_dsl_dataset_cleanup(osname, id);
34944f5064b7SMark J Musante 
3495420dfc95SChris Siden 	(void) rw_unlock(&ztest_name_lock);
3496fa9e4066Sahrens }
3497fa9e4066Sahrens 
3498fa9e4066Sahrens /*
3499fa9e4066Sahrens  * Verify that dmu_object_{alloc,free} work as expected.
3500fa9e4066Sahrens  */
3501fa9e4066Sahrens void
3502b24ab676SJeff Bonwick ztest_dmu_object_alloc_free(ztest_ds_t *zd, uint64_t id)
3503fa9e4066Sahrens {
3504b24ab676SJeff Bonwick 	ztest_od_t od[4];
3505b24ab676SJeff Bonwick 	int batchsize = sizeof (od) / sizeof (od[0]);
3506fa9e4066Sahrens 
3507b24ab676SJeff Bonwick 	for (int b = 0; b < batchsize; b++)
3508b24ab676SJeff Bonwick 		ztest_od_init(&od[b], id, FTAG, b, DMU_OT_UINT64_OTHER, 0, 0);
3509fa9e4066Sahrens 
3510fa9e4066Sahrens 	/*
3511b24ab676SJeff Bonwick 	 * Destroy the previous batch of objects, create a new batch,
3512b24ab676SJeff Bonwick 	 * and do some I/O on the new objects.
3513fa9e4066Sahrens 	 */
3514b24ab676SJeff Bonwick 	if (ztest_object_init(zd, od, sizeof (od), B_TRUE) != 0)
3515b24ab676SJeff Bonwick 		return;
3516fa9e4066Sahrens 
3517b24ab676SJeff Bonwick 	while (ztest_random(4 * batchsize) != 0)
3518b24ab676SJeff Bonwick 		ztest_io(zd, od[ztest_random(batchsize)].od_object,
3519b24ab676SJeff Bonwick 		    ztest_random(ZTEST_RANGE_LOCKS) << SPA_MAXBLOCKSHIFT);
3520fa9e4066Sahrens }
3521fa9e4066Sahrens 
3522fa9e4066Sahrens /*
3523fa9e4066Sahrens  * Verify that dmu_{read,write} work as expected.
3524fa9e4066Sahrens  */
3525fa9e4066Sahrens void
3526b24ab676SJeff Bonwick ztest_dmu_read_write(ztest_ds_t *zd, uint64_t id)
3527fa9e4066Sahrens {
3528b24ab676SJeff Bonwick 	objset_t *os = zd->zd_os;
3529b24ab676SJeff Bonwick 	ztest_od_t od[2];
3530fa9e4066Sahrens 	dmu_tx_t *tx;
3531fa9e4066Sahrens 	int i, freeit, error;
3532fa9e4066Sahrens 	uint64_t n, s, txg;
3533fa9e4066Sahrens 	bufwad_t *packbuf, *bigbuf, *pack, *bigH, *bigT;
3534b24ab676SJeff Bonwick 	uint64_t packobj, packoff, packsize, bigobj, bigoff, bigsize;
3535b24ab676SJeff Bonwick 	uint64_t chunksize = (1000 + ztest_random(1000)) * sizeof (uint64_t);
3536fa9e4066Sahrens 	uint64_t regions = 997;
3537fa9e4066Sahrens 	uint64_t stride = 123456789ULL;
3538fa9e4066Sahrens 	uint64_t width = 40;
3539fa9e4066Sahrens 	int free_percent = 5;
3540fa9e4066Sahrens 
3541fa9e4066Sahrens 	/*
3542fa9e4066Sahrens 	 * This test uses two objects, packobj and bigobj, that are always
3543fa9e4066Sahrens 	 * updated together (i.e. in the same tx) so that their contents are
3544fa9e4066Sahrens 	 * in sync and can be compared.  Their contents relate to each other
3545fa9e4066Sahrens 	 * in a simple way: packobj is a dense array of 'bufwad' structures,
3546fa9e4066Sahrens 	 * while bigobj is a sparse array of the same bufwads.  Specifically,
3547fa9e4066Sahrens 	 * for any index n, there are three bufwads that should be identical:
3548fa9e4066Sahrens 	 *
3549fa9e4066Sahrens 	 *	packobj, at offset n * sizeof (bufwad_t)
3550fa9e4066Sahrens 	 *	bigobj, at the head of the nth chunk
3551fa9e4066Sahrens 	 *	bigobj, at the tail of the nth chunk
3552fa9e4066Sahrens 	 *
3553fa9e4066Sahrens 	 * The chunk size is arbitrary. It doesn't have to be a power of two,
3554fa9e4066Sahrens 	 * and it doesn't have any relation to the object blocksize.
3555fa9e4066Sahrens 	 * The only requirement is that it can hold at least two bufwads.
3556fa9e4066Sahrens 	 *
3557fa9e4066Sahrens 	 * Normally, we write the bufwad to each of these locations.
3558fa9e4066Sahrens 	 * However, free_percent of the time we instead write zeroes to
3559fa9e4066Sahrens 	 * packobj and perform a dmu_free_range() on bigobj.  By comparing
3560fa9e4066Sahrens 	 * bigobj to packobj, we can verify that the DMU is correctly
3561fa9e4066Sahrens 	 * tracking which parts of an object are allocated and free,
3562fa9e4066Sahrens 	 * and that the contents of the allocated blocks are correct.
3563fa9e4066Sahrens 	 */
3564fa9e4066Sahrens 
3565fa9e4066Sahrens 	/*
3566fa9e4066Sahrens 	 * Read the directory info.  If it's the first time, set things up.
3567fa9e4066Sahrens 	 */
3568b24ab676SJeff Bonwick 	ztest_od_init(&od[0], id, FTAG, 0, DMU_OT_UINT64_OTHER, 0, chunksize);
3569b24ab676SJeff Bonwick 	ztest_od_init(&od[1], id, FTAG, 1, DMU_OT_UINT64_OTHER, 0, chunksize);
3570fa9e4066Sahrens 
3571b24ab676SJeff Bonwick 	if (ztest_object_init(zd, od, sizeof (od), B_FALSE) != 0)
3572b24ab676SJeff Bonwick 		return;
3573fa9e4066Sahrens 
3574b24ab676SJeff Bonwick 	bigobj = od[0].od_object;
3575b24ab676SJeff Bonwick 	packobj = od[1].od_object;
3576b24ab676SJeff Bonwick 	chunksize = od[0].od_gen;
3577b24ab676SJeff Bonwick 	ASSERT(chunksize == od[1].od_gen);
3578fa9e4066Sahrens 
3579fa9e4066Sahrens 	/*
3580fa9e4066Sahrens 	 * Prefetch a random chunk of the big object.
3581fa9e4066Sahrens 	 * Our aim here is to get some async reads in flight
3582fa9e4066Sahrens 	 * for blocks that we may free below; the DMU should
3583fa9e4066Sahrens 	 * handle this race correctly.
3584fa9e4066Sahrens 	 */
3585fa9e4066Sahrens 	n = ztest_random(regions) * stride + ztest_random(width);
3586fa9e4066Sahrens 	s = 1 + ztest_random(2 * width - 1);
3587a2cdcdd2SPaul Dagnelie 	dmu_prefetch(os, bigobj, 0, n * chunksize, s * chunksize,
3588a2cdcdd2SPaul Dagnelie 	    ZIO_PRIORITY_SYNC_READ);
3589fa9e4066Sahrens 
3590fa9e4066Sahrens 	/*
3591fa9e4066Sahrens 	 * Pick a random index and compute the offsets into packobj and bigobj.
3592fa9e4066Sahrens 	 */
3593fa9e4066Sahrens 	n = ztest_random(regions) * stride + ztest_random(width);
3594fa9e4066Sahrens 	s = 1 + ztest_random(width - 1);
3595fa9e4066Sahrens 
3596fa9e4066Sahrens 	packoff = n * sizeof (bufwad_t);
3597fa9e4066Sahrens 	packsize = s * sizeof (bufwad_t);
3598fa9e4066Sahrens 
3599b24ab676SJeff Bonwick 	bigoff = n * chunksize;
3600b24ab676SJeff Bonwick 	bigsize = s * chunksize;
3601fa9e4066Sahrens 
3602fa9e4066Sahrens 	packbuf = umem_alloc(packsize, UMEM_NOFAIL);
3603fa9e4066Sahrens 	bigbuf = umem_alloc(bigsize, UMEM_NOFAIL);
3604fa9e4066Sahrens 
3605fa9e4066Sahrens 	/*
3606fa9e4066Sahrens 	 * free_percent of the time, free a range of bigobj rather than
3607fa9e4066Sahrens 	 * overwriting it.
3608fa9e4066Sahrens 	 */
3609fa9e4066Sahrens 	freeit = (ztest_random(100) < free_percent);
3610fa9e4066Sahrens 
3611fa9e4066Sahrens 	/*
3612fa9e4066Sahrens 	 * Read the current contents of our objects.
3613fa9e4066Sahrens 	 */
3614b24ab676SJeff Bonwick 	error = dmu_read(os, packobj, packoff, packsize, packbuf,
36157bfdf011SNeil Perrin 	    DMU_READ_PREFETCH);
3616fb09f5aaSMadhav Suresh 	ASSERT0(error);
3617b24ab676SJeff Bonwick 	error = dmu_read(os, bigobj, bigoff, bigsize, bigbuf,
36187bfdf011SNeil Perrin 	    DMU_READ_PREFETCH);
3619fb09f5aaSMadhav Suresh 	ASSERT0(error);
3620fa9e4066Sahrens 
3621fa9e4066Sahrens 	/*
3622fa9e4066Sahrens 	 * Get a tx for the mods to both packobj and bigobj.
3623fa9e4066Sahrens 	 */
3624fa9e4066Sahrens 	tx = dmu_tx_create(os);
3625fa9e4066Sahrens 
3626b24ab676SJeff Bonwick 	dmu_tx_hold_write(tx, packobj, packoff, packsize);
3627fa9e4066Sahrens 
3628fa9e4066Sahrens 	if (freeit)
3629b24ab676SJeff Bonwick 		dmu_tx_hold_free(tx, bigobj, bigoff, bigsize);
3630fa9e4066Sahrens 	else
3631b24ab676SJeff Bonwick 		dmu_tx_hold_write(tx, bigobj, bigoff, bigsize);
3632fa9e4066Sahrens 
3633be9000ccSMatthew Ahrens 	/* This accounts for setting the checksum/compression. */
3634be9000ccSMatthew Ahrens 	dmu_tx_hold_bonus(tx, bigobj);
3635be9000ccSMatthew Ahrens 
3636b24ab676SJeff Bonwick 	txg = ztest_tx_assign(tx, TXG_MIGHTWAIT, FTAG);
3637b24ab676SJeff Bonwick 	if (txg == 0) {
3638fa9e4066Sahrens 		umem_free(packbuf, packsize);
3639fa9e4066Sahrens 		umem_free(bigbuf, bigsize);
3640fa9e4066Sahrens 		return;
3641fa9e4066Sahrens 	}
3642fa9e4066Sahrens 
36435d7b4d43SMatthew Ahrens 	enum zio_checksum cksum;
36445d7b4d43SMatthew Ahrens 	do {
36455d7b4d43SMatthew Ahrens 		cksum = (enum zio_checksum)
36465d7b4d43SMatthew Ahrens 		    ztest_random_dsl_prop(ZFS_PROP_CHECKSUM);
36475d7b4d43SMatthew Ahrens 	} while (cksum >= ZIO_CHECKSUM_LEGACY_FUNCTIONS);
36485d7b4d43SMatthew Ahrens 	dmu_object_set_checksum(os, bigobj, cksum, tx);
3649b24ab676SJeff Bonwick 
36505d7b4d43SMatthew Ahrens 	enum zio_compress comp;
36515d7b4d43SMatthew Ahrens 	do {
36525d7b4d43SMatthew Ahrens 		comp = (enum zio_compress)
36535d7b4d43SMatthew Ahrens 		    ztest_random_dsl_prop(ZFS_PROP_COMPRESSION);
36545d7b4d43SMatthew Ahrens 	} while (comp >= ZIO_COMPRESS_LEGACY_FUNCTIONS);
36555d7b4d43SMatthew Ahrens 	dmu_object_set_compress(os, bigobj, comp, tx);
3656fa9e4066Sahrens 
3657fa9e4066Sahrens 	/*
3658fa9e4066Sahrens 	 * For each index from n to n + s, verify that the existing bufwad
3659fa9e4066Sahrens 	 * in packobj matches the bufwads at the head and tail of the
3660fa9e4066Sahrens 	 * corresponding chunk in bigobj.  Then update all three bufwads
3661fa9e4066Sahrens 	 * with the new values we want to write out.
3662fa9e4066Sahrens 	 */
3663fa9e4066Sahrens 	for (i = 0; i < s; i++) {
3664fa9e4066Sahrens 		/* LINTED */
3665fa9e4066Sahrens 		pack = (bufwad_t *)((char *)packbuf + i * sizeof (bufwad_t));
3666fa9e4066Sahrens 		/* LINTED */
3667b24ab676SJeff Bonwick 		bigH = (bufwad_t *)((char *)bigbuf + i * chunksize);
3668fa9e4066Sahrens 		/* LINTED */
3669b24ab676SJeff Bonwick 		bigT = (bufwad_t *)((char *)bigH + chunksize) - 1;
3670fa9e4066Sahrens 
3671fa9e4066Sahrens 		ASSERT((uintptr_t)bigH - (uintptr_t)bigbuf < bigsize);
3672fa9e4066Sahrens 		ASSERT((uintptr_t)bigT - (uintptr_t)bigbuf < bigsize);
3673fa9e4066Sahrens 
3674fa9e4066Sahrens 		if (pack->bw_txg > txg)
3675fa9e4066Sahrens 			fatal(0, "future leak: got %llx, open txg is %llx",
3676fa9e4066Sahrens 			    pack->bw_txg, txg);
3677fa9e4066Sahrens 
3678fa9e4066Sahrens 		if (pack->bw_data != 0 && pack->bw_index != n + i)
3679fa9e4066Sahrens 			fatal(0, "wrong index: got %llx, wanted %llx+%llx",
3680fa9e4066Sahrens 			    pack->bw_index, n, i);
3681fa9e4066Sahrens 
3682fa9e4066Sahrens 		if (bcmp(pack, bigH, sizeof (bufwad_t)) != 0)
3683fa9e4066Sahrens 			fatal(0, "pack/bigH mismatch in %p/%p", pack, bigH);
3684fa9e4066Sahrens 
3685fa9e4066Sahrens 		if (bcmp(pack, bigT, sizeof (bufwad_t)) != 0)
3686fa9e4066Sahrens 			fatal(0, "pack/bigT mismatch in %p/%p", pack, bigT);
3687fa9e4066Sahrens 
3688fa9e4066Sahrens 		if (freeit) {
3689fa9e4066Sahrens 			bzero(pack, sizeof (bufwad_t));
3690fa9e4066Sahrens 		} else {
3691fa9e4066Sahrens 			pack->bw_index = n + i;
3692fa9e4066Sahrens 			pack->bw_txg = txg;
3693fa9e4066Sahrens 			pack->bw_data = 1 + ztest_random(-2ULL);
3694fa9e4066Sahrens 		}
3695fa9e4066Sahrens 		*bigH = *pack;
3696fa9e4066Sahrens 		*bigT = *pack;
3697fa9e4066Sahrens 	}
3698fa9e4066Sahrens 
3699fa9e4066Sahrens 	/*
3700fa9e4066Sahrens 	 * We've verified all the old bufwads, and made new ones.
3701fa9e4066Sahrens 	 * Now write them out.
3702fa9e4066Sahrens 	 */
3703b24ab676SJeff Bonwick 	dmu_write(os, packobj, packoff, packsize, packbuf, tx);
3704fa9e4066Sahrens 
3705fa9e4066Sahrens 	if (freeit) {
3706420dfc95SChris Siden 		if (ztest_opts.zo_verbose >= 7) {
3707fa9e4066Sahrens 			(void) printf("freeing offset %llx size %llx"
3708fa9e4066Sahrens 			    " txg %llx\n",
3709fa9e4066Sahrens 			    (u_longlong_t)bigoff,
3710fa9e4066Sahrens 			    (u_longlong_t)bigsize,
3711fa9e4066Sahrens 			    (u_longlong_t)txg);
3712fa9e4066Sahrens 		}
3713b24ab676SJeff Bonwick 		VERIFY(0 == dmu_free_range(os, bigobj, bigoff, bigsize, tx));
3714fa9e4066Sahrens 	} else {
3715420dfc95SChris Siden 		if (ztest_opts.zo_verbose >= 7) {
3716fa9e4066Sahrens 			(void) printf("writing offset %llx size %llx"
3717fa9e4066Sahrens 			    " txg %llx\n",
3718fa9e4066Sahrens 			    (u_longlong_t)bigoff,
3719fa9e4066Sahrens 			    (u_longlong_t)bigsize,
3720fa9e4066Sahrens 			    (u_longlong_t)txg);
3721fa9e4066Sahrens 		}
3722b24ab676SJeff Bonwick 		dmu_write(os, bigobj, bigoff, bigsize, bigbuf, tx);
3723fa9e4066Sahrens 	}
3724fa9e4066Sahrens 
3725fa9e4066Sahrens 	dmu_tx_commit(tx);
3726fa9e4066Sahrens 
3727fa9e4066Sahrens 	/*
3728fa9e4066Sahrens 	 * Sanity check the stuff we just wrote.
3729fa9e4066Sahrens 	 */
3730fa9e4066Sahrens 	{
3731fa9e4066Sahrens 		void *packcheck = umem_alloc(packsize, UMEM_NOFAIL);
3732fa9e4066Sahrens 		void *bigcheck = umem_alloc(bigsize, UMEM_NOFAIL);
3733fa9e4066Sahrens 
3734b24ab676SJeff Bonwick 		VERIFY(0 == dmu_read(os, packobj, packoff,
37357bfdf011SNeil Perrin 		    packsize, packcheck, DMU_READ_PREFETCH));
3736b24ab676SJeff Bonwick 		VERIFY(0 == dmu_read(os, bigobj, bigoff,
37377bfdf011SNeil Perrin 		    bigsize, bigcheck, DMU_READ_PREFETCH));
3738fa9e4066Sahrens 
3739fa9e4066Sahrens 		ASSERT(bcmp(packbuf, packcheck, packsize) == 0);
3740fa9e4066Sahrens 		ASSERT(bcmp(bigbuf, bigcheck, bigsize) == 0);
3741fa9e4066Sahrens 
3742fa9e4066Sahrens 		umem_free(packcheck, packsize);
3743fa9e4066Sahrens 		umem_free(bigcheck, bigsize);
3744fa9e4066Sahrens 	}
3745fa9e4066Sahrens 
3746fa9e4066Sahrens 	umem_free(packbuf, packsize);
3747fa9e4066Sahrens 	umem_free(bigbuf, bigsize);
3748fa9e4066Sahrens }
3749fa9e4066Sahrens 
37502fdbea25SAleksandr Guzovskiy void
37512fdbea25SAleksandr Guzovskiy compare_and_update_pbbufs(uint64_t s, bufwad_t *packbuf, bufwad_t *bigbuf,
3752b24ab676SJeff Bonwick     uint64_t bigsize, uint64_t n, uint64_t chunksize, uint64_t txg)
37532fdbea25SAleksandr Guzovskiy {
37542fdbea25SAleksandr Guzovskiy 	uint64_t i;
37552fdbea25SAleksandr Guzovskiy 	bufwad_t *pack;
37562fdbea25SAleksandr Guzovskiy 	bufwad_t *bigH;
37572fdbea25SAleksandr Guzovskiy 	bufwad_t *bigT;
37582fdbea25SAleksandr Guzovskiy 
37592fdbea25SAleksandr Guzovskiy 	/*
37602fdbea25SAleksandr Guzovskiy 	 * For each index from n to n + s, verify that the existing bufwad
37612fdbea25SAleksandr Guzovskiy 	 * in packobj matches the bufwads at the head and tail of the
37622fdbea25SAleksandr Guzovskiy 	 * corresponding chunk in bigobj.  Then update all three bufwads
37632fdbea25SAleksandr Guzovskiy 	 * with the new values we want to write out.
37642fdbea25SAleksandr Guzovskiy 	 */
37652fdbea25SAleksandr Guzovskiy 	for (i = 0; i < s; i++) {
37662fdbea25SAleksandr Guzovskiy 		/* LINTED */
37672fdbea25SAleksandr Guzovskiy 		pack = (bufwad_t *)((char *)packbuf + i * sizeof (bufwad_t));
37682fdbea25SAleksandr Guzovskiy 		/* LINTED */
3769b24ab676SJeff Bonwick 		bigH = (bufwad_t *)((char *)bigbuf + i * chunksize);
37702fdbea25SAleksandr Guzovskiy 		/* LINTED */
3771b24ab676SJeff Bonwick 		bigT = (bufwad_t *)((char *)bigH + chunksize) - 1;
37722fdbea25SAleksandr Guzovskiy 
37732fdbea25SAleksandr Guzovskiy 		ASSERT((uintptr_t)bigH - (uintptr_t)bigbuf < bigsize);
37742fdbea25SAleksandr Guzovskiy 		ASSERT((uintptr_t)bigT - (uintptr_t)bigbuf < bigsize);
37752fdbea25SAleksandr Guzovskiy 
37762fdbea25SAleksandr Guzovskiy 		if (pack->bw_txg > txg)
37772fdbea25SAleksandr Guzovskiy 			fatal(0, "future leak: got %llx, open txg is %llx",
37782fdbea25SAleksandr Guzovskiy 			    pack->bw_txg, txg);
37792fdbea25SAleksandr Guzovskiy 
37802fdbea25SAleksandr Guzovskiy 		if (pack->bw_data != 0 && pack->bw_index != n + i)
37812fdbea25SAleksandr Guzovskiy 			fatal(0, "wrong index: got %llx, wanted %llx+%llx",
37822fdbea25SAleksandr Guzovskiy 			    pack->bw_index, n, i);
37832fdbea25SAleksandr Guzovskiy 
37842fdbea25SAleksandr Guzovskiy 		if (bcmp(pack, bigH, sizeof (bufwad_t)) != 0)
37852fdbea25SAleksandr Guzovskiy 			fatal(0, "pack/bigH mismatch in %p/%p", pack, bigH);
37862fdbea25SAleksandr Guzovskiy 
37872fdbea25SAleksandr Guzovskiy 		if (bcmp(pack, bigT, sizeof (bufwad_t)) != 0)
37882fdbea25SAleksandr Guzovskiy 			fatal(0, "pack/bigT mismatch in %p/%p", pack, bigT);
37892fdbea25SAleksandr Guzovskiy 
37902fdbea25SAleksandr Guzovskiy 		pack->bw_index = n + i;
37912fdbea25SAleksandr Guzovskiy 		pack->bw_txg = txg;
37922fdbea25SAleksandr Guzovskiy 		pack->bw_data = 1 + ztest_random(-2ULL);
37932fdbea25SAleksandr Guzovskiy 
37942fdbea25SAleksandr Guzovskiy 		*bigH = *pack;
37952fdbea25SAleksandr Guzovskiy 		*bigT = *pack;
37962fdbea25SAleksandr Guzovskiy 	}
37972fdbea25SAleksandr Guzovskiy }
37982fdbea25SAleksandr Guzovskiy 
37992fdbea25SAleksandr Guzovskiy void
3800b24ab676SJeff Bonwick ztest_dmu_read_write_zcopy(ztest_ds_t *zd, uint64_t id)
38012fdbea25SAleksandr Guzovskiy {
3802b24ab676SJeff Bonwick 	objset_t *os = zd->zd_os;
3803b24ab676SJeff Bonwick 	ztest_od_t od[2];
38042fdbea25SAleksandr Guzovskiy 	dmu_tx_t *tx;
38052fdbea25SAleksandr Guzovskiy 	uint64_t i;
38062fdbea25SAleksandr Guzovskiy 	int error;
38072fdbea25SAleksandr Guzovskiy 	uint64_t n, s, txg;
38082fdbea25SAleksandr Guzovskiy 	bufwad_t *packbuf, *bigbuf;
3809b24ab676SJeff Bonwick 	uint64_t packobj, packoff, packsize, bigobj, bigoff, bigsize;
3810b24ab676SJeff Bonwick 	uint64_t blocksize = ztest_random_blocksize();
3811b24ab676SJeff Bonwick 	uint64_t chunksize = blocksize;
38122fdbea25SAleksandr Guzovskiy 	uint64_t regions = 997;
38132fdbea25SAleksandr Guzovskiy 	uint64_t stride = 123456789ULL;
38142fdbea25SAleksandr Guzovskiy 	uint64_t width = 9;
38152fdbea25SAleksandr Guzovskiy 	dmu_buf_t *bonus_db;
38162fdbea25SAleksandr Guzovskiy 	arc_buf_t **bigbuf_arcbufs;
3817b24ab676SJeff Bonwick 	dmu_object_info_t doi;
38182fdbea25SAleksandr Guzovskiy 
38192fdbea25SAleksandr Guzovskiy 	/*
38202fdbea25SAleksandr Guzovskiy 	 * This test uses two objects, packobj and bigobj, that are always
38212fdbea25SAleksandr Guzovskiy 	 * updated together (i.e. in the same tx) so that their contents are
38222fdbea25SAleksandr Guzovskiy 	 * in sync and can be compared.  Their contents relate to each other
38232fdbea25SAleksandr Guzovskiy 	 * in a simple way: packobj is a dense array of 'bufwad' structures,
38242fdbea25SAleksandr Guzovskiy 	 * while bigobj is a sparse array of the same bufwads.  Specifically,
38252fdbea25SAleksandr Guzovskiy 	 * for any index n, there are three bufwads that should be identical:
38262fdbea25SAleksandr Guzovskiy 	 *
38272fdbea25SAleksandr Guzovskiy 	 *	packobj, at offset n * sizeof (bufwad_t)
38282fdbea25SAleksandr Guzovskiy 	 *	bigobj, at the head of the nth chunk
38292fdbea25SAleksandr Guzovskiy 	 *	bigobj, at the tail of the nth chunk
38302fdbea25SAleksandr Guzovskiy 	 *
38312fdbea25SAleksandr Guzovskiy 	 * The chunk size is set equal to bigobj block size so that
38322fdbea25SAleksandr Guzovskiy 	 * dmu_assign_arcbuf() can be tested for object updates.
38332fdbea25SAleksandr Guzovskiy 	 */
38342fdbea25SAleksandr Guzovskiy 
38352fdbea25SAleksandr Guzovskiy 	/*
38362fdbea25SAleksandr Guzovskiy 	 * Read the directory info.  If it's the first time, set things up.
38372fdbea25SAleksandr Guzovskiy 	 */
3838b24ab676SJeff Bonwick 	ztest_od_init(&od[0], id, FTAG, 0, DMU_OT_UINT64_OTHER, blocksize, 0);
3839b24ab676SJeff Bonwick 	ztest_od_init(&od[1], id, FTAG, 1, DMU_OT_UINT64_OTHER, 0, chunksize);
38402fdbea25SAleksandr Guzovskiy 
3841b24ab676SJeff Bonwick 	if (ztest_object_init(zd, od, sizeof (od), B_FALSE) != 0)
3842b24ab676SJeff Bonwick 		return;
38432fdbea25SAleksandr Guzovskiy 
3844b24ab676SJeff Bonwick 	bigobj = od[0].od_object;
3845b24ab676SJeff Bonwick 	packobj = od[1].od_object;
3846b24ab676SJeff Bonwick 	blocksize = od[0].od_blocksize;
3847b24ab676SJeff Bonwick 	chunksize = blocksize;
3848b24ab676SJeff Bonwick 	ASSERT(chunksize == od[1].od_gen);
38492fdbea25SAleksandr Guzovskiy 
3850b24ab676SJeff Bonwick 	VERIFY(dmu_object_info(os, bigobj, &doi) == 0);
3851b24ab676SJeff Bonwick 	VERIFY(ISP2(doi.doi_data_block_size));
3852b24ab676SJeff Bonwick 	VERIFY(chunksize == doi.doi_data_block_size);
3853b24ab676SJeff Bonwick 	VERIFY(chunksize >= 2 * sizeof (bufwad_t));
38542fdbea25SAleksandr Guzovskiy 
38552fdbea25SAleksandr Guzovskiy 	/*
38562fdbea25SAleksandr Guzovskiy 	 * Pick a random index and compute the offsets into packobj and bigobj.
38572fdbea25SAleksandr Guzovskiy 	 */
38582fdbea25SAleksandr Guzovskiy 	n = ztest_random(regions) * stride + ztest_random(width);
38592fdbea25SAleksandr Guzovskiy 	s = 1 + ztest_random(width - 1);
38602fdbea25SAleksandr Guzovskiy 
38612fdbea25SAleksandr Guzovskiy 	packoff = n * sizeof (bufwad_t);
38622fdbea25SAleksandr Guzovskiy 	packsize = s * sizeof (bufwad_t);
38632fdbea25SAleksandr Guzovskiy 
3864b24ab676SJeff Bonwick 	bigoff = n * chunksize;
3865b24ab676SJeff Bonwick 	bigsize = s * chunksize;
38662fdbea25SAleksandr Guzovskiy 
38672fdbea25SAleksandr Guzovskiy 	packbuf = umem_zalloc(packsize, UMEM_NOFAIL);
38682fdbea25SAleksandr Guzovskiy 	bigbuf = umem_zalloc(bigsize, UMEM_NOFAIL);
38692fdbea25SAleksandr Guzovskiy 
3870b420f3adSRichard Lowe 	VERIFY3U(0, ==, dmu_bonus_hold(os, bigobj, FTAG, &bonus_db));
38712fdbea25SAleksandr Guzovskiy 
38722fdbea25SAleksandr Guzovskiy 	bigbuf_arcbufs = umem_zalloc(2 * s * sizeof (arc_buf_t *), UMEM_NOFAIL);
38732fdbea25SAleksandr Guzovskiy 
38742fdbea25SAleksandr Guzovskiy 	/*
38752fdbea25SAleksandr Guzovskiy 	 * Iteration 0 test zcopy for DB_UNCACHED dbufs.
38762fdbea25SAleksandr Guzovskiy 	 * Iteration 1 test zcopy to already referenced dbufs.
38772fdbea25SAleksandr Guzovskiy 	 * Iteration 2 test zcopy to dirty dbuf in the same txg.
38782fdbea25SAleksandr Guzovskiy 	 * Iteration 3 test zcopy to dbuf dirty in previous txg.
38792fdbea25SAleksandr Guzovskiy 	 * Iteration 4 test zcopy when dbuf is no longer dirty.
38802fdbea25SAleksandr Guzovskiy 	 * Iteration 5 test zcopy when it can't be done.
38812fdbea25SAleksandr Guzovskiy 	 * Iteration 6 one more zcopy write.
38822fdbea25SAleksandr Guzovskiy 	 */
38832fdbea25SAleksandr Guzovskiy 	for (i = 0; i < 7; i++) {
38842fdbea25SAleksandr Guzovskiy 		uint64_t j;
38852fdbea25SAleksandr Guzovskiy 		uint64_t off;
38862fdbea25SAleksandr Guzovskiy 
38872fdbea25SAleksandr Guzovskiy 		/*
38882fdbea25SAleksandr Guzovskiy 		 * In iteration 5 (i == 5) use arcbufs
38892fdbea25SAleksandr Guzovskiy 		 * that don't match bigobj blksz to test
38902fdbea25SAleksandr Guzovskiy 		 * dmu_assign_arcbuf() when it can't directly
38912fdbea25SAleksandr Guzovskiy 		 * assign an arcbuf to a dbuf.
38922fdbea25SAleksandr Guzovskiy 		 */
38932fdbea25SAleksandr Guzovskiy 		for (j = 0; j < s; j++) {
389489c86e32SChris Williamson 			if (i != 5 || chunksize < (SPA_MINBLOCKSIZE * 2)) {
38952fdbea25SAleksandr Guzovskiy 				bigbuf_arcbufs[j] =
3896b24ab676SJeff Bonwick 				    dmu_request_arcbuf(bonus_db, chunksize);
38972fdbea25SAleksandr Guzovskiy 			} else {
38982fdbea25SAleksandr Guzovskiy 				bigbuf_arcbufs[2 * j] =
3899b24ab676SJeff Bonwick 				    dmu_request_arcbuf(bonus_db, chunksize / 2);
39002fdbea25SAleksandr Guzovskiy 				bigbuf_arcbufs[2 * j + 1] =
3901b24ab676SJeff Bonwick 				    dmu_request_arcbuf(bonus_db, chunksize / 2);
39022fdbea25SAleksandr Guzovskiy 			}
39032fdbea25SAleksandr Guzovskiy 		}
39042fdbea25SAleksandr Guzovskiy 
39052fdbea25SAleksandr Guzovskiy 		/*
39062fdbea25SAleksandr Guzovskiy 		 * Get a tx for the mods to both packobj and bigobj.
39072fdbea25SAleksandr Guzovskiy 		 */
39082fdbea25SAleksandr Guzovskiy 		tx = dmu_tx_create(os);
39092fdbea25SAleksandr Guzovskiy 
3910b24ab676SJeff Bonwick 		dmu_tx_hold_write(tx, packobj, packoff, packsize);
3911b24ab676SJeff Bonwick 		dmu_tx_hold_write(tx, bigobj, bigoff, bigsize);
39122fdbea25SAleksandr Guzovskiy 
3913b24ab676SJeff Bonwick 		txg = ztest_tx_assign(tx, TXG_MIGHTWAIT, FTAG);
3914b24ab676SJeff Bonwick 		if (txg == 0) {
39152fdbea25SAleksandr Guzovskiy 			umem_free(packbuf, packsize);
39162fdbea25SAleksandr Guzovskiy 			umem_free(bigbuf, bigsize);
39172fdbea25SAleksandr Guzovskiy 			for (j = 0; j < s; j++) {
391889c86e32SChris Williamson 				if (i != 5 ||
391989c86e32SChris Williamson 				    chunksize < (SPA_MINBLOCKSIZE * 2)) {
39202fdbea25SAleksandr Guzovskiy 					dmu_return_arcbuf(bigbuf_arcbufs[j]);
39212fdbea25SAleksandr Guzovskiy 				} else {
39222fdbea25SAleksandr Guzovskiy 					dmu_return_arcbuf(
39232fdbea25SAleksandr Guzovskiy 					    bigbuf_arcbufs[2 * j]);
39242fdbea25SAleksandr Guzovskiy 					dmu_return_arcbuf(
39252fdbea25SAleksandr Guzovskiy 					    bigbuf_arcbufs[2 * j + 1]);
39262fdbea25SAleksandr Guzovskiy 				}
39272fdbea25SAleksandr Guzovskiy 			}
39282fdbea25SAleksandr Guzovskiy 			umem_free(bigbuf_arcbufs, 2 * s * sizeof (arc_buf_t *));
39292fdbea25SAleksandr Guzovskiy 			dmu_buf_rele(bonus_db, FTAG);
39302fdbea25SAleksandr Guzovskiy 			return;
39312fdbea25SAleksandr Guzovskiy 		}
39322fdbea25SAleksandr Guzovskiy 
39332fdbea25SAleksandr Guzovskiy 		/*
39342fdbea25SAleksandr Guzovskiy 		 * 50% of the time don't read objects in the 1st iteration to
39352fdbea25SAleksandr Guzovskiy 		 * test dmu_assign_arcbuf() for the case when there're no
39362fdbea25SAleksandr Guzovskiy 		 * existing dbufs for the specified offsets.
39372fdbea25SAleksandr Guzovskiy 		 */
39382fdbea25SAleksandr Guzovskiy 		if (i != 0 || ztest_random(2) != 0) {
3939b24ab676SJeff Bonwick 			error = dmu_read(os, packobj, packoff,
39407bfdf011SNeil Perrin 			    packsize, packbuf, DMU_READ_PREFETCH);
3941fb09f5aaSMadhav Suresh 			ASSERT0(error);
3942b24ab676SJeff Bonwick 			error = dmu_read(os, bigobj, bigoff, bigsize,
39437bfdf011SNeil Perrin 			    bigbuf, DMU_READ_PREFETCH);
3944fb09f5aaSMadhav Suresh 			ASSERT0(error);
39452fdbea25SAleksandr Guzovskiy 		}
39462fdbea25SAleksandr Guzovskiy 		compare_and_update_pbbufs(s, packbuf, bigbuf, bigsize,
3947b24ab676SJeff Bonwick 		    n, chunksize, txg);
39482fdbea25SAleksandr Guzovskiy 
39492fdbea25SAleksandr Guzovskiy 		/*
39502fdbea25SAleksandr Guzovskiy 		 * We've verified all the old bufwads, and made new ones.
39512fdbea25SAleksandr Guzovskiy 		 * Now write them out.
39522fdbea25SAleksandr Guzovskiy 		 */
3953b24ab676SJeff Bonwick 		dmu_write(os, packobj, packoff, packsize, packbuf, tx);
3954420dfc95SChris Siden 		if (ztest_opts.zo_verbose >= 7) {
39552fdbea25SAleksandr Guzovskiy 			(void) printf("writing offset %llx size %llx"
39562fdbea25SAleksandr Guzovskiy 			    " txg %llx\n",
39572fdbea25SAleksandr Guzovskiy 			    (u_longlong_t)bigoff,
39582fdbea25SAleksandr Guzovskiy 			    (u_longlong_t)bigsize,
39592fdbea25SAleksandr Guzovskiy 			    (u_longlong_t)txg);
39602fdbea25SAleksandr Guzovskiy 		}
3961b24ab676SJeff Bonwick 		for (off = bigoff, j = 0; j < s; j++, off += chunksize) {
39622fdbea25SAleksandr Guzovskiy 			dmu_buf_t *dbt;
396389c86e32SChris Williamson 			if (i != 5 || chunksize < (SPA_MINBLOCKSIZE * 2)) {
39642fdbea25SAleksandr Guzovskiy 				bcopy((caddr_t)bigbuf + (off - bigoff),
3965b24ab676SJeff Bonwick 				    bigbuf_arcbufs[j]->b_data, chunksize);
39662fdbea25SAleksandr Guzovskiy 			} else {
39672fdbea25SAleksandr Guzovskiy 				bcopy((caddr_t)bigbuf + (off - bigoff),
39682fdbea25SAleksandr Guzovskiy 				    bigbuf_arcbufs[2 * j]->b_data,
3969b24ab676SJeff Bonwick 				    chunksize / 2);
39702fdbea25SAleksandr Guzovskiy 				bcopy((caddr_t)bigbuf + (off - bigoff) +
3971b24ab676SJeff Bonwick 				    chunksize / 2,
39722fdbea25SAleksandr Guzovskiy 				    bigbuf_arcbufs[2 * j + 1]->b_data,
3973b24ab676SJeff Bonwick 				    chunksize / 2);
39742fdbea25SAleksandr Guzovskiy 			}
39752fdbea25SAleksandr Guzovskiy 
39762fdbea25SAleksandr Guzovskiy 			if (i == 1) {
3977b24ab676SJeff Bonwick 				VERIFY(dmu_buf_hold(os, bigobj, off,
397847cb52daSJeff Bonwick 				    FTAG, &dbt, DMU_READ_NO_PREFETCH) == 0);
39792fdbea25SAleksandr Guzovskiy 			}
398089c86e32SChris Williamson 			if (i != 5 || chunksize < (SPA_MINBLOCKSIZE * 2)) {
39812fdbea25SAleksandr Guzovskiy 				dmu_assign_arcbuf(bonus_db, off,
39822fdbea25SAleksandr Guzovskiy 				    bigbuf_arcbufs[j], tx);
39832fdbea25SAleksandr Guzovskiy 			} else {
39842fdbea25SAleksandr Guzovskiy 				dmu_assign_arcbuf(bonus_db, off,
39852fdbea25SAleksandr Guzovskiy 				    bigbuf_arcbufs[2 * j], tx);
39862fdbea25SAleksandr Guzovskiy 				dmu_assign_arcbuf(bonus_db,
3987b24ab676SJeff Bonwick 				    off + chunksize / 2,
39882fdbea25SAleksandr Guzovskiy 				    bigbuf_arcbufs[2 * j + 1], tx);
39892fdbea25SAleksandr Guzovskiy 			}
39902fdbea25SAleksandr Guzovskiy 			if (i == 1) {
39912fdbea25SAleksandr Guzovskiy 				dmu_buf_rele(dbt, FTAG);
39922fdbea25SAleksandr Guzovskiy 			}
39932fdbea25SAleksandr Guzovskiy 		}
39942fdbea25SAleksandr Guzovskiy 		dmu_tx_commit(tx);
39952fdbea25SAleksandr Guzovskiy 
39962fdbea25SAleksandr Guzovskiy 		/*
39972fdbea25SAleksandr Guzovskiy 		 * Sanity check the stuff we just wrote.
39982fdbea25SAleksandr Guzovskiy 		 */
39992fdbea25SAleksandr Guzovskiy 		{
40002fdbea25SAleksandr Guzovskiy 			void *packcheck = umem_alloc(packsize, UMEM_NOFAIL);
40012fdbea25SAleksandr Guzovskiy 			void *bigcheck = umem_alloc(bigsize, UMEM_NOFAIL);
40022fdbea25SAleksandr Guzovskiy 
4003b24ab676SJeff Bonwick 			VERIFY(0 == dmu_read(os, packobj, packoff,
40047bfdf011SNeil Perrin 			    packsize, packcheck, DMU_READ_PREFETCH));
4005b24ab676SJeff Bonwick 			VERIFY(0 == dmu_read(os, bigobj, bigoff,
40067bfdf011SNeil Perrin 			    bigsize, bigcheck, DMU_READ_PREFETCH));
40072fdbea25SAleksandr Guzovskiy 
40082fdbea25SAleksandr Guzovskiy 			ASSERT(bcmp(packbuf, packcheck, packsize) == 0);
40092fdbea25SAleksandr Guzovskiy 			ASSERT(bcmp(bigbuf, bigcheck, bigsize) == 0);
40102fdbea25SAleksandr Guzovskiy 
40112fdbea25SAleksandr Guzovskiy 			umem_free(packcheck, packsize);
40122fdbea25SAleksandr Guzovskiy 			umem_free(bigcheck, bigsize);
40132fdbea25SAleksandr Guzovskiy 		}
40142fdbea25SAleksandr Guzovskiy 		if (i == 2) {
4015b24ab676SJeff Bonwick 			txg_wait_open(dmu_objset_pool(os), 0);
4016b24ab676SJeff Bonwick 		} else if (i == 3) {
4017b24ab676SJeff Bonwick 			txg_wait_synced(dmu_objset_pool(os), 0);
4018fa9e4066Sahrens 		}
4019e05725b1Sbonwick 	}
4020e05725b1Sbonwick 
4021b24ab676SJeff Bonwick 	dmu_buf_rele(bonus_db, FTAG);
4022b24ab676SJeff Bonwick 	umem_free(packbuf, packsize);
4023b24ab676SJeff Bonwick 	umem_free(bigbuf, bigsize);
4024b24ab676SJeff Bonwick 	umem_free(bigbuf_arcbufs, 2 * s * sizeof (arc_buf_t *));
4025b24ab676SJeff Bonwick }
4026fa9e4066Sahrens 
4027b24ab676SJeff Bonwick /* ARGSUSED */
4028b24ab676SJeff Bonwick void
4029b24ab676SJeff Bonwick ztest_dmu_write_parallel(ztest_ds_t *zd, uint64_t id)
4030b24ab676SJeff Bonwick {
4031b24ab676SJeff Bonwick 	ztest_od_t od[1];
4032b24ab676SJeff Bonwick 	uint64_t offset = (1ULL << (ztest_random(20) + 43)) +
4033b24ab676SJeff Bonwick 	    (ztest_random(ZTEST_RANGE_LOCKS) << SPA_MAXBLOCKSHIFT);
4034fa9e4066Sahrens 
4035e05725b1Sbonwick 	/*
4036b24ab676SJeff Bonwick 	 * Have multiple threads write to large offsets in an object
4037b24ab676SJeff Bonwick 	 * to verify that parallel writes to an object -- even to the
4038b24ab676SJeff Bonwick 	 * same blocks within the object -- doesn't cause any trouble.
4039e05725b1Sbonwick 	 */
4040b24ab676SJeff Bonwick 	ztest_od_init(&od[0], ID_PARALLEL, FTAG, 0, DMU_OT_UINT64_OTHER, 0, 0);
4041fa9e4066Sahrens 
4042b24ab676SJeff Bonwick 	if (ztest_object_init(zd, od, sizeof (od), B_FALSE) != 0)
4043e05725b1Sbonwick 		return;
4044fa9e4066Sahrens 
4045b24ab676SJeff Bonwick 	while (ztest_random(10) != 0)
4046b24ab676SJeff Bonwick 		ztest_io(zd, od[0].od_object, offset);
4047b24ab676SJeff Bonwick }
4048fa9e4066Sahrens 
4049b24ab676SJeff Bonwick void
4050b24ab676SJeff Bonwick ztest_dmu_prealloc(ztest_ds_t *zd, uint64_t id)
4051b24ab676SJeff Bonwick {
4052b24ab676SJeff Bonwick 	ztest_od_t od[1];
4053b24ab676SJeff Bonwick 	uint64_t offset = (1ULL << (ztest_random(4) + SPA_MAXBLOCKSHIFT)) +
4054b24ab676SJeff Bonwick 	    (ztest_random(ZTEST_RANGE_LOCKS) << SPA_MAXBLOCKSHIFT);
4055b24ab676SJeff Bonwick 	uint64_t count = ztest_random(20) + 1;
4056b24ab676SJeff Bonwick 	uint64_t blocksize = ztest_random_blocksize();
4057b24ab676SJeff Bonwick 	void *data;
4058fa9e4066Sahrens 
4059b24ab676SJeff Bonwick 	ztest_od_init(&od[0], id, FTAG, 0, DMU_OT_UINT64_OTHER, blocksize, 0);
4060fa9e4066Sahrens 
4061b24ab676SJeff Bonwick 	if (ztest_object_init(zd, od, sizeof (od), !ztest_random(2)) != 0)
4062e05725b1Sbonwick 		return;
40630e34b6a7Sbonwick 
4064b24ab676SJeff Bonwick 	if (ztest_truncate(zd, od[0].od_object, offset, count * blocksize) != 0)
4065f4a72450SJeff Bonwick 		return;
4066f4a72450SJeff Bonwick 
4067b24ab676SJeff Bonwick 	ztest_prealloc(zd, od[0].od_object, offset, count * blocksize);
4068fa9e4066Sahrens 
4069b24ab676SJeff Bonwick 	data = umem_zalloc(blocksize, UMEM_NOFAIL);
4070b24ab676SJeff Bonwick 
4071b24ab676SJeff Bonwick 	while (ztest_random(count) != 0) {
4072b24ab676SJeff Bonwick 		uint64_t randoff = offset + (ztest_random(count) * blocksize);
4073b24ab676SJeff Bonwick 		if (ztest_write(zd, od[0].od_object, randoff, blocksize,
4074b24ab676SJeff Bonwick 		    data) != 0)
4075b24ab676SJeff Bonwick 			break;
4076b24ab676SJeff Bonwick 		while (ztest_random(4) != 0)
4077b24ab676SJeff Bonwick 			ztest_io(zd, od[0].od_object, randoff);
4078b24ab676SJeff Bonwick 	}
4079b24ab676SJeff Bonwick 
4080b24ab676SJeff Bonwick 	umem_free(data, blocksize);
4081fa9e4066Sahrens }
4082fa9e4066Sahrens 
4083fa9e4066Sahrens /*
4084fa9e4066Sahrens  * Verify that zap_{create,destroy,add,remove,update} work as expected.
4085fa9e4066Sahrens  */
4086fa9e4066Sahrens #define	ZTEST_ZAP_MIN_INTS	1
4087fa9e4066Sahrens #define	ZTEST_ZAP_MAX_INTS	4
4088fa9e4066Sahrens #define	ZTEST_ZAP_MAX_PROPS	1000
4089fa9e4066Sahrens 
4090fa9e4066Sahrens void
4091b24ab676SJeff Bonwick ztest_zap(ztest_ds_t *zd, uint64_t id)
4092fa9e4066Sahrens {
4093b24ab676SJeff Bonwick 	objset_t *os = zd->zd_os;
4094b24ab676SJeff Bonwick 	ztest_od_t od[1];
4095fa9e4066Sahrens 	uint64_t object;
4096fa9e4066Sahrens 	uint64_t txg, last_txg;
4097fa9e4066Sahrens 	uint64_t value[ZTEST_ZAP_MAX_INTS];
4098fa9e4066Sahrens 	uint64_t zl_ints, zl_intsize, prop;
4099fa9e4066Sahrens 	int i, ints;
4100fa9e4066Sahrens 	dmu_tx_t *tx;
4101fa9e4066Sahrens 	char propname[100], txgname[100];
4102fa9e4066Sahrens 	int error;
4103fa9e4066Sahrens 	char *hc[2] = { "s.acl.h", ".s.open.h.hyLZlg" };
4104fa9e4066Sahrens 
4105b24ab676SJeff Bonwick 	ztest_od_init(&od[0], id, FTAG, 0, DMU_OT_ZAP_OTHER, 0, 0);
4106fa9e4066Sahrens 
4107b24ab676SJeff Bonwick 	if (ztest_object_init(zd, od, sizeof (od), !ztest_random(2)) != 0)
4108b24ab676SJeff Bonwick 		return;
4109fa9e4066Sahrens 
4110b24ab676SJeff Bonwick 	object = od[0].od_object;
4111fa9e4066Sahrens 
4112b24ab676SJeff Bonwick 	/*
4113b24ab676SJeff Bonwick 	 * Generate a known hash collision, and verify that
4114b24ab676SJeff Bonwick 	 * we can lookup and remove both entries.
4115b24ab676SJeff Bonwick 	 */
4116b24ab676SJeff Bonwick 	tx = dmu_tx_create(os);
4117b24ab676SJeff Bonwick 	dmu_tx_hold_zap(tx, object, B_TRUE, NULL);
4118b24ab676SJeff Bonwick 	txg = ztest_tx_assign(tx, TXG_MIGHTWAIT, FTAG);
4119b24ab676SJeff Bonwick 	if (txg == 0)
4120b24ab676SJeff Bonwick 		return;
4121b24ab676SJeff Bonwick 	for (i = 0; i < 2; i++) {
4122b24ab676SJeff Bonwick 		value[i] = i;
4123b420f3adSRichard Lowe 		VERIFY3U(0, ==, zap_add(os, object, hc[i], sizeof (uint64_t),
4124b24ab676SJeff Bonwick 		    1, &value[i], tx));
4125b24ab676SJeff Bonwick 	}
4126b24ab676SJeff Bonwick 	for (i = 0; i < 2; i++) {
4127b24ab676SJeff Bonwick 		VERIFY3U(EEXIST, ==, zap_add(os, object, hc[i],
4128b24ab676SJeff Bonwick 		    sizeof (uint64_t), 1, &value[i], tx));
4129b420f3adSRichard Lowe 		VERIFY3U(0, ==,
4130b420f3adSRichard Lowe 		    zap_length(os, object, hc[i], &zl_intsize, &zl_ints));
4131b24ab676SJeff Bonwick 		ASSERT3U(zl_intsize, ==, sizeof (uint64_t));
4132b24ab676SJeff Bonwick 		ASSERT3U(zl_ints, ==, 1);
4133fa9e4066Sahrens 	}
4134b24ab676SJeff Bonwick 	for (i = 0; i < 2; i++) {
4135b420f3adSRichard Lowe 		VERIFY3U(0, ==, zap_remove(os, object, hc[i], tx));
4136b24ab676SJeff Bonwick 	}
4137b24ab676SJeff Bonwick 	dmu_tx_commit(tx);
4138fa9e4066Sahrens 
4139b24ab676SJeff Bonwick 	/*
4140b24ab676SJeff Bonwick 	 * Generate a buch of random entries.
4141b24ab676SJeff Bonwick 	 */
4142fa9e4066Sahrens 	ints = MAX(ZTEST_ZAP_MIN_INTS, object % ZTEST_ZAP_MAX_INTS);
4143fa9e4066Sahrens 
4144e05725b1Sbonwick 	prop = ztest_random(ZTEST_ZAP_MAX_PROPS);
4145e05725b1Sbonwick 	(void) sprintf(propname, "prop_%llu", (u_longlong_t)prop);
4146e05725b1Sbonwick 	(void) sprintf(txgname, "txg_%llu", (u_longlong_t)prop);
4147e05725b1Sbonwick 	bzero(value, sizeof (value));
4148e05725b1Sbonwick 	last_txg = 0;
4149fa9e4066Sahrens 
4150e05725b1Sbonwick 	/*
4151e05725b1Sbonwick 	 * If these zap entries already exist, validate their contents.
4152e05725b1Sbonwick 	 */
4153e05725b1Sbonwick 	error = zap_length(os, object, txgname, &zl_intsize, &zl_ints);
4154e05725b1Sbonwick 	if (error == 0) {
4155e05725b1Sbonwick 		ASSERT3U(zl_intsize, ==, sizeof (uint64_t));
4156e05725b1Sbonwick 		ASSERT3U(zl_ints, ==, 1);
4157fa9e4066Sahrens 
4158e05725b1Sbonwick 		VERIFY(zap_lookup(os, object, txgname, zl_intsize,
4159e05725b1Sbonwick 		    zl_ints, &last_txg) == 0);
4160fa9e4066Sahrens 
4161e05725b1Sbonwick 		VERIFY(zap_length(os, object, propname, &zl_intsize,
4162e05725b1Sbonwick 		    &zl_ints) == 0);
4163fa9e4066Sahrens 
4164e05725b1Sbonwick 		ASSERT3U(zl_intsize, ==, sizeof (uint64_t));
4165e05725b1Sbonwick 		ASSERT3U(zl_ints, ==, ints);
4166fa9e4066Sahrens 
4167e05725b1Sbonwick 		VERIFY(zap_lookup(os, object, propname, zl_intsize,
4168e05725b1Sbonwick 		    zl_ints, value) == 0);
4169fa9e4066Sahrens 
4170e05725b1Sbonwick 		for (i = 0; i < ints; i++) {
4171e05725b1Sbonwick 			ASSERT3U(value[i], ==, last_txg + object + i);
4172fa9e4066Sahrens 		}
4173e05725b1Sbonwick 	} else {
4174e05725b1Sbonwick 		ASSERT3U(error, ==, ENOENT);
4175e05725b1Sbonwick 	}
4176fa9e4066Sahrens 
4177e05725b1Sbonwick 	/*
4178e05725b1Sbonwick 	 * Atomically update two entries in our zap object.
4179e05725b1Sbonwick 	 * The first is named txg_%llu, and contains the txg
4180e05725b1Sbonwick 	 * in which the property was last updated.  The second
4181e05725b1Sbonwick 	 * is named prop_%llu, and the nth element of its value
4182e05725b1Sbonwick 	 * should be txg + object + n.
4183e05725b1Sbonwick 	 */
4184e05725b1Sbonwick 	tx = dmu_tx_create(os);
4185b24ab676SJeff Bonwick 	dmu_tx_hold_zap(tx, object, B_TRUE, NULL);
4186b24ab676SJeff Bonwick 	txg = ztest_tx_assign(tx, TXG_MIGHTWAIT, FTAG);
4187b24ab676SJeff Bonwick 	if (txg == 0)
4188e05725b1Sbonwick 		return;
4189fa9e4066Sahrens 
4190e05725b1Sbonwick 	if (last_txg > txg)
4191e05725b1Sbonwick 		fatal(0, "zap future leak: old %llu new %llu", last_txg, txg);
4192fa9e4066Sahrens 
4193e05725b1Sbonwick 	for (i = 0; i < ints; i++)
4194e05725b1Sbonwick 		value[i] = txg + object + i;
4195fa9e4066Sahrens 
4196b420f3adSRichard Lowe 	VERIFY3U(0, ==, zap_update(os, object, txgname, sizeof (uint64_t),
4197b24ab676SJeff Bonwick 	    1, &txg, tx));
4198b420f3adSRichard Lowe 	VERIFY3U(0, ==, zap_update(os, object, propname, sizeof (uint64_t),
4199b24ab676SJeff Bonwick 	    ints, value, tx));
4200fa9e4066Sahrens 
4201e05725b1Sbonwick 	dmu_tx_commit(tx);
4202fa9e4066Sahrens 
4203e05725b1Sbonwick 	/*
4204e05725b1Sbonwick 	 * Remove a random pair of entries.
4205e05725b1Sbonwick 	 */
4206e05725b1Sbonwick 	prop = ztest_random(ZTEST_ZAP_MAX_PROPS);
4207e05725b1Sbonwick 	(void) sprintf(propname, "prop_%llu", (u_longlong_t)prop);
4208e05725b1Sbonwick 	(void) sprintf(txgname, "txg_%llu", (u_longlong_t)prop);
4209fa9e4066Sahrens 
4210e05725b1Sbonwick 	error = zap_length(os, object, txgname, &zl_intsize, &zl_ints);
4211fa9e4066Sahrens 
4212e05725b1Sbonwick 	if (error == ENOENT)
4213e05725b1Sbonwick 		return;
4214fa9e4066Sahrens 
4215fb09f5aaSMadhav Suresh 	ASSERT0(error);
4216fa9e4066Sahrens 
4217e05725b1Sbonwick 	tx = dmu_tx_create(os);
4218b24ab676SJeff Bonwick 	dmu_tx_hold_zap(tx, object, B_TRUE, NULL);
4219b24ab676SJeff Bonwick 	txg = ztest_tx_assign(tx, TXG_MIGHTWAIT, FTAG);
4220b24ab676SJeff Bonwick 	if (txg == 0)
422112a2833aSSanjeev Bagewadi 		return;
4222b420f3adSRichard Lowe 	VERIFY3U(0, ==, zap_remove(os, object, txgname, tx));
4223b420f3adSRichard Lowe 	VERIFY3U(0, ==, zap_remove(os, object, propname, tx));
422412a2833aSSanjeev Bagewadi 	dmu_tx_commit(tx);
422512a2833aSSanjeev Bagewadi }
422612a2833aSSanjeev Bagewadi 
422712a2833aSSanjeev Bagewadi /*
422812a2833aSSanjeev Bagewadi  * Testcase to test the upgrading of a microzap to fatzap.
422912a2833aSSanjeev Bagewadi  */
423012a2833aSSanjeev Bagewadi void
4231b24ab676SJeff Bonwick ztest_fzap(ztest_ds_t *zd, uint64_t id)
423212a2833aSSanjeev Bagewadi {
4233b24ab676SJeff Bonwick 	objset_t *os = zd->zd_os;
4234b24ab676SJeff Bonwick 	ztest_od_t od[1];
4235b24ab676SJeff Bonwick 	uint64_t object, txg;
423612a2833aSSanjeev Bagewadi 
4237b24ab676SJeff Bonwick 	ztest_od_init(&od[0], id, FTAG, 0, DMU_OT_ZAP_OTHER, 0, 0);
423812a2833aSSanjeev Bagewadi 
4239b24ab676SJeff Bonwick 	if (ztest_object_init(zd, od, sizeof (od), !ztest_random(2)) != 0)
4240b24ab676SJeff Bonwick 		return;
424112a2833aSSanjeev Bagewadi 
4242b24ab676SJeff Bonwick 	object = od[0].od_object;
424312a2833aSSanjeev Bagewadi 
424412a2833aSSanjeev Bagewadi 	/*
4245b24ab676SJeff Bonwick 	 * Add entries to this ZAP and make sure it spills over
424612a2833aSSanjeev Bagewadi 	 * and gets upgraded to a fatzap. Also, since we are adding
4247b24ab676SJeff Bonwick 	 * 2050 entries we should see ptrtbl growth and leaf-block split.
424812a2833aSSanjeev Bagewadi 	 */
4249b24ab676SJeff Bonwick 	for (int i = 0; i < 2050; i++) {
4250b24ab676SJeff Bonwick 		char name[MAXNAMELEN];
4251b24ab676SJeff Bonwick 		uint64_t value = i;
4252b24ab676SJeff Bonwick 		dmu_tx_t *tx;
4253b24ab676SJeff Bonwick 		int error;
425412a2833aSSanjeev Bagewadi 
4255b24ab676SJeff Bonwick 		(void) snprintf(name, sizeof (name), "fzap-%llu-%llu",
4256b24ab676SJeff Bonwick 		    id, value);
425712a2833aSSanjeev Bagewadi 
4258b24ab676SJeff Bonwick 		tx = dmu_tx_create(os);
4259b24ab676SJeff Bonwick 		dmu_tx_hold_zap(tx, object, B_TRUE, name);
4260b24ab676SJeff Bonwick 		txg = ztest_tx_assign(tx, TXG_MIGHTWAIT, FTAG);
4261b24ab676SJeff Bonwick 		if (txg == 0)
426212a2833aSSanjeev Bagewadi 			return;
4263b24ab676SJeff Bonwick 		error = zap_add(os, object, name, sizeof (uint64_t), 1,
4264b24ab676SJeff Bonwick 		    &value, tx);
426512a2833aSSanjeev Bagewadi 		ASSERT(error == 0 || error == EEXIST);
426612a2833aSSanjeev Bagewadi 		dmu_tx_commit(tx);
426712a2833aSSanjeev Bagewadi 	}
4268fa9e4066Sahrens }
4269fa9e4066Sahrens 
4270b24ab676SJeff Bonwick /* ARGSUSED */
4271fa9e4066Sahrens void
4272b24ab676SJeff Bonwick ztest_zap_parallel(ztest_ds_t *zd, uint64_t id)
4273fa9e4066Sahrens {
4274b24ab676SJeff Bonwick 	objset_t *os = zd->zd_os;
4275b24ab676SJeff Bonwick 	ztest_od_t od[1];
4276fa9e4066Sahrens 	uint64_t txg, object, count, wsize, wc, zl_wsize, zl_wc;
4277fa9e4066Sahrens 	dmu_tx_t *tx;
4278fa9e4066Sahrens 	int i, namelen, error;
4279b24ab676SJeff Bonwick 	int micro = ztest_random(2);
4280fa9e4066Sahrens 	char name[20], string_value[20];
4281fa9e4066Sahrens 	void *data;
4282fa9e4066Sahrens 
4283b24ab676SJeff Bonwick 	ztest_od_init(&od[0], ID_PARALLEL, FTAG, micro, DMU_OT_ZAP_OTHER, 0, 0);
4284b24ab676SJeff Bonwick 
4285b24ab676SJeff Bonwick 	if (ztest_object_init(zd, od, sizeof (od), B_FALSE) != 0)
4286b24ab676SJeff Bonwick 		return;
4287b24ab676SJeff Bonwick 
4288b24ab676SJeff Bonwick 	object = od[0].od_object;
4289b24ab676SJeff Bonwick 
4290e05725b1Sbonwick 	/*
4291e05725b1Sbonwick 	 * Generate a random name of the form 'xxx.....' where each
4292e05725b1Sbonwick 	 * x is a random printable character and the dots are dots.
4293e05725b1Sbonwick 	 * There are 94 such characters, and the name length goes from
4294e05725b1Sbonwick 	 * 6 to 20, so there are 94^3 * 15 = 12,458,760 possible names.
4295e05725b1Sbonwick 	 */
4296e05725b1Sbonwick 	namelen = ztest_random(sizeof (name) - 5) + 5 + 1;
4297fa9e4066Sahrens 
4298e05725b1Sbonwick 	for (i = 0; i < 3; i++)
4299e05725b1Sbonwick 		name[i] = '!' + ztest_random('~' - '!' + 1);
4300e05725b1Sbonwick 	for (; i < namelen - 1; i++)
4301e05725b1Sbonwick 		name[i] = '.';
4302e05725b1Sbonwick 	name[i] = '\0';
4303fa9e4066Sahrens 
4304b24ab676SJeff Bonwick 	if ((namelen & 1) || micro) {
4305e05725b1Sbonwick 		wsize = sizeof (txg);
4306e05725b1Sbonwick 		wc = 1;
4307e05725b1Sbonwick 		data = &txg;
4308e05725b1Sbonwick 	} else {
4309e05725b1Sbonwick 		wsize = 1;
4310e05725b1Sbonwick 		wc = namelen;
4311e05725b1Sbonwick 		data = string_value;
4312e05725b1Sbonwick 	}
4313fa9e4066Sahrens 
4314e05725b1Sbonwick 	count = -1ULL;
43153b2aab18SMatthew Ahrens 	VERIFY0(zap_count(os, object, &count));
4316e05725b1Sbonwick 	ASSERT(count != -1ULL);
4317fa9e4066Sahrens 
4318e05725b1Sbonwick 	/*
4319e05725b1Sbonwick 	 * Select an operation: length, lookup, add, update, remove.
4320e05725b1Sbonwick 	 */
4321e05725b1Sbonwick 	i = ztest_random(5);
4322e05725b1Sbonwick 
4323e05725b1Sbonwick 	if (i >= 2) {
4324e05725b1Sbonwick 		tx = dmu_tx_create(os);
4325b24ab676SJeff Bonwick 		dmu_tx_hold_zap(tx, object, B_TRUE, NULL);
4326b24ab676SJeff Bonwick 		txg = ztest_tx_assign(tx, TXG_MIGHTWAIT, FTAG);
4327b24ab676SJeff Bonwick 		if (txg == 0)
4328e05725b1Sbonwick 			return;
4329e05725b1Sbonwick 		bcopy(name, string_value, namelen);
4330e05725b1Sbonwick 	} else {
4331e05725b1Sbonwick 		tx = NULL;
4332e05725b1Sbonwick 		txg = 0;
4333e05725b1Sbonwick 		bzero(string_value, namelen);
4334e05725b1Sbonwick 	}
4335fa9e4066Sahrens 
4336e05725b1Sbonwick 	switch (i) {
4337fa9e4066Sahrens 
4338e05725b1Sbonwick 	case 0:
4339e05725b1Sbonwick 		error = zap_length(os, object, name, &zl_wsize, &zl_wc);
4340e05725b1Sbonwick 		if (error == 0) {
4341e05725b1Sbonwick 			ASSERT3U(wsize, ==, zl_wsize);
4342e05725b1Sbonwick 			ASSERT3U(wc, ==, zl_wc);
4343e05725b1Sbonwick 		} else {
4344e05725b1Sbonwick 			ASSERT3U(error, ==, ENOENT);
4345e05725b1Sbonwick 		}
4346e05725b1Sbonwick 		break;
4347fa9e4066Sahrens 
4348e05725b1Sbonwick 	case 1:
4349e05725b1Sbonwick 		error = zap_lookup(os, object, name, wsize, wc, data);
4350e05725b1Sbonwick 		if (error == 0) {
4351e05725b1Sbonwick 			if (data == string_value &&
4352e05725b1Sbonwick 			    bcmp(name, data, namelen) != 0)
4353e05725b1Sbonwick 				fatal(0, "name '%s' != val '%s' len %d",
4354e05725b1Sbonwick 				    name, data, namelen);
4355e05725b1Sbonwick 		} else {
4356e05725b1Sbonwick 			ASSERT3U(error, ==, ENOENT);
4357e05725b1Sbonwick 		}
4358e05725b1Sbonwick 		break;
4359fa9e4066Sahrens 
4360e05725b1Sbonwick 	case 2:
4361e05725b1Sbonwick 		error = zap_add(os, object, name, wsize, wc, data, tx);
4362e05725b1Sbonwick 		ASSERT(error == 0 || error == EEXIST);
4363e05725b1Sbonwick 		break;
4364fa9e4066Sahrens 
4365e05725b1Sbonwick 	case 3:
4366e05725b1Sbonwick 		VERIFY(zap_update(os, object, name, wsize, wc, data, tx) == 0);
4367e05725b1Sbonwick 		break;
4368fa9e4066Sahrens 
4369e05725b1Sbonwick 	case 4:
4370e05725b1Sbonwick 		error = zap_remove(os, object, name, tx);
4371e05725b1Sbonwick 		ASSERT(error == 0 || error == ENOENT);
4372e05725b1Sbonwick 		break;
4373fa9e4066Sahrens 	}
4374e05725b1Sbonwick 
4375e05725b1Sbonwick 	if (tx != NULL)
4376e05725b1Sbonwick 		dmu_tx_commit(tx);
4377fa9e4066Sahrens }
4378fa9e4066Sahrens 
4379d20e665cSRicardo M. Correia /*
4380d20e665cSRicardo M. Correia  * Commit callback data.
4381d20e665cSRicardo M. Correia  */
4382d20e665cSRicardo M. Correia typedef struct ztest_cb_data {
4383d20e665cSRicardo M. Correia 	list_node_t		zcd_node;
4384d20e665cSRicardo M. Correia 	uint64_t		zcd_txg;
4385d20e665cSRicardo M. Correia 	int			zcd_expected_err;
4386d20e665cSRicardo M. Correia 	boolean_t		zcd_added;
4387d20e665cSRicardo M. Correia 	boolean_t		zcd_called;
4388d20e665cSRicardo M. Correia 	spa_t			*zcd_spa;
4389d20e665cSRicardo M. Correia } ztest_cb_data_t;
4390d20e665cSRicardo M. Correia 
4391d20e665cSRicardo M. Correia /* This is the actual commit callback function */
4392d20e665cSRicardo M. Correia static void
4393d20e665cSRicardo M. Correia ztest_commit_callback(void *arg, int error)
4394d20e665cSRicardo M. Correia {
4395d20e665cSRicardo M. Correia 	ztest_cb_data_t *data = arg;
4396d20e665cSRicardo M. Correia 	uint64_t synced_txg;
4397d20e665cSRicardo M. Correia 
4398d20e665cSRicardo M. Correia 	VERIFY(data != NULL);
4399d20e665cSRicardo M. Correia 	VERIFY3S(data->zcd_expected_err, ==, error);
4400d20e665cSRicardo M. Correia 	VERIFY(!data->zcd_called);
4401d20e665cSRicardo M. Correia 
4402d20e665cSRicardo M. Correia 	synced_txg = spa_last_synced_txg(data->zcd_spa);
4403d20e665cSRicardo M. Correia 	if (data->zcd_txg > synced_txg)
4404d20e665cSRicardo M. Correia 		fatal(0, "commit callback of txg %" PRIu64 " called prematurely"
4405d20e665cSRicardo M. Correia 		    ", last synced txg = %" PRIu64 "\n", data->zcd_txg,
4406d20e665cSRicardo M. Correia 		    synced_txg);
4407d20e665cSRicardo M. Correia 
4408d20e665cSRicardo M. Correia 	data->zcd_called = B_TRUE;
4409d20e665cSRicardo M. Correia 
4410d20e665cSRicardo M. Correia 	if (error == ECANCELED) {
4411fb09f5aaSMadhav Suresh 		ASSERT0(data->zcd_txg);
4412d20e665cSRicardo M. Correia 		ASSERT(!data->zcd_added);
4413d20e665cSRicardo M. Correia 
4414d20e665cSRicardo M. Correia 		/*
4415d20e665cSRicardo M. Correia 		 * The private callback data should be destroyed here, but
4416d20e665cSRicardo M. Correia 		 * since we are going to check the zcd_called field after
4417d20e665cSRicardo M. Correia 		 * dmu_tx_abort(), we will destroy it there.
4418d20e665cSRicardo M. Correia 		 */
4419d20e665cSRicardo M. Correia 		return;
4420d20e665cSRicardo M. Correia 	}
4421d20e665cSRicardo M. Correia 
4422d20e665cSRicardo M. Correia 	/* Was this callback added to the global callback list? */
4423d20e665cSRicardo M. Correia 	if (!data->zcd_added)
4424d20e665cSRicardo M. Correia 		goto out;
4425d20e665cSRicardo M. Correia 
4426d20e665cSRicardo M. Correia 	ASSERT3U(data->zcd_txg, !=, 0);
4427d20e665cSRicardo M. Correia 
4428d20e665cSRicardo M. Correia 	/* Remove our callback from the list */
4429d20e665cSRicardo M. Correia 	(void) mutex_lock(&zcl.zcl_callbacks_lock);
4430d20e665cSRicardo M. Correia 	list_remove(&zcl.zcl_callbacks, data);
4431d20e665cSRicardo M. Correia 	(void) mutex_unlock(&zcl.zcl_callbacks_lock);
4432d20e665cSRicardo M. Correia 
4433d20e665cSRicardo M. Correia out:
4434d20e665cSRicardo M. Correia 	umem_free(data, sizeof (ztest_cb_data_t));
4435d20e665cSRicardo M. Correia }
4436d20e665cSRicardo M. Correia 
4437d20e665cSRicardo M. Correia /* Allocate and initialize callback data structure */
4438d20e665cSRicardo M. Correia static ztest_cb_data_t *
4439d20e665cSRicardo M. Correia ztest_create_cb_data(objset_t *os, uint64_t txg)
4440d20e665cSRicardo M. Correia {
4441d20e665cSRicardo M. Correia 	ztest_cb_data_t *cb_data;
4442d20e665cSRicardo M. Correia 
4443d20e665cSRicardo M. Correia 	cb_data = umem_zalloc(sizeof (ztest_cb_data_t), UMEM_NOFAIL);
4444d20e665cSRicardo M. Correia 
4445d20e665cSRicardo M. Correia 	cb_data->zcd_txg = txg;
4446d20e665cSRicardo M. Correia 	cb_data->zcd_spa = dmu_objset_spa(os);
4447d20e665cSRicardo M. Correia 
4448d20e665cSRicardo M. Correia 	return (cb_data);
4449d20e665cSRicardo M. Correia }
4450d20e665cSRicardo M. Correia 
4451d20e665cSRicardo M. Correia /*
4452d20e665cSRicardo M. Correia  * If a number of txgs equal to this threshold have been created after a commit
4453d20e665cSRicardo M. Correia  * callback has been registered but not called, then we assume there is an
4454d20e665cSRicardo M. Correia  * implementation bug.
4455d20e665cSRicardo M. Correia  */
4456d20e665cSRicardo M. Correia #define	ZTEST_COMMIT_CALLBACK_THRESH	(TXG_CONCURRENT_STATES + 2)
4457d20e665cSRicardo M. Correia 
4458d20e665cSRicardo M. Correia /*
4459d20e665cSRicardo M. Correia  * Commit callback test.
4460d20e665cSRicardo M. Correia  */
4461d20e665cSRicardo M. Correia void
4462b24ab676SJeff Bonwick ztest_dmu_commit_callbacks(ztest_ds_t *zd, uint64_t id)
4463d20e665cSRicardo M. Correia {
4464b24ab676SJeff Bonwick 	objset_t *os = zd->zd_os;
4465b24ab676SJeff Bonwick 	ztest_od_t od[1];
4466d20e665cSRicardo M. Correia 	dmu_tx_t *tx;
4467d20e665cSRicardo M. Correia 	ztest_cb_data_t *cb_data[3], *tmp_cb;
4468d20e665cSRicardo M. Correia 	uint64_t old_txg, txg;
4469d20e665cSRicardo M. Correia 	int i, error;
4470d20e665cSRicardo M. Correia 
4471b24ab676SJeff Bonwick 	ztest_od_init(&od[0], id, FTAG, 0, DMU_OT_UINT64_OTHER, 0, 0);
4472b24ab676SJeff Bonwick 
4473b24ab676SJeff Bonwick 	if (ztest_object_init(zd, od, sizeof (od), B_FALSE) != 0)
4474b24ab676SJeff Bonwick 		return;
4475b24ab676SJeff Bonwick 
4476d20e665cSRicardo M. Correia 	tx = dmu_tx_create(os);
4477d20e665cSRicardo M. Correia 
4478d20e665cSRicardo M. Correia 	cb_data[0] = ztest_create_cb_data(os, 0);
4479d20e665cSRicardo M. Correia 	dmu_tx_callback_register(tx, ztest_commit_callback, cb_data[0]);
4480d20e665cSRicardo M. Correia 
4481b24ab676SJeff Bonwick 	dmu_tx_hold_write(tx, od[0].od_object, 0, sizeof (uint64_t));
4482d20e665cSRicardo M. Correia 
4483d20e665cSRicardo M. Correia 	/* Every once in a while, abort the transaction on purpose */
4484d20e665cSRicardo M. Correia 	if (ztest_random(100) == 0)
4485d20e665cSRicardo M. Correia 		error = -1;
4486d20e665cSRicardo M. Correia 
4487d20e665cSRicardo M. Correia 	if (!error)
4488d20e665cSRicardo M. Correia 		error = dmu_tx_assign(tx, TXG_NOWAIT);
4489d20e665cSRicardo M. Correia 
4490d20e665cSRicardo M. Correia 	txg = error ? 0 : dmu_tx_get_txg(tx);
4491d20e665cSRicardo M. Correia 
4492d20e665cSRicardo M. Correia 	cb_data[0]->zcd_txg = txg;
4493d20e665cSRicardo M. Correia 	cb_data[1] = ztest_create_cb_data(os, txg);
4494d20e665cSRicardo M. Correia 	dmu_tx_callback_register(tx, ztest_commit_callback, cb_data[1]);
4495d20e665cSRicardo M. Correia 
4496d20e665cSRicardo M. Correia 	if (error) {
4497d20e665cSRicardo M. Correia 		/*
4498d20e665cSRicardo M. Correia 		 * It's not a strict requirement to call the registered
4499d20e665cSRicardo M. Correia 		 * callbacks from inside dmu_tx_abort(), but that's what
4500d20e665cSRicardo M. Correia 		 * it's supposed to happen in the current implementation
4501d20e665cSRicardo M. Correia 		 * so we will check for that.
4502d20e665cSRicardo M. Correia 		 */
4503d20e665cSRicardo M. Correia 		for (i = 0; i < 2; i++) {
4504d20e665cSRicardo M. Correia 			cb_data[i]->zcd_expected_err = ECANCELED;
4505d20e665cSRicardo M. Correia 			VERIFY(!cb_data[i]->zcd_called);
4506d20e665cSRicardo M. Correia 		}
4507d20e665cSRicardo M. Correia 
4508d20e665cSRicardo M. Correia 		dmu_tx_abort(tx);
4509d20e665cSRicardo M. Correia 
4510d20e665cSRicardo M. Correia 		for (i = 0; i < 2; i++) {
4511d20e665cSRicardo M. Correia 			VERIFY(cb_data[i]->zcd_called);
4512d20e665cSRicardo M. Correia 			umem_free(cb_data[i], sizeof (ztest_cb_data_t));
4513d20e665cSRicardo M. Correia 		}
4514d20e665cSRicardo M. Correia 
4515d20e665cSRicardo M. Correia 		return;
4516d20e665cSRicardo M. Correia 	}
4517d20e665cSRicardo M. Correia 
4518d20e665cSRicardo M. Correia 	cb_data[2] = ztest_create_cb_data(os, txg);
4519d20e665cSRicardo M. Correia 	dmu_tx_callback_register(tx, ztest_commit_callback, cb_data[2]);
4520d20e665cSRicardo M. Correia 
4521d20e665cSRicardo M. Correia 	/*
4522d20e665cSRicardo M. Correia 	 * Read existing data to make sure there isn't a future leak.
4523d20e665cSRicardo M. Correia 	 */
4524b24ab676SJeff Bonwick 	VERIFY(0 == dmu_read(os, od[0].od_object, 0, sizeof (uint64_t),
4525d20e665cSRicardo M. Correia 	    &old_txg, DMU_READ_PREFETCH));
4526d20e665cSRicardo M. Correia 
4527d20e665cSRicardo M. Correia 	if (old_txg > txg)
4528d20e665cSRicardo M. Correia 		fatal(0, "future leak: got %" PRIu64 ", open txg is %" PRIu64,
4529d20e665cSRicardo M. Correia 		    old_txg, txg);
4530d20e665cSRicardo M. Correia 
4531b24ab676SJeff Bonwick 	dmu_write(os, od[0].od_object, 0, sizeof (uint64_t), &txg, tx);
4532d20e665cSRicardo M. Correia 
4533d20e665cSRicardo M. Correia 	(void) mutex_lock(&zcl.zcl_callbacks_lock);
4534d20e665cSRicardo M. Correia 
4535d20e665cSRicardo M. Correia 	/*
4536d20e665cSRicardo M. Correia 	 * Since commit callbacks don't have any ordering requirement and since
4537d20e665cSRicardo M. Correia 	 * it is theoretically possible for a commit callback to be called
4538d20e665cSRicardo M. Correia 	 * after an arbitrary amount of time has elapsed since its txg has been
4539d20e665cSRicardo M. Correia 	 * synced, it is difficult to reliably determine whether a commit
4540d20e665cSRicardo M. Correia 	 * callback hasn't been called due to high load or due to a flawed
4541d20e665cSRicardo M. Correia 	 * implementation.
4542d20e665cSRicardo M. Correia 	 *
4543d20e665cSRicardo M. Correia 	 * In practice, we will assume that if after a certain number of txgs a
4544d20e665cSRicardo M. Correia 	 * commit callback hasn't been called, then most likely there's an
4545d20e665cSRicardo M. Correia 	 * implementation bug..
4546d20e665cSRicardo M. Correia 	 */
4547d20e665cSRicardo M. Correia 	tmp_cb = list_head(&zcl.zcl_callbacks);
4548d20e665cSRicardo M. Correia 	if (tmp_cb != NULL &&
4549b3d9f2e2SWill Andrews 	    (txg - ZTEST_COMMIT_CALLBACK_THRESH) > tmp_cb->zcd_txg) {
4550d20e665cSRicardo M. Correia 		fatal(0, "Commit callback threshold exceeded, oldest txg: %"
4551d20e665cSRicardo M. Correia 		    PRIu64 ", open txg: %" PRIu64 "\n", tmp_cb->zcd_txg, txg);
4552d20e665cSRicardo M. Correia 	}
4553d20e665cSRicardo M. Correia 
4554d20e665cSRicardo M. Correia 	/*
4555d20e665cSRicardo M. Correia 	 * Let's find the place to insert our callbacks.
4556d20e665cSRicardo M. Correia 	 *
4557d20e665cSRicardo M. Correia 	 * Even though the list is ordered by txg, it is possible for the
4558d20e665cSRicardo M. Correia 	 * insertion point to not be the end because our txg may already be
4559d20e665cSRicardo M. Correia 	 * quiescing at this point and other callbacks in the open txg
4560d20e665cSRicardo M. Correia 	 * (from other objsets) may have sneaked in.
4561d20e665cSRicardo M. Correia 	 */
4562d20e665cSRicardo M. Correia 	tmp_cb = list_tail(&zcl.zcl_callbacks);
4563d20e665cSRicardo M. Correia 	while (tmp_cb != NULL && tmp_cb->zcd_txg > txg)
4564d20e665cSRicardo M. Correia 		tmp_cb = list_prev(&zcl.zcl_callbacks, tmp_cb);
4565d20e665cSRicardo M. Correia 
4566d20e665cSRicardo M. Correia 	/* Add the 3 callbacks to the list */
4567d20e665cSRicardo M. Correia 	for (i = 0; i < 3; i++) {
4568d20e665cSRicardo M. Correia 		if (tmp_cb == NULL)
4569d20e665cSRicardo M. Correia 			list_insert_head(&zcl.zcl_callbacks, cb_data[i]);
4570d20e665cSRicardo M. Correia 		else
4571d20e665cSRicardo M. Correia 			list_insert_after(&zcl.zcl_callbacks, tmp_cb,
4572d20e665cSRicardo M. Correia 			    cb_data[i]);
4573d20e665cSRicardo M. Correia 
4574d20e665cSRicardo M. Correia 		cb_data[i]->zcd_added = B_TRUE;
4575d20e665cSRicardo M. Correia 		VERIFY(!cb_data[i]->zcd_called);
4576d20e665cSRicardo M. Correia 
4577d20e665cSRicardo M. Correia 		tmp_cb = cb_data[i];
4578d20e665cSRicardo M. Correia 	}
4579d20e665cSRicardo M. Correia 
4580d20e665cSRicardo M. Correia 	(void) mutex_unlock(&zcl.zcl_callbacks_lock);
4581d20e665cSRicardo M. Correia 
4582d20e665cSRicardo M. Correia 	dmu_tx_commit(tx);
4583d20e665cSRicardo M. Correia }
4584d20e665cSRicardo M. Correia 
4585b24ab676SJeff Bonwick /* ARGSUSED */
4586fa9e4066Sahrens void
4587b24ab676SJeff Bonwick ztest_dsl_prop_get_set(ztest_ds_t *zd, uint64_t id)
4588fa9e4066Sahrens {
4589b24ab676SJeff Bonwick 	zfs_prop_t proplist[] = {
4590b24ab676SJeff Bonwick 		ZFS_PROP_CHECKSUM,
4591b24ab676SJeff Bonwick 		ZFS_PROP_COMPRESSION,
4592b24ab676SJeff Bonwick 		ZFS_PROP_COPIES,
4593b24ab676SJeff Bonwick 		ZFS_PROP_DEDUP
4594b24ab676SJeff Bonwick 	};
4595fa9e4066Sahrens 
4596420dfc95SChris Siden 	(void) rw_rdlock(&ztest_name_lock);
4597fa9e4066Sahrens 
4598b24ab676SJeff Bonwick 	for (int p = 0; p < sizeof (proplist) / sizeof (proplist[0]); p++)
4599b24ab676SJeff Bonwick 		(void) ztest_dsl_prop_set_uint64(zd->zd_name, proplist[p],
4600b24ab676SJeff Bonwick 		    ztest_random_dsl_prop(proplist[p]), (int)ztest_random(2));
4601fa9e4066Sahrens 
4602420dfc95SChris Siden 	(void) rw_unlock(&ztest_name_lock);
4603b24ab676SJeff Bonwick }
4604fa9e4066Sahrens 
4605b24ab676SJeff Bonwick /* ARGSUSED */
4606b24ab676SJeff Bonwick void
4607b24ab676SJeff Bonwick ztest_spa_prop_get_set(ztest_ds_t *zd, uint64_t id)
4608b24ab676SJeff Bonwick {
4609b24ab676SJeff Bonwick 	nvlist_t *props = NULL;
4610ea8dc4b6Seschrock 
4611420dfc95SChris Siden 	(void) rw_rdlock(&ztest_name_lock);
4612ea8dc4b6Seschrock 
4613420dfc95SChris Siden 	(void) ztest_spa_prop_set_uint64(ZPOOL_PROP_DEDUPDITTO,
4614b24ab676SJeff Bonwick 	    ZIO_DEDUPDITTO_MIN + ztest_random(ZIO_DEDUPDITTO_MIN));
4615fa9e4066Sahrens 
4616fb09f5aaSMadhav Suresh 	VERIFY0(spa_prop_get(ztest_spa, &props));
4617fa9e4066Sahrens 
4618420dfc95SChris Siden 	if (ztest_opts.zo_verbose >= 6)
4619b24ab676SJeff Bonwick 		dump_nvlist(props, 4);
4620fa9e4066Sahrens 
4621b24ab676SJeff Bonwick 	nvlist_free(props);
4622fa9e4066Sahrens 
4623420dfc95SChris Siden 	(void) rw_unlock(&ztest_name_lock);
4624fa9e4066Sahrens }
4625fa9e4066Sahrens 
46263b2aab18SMatthew Ahrens static int
46273b2aab18SMatthew Ahrens user_release_one(const char *snapname, const char *holdname)
46283b2aab18SMatthew Ahrens {
46293b2aab18SMatthew Ahrens 	nvlist_t *snaps, *holds;
46303b2aab18SMatthew Ahrens 	int error;
46313b2aab18SMatthew Ahrens 
46323b2aab18SMatthew Ahrens 	snaps = fnvlist_alloc();
46333b2aab18SMatthew Ahrens 	holds = fnvlist_alloc();
46343b2aab18SMatthew Ahrens 	fnvlist_add_boolean(holds, holdname);
46353b2aab18SMatthew Ahrens 	fnvlist_add_nvlist(snaps, snapname, holds);
46363b2aab18SMatthew Ahrens 	fnvlist_free(holds);
46373b2aab18SMatthew Ahrens 	error = dsl_dataset_user_release(snaps, NULL);
46383b2aab18SMatthew Ahrens 	fnvlist_free(snaps);
46393b2aab18SMatthew Ahrens 	return (error);
46403b2aab18SMatthew Ahrens }
46413b2aab18SMatthew Ahrens 
46425c987a37SChris Kirby /*
46435c987a37SChris Kirby  * Test snapshot hold/release and deferred destroy.
46445c987a37SChris Kirby  */
46455c987a37SChris Kirby void
4646b24ab676SJeff Bonwick ztest_dmu_snapshot_hold(ztest_ds_t *zd, uint64_t id)
46475c987a37SChris Kirby {
46485c987a37SChris Kirby 	int error;
4649b24ab676SJeff Bonwick 	objset_t *os = zd->zd_os;
46505c987a37SChris Kirby 	objset_t *origin;
46515c987a37SChris Kirby 	char snapname[100];
46525c987a37SChris Kirby 	char fullname[100];
46535c987a37SChris Kirby 	char clonename[100];
46545c987a37SChris Kirby 	char tag[100];
46555c987a37SChris Kirby 	char osname[MAXNAMELEN];
46563b2aab18SMatthew Ahrens 	nvlist_t *holds;
46575c987a37SChris Kirby 
4658420dfc95SChris Siden 	(void) rw_rdlock(&ztest_name_lock);
46595c987a37SChris Kirby 
46605c987a37SChris Kirby 	dmu_objset_name(os, osname);
46615c987a37SChris Kirby 
46623b2aab18SMatthew Ahrens 	(void) snprintf(snapname, sizeof (snapname), "sh1_%llu", id);
46633b2aab18SMatthew Ahrens 	(void) snprintf(fullname, sizeof (fullname), "%s@%s", osname, snapname);
46643b2aab18SMatthew Ahrens 	(void) snprintf(clonename, sizeof (clonename),
46653b2aab18SMatthew Ahrens 	    "%s/ch1_%llu", osname, id);
46663b2aab18SMatthew Ahrens 	(void) snprintf(tag, sizeof (tag), "tag_%llu", id);
46675c987a37SChris Kirby 
46685c987a37SChris Kirby 	/*
46695c987a37SChris Kirby 	 * Clean up from any previous run.
46705c987a37SChris Kirby 	 */
46713b2aab18SMatthew Ahrens 	error = dsl_destroy_head(clonename);
46723b2aab18SMatthew Ahrens 	if (error != ENOENT)
46733b2aab18SMatthew Ahrens 		ASSERT0(error);
46743b2aab18SMatthew Ahrens 	error = user_release_one(fullname, tag);
46753b2aab18SMatthew Ahrens 	if (error != ESRCH && error != ENOENT)
46763b2aab18SMatthew Ahrens 		ASSERT0(error);
46773b2aab18SMatthew Ahrens 	error = dsl_destroy_snapshot(fullname, B_FALSE);
46783b2aab18SMatthew Ahrens 	if (error != ENOENT)
46793b2aab18SMatthew Ahrens 		ASSERT0(error);
46805c987a37SChris Kirby 
46815c987a37SChris Kirby 	/*
46825c987a37SChris Kirby 	 * Create snapshot, clone it, mark snap for deferred destroy,
46835c987a37SChris Kirby 	 * destroy clone, verify snap was also destroyed.
46845c987a37SChris Kirby 	 */
46854445fffbSMatthew Ahrens 	error = dmu_objset_snapshot_one(osname, snapname);
46865c987a37SChris Kirby 	if (error) {
46875c987a37SChris Kirby 		if (error == ENOSPC) {
46885c987a37SChris Kirby 			ztest_record_enospc("dmu_objset_snapshot");
46895c987a37SChris Kirby 			goto out;
46905c987a37SChris Kirby 		}
46915c987a37SChris Kirby 		fatal(0, "dmu_objset_snapshot(%s) = %d", fullname, error);
46925c987a37SChris Kirby 	}
46935c987a37SChris Kirby 
46943b2aab18SMatthew Ahrens 	error = dmu_objset_clone(clonename, fullname);
46955c987a37SChris Kirby 	if (error) {
46965c987a37SChris Kirby 		if (error == ENOSPC) {
46975c987a37SChris Kirby 			ztest_record_enospc("dmu_objset_clone");
46985c987a37SChris Kirby 			goto out;
46995c987a37SChris Kirby 		}
47005c987a37SChris Kirby 		fatal(0, "dmu_objset_clone(%s) = %d", clonename, error);
47015c987a37SChris Kirby 	}
47025c987a37SChris Kirby 
47033b2aab18SMatthew Ahrens 	error = dsl_destroy_snapshot(fullname, B_TRUE);
47045c987a37SChris Kirby 	if (error) {
47053b2aab18SMatthew Ahrens 		fatal(0, "dsl_destroy_snapshot(%s, B_TRUE) = %d",
47065c987a37SChris Kirby 		    fullname, error);
47075c987a37SChris Kirby 	}
47085c987a37SChris Kirby 
47093b2aab18SMatthew Ahrens 	error = dsl_destroy_head(clonename);
47105c987a37SChris Kirby 	if (error)
47113b2aab18SMatthew Ahrens 		fatal(0, "dsl_destroy_head(%s) = %d", clonename, error);
47125c987a37SChris Kirby 
47135c987a37SChris Kirby 	error = dmu_objset_hold(fullname, FTAG, &origin);
47145c987a37SChris Kirby 	if (error != ENOENT)
47155c987a37SChris Kirby 		fatal(0, "dmu_objset_hold(%s) = %d", fullname, error);
47165c987a37SChris Kirby 
47175c987a37SChris Kirby 	/*
47185c987a37SChris Kirby 	 * Create snapshot, add temporary hold, verify that we can't
47195c987a37SChris Kirby 	 * destroy a held snapshot, mark for deferred destroy,
47205c987a37SChris Kirby 	 * release hold, verify snapshot was destroyed.
47215c987a37SChris Kirby 	 */
47224445fffbSMatthew Ahrens 	error = dmu_objset_snapshot_one(osname, snapname);
47235c987a37SChris Kirby 	if (error) {
47245c987a37SChris Kirby 		if (error == ENOSPC) {
47255c987a37SChris Kirby 			ztest_record_enospc("dmu_objset_snapshot");
47265c987a37SChris Kirby 			goto out;
47275c987a37SChris Kirby 		}
47285c987a37SChris Kirby 		fatal(0, "dmu_objset_snapshot(%s) = %d", fullname, error);
47295c987a37SChris Kirby 	}
47305c987a37SChris Kirby 
47313b2aab18SMatthew Ahrens 	holds = fnvlist_alloc();
47323b2aab18SMatthew Ahrens 	fnvlist_add_string(holds, fullname, tag);
47333b2aab18SMatthew Ahrens 	error = dsl_dataset_user_hold(holds, 0, NULL);
47343b2aab18SMatthew Ahrens 	fnvlist_free(holds);
47353b2aab18SMatthew Ahrens 
47365d7b4d43SMatthew Ahrens 	if (error == ENOSPC) {
47375d7b4d43SMatthew Ahrens 		ztest_record_enospc("dsl_dataset_user_hold");
47385d7b4d43SMatthew Ahrens 		goto out;
47395d7b4d43SMatthew Ahrens 	} else if (error) {
47405d7b4d43SMatthew Ahrens 		fatal(0, "dsl_dataset_user_hold(%s, %s) = %u",
47415d7b4d43SMatthew Ahrens 		    fullname, tag, error);
47425d7b4d43SMatthew Ahrens 	}
47435c987a37SChris Kirby 
47443b2aab18SMatthew Ahrens 	error = dsl_destroy_snapshot(fullname, B_FALSE);
47455c987a37SChris Kirby 	if (error != EBUSY) {
47463b2aab18SMatthew Ahrens 		fatal(0, "dsl_destroy_snapshot(%s, B_FALSE) = %d",
47475c987a37SChris Kirby 		    fullname, error);
47485c987a37SChris Kirby 	}
47495c987a37SChris Kirby 
47503b2aab18SMatthew Ahrens 	error = dsl_destroy_snapshot(fullname, B_TRUE);
47515c987a37SChris Kirby 	if (error) {
47523b2aab18SMatthew Ahrens 		fatal(0, "dsl_destroy_snapshot(%s, B_TRUE) = %d",
47535c987a37SChris Kirby 		    fullname, error);
47545c987a37SChris Kirby 	}
47555c987a37SChris Kirby 
47563b2aab18SMatthew Ahrens 	error = user_release_one(fullname, tag);
47575c987a37SChris Kirby 	if (error)
4758a7a845e4SSteven Hartland 		fatal(0, "user_release_one(%s, %s) = %d", fullname, tag, error);
47595c987a37SChris Kirby 
47603b2aab18SMatthew Ahrens 	VERIFY3U(dmu_objset_hold(fullname, FTAG, &origin), ==, ENOENT);
47615c987a37SChris Kirby 
47625c987a37SChris Kirby out:
4763420dfc95SChris Siden 	(void) rw_unlock(&ztest_name_lock);
47645c987a37SChris Kirby }
47655c987a37SChris Kirby 
4766fa9e4066Sahrens /*
4767fa9e4066Sahrens  * Inject random faults into the on-disk data.
4768fa9e4066Sahrens  */
4769b24ab676SJeff Bonwick /* ARGSUSED */
4770fa9e4066Sahrens void
4771b24ab676SJeff Bonwick ztest_fault_inject(ztest_ds_t *zd, uint64_t id)
4772fa9e4066Sahrens {
4773b24ab676SJeff Bonwick 	ztest_shared_t *zs = ztest_shared;
4774420dfc95SChris Siden 	spa_t *spa = ztest_spa;
4775fa9e4066Sahrens 	int fd;
4776fa9e4066Sahrens 	uint64_t offset;
47771195e687SMark J Musante 	uint64_t leaves;
4778fa9e4066Sahrens 	uint64_t bad = 0x1990c0ffeedecade;
4779fa9e4066Sahrens 	uint64_t top, leaf;
4780fa9e4066Sahrens 	char path0[MAXPATHLEN];
4781fa9e4066Sahrens 	char pathrand[MAXPATHLEN];
4782fa9e4066Sahrens 	size_t fsize;
4783b5152584SMatthew Ahrens 	int bshift = SPA_OLD_MAXBLOCKSHIFT + 2;	/* don't scrog all labels */
4784fa9e4066Sahrens 	int iters = 1000;
47851195e687SMark J Musante 	int maxfaults;
47861195e687SMark J Musante 	int mirror_save;
4787e14bb325SJeff Bonwick 	vdev_t *vd0 = NULL;
4788ea8dc4b6Seschrock 	uint64_t guid0 = 0;
47898f18d1faSGeorge Wilson 	boolean_t islog = B_FALSE;
4790ea8dc4b6Seschrock 
4791420dfc95SChris Siden 	VERIFY(mutex_lock(&ztest_vdev_lock) == 0);
47921195e687SMark J Musante 	maxfaults = MAXFAULTS();
4793420dfc95SChris Siden 	leaves = MAX(zs->zs_mirrors, 1) * ztest_opts.zo_raidz;
47941195e687SMark J Musante 	mirror_save = zs->zs_mirrors;
4795420dfc95SChris Siden 	VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
47961195e687SMark J Musante 
4797e14bb325SJeff Bonwick 	ASSERT(leaves >= 1);
4798fa9e4066Sahrens 
47992c1e2b44SGeorge Wilson 	/*
48002c1e2b44SGeorge Wilson 	 * Grab the name lock as reader. There are some operations
48012c1e2b44SGeorge Wilson 	 * which don't like to have their vdevs changed while
48022c1e2b44SGeorge Wilson 	 * they are in progress (i.e. spa_change_guid). Those
48032c1e2b44SGeorge Wilson 	 * operations will have grabbed the name lock as writer.
48042c1e2b44SGeorge Wilson 	 */
48052c1e2b44SGeorge Wilson 	(void) rw_rdlock(&ztest_name_lock);
48062c1e2b44SGeorge Wilson 
4807fa9e4066Sahrens 	/*
4808e14bb325SJeff Bonwick 	 * We need SCL_STATE here because we're going to look at vd0->vdev_tsd.
4809fa9e4066Sahrens 	 */
4810e14bb325SJeff Bonwick 	spa_config_enter(spa, SCL_STATE, FTAG, RW_READER);
4811fa9e4066Sahrens 
4812e14bb325SJeff Bonwick 	if (ztest_random(2) == 0) {
4813e14bb325SJeff Bonwick 		/*
4814b24ab676SJeff Bonwick 		 * Inject errors on a normal data device or slog device.
4815e14bb325SJeff Bonwick 		 */
4816b24ab676SJeff Bonwick 		top = ztest_random_vdev_top(spa, B_TRUE);
48171195e687SMark J Musante 		leaf = ztest_random(leaves) + zs->zs_splits;
4818fa9e4066Sahrens 
4819e14bb325SJeff Bonwick 		/*
4820e14bb325SJeff Bonwick 		 * Generate paths to the first leaf in this top-level vdev,
4821e14bb325SJeff Bonwick 		 * and to the random leaf we selected.  We'll induce transient
4822e14bb325SJeff Bonwick 		 * write failures and random online/offline activity on leaf 0,
4823e14bb325SJeff Bonwick 		 * and we'll write random garbage to the randomly chosen leaf.
4824e14bb325SJeff Bonwick 		 */
4825e14bb325SJeff Bonwick 		(void) snprintf(path0, sizeof (path0), ztest_dev_template,
4826420dfc95SChris Siden 		    ztest_opts.zo_dir, ztest_opts.zo_pool,
4827420dfc95SChris Siden 		    top * leaves + zs->zs_splits);
4828e14bb325SJeff Bonwick 		(void) snprintf(pathrand, sizeof (pathrand), ztest_dev_template,
4829420dfc95SChris Siden 		    ztest_opts.zo_dir, ztest_opts.zo_pool,
4830420dfc95SChris Siden 		    top * leaves + leaf);
4831fa9e4066Sahrens 
4832e14bb325SJeff Bonwick 		vd0 = vdev_lookup_by_path(spa->spa_root_vdev, path0);
48338f18d1faSGeorge Wilson 		if (vd0 != NULL && vd0->vdev_top->vdev_islog)
48348f18d1faSGeorge Wilson 			islog = B_TRUE;
48358f18d1faSGeorge Wilson 
48362c1e2b44SGeorge Wilson 		/*
48372c1e2b44SGeorge Wilson 		 * If the top-level vdev needs to be resilvered
48382c1e2b44SGeorge Wilson 		 * then we only allow faults on the device that is
48392c1e2b44SGeorge Wilson 		 * resilvering.
48402c1e2b44SGeorge Wilson 		 */
48412c1e2b44SGeorge Wilson 		if (vd0 != NULL && maxfaults != 1 &&
48422c1e2b44SGeorge Wilson 		    (!vdev_resilver_needed(vd0->vdev_top, NULL, NULL) ||
4843b4952e17SGeorge Wilson 		    vd0->vdev_resilver_txg != 0)) {
4844e14bb325SJeff Bonwick 			/*
4845e14bb325SJeff Bonwick 			 * Make vd0 explicitly claim to be unreadable,
4846e14bb325SJeff Bonwick 			 * or unwriteable, or reach behind its back
4847e14bb325SJeff Bonwick 			 * and close the underlying fd.  We can do this if
4848e14bb325SJeff Bonwick 			 * maxfaults == 0 because we'll fail and reexecute,
4849e14bb325SJeff Bonwick 			 * and we can do it if maxfaults >= 2 because we'll
4850e14bb325SJeff Bonwick 			 * have enough redundancy.  If maxfaults == 1, the
4851e14bb325SJeff Bonwick 			 * combination of this with injection of random data
4852e14bb325SJeff Bonwick 			 * corruption below exceeds the pool's fault tolerance.
4853e14bb325SJeff Bonwick 			 */
4854e14bb325SJeff Bonwick 			vdev_file_t *vf = vd0->vdev_tsd;
4855e14bb325SJeff Bonwick 
4856e14bb325SJeff Bonwick 			if (vf != NULL && ztest_random(3) == 0) {
4857e14bb325SJeff Bonwick 				(void) close(vf->vf_vnode->v_fd);
4858e14bb325SJeff Bonwick 				vf->vf_vnode->v_fd = -1;
4859e14bb325SJeff Bonwick 			} else if (ztest_random(2) == 0) {
4860e14bb325SJeff Bonwick 				vd0->vdev_cant_read = B_TRUE;
4861e14bb325SJeff Bonwick 			} else {
4862e14bb325SJeff Bonwick 				vd0->vdev_cant_write = B_TRUE;
4863e14bb325SJeff Bonwick 			}
4864e14bb325SJeff Bonwick 			guid0 = vd0->vdev_guid;
4865e14bb325SJeff Bonwick 		}
4866e14bb325SJeff Bonwick 	} else {
4867e14bb325SJeff Bonwick 		/*
4868e14bb325SJeff Bonwick 		 * Inject errors on an l2cache device.
4869e14bb325SJeff Bonwick 		 */
4870e14bb325SJeff Bonwick 		spa_aux_vdev_t *sav = &spa->spa_l2cache;
4871fa9e4066Sahrens 
4872e14bb325SJeff Bonwick 		if (sav->sav_count == 0) {
4873e14bb325SJeff Bonwick 			spa_config_exit(spa, SCL_STATE, FTAG);
48742c1e2b44SGeorge Wilson 			(void) rw_unlock(&ztest_name_lock);
4875e14bb325SJeff Bonwick 			return;
4876e14bb325SJeff Bonwick 		}
4877e14bb325SJeff Bonwick 		vd0 = sav->sav_vdevs[ztest_random(sav->sav_count)];
4878ea8dc4b6Seschrock 		guid0 = vd0->vdev_guid;
4879e14bb325SJeff Bonwick 		(void) strcpy(path0, vd0->vdev_path);
4880e14bb325SJeff Bonwick 		(void) strcpy(pathrand, vd0->vdev_path);
4881e14bb325SJeff Bonwick 
4882e14bb325SJeff Bonwick 		leaf = 0;
4883e14bb325SJeff Bonwick 		leaves = 1;
4884e14bb325SJeff Bonwick 		maxfaults = INT_MAX;	/* no limit on cache devices */
4885fa9e4066Sahrens 	}
4886fa9e4066Sahrens 
4887e14bb325SJeff Bonwick 	spa_config_exit(spa, SCL_STATE, FTAG);
48882c1e2b44SGeorge Wilson 	(void) rw_unlock(&ztest_name_lock);
4889e14bb325SJeff Bonwick 
4890fa9e4066Sahrens 	/*
48918f18d1faSGeorge Wilson 	 * If we can tolerate two or more faults, or we're dealing
48928f18d1faSGeorge Wilson 	 * with a slog, randomly online/offline vd0.
4893fa9e4066Sahrens 	 */
48948f18d1faSGeorge Wilson 	if ((maxfaults >= 2 || islog) && guid0 != 0) {
48958ad4d6ddSJeff Bonwick 		if (ztest_random(10) < 6) {
48968ad4d6ddSJeff Bonwick 			int flags = (ztest_random(2) == 0 ?
48978ad4d6ddSJeff Bonwick 			    ZFS_OFFLINE_TEMPORARY : 0);
48988f18d1faSGeorge Wilson 
48998f18d1faSGeorge Wilson 			/*
49008f18d1faSGeorge Wilson 			 * We have to grab the zs_name_lock as writer to
49018f18d1faSGeorge Wilson 			 * prevent a race between offlining a slog and
49028f18d1faSGeorge Wilson 			 * destroying a dataset. Offlining the slog will
49038f18d1faSGeorge Wilson 			 * grab a reference on the dataset which may cause
49048f18d1faSGeorge Wilson 			 * dmu_objset_destroy() to fail with EBUSY thus
49058f18d1faSGeorge Wilson 			 * leaving the dataset in an inconsistent state.
49068f18d1faSGeorge Wilson 			 */
49078f18d1faSGeorge Wilson 			if (islog)
4908420dfc95SChris Siden 				(void) rw_wrlock(&ztest_name_lock);
49098f18d1faSGeorge Wilson 
49108ad4d6ddSJeff Bonwick 			VERIFY(vdev_offline(spa, guid0, flags) != EBUSY);
49118f18d1faSGeorge Wilson 
49128f18d1faSGeorge Wilson 			if (islog)
4913420dfc95SChris Siden 				(void) rw_unlock(&ztest_name_lock);
49148ad4d6ddSJeff Bonwick 		} else {
49159253d63dSGeorge Wilson 			/*
49169253d63dSGeorge Wilson 			 * Ideally we would like to be able to randomly
49179253d63dSGeorge Wilson 			 * call vdev_[on|off]line without holding locks
49189253d63dSGeorge Wilson 			 * to force unpredictable failures but the side
49199253d63dSGeorge Wilson 			 * effects of vdev_[on|off]line prevent us from
49209253d63dSGeorge Wilson 			 * doing so. We grab the ztest_vdev_lock here to
49219253d63dSGeorge Wilson 			 * prevent a race between injection testing and
49229253d63dSGeorge Wilson 			 * aux_vdev removal.
49239253d63dSGeorge Wilson 			 */
49249253d63dSGeorge Wilson 			VERIFY(mutex_lock(&ztest_vdev_lock) == 0);
49258ad4d6ddSJeff Bonwick 			(void) vdev_online(spa, guid0, 0, NULL);
49269253d63dSGeorge Wilson 			VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
49278ad4d6ddSJeff Bonwick 		}
4928fa9e4066Sahrens 	}
4929fa9e4066Sahrens 
49308f18d1faSGeorge Wilson 	if (maxfaults == 0)
49318f18d1faSGeorge Wilson 		return;
49328f18d1faSGeorge Wilson 
4933fa9e4066Sahrens 	/*
4934ea8dc4b6Seschrock 	 * We have at least single-fault tolerance, so inject data corruption.
4935fa9e4066Sahrens 	 */
4936fa9e4066Sahrens 	fd = open(pathrand, O_RDWR);
4937fa9e4066Sahrens 
4938fa9e4066Sahrens 	if (fd == -1)	/* we hit a gap in the device namespace */
4939fa9e4066Sahrens 		return;
4940fa9e4066Sahrens 
4941fa9e4066Sahrens 	fsize = lseek(fd, 0, SEEK_END);
4942fa9e4066Sahrens 
4943fa9e4066Sahrens 	while (--iters != 0) {
4944fa9e4066Sahrens 		offset = ztest_random(fsize / (leaves << bshift)) *
4945fa9e4066Sahrens 		    (leaves << bshift) + (leaf << bshift) +
4946fa9e4066Sahrens 		    (ztest_random(1ULL << (bshift - 1)) & -8ULL);
4947fa9e4066Sahrens 
4948fa9e4066Sahrens 		if (offset >= fsize)
4949fa9e4066Sahrens 			continue;
4950fa9e4066Sahrens 
4951420dfc95SChris Siden 		VERIFY(mutex_lock(&ztest_vdev_lock) == 0);
49521195e687SMark J Musante 		if (mirror_save != zs->zs_mirrors) {
4953420dfc95SChris Siden 			VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
49541195e687SMark J Musante 			(void) close(fd);
49551195e687SMark J Musante 			return;
49561195e687SMark J Musante 		}
4957fa9e4066Sahrens 
4958fa9e4066Sahrens 		if (pwrite(fd, &bad, sizeof (bad), offset) != sizeof (bad))
4959fa9e4066Sahrens 			fatal(1, "can't inject bad word at 0x%llx in %s",
4960fa9e4066Sahrens 			    offset, pathrand);
49611195e687SMark J Musante 
4962420dfc95SChris Siden 		VERIFY(mutex_unlock(&ztest_vdev_lock) == 0);
49631195e687SMark J Musante 
4964420dfc95SChris Siden 		if (ztest_opts.zo_verbose >= 7)
49651195e687SMark J Musante 			(void) printf("injected bad word into %s,"
49661195e687SMark J Musante 			    " offset 0x%llx\n", pathrand, (u_longlong_t)offset);
4967fa9e4066Sahrens 	}
4968fa9e4066Sahrens 
4969fa9e4066Sahrens 	(void) close(fd);
4970fa9e4066Sahrens }
4971fa9e4066Sahrens 
4972fa9e4066Sahrens /*
4973b24ab676SJeff Bonwick  * Verify that DDT repair works as expected.
4974fa9e4066Sahrens  */
4975fa9e4066Sahrens void
4976b24ab676SJeff Bonwick ztest_ddt_repair(ztest_ds_t *zd, uint64_t id)
4977fa9e4066Sahrens {
4978b24ab676SJeff Bonwick 	ztest_shared_t *zs = ztest_shared;
4979420dfc95SChris Siden 	spa_t *spa = ztest_spa;
4980b24ab676SJeff Bonwick 	objset_t *os = zd->zd_os;
4981b24ab676SJeff Bonwick 	ztest_od_t od[1];
4982b24ab676SJeff Bonwick 	uint64_t object, blocksize, txg, pattern, psize;
4983b24ab676SJeff Bonwick 	enum zio_checksum checksum = spa_dedup_checksum(spa);
4984b24ab676SJeff Bonwick 	dmu_buf_t *db;
4985b24ab676SJeff Bonwick 	dmu_tx_t *tx;
4986b24ab676SJeff Bonwick 	void *buf;
4987b24ab676SJeff Bonwick 	blkptr_t blk;
4988b24ab676SJeff Bonwick 	int copies = 2 * ZIO_DEDUPDITTO_MIN;
4989fa9e4066Sahrens 
4990b24ab676SJeff Bonwick 	blocksize = ztest_random_blocksize();
4991b24ab676SJeff Bonwick 	blocksize = MIN(blocksize, 2048);	/* because we write so many */
4992fa9e4066Sahrens 
4993b24ab676SJeff Bonwick 	ztest_od_init(&od[0], id, FTAG, 0, DMU_OT_UINT64_OTHER, blocksize, 0);
4994fa9e4066Sahrens 
4995b24ab676SJeff Bonwick 	if (ztest_object_init(zd, od, sizeof (od), B_FALSE) != 0)
4996b24ab676SJeff Bonwick 		return;
4997fa9e4066Sahrens 
4998fa9e4066Sahrens 	/*
4999b24ab676SJeff Bonwick 	 * Take the name lock as writer to prevent anyone else from changing
5000b24ab676SJeff Bonwick 	 * the pool and dataset properies we need to maintain during this test.
5001fa9e4066Sahrens 	 */
5002420dfc95SChris Siden 	(void) rw_wrlock(&ztest_name_lock);
5003fa9e4066Sahrens 
5004b24ab676SJeff Bonwick 	if (ztest_dsl_prop_set_uint64(zd->zd_name, ZFS_PROP_DEDUP, checksum,
5005b24ab676SJeff Bonwick 	    B_FALSE) != 0 ||
5006b24ab676SJeff Bonwick 	    ztest_dsl_prop_set_uint64(zd->zd_name, ZFS_PROP_COPIES, 1,
5007b24ab676SJeff Bonwick 	    B_FALSE) != 0) {
5008420dfc95SChris Siden 		(void) rw_unlock(&ztest_name_lock);
5009b24ab676SJeff Bonwick 		return;
5010b24ab676SJeff Bonwick 	}
5011b24ab676SJeff Bonwick 
5012b24ab676SJeff Bonwick 	object = od[0].od_object;
5013b24ab676SJeff Bonwick 	blocksize = od[0].od_blocksize;
5014e9103aaeSGarrett D'Amore 	pattern = zs->zs_guid ^ dmu_objset_fsid_guid(os);
5015b24ab676SJeff Bonwick 
5016b24ab676SJeff Bonwick 	ASSERT(object != 0);
5017b24ab676SJeff Bonwick 
5018b24ab676SJeff Bonwick 	tx = dmu_tx_create(os);
5019b24ab676SJeff Bonwick 	dmu_tx_hold_write(tx, object, 0, copies * blocksize);
5020b24ab676SJeff Bonwick 	txg = ztest_tx_assign(tx, TXG_WAIT, FTAG);
5021b24ab676SJeff Bonwick 	if (txg == 0) {
5022420dfc95SChris Siden 		(void) rw_unlock(&ztest_name_lock);
5023b24ab676SJeff Bonwick 		return;
5024b24ab676SJeff Bonwick 	}
5025fa9e4066Sahrens 
5026fa9e4066Sahrens 	/*
5027b24ab676SJeff Bonwick 	 * Write all the copies of our block.
5028fa9e4066Sahrens 	 */
5029b24ab676SJeff Bonwick 	for (int i = 0; i < copies; i++) {
5030b24ab676SJeff Bonwick 		uint64_t offset = i * blocksize;
50313b2aab18SMatthew Ahrens 		int error = dmu_buf_hold(os, object, offset, FTAG, &db,
50323b2aab18SMatthew Ahrens 		    DMU_READ_NO_PREFETCH);
50333b2aab18SMatthew Ahrens 		if (error != 0) {
50343b2aab18SMatthew Ahrens 			fatal(B_FALSE, "dmu_buf_hold(%p, %llu, %llu) = %u",
50353b2aab18SMatthew Ahrens 			    os, (long long)object, (long long) offset, error);
50363b2aab18SMatthew Ahrens 		}
5037b24ab676SJeff Bonwick 		ASSERT(db->db_offset == offset);
5038b24ab676SJeff Bonwick 		ASSERT(db->db_size == blocksize);
5039b24ab676SJeff Bonwick 		ASSERT(ztest_pattern_match(db->db_data, db->db_size, pattern) ||
5040b24ab676SJeff Bonwick 		    ztest_pattern_match(db->db_data, db->db_size, 0ULL));
5041b24ab676SJeff Bonwick 		dmu_buf_will_fill(db, tx);
5042b24ab676SJeff Bonwick 		ztest_pattern_set(db->db_data, db->db_size, pattern);
5043b24ab676SJeff Bonwick 		dmu_buf_rele(db, FTAG);
5044b24ab676SJeff Bonwick 	}
5045fa9e4066Sahrens 
5046b24ab676SJeff Bonwick 	dmu_tx_commit(tx);
5047b24ab676SJeff Bonwick 	txg_wait_synced(spa_get_dsl(spa), txg);
5048fa9e4066Sahrens 
5049fa9e4066Sahrens 	/*
5050b24ab676SJeff Bonwick 	 * Find out what block we got.
5051fa9e4066Sahrens 	 */
505280901aeaSGeorge Wilson 	VERIFY0(dmu_buf_hold(os, object, 0, FTAG, &db,
505380901aeaSGeorge Wilson 	    DMU_READ_NO_PREFETCH));
5054b24ab676SJeff Bonwick 	blk = *((dmu_buf_impl_t *)db)->db_blkptr;
5055b24ab676SJeff Bonwick 	dmu_buf_rele(db, FTAG);
5056fa9e4066Sahrens 
5057fa9e4066Sahrens 	/*
5058b24ab676SJeff Bonwick 	 * Damage the block.  Dedup-ditto will save us when we read it later.
5059fa9e4066Sahrens 	 */
5060b24ab676SJeff Bonwick 	psize = BP_GET_PSIZE(&blk);
5061b24ab676SJeff Bonwick 	buf = zio_buf_alloc(psize);
5062b24ab676SJeff Bonwick 	ztest_pattern_set(buf, psize, ~pattern);
5063fa9e4066Sahrens 
5064b24ab676SJeff Bonwick 	(void) zio_wait(zio_rewrite(NULL, spa, 0, &blk,
5065b24ab676SJeff Bonwick 	    buf, psize, NULL, NULL, ZIO_PRIORITY_SYNC_WRITE,
5066b24ab676SJeff Bonwick 	    ZIO_FLAG_CANFAIL | ZIO_FLAG_INDUCE_DAMAGE, NULL));
5067fa9e4066Sahrens 
5068b24ab676SJeff Bonwick 	zio_buf_free(buf, psize);
5069fa9e4066Sahrens 
5070420dfc95SChris Siden 	(void) rw_unlock(&ztest_name_lock);
5071fa9e4066Sahrens }
5072fa9e4066Sahrens 
5073fa9e4066Sahrens /*
5074b24ab676SJeff Bonwick  * Scrub the pool.
5075fa9e4066Sahrens  */
5076b24ab676SJeff Bonwick /* ARGSUSED */
5077b24ab676SJeff Bonwick void
5078b24ab676SJeff Bonwick ztest_scrub(ztest_ds_t *zd, uint64_t id)
5079fa9e4066Sahrens {
5080420dfc95SChris Siden 	spa_t *spa = ztest_spa;
5081fa9e4066Sahrens 
50823f9d6ad7SLin Ling 	(void) spa_scan(spa, POOL_SCAN_SCRUB);
5083b24ab676SJeff Bonwick 	(void) poll(NULL, 0, 100); /* wait a moment, then force a restart */
50843f9d6ad7SLin Ling 	(void) spa_scan(spa, POOL_SCAN_SCRUB);
5085b24ab676SJeff Bonwick }
5086fa9e4066Sahrens 
5087e9103aaeSGarrett D'Amore /*
5088e9103aaeSGarrett D'Amore  * Change the guid for the pool.
5089e9103aaeSGarrett D'Amore  */
5090e9103aaeSGarrett D'Amore /* ARGSUSED */
5091e9103aaeSGarrett D'Amore void
5092e9103aaeSGarrett D'Amore ztest_reguid(ztest_ds_t *zd, uint64_t id)
5093e9103aaeSGarrett D'Amore {
5094420dfc95SChris Siden 	spa_t *spa = ztest_spa;
5095e9103aaeSGarrett D'Amore 	uint64_t orig, load;
5096dfbb9432SGeorge Wilson 	int error;
5097e9103aaeSGarrett D'Amore 
5098e9103aaeSGarrett D'Amore 	orig = spa_guid(spa);
5099e9103aaeSGarrett D'Amore 	load = spa_load_guid(spa);
5100dfbb9432SGeorge Wilson 
5101dfbb9432SGeorge Wilson 	(void) rw_wrlock(&ztest_name_lock);
5102dfbb9432SGeorge Wilson 	error = spa_change_guid(spa);
5103dfbb9432SGeorge Wilson 	(void) rw_unlock(&ztest_name_lock);
5104dfbb9432SGeorge Wilson 
5105dfbb9432SGeorge Wilson 	if (error != 0)
5106e9103aaeSGarrett D'Amore 		return;
5107e9103aaeSGarrett D'Amore 
510825345e46SGeorge Wilson 	if (ztest_opts.zo_verbose >= 4) {
5109e9103aaeSGarrett D'Amore 		(void) printf("Changed guid old %llu -> %llu\n",
5110e9103aaeSGarrett D'Amore 		    (u_longlong_t)orig, (u_longlong_t)spa_guid(spa));
5111e9103aaeSGarrett D'Amore 	}
5112e9103aaeSGarrett D'Amore 
5113e9103aaeSGarrett D'Amore 	VERIFY3U(orig, !=, spa_guid(spa));
5114e9103aaeSGarrett D'Amore 	VERIFY3U(load, ==, spa_load_guid(spa));
5115e9103aaeSGarrett D'Amore }
5116e9103aaeSGarrett D'Amore 
5117b24ab676SJeff Bonwick /*
5118b24ab676SJeff Bonwick  * Rename the pool to a different name and then rename it back.
5119b24ab676SJeff Bonwick  */
5120b24ab676SJeff Bonwick /* ARGSUSED */
5121b24ab676SJeff Bonwick void
5122b24ab676SJeff Bonwick ztest_spa_rename(ztest_ds_t *zd, uint64_t id)
5123b24ab676SJeff Bonwick {
5124b24ab676SJeff Bonwick 	char *oldname, *newname;
5125b24ab676SJeff Bonwick 	spa_t *spa;
5126fa9e4066Sahrens 
5127420dfc95SChris Siden 	(void) rw_wrlock(&ztest_name_lock);
5128fa9e4066Sahrens 
5129420dfc95SChris Siden 	oldname = ztest_opts.zo_pool;
5130b24ab676SJeff Bonwick 	newname = umem_alloc(strlen(oldname) + 5, UMEM_NOFAIL);
5131b24ab676SJeff Bonwick 	(void) strcpy(newname, oldname);
5132b24ab676SJeff Bonwick 	(void) strcat(newname, "_tmp");
5133fa9e4066Sahrens 
5134fa9e4066Sahrens 	/*
5135b24ab676SJeff Bonwick 	 * Do the rename
5136fa9e4066Sahrens 	 */
5137b420f3adSRichard Lowe 	VERIFY3U(0, ==, spa_rename(oldname, newname));
5138fa9e4066Sahrens 
5139fa9e4066Sahrens 	/*
5140b24ab676SJeff Bonwick 	 * Try to open it under the old name, which shouldn't exist
5141fa9e4066Sahrens 	 */
5142b24ab676SJeff Bonwick 	VERIFY3U(ENOENT, ==, spa_open(oldname, &spa, FTAG));
5143fa9e4066Sahrens 
5144fa9e4066Sahrens 	/*
5145b24ab676SJeff Bonwick 	 * Open it under the new name and make sure it's still the same spa_t.
5146fa9e4066Sahrens 	 */
5147b420f3adSRichard Lowe 	VERIFY3U(0, ==, spa_open(newname, &spa, FTAG));
5148fa9e4066Sahrens 
5149420dfc95SChris Siden 	ASSERT(spa == ztest_spa);
5150b24ab676SJeff Bonwick 	spa_close(spa, FTAG);
5151fa9e4066Sahrens 
5152b24ab676SJeff Bonwick 	/*
5153b24ab676SJeff Bonwick 	 * Rename it back to the original
5154b24ab676SJeff Bonwick 	 */
5155b420f3adSRichard Lowe 	VERIFY3U(0, ==, spa_rename(newname, oldname));
5156fa9e4066Sahrens 
5157fa9e4066Sahrens 	/*
5158b24ab676SJeff Bonwick 	 * Make sure it can still be opened
5159fa9e4066Sahrens 	 */
5160b420f3adSRichard Lowe 	VERIFY3U(0, ==, spa_open(oldname, &spa, FTAG));
5161fa9e4066Sahrens 
5162420dfc95SChris Siden 	ASSERT(spa == ztest_spa);
5163b24ab676SJeff Bonwick 	spa_close(spa, FTAG);
5164fa9e4066Sahrens 
5165b24ab676SJeff Bonwick 	umem_free(newname, strlen(newname) + 1);
5166b24ab676SJeff Bonwick 
5167420dfc95SChris Siden 	(void) rw_unlock(&ztest_name_lock);
5168fa9e4066Sahrens }
5169fa9e4066Sahrens 
5170b24ab676SJeff Bonwick /*
5171b24ab676SJeff Bonwick  * Verify pool integrity by running zdb.
5172b24ab676SJeff Bonwick  */
5173fa9e4066Sahrens static void
5174b24ab676SJeff Bonwick ztest_run_zdb(char *pool)
5175fa9e4066Sahrens {
5176fa9e4066Sahrens 	int status;
5177fa9e4066Sahrens 	char zdb[MAXPATHLEN + MAXNAMELEN + 20];
5178fa9e4066Sahrens 	char zbuf[1024];
5179fa9e4066Sahrens 	char *bin;
51808654d025Sperrin 	char *ztest;
51818654d025Sperrin 	char *isa;
51828654d025Sperrin 	int isalen;
5183fa9e4066Sahrens 	FILE *fp;
5184fa9e4066Sahrens 
5185fa9e4066Sahrens 	(void) realpath(getexecname(), zdb);
5186fa9e4066Sahrens 
5187fa9e4066Sahrens 	/* zdb lives in /usr/sbin, while ztest lives in /usr/bin */
5188fa9e4066Sahrens 	bin = strstr(zdb, "/usr/bin/");
51898654d025Sperrin 	ztest = strstr(bin, "/ztest");
51908654d025Sperrin 	isa = bin + 8;
51918654d025Sperrin 	isalen = ztest - isa;
51928654d025Sperrin 	isa = strdup(isa);
5193fa9e4066Sahrens 	/* LINTED */
51943a57275aSck 	(void) sprintf(bin,
51955d7b4d43SMatthew Ahrens 	    "/usr/sbin%.*s/zdb -bcc%s%s -d -U %s %s",
51968654d025Sperrin 	    isalen,
51978654d025Sperrin 	    isa,
5198420dfc95SChris Siden 	    ztest_opts.zo_verbose >= 3 ? "s" : "",
5199420dfc95SChris Siden 	    ztest_opts.zo_verbose >= 4 ? "v" : "",
5200f0ba89beSJeff Bonwick 	    spa_config_path,
520188b7b0f2SMatthew Ahrens 	    pool);
52028654d025Sperrin 	free(isa);
5203fa9e4066Sahrens 
5204420dfc95SChris Siden 	if (ztest_opts.zo_verbose >= 5)
5205fa9e4066Sahrens 		(void) printf("Executing %s\n", strstr(zdb, "zdb "));
5206fa9e4066Sahrens 
5207fa9e4066Sahrens 	fp = popen(zdb, "r");
5208fa9e4066Sahrens 
5209fa9e4066Sahrens 	while (fgets(zbuf, sizeof (zbuf), fp) != NULL)
5210420dfc95SChris Siden 		if (ztest_opts.zo_verbose >= 3)
5211fa9e4066Sahrens 			(void) printf("%s", zbuf);
5212fa9e4066Sahrens 
5213fa9e4066Sahrens 	status = pclose(fp);
5214fa9e4066Sahrens 
5215fa9e4066Sahrens 	if (status == 0)
5216fa9e4066Sahrens 		return;
5217fa9e4066Sahrens 
5218fa9e4066Sahrens 	ztest_dump_core = 0;
5219fa9e4066Sahrens 	if (WIFEXITED(status))
5220fa9e4066Sahrens 		fatal(0, "'%s' exit code %d", zdb, WEXITSTATUS(status));
5221fa9e4066Sahrens 	else
5222fa9e4066Sahrens 		fatal(0, "'%s' died with signal %d", zdb, WTERMSIG(status));
5223fa9e4066Sahrens }
5224fa9e4066Sahrens 
5225fa9e4066Sahrens static void
5226fa9e4066Sahrens ztest_walk_pool_directory(char *header)
5227fa9e4066Sahrens {
5228fa9e4066Sahrens 	spa_t *spa = NULL;
5229fa9e4066Sahrens 
5230420dfc95SChris Siden 	if (ztest_opts.zo_verbose >= 6)
5231fa9e4066Sahrens 		(void) printf("%s\n", header);
5232fa9e4066Sahrens 
5233fa9e4066Sahrens 	mutex_enter(&spa_namespace_lock);
5234fa9e4066Sahrens 	while ((spa = spa_next(spa)) != NULL)
5235420dfc95SChris Siden 		if (ztest_opts.zo_verbose >= 6)
5236fa9e4066Sahrens 			(void) printf("\t%s\n", spa_name(spa));
5237fa9e4066Sahrens 	mutex_exit(&spa_namespace_lock);
5238fa9e4066Sahrens }
5239fa9e4066Sahrens 
5240fa9e4066Sahrens static void
5241fa9e4066Sahrens ztest_spa_import_export(char *oldname, char *newname)
5242fa9e4066Sahrens {
52438ad4d6ddSJeff Bonwick 	nvlist_t *config, *newconfig;
5244fa9e4066Sahrens 	uint64_t pool_guid;
5245fa9e4066Sahrens 	spa_t *spa;
52463b2aab18SMatthew Ahrens 	int error;
5247fa9e4066Sahrens 
5248420dfc95SChris Siden 	if (ztest_opts.zo_verbose >= 4) {
5249fa9e4066Sahrens 		(void) printf("import/export: old = %s, new = %s\n",
5250fa9e4066Sahrens 		    oldname, newname);
5251fa9e4066Sahrens 	}
5252fa9e4066Sahrens 
5253fa9e4066Sahrens 	/*
5254fa9e4066Sahrens 	 * Clean up from previous runs.
5255fa9e4066Sahrens 	 */
5256fa9e4066Sahrens 	(void) spa_destroy(newname);
5257fa9e4066Sahrens 
5258fa9e4066Sahrens 	/*
5259fa9e4066Sahrens 	 * Get the pool's configuration and guid.
5260fa9e4066Sahrens 	 */
5261b420f3adSRichard Lowe 	VERIFY3U(0, ==, spa_open(oldname, &spa, FTAG));
5262fa9e4066Sahrens 
52638ad4d6ddSJeff Bonwick 	/*
52648ad4d6ddSJeff Bonwick 	 * Kick off a scrub to tickle scrub/export races.
52658ad4d6ddSJeff Bonwick 	 */
52668ad4d6ddSJeff Bonwick 	if (ztest_random(2) == 0)
52673f9d6ad7SLin Ling 		(void) spa_scan(spa, POOL_SCAN_SCRUB);
52688ad4d6ddSJeff Bonwick 
5269fa9e4066Sahrens 	pool_guid = spa_guid(spa);
5270fa9e4066Sahrens 	spa_close(spa, FTAG);
5271fa9e4066Sahrens 
5272fa9e4066Sahrens 	ztest_walk_pool_directory("pools before export");
5273fa9e4066Sahrens 
5274fa9e4066Sahrens 	/*
5275fa9e4066Sahrens 	 * Export it.
5276fa9e4066Sahrens 	 */
5277b420f3adSRichard Lowe 	VERIFY3U(0, ==, spa_export(oldname, &config, B_FALSE, B_FALSE));
5278fa9e4066Sahrens 
5279fa9e4066Sahrens 	ztest_walk_pool_directory("pools after export");
5280fa9e4066Sahrens 
52818ad4d6ddSJeff Bonwick 	/*
52828ad4d6ddSJeff Bonwick 	 * Try to import it.
52838ad4d6ddSJeff Bonwick 	 */
52848ad4d6ddSJeff Bonwick 	newconfig = spa_tryimport(config);
52858ad4d6ddSJeff Bonwick 	ASSERT(newconfig != NULL);
52868ad4d6ddSJeff Bonwick 	nvlist_free(newconfig);
52878ad4d6ddSJeff Bonwick 
5288fa9e4066Sahrens 	/*
5289fa9e4066Sahrens 	 * Import it under the new name.
5290fa9e4066Sahrens 	 */
52913b2aab18SMatthew Ahrens 	error = spa_import(newname, config, NULL, 0);
52923b2aab18SMatthew Ahrens 	if (error != 0) {
52933b2aab18SMatthew Ahrens 		dump_nvlist(config, 0);
52943b2aab18SMatthew Ahrens 		fatal(B_FALSE, "couldn't import pool %s as %s: error %u",
52953b2aab18SMatthew Ahrens 		    oldname, newname, error);
52963b2aab18SMatthew Ahrens 	}
5297fa9e4066Sahrens 
5298fa9e4066Sahrens 	ztest_walk_pool_directory("pools after import");
5299fa9e4066Sahrens 
5300fa9e4066Sahrens 	/*
5301fa9e4066Sahrens 	 * Try to import it again -- should fail with EEXIST.
5302fa9e4066Sahrens 	 */
53034b964adaSGeorge Wilson 	VERIFY3U(EEXIST, ==, spa_import(newname, config, NULL, 0));
5304fa9e4066Sahrens 
5305fa9e4066Sahrens 	/*
5306fa9e4066Sahrens 	 * Try to import it under a different name -- should fail with EEXIST.
5307fa9e4066Sahrens 	 */
53084b964adaSGeorge Wilson 	VERIFY3U(EEXIST, ==, spa_import(oldname, config, NULL, 0));
5309fa9e4066Sahrens 
5310fa9e4066Sahrens 	/*
5311fa9e4066Sahrens 	 * Verify that the pool is no longer visible under the old name.
5312fa9e4066Sahrens 	 */
5313b24ab676SJeff Bonwick 	VERIFY3U(ENOENT, ==, spa_open(oldname, &spa, FTAG));
5314fa9e4066Sahrens 
5315fa9e4066Sahrens 	/*
5316fa9e4066Sahrens 	 * Verify that we can open and close the pool using the new name.
5317fa9e4066Sahrens 	 */
5318b420f3adSRichard Lowe 	VERIFY3U(0, ==, spa_open(newname, &spa, FTAG));
5319fa9e4066Sahrens 	ASSERT(pool_guid == spa_guid(spa));
5320fa9e4066Sahrens 	spa_close(spa, FTAG);
5321fa9e4066Sahrens 
5322fa9e4066Sahrens 	nvlist_free(config);
5323fa9e4066Sahrens }
5324fa9e4066Sahrens 
53258ad4d6ddSJeff Bonwick static void
53268ad4d6ddSJeff Bonwick ztest_resume(spa_t *spa)
53278ad4d6ddSJeff Bonwick {
5328420dfc95SChris Siden 	if (spa_suspended(spa) && ztest_opts.zo_verbose >= 6)
5329b24ab676SJeff Bonwick 		(void) printf("resuming from suspended state\n");
5330b24ab676SJeff Bonwick 	spa_vdev_state_enter(spa, SCL_NONE);
5331b24ab676SJeff Bonwick 	vdev_clear(spa, NULL);
5332b24ab676SJeff Bonwick 	(void) spa_vdev_state_exit(spa, NULL, 0);
5333b24ab676SJeff Bonwick 	(void) zio_resume(spa);
53348ad4d6ddSJeff Bonwick }
53358ad4d6ddSJeff Bonwick 
53360a4e9518Sgw static void *
53378ad4d6ddSJeff Bonwick ztest_resume_thread(void *arg)
53380a4e9518Sgw {
5339e14bb325SJeff Bonwick 	spa_t *spa = arg;
53400a4e9518Sgw 
53410a4e9518Sgw 	while (!ztest_exiting) {
5342b24ab676SJeff Bonwick 		if (spa_suspended(spa))
5343b24ab676SJeff Bonwick 			ztest_resume(spa);
5344b24ab676SJeff Bonwick 		(void) poll(NULL, 0, 100);
53450a4e9518Sgw 	}
53460a4e9518Sgw 	return (NULL);
53470a4e9518Sgw }
53480a4e9518Sgw 
5349b24ab676SJeff Bonwick static void *
5350b24ab676SJeff Bonwick ztest_deadman_thread(void *arg)
5351b24ab676SJeff Bonwick {
5352b24ab676SJeff Bonwick 	ztest_shared_t *zs = arg;
53532c1e2b44SGeorge Wilson 	spa_t *spa = ztest_spa;
53542c1e2b44SGeorge Wilson 	hrtime_t delta, total = 0;
5355b24ab676SJeff Bonwick 
53562c1e2b44SGeorge Wilson 	for (;;) {
535769962b56SMatthew Ahrens 		delta = zs->zs_thread_stop - zs->zs_thread_start +
535869962b56SMatthew Ahrens 		    MSEC2NSEC(zfs_deadman_synctime_ms);
5359b24ab676SJeff Bonwick 
536069962b56SMatthew Ahrens 		(void) poll(NULL, 0, (int)NSEC2MSEC(delta));
5361b24ab676SJeff Bonwick 
53622c1e2b44SGeorge Wilson 		/*
53632c1e2b44SGeorge Wilson 		 * If the pool is suspended then fail immediately. Otherwise,
53642c1e2b44SGeorge Wilson 		 * check to see if the pool is making any progress. If
53652c1e2b44SGeorge Wilson 		 * vdev_deadman() discovers that there hasn't been any recent
53662c1e2b44SGeorge Wilson 		 * I/Os then it will end up aborting the tests.
53672c1e2b44SGeorge Wilson 		 */
53680713e232SGeorge Wilson 		if (spa_suspended(spa) || spa->spa_root_vdev == NULL) {
53692c1e2b44SGeorge Wilson 			fatal(0, "aborting test after %llu seconds because "
53702c1e2b44SGeorge Wilson 			    "pool has transitioned to a suspended state.",
537169962b56SMatthew Ahrens 			    zfs_deadman_synctime_ms / 1000);
53722c1e2b44SGeorge Wilson 			return (NULL);
53732c1e2b44SGeorge Wilson 		}
53742c1e2b44SGeorge Wilson 		vdev_deadman(spa->spa_root_vdev);
5375b24ab676SJeff Bonwick 
537669962b56SMatthew Ahrens 		total += zfs_deadman_synctime_ms/1000;
53772c1e2b44SGeorge Wilson 		(void) printf("ztest has been running for %lld seconds\n",
53782c1e2b44SGeorge Wilson 		    total);
53792c1e2b44SGeorge Wilson 	}
5380b24ab676SJeff Bonwick }
5381b24ab676SJeff Bonwick 
5382b24ab676SJeff Bonwick static void
5383420dfc95SChris Siden ztest_execute(int test, ztest_info_t *zi, uint64_t id)
5384b24ab676SJeff Bonwick {
5385420dfc95SChris Siden 	ztest_ds_t *zd = &ztest_ds[id % ztest_opts.zo_datasets];
5386420dfc95SChris Siden 	ztest_shared_callstate_t *zc = ZTEST_GET_SHARED_CALLSTATE(test);
5387b24ab676SJeff Bonwick 	hrtime_t functime = gethrtime();
5388b24ab676SJeff Bonwick 
5389b24ab676SJeff Bonwick 	for (int i = 0; i < zi->zi_iters; i++)
5390b24ab676SJeff Bonwick 		zi->zi_func(zd, id);
5391b24ab676SJeff Bonwick 
5392b24ab676SJeff Bonwick 	functime = gethrtime() - functime;
5393b24ab676SJeff Bonwick 
5394420dfc95SChris Siden 	atomic_add_64(&zc->zc_count, 1);
5395420dfc95SChris Siden 	atomic_add_64(&zc->zc_time, functime);
5396b24ab676SJeff Bonwick 
5397420dfc95SChris Siden 	if (ztest_opts.zo_verbose >= 4) {
5398b24ab676SJeff Bonwick 		Dl_info dli;
5399b24ab676SJeff Bonwick 		(void) dladdr((void *)zi->zi_func, &dli);
5400b24ab676SJeff Bonwick 		(void) printf("%6.2f sec in %s\n",
5401b24ab676SJeff Bonwick 		    (double)functime / NANOSEC, dli.dli_sname);
5402b24ab676SJeff Bonwick 	}
5403b24ab676SJeff Bonwick }
5404b24ab676SJeff Bonwick 
5405fa9e4066Sahrens static void *
5406fa9e4066Sahrens ztest_thread(void *arg)
5407fa9e4066Sahrens {
5408420dfc95SChris Siden 	int rand;
5409b24ab676SJeff Bonwick 	uint64_t id = (uintptr_t)arg;
5410fa9e4066Sahrens 	ztest_shared_t *zs = ztest_shared;
5411b24ab676SJeff Bonwick 	uint64_t call_next;
5412b24ab676SJeff Bonwick 	hrtime_t now;
5413fa9e4066Sahrens 	ztest_info_t *zi;
5414420dfc95SChris Siden 	ztest_shared_callstate_t *zc;
5415fa9e4066Sahrens 
5416b24ab676SJeff Bonwick 	while ((now = gethrtime()) < zs->zs_thread_stop) {
5417fa9e4066Sahrens 		/*
5418fa9e4066Sahrens 		 * See if it's time to force a crash.
5419fa9e4066Sahrens 		 */
5420b24ab676SJeff Bonwick 		if (now > zs->zs_thread_kill)
5421b24ab676SJeff Bonwick 			ztest_kill(zs);
5422fa9e4066Sahrens 
5423fa9e4066Sahrens 		/*
5424b24ab676SJeff Bonwick 		 * If we're getting ENOSPC with some regularity, stop.
5425fa9e4066Sahrens 		 */
5426b24ab676SJeff Bonwick 		if (zs->zs_enospc_count > 10)
5427b24ab676SJeff Bonwick 			break;
5428fa9e4066Sahrens 
5429fa9e4066Sahrens 		/*
5430b24ab676SJeff Bonwick 		 * Pick a random function to execute.
5431fa9e4066Sahrens 		 */
5432420dfc95SChris Siden 		rand = ztest_random(ZTEST_FUNCS);
5433420dfc95SChris Siden 		zi = &ztest_info[rand];
5434420dfc95SChris Siden 		zc = ZTEST_GET_SHARED_CALLSTATE(rand);
5435420dfc95SChris Siden 		call_next = zc->zc_next;
5436b24ab676SJeff Bonwick 
5437b24ab676SJeff Bonwick 		if (now >= call_next &&
5438420dfc95SChris Siden 		    atomic_cas_64(&zc->zc_next, call_next, call_next +
5439420dfc95SChris Siden 		    ztest_random(2 * zi->zi_interval[0] + 1)) == call_next) {
5440420dfc95SChris Siden 			ztest_execute(rand, zi, id);
5441420dfc95SChris Siden 		}
5442b24ab676SJeff Bonwick 	}
5443fa9e4066Sahrens 
5444b24ab676SJeff Bonwick 	return (NULL);
5445b24ab676SJeff Bonwick }
5446fa9e4066Sahrens 
5447b24ab676SJeff Bonwick static void
5448b24ab676SJeff Bonwick ztest_dataset_name(char *dsname, char *pool, int d)
5449b24ab676SJeff Bonwick {
5450b24ab676SJeff Bonwick 	(void) snprintf(dsname, MAXNAMELEN, "%s/ds_%d", pool, d);
5451b24ab676SJeff Bonwick }
5452fa9e4066Sahrens 
5453b24ab676SJeff Bonwick static void
5454420dfc95SChris Siden ztest_dataset_destroy(int d)
5455b24ab676SJeff Bonwick {
5456b24ab676SJeff Bonwick 	char name[MAXNAMELEN];
5457fa9e4066Sahrens 
5458420dfc95SChris Siden 	ztest_dataset_name(name, ztest_opts.zo_pool, d);
5459fa9e4066Sahrens 
5460420dfc95SChris Siden 	if (ztest_opts.zo_verbose >= 3)
5461b24ab676SJeff Bonwick 		(void) printf("Destroying %s to free up space\n", name);
5462fa9e4066Sahrens 
5463b24ab676SJeff Bonwick 	/*
5464b24ab676SJeff Bonwick 	 * Cleanup any non-standard clones and snapshots.  In general,
5465b24ab676SJeff Bonwick 	 * ztest thread t operates on dataset (t % zopt_datasets),
5466b24ab676SJeff Bonwick 	 * so there may be more than one thing to clean up.
5467b24ab676SJeff Bonwick 	 */
5468420dfc95SChris Siden 	for (int t = d; t < ztest_opts.zo_threads;
5469420dfc95SChris Siden 	    t += ztest_opts.zo_datasets) {
5470b24ab676SJeff Bonwick 		ztest_dsl_dataset_cleanup(name, t);
5471420dfc95SChris Siden 	}
5472fa9e4066Sahrens 
5473b24ab676SJeff Bonwick 	(void) dmu_objset_find(name, ztest_objset_destroy_cb, NULL,
5474b24ab676SJeff Bonwick 	    DS_FIND_SNAPSHOTS | DS_FIND_CHILDREN);
5475b24ab676SJeff Bonwick }
5476b24ab676SJeff Bonwick 
5477b24ab676SJeff Bonwick static void
5478b24ab676SJeff Bonwick ztest_dataset_dirobj_verify(ztest_ds_t *zd)
5479b24ab676SJeff Bonwick {
5480b24ab676SJeff Bonwick 	uint64_t usedobjs, dirobjs, scratch;
5481b24ab676SJeff Bonwick 
5482b24ab676SJeff Bonwick 	/*
5483b24ab676SJeff Bonwick 	 * ZTEST_DIROBJ is the object directory for the entire dataset.
5484b24ab676SJeff Bonwick 	 * Therefore, the number of objects in use should equal the
5485b24ab676SJeff Bonwick 	 * number of ZTEST_DIROBJ entries, +1 for ZTEST_DIROBJ itself.
5486b24ab676SJeff Bonwick 	 * If not, we have an object leak.
5487b24ab676SJeff Bonwick 	 *
5488b24ab676SJeff Bonwick 	 * Note that we can only check this in ztest_dataset_open(),
5489b24ab676SJeff Bonwick 	 * when the open-context and syncing-context values agree.
5490b24ab676SJeff Bonwick 	 * That's because zap_count() returns the open-context value,
5491b24ab676SJeff Bonwick 	 * while dmu_objset_space() returns the rootbp fill count.
5492b24ab676SJeff Bonwick 	 */
5493b420f3adSRichard Lowe 	VERIFY3U(0, ==, zap_count(zd->zd_os, ZTEST_DIROBJ, &dirobjs));
5494b24ab676SJeff Bonwick 	dmu_objset_space(zd->zd_os, &scratch, &scratch, &usedobjs, &scratch);
5495b24ab676SJeff Bonwick 	ASSERT3U(dirobjs + 1, ==, usedobjs);
5496b24ab676SJeff Bonwick }
5497b24ab676SJeff Bonwick 
5498b24ab676SJeff Bonwick static int
5499420dfc95SChris Siden ztest_dataset_open(int d)
5500b24ab676SJeff Bonwick {
5501420dfc95SChris Siden 	ztest_ds_t *zd = &ztest_ds[d];
5502420dfc95SChris Siden 	uint64_t committed_seq = ZTEST_GET_SHARED_DS(d)->zd_seq;
5503b24ab676SJeff Bonwick 	objset_t *os;
5504b24ab676SJeff Bonwick 	zilog_t *zilog;
5505b24ab676SJeff Bonwick 	char name[MAXNAMELEN];
5506b24ab676SJeff Bonwick 	int error;
5507b24ab676SJeff Bonwick 
5508420dfc95SChris Siden 	ztest_dataset_name(name, ztest_opts.zo_pool, d);
5509b24ab676SJeff Bonwick 
5510420dfc95SChris Siden 	(void) rw_rdlock(&ztest_name_lock);
5511b24ab676SJeff Bonwick 
551255da60b9SMark J Musante 	error = ztest_dataset_create(name);
5513b24ab676SJeff Bonwick 	if (error == ENOSPC) {
5514420dfc95SChris Siden 		(void) rw_unlock(&ztest_name_lock);
5515b24ab676SJeff Bonwick 		ztest_record_enospc(FTAG);
5516b24ab676SJeff Bonwick 		return (error);
5517fa9e4066Sahrens 	}
5518b24ab676SJeff Bonwick 	ASSERT(error == 0 || error == EEXIST);
5519fa9e4066Sahrens 
55203b2aab18SMatthew Ahrens 	VERIFY0(dmu_objset_own(name, DMU_OST_OTHER, B_FALSE, zd, &os));
5521420dfc95SChris Siden 	(void) rw_unlock(&ztest_name_lock);
5522b24ab676SJeff Bonwick 
5523420dfc95SChris Siden 	ztest_zd_init(zd, ZTEST_GET_SHARED_DS(d), os);
5524b24ab676SJeff Bonwick 
5525b24ab676SJeff Bonwick 	zilog = zd->zd_zilog;
5526b24ab676SJeff Bonwick 
5527b24ab676SJeff Bonwick 	if (zilog->zl_header->zh_claim_lr_seq != 0 &&
5528b24ab676SJeff Bonwick 	    zilog->zl_header->zh_claim_lr_seq < committed_seq)
5529b24ab676SJeff Bonwick 		fatal(0, "missing log records: claimed %llu < committed %llu",
5530b24ab676SJeff Bonwick 		    zilog->zl_header->zh_claim_lr_seq, committed_seq);
5531b24ab676SJeff Bonwick 
5532b24ab676SJeff Bonwick 	ztest_dataset_dirobj_verify(zd);
5533b24ab676SJeff Bonwick 
5534b24ab676SJeff Bonwick 	zil_replay(os, zd, ztest_replay_vector);
5535b24ab676SJeff Bonwick 
5536b24ab676SJeff Bonwick 	ztest_dataset_dirobj_verify(zd);
5537b24ab676SJeff Bonwick 
5538420dfc95SChris Siden 	if (ztest_opts.zo_verbose >= 6)
5539b24ab676SJeff Bonwick 		(void) printf("%s replay %llu blocks, %llu records, seq %llu\n",
5540b24ab676SJeff Bonwick 		    zd->zd_name,
5541b24ab676SJeff Bonwick 		    (u_longlong_t)zilog->zl_parse_blk_count,
5542b24ab676SJeff Bonwick 		    (u_longlong_t)zilog->zl_parse_lr_count,
5543b24ab676SJeff Bonwick 		    (u_longlong_t)zilog->zl_replaying_seq);
5544b24ab676SJeff Bonwick 
5545b24ab676SJeff Bonwick 	zilog = zil_open(os, ztest_get_data);
5546b24ab676SJeff Bonwick 
5547b24ab676SJeff Bonwick 	if (zilog->zl_replaying_seq != 0 &&
5548b24ab676SJeff Bonwick 	    zilog->zl_replaying_seq < committed_seq)
5549b24ab676SJeff Bonwick 		fatal(0, "missing log records: replayed %llu < committed %llu",
5550b24ab676SJeff Bonwick 		    zilog->zl_replaying_seq, committed_seq);
5551b24ab676SJeff Bonwick 
5552b24ab676SJeff Bonwick 	return (0);
5553b24ab676SJeff Bonwick }
5554b24ab676SJeff Bonwick 
5555b24ab676SJeff Bonwick static void
5556420dfc95SChris Siden ztest_dataset_close(int d)
5557b24ab676SJeff Bonwick {
5558420dfc95SChris Siden 	ztest_ds_t *zd = &ztest_ds[d];
5559b24ab676SJeff Bonwick 
5560b24ab676SJeff Bonwick 	zil_close(zd->zd_zilog);
55613b2aab18SMatthew Ahrens 	dmu_objset_disown(zd->zd_os, zd);
5562b24ab676SJeff Bonwick 
5563b24ab676SJeff Bonwick 	ztest_zd_fini(zd);
5564fa9e4066Sahrens }
5565fa9e4066Sahrens 
5566fa9e4066Sahrens /*
5567fa9e4066Sahrens  * Kick off threads to run tests on all datasets in parallel.
5568fa9e4066Sahrens  */
5569fa9e4066Sahrens static void
5570b24ab676SJeff Bonwick ztest_run(ztest_shared_t *zs)
5571fa9e4066Sahrens {
5572b24ab676SJeff Bonwick 	thread_t *tid;
5573fa9e4066Sahrens 	spa_t *spa;
5574e9103aaeSGarrett D'Amore 	objset_t *os;
5575e14bb325SJeff Bonwick 	thread_t resume_tid;
5576b24ab676SJeff Bonwick 	int error;
5577e14bb325SJeff Bonwick 
5578e14bb325SJeff Bonwick 	ztest_exiting = B_FALSE;
5579fa9e4066Sahrens 
5580fa9e4066Sahrens 	/*
5581b24ab676SJeff Bonwick 	 * Initialize parent/child shared state.
5582fa9e4066Sahrens 	 */
5583420dfc95SChris Siden 	VERIFY(_mutex_init(&ztest_vdev_lock, USYNC_THREAD, NULL) == 0);
5584420dfc95SChris Siden 	VERIFY(rwlock_init(&ztest_name_lock, USYNC_THREAD, NULL) == 0);
5585fa9e4066Sahrens 
5586b24ab676SJeff Bonwick 	zs->zs_thread_start = gethrtime();
5587420dfc95SChris Siden 	zs->zs_thread_stop =
5588420dfc95SChris Siden 	    zs->zs_thread_start + ztest_opts.zo_passtime * NANOSEC;
5589b24ab676SJeff Bonwick 	zs->zs_thread_stop = MIN(zs->zs_thread_stop, zs->zs_proc_stop);
5590b24ab676SJeff Bonwick 	zs->zs_thread_kill = zs->zs_thread_stop;
5591420dfc95SChris Siden 	if (ztest_random(100) < ztest_opts.zo_killrate) {
5592420dfc95SChris Siden 		zs->zs_thread_kill -=
5593420dfc95SChris Siden 		    ztest_random(ztest_opts.zo_passtime * NANOSEC);
5594420dfc95SChris Siden 	}
5595fa9e4066Sahrens 
5596b24ab676SJeff Bonwick 	(void) _mutex_init(&zcl.zcl_callbacks_lock, USYNC_THREAD, NULL);
5597fa9e4066Sahrens 
5598b24ab676SJeff Bonwick 	list_create(&zcl.zcl_callbacks, sizeof (ztest_cb_data_t),
5599b24ab676SJeff Bonwick 	    offsetof(ztest_cb_data_t, zcd_node));
5600fa9e4066Sahrens 
56010a4e9518Sgw 	/*
5602e14bb325SJeff Bonwick 	 * Open our pool.
56030a4e9518Sgw 	 */
5604b24ab676SJeff Bonwick 	kernel_init(FREAD | FWRITE);
56053b2aab18SMatthew Ahrens 	VERIFY0(spa_open(ztest_opts.zo_pool, &spa, FTAG));
560609c9d376SGeorge Wilson 	spa->spa_debug = B_TRUE;
560730beaff4SGeorge Wilson 	metaslab_preload_limit = ztest_random(20) + 1;
5608420dfc95SChris Siden 	ztest_spa = spa;
5609b24ab676SJeff Bonwick 
56103b2aab18SMatthew Ahrens 	VERIFY0(dmu_objset_own(ztest_opts.zo_pool,
56113b2aab18SMatthew Ahrens 	    DMU_OST_ANY, B_TRUE, FTAG, &os));
5612e9103aaeSGarrett D'Amore 	zs->zs_guid = dmu_objset_fsid_guid(os);
56133b2aab18SMatthew Ahrens 	dmu_objset_disown(os, FTAG);
5614e9103aaeSGarrett D'Amore 
5615b24ab676SJeff Bonwick 	spa->spa_dedup_ditto = 2 * ZIO_DEDUPDITTO_MIN;
56160a4e9518Sgw 
56178ad4d6ddSJeff Bonwick 	/*
56188ad4d6ddSJeff Bonwick 	 * We don't expect the pool to suspend unless maxfaults == 0,
56198ad4d6ddSJeff Bonwick 	 * in which case ztest_fault_inject() temporarily takes away
56208ad4d6ddSJeff Bonwick 	 * the only valid replica.
56218ad4d6ddSJeff Bonwick 	 */
56221195e687SMark J Musante 	if (MAXFAULTS() == 0)
56238ad4d6ddSJeff Bonwick 		spa->spa_failmode = ZIO_FAILURE_MODE_WAIT;
56248ad4d6ddSJeff Bonwick 	else
56258ad4d6ddSJeff Bonwick 		spa->spa_failmode = ZIO_FAILURE_MODE_PANIC;
56268ad4d6ddSJeff Bonwick 
5627fa9e4066Sahrens 	/*
5628e14bb325SJeff Bonwick 	 * Create a thread to periodically resume suspended I/O.
5629fa9e4066Sahrens 	 */
56308ad4d6ddSJeff Bonwick 	VERIFY(thr_create(0, 0, ztest_resume_thread, spa, THR_BOUND,
5631e14bb325SJeff Bonwick 	    &resume_tid) == 0);
5632fa9e4066Sahrens 
5633b24ab676SJeff Bonwick 	/*
5634b24ab676SJeff Bonwick 	 * Create a deadman thread to abort() if we hang.
5635b24ab676SJeff Bonwick 	 */
5636b24ab676SJeff Bonwick 	VERIFY(thr_create(0, 0, ztest_deadman_thread, zs, THR_BOUND,
5637b24ab676SJeff Bonwick 	    NULL) == 0);
5638b24ab676SJeff Bonwick 
5639fa9e4066Sahrens 	/*
5640fa9e4066Sahrens 	 * Verify that we can safely inquire about about any object,
5641fa9e4066Sahrens 	 * whether it's allocated or not.  To make it interesting,
5642fa9e4066Sahrens 	 * we probe a 5-wide window around each power of two.
5643fa9e4066Sahrens 	 * This hits all edge cases, including zero and the max.
5644fa9e4066Sahrens 	 */
5645b24ab676SJeff Bonwick 	for (int t = 0; t < 64; t++) {
5646b24ab676SJeff Bonwick 		for (int d = -5; d <= 5; d++) {
5647fa9e4066Sahrens 			error = dmu_object_info(spa->spa_meta_objset,
5648fa9e4066Sahrens 			    (1ULL << t) + d, NULL);
5649ea8dc4b6Seschrock 			ASSERT(error == 0 || error == ENOENT ||
5650ea8dc4b6Seschrock 			    error == EINVAL);
5651fa9e4066Sahrens 		}
5652fa9e4066Sahrens 	}
5653fa9e4066Sahrens 
5654fa9e4066Sahrens 	/*
5655b24ab676SJeff Bonwick 	 * If we got any ENOSPC errors on the previous run, destroy something.
5656fa9e4066Sahrens 	 */
5657b24ab676SJeff Bonwick 	if (zs->zs_enospc_count != 0) {
5658420dfc95SChris Siden 		int d = ztest_random(ztest_opts.zo_datasets);
5659420dfc95SChris Siden 		ztest_dataset_destroy(d);
5660b24ab676SJeff Bonwick 	}
5661fa9e4066Sahrens 	zs->zs_enospc_count = 0;
5662fa9e4066Sahrens 
5663420dfc95SChris Siden 	tid = umem_zalloc(ztest_opts.zo_threads * sizeof (thread_t),
5664420dfc95SChris Siden 	    UMEM_NOFAIL);
5665fa9e4066Sahrens 
5666420dfc95SChris Siden 	if (ztest_opts.zo_verbose >= 4)
5667fa9e4066Sahrens 		(void) printf("starting main threads...\n");
5668fa9e4066Sahrens 
5669b24ab676SJeff Bonwick 	/*
5670b24ab676SJeff Bonwick 	 * Kick off all the tests that run in parallel.
5671b24ab676SJeff Bonwick 	 */
5672420dfc95SChris Siden 	for (int t = 0; t < ztest_opts.zo_threads; t++) {
5673420dfc95SChris Siden 		if (t < ztest_opts.zo_datasets &&
5674420dfc95SChris Siden 		    ztest_dataset_open(t) != 0)
5675b24ab676SJeff Bonwick 			return;
5676b24ab676SJeff Bonwick 		VERIFY(thr_create(0, 0, ztest_thread, (void *)(uintptr_t)t,
5677b24ab676SJeff Bonwick 		    THR_BOUND, &tid[t]) == 0);
5678fa9e4066Sahrens 	}
5679fa9e4066Sahrens 
5680b24ab676SJeff Bonwick 	/*
5681b24ab676SJeff Bonwick 	 * Wait for all of the tests to complete.  We go in reverse order
5682b24ab676SJeff Bonwick 	 * so we don't close datasets while threads are still using them.
5683b24ab676SJeff Bonwick 	 */
5684420dfc95SChris Siden 	for (int t = ztest_opts.zo_threads - 1; t >= 0; t--) {
5685b24ab676SJeff Bonwick 		VERIFY(thr_join(tid[t], NULL, NULL) == 0);
5686420dfc95SChris Siden 		if (t < ztest_opts.zo_datasets)
5687420dfc95SChris Siden 			ztest_dataset_close(t);
5688fa9e4066Sahrens 	}
5689fa9e4066Sahrens 
5690fa9e4066Sahrens 	txg_wait_synced(spa_get_dsl(spa), 0);
5691fa9e4066Sahrens 
5692b24ab676SJeff Bonwick 	zs->zs_alloc = metaslab_class_get_alloc(spa_normal_class(spa));
5693b24ab676SJeff Bonwick 	zs->zs_space = metaslab_class_get_space(spa_normal_class(spa));
5694b4952e17SGeorge Wilson 	zfs_dbgmsg_print(FTAG);
5695b24ab676SJeff Bonwick 
5696420dfc95SChris Siden 	umem_free(tid, ztest_opts.zo_threads * sizeof (thread_t));
5697b24ab676SJeff Bonwick 
5698b24ab676SJeff Bonwick 	/* Kill the resume thread */
5699b24ab676SJeff Bonwick 	ztest_exiting = B_TRUE;
5700b24ab676SJeff Bonwick 	VERIFY(thr_join(resume_tid, NULL, NULL) == 0);
5701b24ab676SJeff Bonwick 	ztest_resume(spa);
5702b24ab676SJeff Bonwick 
5703b24ab676SJeff Bonwick 	/*
5704b24ab676SJeff Bonwick 	 * Right before closing the pool, kick off a bunch of async I/O;
5705b24ab676SJeff Bonwick 	 * spa_close() should wait for it to complete.
5706b24ab676SJeff Bonwick 	 */
5707a2cdcdd2SPaul Dagnelie 	for (uint64_t object = 1; object < 50; object++) {
5708a2cdcdd2SPaul Dagnelie 		dmu_prefetch(spa->spa_meta_objset, object, 0, 0, 1ULL << 20,
5709a2cdcdd2SPaul Dagnelie 		    ZIO_PRIORITY_SYNC_READ);
5710a2cdcdd2SPaul Dagnelie 	}
5711b24ab676SJeff Bonwick 
5712b24ab676SJeff Bonwick 	spa_close(spa, FTAG);
5713fa9e4066Sahrens 
5714fa9e4066Sahrens 	/*
5715b24ab676SJeff Bonwick 	 * Verify that we can loop over all pools.
5716fa9e4066Sahrens 	 */
5717b24ab676SJeff Bonwick 	mutex_enter(&spa_namespace_lock);
5718b24ab676SJeff Bonwick 	for (spa = spa_next(NULL); spa != NULL; spa = spa_next(spa))
5719420dfc95SChris Siden 		if (ztest_opts.zo_verbose > 3)
5720b24ab676SJeff Bonwick 			(void) printf("spa_next: found %s\n", spa_name(spa));
5721b24ab676SJeff Bonwick 	mutex_exit(&spa_namespace_lock);
5722b24ab676SJeff Bonwick 
5723b24ab676SJeff Bonwick 	/*
5724b24ab676SJeff Bonwick 	 * Verify that we can export the pool and reimport it under a
5725b24ab676SJeff Bonwick 	 * different name.
5726b24ab676SJeff Bonwick 	 */
5727b24ab676SJeff Bonwick 	if (ztest_random(2) == 0) {
5728b24ab676SJeff Bonwick 		char name[MAXNAMELEN];
5729420dfc95SChris Siden 		(void) snprintf(name, MAXNAMELEN, "%s_import",
5730420dfc95SChris Siden 		    ztest_opts.zo_pool);
5731420dfc95SChris Siden 		ztest_spa_import_export(ztest_opts.zo_pool, name);
5732420dfc95SChris Siden 		ztest_spa_import_export(name, ztest_opts.zo_pool);
5733b24ab676SJeff Bonwick 	}
5734b24ab676SJeff Bonwick 
5735b24ab676SJeff Bonwick 	kernel_fini();
573626cb54a9SGeorge Wilson 
573726cb54a9SGeorge Wilson 	list_destroy(&zcl.zcl_callbacks);
573826cb54a9SGeorge Wilson 
573926cb54a9SGeorge Wilson 	(void) _mutex_destroy(&zcl.zcl_callbacks_lock);
574026cb54a9SGeorge Wilson 
5741420dfc95SChris Siden 	(void) rwlock_destroy(&ztest_name_lock);
5742420dfc95SChris Siden 	(void) _mutex_destroy(&ztest_vdev_lock);
5743b24ab676SJeff Bonwick }
5744b24ab676SJeff Bonwick 
5745b24ab676SJeff Bonwick static void
5746420dfc95SChris Siden ztest_freeze(void)
5747b24ab676SJeff Bonwick {
5748420dfc95SChris Siden 	ztest_ds_t *zd = &ztest_ds[0];
5749b24ab676SJeff Bonwick 	spa_t *spa;
57502215e990SMark J Musante 	int numloops = 0;
5751b24ab676SJeff Bonwick 
5752420dfc95SChris Siden 	if (ztest_opts.zo_verbose >= 3)
5753b24ab676SJeff Bonwick 		(void) printf("testing spa_freeze()...\n");
5754718d718aSGeorge Wilson 
5755b24ab676SJeff Bonwick 	kernel_init(FREAD | FWRITE);
5756b420f3adSRichard Lowe 	VERIFY3U(0, ==, spa_open(ztest_opts.zo_pool, &spa, FTAG));
5757b420f3adSRichard Lowe 	VERIFY3U(0, ==, ztest_dataset_open(0));
575880901aeaSGeorge Wilson 	spa->spa_debug = B_TRUE;
575980901aeaSGeorge Wilson 	ztest_spa = spa;
5760718d718aSGeorge Wilson 
5761b24ab676SJeff Bonwick 	/*
5762b24ab676SJeff Bonwick 	 * Force the first log block to be transactionally allocated.
5763b24ab676SJeff Bonwick 	 * We have to do this before we freeze the pool -- otherwise
5764b24ab676SJeff Bonwick 	 * the log chain won't be anchored.
5765b24ab676SJeff Bonwick 	 */
5766b24ab676SJeff Bonwick 	while (BP_IS_HOLE(&zd->zd_zilog->zl_header->zh_log)) {
5767b24ab676SJeff Bonwick 		ztest_dmu_object_alloc_free(zd, 0);
57685002558fSNeil Perrin 		zil_commit(zd->zd_zilog, 0);
5769fa9e4066Sahrens 	}
5770fa9e4066Sahrens 
5771ea8dc4b6Seschrock 	txg_wait_synced(spa_get_dsl(spa), 0);
5772fa9e4066Sahrens 
5773b24ab676SJeff Bonwick 	/*
5774b24ab676SJeff Bonwick 	 * Freeze the pool.  This stops spa_sync() from doing anything,
5775b24ab676SJeff Bonwick 	 * so that the only way to record changes from now on is the ZIL.
5776b24ab676SJeff Bonwick 	 */
5777b24ab676SJeff Bonwick 	spa_freeze(spa);
5778e14bb325SJeff Bonwick 
57792a104a52SAlex Reece 	/*
57802a104a52SAlex Reece 	 * Because it is hard to predict how much space a write will actually
57812a104a52SAlex Reece 	 * require beforehand, we leave ourselves some fudge space to write over
57822a104a52SAlex Reece 	 * capacity.
57832a104a52SAlex Reece 	 */
57842a104a52SAlex Reece 	uint64_t capacity = metaslab_class_get_space(spa_normal_class(spa)) / 2;
57852a104a52SAlex Reece 
5786b24ab676SJeff Bonwick 	/*
5787b24ab676SJeff Bonwick 	 * Run tests that generate log records but don't alter the pool config
5788b24ab676SJeff Bonwick 	 * or depend on DSL sync tasks (snapshots, objset create/destroy, etc).
5789b24ab676SJeff Bonwick 	 * We do a txg_wait_synced() after each iteration to force the txg
5790b24ab676SJeff Bonwick 	 * to increase well beyond the last synced value in the uberblock.
5791b24ab676SJeff Bonwick 	 * The ZIL should be OK with that.
57922a104a52SAlex Reece 	 *
57932a104a52SAlex Reece 	 * Run a random number of times less than zo_maxloops and ensure we do
57942a104a52SAlex Reece 	 * not run out of space on the pool.
5795b24ab676SJeff Bonwick 	 */
5796420dfc95SChris Siden 	while (ztest_random(10) != 0 &&
57972a104a52SAlex Reece 	    numloops++ < ztest_opts.zo_maxloops &&
57982a104a52SAlex Reece 	    metaslab_class_get_alloc(spa_normal_class(spa)) < capacity) {
57992a104a52SAlex Reece 		ztest_od_t od;
58002a104a52SAlex Reece 		ztest_od_init(&od, 0, FTAG, 0, DMU_OT_UINT64_OTHER, 0, 0);
58012a104a52SAlex Reece 		VERIFY0(ztest_object_init(zd, &od, sizeof (od), B_FALSE));
58022a104a52SAlex Reece 		ztest_io(zd, od.od_object,
58032a104a52SAlex Reece 		    ztest_random(ZTEST_RANGE_LOCKS) << SPA_MAXBLOCKSHIFT);
5804b24ab676SJeff Bonwick 		txg_wait_synced(spa_get_dsl(spa), 0);
5805b24ab676SJeff Bonwick 	}
5806e14bb325SJeff Bonwick 
5807fa9e4066Sahrens 	/*
5808b24ab676SJeff Bonwick 	 * Commit all of the changes we just generated.
5809fa9e4066Sahrens 	 */
58105002558fSNeil Perrin 	zil_commit(zd->zd_zilog, 0);
5811b24ab676SJeff Bonwick 	txg_wait_synced(spa_get_dsl(spa), 0);
5812fa9e4066Sahrens 
5813b24ab676SJeff Bonwick 	/*
5814b24ab676SJeff Bonwick 	 * Close our dataset and close the pool.
5815b24ab676SJeff Bonwick 	 */
5816420dfc95SChris Siden 	ztest_dataset_close(0);
5817e05725b1Sbonwick 	spa_close(spa, FTAG);
5818b24ab676SJeff Bonwick 	kernel_fini();
5819e05725b1Sbonwick 
5820b24ab676SJeff Bonwick 	/*
5821b24ab676SJeff Bonwick 	 * Open and close the pool and dataset to induce log replay.
5822b24ab676SJeff Bonwick 	 */
5823b24ab676SJeff Bonwick 	kernel_init(FREAD | FWRITE);
5824b420f3adSRichard Lowe 	VERIFY3U(0, ==, spa_open(ztest_opts.zo_pool, &spa, FTAG));
5825ce636f8bSMatthew Ahrens 	ASSERT(spa_freeze_txg(spa) == UINT64_MAX);
5826b420f3adSRichard Lowe 	VERIFY3U(0, ==, ztest_dataset_open(0));
5827420dfc95SChris Siden 	ztest_dataset_close(0);
5828dfbb9432SGeorge Wilson 
5829dfbb9432SGeorge Wilson 	spa->spa_debug = B_TRUE;
5830dfbb9432SGeorge Wilson 	ztest_spa = spa;
5831dfbb9432SGeorge Wilson 	txg_wait_synced(spa_get_dsl(spa), 0);
5832dfbb9432SGeorge Wilson 	ztest_reguid(NULL, 0);
5833dfbb9432SGeorge Wilson 
5834b24ab676SJeff Bonwick 	spa_close(spa, FTAG);
5835fa9e4066Sahrens 	kernel_fini();
5836fa9e4066Sahrens }
5837fa9e4066Sahrens 
5838fa9e4066Sahrens void
5839fa9e4066Sahrens print_time(hrtime_t t, char *timebuf)
5840fa9e4066Sahrens {
5841fa9e4066Sahrens 	hrtime_t s = t / NANOSEC;
5842fa9e4066Sahrens 	hrtime_t m = s / 60;
5843fa9e4066Sahrens 	hrtime_t h = m / 60;
5844fa9e4066Sahrens 	hrtime_t d = h / 24;
5845fa9e4066Sahrens 
5846fa9e4066Sahrens 	s -= m * 60;
5847fa9e4066Sahrens 	m -= h * 60;
5848fa9e4066Sahrens 	h -= d * 24;
5849fa9e4066Sahrens 
5850fa9e4066Sahrens 	timebuf[0] = '\0';
5851fa9e4066Sahrens 
5852fa9e4066Sahrens 	if (d)
5853fa9e4066Sahrens 		(void) sprintf(timebuf,
5854fa9e4066Sahrens 		    "%llud%02lluh%02llum%02llus", d, h, m, s);
5855fa9e4066Sahrens 	else if (h)
5856fa9e4066Sahrens 		(void) sprintf(timebuf, "%lluh%02llum%02llus", h, m, s);
5857fa9e4066Sahrens 	else if (m)
5858fa9e4066Sahrens 		(void) sprintf(timebuf, "%llum%02llus", m, s);
5859fa9e4066Sahrens 	else
5860fa9e4066Sahrens 		(void) sprintf(timebuf, "%llus", s);
5861fa9e4066Sahrens }
5862fa9e4066Sahrens 
58631195e687SMark J Musante static nvlist_t *
58641195e687SMark J Musante make_random_props()
58651195e687SMark J Musante {
58661195e687SMark J Musante 	nvlist_t *props;
58671195e687SMark J Musante 
58681195e687SMark J Musante 	VERIFY(nvlist_alloc(&props, NV_UNIQUE_NAME, 0) == 0);
5869ad135b5dSChristopher Siden 	if (ztest_random(2) == 0)
5870ad135b5dSChristopher Siden 		return (props);
58711195e687SMark J Musante 	VERIFY(nvlist_add_uint64(props, "autoreplace", 1) == 0);
58721195e687SMark J Musante 
58731195e687SMark J Musante 	return (props);
58741195e687SMark J Musante }
58751195e687SMark J Musante 
5876fa9e4066Sahrens /*
5877fa9e4066Sahrens  * Create a storage pool with the given name and initial vdev size.
5878b24ab676SJeff Bonwick  * Then test spa_freeze() functionality.
5879fa9e4066Sahrens  */
5880fa9e4066Sahrens static void
5881b24ab676SJeff Bonwick ztest_init(ztest_shared_t *zs)
5882fa9e4066Sahrens {
5883fa9e4066Sahrens 	spa_t *spa;
58841195e687SMark J Musante 	nvlist_t *nvroot, *props;
5885fa9e4066Sahrens 
5886420dfc95SChris Siden 	VERIFY(_mutex_init(&ztest_vdev_lock, USYNC_THREAD, NULL) == 0);
5887420dfc95SChris Siden 	VERIFY(rwlock_init(&ztest_name_lock, USYNC_THREAD, NULL) == 0);
5888b24ab676SJeff Bonwick 
5889fa9e4066Sahrens 	kernel_init(FREAD | FWRITE);
5890fa9e4066Sahrens 
5891fa9e4066Sahrens 	/*
5892fa9e4066Sahrens 	 * Create the storage pool.
5893fa9e4066Sahrens 	 */
5894420dfc95SChris Siden 	(void) spa_destroy(ztest_opts.zo_pool);
589588ecc943SGeorge Wilson 	ztest_shared->zs_vdev_next_leaf = 0;
58961195e687SMark J Musante 	zs->zs_splits = 0;
5897420dfc95SChris Siden 	zs->zs_mirrors = ztest_opts.zo_mirrors;
589825345e46SGeorge Wilson 	nvroot = make_vdev_root(NULL, NULL, NULL, ztest_opts.zo_vdev_size, 0,
5899420dfc95SChris Siden 	    0, ztest_opts.zo_raidz, zs->zs_mirrors, 1);
59001195e687SMark J Musante 	props = make_random_props();
5901ad135b5dSChristopher Siden 	for (int i = 0; i < SPA_FEATURES; i++) {
5902ad135b5dSChristopher Siden 		char buf[1024];
5903ad135b5dSChristopher Siden 		(void) snprintf(buf, sizeof (buf), "feature@%s",
5904ad135b5dSChristopher Siden 		    spa_feature_table[i].fi_uname);
5905b420f3adSRichard Lowe 		VERIFY3U(0, ==, nvlist_add_uint64(props, buf, 0));
5906ad135b5dSChristopher Siden 	}
5907b420f3adSRichard Lowe 	VERIFY3U(0, ==, spa_create(ztest_opts.zo_pool, nvroot, props, NULL));
5908fa9e4066Sahrens 	nvlist_free(nvroot);
5909*1df447ebSRichard Yao 	nvlist_free(props);
5910fa9e4066Sahrens 
5911b420f3adSRichard Lowe 	VERIFY3U(0, ==, spa_open(ztest_opts.zo_pool, &spa, FTAG));
5912420dfc95SChris Siden 	zs->zs_metaslab_sz =
5913420dfc95SChris Siden 	    1ULL << spa->spa_root_vdev->vdev_child[0]->vdev_ms_shift;
5914ad135b5dSChristopher Siden 
5915fa9e4066Sahrens 	spa_close(spa, FTAG);
5916fa9e4066Sahrens 
5917fa9e4066Sahrens 	kernel_fini();
5918b24ab676SJeff Bonwick 
5919420dfc95SChris Siden 	ztest_run_zdb(ztest_opts.zo_pool);
5920420dfc95SChris Siden 
5921420dfc95SChris Siden 	ztest_freeze();
5922420dfc95SChris Siden 
5923420dfc95SChris Siden 	ztest_run_zdb(ztest_opts.zo_pool);
5924420dfc95SChris Siden 
5925420dfc95SChris Siden 	(void) rwlock_destroy(&ztest_name_lock);
5926420dfc95SChris Siden 	(void) _mutex_destroy(&ztest_vdev_lock);
5927420dfc95SChris Siden }
5928420dfc95SChris Siden 
5929420dfc95SChris Siden static void
5930741652b0SEtienne Dechamps setup_data_fd(void)
5931420dfc95SChris Siden {
5932741652b0SEtienne Dechamps 	static char ztest_name_data[] = "/tmp/ztest.data.XXXXXX";
5933420dfc95SChris Siden 
5934741652b0SEtienne Dechamps 	ztest_fd_data = mkstemp(ztest_name_data);
5935741652b0SEtienne Dechamps 	ASSERT3S(ztest_fd_data, >=, 0);
5936741652b0SEtienne Dechamps 	(void) unlink(ztest_name_data);
5937420dfc95SChris Siden }
5938420dfc95SChris Siden 
5939741652b0SEtienne Dechamps 
5940ad135b5dSChristopher Siden static int
5941ad135b5dSChristopher Siden shared_data_size(ztest_shared_hdr_t *hdr)
5942ad135b5dSChristopher Siden {
5943ad135b5dSChristopher Siden 	int size;
5944ad135b5dSChristopher Siden 
5945ad135b5dSChristopher Siden 	size = hdr->zh_hdr_size;
5946ad135b5dSChristopher Siden 	size += hdr->zh_opts_size;
5947ad135b5dSChristopher Siden 	size += hdr->zh_size;
5948ad135b5dSChristopher Siden 	size += hdr->zh_stats_size * hdr->zh_stats_count;
5949ad135b5dSChristopher Siden 	size += hdr->zh_ds_size * hdr->zh_ds_count;
5950ad135b5dSChristopher Siden 
5951ad135b5dSChristopher Siden 	return (size);
5952ad135b5dSChristopher Siden }
5953ad135b5dSChristopher Siden 
5954420dfc95SChris Siden static void
5955420dfc95SChris Siden setup_hdr(void)
5956420dfc95SChris Siden {
5957ad135b5dSChristopher Siden 	int size;
5958420dfc95SChris Siden 	ztest_shared_hdr_t *hdr;
5959420dfc95SChris Siden 
5960420dfc95SChris Siden 	hdr = (void *)mmap(0, P2ROUNDUP(sizeof (*hdr), getpagesize()),
5961741652b0SEtienne Dechamps 	    PROT_READ | PROT_WRITE, MAP_SHARED, ztest_fd_data, 0);
5962420dfc95SChris Siden 	ASSERT(hdr != MAP_FAILED);
5963420dfc95SChris Siden 
5964741652b0SEtienne Dechamps 	VERIFY3U(0, ==, ftruncate(ztest_fd_data, sizeof (ztest_shared_hdr_t)));
5965ad135b5dSChristopher Siden 
5966420dfc95SChris Siden 	hdr->zh_hdr_size = sizeof (ztest_shared_hdr_t);
5967420dfc95SChris Siden 	hdr->zh_opts_size = sizeof (ztest_shared_opts_t);
5968420dfc95SChris Siden 	hdr->zh_size = sizeof (ztest_shared_t);
5969420dfc95SChris Siden 	hdr->zh_stats_size = sizeof (ztest_shared_callstate_t);
5970420dfc95SChris Siden 	hdr->zh_stats_count = ZTEST_FUNCS;
5971420dfc95SChris Siden 	hdr->zh_ds_size = sizeof (ztest_shared_ds_t);
5972420dfc95SChris Siden 	hdr->zh_ds_count = ztest_opts.zo_datasets;
5973420dfc95SChris Siden 
5974ad135b5dSChristopher Siden 	size = shared_data_size(hdr);
5975741652b0SEtienne Dechamps 	VERIFY3U(0, ==, ftruncate(ztest_fd_data, size));
5976ad135b5dSChristopher Siden 
5977420dfc95SChris Siden 	(void) munmap((caddr_t)hdr, P2ROUNDUP(sizeof (*hdr), getpagesize()));
5978420dfc95SChris Siden }
5979420dfc95SChris Siden 
5980420dfc95SChris Siden static void
5981420dfc95SChris Siden setup_data(void)
5982420dfc95SChris Siden {
5983420dfc95SChris Siden 	int size, offset;
5984420dfc95SChris Siden 	ztest_shared_hdr_t *hdr;
5985420dfc95SChris Siden 	uint8_t *buf;
5986420dfc95SChris Siden 
5987420dfc95SChris Siden 	hdr = (void *)mmap(0, P2ROUNDUP(sizeof (*hdr), getpagesize()),
5988741652b0SEtienne Dechamps 	    PROT_READ, MAP_SHARED, ztest_fd_data, 0);
5989420dfc95SChris Siden 	ASSERT(hdr != MAP_FAILED);
5990420dfc95SChris Siden 
5991ad135b5dSChristopher Siden 	size = shared_data_size(hdr);
5992420dfc95SChris Siden 
5993420dfc95SChris Siden 	(void) munmap((caddr_t)hdr, P2ROUNDUP(sizeof (*hdr), getpagesize()));
5994420dfc95SChris Siden 	hdr = ztest_shared_hdr = (void *)mmap(0, P2ROUNDUP(size, getpagesize()),
5995741652b0SEtienne Dechamps 	    PROT_READ | PROT_WRITE, MAP_SHARED, ztest_fd_data, 0);
5996420dfc95SChris Siden 	ASSERT(hdr != MAP_FAILED);
5997420dfc95SChris Siden 	buf = (uint8_t *)hdr;
5998420dfc95SChris Siden 
5999420dfc95SChris Siden 	offset = hdr->zh_hdr_size;
6000420dfc95SChris Siden 	ztest_shared_opts = (void *)&buf[offset];
6001420dfc95SChris Siden 	offset += hdr->zh_opts_size;
6002420dfc95SChris Siden 	ztest_shared = (void *)&buf[offset];
6003420dfc95SChris Siden 	offset += hdr->zh_size;
6004420dfc95SChris Siden 	ztest_shared_callstate = (void *)&buf[offset];
6005420dfc95SChris Siden 	offset += hdr->zh_stats_size * hdr->zh_stats_count;
6006420dfc95SChris Siden 	ztest_shared_ds = (void *)&buf[offset];
6007420dfc95SChris Siden }
6008420dfc95SChris Siden 
6009420dfc95SChris Siden static boolean_t
6010420dfc95SChris Siden exec_child(char *cmd, char *libpath, boolean_t ignorekill, int *statusp)
6011420dfc95SChris Siden {
6012420dfc95SChris Siden 	pid_t pid;
6013420dfc95SChris Siden 	int status;
6014741652b0SEtienne Dechamps 	char *cmdbuf = NULL;
6015420dfc95SChris Siden 
6016420dfc95SChris Siden 	pid = fork();
6017420dfc95SChris Siden 
6018420dfc95SChris Siden 	if (cmd == NULL) {
6019741652b0SEtienne Dechamps 		cmdbuf = umem_alloc(MAXPATHLEN, UMEM_NOFAIL);
6020741652b0SEtienne Dechamps 		(void) strlcpy(cmdbuf, getexecname(), MAXPATHLEN);
6021420dfc95SChris Siden 		cmd = cmdbuf;
6022420dfc95SChris Siden 	}
6023b24ab676SJeff Bonwick 
6024420dfc95SChris Siden 	if (pid == -1)
6025420dfc95SChris Siden 		fatal(1, "fork failed");
6026b24ab676SJeff Bonwick 
6027420dfc95SChris Siden 	if (pid == 0) {	/* child */
6028420dfc95SChris Siden 		char *emptyargv[2] = { cmd, NULL };
6029741652b0SEtienne Dechamps 		char fd_data_str[12];
603026cb54a9SGeorge Wilson 
6031420dfc95SChris Siden 		struct rlimit rl = { 1024, 1024 };
6032420dfc95SChris Siden 		(void) setrlimit(RLIMIT_NOFILE, &rl);
6033741652b0SEtienne Dechamps 
6034741652b0SEtienne Dechamps 		(void) close(ztest_fd_rand);
6035741652b0SEtienne Dechamps 		VERIFY3U(11, >=,
6036741652b0SEtienne Dechamps 		    snprintf(fd_data_str, 12, "%d", ztest_fd_data));
6037741652b0SEtienne Dechamps 		VERIFY0(setenv("ZTEST_FD_DATA", fd_data_str, 1));
6038741652b0SEtienne Dechamps 
6039420dfc95SChris Siden 		(void) enable_extended_FILE_stdio(-1, -1);
6040420dfc95SChris Siden 		if (libpath != NULL)
6041420dfc95SChris Siden 			VERIFY(0 == setenv("LD_LIBRARY_PATH", libpath, 1));
6042420dfc95SChris Siden 		(void) execv(cmd, emptyargv);
6043420dfc95SChris Siden 		ztest_dump_core = B_FALSE;
6044420dfc95SChris Siden 		fatal(B_TRUE, "exec failed: %s", cmd);
6045420dfc95SChris Siden 	}
6046420dfc95SChris Siden 
6047741652b0SEtienne Dechamps 	if (cmdbuf != NULL) {
6048741652b0SEtienne Dechamps 		umem_free(cmdbuf, MAXPATHLEN);
6049741652b0SEtienne Dechamps 		cmd = NULL;
6050741652b0SEtienne Dechamps 	}
6051741652b0SEtienne Dechamps 
6052420dfc95SChris Siden 	while (waitpid(pid, &status, 0) != pid)
6053420dfc95SChris Siden 		continue;
6054420dfc95SChris Siden 	if (statusp != NULL)
6055420dfc95SChris Siden 		*statusp = status;
6056420dfc95SChris Siden 
6057420dfc95SChris Siden 	if (WIFEXITED(status)) {
6058420dfc95SChris Siden 		if (WEXITSTATUS(status) != 0) {
6059420dfc95SChris Siden 			(void) fprintf(stderr, "child exited with code %d\n",
6060420dfc95SChris Siden 			    WEXITSTATUS(status));
6061420dfc95SChris Siden 			exit(2);
6062420dfc95SChris Siden 		}
6063420dfc95SChris Siden 		return (B_FALSE);
6064420dfc95SChris Siden 	} else if (WIFSIGNALED(status)) {
6065420dfc95SChris Siden 		if (!ignorekill || WTERMSIG(status) != SIGKILL) {
6066420dfc95SChris Siden 			(void) fprintf(stderr, "child died with signal %d\n",
6067420dfc95SChris Siden 			    WTERMSIG(status));
6068420dfc95SChris Siden 			exit(3);
6069420dfc95SChris Siden 		}
6070420dfc95SChris Siden 		return (B_TRUE);
6071420dfc95SChris Siden 	} else {
6072420dfc95SChris Siden 		(void) fprintf(stderr, "something strange happened to child\n");
6073420dfc95SChris Siden 		exit(4);
6074420dfc95SChris Siden 		/* NOTREACHED */
6075420dfc95SChris Siden 	}
6076420dfc95SChris Siden }
6077420dfc95SChris Siden 
6078420dfc95SChris Siden static void
6079420dfc95SChris Siden ztest_run_init(void)
6080420dfc95SChris Siden {
6081420dfc95SChris Siden 	ztest_shared_t *zs = ztest_shared;
6082420dfc95SChris Siden 
6083420dfc95SChris Siden 	ASSERT(ztest_opts.zo_init != 0);
6084420dfc95SChris Siden 
6085420dfc95SChris Siden 	/*
6086420dfc95SChris Siden 	 * Blow away any existing copy of zpool.cache
6087420dfc95SChris Siden 	 */
6088420dfc95SChris Siden 	(void) remove(spa_config_path);
6089420dfc95SChris Siden 
6090420dfc95SChris Siden 	/*
6091420dfc95SChris Siden 	 * Create and initialize our storage pool.
6092420dfc95SChris Siden 	 */
6093420dfc95SChris Siden 	for (int i = 1; i <= ztest_opts.zo_init; i++) {
6094420dfc95SChris Siden 		bzero(zs, sizeof (ztest_shared_t));
6095420dfc95SChris Siden 		if (ztest_opts.zo_verbose >= 3 &&
6096420dfc95SChris Siden 		    ztest_opts.zo_init != 1) {
6097420dfc95SChris Siden 			(void) printf("ztest_init(), pass %d\n", i);
6098420dfc95SChris Siden 		}
6099420dfc95SChris Siden 		ztest_init(zs);
6100420dfc95SChris Siden 	}
6101fa9e4066Sahrens }
6102fa9e4066Sahrens 
6103fa9e4066Sahrens int
6104fa9e4066Sahrens main(int argc, char **argv)
6105fa9e4066Sahrens {
6106fa9e4066Sahrens 	int kills = 0;
6107fa9e4066Sahrens 	int iters = 0;
6108420dfc95SChris Siden 	int older = 0;
6109420dfc95SChris Siden 	int newer = 0;
6110fa9e4066Sahrens 	ztest_shared_t *zs;
6111fa9e4066Sahrens 	ztest_info_t *zi;
6112420dfc95SChris Siden 	ztest_shared_callstate_t *zc;
6113fa9e4066Sahrens 	char timebuf[100];
6114fa9e4066Sahrens 	char numbuf[6];
6115b24ab676SJeff Bonwick 	spa_t *spa;
6116741652b0SEtienne Dechamps 	char *cmd;
6117420dfc95SChris Siden 	boolean_t hasalt;
6118741652b0SEtienne Dechamps 	char *fd_data_str = getenv("ZTEST_FD_DATA");
6119fa9e4066Sahrens 
6120fa9e4066Sahrens 	(void) setvbuf(stdout, NULL, _IOLBF, 0);
6121fa9e4066Sahrens 
6122cd1c8b85SMatthew Ahrens 	dprintf_setup(&argc, argv);
612369962b56SMatthew Ahrens 	zfs_deadman_synctime_ms = 300000;
6124cd1c8b85SMatthew Ahrens 
6125741652b0SEtienne Dechamps 	ztest_fd_rand = open("/dev/urandom", O_RDONLY);
6126741652b0SEtienne Dechamps 	ASSERT3S(ztest_fd_rand, >=, 0);
6127741652b0SEtienne Dechamps 
6128741652b0SEtienne Dechamps 	if (!fd_data_str) {
6129420dfc95SChris Siden 		process_options(argc, argv);
6130fa9e4066Sahrens 
6131741652b0SEtienne Dechamps 		setup_data_fd();
6132420dfc95SChris Siden 		setup_hdr();
6133420dfc95SChris Siden 		setup_data();
6134420dfc95SChris Siden 		bcopy(&ztest_opts, ztest_shared_opts,
6135420dfc95SChris Siden 		    sizeof (*ztest_shared_opts));
6136420dfc95SChris Siden 	} else {
6137741652b0SEtienne Dechamps 		ztest_fd_data = atoi(fd_data_str);
6138420dfc95SChris Siden 		setup_data();
6139420dfc95SChris Siden 		bcopy(ztest_shared_opts, &ztest_opts, sizeof (ztest_opts));
6140420dfc95SChris Siden 	}
6141420dfc95SChris Siden 	ASSERT3U(ztest_opts.zo_datasets, ==, ztest_shared_hdr->zh_ds_count);
6142fa9e4066Sahrens 
6143f0ba89beSJeff Bonwick 	/* Override location of zpool.cache */
6144741652b0SEtienne Dechamps 	VERIFY3U(asprintf((char **)&spa_config_path, "%s/zpool.cache",
6145741652b0SEtienne Dechamps 	    ztest_opts.zo_dir), !=, -1);
6146f0ba89beSJeff Bonwick 
6147420dfc95SChris Siden 	ztest_ds = umem_alloc(ztest_opts.zo_datasets * sizeof (ztest_ds_t),
6148420dfc95SChris Siden 	    UMEM_NOFAIL);
6149420dfc95SChris Siden 	zs = ztest_shared;
6150ea8dc4b6Seschrock 
6151741652b0SEtienne Dechamps 	if (fd_data_str) {
6152420dfc95SChris Siden 		metaslab_gang_bang = ztest_opts.zo_metaslab_gang_bang;
6153420dfc95SChris Siden 		metaslab_df_alloc_threshold =
6154420dfc95SChris Siden 		    zs->zs_metaslab_df_alloc_threshold;
6155b24ab676SJeff Bonwick 
6156420dfc95SChris Siden 		if (zs->zs_do_init)
6157420dfc95SChris Siden 			ztest_run_init();
6158420dfc95SChris Siden 		else
6159420dfc95SChris Siden 			ztest_run(zs);
6160420dfc95SChris Siden 		exit(0);
6161420dfc95SChris Siden 	}
6162fa9e4066Sahrens 
6163420dfc95SChris Siden 	hasalt = (strlen(ztest_opts.zo_alt_ztest) != 0);
6164420dfc95SChris Siden 
6165420dfc95SChris Siden 	if (ztest_opts.zo_verbose >= 1) {
6166fa9e4066Sahrens 		(void) printf("%llu vdevs, %d datasets, %d threads,"
6167fa9e4066Sahrens 		    " %llu seconds...\n",
6168420dfc95SChris Siden 		    (u_longlong_t)ztest_opts.zo_vdevs,
6169420dfc95SChris Siden 		    ztest_opts.zo_datasets,
6170420dfc95SChris Siden 		    ztest_opts.zo_threads,
6171420dfc95SChris Siden 		    (u_longlong_t)ztest_opts.zo_time);
6172fa9e4066Sahrens 	}
6173fa9e4066Sahrens 
6174741652b0SEtienne Dechamps 	cmd = umem_alloc(MAXNAMELEN, UMEM_NOFAIL);
6175741652b0SEtienne Dechamps 	(void) strlcpy(cmd, getexecname(), MAXNAMELEN);
6176420dfc95SChris Siden 
6177420dfc95SChris Siden 	zs->zs_do_init = B_TRUE;
6178420dfc95SChris Siden 	if (strlen(ztest_opts.zo_alt_ztest) != 0) {
6179420dfc95SChris Siden 		if (ztest_opts.zo_verbose >= 1) {
6180420dfc95SChris Siden 			(void) printf("Executing older ztest for "
6181420dfc95SChris Siden 			    "initialization: %s\n", ztest_opts.zo_alt_ztest);
6182420dfc95SChris Siden 		}
6183420dfc95SChris Siden 		VERIFY(!exec_child(ztest_opts.zo_alt_ztest,
6184420dfc95SChris Siden 		    ztest_opts.zo_alt_libpath, B_FALSE, NULL));
6185420dfc95SChris Siden 	} else {
6186420dfc95SChris Siden 		VERIFY(!exec_child(NULL, NULL, B_FALSE, NULL));
6187fa9e4066Sahrens 	}
6188420dfc95SChris Siden 	zs->zs_do_init = B_FALSE;
6189fa9e4066Sahrens 
6190b24ab676SJeff Bonwick 	zs->zs_proc_start = gethrtime();
6191420dfc95SChris Siden 	zs->zs_proc_stop = zs->zs_proc_start + ztest_opts.zo_time * NANOSEC;
6192fa9e4066Sahrens 
6193b24ab676SJeff Bonwick 	for (int f = 0; f < ZTEST_FUNCS; f++) {
6194420dfc95SChris Siden 		zi = &ztest_info[f];
6195420dfc95SChris Siden 		zc = ZTEST_GET_SHARED_CALLSTATE(f);
6196b24ab676SJeff Bonwick 		if (zs->zs_proc_start + zi->zi_interval[0] > zs->zs_proc_stop)
6197420dfc95SChris Siden 			zc->zc_next = UINT64_MAX;
6198fa9e4066Sahrens 		else
6199420dfc95SChris Siden 			zc->zc_next = zs->zs_proc_start +
6200b24ab676SJeff Bonwick 			    ztest_random(2 * zi->zi_interval[0] + 1);
6201fa9e4066Sahrens 	}
6202fa9e4066Sahrens 
6203fa9e4066Sahrens 	/*
6204fa9e4066Sahrens 	 * Run the tests in a loop.  These tests include fault injection
6205fa9e4066Sahrens 	 * to verify that self-healing data works, and forced crashes
6206fa9e4066Sahrens 	 * to verify that we never lose on-disk consistency.
6207fa9e4066Sahrens 	 */
6208b24ab676SJeff Bonwick 	while (gethrtime() < zs->zs_proc_stop) {
6209fa9e4066Sahrens 		int status;
6210420dfc95SChris Siden 		boolean_t killed;
6211fa9e4066Sahrens 
6212fa9e4066Sahrens 		/*
6213fa9e4066Sahrens 		 * Initialize the workload counters for each function.
6214fa9e4066Sahrens 		 */
6215b24ab676SJeff Bonwick 		for (int f = 0; f < ZTEST_FUNCS; f++) {
6216420dfc95SChris Siden 			zc = ZTEST_GET_SHARED_CALLSTATE(f);
6217420dfc95SChris Siden 			zc->zc_count = 0;
6218420dfc95SChris Siden 			zc->zc_time = 0;
6219fa9e4066Sahrens 		}
6220fa9e4066Sahrens 
6221d6e555bdSGeorge Wilson 		/* Set the allocation switch size */
6222420dfc95SChris Siden 		zs->zs_metaslab_df_alloc_threshold =
6223420dfc95SChris Siden 		    ztest_random(zs->zs_metaslab_sz / 4) + 1;
6224fa9e4066Sahrens 
6225420dfc95SChris Siden 		if (!hasalt || ztest_random(2) == 0) {
6226420dfc95SChris Siden 			if (hasalt && ztest_opts.zo_verbose >= 1) {
6227420dfc95SChris Siden 				(void) printf("Executing newer ztest: %s\n",
6228420dfc95SChris Siden 				    cmd);
6229fa9e4066Sahrens 			}
6230420dfc95SChris Siden 			newer++;
6231420dfc95SChris Siden 			killed = exec_child(cmd, NULL, B_TRUE, &status);
62325ad82045Snd 		} else {
6233420dfc95SChris Siden 			if (hasalt && ztest_opts.zo_verbose >= 1) {
6234420dfc95SChris Siden 				(void) printf("Executing older ztest: %s\n",
6235420dfc95SChris Siden 				    ztest_opts.zo_alt_ztest);
6236420dfc95SChris Siden 			}
6237420dfc95SChris Siden 			older++;
6238420dfc95SChris Siden 			killed = exec_child(ztest_opts.zo_alt_ztest,
6239420dfc95SChris Siden 			    ztest_opts.zo_alt_libpath, B_TRUE, &status);
6240fa9e4066Sahrens 		}
6241fa9e4066Sahrens 
6242420dfc95SChris Siden 		if (killed)
6243420dfc95SChris Siden 			kills++;
6244fa9e4066Sahrens 		iters++;
6245fa9e4066Sahrens 
6246420dfc95SChris Siden 		if (ztest_opts.zo_verbose >= 1) {
6247fa9e4066Sahrens 			hrtime_t now = gethrtime();
6248fa9e4066Sahrens 
6249b24ab676SJeff Bonwick 			now = MIN(now, zs->zs_proc_stop);
6250b24ab676SJeff Bonwick 			print_time(zs->zs_proc_stop - now, timebuf);
6251fa9e4066Sahrens 			nicenum(zs->zs_space, numbuf);
6252fa9e4066Sahrens 
6253fa9e4066Sahrens 			(void) printf("Pass %3d, %8s, %3llu ENOSPC, "
6254fa9e4066Sahrens 			    "%4.1f%% of %5s used, %3.0f%% done, %8s to go\n",
6255fa9e4066Sahrens 			    iters,
6256fa9e4066Sahrens 			    WIFEXITED(status) ? "Complete" : "SIGKILL",
6257fa9e4066Sahrens 			    (u_longlong_t)zs->zs_enospc_count,
6258fa9e4066Sahrens 			    100.0 * zs->zs_alloc / zs->zs_space,
6259fa9e4066Sahrens 			    numbuf,
6260b24ab676SJeff Bonwick 			    100.0 * (now - zs->zs_proc_start) /
6261420dfc95SChris Siden 			    (ztest_opts.zo_time * NANOSEC), timebuf);
6262fa9e4066Sahrens 		}
6263fa9e4066Sahrens 
6264420dfc95SChris Siden 		if (ztest_opts.zo_verbose >= 2) {
6265fa9e4066Sahrens 			(void) printf("\nWorkload summary:\n\n");
6266fa9e4066Sahrens 			(void) printf("%7s %9s   %s\n",
6267fa9e4066Sahrens 			    "Calls", "Time", "Function");
6268fa9e4066Sahrens 			(void) printf("%7s %9s   %s\n",
6269fa9e4066Sahrens 			    "-----", "----", "--------");
6270b24ab676SJeff Bonwick 			for (int f = 0; f < ZTEST_FUNCS; f++) {
6271fa9e4066Sahrens 				Dl_info dli;
6272fa9e4066Sahrens 
6273420dfc95SChris Siden 				zi = &ztest_info[f];
6274420dfc95SChris Siden 				zc = ZTEST_GET_SHARED_CALLSTATE(f);
6275420dfc95SChris Siden 				print_time(zc->zc_time, timebuf);
6276fa9e4066Sahrens 				(void) dladdr((void *)zi->zi_func, &dli);
6277fa9e4066Sahrens 				(void) printf("%7llu %9s   %s\n",
6278420dfc95SChris Siden 				    (u_longlong_t)zc->zc_count, timebuf,
6279fa9e4066Sahrens 				    dli.dli_sname);
6280fa9e4066Sahrens 			}
6281fa9e4066Sahrens 			(void) printf("\n");
6282fa9e4066Sahrens 		}
6283fa9e4066Sahrens 
6284fa9e4066Sahrens 		/*
6285b24ab676SJeff Bonwick 		 * It's possible that we killed a child during a rename test,
6286b24ab676SJeff Bonwick 		 * in which case we'll have a 'ztest_tmp' pool lying around
6287b24ab676SJeff Bonwick 		 * instead of 'ztest'.  Do a blind rename in case this happened.
6288fa9e4066Sahrens 		 */
6289b24ab676SJeff Bonwick 		kernel_init(FREAD);
6290420dfc95SChris Siden 		if (spa_open(ztest_opts.zo_pool, &spa, FTAG) == 0) {
6291b24ab676SJeff Bonwick 			spa_close(spa, FTAG);
6292b24ab676SJeff Bonwick 		} else {
6293b24ab676SJeff Bonwick 			char tmpname[MAXNAMELEN];
6294b24ab676SJeff Bonwick 			kernel_fini();
6295b24ab676SJeff Bonwick 			kernel_init(FREAD | FWRITE);
6296b24ab676SJeff Bonwick 			(void) snprintf(tmpname, sizeof (tmpname), "%s_tmp",
6297420dfc95SChris Siden 			    ztest_opts.zo_pool);
6298420dfc95SChris Siden 			(void) spa_rename(tmpname, ztest_opts.zo_pool);
6299b24ab676SJeff Bonwick 		}
6300fa9e4066Sahrens 		kernel_fini();
6301fa9e4066Sahrens 
6302420dfc95SChris Siden 		ztest_run_zdb(ztest_opts.zo_pool);
6303b24ab676SJeff Bonwick 	}
6304fa9e4066Sahrens 
6305420dfc95SChris Siden 	if (ztest_opts.zo_verbose >= 1) {
6306420dfc95SChris Siden 		if (hasalt) {
6307420dfc95SChris Siden 			(void) printf("%d runs of older ztest: %s\n", older,
6308420dfc95SChris Siden 			    ztest_opts.zo_alt_ztest);
6309420dfc95SChris Siden 			(void) printf("%d runs of newer ztest: %s\n", newer,
6310420dfc95SChris Siden 			    cmd);
6311420dfc95SChris Siden 		}
6312fa9e4066Sahrens 		(void) printf("%d killed, %d completed, %.0f%% kill rate\n",
6313fa9e4066Sahrens 		    kills, iters - kills, (100.0 * kills) / MAX(1, iters));
6314fa9e4066Sahrens 	}
6315fa9e4066Sahrens 
6316741652b0SEtienne Dechamps 	umem_free(cmd, MAXNAMELEN);
6317741652b0SEtienne Dechamps 
6318fa9e4066Sahrens 	return (0);
6319fa9e4066Sahrens }
6320