xref: /illumos-gate/usr/src/lib/libzfs/common/libzfs_changelist.c (revision e7437265dc2a4920c197ed4337665539d358b22c)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 
22 /*
23  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 #pragma ident	"%Z%%M%	%I%	%E% SMI"
28 
29 #include <libintl.h>
30 #include <libuutil.h>
31 #include <stddef.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include <unistd.h>
35 #include <zone.h>
36 
37 #include <libzfs.h>
38 
39 #include "libzfs_impl.h"
40 
41 /*
42  * Structure to keep track of dataset state.  Before changing the 'sharenfs' or
43  * 'mountpoint' property, we record whether the filesystem was previously
44  * mounted/shared.  This prior state dictates whether we remount/reshare the
45  * dataset after the property has been changed.
46  *
47  * The interface consists of the following sequence of functions:
48  *
49  * 	changelist_gather()
50  * 	changelist_prefix()
51  * 	< change property >
52  * 	changelist_postfix()
53  * 	changelist_free()
54  *
55  * Other interfaces:
56  *
57  * changelist_remove() - remove a node from a gathered list
58  * changelist_rename() - renames all datasets appropriately when doing a rename
59  * changelist_unshare() - unshares all the nodes in a given changelist
60  * changelist_haszonedchild() - check if there is any child exported to
61  *				a local zone
62  */
63 typedef struct prop_changenode {
64 	zfs_handle_t		*cn_handle;
65 	int			cn_shared;
66 	int			cn_mounted;
67 	int			cn_zoned;
68 	uu_list_node_t		cn_listnode;
69 } prop_changenode_t;
70 
71 struct prop_changelist {
72 	zfs_prop_t		cl_prop;
73 	zfs_prop_t		cl_realprop;
74 	uu_list_pool_t		*cl_pool;
75 	uu_list_t		*cl_list;
76 	boolean_t		cl_waslegacy;
77 	boolean_t		cl_allchildren;
78 	boolean_t		cl_alldependents;
79 	int			cl_flags;
80 	boolean_t		cl_haszonedchild;
81 	boolean_t		cl_sorted;
82 };
83 
84 /*
85  * If the property is 'mountpoint', go through and unmount filesystems as
86  * necessary.  We don't do the same for 'sharenfs', because we can just re-share
87  * with different options without interrupting service.
88  */
89 int
90 changelist_prefix(prop_changelist_t *clp)
91 {
92 	prop_changenode_t *cn;
93 	int ret = 0;
94 
95 	if (clp->cl_prop != ZFS_PROP_MOUNTPOINT)
96 		return (0);
97 
98 	for (cn = uu_list_first(clp->cl_list); cn != NULL;
99 	    cn = uu_list_next(clp->cl_list, cn)) {
100 		/*
101 		 * If we are in the global zone, but this dataset is exported
102 		 * to a local zone, do nothing.
103 		 */
104 		if (getzoneid() == GLOBAL_ZONEID && cn->cn_zoned)
105 			continue;
106 
107 		if (ZFS_IS_VOLUME(cn->cn_handle)) {
108 			switch (clp->cl_realprop) {
109 			case ZFS_PROP_NAME:
110 				/*
111 				 * If this was a rename, unshare the zvol, and
112 				 * remove the /dev/zvol links.
113 				 */
114 				(void) zfs_unshare_iscsi(cn->cn_handle);
115 
116 				if (zvol_remove_link(cn->cn_handle->zfs_hdl,
117 				    cn->cn_handle->zfs_name) != 0)
118 					ret = -1;
119 				break;
120 
121 			case ZFS_PROP_VOLSIZE:
122 				/*
123 				 * If this was a change to the volume size, we
124 				 * need to unshare and reshare the volume.
125 				 */
126 				(void) zfs_unshare_iscsi(cn->cn_handle);
127 				break;
128 			}
129 		} else if (zfs_unmount(cn->cn_handle, NULL,
130 		    clp->cl_flags) != 0) {
131 			ret = -1;
132 		}
133 	}
134 
135 	return (ret);
136 }
137 
138 /*
139  * If the property is 'mountpoint' or 'sharenfs', go through and remount and/or
140  * reshare the filesystems as necessary.  In changelist_gather() we recorded
141  * whether the filesystem was previously shared or mounted.  The action we take
142  * depends on the previous state, and whether the value was previously 'legacy'.
143  * For non-legacy properties, we only remount/reshare the filesystem if it was
144  * previously mounted/shared.  Otherwise, we always remount/reshare the
145  * filesystem.
146  */
147 int
148 changelist_postfix(prop_changelist_t *clp)
149 {
150 	prop_changenode_t *cn;
151 	char shareopts[ZFS_MAXPROPLEN];
152 	int ret = 0;
153 	libzfs_handle_t *hdl;
154 
155 	/*
156 	 * If we're changing the mountpoint, attempt to destroy the underlying
157 	 * mountpoint.  All other datasets will have inherited from this dataset
158 	 * (in which case their mountpoints exist in the filesystem in the new
159 	 * location), or have explicit mountpoints set (in which case they won't
160 	 * be in the changelist).
161 	 */
162 	if ((cn = uu_list_last(clp->cl_list)) == NULL)
163 		return (0);
164 
165 	if (clp->cl_prop == ZFS_PROP_MOUNTPOINT)
166 		remove_mountpoint(cn->cn_handle);
167 
168 	/*
169 	 * It is possible that the changelist_prefix() used libshare
170 	 * to unshare some entries. Since libshare caches data, an
171 	 * attempt to reshare during postfix can fail unless libshare
172 	 * is uninitialized here so that it will reinitialize later.
173 	 */
174 	if (cn->cn_handle != NULL) {
175 		hdl = cn->cn_handle->zfs_hdl;
176 		assert(hdl != NULL);
177 		zfs_uninit_libshare(hdl);
178 	}
179 
180 	/*
181 	 * We walk the datasets in reverse, because we want to mount any parent
182 	 * datasets before mounting the children.
183 	 */
184 	for (cn = uu_list_last(clp->cl_list); cn != NULL;
185 	    cn = uu_list_prev(clp->cl_list, cn)) {
186 		/*
187 		 * If we are in the global zone, but this dataset is exported
188 		 * to a local zone, do nothing.
189 		 */
190 		if (getzoneid() == GLOBAL_ZONEID && cn->cn_zoned)
191 			continue;
192 
193 		zfs_refresh_properties(cn->cn_handle);
194 
195 		if (ZFS_IS_VOLUME(cn->cn_handle)) {
196 			/*
197 			 * If we're doing a rename, recreate the /dev/zvol
198 			 * links.
199 			 */
200 			if (clp->cl_realprop == ZFS_PROP_NAME &&
201 			    zvol_create_link(cn->cn_handle->zfs_hdl,
202 			    cn->cn_handle->zfs_name) != 0) {
203 				ret = -1;
204 			} else if (cn->cn_shared ||
205 			    clp->cl_prop == ZFS_PROP_SHAREISCSI) {
206 				if (zfs_prop_get(cn->cn_handle,
207 				    ZFS_PROP_SHAREISCSI, shareopts,
208 				    sizeof (shareopts), NULL, NULL, 0,
209 				    B_FALSE) == 0 &&
210 				    strcmp(shareopts, "off") == 0) {
211 					ret = zfs_unshare_iscsi(cn->cn_handle);
212 				} else {
213 					ret = zfs_share_iscsi(cn->cn_handle);
214 				}
215 			}
216 
217 			continue;
218 		}
219 
220 		if ((clp->cl_waslegacy || cn->cn_mounted) &&
221 		    !zfs_is_mounted(cn->cn_handle, NULL) &&
222 		    zfs_mount(cn->cn_handle, NULL, 0) != 0)
223 			ret = -1;
224 
225 		/*
226 		 * We always re-share even if the filesystem is currently
227 		 * shared, so that we can adopt any new options.
228 		 */
229 		if (cn->cn_shared ||
230 		    (clp->cl_prop == ZFS_PROP_SHARENFS && clp->cl_waslegacy)) {
231 			if (zfs_prop_get(cn->cn_handle, ZFS_PROP_SHARENFS,
232 			    shareopts, sizeof (shareopts), NULL, NULL, 0,
233 			    B_FALSE) == 0 && strcmp(shareopts, "off") == 0) {
234 				ret = zfs_unshare_nfs(cn->cn_handle, NULL);
235 			} else {
236 				ret = zfs_share_nfs(cn->cn_handle);
237 			}
238 		}
239 	}
240 
241 	return (ret);
242 }
243 
244 /*
245  * Is this "dataset" a child of "parent"?
246  */
247 static boolean_t
248 isa_child_of(const char *dataset, const char *parent)
249 {
250 	int len;
251 
252 	len = strlen(parent);
253 
254 	if (strncmp(dataset, parent, len) == 0 &&
255 	    (dataset[len] == '@' || dataset[len] == '/' ||
256 	    dataset[len] == '\0'))
257 		return (B_TRUE);
258 	else
259 		return (B_FALSE);
260 
261 }
262 
263 /*
264  * If we rename a filesystem, child filesystem handles are no longer valid
265  * since we identify each dataset by its name in the ZFS namespace.  As a
266  * result, we have to go through and fix up all the names appropriately.  We
267  * could do this automatically if libzfs kept track of all open handles, but
268  * this is a lot less work.
269  */
270 void
271 changelist_rename(prop_changelist_t *clp, const char *src, const char *dst)
272 {
273 	prop_changenode_t *cn;
274 	char newname[ZFS_MAXNAMELEN];
275 
276 	for (cn = uu_list_first(clp->cl_list); cn != NULL;
277 	    cn = uu_list_next(clp->cl_list, cn)) {
278 		/*
279 		 * Do not rename a clone that's not in the source hierarchy.
280 		 */
281 		if (!isa_child_of(cn->cn_handle->zfs_name, src))
282 			continue;
283 
284 		/*
285 		 * Destroy the previous mountpoint if needed.
286 		 */
287 		remove_mountpoint(cn->cn_handle);
288 
289 		(void) strlcpy(newname, dst, sizeof (newname));
290 		(void) strcat(newname, cn->cn_handle->zfs_name + strlen(src));
291 
292 		(void) strlcpy(cn->cn_handle->zfs_name, newname,
293 		    sizeof (cn->cn_handle->zfs_name));
294 	}
295 }
296 
297 /*
298  * Given a gathered changelist for the 'sharenfs' property, unshare all the
299  * datasets in the list.
300  */
301 int
302 changelist_unshare(prop_changelist_t *clp)
303 {
304 	prop_changenode_t *cn;
305 	int ret = 0;
306 
307 	if (clp->cl_prop != ZFS_PROP_SHARENFS)
308 		return (0);
309 
310 	for (cn = uu_list_first(clp->cl_list); cn != NULL;
311 	    cn = uu_list_next(clp->cl_list, cn)) {
312 		if (zfs_unshare_nfs(cn->cn_handle, NULL) != 0)
313 			ret = -1;
314 	}
315 
316 	return (ret);
317 }
318 
319 /*
320  * Check if there is any child exported to a local zone in a given changelist.
321  * This information has already been recorded while gathering the changelist
322  * via changelist_gather().
323  */
324 int
325 changelist_haszonedchild(prop_changelist_t *clp)
326 {
327 	return (clp->cl_haszonedchild);
328 }
329 
330 /*
331  * Remove a node from a gathered list.
332  */
333 void
334 changelist_remove(zfs_handle_t *zhp, prop_changelist_t *clp)
335 {
336 	prop_changenode_t *cn;
337 
338 	for (cn = uu_list_first(clp->cl_list); cn != NULL;
339 	    cn = uu_list_next(clp->cl_list, cn)) {
340 
341 		if (strcmp(cn->cn_handle->zfs_name, zhp->zfs_name) == 0) {
342 			uu_list_remove(clp->cl_list, cn);
343 			zfs_close(cn->cn_handle);
344 			free(cn);
345 			return;
346 		}
347 	}
348 }
349 
350 /*
351  * Release any memory associated with a changelist.
352  */
353 void
354 changelist_free(prop_changelist_t *clp)
355 {
356 	prop_changenode_t *cn;
357 	void *cookie;
358 
359 	if (clp->cl_list) {
360 		cookie = NULL;
361 		while ((cn = uu_list_teardown(clp->cl_list, &cookie)) != NULL) {
362 			zfs_close(cn->cn_handle);
363 			free(cn);
364 		}
365 
366 		uu_list_destroy(clp->cl_list);
367 	}
368 	if (clp->cl_pool)
369 		uu_list_pool_destroy(clp->cl_pool);
370 
371 	free(clp);
372 }
373 
374 static int
375 change_one(zfs_handle_t *zhp, void *data)
376 {
377 	prop_changelist_t *clp = data;
378 	char property[ZFS_MAXPROPLEN];
379 	char where[64];
380 	prop_changenode_t *cn;
381 	zfs_source_t sourcetype;
382 
383 	/*
384 	 * We only want to unmount/unshare those filesystems that may inherit
385 	 * from the target filesystem.  If we find any filesystem with a
386 	 * locally set mountpoint, we ignore any children since changing the
387 	 * property will not affect them.  If this is a rename, we iterate
388 	 * over all children regardless, since we need them unmounted in
389 	 * order to do the rename.  Also, if this is a volume and we're doing
390 	 * a rename, then always add it to the changelist.
391 	 */
392 
393 	if (!(ZFS_IS_VOLUME(zhp) && clp->cl_realprop == ZFS_PROP_NAME) &&
394 	    zfs_prop_get(zhp, clp->cl_prop, property,
395 	    sizeof (property), &sourcetype, where, sizeof (where),
396 	    B_FALSE) != 0) {
397 		zfs_close(zhp);
398 		return (0);
399 	}
400 
401 	if (clp->cl_alldependents || clp->cl_allchildren ||
402 	    sourcetype == ZFS_SRC_DEFAULT || sourcetype == ZFS_SRC_INHERITED) {
403 		if ((cn = zfs_alloc(zfs_get_handle(zhp),
404 		    sizeof (prop_changenode_t))) == NULL) {
405 			zfs_close(zhp);
406 			return (-1);
407 		}
408 
409 		cn->cn_handle = zhp;
410 		cn->cn_mounted = zfs_is_mounted(zhp, NULL);
411 		cn->cn_shared = zfs_is_shared(zhp);
412 		cn->cn_zoned = zfs_prop_get_int(zhp, ZFS_PROP_ZONED);
413 
414 		/* Indicate if any child is exported to a local zone. */
415 		if (getzoneid() == GLOBAL_ZONEID && cn->cn_zoned)
416 			clp->cl_haszonedchild = B_TRUE;
417 
418 		uu_list_node_init(cn, &cn->cn_listnode, clp->cl_pool);
419 
420 		if (clp->cl_sorted) {
421 			uu_list_index_t idx;
422 
423 			(void) uu_list_find(clp->cl_list, cn, NULL,
424 			    &idx);
425 			uu_list_insert(clp->cl_list, cn, idx);
426 		} else {
427 			ASSERT(!clp->cl_alldependents);
428 			verify(uu_list_insert_before(clp->cl_list,
429 			    uu_list_first(clp->cl_list), cn) == 0);
430 		}
431 
432 		if (!clp->cl_alldependents)
433 			return (zfs_iter_children(zhp, change_one, data));
434 	} else {
435 		zfs_close(zhp);
436 	}
437 
438 	return (0);
439 }
440 
441 /*ARGSUSED*/
442 static int
443 compare_mountpoints(const void *a, const void *b, void *unused)
444 {
445 	const prop_changenode_t *ca = a;
446 	const prop_changenode_t *cb = b;
447 
448 	char mounta[MAXPATHLEN];
449 	char mountb[MAXPATHLEN];
450 
451 	boolean_t hasmounta, hasmountb;
452 
453 	/*
454 	 * When unsharing or unmounting filesystems, we need to do it in
455 	 * mountpoint order.  This allows the user to have a mountpoint
456 	 * hierarchy that is different from the dataset hierarchy, and still
457 	 * allow it to be changed.  However, if either dataset doesn't have a
458 	 * mountpoint (because it is a volume or a snapshot), we place it at the
459 	 * end of the list, because it doesn't affect our change at all.
460 	 */
461 	hasmounta = (zfs_prop_get(ca->cn_handle, ZFS_PROP_MOUNTPOINT, mounta,
462 	    sizeof (mounta), NULL, NULL, 0, B_FALSE) == 0);
463 	hasmountb = (zfs_prop_get(cb->cn_handle, ZFS_PROP_MOUNTPOINT, mountb,
464 	    sizeof (mountb), NULL, NULL, 0, B_FALSE) == 0);
465 
466 	if (!hasmounta && hasmountb)
467 		return (-1);
468 	else if (hasmounta && !hasmountb)
469 		return (1);
470 	else if (!hasmounta && !hasmountb)
471 		return (0);
472 	else
473 		return (strcmp(mountb, mounta));
474 }
475 
476 /*
477  * Given a ZFS handle and a property, construct a complete list of datasets
478  * that need to be modified as part of this process.  For anything but the
479  * 'mountpoint' and 'sharenfs' properties, this just returns an empty list.
480  * Otherwise, we iterate over all children and look for any datasets that
481  * inherit the property.  For each such dataset, we add it to the list and
482  * mark whether it was shared beforehand.
483  */
484 prop_changelist_t *
485 changelist_gather(zfs_handle_t *zhp, zfs_prop_t prop, int flags)
486 {
487 	prop_changelist_t *clp;
488 	prop_changenode_t *cn;
489 	zfs_handle_t *temp;
490 	char property[ZFS_MAXPROPLEN];
491 	uu_compare_fn_t *compare = NULL;
492 
493 	if ((clp = zfs_alloc(zhp->zfs_hdl, sizeof (prop_changelist_t))) == NULL)
494 		return (NULL);
495 
496 	/*
497 	 * For mountpoint-related tasks, we want to sort everything by
498 	 * mountpoint, so that we mount and unmount them in the appropriate
499 	 * order, regardless of their position in the hierarchy.
500 	 */
501 	if (prop == ZFS_PROP_NAME || prop == ZFS_PROP_ZONED ||
502 	    prop == ZFS_PROP_MOUNTPOINT || prop == ZFS_PROP_SHARENFS) {
503 		compare = compare_mountpoints;
504 		clp->cl_sorted = B_TRUE;
505 	}
506 
507 	clp->cl_pool = uu_list_pool_create("changelist_pool",
508 	    sizeof (prop_changenode_t),
509 	    offsetof(prop_changenode_t, cn_listnode),
510 	    compare, 0);
511 	if (clp->cl_pool == NULL) {
512 		assert(uu_error() == UU_ERROR_NO_MEMORY);
513 		(void) zfs_error(zhp->zfs_hdl, EZFS_NOMEM, "internal error");
514 		changelist_free(clp);
515 		return (NULL);
516 	}
517 
518 	clp->cl_list = uu_list_create(clp->cl_pool, NULL,
519 	    clp->cl_sorted ? UU_LIST_SORTED : 0);
520 	clp->cl_flags = flags;
521 
522 	if (clp->cl_list == NULL) {
523 		assert(uu_error() == UU_ERROR_NO_MEMORY);
524 		(void) zfs_error(zhp->zfs_hdl, EZFS_NOMEM, "internal error");
525 		changelist_free(clp);
526 		return (NULL);
527 	}
528 
529 	/*
530 	 * If this is a rename or the 'zoned' property, we pretend we're
531 	 * changing the mountpoint and flag it so we can catch all children in
532 	 * change_one().
533 	 *
534 	 * Flag cl_alldependents to catch all children plus the dependents
535 	 * (clones) that are not in the hierarchy.
536 	 */
537 	if (prop == ZFS_PROP_NAME) {
538 		clp->cl_prop = ZFS_PROP_MOUNTPOINT;
539 		clp->cl_alldependents = B_TRUE;
540 	} else if (prop == ZFS_PROP_ZONED) {
541 		clp->cl_prop = ZFS_PROP_MOUNTPOINT;
542 		clp->cl_allchildren = B_TRUE;
543 	} else if (prop == ZFS_PROP_CANMOUNT) {
544 		clp->cl_prop = ZFS_PROP_MOUNTPOINT;
545 	} else if (prop == ZFS_PROP_VOLSIZE) {
546 		clp->cl_prop = ZFS_PROP_MOUNTPOINT;
547 	} else if (prop == ZFS_PROP_VERSION) {
548 		clp->cl_prop = ZFS_PROP_MOUNTPOINT;
549 	} else {
550 		clp->cl_prop = prop;
551 	}
552 	clp->cl_realprop = prop;
553 
554 	if (clp->cl_prop != ZFS_PROP_MOUNTPOINT &&
555 	    clp->cl_prop != ZFS_PROP_SHARENFS &&
556 	    clp->cl_prop != ZFS_PROP_SHAREISCSI)
557 		return (clp);
558 
559 	if (clp->cl_alldependents) {
560 		if (zfs_iter_dependents(zhp, B_TRUE, change_one, clp) != 0) {
561 			changelist_free(clp);
562 			return (NULL);
563 		}
564 	} else if (zfs_iter_children(zhp, change_one, clp) != 0) {
565 		changelist_free(clp);
566 		return (NULL);
567 	}
568 
569 	/*
570 	 * We have to re-open ourselves because we auto-close all the handles
571 	 * and can't tell the difference.
572 	 */
573 	if ((temp = zfs_open(zhp->zfs_hdl, zfs_get_name(zhp),
574 	    ZFS_TYPE_ANY)) == NULL) {
575 		changelist_free(clp);
576 		return (NULL);
577 	}
578 
579 	/*
580 	 * Always add ourself to the list.  We add ourselves to the end so that
581 	 * we're the last to be unmounted.
582 	 */
583 	if ((cn = zfs_alloc(zhp->zfs_hdl,
584 	    sizeof (prop_changenode_t))) == NULL) {
585 		zfs_close(temp);
586 		changelist_free(clp);
587 		return (NULL);
588 	}
589 
590 	cn->cn_handle = temp;
591 	cn->cn_mounted = zfs_is_mounted(temp, NULL);
592 	cn->cn_shared = zfs_is_shared(temp);
593 	cn->cn_zoned = zfs_prop_get_int(zhp, ZFS_PROP_ZONED);
594 
595 	uu_list_node_init(cn, &cn->cn_listnode, clp->cl_pool);
596 	if (clp->cl_sorted) {
597 		uu_list_index_t idx;
598 		(void) uu_list_find(clp->cl_list, cn, NULL, &idx);
599 		uu_list_insert(clp->cl_list, cn, idx);
600 	} else {
601 		verify(uu_list_insert_after(clp->cl_list,
602 		    uu_list_last(clp->cl_list), cn) == 0);
603 	}
604 
605 	/*
606 	 * If the property was previously 'legacy' or 'none', record this fact,
607 	 * as the behavior of changelist_postfix() will be different.
608 	 */
609 	if (zfs_prop_get(zhp, prop, property, sizeof (property),
610 	    NULL, NULL, 0, B_FALSE) == 0 &&
611 	    (strcmp(property, "legacy") == 0 || strcmp(property, "none") == 0 ||
612 	    strcmp(property, "off") == 0))
613 		clp->cl_waslegacy = B_TRUE;
614 
615 	return (clp);
616 }
617