1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 2017 Kyle J. Kneitinger <kyle@kneit.in> 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26 * SUCH DAMAGE. 27 */ 28 29 #include <sys/cdefs.h> 30 __FBSDID("$FreeBSD$"); 31 32 #include <sys/param.h> 33 #include <sys/mount.h> 34 #include <sys/stat.h> 35 #include <sys/ucred.h> 36 37 #include <ctype.h> 38 #include <libgen.h> 39 #include <libzfs_core.h> 40 #include <stdio.h> 41 #include <stdlib.h> 42 #include <time.h> 43 #include <unistd.h> 44 45 #include "be.h" 46 #include "be_impl.h" 47 48 struct be_destroy_data { 49 libbe_handle_t *lbh; 50 char *snapname; 51 }; 52 53 #if SOON 54 static int be_create_child_noent(libbe_handle_t *lbh, const char *active, 55 const char *child_path); 56 static int be_create_child_cloned(libbe_handle_t *lbh, const char *active); 57 #endif 58 59 /* Arbitrary... should tune */ 60 #define BE_SNAP_SERIAL_MAX 1024 61 62 /* 63 * Iterator function for locating the rootfs amongst the children of the 64 * zfs_be_root set by loader(8). data is expected to be a libbe_handle_t *. 65 */ 66 static int 67 be_locate_rootfs(libbe_handle_t *lbh) 68 { 69 struct statfs sfs; 70 struct extmnttab entry; 71 zfs_handle_t *zfs; 72 73 /* 74 * Check first if root is ZFS; if not, we'll bail on rootfs capture. 75 * Unfortunately needed because zfs_path_to_zhandle will emit to 76 * stderr if / isn't actually a ZFS filesystem, which we'd like 77 * to avoid. 78 */ 79 if (statfs("/", &sfs) == 0) { 80 statfs2mnttab(&sfs, &entry); 81 if (strcmp(entry.mnt_fstype, MNTTYPE_ZFS) != 0) 82 return (1); 83 } else 84 return (1); 85 zfs = zfs_path_to_zhandle(lbh->lzh, "/", ZFS_TYPE_FILESYSTEM); 86 if (zfs == NULL) 87 return (1); 88 89 strlcpy(lbh->rootfs, zfs_get_name(zfs), sizeof(lbh->rootfs)); 90 zfs_close(zfs); 91 return (0); 92 } 93 94 /* 95 * Initializes the libbe context to operate in the root boot environment 96 * dataset, for example, zroot/ROOT. 97 */ 98 libbe_handle_t * 99 libbe_init(const char *root) 100 { 101 char altroot[MAXPATHLEN]; 102 libbe_handle_t *lbh; 103 char *poolname, *pos; 104 int pnamelen; 105 106 lbh = NULL; 107 poolname = pos = NULL; 108 109 if ((lbh = calloc(1, sizeof(libbe_handle_t))) == NULL) 110 goto err; 111 112 if ((lbh->lzh = libzfs_init()) == NULL) 113 goto err; 114 115 /* 116 * Grab rootfs, we'll work backwards from there if an optional BE root 117 * has not been passed in. 118 */ 119 if (be_locate_rootfs(lbh) != 0) { 120 if (root == NULL) 121 goto err; 122 *lbh->rootfs = '\0'; 123 } 124 if (root == NULL) { 125 /* Strip off the final slash from rootfs to get the be root */ 126 strlcpy(lbh->root, lbh->rootfs, sizeof(lbh->root)); 127 pos = strrchr(lbh->root, '/'); 128 if (pos == NULL) 129 goto err; 130 *pos = '\0'; 131 } else 132 strlcpy(lbh->root, root, sizeof(lbh->root)); 133 134 if ((pos = strchr(lbh->root, '/')) == NULL) 135 goto err; 136 137 pnamelen = pos - lbh->root; 138 poolname = malloc(pnamelen + 1); 139 if (poolname == NULL) 140 goto err; 141 142 strlcpy(poolname, lbh->root, pnamelen + 1); 143 if ((lbh->active_phandle = zpool_open(lbh->lzh, poolname)) == NULL) 144 goto err; 145 free(poolname); 146 poolname = NULL; 147 148 if (zpool_get_prop(lbh->active_phandle, ZPOOL_PROP_BOOTFS, lbh->bootfs, 149 sizeof(lbh->bootfs), NULL, true) != 0) 150 goto err; 151 152 if (zpool_get_prop(lbh->active_phandle, ZPOOL_PROP_ALTROOT, 153 altroot, sizeof(altroot), NULL, true) == 0 && 154 strcmp(altroot, "-") != 0) 155 lbh->altroot_len = strlen(altroot); 156 157 return (lbh); 158 err: 159 if (lbh != NULL) { 160 if (lbh->active_phandle != NULL) 161 zpool_close(lbh->active_phandle); 162 if (lbh->lzh != NULL) 163 libzfs_fini(lbh->lzh); 164 free(lbh); 165 } 166 free(poolname); 167 return (NULL); 168 } 169 170 171 /* 172 * Free memory allocated by libbe_init() 173 */ 174 void 175 libbe_close(libbe_handle_t *lbh) 176 { 177 178 if (lbh->active_phandle != NULL) 179 zpool_close(lbh->active_phandle); 180 libzfs_fini(lbh->lzh); 181 free(lbh); 182 } 183 184 /* 185 * Proxy through to libzfs for the moment. 186 */ 187 void 188 be_nicenum(uint64_t num, char *buf, size_t buflen) 189 { 190 191 zfs_nicenum(num, buf, buflen); 192 } 193 194 static int 195 be_destroy_cb(zfs_handle_t *zfs_hdl, void *data) 196 { 197 char path[BE_MAXPATHLEN]; 198 struct be_destroy_data *bdd; 199 zfs_handle_t *snap; 200 int err; 201 202 bdd = (struct be_destroy_data *)data; 203 if (bdd->snapname == NULL) { 204 err = zfs_iter_children(zfs_hdl, be_destroy_cb, data); 205 if (err != 0) 206 return (err); 207 return (zfs_destroy(zfs_hdl, false)); 208 } 209 /* If we're dealing with snapshots instead, delete that one alone */ 210 err = zfs_iter_filesystems(zfs_hdl, be_destroy_cb, data); 211 if (err != 0) 212 return (err); 213 /* 214 * This part is intentionally glossing over any potential errors, 215 * because there's a lot less potential for errors when we're cleaning 216 * up snapshots rather than a full deep BE. The primary error case 217 * here being if the snapshot doesn't exist in the first place, which 218 * the caller will likely deem insignificant as long as it doesn't 219 * exist after the call. Thus, such a missing snapshot shouldn't jam 220 * up the destruction. 221 */ 222 snprintf(path, sizeof(path), "%s@%s", zfs_get_name(zfs_hdl), 223 bdd->snapname); 224 if (!zfs_dataset_exists(bdd->lbh->lzh, path, ZFS_TYPE_SNAPSHOT)) 225 return (0); 226 snap = zfs_open(bdd->lbh->lzh, path, ZFS_TYPE_SNAPSHOT); 227 if (snap != NULL) 228 zfs_destroy(snap, false); 229 return (0); 230 } 231 232 /* 233 * Destroy the boot environment or snapshot specified by the name 234 * parameter. Options are or'd together with the possible values: 235 * BE_DESTROY_FORCE : forces operation on mounted datasets 236 * BE_DESTROY_ORIGIN: destroy the origin snapshot as well 237 */ 238 int 239 be_destroy(libbe_handle_t *lbh, const char *name, int options) 240 { 241 struct be_destroy_data bdd; 242 char origin[BE_MAXPATHLEN], path[BE_MAXPATHLEN]; 243 zfs_handle_t *fs; 244 char *snapdelim; 245 int err, force, mounted; 246 size_t rootlen; 247 248 bdd.lbh = lbh; 249 bdd.snapname = NULL; 250 force = options & BE_DESTROY_FORCE; 251 *origin = '\0'; 252 253 be_root_concat(lbh, name, path); 254 255 if ((snapdelim = strchr(path, '@')) == NULL) { 256 if (!zfs_dataset_exists(lbh->lzh, path, ZFS_TYPE_FILESYSTEM)) 257 return (set_error(lbh, BE_ERR_NOENT)); 258 259 if (strcmp(path, lbh->rootfs) == 0 || 260 strcmp(path, lbh->bootfs) == 0) 261 return (set_error(lbh, BE_ERR_DESTROYACT)); 262 263 fs = zfs_open(lbh->lzh, path, ZFS_TYPE_FILESYSTEM); 264 if (fs == NULL) 265 return (set_error(lbh, BE_ERR_ZFSOPEN)); 266 267 if ((options & BE_DESTROY_ORIGIN) != 0 && 268 zfs_prop_get(fs, ZFS_PROP_ORIGIN, origin, sizeof(origin), 269 NULL, NULL, 0, 1) != 0) 270 return (set_error(lbh, BE_ERR_NOORIGIN)); 271 272 /* Don't destroy a mounted dataset unless force is specified */ 273 if ((mounted = zfs_is_mounted(fs, NULL)) != 0) { 274 if (force) { 275 zfs_unmount(fs, NULL, 0); 276 } else { 277 free(bdd.snapname); 278 return (set_error(lbh, BE_ERR_DESTROYMNT)); 279 } 280 } 281 } else { 282 if (!zfs_dataset_exists(lbh->lzh, path, ZFS_TYPE_SNAPSHOT)) 283 return (set_error(lbh, BE_ERR_NOENT)); 284 285 bdd.snapname = strdup(snapdelim + 1); 286 if (bdd.snapname == NULL) 287 return (set_error(lbh, BE_ERR_NOMEM)); 288 *snapdelim = '\0'; 289 fs = zfs_open(lbh->lzh, path, ZFS_TYPE_DATASET); 290 if (fs == NULL) { 291 free(bdd.snapname); 292 return (set_error(lbh, BE_ERR_ZFSOPEN)); 293 } 294 } 295 296 err = be_destroy_cb(fs, &bdd); 297 zfs_close(fs); 298 free(bdd.snapname); 299 if (err != 0) { 300 /* Children are still present or the mount is referenced */ 301 if (err == EBUSY) 302 return (set_error(lbh, BE_ERR_DESTROYMNT)); 303 return (set_error(lbh, BE_ERR_UNKNOWN)); 304 } 305 306 if ((options & BE_DESTROY_ORIGIN) == 0) 307 return (0); 308 309 /* The origin can't possibly be shorter than the BE root */ 310 rootlen = strlen(lbh->root); 311 if (*origin == '\0' || strlen(origin) <= rootlen + 1) 312 return (set_error(lbh, BE_ERR_INVORIGIN)); 313 314 /* 315 * We'll be chopping off the BE root and running this back through 316 * be_destroy, so that we properly handle the origin snapshot whether 317 * it be that of a deep BE or not. 318 */ 319 if (strncmp(origin, lbh->root, rootlen) != 0 || origin[rootlen] != '/') 320 return (0); 321 322 return (be_destroy(lbh, origin + rootlen + 1, 323 options & ~BE_DESTROY_ORIGIN)); 324 } 325 326 static void 327 be_setup_snapshot_name(libbe_handle_t *lbh, char *buf, size_t buflen) 328 { 329 time_t rawtime; 330 int len, serial; 331 332 time(&rawtime); 333 len = strlen(buf); 334 len += strftime(buf + len, buflen - len, "@%F-%T", localtime(&rawtime)); 335 /* No room for serial... caller will do its best */ 336 if (buflen - len < 2) 337 return; 338 339 for (serial = 0; serial < BE_SNAP_SERIAL_MAX; ++serial) { 340 snprintf(buf + len, buflen - len, "-%d", serial); 341 if (!zfs_dataset_exists(lbh->lzh, buf, ZFS_TYPE_SNAPSHOT)) 342 return; 343 } 344 } 345 346 int 347 be_snapshot(libbe_handle_t *lbh, const char *source, const char *snap_name, 348 bool recursive, char *result) 349 { 350 char buf[BE_MAXPATHLEN]; 351 int err; 352 353 be_root_concat(lbh, source, buf); 354 355 if ((err = be_exists(lbh, buf)) != 0) 356 return (set_error(lbh, err)); 357 358 if (snap_name != NULL) { 359 if (strlcat(buf, "@", sizeof(buf)) >= sizeof(buf)) 360 return (set_error(lbh, BE_ERR_INVALIDNAME)); 361 362 if (strlcat(buf, snap_name, sizeof(buf)) >= sizeof(buf)) 363 return (set_error(lbh, BE_ERR_INVALIDNAME)); 364 365 if (result != NULL) 366 snprintf(result, BE_MAXPATHLEN, "%s@%s", source, 367 snap_name); 368 } else { 369 be_setup_snapshot_name(lbh, buf, sizeof(buf)); 370 371 if (result != NULL && strlcpy(result, strrchr(buf, '/') + 1, 372 sizeof(buf)) >= sizeof(buf)) 373 return (set_error(lbh, BE_ERR_INVALIDNAME)); 374 } 375 if ((err = zfs_snapshot(lbh->lzh, buf, recursive, NULL)) != 0) { 376 switch (err) { 377 case EZFS_INVALIDNAME: 378 return (set_error(lbh, BE_ERR_INVALIDNAME)); 379 380 default: 381 /* 382 * The other errors that zfs_ioc_snapshot might return 383 * shouldn't happen if we've set things up properly, so 384 * we'll gloss over them and call it UNKNOWN as it will 385 * require further triage. 386 */ 387 if (errno == ENOTSUP) 388 return (set_error(lbh, BE_ERR_NOPOOL)); 389 return (set_error(lbh, BE_ERR_UNKNOWN)); 390 } 391 } 392 393 return (BE_ERR_SUCCESS); 394 } 395 396 397 /* 398 * Create the boot environment specified by the name parameter 399 */ 400 int 401 be_create(libbe_handle_t *lbh, const char *name) 402 { 403 int err; 404 405 err = be_create_from_existing(lbh, name, be_active_path(lbh)); 406 407 return (set_error(lbh, err)); 408 } 409 410 static int 411 be_deep_clone_prop(int prop, void *cb) 412 { 413 int err; 414 struct libbe_dccb *dccb; 415 zprop_source_t src; 416 char pval[BE_MAXPATHLEN]; 417 char source[BE_MAXPATHLEN]; 418 char *val; 419 420 dccb = cb; 421 /* Skip some properties we don't want to touch */ 422 if (prop == ZFS_PROP_CANMOUNT) 423 return (ZPROP_CONT); 424 425 /* Don't copy readonly properties */ 426 if (zfs_prop_readonly(prop)) 427 return (ZPROP_CONT); 428 429 if ((err = zfs_prop_get(dccb->zhp, prop, (char *)&pval, 430 sizeof(pval), &src, (char *)&source, sizeof(source), false))) 431 /* Just continue if we fail to read a property */ 432 return (ZPROP_CONT); 433 434 /* Only copy locally defined properties */ 435 if (src != ZPROP_SRC_LOCAL) 436 return (ZPROP_CONT); 437 438 /* Augment mountpoint with altroot, if needed */ 439 val = pval; 440 if (prop == ZFS_PROP_MOUNTPOINT) 441 val = be_mountpoint_augmented(dccb->lbh, val); 442 443 nvlist_add_string(dccb->props, zfs_prop_to_name(prop), val); 444 445 return (ZPROP_CONT); 446 } 447 448 /* 449 * Return the corresponding boot environment path for a given 450 * dataset path, the constructed path is placed in 'result'. 451 * 452 * example: say our new boot environment name is 'bootenv' and 453 * the dataset path is 'zroot/ROOT/default/data/set'. 454 * 455 * result should produce: 'zroot/ROOT/bootenv/data/set' 456 */ 457 static int 458 be_get_path(struct libbe_deep_clone *ldc, const char *dspath, char *result, int result_size) 459 { 460 char *pos; 461 char *child_dataset; 462 463 /* match the root path for the boot environments */ 464 pos = strstr(dspath, ldc->lbh->root); 465 466 /* no match, different pools? */ 467 if (pos == NULL) 468 return (BE_ERR_BADPATH); 469 470 /* root path of the new boot environment */ 471 snprintf(result, result_size, "%s/%s", ldc->lbh->root, ldc->bename); 472 473 /* gets us to the parent dataset, the +1 consumes a trailing slash */ 474 pos += strlen(ldc->lbh->root) + 1; 475 476 /* skip the parent dataset */ 477 if ((child_dataset = strchr(pos, '/')) != NULL) 478 strlcat(result, child_dataset, result_size); 479 480 return (BE_ERR_SUCCESS); 481 } 482 483 static int 484 be_clone_cb(zfs_handle_t *ds, void *data) 485 { 486 int err; 487 char be_path[BE_MAXPATHLEN]; 488 char snap_path[BE_MAXPATHLEN]; 489 const char *dspath; 490 zfs_handle_t *snap_hdl; 491 nvlist_t *props; 492 struct libbe_deep_clone *ldc; 493 struct libbe_dccb dccb; 494 495 ldc = (struct libbe_deep_clone *)data; 496 dspath = zfs_get_name(ds); 497 498 snprintf(snap_path, sizeof(snap_path), "%s@%s", dspath, ldc->snapname); 499 500 /* construct the boot environment path from the dataset we're cloning */ 501 if (be_get_path(ldc, dspath, be_path, sizeof(be_path)) != BE_ERR_SUCCESS) 502 return (set_error(ldc->lbh, BE_ERR_UNKNOWN)); 503 504 /* the dataset to be created (i.e. the boot environment) already exists */ 505 if (zfs_dataset_exists(ldc->lbh->lzh, be_path, ZFS_TYPE_DATASET)) 506 return (set_error(ldc->lbh, BE_ERR_EXISTS)); 507 508 /* no snapshot found for this dataset, silently skip it */ 509 if (!zfs_dataset_exists(ldc->lbh->lzh, snap_path, ZFS_TYPE_SNAPSHOT)) 510 return (0); 511 512 if ((snap_hdl = 513 zfs_open(ldc->lbh->lzh, snap_path, ZFS_TYPE_SNAPSHOT)) == NULL) 514 return (set_error(ldc->lbh, BE_ERR_ZFSOPEN)); 515 516 nvlist_alloc(&props, NV_UNIQUE_NAME, KM_SLEEP); 517 nvlist_add_string(props, "canmount", "noauto"); 518 519 dccb.lbh = ldc->lbh; 520 dccb.zhp = ds; 521 dccb.props = props; 522 if (zprop_iter(be_deep_clone_prop, &dccb, B_FALSE, B_FALSE, 523 ZFS_TYPE_FILESYSTEM) == ZPROP_INVAL) 524 return (-1); 525 526 if ((err = zfs_clone(snap_hdl, be_path, props)) != 0) 527 return (set_error(ldc->lbh, BE_ERR_ZFSCLONE)); 528 529 nvlist_free(props); 530 zfs_close(snap_hdl); 531 532 if (ldc->depth_limit == -1 || ldc->depth < ldc->depth_limit) { 533 ldc->depth++; 534 err = zfs_iter_filesystems(ds, be_clone_cb, ldc); 535 ldc->depth--; 536 } 537 538 return (set_error(ldc->lbh, err)); 539 } 540 541 /* 542 * Create a boot environment with a given name from a given snapshot. 543 * Snapshots can be in the format 'zroot/ROOT/default@snapshot' or 544 * 'default@snapshot'. In the latter case, 'default@snapshot' will be prepended 545 * with the root path that libbe was initailized with. 546 */ 547 static int 548 be_clone(libbe_handle_t *lbh, const char *bename, const char *snapshot, int depth) 549 { 550 int err; 551 char snap_path[BE_MAXPATHLEN]; 552 char *parentname, *snapname; 553 zfs_handle_t *parent_hdl; 554 struct libbe_deep_clone ldc; 555 556 /* ensure the boot environment name is valid */ 557 if ((err = be_validate_name(lbh, bename)) != 0) 558 return (set_error(lbh, err)); 559 560 /* 561 * prepend the boot environment root path if we're 562 * given a partial snapshot name. 563 */ 564 if ((err = be_root_concat(lbh, snapshot, snap_path)) != 0) 565 return (set_error(lbh, err)); 566 567 /* ensure the snapshot exists */ 568 if ((err = be_validate_snap(lbh, snap_path)) != 0) 569 return (set_error(lbh, err)); 570 571 /* get a copy of the snapshot path so we can disect it */ 572 if ((parentname = strdup(snap_path)) == NULL) 573 return (set_error(lbh, BE_ERR_UNKNOWN)); 574 575 /* split dataset name from snapshot name */ 576 snapname = strchr(parentname, '@'); 577 if (snapname == NULL) { 578 free(parentname); 579 return (set_error(lbh, BE_ERR_UNKNOWN)); 580 } 581 *snapname = '\0'; 582 snapname++; 583 584 /* set-up the boot environment */ 585 ldc.lbh = lbh; 586 ldc.bename = bename; 587 ldc.snapname = snapname; 588 ldc.depth = 0; 589 ldc.depth_limit = depth; 590 591 /* the boot environment will be cloned from this dataset */ 592 parent_hdl = zfs_open(lbh->lzh, parentname, ZFS_TYPE_DATASET); 593 594 /* create the boot environment */ 595 err = be_clone_cb(parent_hdl, &ldc); 596 597 free(parentname); 598 return (set_error(lbh, err)); 599 } 600 601 /* 602 * Create a boot environment from pre-existing snapshot, specifying a depth. 603 */ 604 int be_create_depth(libbe_handle_t *lbh, const char *bename, 605 const char *snap, int depth) 606 { 607 return (be_clone(lbh, bename, snap, depth)); 608 } 609 610 /* 611 * Create the boot environment from pre-existing snapshot 612 */ 613 int 614 be_create_from_existing_snap(libbe_handle_t *lbh, const char *bename, 615 const char *snap) 616 { 617 return (be_clone(lbh, bename, snap, -1)); 618 } 619 620 621 /* 622 * Create a boot environment from an existing boot environment 623 */ 624 int 625 be_create_from_existing(libbe_handle_t *lbh, const char *bename, const char *old) 626 { 627 int err; 628 char snap[BE_MAXPATHLEN]; 629 630 if ((err = be_snapshot(lbh, old, NULL, true, snap)) != 0) 631 return (set_error(lbh, err)); 632 633 err = be_clone(lbh, bename, snap, -1); 634 635 return (set_error(lbh, err)); 636 } 637 638 639 /* 640 * Verifies that a snapshot has a valid name, exists, and has a mountpoint of 641 * '/'. Returns BE_ERR_SUCCESS (0), upon success, or the relevant BE_ERR_* upon 642 * failure. Does not set the internal library error state. 643 */ 644 int 645 be_validate_snap(libbe_handle_t *lbh, const char *snap_name) 646 { 647 648 if (strlen(snap_name) >= BE_MAXPATHLEN) 649 return (BE_ERR_PATHLEN); 650 651 if (!zfs_name_valid(snap_name, ZFS_TYPE_SNAPSHOT)) 652 return (BE_ERR_INVALIDNAME); 653 654 if (!zfs_dataset_exists(lbh->lzh, snap_name, 655 ZFS_TYPE_SNAPSHOT)) 656 return (BE_ERR_NOENT); 657 658 return (BE_ERR_SUCCESS); 659 } 660 661 662 /* 663 * Idempotently appends the name argument to the root boot environment path 664 * and copies the resulting string into the result buffer (which is assumed 665 * to be at least BE_MAXPATHLEN characters long. Returns BE_ERR_SUCCESS upon 666 * success, BE_ERR_PATHLEN if the resulting path is longer than BE_MAXPATHLEN, 667 * or BE_ERR_INVALIDNAME if the name is a path that does not begin with 668 * zfs_be_root. Does not set internal library error state. 669 */ 670 int 671 be_root_concat(libbe_handle_t *lbh, const char *name, char *result) 672 { 673 size_t name_len, root_len; 674 675 name_len = strlen(name); 676 root_len = strlen(lbh->root); 677 678 /* Act idempotently; return be name if it is already a full path */ 679 if (strrchr(name, '/') != NULL) { 680 if (strstr(name, lbh->root) != name) 681 return (BE_ERR_INVALIDNAME); 682 683 if (name_len >= BE_MAXPATHLEN) 684 return (BE_ERR_PATHLEN); 685 686 strlcpy(result, name, BE_MAXPATHLEN); 687 return (BE_ERR_SUCCESS); 688 } else if (name_len + root_len + 1 < BE_MAXPATHLEN) { 689 snprintf(result, BE_MAXPATHLEN, "%s/%s", lbh->root, 690 name); 691 return (BE_ERR_SUCCESS); 692 } 693 694 return (BE_ERR_PATHLEN); 695 } 696 697 698 /* 699 * Verifies the validity of a boot environment name (A-Za-z0-9-_.). Returns 700 * BE_ERR_SUCCESS (0) if name is valid, otherwise returns BE_ERR_INVALIDNAME 701 * or BE_ERR_PATHLEN. 702 * Does not set internal library error state. 703 */ 704 int 705 be_validate_name(libbe_handle_t *lbh, const char *name) 706 { 707 708 /* 709 * Impose the additional restriction that the entire dataset name must 710 * not exceed the maximum length of a dataset, i.e. MAXNAMELEN. 711 */ 712 if (strlen(lbh->root) + 1 + strlen(name) > MAXNAMELEN) 713 return (BE_ERR_PATHLEN); 714 715 if (!zfs_name_valid(name, ZFS_TYPE_DATASET)) 716 return (BE_ERR_INVALIDNAME); 717 718 return (BE_ERR_SUCCESS); 719 } 720 721 722 /* 723 * usage 724 */ 725 int 726 be_rename(libbe_handle_t *lbh, const char *old, const char *new) 727 { 728 char full_old[BE_MAXPATHLEN]; 729 char full_new[BE_MAXPATHLEN]; 730 zfs_handle_t *zfs_hdl; 731 int err; 732 733 /* 734 * be_validate_name is documented not to set error state, so we should 735 * do so here. 736 */ 737 if ((err = be_validate_name(lbh, new)) != 0) 738 return (set_error(lbh, err)); 739 if ((err = be_root_concat(lbh, old, full_old)) != 0) 740 return (set_error(lbh, err)); 741 if ((err = be_root_concat(lbh, new, full_new)) != 0) 742 return (set_error(lbh, err)); 743 744 if (!zfs_dataset_exists(lbh->lzh, full_old, ZFS_TYPE_DATASET)) 745 return (set_error(lbh, BE_ERR_NOENT)); 746 747 if (zfs_dataset_exists(lbh->lzh, full_new, ZFS_TYPE_DATASET)) 748 return (set_error(lbh, BE_ERR_EXISTS)); 749 750 if ((zfs_hdl = zfs_open(lbh->lzh, full_old, 751 ZFS_TYPE_FILESYSTEM)) == NULL) 752 return (set_error(lbh, BE_ERR_ZFSOPEN)); 753 754 /* recurse, nounmount, forceunmount */ 755 struct renameflags flags = { 756 .nounmount = 1, 757 }; 758 759 err = zfs_rename(zfs_hdl, NULL, full_new, flags); 760 761 zfs_close(zfs_hdl); 762 if (err != 0) 763 return (set_error(lbh, BE_ERR_UNKNOWN)); 764 return (0); 765 } 766 767 768 int 769 be_export(libbe_handle_t *lbh, const char *bootenv, int fd) 770 { 771 char snap_name[BE_MAXPATHLEN]; 772 char buf[BE_MAXPATHLEN]; 773 zfs_handle_t *zfs; 774 int err; 775 776 if ((err = be_snapshot(lbh, bootenv, NULL, true, snap_name)) != 0) 777 /* Use the error set by be_snapshot */ 778 return (err); 779 780 be_root_concat(lbh, snap_name, buf); 781 782 if ((zfs = zfs_open(lbh->lzh, buf, ZFS_TYPE_DATASET)) == NULL) 783 return (set_error(lbh, BE_ERR_ZFSOPEN)); 784 785 err = zfs_send_one(zfs, NULL, fd, 0); 786 zfs_close(zfs); 787 788 return (err); 789 } 790 791 792 int 793 be_import(libbe_handle_t *lbh, const char *bootenv, int fd) 794 { 795 char buf[BE_MAXPATHLEN]; 796 nvlist_t *props; 797 zfs_handle_t *zfs; 798 recvflags_t flags = { .nomount = 1 }; 799 int err; 800 801 be_root_concat(lbh, bootenv, buf); 802 803 if ((err = zfs_receive(lbh->lzh, buf, NULL, &flags, fd, NULL)) != 0) { 804 switch (err) { 805 case EINVAL: 806 return (set_error(lbh, BE_ERR_NOORIGIN)); 807 case ENOENT: 808 return (set_error(lbh, BE_ERR_NOENT)); 809 case EIO: 810 return (set_error(lbh, BE_ERR_IO)); 811 default: 812 return (set_error(lbh, BE_ERR_UNKNOWN)); 813 } 814 } 815 816 if ((zfs = zfs_open(lbh->lzh, buf, ZFS_TYPE_FILESYSTEM)) == NULL) 817 return (set_error(lbh, BE_ERR_ZFSOPEN)); 818 819 nvlist_alloc(&props, NV_UNIQUE_NAME, KM_SLEEP); 820 nvlist_add_string(props, "canmount", "noauto"); 821 nvlist_add_string(props, "mountpoint", "/"); 822 823 err = zfs_prop_set_list(zfs, props); 824 nvlist_free(props); 825 826 zfs_close(zfs); 827 828 if (err != 0) 829 return (set_error(lbh, BE_ERR_UNKNOWN)); 830 831 return (0); 832 } 833 834 #if SOON 835 static int 836 be_create_child_noent(libbe_handle_t *lbh, const char *active, 837 const char *child_path) 838 { 839 nvlist_t *props; 840 zfs_handle_t *zfs; 841 int err; 842 843 nvlist_alloc(&props, NV_UNIQUE_NAME, KM_SLEEP); 844 nvlist_add_string(props, "canmount", "noauto"); 845 nvlist_add_string(props, "mountpoint", child_path); 846 847 /* Create */ 848 if ((err = zfs_create(lbh->lzh, active, ZFS_TYPE_DATASET, 849 props)) != 0) { 850 switch (err) { 851 case EZFS_EXISTS: 852 return (set_error(lbh, BE_ERR_EXISTS)); 853 case EZFS_NOENT: 854 return (set_error(lbh, BE_ERR_NOENT)); 855 case EZFS_BADTYPE: 856 case EZFS_BADVERSION: 857 return (set_error(lbh, BE_ERR_NOPOOL)); 858 case EZFS_BADPROP: 859 default: 860 /* We set something up wrong, probably... */ 861 return (set_error(lbh, BE_ERR_UNKNOWN)); 862 } 863 } 864 nvlist_free(props); 865 866 if ((zfs = zfs_open(lbh->lzh, active, ZFS_TYPE_DATASET)) == NULL) 867 return (set_error(lbh, BE_ERR_ZFSOPEN)); 868 869 /* Set props */ 870 if ((err = zfs_prop_set(zfs, "canmount", "noauto")) != 0) { 871 zfs_close(zfs); 872 /* 873 * Similar to other cases, this shouldn't fail unless we've 874 * done something wrong. This is a new dataset that shouldn't 875 * have been mounted anywhere between creation and now. 876 */ 877 if (err == EZFS_NOMEM) 878 return (set_error(lbh, BE_ERR_NOMEM)); 879 return (set_error(lbh, BE_ERR_UNKNOWN)); 880 } 881 zfs_close(zfs); 882 return (BE_ERR_SUCCESS); 883 } 884 885 static int 886 be_create_child_cloned(libbe_handle_t *lbh, const char *active) 887 { 888 char buf[BE_MAXPATHLEN], tmp[BE_MAXPATHLEN];; 889 zfs_handle_t *zfs; 890 int err; 891 892 /* XXX TODO ? */ 893 894 /* 895 * Establish if the existing path is a zfs dataset or just 896 * the subdirectory of one 897 */ 898 strlcpy(tmp, "tmp/be_snap.XXXXX", sizeof(tmp)); 899 if (mktemp(tmp) == NULL) 900 return (set_error(lbh, BE_ERR_UNKNOWN)); 901 902 be_root_concat(lbh, tmp, buf); 903 printf("Here %s?\n", buf); 904 if ((err = zfs_snapshot(lbh->lzh, buf, false, NULL)) != 0) { 905 switch (err) { 906 case EZFS_INVALIDNAME: 907 return (set_error(lbh, BE_ERR_INVALIDNAME)); 908 909 default: 910 /* 911 * The other errors that zfs_ioc_snapshot might return 912 * shouldn't happen if we've set things up properly, so 913 * we'll gloss over them and call it UNKNOWN as it will 914 * require further triage. 915 */ 916 if (errno == ENOTSUP) 917 return (set_error(lbh, BE_ERR_NOPOOL)); 918 return (set_error(lbh, BE_ERR_UNKNOWN)); 919 } 920 } 921 922 /* Clone */ 923 if ((zfs = zfs_open(lbh->lzh, buf, ZFS_TYPE_SNAPSHOT)) == NULL) 924 return (BE_ERR_ZFSOPEN); 925 926 if ((err = zfs_clone(zfs, active, NULL)) != 0) 927 /* XXX TODO correct error */ 928 return (set_error(lbh, BE_ERR_UNKNOWN)); 929 930 /* set props */ 931 zfs_close(zfs); 932 return (BE_ERR_SUCCESS); 933 } 934 935 int 936 be_add_child(libbe_handle_t *lbh, const char *child_path, bool cp_if_exists) 937 { 938 struct stat sb; 939 char active[BE_MAXPATHLEN], buf[BE_MAXPATHLEN]; 940 nvlist_t *props; 941 const char *s; 942 943 /* Require absolute paths */ 944 if (*child_path != '/') 945 return (set_error(lbh, BE_ERR_BADPATH)); 946 947 strlcpy(active, be_active_path(lbh), BE_MAXPATHLEN); 948 strcpy(buf, active); 949 950 /* Create non-mountable parent dataset(s) */ 951 s = child_path; 952 for (char *p; (p = strchr(s+1, '/')) != NULL; s = p) { 953 size_t len = p - s; 954 strncat(buf, s, len); 955 956 nvlist_alloc(&props, NV_UNIQUE_NAME, KM_SLEEP); 957 nvlist_add_string(props, "canmount", "off"); 958 nvlist_add_string(props, "mountpoint", "none"); 959 zfs_create(lbh->lzh, buf, ZFS_TYPE_DATASET, props); 960 nvlist_free(props); 961 } 962 963 /* Path does not exist as a descendent of / yet */ 964 if (strlcat(active, child_path, BE_MAXPATHLEN) >= BE_MAXPATHLEN) 965 return (set_error(lbh, BE_ERR_PATHLEN)); 966 967 if (stat(child_path, &sb) != 0) { 968 /* Verify that error is ENOENT */ 969 if (errno != ENOENT) 970 return (set_error(lbh, BE_ERR_UNKNOWN)); 971 return (be_create_child_noent(lbh, active, child_path)); 972 } else if (cp_if_exists) 973 /* Path is already a descendent of / and should be copied */ 974 return (be_create_child_cloned(lbh, active)); 975 return (set_error(lbh, BE_ERR_EXISTS)); 976 } 977 #endif /* SOON */ 978 979 static int 980 be_set_nextboot(libbe_handle_t *lbh, nvlist_t *config, uint64_t pool_guid, 981 const char *zfsdev) 982 { 983 nvlist_t **child; 984 uint64_t vdev_guid; 985 int c, children; 986 987 if (nvlist_lookup_nvlist_array(config, ZPOOL_CONFIG_CHILDREN, &child, 988 &children) == 0) { 989 for (c = 0; c < children; ++c) 990 if (be_set_nextboot(lbh, child[c], pool_guid, zfsdev) != 0) 991 return (1); 992 return (0); 993 } 994 995 if (nvlist_lookup_uint64(config, ZPOOL_CONFIG_GUID, 996 &vdev_guid) != 0) { 997 return (1); 998 } 999 1000 if (zpool_nextboot(lbh->lzh, pool_guid, vdev_guid, zfsdev) != 0) { 1001 perror("ZFS_IOC_NEXTBOOT failed"); 1002 return (1); 1003 } 1004 1005 return (0); 1006 } 1007 1008 /* 1009 * Deactivate old BE dataset; currently just sets canmount=noauto 1010 */ 1011 static int 1012 be_deactivate(libbe_handle_t *lbh, const char *ds) 1013 { 1014 zfs_handle_t *zfs; 1015 1016 if ((zfs = zfs_open(lbh->lzh, ds, ZFS_TYPE_DATASET)) == NULL) 1017 return (1); 1018 if (zfs_prop_set(zfs, "canmount", "noauto") != 0) 1019 return (1); 1020 zfs_close(zfs); 1021 return (0); 1022 } 1023 1024 int 1025 be_activate(libbe_handle_t *lbh, const char *bootenv, bool temporary) 1026 { 1027 char be_path[BE_MAXPATHLEN]; 1028 char buf[BE_MAXPATHLEN]; 1029 nvlist_t *config, *dsprops, *vdevs; 1030 char *origin; 1031 uint64_t pool_guid; 1032 zfs_handle_t *zhp; 1033 int err; 1034 1035 be_root_concat(lbh, bootenv, be_path); 1036 1037 /* Note: be_exists fails if mountpoint is not / */ 1038 if ((err = be_exists(lbh, be_path)) != 0) 1039 return (set_error(lbh, err)); 1040 1041 if (temporary) { 1042 config = zpool_get_config(lbh->active_phandle, NULL); 1043 if (config == NULL) 1044 /* config should be fetchable... */ 1045 return (set_error(lbh, BE_ERR_UNKNOWN)); 1046 1047 if (nvlist_lookup_uint64(config, ZPOOL_CONFIG_POOL_GUID, 1048 &pool_guid) != 0) 1049 /* Similarly, it shouldn't be possible */ 1050 return (set_error(lbh, BE_ERR_UNKNOWN)); 1051 1052 /* Expected format according to zfsbootcfg(8) man */ 1053 snprintf(buf, sizeof(buf), "zfs:%s:", be_path); 1054 1055 /* We have no config tree */ 1056 if (nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE, 1057 &vdevs) != 0) 1058 return (set_error(lbh, BE_ERR_NOPOOL)); 1059 1060 return (be_set_nextboot(lbh, vdevs, pool_guid, buf)); 1061 } else { 1062 if (be_deactivate(lbh, lbh->bootfs) != 0) 1063 return (-1); 1064 1065 /* Obtain bootenv zpool */ 1066 err = zpool_set_prop(lbh->active_phandle, "bootfs", be_path); 1067 if (err) 1068 return (-1); 1069 1070 zhp = zfs_open(lbh->lzh, be_path, ZFS_TYPE_FILESYSTEM); 1071 if (zhp == NULL) 1072 return (-1); 1073 1074 if (be_prop_list_alloc(&dsprops) != 0) 1075 return (-1); 1076 1077 if (be_get_dataset_props(lbh, be_path, dsprops) != 0) { 1078 nvlist_free(dsprops); 1079 return (-1); 1080 } 1081 1082 if (nvlist_lookup_string(dsprops, "origin", &origin) == 0) 1083 err = zfs_promote(zhp); 1084 nvlist_free(dsprops); 1085 1086 zfs_close(zhp); 1087 1088 if (err) 1089 return (-1); 1090 } 1091 1092 return (BE_ERR_SUCCESS); 1093 } 1094