]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - cddl/compat/opensolaris/misc/zmount.c
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.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 <assert.h>
39 #include <stdio.h>
40 #include <stdlib.h>
41 #include <string.h>
42
43 static void
44 build_iovec(struct iovec **iov, int *iovlen, const char *name, void *val,
45     size_t len)
46 {
47         int i;
48
49         if (*iovlen < 0)
50                 return;
51         i = *iovlen;
52         *iov = realloc(*iov, sizeof(**iov) * (i + 2));
53         if (*iov == NULL) {
54                 *iovlen = -1;
55                 return;
56         }
57         (*iov)[i].iov_base = strdup(name);
58         (*iov)[i].iov_len = strlen(name) + 1;
59         i++;
60         (*iov)[i].iov_base = val;
61         if (len == (size_t)-1) {
62                 if (val != NULL)
63                         len = strlen(val) + 1;
64                 else
65                         len = 0;
66         }
67         (*iov)[i].iov_len = (int)len;
68         *iovlen = ++i;
69 }
70
71 int
72 zmount(const char *spec, const char *dir, int mflag, char *fstype,
73     char *dataptr, int datalen, char *optptr, int optlen)
74 {
75         struct iovec *iov;
76         char *optstr, *os, *p;
77         int iovlen, rv;
78
79         assert(spec != NULL);
80         assert(dir != NULL);
81         assert(mflag == 0);
82         assert(fstype != NULL);
83         assert(strcmp(fstype, MNTTYPE_ZFS) == 0);
84         assert(dataptr == NULL);
85         assert(datalen == 0);
86         assert(optptr != NULL);
87         assert(optlen > 0);
88
89         optstr = strdup(optptr);
90         assert(optstr != NULL);
91
92         iov = NULL;
93         iovlen = 0;
94         build_iovec(&iov, &iovlen, "fstype", fstype, (size_t)-1);
95         build_iovec(&iov, &iovlen, "fspath", __DECONST(char *, dir),
96             (size_t)-1);
97         build_iovec(&iov, &iovlen, "from", __DECONST(char *, spec), (size_t)-1);
98         for (p = optstr; p != NULL; strsep(&p, ",/ "))
99                 build_iovec(&iov, &iovlen, p, NULL, (size_t)-1);
100         rv = nmount(iov, iovlen, 0);
101         free(optstr);
102         return (rv);
103 }