Merge commit '720b16875295d57e0e6a4e0ec32db4d47412f896'
[unleashed.git] / usr / src / lib / libshare / common / libshare_zfs.c
blobde6841e7249f82deefa2543c5c5fbac8ef66793a
1 /*
2 * CDDL HEADER START
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.
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.
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]
19 * CDDL HEADER END
23 * Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
26 * Copyright 2012 Nexenta Systems, Inc. All rights reserved.
27 * Copyright (c) 2012, 2016 by Delphix. All rights reserved.
28 * Copyright 2017 RackTop Systems.
31 #include <stdio.h>
32 #include <libzfs.h>
33 #include <string.h>
34 #include <strings.h>
35 #include <errno.h>
36 #include <libshare.h>
37 #include "libshare_impl.h"
38 #include <libintl.h>
39 #include <sys/mnttab.h>
40 #include <sys/mntent.h>
41 #include <assert.h>
43 extern sa_share_t _sa_add_share(sa_group_t, char *, int, int *, uint64_t);
44 extern sa_group_t _sa_create_zfs_group(sa_group_t, char *);
45 extern char *sa_fstype(char *);
46 extern void set_node_attr(void *, char *, char *);
47 extern int sa_is_share(void *);
48 extern void sa_update_sharetab_ts(sa_handle_t);
51 * File system specific code for ZFS. The original code was stolen
52 * from the "zfs" command and modified to better suit this library's
53 * usage.
56 typedef struct get_all_cbdata {
57 zfs_handle_t **cb_handles;
58 size_t cb_alloc;
59 size_t cb_used;
60 uint_t cb_types;
61 } get_all_cbdata_t;
64 * sa_zfs_init(impl_handle)
66 * Initialize an access handle into libzfs. The handle needs to stay
67 * around until sa_zfs_fini() in order to maintain the cache of
68 * mounts.
71 int
72 sa_zfs_init(sa_handle_impl_t impl_handle)
74 impl_handle->zfs_libhandle = libzfs_init();
75 if (impl_handle->zfs_libhandle != NULL) {
76 libzfs_print_on_error(impl_handle->zfs_libhandle, B_TRUE);
77 return (B_TRUE);
79 return (B_FALSE);
83 * sa_zfs_fini(impl_handle)
85 * cleanup data structures and the libzfs handle used for accessing
86 * zfs file share info.
89 void
90 sa_zfs_fini(sa_handle_impl_t impl_handle)
92 if (impl_handle->zfs_libhandle != NULL) {
93 if (impl_handle->zfs_list != NULL) {
94 zfs_handle_t **zhp = impl_handle->zfs_list;
95 size_t i;
98 * Contents of zfs_list need to be freed so we
99 * don't lose ZFS handles.
101 for (i = 0; i < impl_handle->zfs_list_count; i++) {
102 zfs_close(zhp[i]);
104 free(impl_handle->zfs_list);
105 impl_handle->zfs_list = NULL;
106 impl_handle->zfs_list_count = 0;
109 libzfs_fini(impl_handle->zfs_libhandle);
110 impl_handle->zfs_libhandle = NULL;
115 * get_one_filesystem(zfs_handle_t, data)
117 * an iterator function called while iterating through the ZFS
118 * root. It accumulates into an array of file system handles that can
119 * be used to derive info about those file systems.
121 * Note that as this function is called, we close all zhp handles that
122 * are not going to be places into the cp_handles list. We don't want
123 * to close the ones we are keeping, but all others would be leaked if
124 * not closed here.
127 static int
128 get_one_filesystem(zfs_handle_t *zhp, void *data)
130 get_all_cbdata_t *cbp = data;
131 zfs_type_t type = zfs_get_type(zhp);
134 * Interate over any nested datasets.
136 if (type == ZFS_TYPE_FILESYSTEM &&
137 zfs_iter_filesystems(zhp, get_one_filesystem, data) != 0) {
138 zfs_close(zhp);
139 return (1);
143 * Skip any datasets whose type does not match.
145 if ((type & cbp->cb_types) == 0) {
146 zfs_close(zhp);
147 return (0);
150 if (cbp->cb_alloc == cbp->cb_used) {
151 zfs_handle_t **handles;
153 if (cbp->cb_alloc == 0)
154 cbp->cb_alloc = 64;
155 else
156 cbp->cb_alloc *= 2;
158 handles = (zfs_handle_t **)calloc(1,
159 cbp->cb_alloc * sizeof (void *));
161 if (handles == NULL) {
162 zfs_close(zhp);
163 return (0);
165 if (cbp->cb_handles) {
166 bcopy(cbp->cb_handles, handles,
167 cbp->cb_used * sizeof (void *));
168 free(cbp->cb_handles);
171 cbp->cb_handles = handles;
174 cbp->cb_handles[cbp->cb_used++] = zhp;
176 return (0);
180 * get_all_filesystems(zfs_handle_t ***fslist, size_t *count)
182 * iterate through all ZFS file systems starting at the root. Returns
183 * a count and an array of handle pointers. Allocating is only done
184 * once. The caller does not need to free since it will be done at
185 * sa_zfs_fini() time.
188 static void
189 get_all_filesystems(sa_handle_impl_t impl_handle,
190 zfs_handle_t ***fslist, size_t *count)
192 get_all_cbdata_t cb = { 0 };
193 cb.cb_types = ZFS_TYPE_FILESYSTEM;
195 if (impl_handle->zfs_list != NULL) {
196 *fslist = impl_handle->zfs_list;
197 *count = impl_handle->zfs_list_count;
198 return;
201 (void) zfs_iter_root(impl_handle->zfs_libhandle,
202 get_one_filesystem, &cb);
204 impl_handle->zfs_list = *fslist = cb.cb_handles;
205 impl_handle->zfs_list_count = *count = cb.cb_used;
209 * mountpoint_compare(a, b)
211 * compares the mountpoint on two zfs file systems handles.
212 * returns values following strcmp() model.
215 static int
216 mountpoint_compare(const void *a, const void *b)
218 zfs_handle_t **za = (zfs_handle_t **)a;
219 zfs_handle_t **zb = (zfs_handle_t **)b;
220 char mounta[MAXPATHLEN];
221 char mountb[MAXPATHLEN];
223 verify(zfs_prop_get(*za, ZFS_PROP_MOUNTPOINT, mounta,
224 sizeof (mounta), NULL, NULL, 0, B_FALSE) == 0);
225 verify(zfs_prop_get(*zb, ZFS_PROP_MOUNTPOINT, mountb,
226 sizeof (mountb), NULL, NULL, 0, B_FALSE) == 0);
228 return (strcmp(mounta, mountb));
232 * return legacy mountpoint. Caller provides space for mountpoint and
233 * dataset.
236 get_legacy_mountpoint(const char *path, char *dataset, size_t dlen,
237 char *mountpoint, size_t mlen)
239 FILE *fp;
240 struct mnttab entry;
242 if ((fp = fopen(MNTTAB, "r")) == NULL) {
243 return (1);
246 while (getmntent(fp, &entry) == 0) {
248 if (entry.mnt_fstype == NULL ||
249 strcmp(entry.mnt_fstype, MNTTYPE_ZFS) != 0)
250 continue;
252 if (strcmp(entry.mnt_mountp, path) == 0) {
253 if (mlen > 0)
254 (void) strlcpy(mountpoint, entry.mnt_mountp,
255 mlen);
256 if (dlen > 0)
257 (void) strlcpy(dataset, entry.mnt_special,
258 dlen);
259 break;
262 (void) fclose(fp);
263 return (1);
268 * Verifies that a specific zfs filesystem handle meets the criteria necessary
269 * to be used by libshare operations. See get_zfs_dataset.
271 static char *
272 verify_zfs_handle(zfs_handle_t *hdl, const char *path, boolean_t search_mnttab)
274 char mountpoint[ZFS_MAXPROPLEN];
275 char canmount[ZFS_MAXPROPLEN] = { 0 };
276 /* must have a mountpoint */
277 if (zfs_prop_get(hdl, ZFS_PROP_MOUNTPOINT, mountpoint,
278 sizeof (mountpoint), NULL, NULL, 0, B_FALSE) != 0) {
279 /* no mountpoint */
280 return (NULL);
283 /* mountpoint must be a path */
284 if (strcmp(mountpoint, ZFS_MOUNTPOINT_NONE) == 0 ||
285 strcmp(mountpoint, ZFS_MOUNTPOINT_LEGACY) == 0) {
287 * Search mmttab for mountpoint and get dataset.
290 if (search_mnttab == B_TRUE &&
291 get_legacy_mountpoint(path, mountpoint,
292 sizeof (mountpoint), NULL, 0) == 0) {
293 return (strdup(mountpoint));
295 return (NULL);
298 /* canmount must be set */
299 if (zfs_prop_get(hdl, ZFS_PROP_CANMOUNT, canmount,
300 sizeof (canmount), NULL, NULL, 0, B_FALSE) != 0 ||
301 strcmp(canmount, "off") == 0)
302 return (NULL);
305 * have a mountable handle but want to skip those marked none
306 * and legacy
308 if (strcmp(mountpoint, path) == 0) {
309 return (strdup((char *)zfs_get_name(hdl)));
312 return (NULL);
316 * get_zfs_dataset(impl_handle, path)
318 * get the name of the ZFS dataset the path is equivalent to. The
319 * dataset name is used for get/set of ZFS properties since libzfs
320 * requires a dataset to do a zfs_open().
323 static char *
324 get_zfs_dataset(sa_handle_impl_t impl_handle, char *path,
325 boolean_t search_mnttab)
327 size_t i, count = 0;
328 zfs_handle_t **zlist;
329 char *cutpath;
330 zfs_handle_t *handle_from_path;
331 char *ret = NULL;
334 * First we optimistically assume that the mount path for the filesystem
335 * is the same as the name of the filesystem (minus some number of
336 * leading slashes). If this is true, then zfs_open should properly open
337 * the filesystem. We duplicate the error checking done later in the
338 * function for consistency. If anything fails, we resort to the
339 * (extremely slow) search of all the filesystems.
341 cutpath = path + strspn(path, "/");
343 assert(impl_handle->zfs_libhandle != NULL);
344 libzfs_print_on_error(impl_handle->zfs_libhandle, B_FALSE);
345 handle_from_path = zfs_open(impl_handle->zfs_libhandle, cutpath,
346 ZFS_TYPE_FILESYSTEM);
347 libzfs_print_on_error(impl_handle->zfs_libhandle, B_TRUE);
348 if (handle_from_path != NULL) {
349 ret = verify_zfs_handle(handle_from_path, path, search_mnttab);
350 zfs_close(handle_from_path);
351 if (ret != NULL) {
352 return (ret);
356 * Couldn't find a filesystem optimistically, check all the handles we
357 * can.
359 get_all_filesystems(impl_handle, &zlist, &count);
360 for (i = 0; i < count; i++) {
361 assert(zlist[i]);
362 if ((ret = verify_zfs_handle(zlist[i], path,
363 search_mnttab)) != NULL)
364 return (ret);
367 /* Couldn't find a matching dataset */
368 return (NULL);
372 * get_zfs_property(dataset, property)
374 * Get the file system property specified from the ZFS dataset.
377 static char *
378 get_zfs_property(char *dataset, zfs_prop_t property)
380 zfs_handle_t *handle = NULL;
381 char shareopts[ZFS_MAXPROPLEN];
382 libzfs_handle_t *libhandle;
384 libhandle = libzfs_init();
385 if (libhandle != NULL) {
386 handle = zfs_open(libhandle, dataset, ZFS_TYPE_FILESYSTEM);
387 if (handle != NULL) {
388 if (zfs_prop_get(handle, property, shareopts,
389 sizeof (shareopts), NULL, NULL, 0,
390 B_FALSE) == 0) {
391 zfs_close(handle);
392 libzfs_fini(libhandle);
393 return (strdup(shareopts));
395 zfs_close(handle);
397 libzfs_fini(libhandle);
399 return (NULL);
403 * sa_zfs_is_shared(handle, path)
405 * Check to see if the ZFS path provided has the sharenfs option set
406 * or not.
410 sa_zfs_is_shared(sa_handle_t sahandle, char *path)
412 int ret = 0;
413 char *dataset;
414 zfs_handle_t *handle = NULL;
415 char shareopts[ZFS_MAXPROPLEN];
416 libzfs_handle_t *libhandle;
418 dataset = get_zfs_dataset((sa_handle_t)sahandle, path, B_FALSE);
419 if (dataset != NULL) {
420 libhandle = libzfs_init();
421 if (libhandle != NULL) {
422 handle = zfs_open(libhandle, dataset,
423 ZFS_TYPE_FILESYSTEM);
424 if (handle != NULL) {
425 if (zfs_prop_get(handle, ZFS_PROP_SHARENFS,
426 shareopts, sizeof (shareopts), NULL, NULL,
427 0, B_FALSE) == 0 &&
428 strcmp(shareopts, "off") != 0) {
429 ret = 1; /* it is shared */
431 zfs_close(handle);
433 libzfs_fini(libhandle);
435 free(dataset);
437 return (ret);
441 * find_or_create_group(handle, groupname, proto, *err)
443 * While walking the ZFS tree, we need to add shares to a defined
444 * group. If the group doesn't exist, create it first, making sure it
445 * is marked as a ZFS group.
447 * Note that all ZFS shares are in a subgroup of the top level group
448 * called "zfs".
451 static sa_group_t
452 find_or_create_group(sa_handle_t handle, char *groupname, char *proto, int *err)
454 sa_group_t group;
455 sa_optionset_t optionset;
456 int ret = SA_OK;
459 * we check to see if the "zfs" group exists. Since this
460 * should be the top level group, we don't want the
461 * parent. This is to make sure the zfs group has been created
462 * and to created if it hasn't been.
464 group = sa_get_group(handle, groupname);
465 if (group == NULL) {
466 group = sa_create_group(handle, groupname, &ret);
468 /* make sure this is flagged as a ZFS group */
469 if (group != NULL)
470 ret = sa_set_group_attr(group, "zfs", "true");
472 if (group != NULL) {
473 if (proto != NULL) {
474 optionset = sa_get_optionset(group, proto);
475 if (optionset == NULL)
476 optionset = sa_create_optionset(group, proto);
479 if (err != NULL)
480 *err = ret;
481 return (group);
485 * find_or_create_zfs_subgroup(groupname, optstring, *err)
487 * ZFS shares will be in a subgroup of the "zfs" master group. This
488 * function looks to see if the groupname exists and returns it if it
489 * does or else creates a new one with the specified name and returns
490 * that. The "zfs" group will exist before we get here, but we make
491 * sure just in case.
493 * err must be a valid pointer.
496 static sa_group_t
497 find_or_create_zfs_subgroup(sa_handle_t handle, char *groupname, char *proto,
498 char *optstring, int *err)
500 sa_group_t group = NULL;
501 sa_group_t zfs;
502 char *name;
503 char *options;
505 /* start with the top-level "zfs" group */
506 zfs = sa_get_group(handle, "zfs");
507 *err = SA_OK;
508 if (zfs != NULL) {
509 for (group = sa_get_sub_group(zfs); group != NULL;
510 group = sa_get_next_group(group)) {
511 name = sa_get_group_attr(group, "name");
512 if (name != NULL && strcmp(name, groupname) == 0) {
513 /* have the group so break out of here */
514 sa_free_attr_string(name);
515 break;
517 if (name != NULL)
518 sa_free_attr_string(name);
521 if (group == NULL) {
523 * Need to create the sub-group since it doesn't exist
525 group = _sa_create_zfs_group(zfs, groupname);
526 if (group == NULL) {
527 *err = SA_NO_MEMORY;
528 return (NULL);
530 set_node_attr(group, "zfs", "true");
532 if (strcmp(optstring, "on") == 0)
533 optstring = "rw";
534 options = strdup(optstring);
535 if (options != NULL) {
536 *err = sa_parse_legacy_options(group, options,
537 proto);
538 /* If no optionset, add one. */
539 if (sa_get_optionset(group, proto) == NULL)
540 (void) sa_create_optionset(group, proto);
543 * Do not forget to update an optionset of
544 * the parent group so that it contains
545 * all protocols its subgroups have.
547 if (sa_get_optionset(zfs, proto) == NULL)
548 (void) sa_create_optionset(zfs, proto);
550 free(options);
551 } else {
552 *err = SA_NO_MEMORY;
555 return (group);
559 * zfs_construct_resource(share, name, base, dataset)
561 * Add a resource to the share using name as a template. If name ==
562 * NULL, then construct a name based on the dataset value.
563 * name.
565 static void
566 zfs_construct_resource(sa_share_t share, char *dataset)
568 char buff[SA_MAX_RESOURCE_NAME + 1];
569 int ret = SA_OK;
571 (void) snprintf(buff, SA_MAX_RESOURCE_NAME, "%s", dataset);
572 sa_fix_resource_name(buff);
573 (void) sa_add_resource(share, buff, SA_SHARE_TRANSIENT, &ret);
577 * zfs_inherited(handle, source, sourcestr)
579 * handle case of inherited share{nfs,smb}. Pulled out of sa_get_zfs_shares
580 * for readability.
582 static int
583 zfs_inherited(sa_handle_t handle, sa_share_t share, char *sourcestr,
584 char *shareopts, char *mountpoint, char *proto, char *dataset)
586 int doshopt = 0;
587 int err = SA_OK;
588 sa_group_t group;
589 sa_resource_t resource;
590 uint64_t features;
593 * Need to find the "real" parent sub-group. It may not be
594 * mounted, but it was identified in the "sourcestr"
595 * variable. The real parent not mounted can occur if
596 * "canmount=off and sharenfs=on".
598 group = find_or_create_zfs_subgroup(handle, sourcestr, proto,
599 shareopts, &doshopt);
600 if (group != NULL) {
602 * We may need the first share for resource
603 * prototype. We only care about it if it has a
604 * resource that sets a prefix value.
606 if (share == NULL)
607 share = _sa_add_share(group, mountpoint,
608 SA_SHARE_TRANSIENT, &err,
609 (uint64_t)SA_FEATURE_NONE);
611 * some options may only be on shares. If the opt
612 * string contains one of those, we put it just on the
613 * share.
615 if (share != NULL && doshopt == SA_PROP_SHARE_ONLY) {
616 char *options;
617 options = strdup(shareopts);
618 if (options != NULL) {
619 set_node_attr(share, "dataset", dataset);
620 err = sa_parse_legacy_options(share, options,
621 proto);
622 set_node_attr(share, "dataset", NULL);
623 free(options);
625 if (sa_get_optionset(group, proto) == NULL)
626 (void) sa_create_optionset(group, proto);
628 features = sa_proto_get_featureset(proto);
629 if (share != NULL && features & SA_FEATURE_RESOURCE) {
631 * We have a share and the protocol requires
632 * that at least one resource exist (probably
633 * SMB). We need to make sure that there is at
634 * least one.
636 resource = sa_get_share_resource(share, NULL);
637 if (resource == NULL) {
638 zfs_construct_resource(share, dataset);
641 } else {
642 err = SA_NO_MEMORY;
644 return (err);
648 * zfs_notinherited(group, share, mountpoint, shareopts, proto, dataset,
649 * grouperr)
651 * handle case where this is the top of a sub-group in ZFS. Pulled out
652 * of sa_get_zfs_shares for readability. We need the grouperr from the
653 * creation of the subgroup to know whether to add the public
654 * property, etc. to the specific share.
656 static int
657 zfs_notinherited(sa_group_t group, sa_share_t share, char *mountpoint,
658 char *shareopts, char *proto, char *dataset, int grouperr)
660 int err = SA_OK;
661 sa_resource_t resource;
662 uint64_t features;
664 set_node_attr(group, "zfs", "true");
665 if (share == NULL)
666 share = _sa_add_share(group, mountpoint, SA_SHARE_TRANSIENT,
667 &err, (uint64_t)SA_FEATURE_NONE);
669 if (err != SA_OK)
670 return (err);
672 if (strcmp(shareopts, "on") == 0)
673 shareopts = "";
674 if (shareopts != NULL) {
675 char *options;
676 if (grouperr == SA_PROP_SHARE_ONLY) {
678 * Some properties may only be on shares, but
679 * due to the ZFS sub-groups being artificial,
680 * we sometimes get this and have to deal with
681 * it. We do it by attempting to put it on the
682 * share.
684 options = strdup(shareopts);
685 if (options != NULL) {
686 err = sa_parse_legacy_options(share,
687 options, proto);
688 free(options);
691 /* Unmark the share's changed state */
692 set_node_attr(share, "changed", NULL);
694 features = sa_proto_get_featureset(proto);
695 if (share != NULL && features & SA_FEATURE_RESOURCE) {
697 * We have a share and the protocol requires that at
698 * least one resource exist (probably SMB). We need to
699 * make sure that there is at least one.
701 resource = sa_get_share_resource(share, NULL);
702 if (resource == NULL) {
703 zfs_construct_resource(share, dataset);
706 return (err);
710 * zfs_grp_error(err)
712 * Print group create error, but only once. If err is 0 do the
713 * print else don't.
716 static void
717 zfs_grp_error(int err)
719 if (err == 0) {
720 /* only print error once */
721 (void) fprintf(stderr, dgettext(TEXT_DOMAIN,
722 "Cannot create ZFS subgroup during initialization:"
723 " %s\n"), sa_errorstr(SA_SYSTEM_ERR));
728 * zfs_process_share(handle, share, mountpoint, proto, source,
729 * shareopts, sourcestr)
731 * Creates the subgroup, if necessary and adds shares, resources
732 * and properties.
735 sa_zfs_process_share(sa_handle_t handle, sa_group_t group, sa_share_t share,
736 char *mountpoint, char *proto, zprop_source_t source, char *shareopts,
737 char *sourcestr, char *dataset)
739 int err = SA_OK;
741 if (source & ZPROP_SRC_INHERITED) {
742 err = zfs_inherited(handle, share, sourcestr, shareopts,
743 mountpoint, proto, dataset);
744 } else {
745 group = find_or_create_zfs_subgroup(handle, dataset, proto,
746 shareopts, &err);
747 if (group == NULL) {
748 static boolean_t reported_error = B_FALSE;
750 * There is a problem, but we can't do
751 * anything about it at this point so we issue
752 * a warning and move on.
754 zfs_grp_error(reported_error);
755 reported_error = B_TRUE;
757 set_node_attr(group, "zfs", "true");
759 * Add share with local opts via zfs_notinherited.
761 err = zfs_notinherited(group, share, mountpoint, shareopts,
762 proto, dataset, err);
764 return (err);
768 * Walk the mnttab for all zfs mounts and determine which are
769 * shared. Find or create the appropriate group/sub-group to contain
770 * the shares.
772 * All shares are in a sub-group that will hold the properties. This
773 * allows representing the inherited property model.
775 * One area of complication is if "sharenfs" is set at one level of
776 * the directory tree and "sharesmb" is set at a different level, the
777 * a sub-group must be formed at the lower level for both
778 * protocols. That is the nature of the problem in CR 6667349.
780 static int
781 sa_get_zfs_share_common(sa_handle_t handle, zfs_handle_t *fs_handle, char *path,
782 sa_group_t zfsgroup)
784 boolean_t smb, nfs;
785 boolean_t smb_inherited, nfs_inherited;
786 char nfsshareopts[ZFS_MAXPROPLEN];
787 char smbshareopts[ZFS_MAXPROPLEN];
788 char nfssourcestr[ZFS_MAXPROPLEN];
789 char smbsourcestr[ZFS_MAXPROPLEN];
790 char mountpoint[ZFS_MAXPROPLEN];
791 int err = SA_OK;
792 zprop_source_t source;
793 sa_share_t share;
794 char *dataset;
796 source = ZPROP_SRC_ALL;
797 /* If no mountpoint, skip. */
798 if (zfs_prop_get(fs_handle, ZFS_PROP_MOUNTPOINT,
799 mountpoint, sizeof (mountpoint), NULL, NULL, 0,
800 B_FALSE) != 0)
801 return (SA_SYSTEM_ERR);
803 if (path != NULL)
804 (void) strncpy(path, mountpoint, sizeof (mountpoint));
806 * zfs_get_name value must not be freed. It is just a
807 * pointer to a value in the handle.
809 if ((dataset = (char *)zfs_get_name(fs_handle)) == NULL)
810 return (SA_SYSTEM_ERR);
813 * only deal with "mounted" file systems since
814 * unmounted file systems can't actually be shared.
817 if (!zfs_is_mounted(fs_handle, NULL))
818 return (SA_SYSTEM_ERR);
820 nfs = nfs_inherited = B_FALSE;
822 if (zfs_prop_get(fs_handle, ZFS_PROP_SHARENFS, nfsshareopts,
823 sizeof (nfsshareopts), &source, nfssourcestr,
824 ZFS_MAXPROPLEN, B_FALSE) == 0 &&
825 strcmp(nfsshareopts, "off") != 0) {
826 if (source & ZPROP_SRC_INHERITED)
827 nfs_inherited = B_TRUE;
828 else
829 nfs = B_TRUE;
832 smb = smb_inherited = B_FALSE;
833 if (zfs_prop_get(fs_handle, ZFS_PROP_SHARESMB, smbshareopts,
834 sizeof (smbshareopts), &source, smbsourcestr,
835 ZFS_MAXPROPLEN, B_FALSE) == 0 &&
836 strcmp(smbshareopts, "off") != 0) {
837 if (source & ZPROP_SRC_INHERITED)
838 smb_inherited = B_TRUE;
839 else
840 smb = B_TRUE;
844 * If the mountpoint is already shared, it must be a
845 * non-ZFS share. We want to remove the share from its
846 * parent group and reshare it under ZFS.
848 share = sa_find_share(handle, mountpoint);
849 if (share != NULL &&
850 (nfs || smb || nfs_inherited || smb_inherited)) {
851 err = sa_remove_share(share);
852 share = NULL;
856 * At this point, we have the information needed to
857 * determine what to do with the share.
859 * If smb or nfs is set, we have a new sub-group.
860 * If smb_inherit and/or nfs_inherit is set, then
861 * place on an existing sub-group. If both are set,
862 * the existing sub-group is the closest up the tree.
864 if (nfs || smb) {
866 * Non-inherited is the straightforward
867 * case. sa_zfs_process_share handles it
868 * directly. Make sure that if the "other"
869 * protocol is inherited, that we treat it as
870 * non-inherited as well.
872 if (nfs || nfs_inherited) {
873 err = sa_zfs_process_share(handle, zfsgroup,
874 share, mountpoint, "nfs",
875 0, nfsshareopts,
876 nfssourcestr, dataset);
877 share = sa_find_share(handle, mountpoint);
879 if (smb || smb_inherited) {
880 err = sa_zfs_process_share(handle, zfsgroup,
881 share, mountpoint, "smb",
882 0, smbshareopts,
883 smbsourcestr, dataset);
885 } else if (nfs_inherited || smb_inherited) {
886 char *grpdataset;
888 * If we only have inherited groups, it is
889 * important to find the closer of the two if
890 * the protocols are set at different
891 * levels. The closest sub-group is the one we
892 * want to work with.
894 if (nfs_inherited && smb_inherited) {
895 if (strcmp(nfssourcestr, smbsourcestr) <= 0)
896 grpdataset = nfssourcestr;
897 else
898 grpdataset = smbsourcestr;
899 } else if (nfs_inherited) {
900 grpdataset = nfssourcestr;
901 } else if (smb_inherited) {
902 grpdataset = smbsourcestr;
904 if (nfs_inherited) {
905 err = sa_zfs_process_share(handle, zfsgroup,
906 share, mountpoint, "nfs",
907 ZPROP_SRC_INHERITED, nfsshareopts,
908 grpdataset, dataset);
909 share = sa_find_share(handle, mountpoint);
911 if (smb_inherited) {
912 err = sa_zfs_process_share(handle, zfsgroup,
913 share, mountpoint, "smb",
914 ZPROP_SRC_INHERITED, smbshareopts,
915 grpdataset, dataset);
918 return (err);
922 * Handles preparing generic objects such as the libzfs handle and group for
923 * sa_get_one_zfs_share, sa_get_zfs_share_for_name, and sa_get_zfs_shares.
925 static int
926 prep_zfs_handle_and_group(sa_handle_t handle, char *groupname,
927 libzfs_handle_t **zfs_libhandle, sa_group_t *zfsgroup, int *err)
930 * If we can't access libzfs, don't bother doing anything.
932 *zfs_libhandle = ((sa_handle_impl_t)handle)->zfs_libhandle;
933 if (*zfs_libhandle == NULL)
934 return (SA_SYSTEM_ERR);
936 *zfsgroup = find_or_create_group(handle, groupname, NULL, err);
937 return (SA_OK);
941 * The O.G. zfs share preparation function. This initializes all zfs shares for
942 * use with libshare.
945 sa_get_zfs_shares(sa_handle_t handle, char *groupname)
947 sa_group_t zfsgroup;
948 zfs_handle_t **zlist;
949 size_t count = 0;
950 libzfs_handle_t *zfs_libhandle;
951 int err;
953 if ((err = prep_zfs_handle_and_group(handle, groupname, &zfs_libhandle,
954 &zfsgroup, &err)) != SA_OK) {
955 return (err);
957 /* Not an error, this could be a legacy condition */
958 if (zfsgroup == NULL)
959 return (SA_OK);
962 * need to walk the mounted ZFS pools and datasets to
963 * find shares that are possible.
965 get_all_filesystems((sa_handle_impl_t)handle, &zlist, &count);
966 qsort(zlist, count, sizeof (void *), mountpoint_compare);
968 for (int i = 0; i < count; i++) {
969 err = sa_get_zfs_share_common(handle, zlist[i], NULL, zfsgroup);
972 * Don't need to free the "zlist" variable since it is only a
973 * pointer to a cached value that will be freed when
974 * sa_fini() is called.
976 return (err);
980 * Initializes only the handles specified in the sharearg for use with libshare.
981 * This is used as a performance optimization relative to sa_get_zfs_shares.
984 sa_get_one_zfs_share(sa_handle_t handle, char *groupname,
985 sa_init_selective_arg_t *sharearg, char ***paths, size_t *paths_len)
987 sa_group_t zfsgroup;
988 libzfs_handle_t *zfs_libhandle;
989 int err;
991 if ((err = prep_zfs_handle_and_group(handle, groupname, &zfs_libhandle,
992 &zfsgroup, &err)) != SA_OK) {
993 return (err);
995 /* Not an error, this could be a legacy condition */
996 if (zfsgroup == NULL)
997 return (SA_OK);
999 *paths_len = sharearg->zhandle_len;
1000 *paths = calloc(*paths_len, sizeof (char *));
1001 for (int i = 0; i < sharearg->zhandle_len; ++i) {
1002 zfs_handle_t *fs_handle =
1003 ((zfs_handle_t **)(sharearg->zhandle_arr))[i];
1004 if (fs_handle == NULL) {
1005 /* Free non-null elements of the paths array */
1006 for (int free_idx = 0; free_idx < *paths_len;
1007 ++free_idx) {
1008 if ((*paths)[free_idx] != NULL)
1009 free((*paths)[free_idx]);
1011 free(*paths);
1012 *paths = NULL;
1013 *paths_len = 0;
1014 return (SA_SYSTEM_ERR);
1016 (*paths)[i] = malloc(sizeof (char) * ZFS_MAXPROPLEN);
1017 err |= sa_get_zfs_share_common(handle, fs_handle, (*paths)[i],
1018 zfsgroup);
1021 return (err);
1025 * Initializes only the share with the specified sharename for use with
1026 * libshare.
1029 sa_get_zfs_share_for_name(sa_handle_t handle, char *groupname,
1030 const char *sharename, char *outpath)
1032 sa_group_t zfsgroup;
1033 libzfs_handle_t *zfs_libhandle;
1034 int err;
1036 if ((err = prep_zfs_handle_and_group(handle, groupname, &zfs_libhandle,
1037 &zfsgroup, &err)) != SA_OK) {
1038 return (err);
1040 /* Not an error, this could be a legacy condition */
1041 if (zfsgroup == NULL)
1042 return (SA_OK);
1044 zfs_handle_t *fs_handle = zfs_open(zfs_libhandle,
1045 sharename + strspn(sharename, "/"), ZFS_TYPE_DATASET);
1046 if (fs_handle == NULL)
1047 return (SA_SYSTEM_ERR);
1049 err = sa_get_zfs_share_common(handle, fs_handle, outpath, zfsgroup);
1050 zfs_close(fs_handle);
1051 return (err);
1056 #define COMMAND "/usr/sbin/zfs"
1059 * sa_zfs_set_sharenfs(group, path, on)
1061 * Update the "sharenfs" property on the path. If on is true, then set
1062 * to the properties on the group or "on" if no properties are
1063 * defined. Set to "off" if on is false.
1067 sa_zfs_set_sharenfs(sa_group_t group, char *path, int on)
1069 int ret = SA_NOT_IMPLEMENTED;
1070 char *command;
1072 command = malloc(ZFS_MAXPROPLEN * 2);
1073 if (command != NULL) {
1074 char *opts = NULL;
1075 char *dataset = NULL;
1076 FILE *pfile;
1077 sa_handle_impl_t impl_handle;
1078 /* for now, NFS is always available for "zfs" */
1079 if (on) {
1080 opts = sa_proto_legacy_format("nfs", group, 1);
1081 if (opts != NULL && strlen(opts) == 0) {
1082 free(opts);
1083 opts = strdup("on");
1087 impl_handle = (sa_handle_impl_t)sa_find_group_handle(group);
1088 assert(impl_handle != NULL);
1089 if (impl_handle != NULL)
1090 dataset = get_zfs_dataset(impl_handle, path, B_FALSE);
1091 else
1092 ret = SA_SYSTEM_ERR;
1094 if (dataset != NULL) {
1095 (void) snprintf(command, ZFS_MAXPROPLEN * 2,
1096 "%s set sharenfs=\"%s\" %s", COMMAND,
1097 opts != NULL ? opts : "off", dataset);
1098 pfile = popen(command, "r");
1099 if (pfile != NULL) {
1100 ret = pclose(pfile);
1101 if (ret != 0)
1102 ret = SA_SYSTEM_ERR;
1105 free(opts);
1106 free(dataset);
1107 free(command);
1109 return (ret);
1113 * add_resources(share, opt)
1115 * Add resource properties to those in "opt". Resources are prefixed
1116 * with name=resourcename.
1118 static char *
1119 add_resources(sa_share_t share, char *opt)
1121 char *newopt = NULL;
1122 char *propstr;
1123 sa_resource_t resource;
1125 newopt = strdup(opt);
1126 if (newopt == NULL)
1127 return (newopt);
1129 for (resource = sa_get_share_resource(share, NULL);
1130 resource != NULL;
1131 resource = sa_get_next_resource(resource)) {
1132 char *name;
1133 size_t size;
1135 name = sa_get_resource_attr(resource, "name");
1136 if (name == NULL) {
1137 free(newopt);
1138 return (NULL);
1140 size = strlen(name) + strlen(opt) + sizeof ("name=") + 1;
1141 newopt = calloc(1, size);
1142 if (newopt != NULL)
1143 (void) snprintf(newopt, size, "%s,name=%s", opt, name);
1144 sa_free_attr_string(name);
1145 free(opt);
1146 opt = newopt;
1147 propstr = sa_proto_legacy_format("smb", resource, 0);
1148 if (propstr == NULL) {
1149 free(opt);
1150 return (NULL);
1152 size = strlen(propstr) + strlen(opt) + 2;
1153 newopt = calloc(1, size);
1154 if (newopt != NULL)
1155 (void) snprintf(newopt, size, "%s,%s", opt, propstr);
1156 free(opt);
1157 opt = newopt;
1159 return (opt);
1163 * sa_zfs_set_sharesmb(group, path, on)
1165 * Update the "sharesmb" property on the path. If on is true, then set
1166 * to the properties on the group or "on" if no properties are
1167 * defined. Set to "off" if on is false.
1171 sa_zfs_set_sharesmb(sa_group_t group, char *path, int on)
1173 int ret = SA_NOT_IMPLEMENTED;
1174 char *command;
1175 sa_share_t share;
1177 /* In case SMB not enabled */
1178 if (sa_get_optionset(group, "smb") == NULL)
1179 return (SA_NOT_SUPPORTED);
1181 command = malloc(ZFS_MAXPROPLEN * 2);
1182 if (command != NULL) {
1183 char *opts = NULL;
1184 char *dataset = NULL;
1185 FILE *pfile;
1186 sa_handle_impl_t impl_handle;
1188 if (on) {
1189 char *newopt;
1191 share = sa_get_share(group, NULL);
1192 opts = sa_proto_legacy_format("smb", share, 1);
1193 if (opts != NULL && strlen(opts) == 0) {
1194 free(opts);
1195 opts = strdup("on");
1197 newopt = add_resources(opts, share);
1198 free(opts);
1199 opts = newopt;
1202 impl_handle = (sa_handle_impl_t)sa_find_group_handle(group);
1203 assert(impl_handle != NULL);
1204 if (impl_handle != NULL)
1205 dataset = get_zfs_dataset(impl_handle, path, B_FALSE);
1206 else
1207 ret = SA_SYSTEM_ERR;
1209 if (dataset != NULL) {
1210 (void) snprintf(command, ZFS_MAXPROPLEN * 2,
1211 "echo %s set sharesmb=\"%s\" %s", COMMAND,
1212 opts != NULL ? opts : "off", dataset);
1213 pfile = popen(command, "r");
1214 if (pfile != NULL) {
1215 ret = pclose(pfile);
1216 if (ret != 0)
1217 ret = SA_SYSTEM_ERR;
1220 free(opts);
1221 free(dataset);
1222 free(command);
1224 return (ret);
1228 * sa_zfs_update(group)
1230 * call back to ZFS to update the share if necessary.
1231 * Don't do it if it isn't a real change.
1234 sa_zfs_update(sa_group_t group)
1236 sa_optionset_t protopt;
1237 sa_group_t parent;
1238 char *command;
1239 char *optstring;
1240 int ret = SA_OK;
1241 int doupdate = 0;
1242 FILE *pfile;
1244 if (sa_is_share(group))
1245 parent = sa_get_parent_group(group);
1246 else
1247 parent = group;
1249 if (parent != NULL) {
1250 command = malloc(ZFS_MAXPROPLEN * 2);
1251 if (command == NULL)
1252 return (SA_NO_MEMORY);
1254 *command = '\0';
1255 for (protopt = sa_get_optionset(parent, NULL); protopt != NULL;
1256 protopt = sa_get_next_optionset(protopt)) {
1258 char *proto = sa_get_optionset_attr(protopt, "type");
1259 char *path;
1260 char *dataset = NULL;
1261 char *zfsopts = NULL;
1263 if (sa_is_share(group)) {
1264 path = sa_get_share_attr((sa_share_t)group,
1265 "path");
1266 if (path != NULL) {
1267 sa_handle_impl_t impl_handle;
1269 impl_handle = sa_find_group_handle(
1270 group);
1271 if (impl_handle != NULL)
1272 dataset = get_zfs_dataset(
1273 impl_handle, path, B_FALSE);
1274 else
1275 ret = SA_SYSTEM_ERR;
1277 sa_free_attr_string(path);
1279 } else {
1280 dataset = sa_get_group_attr(group, "name");
1282 /* update only when there is an optstring found */
1283 doupdate = 0;
1284 if (proto != NULL && dataset != NULL) {
1285 optstring = sa_proto_legacy_format(proto,
1286 group, 1);
1287 zfsopts = get_zfs_property(dataset,
1288 ZFS_PROP_SHARENFS);
1290 if (optstring != NULL && zfsopts != NULL) {
1291 if (strcmp(optstring, zfsopts) != 0)
1292 doupdate++;
1294 if (doupdate) {
1295 if (optstring != NULL &&
1296 strlen(optstring) > 0) {
1297 (void) snprintf(command,
1298 ZFS_MAXPROPLEN * 2,
1299 "%s set share%s=%s %s",
1300 COMMAND, proto,
1301 optstring, dataset);
1302 } else {
1303 (void) snprintf(command,
1304 ZFS_MAXPROPLEN * 2,
1305 "%s set share%s=on %s",
1306 COMMAND, proto,
1307 dataset);
1309 pfile = popen(command, "r");
1310 if (pfile != NULL)
1311 ret = pclose(pfile);
1312 switch (ret) {
1313 default:
1314 case 1:
1315 ret = SA_SYSTEM_ERR;
1316 break;
1317 case 2:
1318 ret = SA_SYNTAX_ERR;
1319 break;
1320 case 0:
1321 break;
1324 free(optstring);
1325 free(zfsopts);
1327 if (proto != NULL)
1328 sa_free_attr_string(proto);
1329 free(dataset);
1331 free(command);
1333 return (ret);
1337 * sa_group_is_zfs(group)
1339 * Given the group, determine if the zfs attribute is set.
1343 sa_group_is_zfs(sa_group_t group)
1345 char *zfs;
1346 int ret = 0;
1348 zfs = sa_get_group_attr(group, "zfs");
1349 if (zfs != NULL) {
1350 ret = 1;
1351 sa_free_attr_string(zfs);
1353 return (ret);
1357 * sa_path_is_zfs(path)
1359 * Check to see if the file system path represents is of type "zfs".
1363 sa_path_is_zfs(char *path)
1365 char *fstype;
1366 int ret = 0;
1368 fstype = sa_fstype(path);
1369 if (fstype != NULL && strcmp(fstype, "zfs") == 0)
1370 ret = 1;
1371 if (fstype != NULL)
1372 sa_free_fstype(fstype);
1373 return (ret);
1377 sa_sharetab_fill_zfs(sa_share_t share, share_t *sh, char *proto)
1379 char *path;
1381 /* Make sure path is valid */
1383 path = sa_get_share_attr(share, "path");
1384 if (path != NULL) {
1385 (void) memset(sh, 0, sizeof (sh));
1386 (void) sa_fillshare(share, proto, sh);
1387 sa_free_attr_string(path);
1388 return (0);
1389 } else
1390 return (1);
1393 #define SMAX(i, j) \
1394 if ((j) > (i)) { \
1395 (i) = (j); \
1399 sa_share_zfs(sa_share_t share, sa_resource_t resource, char *path, share_t *sh,
1400 void *exportdata, zfs_share_op_t operation)
1402 libzfs_handle_t *libhandle;
1403 sa_group_t group;
1404 sa_handle_t sahandle;
1405 char *dataset;
1406 int err = EINVAL;
1407 int i, j;
1408 char newpath[MAXPATHLEN];
1409 char *pathp;
1412 * First find the dataset name
1414 if ((group = sa_get_parent_group(share)) == NULL) {
1415 return (EINVAL);
1417 if ((sahandle = sa_find_group_handle(group)) == NULL) {
1418 return (EINVAL);
1422 * If get_zfs_dataset fails, see if it is a subdirectory
1425 pathp = path;
1426 while ((dataset = get_zfs_dataset(sahandle, pathp, B_TRUE)) == NULL) {
1427 char *p;
1429 if (pathp == path) {
1430 (void) strlcpy(newpath, path, sizeof (newpath));
1431 pathp = newpath;
1435 * Make sure only one leading '/' This condition came
1436 * about when using HAStoragePlus which insisted on
1437 * putting an extra leading '/' in the ZFS path
1438 * name. The problem is fixed in other areas, but this
1439 * will catch any other ways that a double slash might
1440 * get introduced.
1442 while (*pathp == '/' && *(pathp + 1) == '/')
1443 pathp++;
1446 * chop off part of path, but if we are at root then
1447 * make sure path is a /
1449 if ((strlen(pathp) > 1) && (p = strrchr(pathp, '/'))) {
1450 if (pathp == p) {
1451 *(p + 1) = '\0'; /* skip over /, root case */
1452 } else {
1453 *p = '\0';
1455 } else {
1456 return (EINVAL);
1460 libhandle = libzfs_init();
1461 if (libhandle != NULL) {
1462 char *resource_name;
1464 i = (sh->sh_path ? strlen(sh->sh_path) : 0);
1465 sh->sh_size = i;
1467 j = (sh->sh_res ? strlen(sh->sh_res) : 0);
1468 sh->sh_size += j;
1469 SMAX(i, j);
1471 j = (sh->sh_fstype ? strlen(sh->sh_fstype) : 0);
1472 sh->sh_size += j;
1473 SMAX(i, j);
1475 j = (sh->sh_opts ? strlen(sh->sh_opts) : 0);
1476 sh->sh_size += j;
1477 SMAX(i, j);
1479 j = (sh->sh_descr ? strlen(sh->sh_descr) : 0);
1480 sh->sh_size += j;
1481 SMAX(i, j);
1483 resource_name = sa_get_resource_attr(resource, "name");
1485 err = zfs_deleg_share_nfs(libhandle, dataset, path,
1486 resource_name, exportdata, sh, i, operation);
1487 if (err == SA_OK)
1488 sa_update_sharetab_ts(sahandle);
1489 else
1490 err = errno;
1491 if (resource_name)
1492 sa_free_attr_string(resource_name);
1494 libzfs_fini(libhandle);
1496 free(dataset);
1497 return (err);
1501 * sa_get_zfs_handle(handle)
1503 * Given an sa_handle_t, return the libzfs_handle_t *. This is only
1504 * used internally by libzfs. Needed in order to avoid including
1505 * libshare_impl.h in libzfs.
1508 libzfs_handle_t *
1509 sa_get_zfs_handle(sa_handle_t handle)
1511 sa_handle_impl_t implhandle = (sa_handle_impl_t)handle;
1513 return (implhandle->zfs_libhandle);
1517 * sa_get_zfs_info(libzfs, path, mountpoint, dataset)
1519 * Find the ZFS dataset and mountpoint for a given path
1522 sa_zfs_get_info(libzfs_handle_t *libzfs, char *path, char *mountpointp,
1523 char *datasetp)
1525 get_all_cbdata_t cb = { 0 };
1526 int i;
1527 char mountpoint[ZFS_MAXPROPLEN];
1528 char dataset[ZFS_MAXPROPLEN];
1529 char canmount[ZFS_MAXPROPLEN];
1530 char *dp;
1531 int count;
1532 int ret = 0;
1534 cb.cb_types = ZFS_TYPE_FILESYSTEM;
1536 if (libzfs == NULL)
1537 return (0);
1539 (void) zfs_iter_root(libzfs, get_one_filesystem, &cb);
1540 count = cb.cb_used;
1542 qsort(cb.cb_handles, count, sizeof (void *), mountpoint_compare);
1543 for (i = 0; i < count; i++) {
1544 /* must have a mountpoint */
1545 if (zfs_prop_get(cb.cb_handles[i], ZFS_PROP_MOUNTPOINT,
1546 mountpoint, sizeof (mountpoint),
1547 NULL, NULL, 0, B_FALSE) != 0) {
1548 /* no mountpoint */
1549 continue;
1552 /* mountpoint must be a path */
1553 if (strcmp(mountpoint, ZFS_MOUNTPOINT_NONE) == 0 ||
1554 strcmp(mountpoint, ZFS_MOUNTPOINT_LEGACY) == 0) {
1556 * Search mmttab for mountpoint
1559 if (get_legacy_mountpoint(path, dataset,
1560 ZFS_MAXPROPLEN, mountpoint,
1561 ZFS_MAXPROPLEN) == 0) {
1562 ret = 1;
1563 break;
1565 continue;
1568 /* canmount must be set */
1569 canmount[0] = '\0';
1570 if (zfs_prop_get(cb.cb_handles[i], ZFS_PROP_CANMOUNT, canmount,
1571 sizeof (canmount), NULL, NULL, 0, B_FALSE) != 0 ||
1572 strcmp(canmount, "off") == 0)
1573 continue;
1576 * have a mountable handle but want to skip those marked none
1577 * and legacy
1579 if (strcmp(mountpoint, path) == 0) {
1580 dp = (char *)zfs_get_name(cb.cb_handles[i]);
1581 if (dp != NULL) {
1582 if (datasetp != NULL)
1583 (void) strcpy(datasetp, dp);
1584 if (mountpointp != NULL)
1585 (void) strcpy(mountpointp, mountpoint);
1586 ret = 1;
1588 break;
1593 return (ret);
1597 * This method builds values for "sharesmb" property from the
1598 * nvlist argument. The values are returned in sharesmb_val variable.
1600 static int
1601 sa_zfs_sprintf_new_prop(nvlist_t *nvl, char *sharesmb_val)
1603 char cur_val[MAXPATHLEN];
1604 char *name, *val;
1605 nvpair_t *cur;
1606 int err = 0;
1608 cur = nvlist_next_nvpair(nvl, NULL);
1609 while (cur != NULL) {
1610 name = nvpair_name(cur);
1611 err = nvpair_value_string(cur, &val);
1612 if ((err != 0) || (name == NULL) || (val == NULL))
1613 return (-1);
1615 (void) snprintf(cur_val, MAXPATHLEN, "%s=%s,", name, val);
1616 (void) strlcat(sharesmb_val, cur_val, MAXPATHLEN);
1618 cur = nvlist_next_nvpair(nvl, cur);
1621 return (0);
1625 * This method builds values for "sharesmb" property from values
1626 * already existing on the share. The properties set via sa_zfs_sprint_new_prop
1627 * method are passed in sharesmb_val. If a existing property is already
1628 * set via sa_zfs_sprint_new_prop method, then they are not appended
1629 * to the sharesmb_val string. The returned sharesmb_val string is a combination
1630 * of new and existing values for 'sharesmb' property.
1632 static int
1633 sa_zfs_sprintf_existing_prop(zfs_handle_t *handle, char *sharesmb_val)
1635 char shareopts[ZFS_MAXPROPLEN], cur_val[MAXPATHLEN];
1636 char *token, *last, *value;
1638 if (zfs_prop_get(handle, ZFS_PROP_SHARESMB, shareopts,
1639 sizeof (shareopts), NULL, NULL, 0, B_FALSE) != 0)
1640 return (-1);
1642 if (strstr(shareopts, "=") == NULL)
1643 return (0);
1645 for (token = strtok_r(shareopts, ",", &last); token != NULL;
1646 token = strtok_r(NULL, ",", &last)) {
1647 value = strchr(token, '=');
1648 if (value == NULL)
1649 return (-1);
1650 *value++ = '\0';
1652 (void) snprintf(cur_val, MAXPATHLEN, "%s=", token);
1653 if (strstr(sharesmb_val, cur_val) == NULL) {
1654 (void) strlcat(cur_val, value, MAXPATHLEN);
1655 (void) strlcat(cur_val, ",", MAXPATHLEN);
1656 (void) strlcat(sharesmb_val, cur_val, MAXPATHLEN);
1660 return (0);
1664 * Sets the share properties on a ZFS share. For now, this method sets only
1665 * the "sharesmb" property.
1667 * This method includes building a comma seperated name-value string to be
1668 * set on the "sharesmb" property of a ZFS share. This name-value string is
1669 * build in 2 steps:
1670 * - New property values given as name-value pair are set first.
1671 * - Existing optionset properties, which are not part of the new properties
1672 * passed in step 1, are appended to the newly set properties.
1675 sa_zfs_setprop(sa_handle_t handle, char *path, nvlist_t *nvl)
1677 zfs_handle_t *z_fs;
1678 libzfs_handle_t *z_lib;
1679 char sharesmb_val[MAXPATHLEN];
1680 char *dataset, *lastcomma;
1682 if (nvlist_empty(nvl))
1683 return (0);
1685 if ((handle == NULL) || (path == NULL))
1686 return (-1);
1688 if ((dataset = get_zfs_dataset(handle, path, B_FALSE)) == NULL)
1689 return (-1);
1691 if ((z_lib = libzfs_init()) == NULL) {
1692 free(dataset);
1693 return (-1);
1696 z_fs = zfs_open(z_lib, dataset, ZFS_TYPE_DATASET);
1697 if (z_fs == NULL) {
1698 free(dataset);
1699 libzfs_fini(z_lib);
1700 return (-1);
1703 bzero(sharesmb_val, MAXPATHLEN);
1704 if (sa_zfs_sprintf_new_prop(nvl, sharesmb_val) != 0) {
1705 free(dataset);
1706 zfs_close(z_fs);
1707 libzfs_fini(z_lib);
1708 return (-1);
1711 if (sa_zfs_sprintf_existing_prop(z_fs, sharesmb_val) != 0) {
1712 free(dataset);
1713 zfs_close(z_fs);
1714 libzfs_fini(z_lib);
1715 return (-1);
1718 lastcomma = strrchr(sharesmb_val, ',');
1719 if ((lastcomma != NULL) && (lastcomma[1] == '\0'))
1720 *lastcomma = '\0';
1722 (void) zfs_prop_set(z_fs, zfs_prop_to_name(ZFS_PROP_SHARESMB),
1723 sharesmb_val);
1724 free(dataset);
1725 zfs_close(z_fs);
1726 libzfs_fini(z_lib);
1728 return (0);