Remove HAVE_ZPL from commands and libraries
[zfs.git] / lib / libzfs / libzfs_mount.c
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 (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
24  */
25
26 /*
27  * Routines to manage ZFS mounts.  We separate all the nasty routines that have
28  * to deal with the OS.  The following functions are the main entry points --
29  * they are used by mount and unmount and when changing a filesystem's
30  * mountpoint.
31  *
32  *      zfs_is_mounted()
33  *      zfs_mount()
34  *      zfs_unmount()
35  *      zfs_unmountall()
36  *
37  * This file also contains the functions used to manage sharing filesystems via
38  * NFS and iSCSI:
39  *
40  *      zfs_is_shared()
41  *      zfs_share()
42  *      zfs_unshare()
43  *
44  *      zfs_is_shared_nfs()
45  *      zfs_is_shared_smb()
46  *      zfs_share_proto()
47  *      zfs_shareall();
48  *      zfs_unshare_nfs()
49  *      zfs_unshare_smb()
50  *      zfs_unshareall_nfs()
51  *      zfs_unshareall_smb()
52  *      zfs_unshareall()
53  *      zfs_unshareall_bypath()
54  *
55  * The following functions are available for pool consumers, and will
56  * mount/unmount and share/unshare all datasets within pool:
57  *
58  *      zpool_enable_datasets()
59  *      zpool_disable_datasets()
60  */
61
62 #include <dirent.h>
63 #include <dlfcn.h>
64 #include <errno.h>
65 #include <libgen.h>
66 #include <libintl.h>
67 #include <stdio.h>
68 #include <stdlib.h>
69 #include <strings.h>
70 #include <unistd.h>
71 #include <zone.h>
72 #include <sys/mntent.h>
73 #include <sys/mount.h>
74 #include <sys/stat.h>
75 #ifdef HAVE_LIBSELINUX
76 #include <selinux/selinux.h>
77 #endif /* HAVE_LIBSELINUX */
78
79 #include <libzfs.h>
80
81 #include "libzfs_impl.h"
82
83 #include <libshare.h>
84 #include <sys/systeminfo.h>
85 #define MAXISALEN       257     /* based on sysinfo(2) man page */
86
87 static int zfs_share_proto(zfs_handle_t *, zfs_share_proto_t *);
88 zfs_share_type_t zfs_is_shared_proto(zfs_handle_t *, char **,
89     zfs_share_proto_t);
90
91 /*
92  * The share protocols table must be in the same order as the zfs_share_prot_t
93  * enum in libzfs_impl.h
94  */
95 typedef struct {
96         zfs_prop_t p_prop;
97         char *p_name;
98         int p_share_err;
99         int p_unshare_err;
100 } proto_table_t;
101
102 proto_table_t proto_table[PROTO_END] = {
103         {ZFS_PROP_SHARENFS, "nfs", EZFS_SHARENFSFAILED, EZFS_UNSHARENFSFAILED},
104         {ZFS_PROP_SHARESMB, "smb", EZFS_SHARESMBFAILED, EZFS_UNSHARESMBFAILED},
105 };
106
107 zfs_share_proto_t nfs_only[] = {
108         PROTO_NFS,
109         PROTO_END
110 };
111
112 zfs_share_proto_t smb_only[] = {
113         PROTO_SMB,
114         PROTO_END
115 };
116 zfs_share_proto_t share_all_proto[] = {
117         PROTO_NFS,
118         PROTO_SMB,
119         PROTO_END
120 };
121
122 /*
123  * Search for NFS and SMB exports for the given mountpoint and protocol, returning
124  * a zfs_share_type_t value.
125  */
126 static zfs_share_type_t
127 is_shared(libzfs_handle_t *hdl, const char *mountpoint, zfs_share_proto_t proto)
128 {
129         char buf[MAXPATHLEN], *tab;
130
131         if (hdl->libzfs_sharetab == NULL)
132                 return (SHARED_NOT_SHARED);
133
134         (void) fseek(hdl->libzfs_sharetab, 0, SEEK_SET);
135
136         /* Search /etc/exports for NFS exports */
137         /* FIXME: Assumes the file is tab delimited. */
138         while (fgets(buf, sizeof (buf), hdl->libzfs_sharetab) != NULL) {
139
140                 /* the mountpoint is the first entry on each line */
141                 if ((tab = strchr(buf, '\t')) == NULL)
142                         continue;
143
144                 *tab = '\0';
145                 if (strcmp(buf, mountpoint) == 0) {
146                         if (proto == PROTO_NFS)
147                                 return (SHARED_NFS);
148                         else
149                                 return (SHARED_NOT_SHARED);
150                 }
151         }
152
153         /* XXX: Search /etc/samba/smb.conf for SMB exports, return SHARED_SMB */
154
155         return (SHARED_NOT_SHARED);
156 }
157
158 /*
159  * Returns true if the specified directory is empty.  If we can't open the
160  * directory at all, return true so that the mount can fail with a more
161  * informative error message.
162  */
163 static boolean_t
164 dir_is_empty(const char *dirname)
165 {
166         DIR *dirp;
167         struct dirent64 *dp;
168
169         if ((dirp = opendir(dirname)) == NULL)
170                 return (B_TRUE);
171
172         while ((dp = readdir64(dirp)) != NULL) {
173
174                 if (strcmp(dp->d_name, ".") == 0 ||
175                     strcmp(dp->d_name, "..") == 0)
176                         continue;
177
178                 (void) closedir(dirp);
179                 return (B_FALSE);
180         }
181
182         (void) closedir(dirp);
183         return (B_TRUE);
184 }
185
186 /*
187  * Checks to see if the mount is active.  If the filesystem is mounted, we fill
188  * in 'where' with the current mountpoint, and return 1.  Otherwise, we return
189  * 0.
190  */
191 boolean_t
192 is_mounted(libzfs_handle_t *zfs_hdl, const char *special, char **where)
193 {
194         struct mnttab entry;
195
196         if (libzfs_mnttab_find(zfs_hdl, special, &entry) != 0)
197                 return (B_FALSE);
198
199         if (where != NULL)
200                 *where = zfs_strdup(zfs_hdl, entry.mnt_mountp);
201
202         return (B_TRUE);
203 }
204
205 boolean_t
206 zfs_is_mounted(zfs_handle_t *zhp, char **where)
207 {
208         return (is_mounted(zhp->zfs_hdl, zfs_get_name(zhp), where));
209 }
210
211 /*
212  * Returns true if the given dataset is mountable, false otherwise.  Returns the
213  * mountpoint in 'buf'.
214  */
215 static boolean_t
216 zfs_is_mountable(zfs_handle_t *zhp, char *buf, size_t buflen,
217     zprop_source_t *source)
218 {
219         char sourceloc[ZFS_MAXNAMELEN];
220         zprop_source_t sourcetype;
221
222         if (!zfs_prop_valid_for_type(ZFS_PROP_MOUNTPOINT, zhp->zfs_type))
223                 return (B_FALSE);
224
225         verify(zfs_prop_get(zhp, ZFS_PROP_MOUNTPOINT, buf, buflen,
226             &sourcetype, sourceloc, sizeof (sourceloc), B_FALSE) == 0);
227
228         if (strcmp(buf, ZFS_MOUNTPOINT_NONE) == 0 ||
229             strcmp(buf, ZFS_MOUNTPOINT_LEGACY) == 0)
230                 return (B_FALSE);
231
232         if (zfs_prop_get_int(zhp, ZFS_PROP_CANMOUNT) == ZFS_CANMOUNT_OFF)
233                 return (B_FALSE);
234
235         if (zfs_prop_get_int(zhp, ZFS_PROP_ZONED) &&
236             getzoneid() == GLOBAL_ZONEID)
237                 return (B_FALSE);
238
239         if (source)
240                 *source = sourcetype;
241
242         return (B_TRUE);
243 }
244
245 /*
246  * The filesystem is mounted by invoking the system mount utility rather
247  * than by the system call mount(2).  This ensures that the /etc/mtab
248  * file is correctly locked for the update.  Performing our own locking
249  * and /etc/mtab update requires making an unsafe assumption about how
250  * the mount utility performs its locking.  Unfortunately, this also means
251  * in the case of a mount failure we do not have the exact errno.  We must
252  * make due with return value from the mount process.
253  *
254  * In the long term a shared library called libmount is under development
255  * which provides a common API to address the locking and errno issues.
256  * Once the standard mount utility has been updated to use this library
257  * we can add an autoconf check to conditionally use it.
258  *
259  * http://www.kernel.org/pub/linux/utils/util-linux/libmount-docs/index.html
260  */
261
262 static int
263 do_mount(const char *src, const char *mntpt, char *opts)
264 {
265         char *argv[8] = {
266             "/bin/mount",
267             "-t", MNTTYPE_ZFS,
268             "-o", opts,
269             (char *)src,
270             (char *)mntpt,
271             (char *)NULL };
272         int rc;
273
274         /* Return only the most critical mount error */
275         rc = libzfs_run_process(argv[0], argv);
276         if (rc) {
277                 if (rc & MOUNT_FILEIO)
278                         return EIO;
279                 if (rc & MOUNT_USER)
280                         return EINTR;
281                 if (rc & MOUNT_SOFTWARE)
282                         return EPIPE;
283                 if (rc & MOUNT_SYSERR)
284                         return EAGAIN;
285                 if (rc & MOUNT_USAGE)
286                         return EINVAL;
287
288                 return ENXIO; /* Generic error */
289         }
290
291         return 0;
292 }
293
294 static int
295 do_unmount(const char *mntpt, int flags)
296 {
297         char force_opt[] = "-f";
298         char lazy_opt[] = "-l";
299         char *argv[7] = {
300             "/bin/umount",
301             "-t", MNTTYPE_ZFS,
302             NULL, NULL, NULL, NULL };
303         int rc, count = 3;
304
305         if (flags & MS_FORCE) {
306                 argv[count] = force_opt;
307                 count++;
308         }
309
310         if (flags & MS_DETACH) {
311                 argv[count] = lazy_opt;
312                 count++;
313         }
314
315         argv[count] = (char *)mntpt;
316         rc = libzfs_run_process(argv[0], argv);
317
318         return (rc ? EINVAL : 0);
319 }
320
321 /*
322  * Mount the given filesystem.
323  */
324 int
325 zfs_mount(zfs_handle_t *zhp, const char *options, int flags)
326 {
327         struct stat buf;
328         char mountpoint[ZFS_MAXPROPLEN];
329         char mntopts[MNT_LINE_MAX];
330         libzfs_handle_t *hdl = zhp->zfs_hdl;
331         int rc;
332
333         if (options == NULL)
334                 (void) strlcpy(mntopts, MNTOPT_DEFAULTS, sizeof (mntopts));
335         else
336                 (void) strlcpy(mntopts, options, sizeof (mntopts));
337
338         /*
339          * If the pool is imported read-only then all mounts must be read-only
340          */
341         if (zpool_get_prop_int(zhp->zpool_hdl, ZPOOL_PROP_READONLY, NULL))
342                 (void) strlcat(mntopts, "," MNTOPT_RO, sizeof (mntopts));
343
344         /*
345          * Append zfsutil option so the mount helper allow the mount
346          */
347         strlcat(mntopts, "," MNTOPT_ZFSUTIL, sizeof (mntopts));
348
349 #ifdef HAVE_LIBSELINUX
350         if (is_selinux_enabled())
351                 (void) strlcat(mntopts, ",context=\"system_u:"
352                     "object_r:file_t:s0\"", sizeof (mntopts));
353 #endif /* HAVE_LIBSELINUX */
354
355         if (!zfs_is_mountable(zhp, mountpoint, sizeof (mountpoint), NULL))
356                 return (0);
357
358         /* Create the directory if it doesn't already exist */
359         if (lstat(mountpoint, &buf) != 0) {
360                 if (mkdirp(mountpoint, 0755) != 0) {
361                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
362                             "failed to create mountpoint"));
363                         return (zfs_error_fmt(hdl, EZFS_MOUNTFAILED,
364                             dgettext(TEXT_DOMAIN, "cannot mount '%s'"),
365                             mountpoint));
366                 }
367         }
368
369         /*
370          * Determine if the mountpoint is empty.  If so, refuse to perform the
371          * mount.  We don't perform this check if 'remount' is specified.
372          */
373         if (strstr(mntopts, MNTOPT_REMOUNT) == NULL &&
374             !dir_is_empty(mountpoint)) {
375                 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
376                     "directory is not empty"));
377                 return (zfs_error_fmt(hdl, EZFS_MOUNTFAILED,
378                     dgettext(TEXT_DOMAIN, "cannot mount '%s'"), mountpoint));
379         }
380
381         /* perform the mount */
382         rc = do_mount(zfs_get_name(zhp), mountpoint, mntopts);
383         if (rc) {
384                 /*
385                  * Generic errors are nasty, but there are just way too many
386                  * from mount(), and they're well-understood.  We pick a few
387                  * common ones to improve upon.
388                  */
389                 if (rc == EBUSY) {
390                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
391                             "mountpoint or dataset is busy"));
392                 } else if (rc == EPERM) {
393                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
394                             "Insufficient privileges"));
395                 } else if (rc == ENOTSUP) {
396                         char buf[256];
397                         int spa_version;
398
399                         VERIFY(zfs_spa_version(zhp, &spa_version) == 0);
400                         (void) snprintf(buf, sizeof (buf),
401                             dgettext(TEXT_DOMAIN, "Can't mount a version %lld "
402                             "file system on a version %d pool. Pool must be"
403                             " upgraded to mount this file system."),
404                             (u_longlong_t)zfs_prop_get_int(zhp,
405                             ZFS_PROP_VERSION), spa_version);
406                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, buf));
407                 } else {
408                         zfs_error_aux(hdl, strerror(rc));
409                 }
410                 return (zfs_error_fmt(hdl, EZFS_MOUNTFAILED,
411                     dgettext(TEXT_DOMAIN, "cannot mount '%s'"),
412                     zhp->zfs_name));
413         }
414
415         /* add the mounted entry into our cache */
416         libzfs_mnttab_add(hdl, zfs_get_name(zhp), mountpoint, mntopts);
417         return (0);
418 }
419
420 /*
421  * Unmount a single filesystem.
422  */
423 static int
424 unmount_one(libzfs_handle_t *hdl, const char *mountpoint, int flags)
425 {
426         if (do_unmount(mountpoint, flags) != 0) {
427                 zfs_error_aux(hdl, strerror(errno));
428                 return (zfs_error_fmt(hdl, EZFS_UMOUNTFAILED,
429                     dgettext(TEXT_DOMAIN, "cannot unmount '%s'"),
430                     mountpoint));
431         }
432
433         return (0);
434 }
435
436 /*
437  * Unmount the given filesystem.
438  */
439 int
440 zfs_unmount(zfs_handle_t *zhp, const char *mountpoint, int flags)
441 {
442         libzfs_handle_t *hdl = zhp->zfs_hdl;
443         struct mnttab entry;
444         char *mntpt = NULL;
445
446         /* check to see if we need to unmount the filesystem */
447         if (mountpoint != NULL || ((zfs_get_type(zhp) == ZFS_TYPE_FILESYSTEM) &&
448             libzfs_mnttab_find(hdl, zhp->zfs_name, &entry) == 0)) {
449                 /*
450                  * mountpoint may have come from a call to
451                  * getmnt/getmntany if it isn't NULL. If it is NULL,
452                  * we know it comes from libzfs_mnttab_find which can
453                  * then get freed later. We strdup it to play it safe.
454                  */
455                 if (mountpoint == NULL)
456                         mntpt = zfs_strdup(hdl, entry.mnt_mountp);
457                 else
458                         mntpt = zfs_strdup(hdl, mountpoint);
459
460                 /*
461                  * Unshare and unmount the filesystem
462                  */
463                 if (zfs_unshare_proto(zhp, mntpt, share_all_proto) != 0)
464                         return (-1);
465
466                 if (unmount_one(hdl, mntpt, flags) != 0) {
467                         free(mntpt);
468                         (void) zfs_shareall(zhp);
469                         return (-1);
470                 }
471                 libzfs_mnttab_remove(hdl, zhp->zfs_name);
472                 free(mntpt);
473         }
474
475         return (0);
476 }
477
478 /*
479  * Unmount this filesystem and any children inheriting the mountpoint property.
480  * To do this, just act like we're changing the mountpoint property, but don't
481  * remount the filesystems afterwards.
482  */
483 int
484 zfs_unmountall(zfs_handle_t *zhp, int flags)
485 {
486         prop_changelist_t *clp;
487         int ret;
488
489         clp = changelist_gather(zhp, ZFS_PROP_MOUNTPOINT, 0, flags);
490         if (clp == NULL)
491                 return (-1);
492
493         ret = changelist_prefix(clp);
494         changelist_free(clp);
495
496         return (ret);
497 }
498
499 boolean_t
500 zfs_is_shared(zfs_handle_t *zhp)
501 {
502         zfs_share_type_t rc = 0;
503         zfs_share_proto_t *curr_proto;
504
505         if (ZFS_IS_VOLUME(zhp))
506                 return (B_FALSE);
507
508         for (curr_proto = share_all_proto; *curr_proto != PROTO_END;
509             curr_proto++)
510                 rc |= zfs_is_shared_proto(zhp, NULL, *curr_proto);
511
512         return (rc ? B_TRUE : B_FALSE);
513 }
514
515 int
516 zfs_share(zfs_handle_t *zhp)
517 {
518         assert(!ZFS_IS_VOLUME(zhp));
519         return (zfs_share_proto(zhp, share_all_proto));
520 }
521
522 int
523 zfs_unshare(zfs_handle_t *zhp)
524 {
525         assert(!ZFS_IS_VOLUME(zhp));
526         return (zfs_unshareall(zhp));
527 }
528
529 /*
530  * Check to see if the filesystem is currently shared.
531  */
532 zfs_share_type_t
533 zfs_is_shared_proto(zfs_handle_t *zhp, char **where, zfs_share_proto_t proto)
534 {
535         char *mountpoint;
536         zfs_share_type_t rc;
537
538         if (!zfs_is_mounted(zhp, &mountpoint))
539                 return (SHARED_NOT_SHARED);
540
541         if ((rc = is_shared(zhp->zfs_hdl, mountpoint, proto))) {
542                 if (where != NULL)
543                         *where = mountpoint;
544                 else
545                         free(mountpoint);
546                 return (rc);
547         } else {
548                 free(mountpoint);
549                 return (SHARED_NOT_SHARED);
550         }
551 }
552
553 boolean_t
554 zfs_is_shared_nfs(zfs_handle_t *zhp, char **where)
555 {
556         return (zfs_is_shared_proto(zhp, where,
557             PROTO_NFS) != SHARED_NOT_SHARED);
558 }
559
560 boolean_t
561 zfs_is_shared_smb(zfs_handle_t *zhp, char **where)
562 {
563         return (zfs_is_shared_proto(zhp, where,
564             PROTO_SMB) != SHARED_NOT_SHARED);
565 }
566
567 /*
568  * Make sure things will work if libshare isn't installed by using
569  * wrapper functions that check to see that the pointers to functions
570  * initialized in _zfs_init_libshare() are actually present.
571  */
572
573 static sa_handle_t (*_sa_init)(int);
574 static void (*_sa_fini)(sa_handle_t);
575 static sa_share_t (*_sa_find_share)(sa_handle_t, char *);
576 static int (*_sa_enable_share)(sa_share_t, char *);
577 static int (*_sa_disable_share)(sa_share_t, char *);
578 static char *(*_sa_errorstr)(int);
579 static int (*_sa_parse_legacy_options)(sa_group_t, char *, char *);
580 static boolean_t (*_sa_needs_refresh)(sa_handle_t *);
581 static libzfs_handle_t *(*_sa_get_zfs_handle)(sa_handle_t);
582 static int (*_sa_zfs_process_share)(sa_handle_t, sa_group_t, sa_share_t,
583     char *, char *, zprop_source_t, char *, char *, char *);
584 static void (*_sa_update_sharetab_ts)(sa_handle_t);
585
586 /*
587  * _zfs_init_libshare()
588  *
589  * Find the libshare.so.1 entry points that we use here and save the
590  * values to be used later. This is triggered by the runtime loader.
591  * Make sure the correct ISA version is loaded.
592  */
593 #ifdef __GNUC__
594 static void
595 _zfs_init_libshare(void) __attribute__((constructor));
596 #else
597 #pragma init(_zfs_init_libshare)
598 #endif
599 static void
600 _zfs_init_libshare(void)
601 {
602         void *libshare;
603         char path[MAXPATHLEN];
604         char isa[MAXISALEN];
605
606 #if defined(_LP64)
607         if (sysinfo(SI_ARCHITECTURE_64, isa, MAXISALEN) == -1)
608                 isa[0] = '\0';
609 #else
610         isa[0] = '\0';
611 #endif
612         (void) snprintf(path, MAXPATHLEN,
613             "/usr/lib/%s/libshare.so.1", isa);
614
615         if ((libshare = dlopen(path, RTLD_LAZY | RTLD_GLOBAL)) != NULL) {
616                 _sa_init = (sa_handle_t (*)(int))dlsym(libshare, "sa_init");
617                 _sa_fini = (void (*)(sa_handle_t))dlsym(libshare, "sa_fini");
618                 _sa_find_share = (sa_share_t (*)(sa_handle_t, char *))
619                     dlsym(libshare, "sa_find_share");
620                 _sa_enable_share = (int (*)(sa_share_t, char *))dlsym(libshare,
621                     "sa_enable_share");
622                 _sa_disable_share = (int (*)(sa_share_t, char *))dlsym(libshare,
623                     "sa_disable_share");
624                 _sa_errorstr = (char *(*)(int))dlsym(libshare, "sa_errorstr");
625                 _sa_parse_legacy_options = (int (*)(sa_group_t, char *, char *))
626                     dlsym(libshare, "sa_parse_legacy_options");
627                 _sa_needs_refresh = (boolean_t (*)(sa_handle_t *))
628                     dlsym(libshare, "sa_needs_refresh");
629                 _sa_get_zfs_handle = (libzfs_handle_t *(*)(sa_handle_t))
630                     dlsym(libshare, "sa_get_zfs_handle");
631                 _sa_zfs_process_share = (int (*)(sa_handle_t, sa_group_t,
632                     sa_share_t, char *, char *, zprop_source_t, char *,
633                     char *, char *))dlsym(libshare, "sa_zfs_process_share");
634                 _sa_update_sharetab_ts = (void (*)(sa_handle_t))
635                     dlsym(libshare, "sa_update_sharetab_ts");
636                 if (_sa_init == NULL || _sa_fini == NULL ||
637                     _sa_find_share == NULL || _sa_enable_share == NULL ||
638                     _sa_disable_share == NULL || _sa_errorstr == NULL ||
639                     _sa_parse_legacy_options == NULL ||
640                     _sa_needs_refresh == NULL || _sa_get_zfs_handle == NULL ||
641                     _sa_zfs_process_share == NULL ||
642                     _sa_update_sharetab_ts == NULL) {
643                         _sa_init = NULL;
644                         _sa_fini = NULL;
645                         _sa_disable_share = NULL;
646                         _sa_enable_share = NULL;
647                         _sa_errorstr = NULL;
648                         _sa_parse_legacy_options = NULL;
649                         (void) dlclose(libshare);
650                         _sa_needs_refresh = NULL;
651                         _sa_get_zfs_handle = NULL;
652                         _sa_zfs_process_share = NULL;
653                         _sa_update_sharetab_ts = NULL;
654                 }
655         }
656 }
657
658 /*
659  * zfs_init_libshare(zhandle, service)
660  *
661  * Initialize the libshare API if it hasn't already been initialized.
662  * In all cases it returns 0 if it succeeded and an error if not. The
663  * service value is which part(s) of the API to initialize and is a
664  * direct map to the libshare sa_init(service) interface.
665  */
666 int
667 zfs_init_libshare(libzfs_handle_t *zhandle, int service)
668 {
669         int ret = SA_OK;
670
671         if (_sa_init == NULL)
672                 ret = SA_CONFIG_ERR;
673
674         if (ret == SA_OK && zhandle->libzfs_shareflags & ZFSSHARE_MISS) {
675                 /*
676                  * We had a cache miss. Most likely it is a new ZFS
677                  * dataset that was just created. We want to make sure
678                  * so check timestamps to see if a different process
679                  * has updated any of the configuration. If there was
680                  * some non-ZFS change, we need to re-initialize the
681                  * internal cache.
682                  */
683                 zhandle->libzfs_shareflags &= ~ZFSSHARE_MISS;
684                 if (_sa_needs_refresh != NULL &&
685                     _sa_needs_refresh(zhandle->libzfs_sharehdl)) {
686                         zfs_uninit_libshare(zhandle);
687                         zhandle->libzfs_sharehdl = _sa_init(service);
688                 }
689         }
690
691         if (ret == SA_OK && zhandle && zhandle->libzfs_sharehdl == NULL)
692                 zhandle->libzfs_sharehdl = _sa_init(service);
693
694         if (ret == SA_OK && zhandle->libzfs_sharehdl == NULL)
695                 ret = SA_NO_MEMORY;
696
697         return (ret);
698 }
699
700 /*
701  * zfs_uninit_libshare(zhandle)
702  *
703  * Uninitialize the libshare API if it hasn't already been
704  * uninitialized. It is OK to call multiple times.
705  */
706 void
707 zfs_uninit_libshare(libzfs_handle_t *zhandle)
708 {
709         if (zhandle != NULL && zhandle->libzfs_sharehdl != NULL) {
710                 if (_sa_fini != NULL)
711                         _sa_fini(zhandle->libzfs_sharehdl);
712                 zhandle->libzfs_sharehdl = NULL;
713         }
714 }
715
716 /*
717  * zfs_parse_options(options, proto)
718  *
719  * Call the legacy parse interface to get the protocol specific
720  * options using the NULL arg to indicate that this is a "parse" only.
721  */
722 int
723 zfs_parse_options(char *options, zfs_share_proto_t proto)
724 {
725         if (_sa_parse_legacy_options != NULL) {
726                 return (_sa_parse_legacy_options(NULL, options,
727                     proto_table[proto].p_name));
728         }
729         return (SA_CONFIG_ERR);
730 }
731
732 /*
733  * zfs_sa_find_share(handle, path)
734  *
735  * wrapper around sa_find_share to find a share path in the
736  * configuration.
737  */
738 static sa_share_t
739 zfs_sa_find_share(sa_handle_t handle, char *path)
740 {
741         if (_sa_find_share != NULL)
742                 return (_sa_find_share(handle, path));
743         return (NULL);
744 }
745
746 /*
747  * zfs_sa_enable_share(share, proto)
748  *
749  * Wrapper for sa_enable_share which enables a share for a specified
750  * protocol.
751  */
752 static int
753 zfs_sa_enable_share(sa_share_t share, char *proto)
754 {
755         if (_sa_enable_share != NULL)
756                 return (_sa_enable_share(share, proto));
757         return (SA_CONFIG_ERR);
758 }
759
760 /*
761  * zfs_sa_disable_share(share, proto)
762  *
763  * Wrapper for sa_enable_share which disables a share for a specified
764  * protocol.
765  */
766 static int
767 zfs_sa_disable_share(sa_share_t share, char *proto)
768 {
769         if (_sa_disable_share != NULL)
770                 return (_sa_disable_share(share, proto));
771         return (SA_CONFIG_ERR);
772 }
773
774 /*
775  * Share the given filesystem according to the options in the specified
776  * protocol specific properties (sharenfs, sharesmb).  We rely
777  * on "libshare" to the dirty work for us.
778  */
779 static int
780 zfs_share_proto(zfs_handle_t *zhp, zfs_share_proto_t *proto)
781 {
782         char mountpoint[ZFS_MAXPROPLEN];
783         char shareopts[ZFS_MAXPROPLEN];
784         char sourcestr[ZFS_MAXPROPLEN];
785         libzfs_handle_t *hdl = zhp->zfs_hdl;
786         sa_share_t share;
787         zfs_share_proto_t *curr_proto;
788         zprop_source_t sourcetype;
789         int ret;
790
791         if (!zfs_is_mountable(zhp, mountpoint, sizeof (mountpoint), NULL))
792                 return (0);
793
794         if ((ret = zfs_init_libshare(hdl, SA_INIT_SHARE_API)) != SA_OK) {
795 #ifdef HAVE_SHARE
796                 (void) zfs_error_fmt(hdl, EZFS_SHARENFSFAILED,
797                     dgettext(TEXT_DOMAIN, "cannot share '%s': %s"),
798                     zfs_get_name(zhp), _sa_errorstr != NULL ?
799                     _sa_errorstr(ret) : "");
800 #endif /* HAVE_SHARE */
801                 return (-1);
802         }
803
804         for (curr_proto = proto; *curr_proto != PROTO_END; curr_proto++) {
805                 /*
806                  * Return success if there are no share options.
807                  */
808                 if (zfs_prop_get(zhp, proto_table[*curr_proto].p_prop,
809                     shareopts, sizeof (shareopts), &sourcetype, sourcestr,
810                     ZFS_MAXPROPLEN, B_FALSE) != 0 ||
811                     strcmp(shareopts, "off") == 0)
812                         continue;
813
814                 /*
815                  * If the 'zoned' property is set, then zfs_is_mountable()
816                  * will have already bailed out if we are in the global zone.
817                  * But local zones cannot be NFS servers, so we ignore it for
818                  * local zones as well.
819                  */
820                 if (zfs_prop_get_int(zhp, ZFS_PROP_ZONED))
821                         continue;
822
823                 share = zfs_sa_find_share(hdl->libzfs_sharehdl, mountpoint);
824                 if (share == NULL) {
825                         /*
826                          * This may be a new file system that was just
827                          * created so isn't in the internal cache
828                          * (second time through). Rather than
829                          * reloading the entire configuration, we can
830                          * assume ZFS has done the checking and it is
831                          * safe to add this to the internal
832                          * configuration.
833                          */
834                         if (_sa_zfs_process_share(hdl->libzfs_sharehdl,
835                             NULL, NULL, mountpoint,
836                             proto_table[*curr_proto].p_name, sourcetype,
837                             shareopts, sourcestr, zhp->zfs_name) != SA_OK) {
838                                 (void) zfs_error_fmt(hdl,
839                                     proto_table[*curr_proto].p_share_err,
840                                     dgettext(TEXT_DOMAIN, "cannot share '%s'"),
841                                     zfs_get_name(zhp));
842                                 return (-1);
843                         }
844                         hdl->libzfs_shareflags |= ZFSSHARE_MISS;
845                         share = zfs_sa_find_share(hdl->libzfs_sharehdl,
846                             mountpoint);
847                 }
848                 if (share != NULL) {
849                         int err;
850                         err = zfs_sa_enable_share(share,
851                             proto_table[*curr_proto].p_name);
852                         if (err != SA_OK) {
853                                 (void) zfs_error_fmt(hdl,
854                                     proto_table[*curr_proto].p_share_err,
855                                     dgettext(TEXT_DOMAIN, "cannot share '%s'"),
856                                     zfs_get_name(zhp));
857                                 return (-1);
858                         }
859                 } else {
860                         (void) zfs_error_fmt(hdl,
861                             proto_table[*curr_proto].p_share_err,
862                             dgettext(TEXT_DOMAIN, "cannot share '%s'"),
863                             zfs_get_name(zhp));
864                         return (-1);
865                 }
866
867         }
868         return (0);
869 }
870
871
872 int
873 zfs_share_nfs(zfs_handle_t *zhp)
874 {
875         return (zfs_share_proto(zhp, nfs_only));
876 }
877
878 int
879 zfs_share_smb(zfs_handle_t *zhp)
880 {
881         return (zfs_share_proto(zhp, smb_only));
882 }
883
884 int
885 zfs_shareall(zfs_handle_t *zhp)
886 {
887         return (zfs_share_proto(zhp, share_all_proto));
888 }
889
890 /*
891  * Unshare a filesystem by mountpoint.
892  */
893 static int
894 unshare_one(libzfs_handle_t *hdl, const char *name, const char *mountpoint,
895     zfs_share_proto_t proto)
896 {
897         sa_share_t share;
898         int err;
899         char *mntpt;
900         /*
901          * Mountpoint could get trashed if libshare calls getmntany
902          * which it does during API initialization, so strdup the
903          * value.
904          */
905         mntpt = zfs_strdup(hdl, mountpoint);
906
907         /* make sure libshare initialized */
908         if ((err = zfs_init_libshare(hdl, SA_INIT_SHARE_API)) != SA_OK) {
909                 free(mntpt);    /* don't need the copy anymore */
910                 return (zfs_error_fmt(hdl, EZFS_SHARENFSFAILED,
911                     dgettext(TEXT_DOMAIN, "cannot unshare '%s': %s"),
912                     name, _sa_errorstr(err)));
913         }
914
915         share = zfs_sa_find_share(hdl->libzfs_sharehdl, mntpt);
916         free(mntpt);    /* don't need the copy anymore */
917
918         if (share != NULL) {
919                 err = zfs_sa_disable_share(share, proto_table[proto].p_name);
920                 if (err != SA_OK) {
921                         return (zfs_error_fmt(hdl, EZFS_UNSHARENFSFAILED,
922                             dgettext(TEXT_DOMAIN, "cannot unshare '%s': %s"),
923                             name, _sa_errorstr(err)));
924                 }
925         } else {
926                 return (zfs_error_fmt(hdl, EZFS_UNSHARENFSFAILED,
927                     dgettext(TEXT_DOMAIN, "cannot unshare '%s': not found"),
928                     name));
929         }
930         return (0);
931 }
932
933 /*
934  * Unshare the given filesystem.
935  */
936 int
937 zfs_unshare_proto(zfs_handle_t *zhp, const char *mountpoint,
938     zfs_share_proto_t *proto)
939 {
940         libzfs_handle_t *hdl = zhp->zfs_hdl;
941         struct mnttab entry;
942         char *mntpt = NULL;
943
944         /* check to see if need to unmount the filesystem */
945         rewind(zhp->zfs_hdl->libzfs_mnttab);
946         if (mountpoint != NULL)
947                 mountpoint = mntpt = zfs_strdup(hdl, mountpoint);
948
949         if (mountpoint != NULL || ((zfs_get_type(zhp) == ZFS_TYPE_FILESYSTEM) &&
950             libzfs_mnttab_find(hdl, zfs_get_name(zhp), &entry) == 0)) {
951                 zfs_share_proto_t *curr_proto;
952
953                 if (mountpoint == NULL)
954                         mntpt = zfs_strdup(zhp->zfs_hdl, entry.mnt_mountp);
955
956                 for (curr_proto = proto; *curr_proto != PROTO_END;
957                     curr_proto++) {
958
959                         if (is_shared(hdl, mntpt, *curr_proto) &&
960                             unshare_one(hdl, zhp->zfs_name,
961                             mntpt, *curr_proto) != 0) {
962                                 if (mntpt != NULL)
963                                         free(mntpt);
964                                 return (-1);
965                         }
966                 }
967         }
968         if (mntpt != NULL)
969                 free(mntpt);
970
971         return (0);
972 }
973
974 int
975 zfs_unshare_nfs(zfs_handle_t *zhp, const char *mountpoint)
976 {
977         return (zfs_unshare_proto(zhp, mountpoint, nfs_only));
978 }
979
980 int
981 zfs_unshare_smb(zfs_handle_t *zhp, const char *mountpoint)
982 {
983         return (zfs_unshare_proto(zhp, mountpoint, smb_only));
984 }
985
986 /*
987  * Same as zfs_unmountall(), but for NFS and SMB unshares.
988  */
989 int
990 zfs_unshareall_proto(zfs_handle_t *zhp, zfs_share_proto_t *proto)
991 {
992         prop_changelist_t *clp;
993         int ret;
994
995         clp = changelist_gather(zhp, ZFS_PROP_SHARENFS, 0, 0);
996         if (clp == NULL)
997                 return (-1);
998
999         ret = changelist_unshare(clp, proto);
1000         changelist_free(clp);
1001
1002         return (ret);
1003 }
1004
1005 int
1006 zfs_unshareall_nfs(zfs_handle_t *zhp)
1007 {
1008         return (zfs_unshareall_proto(zhp, nfs_only));
1009 }
1010
1011 int
1012 zfs_unshareall_smb(zfs_handle_t *zhp)
1013 {
1014         return (zfs_unshareall_proto(zhp, smb_only));
1015 }
1016
1017 int
1018 zfs_unshareall(zfs_handle_t *zhp)
1019 {
1020         return (zfs_unshareall_proto(zhp, share_all_proto));
1021 }
1022
1023 int
1024 zfs_unshareall_bypath(zfs_handle_t *zhp, const char *mountpoint)
1025 {
1026         return (zfs_unshare_proto(zhp, mountpoint, share_all_proto));
1027 }
1028
1029 /*
1030  * Remove the mountpoint associated with the current dataset, if necessary.
1031  * We only remove the underlying directory if:
1032  *
1033  *      - The mountpoint is not 'none' or 'legacy'
1034  *      - The mountpoint is non-empty
1035  *      - The mountpoint is the default or inherited
1036  *      - The 'zoned' property is set, or we're in a local zone
1037  *
1038  * Any other directories we leave alone.
1039  */
1040 void
1041 remove_mountpoint(zfs_handle_t *zhp)
1042 {
1043         char mountpoint[ZFS_MAXPROPLEN];
1044         zprop_source_t source;
1045
1046         if (!zfs_is_mountable(zhp, mountpoint, sizeof (mountpoint),
1047             &source))
1048                 return;
1049
1050         if (source == ZPROP_SRC_DEFAULT ||
1051             source == ZPROP_SRC_INHERITED) {
1052                 /*
1053                  * Try to remove the directory, silently ignoring any errors.
1054                  * The filesystem may have since been removed or moved around,
1055                  * and this error isn't really useful to the administrator in
1056                  * any way.
1057                  */
1058                 (void) rmdir(mountpoint);
1059         }
1060 }
1061
1062 void
1063 libzfs_add_handle(get_all_cb_t *cbp, zfs_handle_t *zhp)
1064 {
1065         if (cbp->cb_alloc == cbp->cb_used) {
1066                 size_t newsz;
1067                 void *ptr;
1068
1069                 newsz = cbp->cb_alloc ? cbp->cb_alloc * 2 : 64;
1070                 ptr = zfs_realloc(zhp->zfs_hdl,
1071                     cbp->cb_handles, cbp->cb_alloc * sizeof (void *),
1072                     newsz * sizeof (void *));
1073                 cbp->cb_handles = ptr;
1074                 cbp->cb_alloc = newsz;
1075         }
1076         cbp->cb_handles[cbp->cb_used++] = zhp;
1077 }
1078
1079 static int
1080 mount_cb(zfs_handle_t *zhp, void *data)
1081 {
1082         get_all_cb_t *cbp = data;
1083
1084         if (!(zfs_get_type(zhp) & ZFS_TYPE_FILESYSTEM)) {
1085                 zfs_close(zhp);
1086                 return (0);
1087         }
1088
1089         if (zfs_prop_get_int(zhp, ZFS_PROP_CANMOUNT) == ZFS_CANMOUNT_NOAUTO) {
1090                 zfs_close(zhp);
1091                 return (0);
1092         }
1093
1094         libzfs_add_handle(cbp, zhp);
1095         if (zfs_iter_filesystems(zhp, mount_cb, cbp) != 0) {
1096                 zfs_close(zhp);
1097                 return (-1);
1098         }
1099         return (0);
1100 }
1101
1102 int
1103 libzfs_dataset_cmp(const void *a, const void *b)
1104 {
1105         zfs_handle_t **za = (zfs_handle_t **)a;
1106         zfs_handle_t **zb = (zfs_handle_t **)b;
1107         char mounta[MAXPATHLEN];
1108         char mountb[MAXPATHLEN];
1109         boolean_t gota, gotb;
1110
1111         if ((gota = (zfs_get_type(*za) == ZFS_TYPE_FILESYSTEM)) != 0)
1112                 verify(zfs_prop_get(*za, ZFS_PROP_MOUNTPOINT, mounta,
1113                     sizeof (mounta), NULL, NULL, 0, B_FALSE) == 0);
1114         if ((gotb = (zfs_get_type(*zb) == ZFS_TYPE_FILESYSTEM)) != 0)
1115                 verify(zfs_prop_get(*zb, ZFS_PROP_MOUNTPOINT, mountb,
1116                     sizeof (mountb), NULL, NULL, 0, B_FALSE) == 0);
1117
1118         if (gota && gotb)
1119                 return (strcmp(mounta, mountb));
1120
1121         if (gota)
1122                 return (-1);
1123         if (gotb)
1124                 return (1);
1125
1126         return (strcmp(zfs_get_name(a), zfs_get_name(b)));
1127 }
1128
1129 /*
1130  * Mount and share all datasets within the given pool.  This assumes that no
1131  * datasets within the pool are currently mounted.  Because users can create
1132  * complicated nested hierarchies of mountpoints, we first gather all the
1133  * datasets and mountpoints within the pool, and sort them by mountpoint.  Once
1134  * we have the list of all filesystems, we iterate over them in order and mount
1135  * and/or share each one.
1136  */
1137 #pragma weak zpool_mount_datasets = zpool_enable_datasets
1138 int
1139 zpool_enable_datasets(zpool_handle_t *zhp, const char *mntopts, int flags)
1140 {
1141         get_all_cb_t cb = { 0 };
1142         libzfs_handle_t *hdl = zhp->zpool_hdl;
1143         zfs_handle_t *zfsp;
1144         int i, ret = -1;
1145         int *good;
1146
1147         /*
1148          * Gather all non-snap datasets within the pool.
1149          */
1150         if ((zfsp = zfs_open(hdl, zhp->zpool_name, ZFS_TYPE_DATASET)) == NULL)
1151                 goto out;
1152
1153         libzfs_add_handle(&cb, zfsp);
1154         if (zfs_iter_filesystems(zfsp, mount_cb, &cb) != 0)
1155                 goto out;
1156         /*
1157          * Sort the datasets by mountpoint.
1158          */
1159         qsort(cb.cb_handles, cb.cb_used, sizeof (void *),
1160             libzfs_dataset_cmp);
1161
1162         /*
1163          * And mount all the datasets, keeping track of which ones
1164          * succeeded or failed.
1165          */
1166         if ((good = zfs_alloc(zhp->zpool_hdl,
1167             cb.cb_used * sizeof (int))) == NULL)
1168                 goto out;
1169
1170         ret = 0;
1171         for (i = 0; i < cb.cb_used; i++) {
1172                 if (zfs_mount(cb.cb_handles[i], mntopts, flags) != 0)
1173                         ret = -1;
1174                 else
1175                         good[i] = 1;
1176         }
1177
1178         /*
1179          * Then share all the ones that need to be shared. This needs
1180          * to be a separate pass in order to avoid excessive reloading
1181          * of the configuration. Good should never be NULL since
1182          * zfs_alloc is supposed to exit if memory isn't available.
1183          */
1184         for (i = 0; i < cb.cb_used; i++) {
1185                 if (good[i] && zfs_share(cb.cb_handles[i]) != 0)
1186                         ret = -1;
1187         }
1188
1189         free(good);
1190
1191 out:
1192         for (i = 0; i < cb.cb_used; i++)
1193                 zfs_close(cb.cb_handles[i]);
1194         free(cb.cb_handles);
1195
1196         return (ret);
1197 }
1198
1199 static int
1200 mountpoint_compare(const void *a, const void *b)
1201 {
1202         const char *mounta = *((char **)a);
1203         const char *mountb = *((char **)b);
1204
1205         return (strcmp(mountb, mounta));
1206 }
1207
1208 /* alias for 2002/240 */
1209 #pragma weak zpool_unmount_datasets = zpool_disable_datasets
1210 /*
1211  * Unshare and unmount all datasets within the given pool.  We don't want to
1212  * rely on traversing the DSL to discover the filesystems within the pool,
1213  * because this may be expensive (if not all of them are mounted), and can fail
1214  * arbitrarily (on I/O error, for example).  Instead, we walk /etc/mtab and
1215  * gather all the filesystems that are currently mounted.
1216  */
1217 int
1218 zpool_disable_datasets(zpool_handle_t *zhp, boolean_t force)
1219 {
1220         int used, alloc;
1221         struct mnttab entry;
1222         size_t namelen;
1223         char **mountpoints = NULL;
1224         zfs_handle_t **datasets = NULL;
1225         libzfs_handle_t *hdl = zhp->zpool_hdl;
1226         int i;
1227         int ret = -1;
1228         int flags = (force ? MS_FORCE : 0);
1229
1230         namelen = strlen(zhp->zpool_name);
1231
1232         rewind(hdl->libzfs_mnttab);
1233         used = alloc = 0;
1234         while (getmntent(hdl->libzfs_mnttab, &entry) == 0) {
1235                 /*
1236                  * Ignore non-ZFS entries.
1237                  */
1238                 if (entry.mnt_fstype == NULL ||
1239                     strcmp(entry.mnt_fstype, MNTTYPE_ZFS) != 0)
1240                         continue;
1241
1242                 /*
1243                  * Ignore filesystems not within this pool.
1244                  */
1245                 if (entry.mnt_mountp == NULL ||
1246                     strncmp(entry.mnt_special, zhp->zpool_name, namelen) != 0 ||
1247                     (entry.mnt_special[namelen] != '/' &&
1248                     entry.mnt_special[namelen] != '\0'))
1249                         continue;
1250
1251                 /*
1252                  * At this point we've found a filesystem within our pool.  Add
1253                  * it to our growing list.
1254                  */
1255                 if (used == alloc) {
1256                         if (alloc == 0) {
1257                                 if ((mountpoints = zfs_alloc(hdl,
1258                                     8 * sizeof (void *))) == NULL)
1259                                         goto out;
1260
1261                                 if ((datasets = zfs_alloc(hdl,
1262                                     8 * sizeof (void *))) == NULL)
1263                                         goto out;
1264
1265                                 alloc = 8;
1266                         } else {
1267                                 void *ptr;
1268
1269                                 if ((ptr = zfs_realloc(hdl, mountpoints,
1270                                     alloc * sizeof (void *),
1271                                     alloc * 2 * sizeof (void *))) == NULL)
1272                                         goto out;
1273                                 mountpoints = ptr;
1274
1275                                 if ((ptr = zfs_realloc(hdl, datasets,
1276                                     alloc * sizeof (void *),
1277                                     alloc * 2 * sizeof (void *))) == NULL)
1278                                         goto out;
1279                                 datasets = ptr;
1280
1281                                 alloc *= 2;
1282                         }
1283                 }
1284
1285                 if ((mountpoints[used] = zfs_strdup(hdl,
1286                     entry.mnt_mountp)) == NULL)
1287                         goto out;
1288
1289                 /*
1290                  * This is allowed to fail, in case there is some I/O error.  It
1291                  * is only used to determine if we need to remove the underlying
1292                  * mountpoint, so failure is not fatal.
1293                  */
1294                 datasets[used] = make_dataset_handle(hdl, entry.mnt_special);
1295
1296                 used++;
1297         }
1298
1299         /*
1300          * At this point, we have the entire list of filesystems, so sort it by
1301          * mountpoint.
1302          */
1303         qsort(mountpoints, used, sizeof (char *), mountpoint_compare);
1304
1305         /*
1306          * Walk through and first unshare everything.
1307          */
1308         for (i = 0; i < used; i++) {
1309                 zfs_share_proto_t *curr_proto;
1310                 for (curr_proto = share_all_proto; *curr_proto != PROTO_END;
1311                     curr_proto++) {
1312                         if (is_shared(hdl, mountpoints[i], *curr_proto) &&
1313                             unshare_one(hdl, mountpoints[i],
1314                             mountpoints[i], *curr_proto) != 0)
1315                                 goto out;
1316                 }
1317         }
1318
1319         /*
1320          * Now unmount everything, removing the underlying directories as
1321          * appropriate.
1322          */
1323         for (i = 0; i < used; i++) {
1324                 if (unmount_one(hdl, mountpoints[i], flags) != 0)
1325                         goto out;
1326         }
1327
1328         for (i = 0; i < used; i++) {
1329                 if (datasets[i])
1330                         remove_mountpoint(datasets[i]);
1331         }
1332
1333         ret = 0;
1334 out:
1335         for (i = 0; i < used; i++) {
1336                 if (datasets[i])
1337                         zfs_close(datasets[i]);
1338                 free(mountpoints[i]);
1339         }
1340         free(datasets);
1341         free(mountpoints);
1342
1343         return (ret);
1344 }