]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - cddl/compat/opensolaris/misc/zmount.c
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / cddl / compat / opensolaris / misc / zmount.c
1 /*-
2  * Copyright (c) 2006 Pawel Jakub Dawidek <pjd@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26
27 /*
28  * This file implements Solaris compatible zmount() function.
29  */
30
31 #include <sys/cdefs.h>
32 __FBSDID("$FreeBSD$");
33
34 #include <sys/param.h>
35 #include <sys/mount.h>
36 #include <sys/uio.h>
37 #include <sys/mntent.h>
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <assert.h>
41
42 static void
43 build_iovec(struct iovec **iov, int *iovlen, const char *name, void *val,
44     size_t len)
45 {
46         int i;
47
48         if (*iovlen < 0)
49                 return;
50         i = *iovlen;
51         *iov = realloc(*iov, sizeof(**iov) * (i + 2));
52         if (*iov == NULL) {
53                 *iovlen = -1;
54                 return;
55         }
56         (*iov)[i].iov_base = strdup(name);
57         (*iov)[i].iov_len = strlen(name) + 1;
58         i++;
59         (*iov)[i].iov_base = val;
60         if (len == (size_t)-1) {
61                 if (val != NULL)
62                         len = strlen(val) + 1;
63                 else
64                         len = 0;
65         }
66         (*iov)[i].iov_len = (int)len;
67         *iovlen = ++i;
68 }
69
70 int
71 zmount(const char *spec, const char *dir, int mflag, char *fstype,
72     char *dataptr, int datalen, char *optptr, int optlen)
73 {
74         struct iovec *iov;
75         char *optstr, *os, *p;
76         int iovlen, rv;
77
78         assert(spec != NULL);
79         assert(dir != NULL);
80         assert(mflag == 0);
81         assert(fstype != NULL);
82         assert(strcmp(fstype, MNTTYPE_ZFS) == 0);
83         assert(dataptr == NULL);
84         assert(datalen == 0);
85         assert(optptr != NULL);
86         assert(optlen > 0);
87
88         optstr = strdup(optptr);
89         assert(optptr != NULL);
90
91         iov = NULL;
92         iovlen = 0;
93         build_iovec(&iov, &iovlen, "fstype", fstype, (size_t)-1);
94         build_iovec(&iov, &iovlen, "fspath", __DECONST(char *, dir),
95             (size_t)-1);
96         build_iovec(&iov, &iovlen, "from", __DECONST(char *, spec), (size_t)-1);
97         for (p = optstr; p != NULL; strsep(&p, ",/ "))
98                 build_iovec(&iov, &iovlen, p, NULL, (size_t)-1);
99         rv = nmount(iov, iovlen, 0);
100         free(optstr);
101         return (rv);
102 }