xref: /freebsd/usr.sbin/makefs/zfs.c (revision 8a77bc5e)
1240afd8cSMark Johnston /*-
24d846d26SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
3240afd8cSMark Johnston  *
4240afd8cSMark Johnston  * Copyright (c) 2022 The FreeBSD Foundation
5240afd8cSMark Johnston  *
6240afd8cSMark Johnston  * This software was developed by Mark Johnston under sponsorship from
7240afd8cSMark Johnston  * the FreeBSD Foundation.
8240afd8cSMark Johnston  *
9240afd8cSMark Johnston  * Redistribution and use in source and binary forms, with or without
10240afd8cSMark Johnston  * modification, are permitted provided that the following conditions are
11240afd8cSMark Johnston  * met:
12240afd8cSMark Johnston  * 1. Redistributions of source code must retain the above copyright
13240afd8cSMark Johnston  *    notice, this list of conditions and the following disclaimer.
14240afd8cSMark Johnston  * 2. Redistributions in binary form must reproduce the above copyright
15240afd8cSMark Johnston  *    notice, this list of conditions and the following disclaimer in
16240afd8cSMark Johnston  *    the documentation and/or other materials provided with the distribution.
17240afd8cSMark Johnston  *
18240afd8cSMark Johnston  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19240afd8cSMark Johnston  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20240afd8cSMark Johnston  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21240afd8cSMark Johnston  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22240afd8cSMark Johnston  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23240afd8cSMark Johnston  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24240afd8cSMark Johnston  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25240afd8cSMark Johnston  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26240afd8cSMark Johnston  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27240afd8cSMark Johnston  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28240afd8cSMark Johnston  * SUCH DAMAGE.
29240afd8cSMark Johnston  */
30240afd8cSMark Johnston 
31240afd8cSMark Johnston #include <sys/param.h>
32240afd8cSMark Johnston #include <sys/errno.h>
33240afd8cSMark Johnston #include <sys/queue.h>
34240afd8cSMark Johnston 
35240afd8cSMark Johnston #include <assert.h>
36a9e7a44cSMark Johnston #include <ctype.h>
37240afd8cSMark Johnston #include <fcntl.h>
38187084ddSMark Johnston #include <stdalign.h>
39240afd8cSMark Johnston #include <stdbool.h>
40240afd8cSMark Johnston #include <stddef.h>
41240afd8cSMark Johnston #include <stdlib.h>
42240afd8cSMark Johnston #include <string.h>
43240afd8cSMark Johnston #include <unistd.h>
44240afd8cSMark Johnston 
45240afd8cSMark Johnston #include <util.h>
46240afd8cSMark Johnston 
47240afd8cSMark Johnston #include "makefs.h"
48240afd8cSMark Johnston #include "zfs.h"
49240afd8cSMark Johnston 
50240afd8cSMark Johnston #define	VDEV_LABEL_SPACE	\
51240afd8cSMark Johnston 	((off_t)(VDEV_LABEL_START_SIZE + VDEV_LABEL_END_SIZE))
52240afd8cSMark Johnston _Static_assert(VDEV_LABEL_SPACE <= MINDEVSIZE, "");
53240afd8cSMark Johnston 
54240afd8cSMark Johnston #define	MINMSSIZE		((off_t)1 << 24) /* 16MB */
55240afd8cSMark Johnston #define	DFLTMSSIZE		((off_t)1 << 29) /* 512MB */
56240afd8cSMark Johnston #define	MAXMSSIZE		((off_t)1 << 34) /* 16GB */
57240afd8cSMark Johnston 
58240afd8cSMark Johnston #define	INDIR_LEVELS		6
59240afd8cSMark Johnston /* Indirect blocks are always 128KB. */
60240afd8cSMark Johnston #define	BLKPTR_PER_INDIR	(MAXBLOCKSIZE / sizeof(blkptr_t))
61240afd8cSMark Johnston 
62240afd8cSMark Johnston struct dnode_cursor {
63240afd8cSMark Johnston 	char		inddir[INDIR_LEVELS][MAXBLOCKSIZE];
64240afd8cSMark Johnston 	off_t		indloc;
65240afd8cSMark Johnston 	off_t		indspace;
66240afd8cSMark Johnston 	dnode_phys_t	*dnode;
67240afd8cSMark Johnston 	off_t		dataoff;
68240afd8cSMark Johnston 	off_t		datablksz;
69240afd8cSMark Johnston };
70240afd8cSMark Johnston 
71240afd8cSMark Johnston void
zfs_prep_opts(fsinfo_t * fsopts)72240afd8cSMark Johnston zfs_prep_opts(fsinfo_t *fsopts)
73240afd8cSMark Johnston {
74c4d26f02SMark Johnston 	zfs_opt_t *zfs;
75187084ddSMark Johnston 	size_t align;
76187084ddSMark Johnston 
77187084ddSMark Johnston 	align = alignof(uint64_t);
78c4d26f02SMark Johnston 	zfs = aligned_alloc(align, roundup2(sizeof(*zfs), align));
79187084ddSMark Johnston 	if (zfs == NULL)
80187084ddSMark Johnston 		err(1, "aligned_alloc");
81187084ddSMark Johnston 	memset(zfs, 0, sizeof(*zfs));
82240afd8cSMark Johnston 
83240afd8cSMark Johnston 	const option_t zfs_options[] = {
84240afd8cSMark Johnston 		{ '\0', "bootfs", &zfs->bootfs, OPT_STRPTR,
85240afd8cSMark Johnston 		  0, 0, "Bootable dataset" },
86240afd8cSMark Johnston 		{ '\0', "mssize", &zfs->mssize, OPT_INT64,
87240afd8cSMark Johnston 		  MINMSSIZE, MAXMSSIZE, "Metaslab size" },
88240afd8cSMark Johnston 		{ '\0', "poolname", &zfs->poolname, OPT_STRPTR,
89240afd8cSMark Johnston 		  0, 0, "ZFS pool name" },
90240afd8cSMark Johnston 		{ '\0', "rootpath", &zfs->rootpath, OPT_STRPTR,
91240afd8cSMark Johnston 		  0, 0, "Prefix for all dataset mount points" },
92240afd8cSMark Johnston 		{ '\0', "ashift", &zfs->ashift, OPT_INT32,
93240afd8cSMark Johnston 		  MINBLOCKSHIFT, MAXBLOCKSHIFT, "ZFS pool ashift" },
94240afd8cSMark Johnston 		{ '\0', "nowarn", &zfs->nowarn, OPT_BOOL,
95240afd8cSMark Johnston 		  0, 0, "Suppress warning about experimental ZFS support" },
96240afd8cSMark Johnston 		{ .name = NULL }
97240afd8cSMark Johnston 	};
98240afd8cSMark Johnston 
99240afd8cSMark Johnston 	STAILQ_INIT(&zfs->datasetdescs);
100240afd8cSMark Johnston 
101240afd8cSMark Johnston 	fsopts->fs_specific = zfs;
102240afd8cSMark Johnston 	fsopts->fs_options = copy_opts(zfs_options);
103240afd8cSMark Johnston }
104240afd8cSMark Johnston 
105240afd8cSMark Johnston int
zfs_parse_opts(const char * option,fsinfo_t * fsopts)106240afd8cSMark Johnston zfs_parse_opts(const char *option, fsinfo_t *fsopts)
107240afd8cSMark Johnston {
108240afd8cSMark Johnston 	zfs_opt_t *zfs;
109240afd8cSMark Johnston 	struct dataset_desc *dsdesc;
110240afd8cSMark Johnston 	char buf[BUFSIZ], *opt, *val;
111240afd8cSMark Johnston 	int rv;
112240afd8cSMark Johnston 
113240afd8cSMark Johnston 	zfs = fsopts->fs_specific;
114240afd8cSMark Johnston 
115240afd8cSMark Johnston 	opt = val = estrdup(option);
116240afd8cSMark Johnston 	opt = strsep(&val, "=");
117240afd8cSMark Johnston 	if (strcmp(opt, "fs") == 0) {
118240afd8cSMark Johnston 		if (val == NULL)
119240afd8cSMark Johnston 			errx(1, "invalid filesystem parameters `%s'", option);
120240afd8cSMark Johnston 
121240afd8cSMark Johnston 		/*
122240afd8cSMark Johnston 		 * Dataset descriptions will be parsed later, in dsl_init().
123240afd8cSMark Johnston 		 * Just stash them away for now.
124240afd8cSMark Johnston 		 */
125240afd8cSMark Johnston 		dsdesc = ecalloc(1, sizeof(*dsdesc));
126240afd8cSMark Johnston 		dsdesc->params = estrdup(val);
127240afd8cSMark Johnston 		free(opt);
128240afd8cSMark Johnston 		STAILQ_INSERT_TAIL(&zfs->datasetdescs, dsdesc, next);
129240afd8cSMark Johnston 		return (1);
130240afd8cSMark Johnston 	}
131240afd8cSMark Johnston 	free(opt);
132240afd8cSMark Johnston 
133240afd8cSMark Johnston 	rv = set_option(fsopts->fs_options, option, buf, sizeof(buf));
134240afd8cSMark Johnston 	return (rv == -1 ? 0 : 1);
135240afd8cSMark Johnston }
136240afd8cSMark Johnston 
137240afd8cSMark Johnston static void
zfs_size_vdev(fsinfo_t * fsopts)138240afd8cSMark Johnston zfs_size_vdev(fsinfo_t *fsopts)
139240afd8cSMark Johnston {
140240afd8cSMark Johnston 	zfs_opt_t *zfs;
141240afd8cSMark Johnston 	off_t asize, mssize, vdevsize, vdevsize1;
142240afd8cSMark Johnston 
143240afd8cSMark Johnston 	zfs = fsopts->fs_specific;
144240afd8cSMark Johnston 
145240afd8cSMark Johnston 	assert(fsopts->maxsize != 0);
146240afd8cSMark Johnston 	assert(zfs->ashift != 0);
147240afd8cSMark Johnston 
148240afd8cSMark Johnston 	/*
149240afd8cSMark Johnston 	 * Figure out how big the vdev should be.
150240afd8cSMark Johnston 	 */
151240afd8cSMark Johnston 	vdevsize = rounddown2(fsopts->maxsize, 1 << zfs->ashift);
152240afd8cSMark Johnston 	if (vdevsize < MINDEVSIZE)
153240afd8cSMark Johnston 		errx(1, "maximum image size is too small");
154240afd8cSMark Johnston 	if (vdevsize < fsopts->minsize || vdevsize > fsopts->maxsize) {
155240afd8cSMark Johnston 		errx(1, "image size bounds must be multiples of %d",
156240afd8cSMark Johnston 		    1 << zfs->ashift);
157240afd8cSMark Johnston 	}
158240afd8cSMark Johnston 	asize = vdevsize - VDEV_LABEL_SPACE;
159240afd8cSMark Johnston 
160240afd8cSMark Johnston 	/*
161240afd8cSMark Johnston 	 * Size metaslabs according to the following heuristic:
162240afd8cSMark Johnston 	 * - provide at least 8 metaslabs,
163240afd8cSMark Johnston 	 * - without using a metaslab size larger than 512MB.
164240afd8cSMark Johnston 	 * This approximates what OpenZFS does without being complicated.  In
165240afd8cSMark Johnston 	 * practice we expect pools to be expanded upon first use, and OpenZFS
166240afd8cSMark Johnston 	 * does not resize metaslabs in that case, so there is no right answer
167240afd8cSMark Johnston 	 * here.  In general we want to provide large metaslabs even if the
168240afd8cSMark Johnston 	 * image size is small, and 512MB is a reasonable size for pools up to
169240afd8cSMark Johnston 	 * several hundred gigabytes.
170240afd8cSMark Johnston 	 *
171240afd8cSMark Johnston 	 * The user may override this heuristic using the "-o mssize" option.
172240afd8cSMark Johnston 	 */
173240afd8cSMark Johnston 	mssize = zfs->mssize;
174240afd8cSMark Johnston 	if (mssize == 0) {
175240afd8cSMark Johnston 		mssize = MAX(MIN(asize / 8, DFLTMSSIZE), MINMSSIZE);
176240afd8cSMark Johnston 		if (!powerof2(mssize))
177240afd8cSMark Johnston 			mssize = 1l << (flsll(mssize) - 1);
178240afd8cSMark Johnston 	}
179240afd8cSMark Johnston 	if (!powerof2(mssize))
180240afd8cSMark Johnston 		errx(1, "metaslab size must be a power of 2");
181240afd8cSMark Johnston 
182240afd8cSMark Johnston 	/*
183240afd8cSMark Johnston 	 * If we have some slop left over, try to cover it by resizing the vdev,
184240afd8cSMark Johnston 	 * subject to the maxsize and minsize parameters.
185240afd8cSMark Johnston 	 */
186240afd8cSMark Johnston 	if (asize % mssize != 0) {
187240afd8cSMark Johnston 		vdevsize1 = rounddown2(asize, mssize) + VDEV_LABEL_SPACE;
188240afd8cSMark Johnston 		if (vdevsize1 < fsopts->minsize)
189240afd8cSMark Johnston 			vdevsize1 = roundup2(asize, mssize) + VDEV_LABEL_SPACE;
190240afd8cSMark Johnston 		if (vdevsize1 <= fsopts->maxsize)
191240afd8cSMark Johnston 			vdevsize = vdevsize1;
192240afd8cSMark Johnston 	}
193240afd8cSMark Johnston 	asize = vdevsize - VDEV_LABEL_SPACE;
194240afd8cSMark Johnston 
195240afd8cSMark Johnston 	zfs->asize = asize;
196240afd8cSMark Johnston 	zfs->vdevsize = vdevsize;
197240afd8cSMark Johnston 	zfs->mssize = mssize;
198240afd8cSMark Johnston 	zfs->msshift = flsll(mssize) - 1;
199240afd8cSMark Johnston 	zfs->mscount = asize / mssize;
200240afd8cSMark Johnston }
201240afd8cSMark Johnston 
202240afd8cSMark Johnston /*
203240afd8cSMark Johnston  * Validate options and set some default values.
204240afd8cSMark Johnston  */
205240afd8cSMark Johnston static void
zfs_check_opts(fsinfo_t * fsopts)206240afd8cSMark Johnston zfs_check_opts(fsinfo_t *fsopts)
207240afd8cSMark Johnston {
208240afd8cSMark Johnston 	zfs_opt_t *zfs;
209240afd8cSMark Johnston 
210240afd8cSMark Johnston 	zfs = fsopts->fs_specific;
211240afd8cSMark Johnston 
212240afd8cSMark Johnston 	if (fsopts->offset != 0)
213240afd8cSMark Johnston 		errx(1, "unhandled offset option");
214240afd8cSMark Johnston 	if (fsopts->maxsize == 0)
215240afd8cSMark Johnston 		errx(1, "an image size must be specified");
216240afd8cSMark Johnston 
217240afd8cSMark Johnston 	if (zfs->poolname == NULL)
218240afd8cSMark Johnston 		errx(1, "a pool name must be specified");
219a9e7a44cSMark Johnston 	if (!isalpha(zfs->poolname[0]))
220a9e7a44cSMark Johnston 		errx(1, "the pool name must begin with a letter");
221a9e7a44cSMark Johnston 	for (size_t i = 0, len = strlen(zfs->poolname); i < len; i++) {
222a9e7a44cSMark Johnston 		if (!isalnum(zfs->poolname[i]) && zfs->poolname[i] != '_')
223a9e7a44cSMark Johnston 			errx(1, "invalid character '%c' in pool name",
224a9e7a44cSMark Johnston 			    zfs->poolname[i]);
225a9e7a44cSMark Johnston 	}
226a9e7a44cSMark Johnston 	if (strcmp(zfs->poolname, "mirror") == 0 ||
227a9e7a44cSMark Johnston 	    strcmp(zfs->poolname, "raidz") == 0 ||
228a9e7a44cSMark Johnston 	    strcmp(zfs->poolname, "draid") == 0) {
229a9e7a44cSMark Johnston 		errx(1, "pool name '%s' is reserved and cannot be used",
230a9e7a44cSMark Johnston 		    zfs->poolname);
231a9e7a44cSMark Johnston 	}
232240afd8cSMark Johnston 
233240afd8cSMark Johnston 	if (zfs->rootpath == NULL)
234240afd8cSMark Johnston 		easprintf(&zfs->rootpath, "/%s", zfs->poolname);
235240afd8cSMark Johnston 	if (zfs->rootpath[0] != '/')
236240afd8cSMark Johnston 		errx(1, "mountpoint `%s' must be absolute", zfs->rootpath);
237240afd8cSMark Johnston 
238240afd8cSMark Johnston 	if (zfs->ashift == 0)
239240afd8cSMark Johnston 		zfs->ashift = 12;
240240afd8cSMark Johnston 
241240afd8cSMark Johnston 	zfs_size_vdev(fsopts);
242240afd8cSMark Johnston }
243240afd8cSMark Johnston 
244240afd8cSMark Johnston void
zfs_cleanup_opts(fsinfo_t * fsopts)245240afd8cSMark Johnston zfs_cleanup_opts(fsinfo_t *fsopts)
246240afd8cSMark Johnston {
247240afd8cSMark Johnston 	struct dataset_desc *d, *tmp;
248240afd8cSMark Johnston 	zfs_opt_t *zfs;
249240afd8cSMark Johnston 
250240afd8cSMark Johnston 	zfs = fsopts->fs_specific;
251240afd8cSMark Johnston 	free(zfs->rootpath);
252240afd8cSMark Johnston 	free(zfs->bootfs);
253240afd8cSMark Johnston 	free(__DECONST(void *, zfs->poolname));
254240afd8cSMark Johnston 	STAILQ_FOREACH_SAFE(d, &zfs->datasetdescs, next, tmp) {
255240afd8cSMark Johnston 		free(d->params);
256240afd8cSMark Johnston 		free(d);
257240afd8cSMark Johnston 	}
258240afd8cSMark Johnston 	free(zfs);
259240afd8cSMark Johnston 	free(fsopts->fs_options);
260240afd8cSMark Johnston }
261240afd8cSMark Johnston 
262240afd8cSMark Johnston static size_t
nvlist_size(const nvlist_t * nvl)263240afd8cSMark Johnston nvlist_size(const nvlist_t *nvl)
264240afd8cSMark Johnston {
265240afd8cSMark Johnston 	return (sizeof(nvl->nv_header) + nvl->nv_size);
266240afd8cSMark Johnston }
267240afd8cSMark Johnston 
268240afd8cSMark Johnston static void
nvlist_copy(const nvlist_t * nvl,char * buf,size_t sz)269240afd8cSMark Johnston nvlist_copy(const nvlist_t *nvl, char *buf, size_t sz)
270240afd8cSMark Johnston {
271240afd8cSMark Johnston 	assert(sz >= nvlist_size(nvl));
272240afd8cSMark Johnston 
273240afd8cSMark Johnston 	memcpy(buf, &nvl->nv_header, sizeof(nvl->nv_header));
274240afd8cSMark Johnston 	memcpy(buf + sizeof(nvl->nv_header), nvl->nv_data, nvl->nv_size);
275240afd8cSMark Johnston }
276240afd8cSMark Johnston 
27714c5cf3aSMark Johnston /*
27814c5cf3aSMark Johnston  * Avoid returning a GUID of 0, just to avoid the possibility that something
27914c5cf3aSMark Johnston  * will interpret that as meaning that the GUID is uninitialized.
28014c5cf3aSMark Johnston  */
28114c5cf3aSMark Johnston uint64_t
randomguid(void)28214c5cf3aSMark Johnston randomguid(void)
28314c5cf3aSMark Johnston {
28414c5cf3aSMark Johnston 	uint64_t ret;
28514c5cf3aSMark Johnston 
28614c5cf3aSMark Johnston 	do {
28714c5cf3aSMark Johnston 		ret = ((uint64_t)random() << 32) | random();
28814c5cf3aSMark Johnston 	} while (ret == 0);
28914c5cf3aSMark Johnston 
29014c5cf3aSMark Johnston 	return (ret);
29114c5cf3aSMark Johnston }
29214c5cf3aSMark Johnston 
293240afd8cSMark Johnston static nvlist_t *
pool_config_nvcreate(zfs_opt_t * zfs)294240afd8cSMark Johnston pool_config_nvcreate(zfs_opt_t *zfs)
295240afd8cSMark Johnston {
296240afd8cSMark Johnston 	nvlist_t *featuresnv, *poolnv;
297240afd8cSMark Johnston 
298240afd8cSMark Johnston 	poolnv = nvlist_create(NV_UNIQUE_NAME);
299240afd8cSMark Johnston 	nvlist_add_uint64(poolnv, ZPOOL_CONFIG_POOL_TXG, TXG);
300240afd8cSMark Johnston 	nvlist_add_uint64(poolnv, ZPOOL_CONFIG_VERSION, SPA_VERSION);
301240afd8cSMark Johnston 	nvlist_add_uint64(poolnv, ZPOOL_CONFIG_POOL_STATE, POOL_STATE_EXPORTED);
302240afd8cSMark Johnston 	nvlist_add_string(poolnv, ZPOOL_CONFIG_POOL_NAME, zfs->poolname);
303240afd8cSMark Johnston 	nvlist_add_uint64(poolnv, ZPOOL_CONFIG_POOL_GUID, zfs->poolguid);
304240afd8cSMark Johnston 	nvlist_add_uint64(poolnv, ZPOOL_CONFIG_TOP_GUID, zfs->vdevguid);
305240afd8cSMark Johnston 	nvlist_add_uint64(poolnv, ZPOOL_CONFIG_GUID, zfs->vdevguid);
306240afd8cSMark Johnston 	nvlist_add_uint64(poolnv, ZPOOL_CONFIG_VDEV_CHILDREN, 1);
307240afd8cSMark Johnston 
308240afd8cSMark Johnston 	featuresnv = nvlist_create(NV_UNIQUE_NAME);
309240afd8cSMark Johnston 	nvlist_add_nvlist(poolnv, ZPOOL_CONFIG_FEATURES_FOR_READ, featuresnv);
310240afd8cSMark Johnston 	nvlist_destroy(featuresnv);
311240afd8cSMark Johnston 
312240afd8cSMark Johnston 	return (poolnv);
313240afd8cSMark Johnston }
314240afd8cSMark Johnston 
315240afd8cSMark Johnston static nvlist_t *
pool_disk_vdev_config_nvcreate(zfs_opt_t * zfs)316240afd8cSMark Johnston pool_disk_vdev_config_nvcreate(zfs_opt_t *zfs)
317240afd8cSMark Johnston {
318240afd8cSMark Johnston 	nvlist_t *diskvdevnv;
319240afd8cSMark Johnston 
320240afd8cSMark Johnston 	assert(zfs->objarrid != 0);
321240afd8cSMark Johnston 
322240afd8cSMark Johnston 	diskvdevnv = nvlist_create(NV_UNIQUE_NAME);
323240afd8cSMark Johnston 	nvlist_add_string(diskvdevnv, ZPOOL_CONFIG_TYPE, VDEV_TYPE_DISK);
324240afd8cSMark Johnston 	nvlist_add_uint64(diskvdevnv, ZPOOL_CONFIG_ASHIFT, zfs->ashift);
325240afd8cSMark Johnston 	nvlist_add_uint64(diskvdevnv, ZPOOL_CONFIG_ASIZE, zfs->asize);
326240afd8cSMark Johnston 	nvlist_add_uint64(diskvdevnv, ZPOOL_CONFIG_GUID, zfs->vdevguid);
327240afd8cSMark Johnston 	nvlist_add_uint64(diskvdevnv, ZPOOL_CONFIG_ID, 0);
328240afd8cSMark Johnston 	nvlist_add_string(diskvdevnv, ZPOOL_CONFIG_PATH, "/dev/null");
329240afd8cSMark Johnston 	nvlist_add_uint64(diskvdevnv, ZPOOL_CONFIG_WHOLE_DISK, 1);
330240afd8cSMark Johnston 	nvlist_add_uint64(diskvdevnv, ZPOOL_CONFIG_CREATE_TXG, TXG);
331240afd8cSMark Johnston 	nvlist_add_uint64(diskvdevnv, ZPOOL_CONFIG_METASLAB_ARRAY,
332240afd8cSMark Johnston 	    zfs->objarrid);
333240afd8cSMark Johnston 	nvlist_add_uint64(diskvdevnv, ZPOOL_CONFIG_METASLAB_SHIFT,
334240afd8cSMark Johnston 	    zfs->msshift);
335240afd8cSMark Johnston 
336240afd8cSMark Johnston 	return (diskvdevnv);
337240afd8cSMark Johnston }
338240afd8cSMark Johnston 
339240afd8cSMark Johnston static nvlist_t *
pool_root_vdev_config_nvcreate(zfs_opt_t * zfs)340240afd8cSMark Johnston pool_root_vdev_config_nvcreate(zfs_opt_t *zfs)
341240afd8cSMark Johnston {
342240afd8cSMark Johnston 	nvlist_t *diskvdevnv, *rootvdevnv;
343240afd8cSMark Johnston 
344240afd8cSMark Johnston 	diskvdevnv = pool_disk_vdev_config_nvcreate(zfs);
345240afd8cSMark Johnston 	rootvdevnv = nvlist_create(NV_UNIQUE_NAME);
346240afd8cSMark Johnston 
347240afd8cSMark Johnston 	nvlist_add_uint64(rootvdevnv, ZPOOL_CONFIG_ID, 0);
348240afd8cSMark Johnston 	nvlist_add_uint64(rootvdevnv, ZPOOL_CONFIG_GUID, zfs->poolguid);
349240afd8cSMark Johnston 	nvlist_add_string(rootvdevnv, ZPOOL_CONFIG_TYPE, VDEV_TYPE_ROOT);
350240afd8cSMark Johnston 	nvlist_add_uint64(rootvdevnv, ZPOOL_CONFIG_CREATE_TXG, TXG);
351240afd8cSMark Johnston 	nvlist_add_nvlist_array(rootvdevnv, ZPOOL_CONFIG_CHILDREN, &diskvdevnv,
352240afd8cSMark Johnston 	    1);
353240afd8cSMark Johnston 	nvlist_destroy(diskvdevnv);
354240afd8cSMark Johnston 
355240afd8cSMark Johnston 	return (rootvdevnv);
356240afd8cSMark Johnston }
357240afd8cSMark Johnston 
358240afd8cSMark Johnston /*
359240afd8cSMark Johnston  * Create the pool's "config" object, which contains an nvlist describing pool
360240afd8cSMark Johnston  * parameters and the vdev topology.  It is similar but not identical to the
361240afd8cSMark Johnston  * nvlist stored in vdev labels.  The main difference is that vdev labels do not
362240afd8cSMark Johnston  * describe the full vdev tree and in particular do not contain the "root"
363240afd8cSMark Johnston  * meta-vdev.
364240afd8cSMark Johnston  */
365240afd8cSMark Johnston static void
pool_init_objdir_config(zfs_opt_t * zfs,zfs_zap_t * objdir)366240afd8cSMark Johnston pool_init_objdir_config(zfs_opt_t *zfs, zfs_zap_t *objdir)
367240afd8cSMark Johnston {
368240afd8cSMark Johnston 	dnode_phys_t *dnode;
369240afd8cSMark Johnston 	nvlist_t *poolconfig, *vdevconfig;
370240afd8cSMark Johnston 	void *configbuf;
371240afd8cSMark Johnston 	uint64_t dnid;
372240afd8cSMark Johnston 	off_t configloc, configblksz;
373240afd8cSMark Johnston 	int error;
374240afd8cSMark Johnston 
375240afd8cSMark Johnston 	dnode = objset_dnode_bonus_alloc(zfs->mos, DMU_OT_PACKED_NVLIST,
376240afd8cSMark Johnston 	    DMU_OT_PACKED_NVLIST_SIZE, sizeof(uint64_t), &dnid);
377240afd8cSMark Johnston 
378240afd8cSMark Johnston 	poolconfig = pool_config_nvcreate(zfs);
379240afd8cSMark Johnston 
380240afd8cSMark Johnston 	vdevconfig = pool_root_vdev_config_nvcreate(zfs);
381240afd8cSMark Johnston 	nvlist_add_nvlist(poolconfig, ZPOOL_CONFIG_VDEV_TREE, vdevconfig);
382240afd8cSMark Johnston 	nvlist_destroy(vdevconfig);
383240afd8cSMark Johnston 
384240afd8cSMark Johnston 	error = nvlist_export(poolconfig);
385240afd8cSMark Johnston 	if (error != 0)
386240afd8cSMark Johnston 		errc(1, error, "nvlist_export");
387240afd8cSMark Johnston 
388240afd8cSMark Johnston 	configblksz = nvlist_size(poolconfig);
389240afd8cSMark Johnston 	configloc = objset_space_alloc(zfs, zfs->mos, &configblksz);
390240afd8cSMark Johnston 	configbuf = ecalloc(1, configblksz);
391240afd8cSMark Johnston 	nvlist_copy(poolconfig, configbuf, configblksz);
392240afd8cSMark Johnston 
393240afd8cSMark Johnston 	vdev_pwrite_dnode_data(zfs, dnode, configbuf, configblksz, configloc);
394240afd8cSMark Johnston 
395240afd8cSMark Johnston 	dnode->dn_datablkszsec = configblksz >> MINBLOCKSHIFT;
396240afd8cSMark Johnston 	dnode->dn_flags = DNODE_FLAG_USED_BYTES;
397240afd8cSMark Johnston 	*(uint64_t *)DN_BONUS(dnode) = nvlist_size(poolconfig);
398240afd8cSMark Johnston 
399240afd8cSMark Johnston 	zap_add_uint64(objdir, DMU_POOL_CONFIG, dnid);
400240afd8cSMark Johnston 
401240afd8cSMark Johnston 	nvlist_destroy(poolconfig);
402240afd8cSMark Johnston 	free(configbuf);
403240afd8cSMark Johnston }
404240afd8cSMark Johnston 
405240afd8cSMark Johnston /*
406240afd8cSMark Johnston  * Add objects block pointer list objects, used for deferred frees.  We don't do
407240afd8cSMark Johnston  * anything with them, but they need to be present or OpenZFS will refuse to
408240afd8cSMark Johnston  * import the pool.
409240afd8cSMark Johnston  */
410240afd8cSMark Johnston static void
pool_init_objdir_bplists(zfs_opt_t * zfs __unused,zfs_zap_t * objdir)411240afd8cSMark Johnston pool_init_objdir_bplists(zfs_opt_t *zfs __unused, zfs_zap_t *objdir)
412240afd8cSMark Johnston {
413240afd8cSMark Johnston 	uint64_t dnid;
414240afd8cSMark Johnston 
415240afd8cSMark Johnston 	(void)objset_dnode_bonus_alloc(zfs->mos, DMU_OT_BPOBJ, DMU_OT_BPOBJ_HDR,
416240afd8cSMark Johnston 	    BPOBJ_SIZE_V2, &dnid);
417240afd8cSMark Johnston 	zap_add_uint64(objdir, DMU_POOL_FREE_BPOBJ, dnid);
418240afd8cSMark Johnston 
419240afd8cSMark Johnston 	(void)objset_dnode_bonus_alloc(zfs->mos, DMU_OT_BPOBJ, DMU_OT_BPOBJ_HDR,
420240afd8cSMark Johnston 	    BPOBJ_SIZE_V2, &dnid);
421240afd8cSMark Johnston 	zap_add_uint64(objdir, DMU_POOL_SYNC_BPLIST, dnid);
422240afd8cSMark Johnston }
423240afd8cSMark Johnston 
424240afd8cSMark Johnston /*
425240afd8cSMark Johnston  * Add required feature metadata objects.  We don't know anything about ZFS
426240afd8cSMark Johnston  * features, so the objects are just empty ZAPs.
427240afd8cSMark Johnston  */
428240afd8cSMark Johnston static void
pool_init_objdir_feature_maps(zfs_opt_t * zfs,zfs_zap_t * objdir)429240afd8cSMark Johnston pool_init_objdir_feature_maps(zfs_opt_t *zfs, zfs_zap_t *objdir)
430240afd8cSMark Johnston {
431240afd8cSMark Johnston 	dnode_phys_t *dnode;
432240afd8cSMark Johnston 	uint64_t dnid;
433240afd8cSMark Johnston 
434240afd8cSMark Johnston 	dnode = objset_dnode_alloc(zfs->mos, DMU_OTN_ZAP_METADATA, &dnid);
435240afd8cSMark Johnston 	zap_add_uint64(objdir, DMU_POOL_FEATURES_FOR_READ, dnid);
436240afd8cSMark Johnston 	zap_write(zfs, zap_alloc(zfs->mos, dnode));
437240afd8cSMark Johnston 
438240afd8cSMark Johnston 	dnode = objset_dnode_alloc(zfs->mos, DMU_OTN_ZAP_METADATA, &dnid);
439240afd8cSMark Johnston 	zap_add_uint64(objdir, DMU_POOL_FEATURES_FOR_WRITE, dnid);
440240afd8cSMark Johnston 	zap_write(zfs, zap_alloc(zfs->mos, dnode));
441240afd8cSMark Johnston 
442240afd8cSMark Johnston 	dnode = objset_dnode_alloc(zfs->mos, DMU_OTN_ZAP_METADATA, &dnid);
443240afd8cSMark Johnston 	zap_add_uint64(objdir, DMU_POOL_FEATURE_DESCRIPTIONS, dnid);
444240afd8cSMark Johnston 	zap_write(zfs, zap_alloc(zfs->mos, dnode));
445240afd8cSMark Johnston }
446240afd8cSMark Johnston 
447240afd8cSMark Johnston static void
pool_init_objdir_dsl(zfs_opt_t * zfs,zfs_zap_t * objdir)448240afd8cSMark Johnston pool_init_objdir_dsl(zfs_opt_t *zfs, zfs_zap_t *objdir)
449240afd8cSMark Johnston {
450240afd8cSMark Johnston 	zap_add_uint64(objdir, DMU_POOL_ROOT_DATASET,
451240afd8cSMark Johnston 	    dsl_dir_id(zfs->rootdsldir));
452240afd8cSMark Johnston }
453240afd8cSMark Johnston 
454240afd8cSMark Johnston static void
pool_init_objdir_poolprops(zfs_opt_t * zfs,zfs_zap_t * objdir)455240afd8cSMark Johnston pool_init_objdir_poolprops(zfs_opt_t *zfs, zfs_zap_t *objdir)
456240afd8cSMark Johnston {
457240afd8cSMark Johnston 	dnode_phys_t *dnode;
458240afd8cSMark Johnston 	uint64_t id;
459240afd8cSMark Johnston 
460240afd8cSMark Johnston 	dnode = objset_dnode_alloc(zfs->mos, DMU_OT_POOL_PROPS, &id);
461240afd8cSMark Johnston 	zap_add_uint64(objdir, DMU_POOL_PROPS, id);
462240afd8cSMark Johnston 
463240afd8cSMark Johnston 	zfs->poolprops = zap_alloc(zfs->mos, dnode);
464240afd8cSMark Johnston }
465240afd8cSMark Johnston 
466240afd8cSMark Johnston /*
467240afd8cSMark Johnston  * Initialize the MOS object directory, the root of virtually all of the pool's
468240afd8cSMark Johnston  * data and metadata.
469240afd8cSMark Johnston  */
470240afd8cSMark Johnston static void
pool_init_objdir(zfs_opt_t * zfs)471240afd8cSMark Johnston pool_init_objdir(zfs_opt_t *zfs)
472240afd8cSMark Johnston {
473240afd8cSMark Johnston 	zfs_zap_t *zap;
474240afd8cSMark Johnston 	dnode_phys_t *objdir;
475240afd8cSMark Johnston 
476240afd8cSMark Johnston 	objdir = objset_dnode_lookup(zfs->mos, DMU_POOL_DIRECTORY_OBJECT);
477240afd8cSMark Johnston 
478240afd8cSMark Johnston 	zap = zap_alloc(zfs->mos, objdir);
479240afd8cSMark Johnston 	pool_init_objdir_config(zfs, zap);
480240afd8cSMark Johnston 	pool_init_objdir_bplists(zfs, zap);
481240afd8cSMark Johnston 	pool_init_objdir_feature_maps(zfs, zap);
482240afd8cSMark Johnston 	pool_init_objdir_dsl(zfs, zap);
483240afd8cSMark Johnston 	pool_init_objdir_poolprops(zfs, zap);
484240afd8cSMark Johnston 	zap_write(zfs, zap);
485240afd8cSMark Johnston }
486240afd8cSMark Johnston 
487240afd8cSMark Johnston /*
488240afd8cSMark Johnston  * Initialize the meta-object set (MOS) and immediately write out several
489240afd8cSMark Johnston  * special objects whose contents are already finalized, including the object
490240afd8cSMark Johnston  * directory.
491240afd8cSMark Johnston  *
492240afd8cSMark Johnston  * Once the MOS is finalized, it'll look roughly like this:
493240afd8cSMark Johnston  *
494240afd8cSMark Johnston  *	object directory (ZAP)
495240afd8cSMark Johnston  *	|-> vdev config object (nvlist)
496240afd8cSMark Johnston  *	|-> features for read
497240afd8cSMark Johnston  *	|-> features for write
498240afd8cSMark Johnston  *	|-> feature descriptions
499240afd8cSMark Johnston  *	|-> sync bplist
500240afd8cSMark Johnston  *	|-> free bplist
501240afd8cSMark Johnston  *	|-> pool properties
502240afd8cSMark Johnston  *	L-> root DSL directory
503240afd8cSMark Johnston  *	    |-> DSL child directory (ZAP)
504240afd8cSMark Johnston  *	    |   |-> $MOS (DSL dir)
505240afd8cSMark Johnston  *	    |   |   |-> child map
506240afd8cSMark Johnston  *	    |   |   L-> props (ZAP)
507240afd8cSMark Johnston  *	    |   |-> $FREE (DSL dir)
508240afd8cSMark Johnston  *	    |   |   |-> child map
509240afd8cSMark Johnston  *	    |   |   L-> props (ZAP)
510240afd8cSMark Johnston  *	    |   |-> $ORIGIN (DSL dir)
511240afd8cSMark Johnston  *	    |   |   |-> child map
512240afd8cSMark Johnston  *	    |   |   |-> dataset
513240afd8cSMark Johnston  *	    |   |   |   L-> deadlist
514240afd8cSMark Johnston  *	    |   |   |-> snapshot
515240afd8cSMark Johnston  *	    |   |   |   |-> deadlist
516240afd8cSMark Johnston  *	    |   |   |   L-> snapshot names
517240afd8cSMark Johnston  *	    |   |   |-> props (ZAP)
518240afd8cSMark Johnston  *	    |   |   L-> clones (ZAP)
519240afd8cSMark Johnston  *	    |   |-> dataset 1 (DSL dir)
520240afd8cSMark Johnston  *	    |   |   |-> DSL dataset
521240afd8cSMark Johnston  *	    |   |   |   |-> snapshot names
522240afd8cSMark Johnston  *	    |   |   |   L-> deadlist
523240afd8cSMark Johnston  *	    |   |   |-> child map
524240afd8cSMark Johnston  *	    |   |   |   L-> ...
525240afd8cSMark Johnston  *	    |   |   L-> props
526240afd8cSMark Johnston  *	    |   |-> dataset 2
527240afd8cSMark Johnston  *	    |   |   L-> ...
528240afd8cSMark Johnston  *	    |   |-> ...
529240afd8cSMark Johnston  *	    |   L-> dataset n
530240afd8cSMark Johnston  *	    |-> DSL root dataset
531240afd8cSMark Johnston  *	    |   |-> snapshot names
532240afd8cSMark Johnston  *	    |   L-> deadlist
533240afd8cSMark Johnston  *	    L-> props (ZAP)
534240afd8cSMark Johnston  *	space map object array
535240afd8cSMark Johnston  *	|-> space map 1
536240afd8cSMark Johnston  *	|-> space map 2
537240afd8cSMark Johnston  *	|-> ...
538240afd8cSMark Johnston  *	L-> space map n (zfs->mscount)
539240afd8cSMark Johnston  *
540240afd8cSMark Johnston  * The space map object array is pointed to by the "msarray" property in the
541240afd8cSMark Johnston  * pool configuration.
542240afd8cSMark Johnston  */
543240afd8cSMark Johnston static void
pool_init(zfs_opt_t * zfs)544240afd8cSMark Johnston pool_init(zfs_opt_t *zfs)
545240afd8cSMark Johnston {
546240afd8cSMark Johnston 	uint64_t dnid;
547240afd8cSMark Johnston 
54814c5cf3aSMark Johnston 	zfs->poolguid = randomguid();
54914c5cf3aSMark Johnston 	zfs->vdevguid = randomguid();
550240afd8cSMark Johnston 
551240afd8cSMark Johnston 	zfs->mos = objset_alloc(zfs, DMU_OST_META);
552240afd8cSMark Johnston 
553240afd8cSMark Johnston 	(void)objset_dnode_alloc(zfs->mos, DMU_OT_OBJECT_DIRECTORY, &dnid);
554240afd8cSMark Johnston 	assert(dnid == DMU_POOL_DIRECTORY_OBJECT);
555240afd8cSMark Johnston 
556240afd8cSMark Johnston 	(void)objset_dnode_alloc(zfs->mos, DMU_OT_OBJECT_ARRAY, &zfs->objarrid);
557240afd8cSMark Johnston 
558240afd8cSMark Johnston 	dsl_init(zfs);
559240afd8cSMark Johnston 
560240afd8cSMark Johnston 	pool_init_objdir(zfs);
561240afd8cSMark Johnston }
562240afd8cSMark Johnston 
563240afd8cSMark Johnston static void
pool_labels_write(zfs_opt_t * zfs)564240afd8cSMark Johnston pool_labels_write(zfs_opt_t *zfs)
565240afd8cSMark Johnston {
566240afd8cSMark Johnston 	uberblock_t *ub;
567240afd8cSMark Johnston 	vdev_label_t *label;
568240afd8cSMark Johnston 	nvlist_t *poolconfig, *vdevconfig;
569240afd8cSMark Johnston 	int error;
570240afd8cSMark Johnston 
571240afd8cSMark Johnston 	label = ecalloc(1, sizeof(*label));
572240afd8cSMark Johnston 
573240afd8cSMark Johnston 	/*
574240afd8cSMark Johnston 	 * Assemble the vdev configuration and store it in the label.
575240afd8cSMark Johnston 	 */
576240afd8cSMark Johnston 	poolconfig = pool_config_nvcreate(zfs);
577240afd8cSMark Johnston 	vdevconfig = pool_disk_vdev_config_nvcreate(zfs);
578240afd8cSMark Johnston 	nvlist_add_nvlist(poolconfig, ZPOOL_CONFIG_VDEV_TREE, vdevconfig);
579240afd8cSMark Johnston 	nvlist_destroy(vdevconfig);
580240afd8cSMark Johnston 
581240afd8cSMark Johnston 	error = nvlist_export(poolconfig);
582240afd8cSMark Johnston 	if (error != 0)
583240afd8cSMark Johnston 		errc(1, error, "nvlist_export");
584240afd8cSMark Johnston 	nvlist_copy(poolconfig, label->vl_vdev_phys.vp_nvlist,
585240afd8cSMark Johnston 	    sizeof(label->vl_vdev_phys.vp_nvlist));
586240afd8cSMark Johnston 	nvlist_destroy(poolconfig);
587240afd8cSMark Johnston 
588240afd8cSMark Johnston 	/*
589240afd8cSMark Johnston 	 * Fill out the uberblock.  Just make each one the same.  The embedded
590240afd8cSMark Johnston 	 * checksum is calculated in vdev_label_write().
591240afd8cSMark Johnston 	 */
592240afd8cSMark Johnston 	for (size_t uoff = 0; uoff < sizeof(label->vl_uberblock);
593240afd8cSMark Johnston 	    uoff += (1 << zfs->ashift)) {
594240afd8cSMark Johnston 		ub = (uberblock_t *)(&label->vl_uberblock[0] + uoff);
595240afd8cSMark Johnston 		ub->ub_magic = UBERBLOCK_MAGIC;
596240afd8cSMark Johnston 		ub->ub_version = SPA_VERSION;
597240afd8cSMark Johnston 		ub->ub_txg = TXG;
598240afd8cSMark Johnston 		ub->ub_guid_sum = zfs->poolguid + zfs->vdevguid;
599240afd8cSMark Johnston 		ub->ub_timestamp = 0;
600240afd8cSMark Johnston 
601240afd8cSMark Johnston 		ub->ub_software_version = SPA_VERSION;
602240afd8cSMark Johnston 		ub->ub_mmp_magic = MMP_MAGIC;
603240afd8cSMark Johnston 		ub->ub_mmp_delay = 0;
604240afd8cSMark Johnston 		ub->ub_mmp_config = 0;
605240afd8cSMark Johnston 		ub->ub_checkpoint_txg = 0;
606240afd8cSMark Johnston 		objset_root_blkptr_copy(zfs->mos, &ub->ub_rootbp);
607240afd8cSMark Johnston 	}
608240afd8cSMark Johnston 
609240afd8cSMark Johnston 	/*
610240afd8cSMark Johnston 	 * Write out four copies of the label: two at the beginning of the vdev
611240afd8cSMark Johnston 	 * and two at the end.
612240afd8cSMark Johnston 	 */
613240afd8cSMark Johnston 	for (int i = 0; i < VDEV_LABELS; i++)
614240afd8cSMark Johnston 		vdev_label_write(zfs, i, label);
615240afd8cSMark Johnston 
616240afd8cSMark Johnston 	free(label);
617240afd8cSMark Johnston }
618240afd8cSMark Johnston 
619240afd8cSMark Johnston static void
pool_fini(zfs_opt_t * zfs)620240afd8cSMark Johnston pool_fini(zfs_opt_t *zfs)
621240afd8cSMark Johnston {
622240afd8cSMark Johnston 	zap_write(zfs, zfs->poolprops);
623240afd8cSMark Johnston 	dsl_write(zfs);
624240afd8cSMark Johnston 	objset_write(zfs, zfs->mos);
625240afd8cSMark Johnston 	pool_labels_write(zfs);
626240afd8cSMark Johnston }
627240afd8cSMark Johnston 
628240afd8cSMark Johnston struct dnode_cursor *
dnode_cursor_init(zfs_opt_t * zfs,zfs_objset_t * os,dnode_phys_t * dnode,off_t size,off_t blksz)629240afd8cSMark Johnston dnode_cursor_init(zfs_opt_t *zfs, zfs_objset_t *os, dnode_phys_t *dnode,
630240afd8cSMark Johnston     off_t size, off_t blksz)
631240afd8cSMark Johnston {
632240afd8cSMark Johnston 	struct dnode_cursor *c;
633240afd8cSMark Johnston 	uint64_t nbppindir, indlevel, ndatablks, nindblks;
634240afd8cSMark Johnston 
635240afd8cSMark Johnston 	assert(dnode->dn_nblkptr == 1);
636240afd8cSMark Johnston 	assert(blksz <= MAXBLOCKSIZE);
637240afd8cSMark Johnston 
638240afd8cSMark Johnston 	if (blksz == 0) {
639240afd8cSMark Johnston 		/* Must be between 1<<ashift and 128KB. */
640240afd8cSMark Johnston 		blksz = MIN(MAXBLOCKSIZE, MAX(1 << zfs->ashift,
6419821e244SJohn Baldwin 		    powerof2(size) ? size : (1l << flsll(size))));
642240afd8cSMark Johnston 	}
643240afd8cSMark Johnston 	assert(powerof2(blksz));
644240afd8cSMark Johnston 
645240afd8cSMark Johnston 	/*
646240afd8cSMark Johnston 	 * Do we need indirect blocks?  Figure out how many levels are needed
647240afd8cSMark Johnston 	 * (indlevel == 1 means no indirect blocks) and how much space is needed
648240afd8cSMark Johnston 	 * (it has to be allocated up-front to break the dependency cycle
649240afd8cSMark Johnston 	 * described in objset_write()).
650240afd8cSMark Johnston 	 */
651240afd8cSMark Johnston 	ndatablks = size == 0 ? 0 : howmany(size, blksz);
652240afd8cSMark Johnston 	nindblks = 0;
653240afd8cSMark Johnston 	for (indlevel = 1, nbppindir = 1; ndatablks > nbppindir; indlevel++) {
654240afd8cSMark Johnston 		nbppindir *= BLKPTR_PER_INDIR;
655240afd8cSMark Johnston 		nindblks += howmany(ndatablks, indlevel * nbppindir);
656240afd8cSMark Johnston 	}
657240afd8cSMark Johnston 	assert(indlevel < INDIR_LEVELS);
658240afd8cSMark Johnston 
659240afd8cSMark Johnston 	dnode->dn_nlevels = (uint8_t)indlevel;
660240afd8cSMark Johnston 	dnode->dn_maxblkid = ndatablks > 0 ? ndatablks - 1 : 0;
661240afd8cSMark Johnston 	dnode->dn_datablkszsec = blksz >> MINBLOCKSHIFT;
662240afd8cSMark Johnston 
663240afd8cSMark Johnston 	c = ecalloc(1, sizeof(*c));
664240afd8cSMark Johnston 	if (nindblks > 0) {
665240afd8cSMark Johnston 		c->indspace = nindblks * MAXBLOCKSIZE;
666240afd8cSMark Johnston 		c->indloc = objset_space_alloc(zfs, os, &c->indspace);
667240afd8cSMark Johnston 	}
668240afd8cSMark Johnston 	c->dnode = dnode;
669240afd8cSMark Johnston 	c->dataoff = 0;
670240afd8cSMark Johnston 	c->datablksz = blksz;
671240afd8cSMark Johnston 
672240afd8cSMark Johnston 	return (c);
673240afd8cSMark Johnston }
674240afd8cSMark Johnston 
675240afd8cSMark Johnston static void
_dnode_cursor_flush(zfs_opt_t * zfs,struct dnode_cursor * c,unsigned int levels)676b5a2bf51SMark Johnston _dnode_cursor_flush(zfs_opt_t *zfs, struct dnode_cursor *c, unsigned int levels)
677240afd8cSMark Johnston {
678240afd8cSMark Johnston 	blkptr_t *bp, *pbp;
679240afd8cSMark Johnston 	void *buf;
680240afd8cSMark Johnston 	uint64_t fill;
681240afd8cSMark Johnston 	off_t blkid, blksz, loc;
682240afd8cSMark Johnston 
683240afd8cSMark Johnston 	assert(levels > 0);
6848a77bc5eSDimitry Andric 	assert(levels <= c->dnode->dn_nlevels - 1U);
685240afd8cSMark Johnston 
686240afd8cSMark Johnston 	blksz = MAXBLOCKSIZE;
687240afd8cSMark Johnston 	blkid = (c->dataoff / c->datablksz) / BLKPTR_PER_INDIR;
688b5a2bf51SMark Johnston 	for (unsigned int level = 1; level <= levels; level++) {
689240afd8cSMark Johnston 		buf = c->inddir[level - 1];
690240afd8cSMark Johnston 
6918a77bc5eSDimitry Andric 		if (level == c->dnode->dn_nlevels - 1U) {
692240afd8cSMark Johnston 			pbp = &c->dnode->dn_blkptr[0];
693240afd8cSMark Johnston 		} else {
694240afd8cSMark Johnston 			uint64_t iblkid;
695240afd8cSMark Johnston 
696240afd8cSMark Johnston 			iblkid = blkid & (BLKPTR_PER_INDIR - 1);
697240afd8cSMark Johnston 			pbp = (blkptr_t *)
698240afd8cSMark Johnston 			    &c->inddir[level][iblkid * sizeof(blkptr_t)];
699240afd8cSMark Johnston 		}
700240afd8cSMark Johnston 
701240afd8cSMark Johnston 		/*
702240afd8cSMark Johnston 		 * Space for indirect blocks is allocated up-front; see the
703240afd8cSMark Johnston 		 * comment in objset_write().
704240afd8cSMark Johnston 		 */
705240afd8cSMark Johnston 		loc = c->indloc;
706240afd8cSMark Johnston 		c->indloc += blksz;
707240afd8cSMark Johnston 		assert(c->indspace >= blksz);
708240afd8cSMark Johnston 		c->indspace -= blksz;
709240afd8cSMark Johnston 
710240afd8cSMark Johnston 		bp = buf;
711240afd8cSMark Johnston 		fill = 0;
712240afd8cSMark Johnston 		for (size_t i = 0; i < BLKPTR_PER_INDIR; i++)
713240afd8cSMark Johnston 			fill += BP_GET_FILL(&bp[i]);
714240afd8cSMark Johnston 
715240afd8cSMark Johnston 		vdev_pwrite_dnode_indir(zfs, c->dnode, level, fill, buf, blksz,
716240afd8cSMark Johnston 		    loc, pbp);
717240afd8cSMark Johnston 		memset(buf, 0, MAXBLOCKSIZE);
718240afd8cSMark Johnston 
719240afd8cSMark Johnston 		blkid /= BLKPTR_PER_INDIR;
720240afd8cSMark Johnston 	}
721240afd8cSMark Johnston }
722240afd8cSMark Johnston 
723240afd8cSMark Johnston blkptr_t *
dnode_cursor_next(zfs_opt_t * zfs,struct dnode_cursor * c,off_t off)724240afd8cSMark Johnston dnode_cursor_next(zfs_opt_t *zfs, struct dnode_cursor *c, off_t off)
725240afd8cSMark Johnston {
726240afd8cSMark Johnston 	off_t blkid, l1id;
727b5a2bf51SMark Johnston 	unsigned int levels;
728240afd8cSMark Johnston 
729240afd8cSMark Johnston 	if (c->dnode->dn_nlevels == 1) {
730240afd8cSMark Johnston 		assert(off < MAXBLOCKSIZE);
731240afd8cSMark Johnston 		return (&c->dnode->dn_blkptr[0]);
732240afd8cSMark Johnston 	}
733240afd8cSMark Johnston 
734240afd8cSMark Johnston 	assert(off % c->datablksz == 0);
735240afd8cSMark Johnston 
736240afd8cSMark Johnston 	/* Do we need to flush any full indirect blocks? */
737240afd8cSMark Johnston 	if (off > 0) {
738240afd8cSMark Johnston 		blkid = off / c->datablksz;
7398a77bc5eSDimitry Andric 		for (levels = 0; levels < c->dnode->dn_nlevels - 1U; levels++) {
740240afd8cSMark Johnston 			if (blkid % BLKPTR_PER_INDIR != 0)
741240afd8cSMark Johnston 				break;
742240afd8cSMark Johnston 			blkid /= BLKPTR_PER_INDIR;
743240afd8cSMark Johnston 		}
744240afd8cSMark Johnston 		if (levels > 0)
745240afd8cSMark Johnston 			_dnode_cursor_flush(zfs, c, levels);
746240afd8cSMark Johnston 	}
747240afd8cSMark Johnston 
748240afd8cSMark Johnston 	c->dataoff = off;
749240afd8cSMark Johnston 	l1id = (off / c->datablksz) & (BLKPTR_PER_INDIR - 1);
750240afd8cSMark Johnston 	return ((blkptr_t *)&c->inddir[0][l1id * sizeof(blkptr_t)]);
751240afd8cSMark Johnston }
752240afd8cSMark Johnston 
753240afd8cSMark Johnston void
dnode_cursor_finish(zfs_opt_t * zfs,struct dnode_cursor * c)754240afd8cSMark Johnston dnode_cursor_finish(zfs_opt_t *zfs, struct dnode_cursor *c)
755240afd8cSMark Johnston {
756b5a2bf51SMark Johnston 	unsigned int levels;
757240afd8cSMark Johnston 
758b5a2bf51SMark Johnston 	assert(c->dnode->dn_nlevels > 0);
759240afd8cSMark Johnston 	levels = c->dnode->dn_nlevels - 1;
760240afd8cSMark Johnston 	if (levels > 0)
761240afd8cSMark Johnston 		_dnode_cursor_flush(zfs, c, levels);
762240afd8cSMark Johnston 	assert(c->indspace == 0);
763240afd8cSMark Johnston 	free(c);
764240afd8cSMark Johnston }
765240afd8cSMark Johnston 
766240afd8cSMark Johnston void
zfs_makefs(const char * image,const char * dir,fsnode * root,fsinfo_t * fsopts)767240afd8cSMark Johnston zfs_makefs(const char *image, const char *dir, fsnode *root, fsinfo_t *fsopts)
768240afd8cSMark Johnston {
769240afd8cSMark Johnston 	zfs_opt_t *zfs;
770240afd8cSMark Johnston 	int dirfd;
771240afd8cSMark Johnston 
772240afd8cSMark Johnston 	zfs = fsopts->fs_specific;
773240afd8cSMark Johnston 
774240afd8cSMark Johnston 	/*
775240afd8cSMark Johnston 	 * Use a fixed seed to provide reproducible pseudo-random numbers for
776240afd8cSMark Johnston 	 * on-disk structures when needed (e.g., GUIDs, ZAP hash salts).
777240afd8cSMark Johnston 	 */
778240afd8cSMark Johnston 	srandom(1729);
779240afd8cSMark Johnston 
780240afd8cSMark Johnston 	zfs_check_opts(fsopts);
781240afd8cSMark Johnston 
782240afd8cSMark Johnston 	if (!zfs->nowarn) {
783240afd8cSMark Johnston 		fprintf(stderr,
784240afd8cSMark Johnston 		    "ZFS support is currently considered experimental. "
785240afd8cSMark Johnston 		    "Do not use it for anything critical.\n");
786240afd8cSMark Johnston 	}
787240afd8cSMark Johnston 
788240afd8cSMark Johnston 	dirfd = open(dir, O_DIRECTORY | O_RDONLY);
789240afd8cSMark Johnston 	if (dirfd < 0)
790240afd8cSMark Johnston 		err(1, "open(%s)", dir);
791240afd8cSMark Johnston 
792240afd8cSMark Johnston 	vdev_init(zfs, image);
793240afd8cSMark Johnston 	pool_init(zfs);
794240afd8cSMark Johnston 	fs_build(zfs, dirfd, root);
795240afd8cSMark Johnston 	pool_fini(zfs);
796240afd8cSMark Johnston 	vdev_fini(zfs);
797240afd8cSMark Johnston }
798