1240afd8cSMark Johnston /*- 2240afd8cSMark Johnston * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 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> 36*a9e7a44cSMark 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 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 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 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 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"); 219*a9e7a44cSMark Johnston if (!isalpha(zfs->poolname[0])) 220*a9e7a44cSMark Johnston errx(1, "the pool name must begin with a letter"); 221*a9e7a44cSMark Johnston for (size_t i = 0, len = strlen(zfs->poolname); i < len; i++) { 222*a9e7a44cSMark Johnston if (!isalnum(zfs->poolname[i]) && zfs->poolname[i] != '_') 223*a9e7a44cSMark Johnston errx(1, "invalid character '%c' in pool name", 224*a9e7a44cSMark Johnston zfs->poolname[i]); 225*a9e7a44cSMark Johnston } 226*a9e7a44cSMark Johnston if (strcmp(zfs->poolname, "mirror") == 0 || 227*a9e7a44cSMark Johnston strcmp(zfs->poolname, "raidz") == 0 || 228*a9e7a44cSMark Johnston strcmp(zfs->poolname, "draid") == 0) { 229*a9e7a44cSMark Johnston errx(1, "pool name '%s' is reserved and cannot be used", 230*a9e7a44cSMark Johnston zfs->poolname); 231*a9e7a44cSMark 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 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 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 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 277240afd8cSMark Johnston static nvlist_t * 278240afd8cSMark Johnston pool_config_nvcreate(zfs_opt_t *zfs) 279240afd8cSMark Johnston { 280240afd8cSMark Johnston nvlist_t *featuresnv, *poolnv; 281240afd8cSMark Johnston 282240afd8cSMark Johnston poolnv = nvlist_create(NV_UNIQUE_NAME); 283240afd8cSMark Johnston nvlist_add_uint64(poolnv, ZPOOL_CONFIG_POOL_TXG, TXG); 284240afd8cSMark Johnston nvlist_add_uint64(poolnv, ZPOOL_CONFIG_VERSION, SPA_VERSION); 285240afd8cSMark Johnston nvlist_add_uint64(poolnv, ZPOOL_CONFIG_POOL_STATE, POOL_STATE_EXPORTED); 286240afd8cSMark Johnston nvlist_add_string(poolnv, ZPOOL_CONFIG_POOL_NAME, zfs->poolname); 287240afd8cSMark Johnston nvlist_add_uint64(poolnv, ZPOOL_CONFIG_POOL_GUID, zfs->poolguid); 288240afd8cSMark Johnston nvlist_add_uint64(poolnv, ZPOOL_CONFIG_TOP_GUID, zfs->vdevguid); 289240afd8cSMark Johnston nvlist_add_uint64(poolnv, ZPOOL_CONFIG_GUID, zfs->vdevguid); 290240afd8cSMark Johnston nvlist_add_uint64(poolnv, ZPOOL_CONFIG_VDEV_CHILDREN, 1); 291240afd8cSMark Johnston 292240afd8cSMark Johnston featuresnv = nvlist_create(NV_UNIQUE_NAME); 293240afd8cSMark Johnston nvlist_add_nvlist(poolnv, ZPOOL_CONFIG_FEATURES_FOR_READ, featuresnv); 294240afd8cSMark Johnston nvlist_destroy(featuresnv); 295240afd8cSMark Johnston 296240afd8cSMark Johnston return (poolnv); 297240afd8cSMark Johnston } 298240afd8cSMark Johnston 299240afd8cSMark Johnston static nvlist_t * 300240afd8cSMark Johnston pool_disk_vdev_config_nvcreate(zfs_opt_t *zfs) 301240afd8cSMark Johnston { 302240afd8cSMark Johnston nvlist_t *diskvdevnv; 303240afd8cSMark Johnston 304240afd8cSMark Johnston assert(zfs->objarrid != 0); 305240afd8cSMark Johnston 306240afd8cSMark Johnston diskvdevnv = nvlist_create(NV_UNIQUE_NAME); 307240afd8cSMark Johnston nvlist_add_string(diskvdevnv, ZPOOL_CONFIG_TYPE, VDEV_TYPE_DISK); 308240afd8cSMark Johnston nvlist_add_uint64(diskvdevnv, ZPOOL_CONFIG_ASHIFT, zfs->ashift); 309240afd8cSMark Johnston nvlist_add_uint64(diskvdevnv, ZPOOL_CONFIG_ASIZE, zfs->asize); 310240afd8cSMark Johnston nvlist_add_uint64(diskvdevnv, ZPOOL_CONFIG_GUID, zfs->vdevguid); 311240afd8cSMark Johnston nvlist_add_uint64(diskvdevnv, ZPOOL_CONFIG_ID, 0); 312240afd8cSMark Johnston nvlist_add_string(diskvdevnv, ZPOOL_CONFIG_PATH, "/dev/null"); 313240afd8cSMark Johnston nvlist_add_uint64(diskvdevnv, ZPOOL_CONFIG_WHOLE_DISK, 1); 314240afd8cSMark Johnston nvlist_add_uint64(diskvdevnv, ZPOOL_CONFIG_CREATE_TXG, TXG); 315240afd8cSMark Johnston nvlist_add_uint64(diskvdevnv, ZPOOL_CONFIG_METASLAB_ARRAY, 316240afd8cSMark Johnston zfs->objarrid); 317240afd8cSMark Johnston nvlist_add_uint64(diskvdevnv, ZPOOL_CONFIG_METASLAB_SHIFT, 318240afd8cSMark Johnston zfs->msshift); 319240afd8cSMark Johnston 320240afd8cSMark Johnston return (diskvdevnv); 321240afd8cSMark Johnston } 322240afd8cSMark Johnston 323240afd8cSMark Johnston static nvlist_t * 324240afd8cSMark Johnston pool_root_vdev_config_nvcreate(zfs_opt_t *zfs) 325240afd8cSMark Johnston { 326240afd8cSMark Johnston nvlist_t *diskvdevnv, *rootvdevnv; 327240afd8cSMark Johnston 328240afd8cSMark Johnston diskvdevnv = pool_disk_vdev_config_nvcreate(zfs); 329240afd8cSMark Johnston rootvdevnv = nvlist_create(NV_UNIQUE_NAME); 330240afd8cSMark Johnston 331240afd8cSMark Johnston nvlist_add_uint64(rootvdevnv, ZPOOL_CONFIG_ID, 0); 332240afd8cSMark Johnston nvlist_add_uint64(rootvdevnv, ZPOOL_CONFIG_GUID, zfs->poolguid); 333240afd8cSMark Johnston nvlist_add_string(rootvdevnv, ZPOOL_CONFIG_TYPE, VDEV_TYPE_ROOT); 334240afd8cSMark Johnston nvlist_add_uint64(rootvdevnv, ZPOOL_CONFIG_CREATE_TXG, TXG); 335240afd8cSMark Johnston nvlist_add_nvlist_array(rootvdevnv, ZPOOL_CONFIG_CHILDREN, &diskvdevnv, 336240afd8cSMark Johnston 1); 337240afd8cSMark Johnston nvlist_destroy(diskvdevnv); 338240afd8cSMark Johnston 339240afd8cSMark Johnston return (rootvdevnv); 340240afd8cSMark Johnston } 341240afd8cSMark Johnston 342240afd8cSMark Johnston /* 343240afd8cSMark Johnston * Create the pool's "config" object, which contains an nvlist describing pool 344240afd8cSMark Johnston * parameters and the vdev topology. It is similar but not identical to the 345240afd8cSMark Johnston * nvlist stored in vdev labels. The main difference is that vdev labels do not 346240afd8cSMark Johnston * describe the full vdev tree and in particular do not contain the "root" 347240afd8cSMark Johnston * meta-vdev. 348240afd8cSMark Johnston */ 349240afd8cSMark Johnston static void 350240afd8cSMark Johnston pool_init_objdir_config(zfs_opt_t *zfs, zfs_zap_t *objdir) 351240afd8cSMark Johnston { 352240afd8cSMark Johnston dnode_phys_t *dnode; 353240afd8cSMark Johnston nvlist_t *poolconfig, *vdevconfig; 354240afd8cSMark Johnston void *configbuf; 355240afd8cSMark Johnston uint64_t dnid; 356240afd8cSMark Johnston off_t configloc, configblksz; 357240afd8cSMark Johnston int error; 358240afd8cSMark Johnston 359240afd8cSMark Johnston dnode = objset_dnode_bonus_alloc(zfs->mos, DMU_OT_PACKED_NVLIST, 360240afd8cSMark Johnston DMU_OT_PACKED_NVLIST_SIZE, sizeof(uint64_t), &dnid); 361240afd8cSMark Johnston 362240afd8cSMark Johnston poolconfig = pool_config_nvcreate(zfs); 363240afd8cSMark Johnston 364240afd8cSMark Johnston vdevconfig = pool_root_vdev_config_nvcreate(zfs); 365240afd8cSMark Johnston nvlist_add_nvlist(poolconfig, ZPOOL_CONFIG_VDEV_TREE, vdevconfig); 366240afd8cSMark Johnston nvlist_destroy(vdevconfig); 367240afd8cSMark Johnston 368240afd8cSMark Johnston error = nvlist_export(poolconfig); 369240afd8cSMark Johnston if (error != 0) 370240afd8cSMark Johnston errc(1, error, "nvlist_export"); 371240afd8cSMark Johnston 372240afd8cSMark Johnston configblksz = nvlist_size(poolconfig); 373240afd8cSMark Johnston configloc = objset_space_alloc(zfs, zfs->mos, &configblksz); 374240afd8cSMark Johnston configbuf = ecalloc(1, configblksz); 375240afd8cSMark Johnston nvlist_copy(poolconfig, configbuf, configblksz); 376240afd8cSMark Johnston 377240afd8cSMark Johnston vdev_pwrite_dnode_data(zfs, dnode, configbuf, configblksz, configloc); 378240afd8cSMark Johnston 379240afd8cSMark Johnston dnode->dn_datablkszsec = configblksz >> MINBLOCKSHIFT; 380240afd8cSMark Johnston dnode->dn_flags = DNODE_FLAG_USED_BYTES; 381240afd8cSMark Johnston *(uint64_t *)DN_BONUS(dnode) = nvlist_size(poolconfig); 382240afd8cSMark Johnston 383240afd8cSMark Johnston zap_add_uint64(objdir, DMU_POOL_CONFIG, dnid); 384240afd8cSMark Johnston 385240afd8cSMark Johnston nvlist_destroy(poolconfig); 386240afd8cSMark Johnston free(configbuf); 387240afd8cSMark Johnston } 388240afd8cSMark Johnston 389240afd8cSMark Johnston /* 390240afd8cSMark Johnston * Add objects block pointer list objects, used for deferred frees. We don't do 391240afd8cSMark Johnston * anything with them, but they need to be present or OpenZFS will refuse to 392240afd8cSMark Johnston * import the pool. 393240afd8cSMark Johnston */ 394240afd8cSMark Johnston static void 395240afd8cSMark Johnston pool_init_objdir_bplists(zfs_opt_t *zfs __unused, zfs_zap_t *objdir) 396240afd8cSMark Johnston { 397240afd8cSMark Johnston uint64_t dnid; 398240afd8cSMark Johnston 399240afd8cSMark Johnston (void)objset_dnode_bonus_alloc(zfs->mos, DMU_OT_BPOBJ, DMU_OT_BPOBJ_HDR, 400240afd8cSMark Johnston BPOBJ_SIZE_V2, &dnid); 401240afd8cSMark Johnston zap_add_uint64(objdir, DMU_POOL_FREE_BPOBJ, dnid); 402240afd8cSMark Johnston 403240afd8cSMark Johnston (void)objset_dnode_bonus_alloc(zfs->mos, DMU_OT_BPOBJ, DMU_OT_BPOBJ_HDR, 404240afd8cSMark Johnston BPOBJ_SIZE_V2, &dnid); 405240afd8cSMark Johnston zap_add_uint64(objdir, DMU_POOL_SYNC_BPLIST, dnid); 406240afd8cSMark Johnston } 407240afd8cSMark Johnston 408240afd8cSMark Johnston /* 409240afd8cSMark Johnston * Add required feature metadata objects. We don't know anything about ZFS 410240afd8cSMark Johnston * features, so the objects are just empty ZAPs. 411240afd8cSMark Johnston */ 412240afd8cSMark Johnston static void 413240afd8cSMark Johnston pool_init_objdir_feature_maps(zfs_opt_t *zfs, zfs_zap_t *objdir) 414240afd8cSMark Johnston { 415240afd8cSMark Johnston dnode_phys_t *dnode; 416240afd8cSMark Johnston uint64_t dnid; 417240afd8cSMark Johnston 418240afd8cSMark Johnston dnode = objset_dnode_alloc(zfs->mos, DMU_OTN_ZAP_METADATA, &dnid); 419240afd8cSMark Johnston zap_add_uint64(objdir, DMU_POOL_FEATURES_FOR_READ, dnid); 420240afd8cSMark Johnston zap_write(zfs, zap_alloc(zfs->mos, dnode)); 421240afd8cSMark Johnston 422240afd8cSMark Johnston dnode = objset_dnode_alloc(zfs->mos, DMU_OTN_ZAP_METADATA, &dnid); 423240afd8cSMark Johnston zap_add_uint64(objdir, DMU_POOL_FEATURES_FOR_WRITE, dnid); 424240afd8cSMark Johnston zap_write(zfs, zap_alloc(zfs->mos, dnode)); 425240afd8cSMark Johnston 426240afd8cSMark Johnston dnode = objset_dnode_alloc(zfs->mos, DMU_OTN_ZAP_METADATA, &dnid); 427240afd8cSMark Johnston zap_add_uint64(objdir, DMU_POOL_FEATURE_DESCRIPTIONS, dnid); 428240afd8cSMark Johnston zap_write(zfs, zap_alloc(zfs->mos, dnode)); 429240afd8cSMark Johnston } 430240afd8cSMark Johnston 431240afd8cSMark Johnston static void 432240afd8cSMark Johnston pool_init_objdir_dsl(zfs_opt_t *zfs, zfs_zap_t *objdir) 433240afd8cSMark Johnston { 434240afd8cSMark Johnston zap_add_uint64(objdir, DMU_POOL_ROOT_DATASET, 435240afd8cSMark Johnston dsl_dir_id(zfs->rootdsldir)); 436240afd8cSMark Johnston } 437240afd8cSMark Johnston 438240afd8cSMark Johnston static void 439240afd8cSMark Johnston pool_init_objdir_poolprops(zfs_opt_t *zfs, zfs_zap_t *objdir) 440240afd8cSMark Johnston { 441240afd8cSMark Johnston dnode_phys_t *dnode; 442240afd8cSMark Johnston uint64_t id; 443240afd8cSMark Johnston 444240afd8cSMark Johnston dnode = objset_dnode_alloc(zfs->mos, DMU_OT_POOL_PROPS, &id); 445240afd8cSMark Johnston zap_add_uint64(objdir, DMU_POOL_PROPS, id); 446240afd8cSMark Johnston 447240afd8cSMark Johnston zfs->poolprops = zap_alloc(zfs->mos, dnode); 448240afd8cSMark Johnston } 449240afd8cSMark Johnston 450240afd8cSMark Johnston /* 451240afd8cSMark Johnston * Initialize the MOS object directory, the root of virtually all of the pool's 452240afd8cSMark Johnston * data and metadata. 453240afd8cSMark Johnston */ 454240afd8cSMark Johnston static void 455240afd8cSMark Johnston pool_init_objdir(zfs_opt_t *zfs) 456240afd8cSMark Johnston { 457240afd8cSMark Johnston zfs_zap_t *zap; 458240afd8cSMark Johnston dnode_phys_t *objdir; 459240afd8cSMark Johnston 460240afd8cSMark Johnston objdir = objset_dnode_lookup(zfs->mos, DMU_POOL_DIRECTORY_OBJECT); 461240afd8cSMark Johnston 462240afd8cSMark Johnston zap = zap_alloc(zfs->mos, objdir); 463240afd8cSMark Johnston pool_init_objdir_config(zfs, zap); 464240afd8cSMark Johnston pool_init_objdir_bplists(zfs, zap); 465240afd8cSMark Johnston pool_init_objdir_feature_maps(zfs, zap); 466240afd8cSMark Johnston pool_init_objdir_dsl(zfs, zap); 467240afd8cSMark Johnston pool_init_objdir_poolprops(zfs, zap); 468240afd8cSMark Johnston zap_write(zfs, zap); 469240afd8cSMark Johnston } 470240afd8cSMark Johnston 471240afd8cSMark Johnston /* 472240afd8cSMark Johnston * Initialize the meta-object set (MOS) and immediately write out several 473240afd8cSMark Johnston * special objects whose contents are already finalized, including the object 474240afd8cSMark Johnston * directory. 475240afd8cSMark Johnston * 476240afd8cSMark Johnston * Once the MOS is finalized, it'll look roughly like this: 477240afd8cSMark Johnston * 478240afd8cSMark Johnston * object directory (ZAP) 479240afd8cSMark Johnston * |-> vdev config object (nvlist) 480240afd8cSMark Johnston * |-> features for read 481240afd8cSMark Johnston * |-> features for write 482240afd8cSMark Johnston * |-> feature descriptions 483240afd8cSMark Johnston * |-> sync bplist 484240afd8cSMark Johnston * |-> free bplist 485240afd8cSMark Johnston * |-> pool properties 486240afd8cSMark Johnston * L-> root DSL directory 487240afd8cSMark Johnston * |-> DSL child directory (ZAP) 488240afd8cSMark Johnston * | |-> $MOS (DSL dir) 489240afd8cSMark Johnston * | | |-> child map 490240afd8cSMark Johnston * | | L-> props (ZAP) 491240afd8cSMark Johnston * | |-> $FREE (DSL dir) 492240afd8cSMark Johnston * | | |-> child map 493240afd8cSMark Johnston * | | L-> props (ZAP) 494240afd8cSMark Johnston * | |-> $ORIGIN (DSL dir) 495240afd8cSMark Johnston * | | |-> child map 496240afd8cSMark Johnston * | | |-> dataset 497240afd8cSMark Johnston * | | | L-> deadlist 498240afd8cSMark Johnston * | | |-> snapshot 499240afd8cSMark Johnston * | | | |-> deadlist 500240afd8cSMark Johnston * | | | L-> snapshot names 501240afd8cSMark Johnston * | | |-> props (ZAP) 502240afd8cSMark Johnston * | | L-> clones (ZAP) 503240afd8cSMark Johnston * | |-> dataset 1 (DSL dir) 504240afd8cSMark Johnston * | | |-> DSL dataset 505240afd8cSMark Johnston * | | | |-> snapshot names 506240afd8cSMark Johnston * | | | L-> deadlist 507240afd8cSMark Johnston * | | |-> child map 508240afd8cSMark Johnston * | | | L-> ... 509240afd8cSMark Johnston * | | L-> props 510240afd8cSMark Johnston * | |-> dataset 2 511240afd8cSMark Johnston * | | L-> ... 512240afd8cSMark Johnston * | |-> ... 513240afd8cSMark Johnston * | L-> dataset n 514240afd8cSMark Johnston * |-> DSL root dataset 515240afd8cSMark Johnston * | |-> snapshot names 516240afd8cSMark Johnston * | L-> deadlist 517240afd8cSMark Johnston * L-> props (ZAP) 518240afd8cSMark Johnston * space map object array 519240afd8cSMark Johnston * |-> space map 1 520240afd8cSMark Johnston * |-> space map 2 521240afd8cSMark Johnston * |-> ... 522240afd8cSMark Johnston * L-> space map n (zfs->mscount) 523240afd8cSMark Johnston * 524240afd8cSMark Johnston * The space map object array is pointed to by the "msarray" property in the 525240afd8cSMark Johnston * pool configuration. 526240afd8cSMark Johnston */ 527240afd8cSMark Johnston static void 528240afd8cSMark Johnston pool_init(zfs_opt_t *zfs) 529240afd8cSMark Johnston { 530240afd8cSMark Johnston uint64_t dnid; 531240afd8cSMark Johnston 532240afd8cSMark Johnston zfs->poolguid = ((uint64_t)random() << 32) | random(); 533240afd8cSMark Johnston zfs->vdevguid = ((uint64_t)random() << 32) | random(); 534240afd8cSMark Johnston 535240afd8cSMark Johnston zfs->mos = objset_alloc(zfs, DMU_OST_META); 536240afd8cSMark Johnston 537240afd8cSMark Johnston (void)objset_dnode_alloc(zfs->mos, DMU_OT_OBJECT_DIRECTORY, &dnid); 538240afd8cSMark Johnston assert(dnid == DMU_POOL_DIRECTORY_OBJECT); 539240afd8cSMark Johnston 540240afd8cSMark Johnston (void)objset_dnode_alloc(zfs->mos, DMU_OT_OBJECT_ARRAY, &zfs->objarrid); 541240afd8cSMark Johnston 542240afd8cSMark Johnston dsl_init(zfs); 543240afd8cSMark Johnston 544240afd8cSMark Johnston pool_init_objdir(zfs); 545240afd8cSMark Johnston } 546240afd8cSMark Johnston 547240afd8cSMark Johnston static void 548240afd8cSMark Johnston pool_labels_write(zfs_opt_t *zfs) 549240afd8cSMark Johnston { 550240afd8cSMark Johnston uberblock_t *ub; 551240afd8cSMark Johnston vdev_label_t *label; 552240afd8cSMark Johnston nvlist_t *poolconfig, *vdevconfig; 553240afd8cSMark Johnston int error; 554240afd8cSMark Johnston 555240afd8cSMark Johnston label = ecalloc(1, sizeof(*label)); 556240afd8cSMark Johnston 557240afd8cSMark Johnston /* 558240afd8cSMark Johnston * Assemble the vdev configuration and store it in the label. 559240afd8cSMark Johnston */ 560240afd8cSMark Johnston poolconfig = pool_config_nvcreate(zfs); 561240afd8cSMark Johnston vdevconfig = pool_disk_vdev_config_nvcreate(zfs); 562240afd8cSMark Johnston nvlist_add_nvlist(poolconfig, ZPOOL_CONFIG_VDEV_TREE, vdevconfig); 563240afd8cSMark Johnston nvlist_destroy(vdevconfig); 564240afd8cSMark Johnston 565240afd8cSMark Johnston error = nvlist_export(poolconfig); 566240afd8cSMark Johnston if (error != 0) 567240afd8cSMark Johnston errc(1, error, "nvlist_export"); 568240afd8cSMark Johnston nvlist_copy(poolconfig, label->vl_vdev_phys.vp_nvlist, 569240afd8cSMark Johnston sizeof(label->vl_vdev_phys.vp_nvlist)); 570240afd8cSMark Johnston nvlist_destroy(poolconfig); 571240afd8cSMark Johnston 572240afd8cSMark Johnston /* 573240afd8cSMark Johnston * Fill out the uberblock. Just make each one the same. The embedded 574240afd8cSMark Johnston * checksum is calculated in vdev_label_write(). 575240afd8cSMark Johnston */ 576240afd8cSMark Johnston for (size_t uoff = 0; uoff < sizeof(label->vl_uberblock); 577240afd8cSMark Johnston uoff += (1 << zfs->ashift)) { 578240afd8cSMark Johnston ub = (uberblock_t *)(&label->vl_uberblock[0] + uoff); 579240afd8cSMark Johnston ub->ub_magic = UBERBLOCK_MAGIC; 580240afd8cSMark Johnston ub->ub_version = SPA_VERSION; 581240afd8cSMark Johnston ub->ub_txg = TXG; 582240afd8cSMark Johnston ub->ub_guid_sum = zfs->poolguid + zfs->vdevguid; 583240afd8cSMark Johnston ub->ub_timestamp = 0; 584240afd8cSMark Johnston 585240afd8cSMark Johnston ub->ub_software_version = SPA_VERSION; 586240afd8cSMark Johnston ub->ub_mmp_magic = MMP_MAGIC; 587240afd8cSMark Johnston ub->ub_mmp_delay = 0; 588240afd8cSMark Johnston ub->ub_mmp_config = 0; 589240afd8cSMark Johnston ub->ub_checkpoint_txg = 0; 590240afd8cSMark Johnston objset_root_blkptr_copy(zfs->mos, &ub->ub_rootbp); 591240afd8cSMark Johnston } 592240afd8cSMark Johnston 593240afd8cSMark Johnston /* 594240afd8cSMark Johnston * Write out four copies of the label: two at the beginning of the vdev 595240afd8cSMark Johnston * and two at the end. 596240afd8cSMark Johnston */ 597240afd8cSMark Johnston for (int i = 0; i < VDEV_LABELS; i++) 598240afd8cSMark Johnston vdev_label_write(zfs, i, label); 599240afd8cSMark Johnston 600240afd8cSMark Johnston free(label); 601240afd8cSMark Johnston } 602240afd8cSMark Johnston 603240afd8cSMark Johnston static void 604240afd8cSMark Johnston pool_fini(zfs_opt_t *zfs) 605240afd8cSMark Johnston { 606240afd8cSMark Johnston zap_write(zfs, zfs->poolprops); 607240afd8cSMark Johnston dsl_write(zfs); 608240afd8cSMark Johnston objset_write(zfs, zfs->mos); 609240afd8cSMark Johnston pool_labels_write(zfs); 610240afd8cSMark Johnston } 611240afd8cSMark Johnston 612240afd8cSMark Johnston struct dnode_cursor * 613240afd8cSMark Johnston dnode_cursor_init(zfs_opt_t *zfs, zfs_objset_t *os, dnode_phys_t *dnode, 614240afd8cSMark Johnston off_t size, off_t blksz) 615240afd8cSMark Johnston { 616240afd8cSMark Johnston struct dnode_cursor *c; 617240afd8cSMark Johnston uint64_t nbppindir, indlevel, ndatablks, nindblks; 618240afd8cSMark Johnston 619240afd8cSMark Johnston assert(dnode->dn_nblkptr == 1); 620240afd8cSMark Johnston assert(blksz <= MAXBLOCKSIZE); 621240afd8cSMark Johnston 622240afd8cSMark Johnston if (blksz == 0) { 623240afd8cSMark Johnston /* Must be between 1<<ashift and 128KB. */ 624240afd8cSMark Johnston blksz = MIN(MAXBLOCKSIZE, MAX(1 << zfs->ashift, 6259821e244SJohn Baldwin powerof2(size) ? size : (1l << flsll(size)))); 626240afd8cSMark Johnston } 627240afd8cSMark Johnston assert(powerof2(blksz)); 628240afd8cSMark Johnston 629240afd8cSMark Johnston /* 630240afd8cSMark Johnston * Do we need indirect blocks? Figure out how many levels are needed 631240afd8cSMark Johnston * (indlevel == 1 means no indirect blocks) and how much space is needed 632240afd8cSMark Johnston * (it has to be allocated up-front to break the dependency cycle 633240afd8cSMark Johnston * described in objset_write()). 634240afd8cSMark Johnston */ 635240afd8cSMark Johnston ndatablks = size == 0 ? 0 : howmany(size, blksz); 636240afd8cSMark Johnston nindblks = 0; 637240afd8cSMark Johnston for (indlevel = 1, nbppindir = 1; ndatablks > nbppindir; indlevel++) { 638240afd8cSMark Johnston nbppindir *= BLKPTR_PER_INDIR; 639240afd8cSMark Johnston nindblks += howmany(ndatablks, indlevel * nbppindir); 640240afd8cSMark Johnston } 641240afd8cSMark Johnston assert(indlevel < INDIR_LEVELS); 642240afd8cSMark Johnston 643240afd8cSMark Johnston dnode->dn_nlevels = (uint8_t)indlevel; 644240afd8cSMark Johnston dnode->dn_maxblkid = ndatablks > 0 ? ndatablks - 1 : 0; 645240afd8cSMark Johnston dnode->dn_datablkszsec = blksz >> MINBLOCKSHIFT; 646240afd8cSMark Johnston 647240afd8cSMark Johnston c = ecalloc(1, sizeof(*c)); 648240afd8cSMark Johnston if (nindblks > 0) { 649240afd8cSMark Johnston c->indspace = nindblks * MAXBLOCKSIZE; 650240afd8cSMark Johnston c->indloc = objset_space_alloc(zfs, os, &c->indspace); 651240afd8cSMark Johnston } 652240afd8cSMark Johnston c->dnode = dnode; 653240afd8cSMark Johnston c->dataoff = 0; 654240afd8cSMark Johnston c->datablksz = blksz; 655240afd8cSMark Johnston 656240afd8cSMark Johnston return (c); 657240afd8cSMark Johnston } 658240afd8cSMark Johnston 659240afd8cSMark Johnston static void 660240afd8cSMark Johnston _dnode_cursor_flush(zfs_opt_t *zfs, struct dnode_cursor *c, int levels) 661240afd8cSMark Johnston { 662240afd8cSMark Johnston blkptr_t *bp, *pbp; 663240afd8cSMark Johnston void *buf; 664240afd8cSMark Johnston uint64_t fill; 665240afd8cSMark Johnston off_t blkid, blksz, loc; 666240afd8cSMark Johnston 667240afd8cSMark Johnston assert(levels > 0); 668240afd8cSMark Johnston assert(levels <= c->dnode->dn_nlevels - 1); 669240afd8cSMark Johnston 670240afd8cSMark Johnston blksz = MAXBLOCKSIZE; 671240afd8cSMark Johnston blkid = (c->dataoff / c->datablksz) / BLKPTR_PER_INDIR; 672240afd8cSMark Johnston for (int level = 1; level <= levels; level++) { 673240afd8cSMark Johnston buf = c->inddir[level - 1]; 674240afd8cSMark Johnston 675240afd8cSMark Johnston if (level == c->dnode->dn_nlevels - 1) { 676240afd8cSMark Johnston pbp = &c->dnode->dn_blkptr[0]; 677240afd8cSMark Johnston } else { 678240afd8cSMark Johnston uint64_t iblkid; 679240afd8cSMark Johnston 680240afd8cSMark Johnston iblkid = blkid & (BLKPTR_PER_INDIR - 1); 681240afd8cSMark Johnston pbp = (blkptr_t *) 682240afd8cSMark Johnston &c->inddir[level][iblkid * sizeof(blkptr_t)]; 683240afd8cSMark Johnston } 684240afd8cSMark Johnston 685240afd8cSMark Johnston /* 686240afd8cSMark Johnston * Space for indirect blocks is allocated up-front; see the 687240afd8cSMark Johnston * comment in objset_write(). 688240afd8cSMark Johnston */ 689240afd8cSMark Johnston loc = c->indloc; 690240afd8cSMark Johnston c->indloc += blksz; 691240afd8cSMark Johnston assert(c->indspace >= blksz); 692240afd8cSMark Johnston c->indspace -= blksz; 693240afd8cSMark Johnston 694240afd8cSMark Johnston bp = buf; 695240afd8cSMark Johnston fill = 0; 696240afd8cSMark Johnston for (size_t i = 0; i < BLKPTR_PER_INDIR; i++) 697240afd8cSMark Johnston fill += BP_GET_FILL(&bp[i]); 698240afd8cSMark Johnston 699240afd8cSMark Johnston vdev_pwrite_dnode_indir(zfs, c->dnode, level, fill, buf, blksz, 700240afd8cSMark Johnston loc, pbp); 701240afd8cSMark Johnston memset(buf, 0, MAXBLOCKSIZE); 702240afd8cSMark Johnston 703240afd8cSMark Johnston blkid /= BLKPTR_PER_INDIR; 704240afd8cSMark Johnston } 705240afd8cSMark Johnston } 706240afd8cSMark Johnston 707240afd8cSMark Johnston blkptr_t * 708240afd8cSMark Johnston dnode_cursor_next(zfs_opt_t *zfs, struct dnode_cursor *c, off_t off) 709240afd8cSMark Johnston { 710240afd8cSMark Johnston off_t blkid, l1id; 711240afd8cSMark Johnston int levels; 712240afd8cSMark Johnston 713240afd8cSMark Johnston if (c->dnode->dn_nlevels == 1) { 714240afd8cSMark Johnston assert(off < MAXBLOCKSIZE); 715240afd8cSMark Johnston return (&c->dnode->dn_blkptr[0]); 716240afd8cSMark Johnston } 717240afd8cSMark Johnston 718240afd8cSMark Johnston assert(off % c->datablksz == 0); 719240afd8cSMark Johnston 720240afd8cSMark Johnston /* Do we need to flush any full indirect blocks? */ 721240afd8cSMark Johnston if (off > 0) { 722240afd8cSMark Johnston blkid = off / c->datablksz; 723240afd8cSMark Johnston for (levels = 0; levels < c->dnode->dn_nlevels - 1; levels++) { 724240afd8cSMark Johnston if (blkid % BLKPTR_PER_INDIR != 0) 725240afd8cSMark Johnston break; 726240afd8cSMark Johnston blkid /= BLKPTR_PER_INDIR; 727240afd8cSMark Johnston } 728240afd8cSMark Johnston if (levels > 0) 729240afd8cSMark Johnston _dnode_cursor_flush(zfs, c, levels); 730240afd8cSMark Johnston } 731240afd8cSMark Johnston 732240afd8cSMark Johnston c->dataoff = off; 733240afd8cSMark Johnston l1id = (off / c->datablksz) & (BLKPTR_PER_INDIR - 1); 734240afd8cSMark Johnston return ((blkptr_t *)&c->inddir[0][l1id * sizeof(blkptr_t)]); 735240afd8cSMark Johnston } 736240afd8cSMark Johnston 737240afd8cSMark Johnston void 738240afd8cSMark Johnston dnode_cursor_finish(zfs_opt_t *zfs, struct dnode_cursor *c) 739240afd8cSMark Johnston { 740240afd8cSMark Johnston int levels; 741240afd8cSMark Johnston 742240afd8cSMark Johnston levels = c->dnode->dn_nlevels - 1; 743240afd8cSMark Johnston if (levels > 0) 744240afd8cSMark Johnston _dnode_cursor_flush(zfs, c, levels); 745240afd8cSMark Johnston assert(c->indspace == 0); 746240afd8cSMark Johnston free(c); 747240afd8cSMark Johnston } 748240afd8cSMark Johnston 749240afd8cSMark Johnston void 750240afd8cSMark Johnston zfs_makefs(const char *image, const char *dir, fsnode *root, fsinfo_t *fsopts) 751240afd8cSMark Johnston { 752240afd8cSMark Johnston zfs_opt_t *zfs; 753240afd8cSMark Johnston int dirfd; 754240afd8cSMark Johnston 755240afd8cSMark Johnston zfs = fsopts->fs_specific; 756240afd8cSMark Johnston 757240afd8cSMark Johnston /* 758240afd8cSMark Johnston * Use a fixed seed to provide reproducible pseudo-random numbers for 759240afd8cSMark Johnston * on-disk structures when needed (e.g., GUIDs, ZAP hash salts). 760240afd8cSMark Johnston */ 761240afd8cSMark Johnston srandom(1729); 762240afd8cSMark Johnston 763240afd8cSMark Johnston zfs_check_opts(fsopts); 764240afd8cSMark Johnston 765240afd8cSMark Johnston if (!zfs->nowarn) { 766240afd8cSMark Johnston fprintf(stderr, 767240afd8cSMark Johnston "ZFS support is currently considered experimental. " 768240afd8cSMark Johnston "Do not use it for anything critical.\n"); 769240afd8cSMark Johnston } 770240afd8cSMark Johnston 771240afd8cSMark Johnston dirfd = open(dir, O_DIRECTORY | O_RDONLY); 772240afd8cSMark Johnston if (dirfd < 0) 773240afd8cSMark Johnston err(1, "open(%s)", dir); 774240afd8cSMark Johnston 775240afd8cSMark Johnston vdev_init(zfs, image); 776240afd8cSMark Johnston pool_init(zfs); 777240afd8cSMark Johnston fs_build(zfs, dirfd, root); 778240afd8cSMark Johnston pool_fini(zfs); 779240afd8cSMark Johnston vdev_fini(zfs); 780240afd8cSMark Johnston } 781