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/stat.h> 33 #include <sys/types.h> 34 35 #include <ctype.h> 36 #include <kenv.h> 37 #include <libgen.h> 38 #include <libzfs_core.h> 39 #include <stdio.h> 40 #include <stdlib.h> 41 #include <time.h> 42 #include <unistd.h> 43 44 #include "be.h" 45 #include "be_impl.h" 46 47 #if SOON 48 static int be_create_child_noent(libbe_handle_t *lbh, const char *active, 49 const char *child_path); 50 static int be_create_child_cloned(libbe_handle_t *lbh, const char *active); 51 #endif 52 53 /* 54 * Iterator function for locating the rootfs amongst the children of the 55 * zfs_be_root set by loader(8). data is expected to be a libbe_handle_t *. 56 */ 57 static int 58 be_locate_rootfs(zfs_handle_t *chkds, void *data) 59 { 60 libbe_handle_t *lbh; 61 char *mntpoint; 62 63 lbh = (libbe_handle_t *)data; 64 if (lbh == NULL) 65 return (1); 66 67 if (zfs_is_mounted(chkds, &mntpoint) && strcmp(mntpoint, "/") == 0) { 68 strncpy(lbh->rootfs, zfs_get_name(chkds), BE_MAXPATHLEN); 69 return (1); 70 } 71 72 return (0); 73 } 74 75 /* 76 * Initializes the libbe context to operate in the root boot environment 77 * dataset, for example, zroot/ROOT. 78 */ 79 libbe_handle_t * 80 libbe_init(void) 81 { 82 struct stat sb; 83 dev_t root_dev, boot_dev; 84 libbe_handle_t *lbh; 85 zfs_handle_t *rootds; 86 char *poolname, *pos; 87 int pnamelen; 88 89 lbh = NULL; 90 poolname = pos = NULL; 91 pnamelen = 0; 92 rootds = NULL; 93 94 /* Verify that /boot and / are mounted on the same filesystem */ 95 /* TODO: use errno here?? */ 96 if (stat("/", &sb) != 0) 97 goto err; 98 99 root_dev = sb.st_dev; 100 101 if (stat("/boot", &sb) != 0) 102 goto err; 103 104 boot_dev = sb.st_dev; 105 106 if (root_dev != boot_dev) { 107 fprintf(stderr, "/ and /boot not on same device, quitting\n"); 108 goto err; 109 } 110 111 if ((lbh = calloc(1, sizeof(libbe_handle_t))) == NULL) 112 goto err; 113 114 if ((lbh->lzh = libzfs_init()) == NULL) 115 goto err; 116 117 /* Obtain path to boot environment root */ 118 if ((kenv(KENV_GET, "zfs_be_root", lbh->root, BE_MAXPATHLEN)) == -1) 119 goto err; 120 121 /* Remove leading 'zfs:' if present, otherwise use value as-is */ 122 if (strcmp(lbh->root, "zfs:") == 0) 123 strncpy(lbh->root, strchr(lbh->root, ':') + sizeof(char), 124 BE_MAXPATHLEN); 125 126 if ((pos = strchr(lbh->root, '/')) == NULL) 127 goto err; 128 129 pnamelen = pos - lbh->root; 130 poolname = malloc(pnamelen + 1); 131 if (poolname == NULL) 132 goto err; 133 134 strncpy(poolname, lbh->root, pnamelen); 135 poolname[pnamelen] = '\0'; 136 if ((lbh->active_phandle = zpool_open(lbh->lzh, poolname)) == NULL) 137 goto err; 138 139 if (zpool_get_prop(lbh->active_phandle, ZPOOL_PROP_BOOTFS, lbh->bootfs, 140 BE_MAXPATHLEN, NULL, true) != 0) 141 goto err; 142 143 /* Obtain path to boot environment rootfs (currently booted) */ 144 /* XXX Get dataset mounted at / by kenv/GUID from mountroot? */ 145 if ((rootds = zfs_open(lbh->lzh, lbh->root, ZFS_TYPE_DATASET)) == NULL) 146 goto err; 147 148 zfs_iter_filesystems(rootds, be_locate_rootfs, lbh); 149 zfs_close(rootds); 150 rootds = NULL; 151 if (*lbh->rootfs == '\0') 152 goto err; 153 154 return (lbh); 155 err: 156 if (lbh != NULL) { 157 if (lbh->active_phandle != NULL) 158 zpool_close(lbh->active_phandle); 159 if (lbh->lzh != NULL) 160 libzfs_fini(lbh->lzh); 161 free(lbh); 162 } 163 if (rootds != NULL) 164 zfs_close(rootds); 165 free(poolname); 166 return (NULL); 167 } 168 169 170 /* 171 * Free memory allocated by libbe_init() 172 */ 173 void 174 libbe_close(libbe_handle_t *lbh) 175 { 176 177 if (lbh->active_phandle != NULL) 178 zpool_close(lbh->active_phandle); 179 libzfs_fini(lbh->lzh); 180 free(lbh); 181 } 182 183 /* 184 * Proxy through to libzfs for the moment. 185 */ 186 void 187 be_nicenum(uint64_t num, char *buf, size_t buflen) 188 { 189 190 zfs_nicenum(num, buf, buflen); 191 } 192 193 static int 194 be_destroy_cb(zfs_handle_t *zfs_hdl, void *data) 195 { 196 int err; 197 198 if ((err = zfs_iter_children(zfs_hdl, be_destroy_cb, data)) != 0) 199 return (err); 200 if ((err = zfs_destroy(zfs_hdl, false)) != 0) 201 return (err); 202 return (0); 203 } 204 205 /* 206 * Destroy the boot environment or snapshot specified by the name 207 * parameter. Options are or'd together with the possible values: 208 * BE_DESTROY_FORCE : forces operation on mounted datasets 209 */ 210 int 211 be_destroy(libbe_handle_t *lbh, const char *name, int options) 212 { 213 zfs_handle_t *fs; 214 char path[BE_MAXPATHLEN]; 215 char *p; 216 int err, force, mounted; 217 218 p = path; 219 force = options & BE_DESTROY_FORCE; 220 err = BE_ERR_SUCCESS; 221 222 be_root_concat(lbh, name, path); 223 224 if (strchr(name, '@') == NULL) { 225 if (!zfs_dataset_exists(lbh->lzh, path, ZFS_TYPE_FILESYSTEM)) 226 return (set_error(lbh, BE_ERR_NOENT)); 227 228 if (strcmp(path, lbh->rootfs) == 0) 229 return (set_error(lbh, BE_ERR_DESTROYACT)); 230 231 fs = zfs_open(lbh->lzh, p, ZFS_TYPE_FILESYSTEM); 232 } else { 233 234 if (!zfs_dataset_exists(lbh->lzh, path, ZFS_TYPE_SNAPSHOT)) 235 return (set_error(lbh, BE_ERR_NOENT)); 236 237 fs = zfs_open(lbh->lzh, p, ZFS_TYPE_SNAPSHOT); 238 } 239 240 if (fs == NULL) 241 return (set_error(lbh, BE_ERR_ZFSOPEN)); 242 243 /* Check if mounted, unmount if force is specified */ 244 if ((mounted = zfs_is_mounted(fs, NULL)) != 0) { 245 if (force) 246 zfs_unmount(fs, NULL, 0); 247 else 248 return (set_error(lbh, BE_ERR_DESTROYMNT)); 249 } 250 251 if ((err = be_destroy_cb(fs, NULL)) != 0) { 252 /* Children are still present or the mount is referenced */ 253 if (err == EBUSY) 254 return (set_error(lbh, BE_ERR_DESTROYMNT)); 255 return (set_error(lbh, BE_ERR_UNKNOWN)); 256 } 257 258 return (0); 259 } 260 261 262 int 263 be_snapshot(libbe_handle_t *lbh, const char *source, const char *snap_name, 264 bool recursive, char *result) 265 { 266 char buf[BE_MAXPATHLEN]; 267 time_t rawtime; 268 int len, err; 269 270 be_root_concat(lbh, source, buf); 271 272 if (!be_exists(lbh, buf)) 273 return (BE_ERR_NOENT); 274 275 if (snap_name != NULL) { 276 strcat(buf, "@"); 277 strcat(buf, snap_name); 278 if (result != NULL) 279 snprintf(result, BE_MAXPATHLEN, "%s@%s", source, 280 snap_name); 281 } else { 282 time(&rawtime); 283 len = strlen(buf); 284 strftime(buf + len, BE_MAXPATHLEN - len, 285 "@%F-%T", localtime(&rawtime)); 286 if (result != NULL) 287 strcpy(result, strrchr(buf, '/') + 1); 288 } 289 290 if ((err = zfs_snapshot(lbh->lzh, buf, recursive, NULL)) != 0) { 291 switch (err) { 292 case EZFS_INVALIDNAME: 293 return (set_error(lbh, BE_ERR_INVALIDNAME)); 294 295 default: 296 /* 297 * The other errors that zfs_ioc_snapshot might return 298 * shouldn't happen if we've set things up properly, so 299 * we'll gloss over them and call it UNKNOWN as it will 300 * require further triage. 301 */ 302 if (errno == ENOTSUP) 303 return (set_error(lbh, BE_ERR_NOPOOL)); 304 return (set_error(lbh, BE_ERR_UNKNOWN)); 305 } 306 } 307 308 return (BE_ERR_SUCCESS); 309 } 310 311 312 /* 313 * Create the boot environment specified by the name parameter 314 */ 315 int 316 be_create(libbe_handle_t *lbh, const char *name) 317 { 318 int err; 319 320 err = be_create_from_existing(lbh, name, be_active_path(lbh)); 321 322 return (set_error(lbh, err)); 323 } 324 325 326 static int 327 be_deep_clone_prop(int prop, void *cb) 328 { 329 int err; 330 struct libbe_dccb *dccb; 331 zprop_source_t src; 332 char pval[BE_MAXPATHLEN]; 333 char source[BE_MAXPATHLEN]; 334 335 dccb = cb; 336 /* Skip some properties we don't want to touch */ 337 if (prop == ZFS_PROP_CANMOUNT) 338 return (ZPROP_CONT); 339 340 /* Don't copy readonly properties */ 341 if (zfs_prop_readonly(prop)) 342 return (ZPROP_CONT); 343 344 if ((err = zfs_prop_get(dccb->zhp, prop, (char *)&pval, 345 sizeof(pval), &src, (char *)&source, sizeof(source), false))) 346 /* Just continue if we fail to read a property */ 347 return (ZPROP_CONT); 348 349 /* Only copy locally defined properties */ 350 if (src != ZPROP_SRC_LOCAL) 351 return (ZPROP_CONT); 352 353 nvlist_add_string(dccb->props, zfs_prop_to_name(prop), (char *)pval); 354 355 return (ZPROP_CONT); 356 } 357 358 static int 359 be_deep_clone(zfs_handle_t *ds, void *data) 360 { 361 int err; 362 char be_path[BE_MAXPATHLEN]; 363 char snap_path[BE_MAXPATHLEN]; 364 const char *dspath; 365 char *dsname; 366 zfs_handle_t *snap_hdl; 367 nvlist_t *props; 368 struct libbe_deep_clone *isdc, sdc; 369 struct libbe_dccb dccb; 370 371 isdc = (struct libbe_deep_clone *)data; 372 dspath = zfs_get_name(ds); 373 if ((dsname = strrchr(dspath, '/')) == NULL) 374 return (BE_ERR_UNKNOWN); 375 dsname++; 376 377 if (isdc->bename == NULL) 378 snprintf(be_path, sizeof(be_path), "%s/%s", isdc->be_root, dsname); 379 else 380 snprintf(be_path, sizeof(be_path), "%s/%s", isdc->be_root, isdc->bename); 381 382 snprintf(snap_path, sizeof(snap_path), "%s@%s", dspath, isdc->snapname); 383 384 if (zfs_dataset_exists(isdc->lbh->lzh, be_path, ZFS_TYPE_DATASET)) 385 return (set_error(isdc->lbh, BE_ERR_EXISTS)); 386 387 if ((snap_hdl = 388 zfs_open(isdc->lbh->lzh, snap_path, ZFS_TYPE_SNAPSHOT)) == NULL) 389 return (set_error(isdc->lbh, BE_ERR_ZFSOPEN)); 390 391 nvlist_alloc(&props, NV_UNIQUE_NAME, KM_SLEEP); 392 nvlist_add_string(props, "canmount", "noauto"); 393 394 dccb.zhp = ds; 395 dccb.props = props; 396 if (zprop_iter(be_deep_clone_prop, &dccb, B_FALSE, B_FALSE, 397 ZFS_TYPE_FILESYSTEM) == ZPROP_INVAL) 398 return (-1); 399 400 if ((err = zfs_clone(snap_hdl, be_path, props)) != 0) { 401 switch (err) { 402 case EZFS_SUCCESS: 403 err = BE_ERR_SUCCESS; 404 break; 405 default: 406 err = BE_ERR_ZFSCLONE; 407 break; 408 } 409 } 410 411 nvlist_free(props); 412 zfs_close(snap_hdl); 413 414 sdc.lbh = isdc->lbh; 415 sdc.bename = NULL; 416 sdc.snapname = isdc->snapname; 417 sdc.be_root = (char *)&be_path; 418 419 err = zfs_iter_filesystems(ds, be_deep_clone, &sdc); 420 421 return (err); 422 } 423 424 /* 425 * Create the boot environment from pre-existing snapshot 426 */ 427 int 428 be_create_from_existing_snap(libbe_handle_t *lbh, const char *name, 429 const char *snap) 430 { 431 int err; 432 char be_path[BE_MAXPATHLEN]; 433 char snap_path[BE_MAXPATHLEN]; 434 const char *bename; 435 char *parentname, *snapname; 436 zfs_handle_t *parent_hdl; 437 struct libbe_deep_clone sdc; 438 439 if ((err = be_validate_name(lbh, name)) != 0) 440 return (set_error(lbh, err)); 441 if ((err = be_root_concat(lbh, snap, snap_path)) != 0) 442 return (set_error(lbh, err)); 443 if ((err = be_validate_snap(lbh, snap_path)) != 0) 444 return (set_error(lbh, err)); 445 446 if ((err = be_root_concat(lbh, name, be_path)) != 0) 447 return (set_error(lbh, err)); 448 449 if ((bename = strrchr(name, '/')) == NULL) 450 bename = name; 451 else 452 bename++; 453 454 if ((parentname = strdup(snap_path)) == NULL) { 455 err = BE_ERR_UNKNOWN; 456 return (set_error(lbh, err)); 457 } 458 snapname = strchr(parentname, '@'); 459 if (snapname == NULL) { 460 err = BE_ERR_UNKNOWN; 461 return (set_error(lbh, err)); 462 } 463 *snapname = '\0'; 464 snapname++; 465 466 sdc.lbh = lbh; 467 sdc.bename = bename; 468 sdc.snapname = snapname; 469 sdc.be_root = lbh->root; 470 471 parent_hdl = zfs_open(lbh->lzh, parentname, ZFS_TYPE_DATASET); 472 err = be_deep_clone(parent_hdl, &sdc); 473 474 return (set_error(lbh, err)); 475 } 476 477 478 /* 479 * Create a boot environment from an existing boot environment 480 */ 481 int 482 be_create_from_existing(libbe_handle_t *lbh, const char *name, const char *old) 483 { 484 int err; 485 char buf[BE_MAXPATHLEN]; 486 487 if ((err = be_snapshot(lbh, old, NULL, true, (char *)&buf))) 488 return (set_error(lbh, err)); 489 490 err = be_create_from_existing_snap(lbh, name, (char *)buf); 491 492 return (set_error(lbh, err)); 493 } 494 495 496 /* 497 * Verifies that a snapshot has a valid name, exists, and has a mountpoint of 498 * '/'. Returns BE_ERR_SUCCESS (0), upon success, or the relevant BE_ERR_* upon 499 * failure. Does not set the internal library error state. 500 */ 501 int 502 be_validate_snap(libbe_handle_t *lbh, const char *snap_name) 503 { 504 zfs_handle_t *zfs_hdl; 505 char buf[BE_MAXPATHLEN]; 506 char *delim_pos; 507 int err = BE_ERR_SUCCESS; 508 509 if (strlen(snap_name) >= BE_MAXPATHLEN) 510 return (BE_ERR_PATHLEN); 511 512 if (!zfs_dataset_exists(lbh->lzh, snap_name, 513 ZFS_TYPE_SNAPSHOT)) 514 return (BE_ERR_NOENT); 515 516 strncpy(buf, snap_name, BE_MAXPATHLEN); 517 518 /* Find the base filesystem of the snapshot */ 519 if ((delim_pos = strchr(buf, '@')) == NULL) 520 return (BE_ERR_INVALIDNAME); 521 *delim_pos = '\0'; 522 523 if ((zfs_hdl = 524 zfs_open(lbh->lzh, buf, ZFS_TYPE_DATASET)) == NULL) 525 return (BE_ERR_NOORIGIN); 526 527 if ((err = zfs_prop_get(zfs_hdl, ZFS_PROP_MOUNTPOINT, buf, BE_MAXPATHLEN, 528 NULL, NULL, 0, 1)) != 0) 529 err = BE_ERR_INVORIGIN; 530 531 if ((err != 0) && (strncmp(buf, "/", BE_MAXPATHLEN) != 0)) 532 err = BE_ERR_INVORIGIN; 533 534 zfs_close(zfs_hdl); 535 536 return (err); 537 } 538 539 540 /* 541 * Idempotently appends the name argument to the root boot environment path 542 * and copies the resulting string into the result buffer (which is assumed 543 * to be at least BE_MAXPATHLEN characters long. Returns BE_ERR_SUCCESS upon 544 * success, BE_ERR_PATHLEN if the resulting path is longer than BE_MAXPATHLEN, 545 * or BE_ERR_INVALIDNAME if the name is a path that does not begin with 546 * zfs_be_root. Does not set internal library error state. 547 */ 548 int 549 be_root_concat(libbe_handle_t *lbh, const char *name, char *result) 550 { 551 size_t name_len, root_len; 552 553 name_len = strlen(name); 554 root_len = strlen(lbh->root); 555 556 /* Act idempotently; return be name if it is already a full path */ 557 if (strrchr(name, '/') != NULL) { 558 if (strstr(name, lbh->root) != name) 559 return (BE_ERR_INVALIDNAME); 560 561 if (name_len >= BE_MAXPATHLEN) 562 return (BE_ERR_PATHLEN); 563 564 strncpy(result, name, BE_MAXPATHLEN); 565 return (BE_ERR_SUCCESS); 566 } else if (name_len + root_len + 1 < BE_MAXPATHLEN) { 567 snprintf(result, BE_MAXPATHLEN, "%s/%s", lbh->root, 568 name); 569 return (BE_ERR_SUCCESS); 570 } 571 572 return (BE_ERR_PATHLEN); 573 } 574 575 576 /* 577 * Verifies the validity of a boot environment name (A-Za-z0-9-_.). Returns 578 * BE_ERR_SUCCESS (0) if name is valid, otherwise returns BE_ERR_INVALIDNAME. 579 * Does not set internal library error state. 580 */ 581 int 582 be_validate_name(libbe_handle_t *lbh __unused, const char *name) 583 { 584 for (int i = 0; *name; i++) { 585 char c = *(name++); 586 if (isalnum(c) || (c == '-') || (c == '_') || (c == '.')) 587 continue; 588 return (BE_ERR_INVALIDNAME); 589 } 590 591 return (BE_ERR_SUCCESS); 592 } 593 594 595 /* 596 * usage 597 */ 598 int 599 be_rename(libbe_handle_t *lbh, const char *old, const char *new) 600 { 601 char full_old[BE_MAXPATHLEN]; 602 char full_new[BE_MAXPATHLEN]; 603 zfs_handle_t *zfs_hdl; 604 int err; 605 606 if ((err = be_root_concat(lbh, old, full_old)) != 0) 607 return (set_error(lbh, err)); 608 if ((err = be_root_concat(lbh, new, full_new)) != 0) 609 return (set_error(lbh, err)); 610 611 if ((err = be_validate_name(lbh, new)) != 0) 612 return (err); 613 614 /* Check if old is active BE */ 615 if (strcmp(full_old, be_active_path(lbh)) == 0) 616 return (set_error(lbh, BE_ERR_MOUNTED)); 617 618 if (!zfs_dataset_exists(lbh->lzh, full_old, ZFS_TYPE_DATASET)) 619 return (set_error(lbh, BE_ERR_NOENT)); 620 621 if (zfs_dataset_exists(lbh->lzh, full_new, ZFS_TYPE_DATASET)) 622 return (set_error(lbh, BE_ERR_EXISTS)); 623 624 if ((zfs_hdl = zfs_open(lbh->lzh, full_old, 625 ZFS_TYPE_FILESYSTEM)) == NULL) 626 return (set_error(lbh, BE_ERR_ZFSOPEN)); 627 628 /* XXX TODO: Allow a force flag */ 629 if (zfs_is_mounted(zfs_hdl, NULL)) { 630 zfs_close(zfs_hdl); 631 return (set_error(lbh, BE_ERR_MOUNTED)); 632 } 633 634 /* recurse, nounmount, forceunmount */ 635 struct renameflags flags = { 0, 0, 0 }; 636 637 err = zfs_rename(zfs_hdl, NULL, full_new, flags); 638 639 zfs_close(zfs_hdl); 640 641 return (set_error(lbh, err)); 642 } 643 644 645 int 646 be_export(libbe_handle_t *lbh, const char *bootenv, int fd) 647 { 648 char snap_name[BE_MAXPATHLEN]; 649 char buf[BE_MAXPATHLEN]; 650 zfs_handle_t *zfs; 651 int err; 652 653 if ((err = be_snapshot(lbh, bootenv, NULL, true, snap_name)) != 0) 654 /* Use the error set by be_snapshot */ 655 return (err); 656 657 be_root_concat(lbh, snap_name, buf); 658 659 if ((zfs = zfs_open(lbh->lzh, buf, ZFS_TYPE_DATASET)) == NULL) 660 return (set_error(lbh, BE_ERR_ZFSOPEN)); 661 662 err = zfs_send_one(zfs, NULL, fd, 0); 663 zfs_close(zfs); 664 665 return (err); 666 } 667 668 669 int 670 be_import(libbe_handle_t *lbh, const char *bootenv, int fd) 671 { 672 char buf[BE_MAXPATHLEN]; 673 time_t rawtime; 674 nvlist_t *props; 675 zfs_handle_t *zfs; 676 int err, len; 677 char nbuf[24]; 678 679 /* 680 * We don't need this to be incredibly random, just unique enough that 681 * it won't conflict with an existing dataset name. Chopping time 682 * down to 32 bits is probably good enough for this. 683 */ 684 snprintf(nbuf, 24, "tmp%u", 685 (uint32_t)(time(NULL) & 0xFFFFFFFF)); 686 if ((err = be_root_concat(lbh, nbuf, buf)) != 0) 687 /* 688 * Technically this is our problem, but we try to use short 689 * enough names that we won't run into problems except in 690 * worst-case BE root approaching MAXPATHLEN. 691 */ 692 return (set_error(lbh, BE_ERR_PATHLEN)); 693 694 time(&rawtime); 695 len = strlen(buf); 696 strftime(buf + len, BE_MAXPATHLEN - len, 697 "@%F-%T", localtime(&rawtime)); 698 699 if ((err = lzc_receive(buf, NULL, NULL, false, fd)) != 0) { 700 switch (err) { 701 case EINVAL: 702 return (set_error(lbh, BE_ERR_NOORIGIN)); 703 case ENOENT: 704 return (set_error(lbh, BE_ERR_NOENT)); 705 case EIO: 706 return (set_error(lbh, BE_ERR_IO)); 707 default: 708 return (set_error(lbh, BE_ERR_UNKNOWN)); 709 } 710 } 711 712 if ((zfs = zfs_open(lbh->lzh, buf, ZFS_TYPE_SNAPSHOT)) == NULL) 713 return (set_error(lbh, BE_ERR_ZFSOPEN)); 714 715 nvlist_alloc(&props, NV_UNIQUE_NAME, KM_SLEEP); 716 nvlist_add_string(props, "canmount", "noauto"); 717 nvlist_add_string(props, "mountpoint", "/"); 718 719 be_root_concat(lbh, bootenv, buf); 720 721 err = zfs_clone(zfs, buf, props); 722 zfs_close(zfs); 723 nvlist_free(props); 724 725 if (err != 0) 726 return (set_error(lbh, BE_ERR_UNKNOWN)); 727 728 /* 729 * Finally, we open up the dataset we just cloned the snapshot so that 730 * we may promote it. This is necessary in order to clean up the ghost 731 * snapshot that doesn't need to be seen after the operation is 732 * complete. 733 */ 734 if ((zfs = zfs_open(lbh->lzh, buf, ZFS_TYPE_DATASET)) == NULL) 735 return (set_error(lbh, BE_ERR_ZFSOPEN)); 736 737 err = zfs_promote(zfs); 738 zfs_close(zfs); 739 740 if (err != 0) 741 return (set_error(lbh, BE_ERR_UNKNOWN)); 742 743 /* Clean up the temporary snapshot */ 744 return (be_destroy(lbh, nbuf, 0)); 745 } 746 747 #if SOON 748 static int 749 be_create_child_noent(libbe_handle_t *lbh, const char *active, 750 const char *child_path) 751 { 752 nvlist_t *props; 753 zfs_handle_t *zfs; 754 int err; 755 756 nvlist_alloc(&props, NV_UNIQUE_NAME, KM_SLEEP); 757 nvlist_add_string(props, "canmount", "noauto"); 758 nvlist_add_string(props, "mountpoint", child_path); 759 760 /* Create */ 761 if ((err = zfs_create(lbh->lzh, active, ZFS_TYPE_DATASET, 762 props)) != 0) { 763 switch (err) { 764 case EZFS_EXISTS: 765 return (set_error(lbh, BE_ERR_EXISTS)); 766 case EZFS_NOENT: 767 return (set_error(lbh, BE_ERR_NOENT)); 768 case EZFS_BADTYPE: 769 case EZFS_BADVERSION: 770 return (set_error(lbh, BE_ERR_NOPOOL)); 771 case EZFS_BADPROP: 772 default: 773 /* We set something up wrong, probably... */ 774 return (set_error(lbh, BE_ERR_UNKNOWN)); 775 } 776 } 777 nvlist_free(props); 778 779 if ((zfs = zfs_open(lbh->lzh, active, ZFS_TYPE_DATASET)) == NULL) 780 return (set_error(lbh, BE_ERR_ZFSOPEN)); 781 782 /* Set props */ 783 if ((err = zfs_prop_set(zfs, "canmount", "noauto")) != 0) { 784 zfs_close(zfs); 785 /* 786 * Similar to other cases, this shouldn't fail unless we've 787 * done something wrong. This is a new dataset that shouldn't 788 * have been mounted anywhere between creation and now. 789 */ 790 if (err == EZFS_NOMEM) 791 return (set_error(lbh, BE_ERR_NOMEM)); 792 return (set_error(lbh, BE_ERR_UNKNOWN)); 793 } 794 zfs_close(zfs); 795 return (BE_ERR_SUCCESS); 796 } 797 798 static int 799 be_create_child_cloned(libbe_handle_t *lbh, const char *active) 800 { 801 char buf[BE_MAXPATHLEN], tmp[BE_MAXPATHLEN];; 802 zfs_handle_t *zfs; 803 int err; 804 805 /* XXX TODO ? */ 806 807 /* 808 * Establish if the existing path is a zfs dataset or just 809 * the subdirectory of one 810 */ 811 strlcpy(tmp, "tmp/be_snap.XXXXX", sizeof(tmp)); 812 if (mktemp(tmp) == NULL) 813 return (set_error(lbh, BE_ERR_UNKNOWN)); 814 815 be_root_concat(lbh, tmp, buf); 816 printf("Here %s?\n", buf); 817 if ((err = zfs_snapshot(lbh->lzh, buf, false, NULL)) != 0) { 818 switch (err) { 819 case EZFS_INVALIDNAME: 820 return (set_error(lbh, BE_ERR_INVALIDNAME)); 821 822 default: 823 /* 824 * The other errors that zfs_ioc_snapshot might return 825 * shouldn't happen if we've set things up properly, so 826 * we'll gloss over them and call it UNKNOWN as it will 827 * require further triage. 828 */ 829 if (errno == ENOTSUP) 830 return (set_error(lbh, BE_ERR_NOPOOL)); 831 return (set_error(lbh, BE_ERR_UNKNOWN)); 832 } 833 } 834 835 /* Clone */ 836 if ((zfs = zfs_open(lbh->lzh, buf, ZFS_TYPE_SNAPSHOT)) == NULL) 837 return (BE_ERR_ZFSOPEN); 838 839 if ((err = zfs_clone(zfs, active, NULL)) != 0) 840 /* XXX TODO correct error */ 841 return (set_error(lbh, BE_ERR_UNKNOWN)); 842 843 /* set props */ 844 zfs_close(zfs); 845 return (BE_ERR_SUCCESS); 846 } 847 848 int 849 be_add_child(libbe_handle_t *lbh, const char *child_path, bool cp_if_exists) 850 { 851 struct stat sb; 852 char active[BE_MAXPATHLEN], buf[BE_MAXPATHLEN]; 853 nvlist_t *props; 854 const char *s; 855 856 /* Require absolute paths */ 857 if (*child_path != '/') 858 return (set_error(lbh, BE_ERR_BADPATH)); 859 860 strlcpy(active, be_active_path(lbh), BE_MAXPATHLEN); 861 strcpy(buf, active); 862 863 /* Create non-mountable parent dataset(s) */ 864 s = child_path; 865 for (char *p; (p = strchr(s+1, '/')) != NULL; s = p) { 866 size_t len = p - s; 867 strncat(buf, s, len); 868 869 nvlist_alloc(&props, NV_UNIQUE_NAME, KM_SLEEP); 870 nvlist_add_string(props, "canmount", "off"); 871 nvlist_add_string(props, "mountpoint", "none"); 872 zfs_create(lbh->lzh, buf, ZFS_TYPE_DATASET, props); 873 nvlist_free(props); 874 } 875 876 /* Path does not exist as a descendent of / yet */ 877 if (strlcat(active, child_path, BE_MAXPATHLEN) >= BE_MAXPATHLEN) 878 return (set_error(lbh, BE_ERR_PATHLEN)); 879 880 if (stat(child_path, &sb) != 0) { 881 /* Verify that error is ENOENT */ 882 if (errno != ENOENT) 883 return (set_error(lbh, BE_ERR_UNKNOWN)); 884 return (be_create_child_noent(lbh, active, child_path)); 885 } else if (cp_if_exists) 886 /* Path is already a descendent of / and should be copied */ 887 return (be_create_child_cloned(lbh, active)); 888 return (set_error(lbh, BE_ERR_EXISTS)); 889 } 890 #endif /* SOON */ 891 892 static int 893 be_set_nextboot(libbe_handle_t *lbh, nvlist_t *config, uint64_t pool_guid, 894 const char *zfsdev) 895 { 896 nvlist_t **child; 897 uint64_t vdev_guid; 898 int c, children; 899 900 if (nvlist_lookup_nvlist_array(config, ZPOOL_CONFIG_CHILDREN, &child, 901 &children) == 0) { 902 for (c = 0; c < children; ++c) 903 if (be_set_nextboot(lbh, child[c], pool_guid, zfsdev) != 0) 904 return (1); 905 return (0); 906 } 907 908 if (nvlist_lookup_uint64(config, ZPOOL_CONFIG_GUID, 909 &vdev_guid) != 0) { 910 return (1); 911 } 912 913 if (zpool_nextboot(lbh->lzh, pool_guid, vdev_guid, zfsdev) != 0) { 914 perror("ZFS_IOC_NEXTBOOT failed"); 915 return (1); 916 } 917 918 return (0); 919 } 920 921 922 int 923 be_activate(libbe_handle_t *lbh, const char *bootenv, bool temporary) 924 { 925 char be_path[BE_MAXPATHLEN]; 926 char buf[BE_MAXPATHLEN]; 927 uint64_t pool_guid; 928 nvlist_t *config, *vdevs; 929 int err; 930 931 be_root_concat(lbh, bootenv, be_path); 932 933 /* Note: be_exists fails if mountpoint is not / */ 934 if (!be_exists(lbh, be_path)) 935 return (BE_ERR_NOENT); 936 937 if (temporary) { 938 config = zpool_get_config(lbh->active_phandle, NULL); 939 if (config == NULL) 940 /* config should be fetchable... */ 941 return (set_error(lbh, BE_ERR_UNKNOWN)); 942 943 if (nvlist_lookup_uint64(config, ZPOOL_CONFIG_POOL_GUID, 944 &pool_guid) != 0) 945 /* Similarly, it shouldn't be possible */ 946 return (set_error(lbh, BE_ERR_UNKNOWN)); 947 948 /* Expected format according to zfsbootcfg(8) man */ 949 strcpy(buf, "zfs:"); 950 strcat(buf, be_path); 951 strcat(buf, ":"); 952 953 /* We have no config tree */ 954 if (nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE, 955 &vdevs) != 0) 956 return (set_error(lbh, BE_ERR_NOPOOL)); 957 958 return (be_set_nextboot(lbh, vdevs, pool_guid, buf)); 959 } else { 960 /* Obtain bootenv zpool */ 961 err = zpool_set_prop(lbh->active_phandle, "bootfs", be_path); 962 963 switch (err) { 964 case 0: 965 return (BE_ERR_SUCCESS); 966 967 default: 968 /* XXX TODO correct errors */ 969 return (-1); 970 } 971 } 972 } 973