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