]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/mount_std/mount_std.c
This commit was generated by cvs2svn to compensate for changes in r162017,
[FreeBSD/FreeBSD.git] / sbin / mount_std / mount_std.c
1 /*
2  * Copyright (c) 1990, 1992 Jan-Simon Pendry
3  * Copyright (c) 1992, 1993, 1994
4  *      The Regents of the University of California.  All rights reserved.
5  *
6  * This code is derived from software contributed to Berkeley by
7  * Jan-Simon Pendry.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #ifndef lint
35 static const char copyright[] =
36 "@(#) Copyright (c) 1992, 1993, 1994\n\
37         The Regents of the University of California.  All rights reserved.\n";
38 #endif /* not lint */
39
40 #ifndef lint
41 static const char rcsid[] =
42   "$FreeBSD$";
43 #endif /* not lint */
44
45 #include <sys/param.h>
46 #include <sys/mount.h>
47 #include <sys/uio.h>
48
49 #include <err.h>
50 #include <errno.h>
51 #include <stdio.h>
52 #include <signal.h>
53 #include <stdlib.h>
54 #include <string.h>
55 #include <sysexits.h>
56 #include <unistd.h>
57
58 #include "mntopts.h"
59
60 static struct mntopt mopts[] = {
61         MOPT_STDOPTS,
62         MOPT_END
63 };
64
65 static char *fsname;
66 static volatile sig_atomic_t caughtsig;
67
68 static void usage(void) __dead2;
69
70 static void
71 catchsig(int s)
72 {
73         caughtsig = 1;
74 }
75
76 int
77 main(argc, argv)
78         int argc;
79         char *argv[];
80 {
81         int ch, mntflags;
82         char mntpath[MAXPATHLEN];
83         struct iovec iov[4];
84         int error;
85
86         /*
87          * XXX
88          * mount(8) calls the mount programs with an argv[0] which is
89          * /just/ the file system name.  So, if there is no underscore
90          * in argv[0], we assume that we are being called from mount(8)
91          * and that argv[0] is thus the name of the file system type.
92          */
93         fsname = strrchr(argv[0], '_');
94         if (fsname) {
95                 if (strcmp(fsname, "_std") == 0)
96                         errx(EX_USAGE, "argv[0] must end in _fsname");
97                 fsname++;
98         } else {
99                 fsname = argv[0];
100         }
101
102         mntflags = 0;
103         while ((ch = getopt(argc, argv, "o:")) != -1)
104                 switch (ch) {
105                 case 'o':
106                         getmntopts(optarg, mopts, &mntflags, 0);
107                         break;
108                 case '?':
109                 default:
110                         usage();
111                 }
112         argc -= optind;
113         argv += optind;
114
115         if (argc != 2)
116                 usage();
117
118         /* resolve the mountpoint with realpath(3) */
119         (void)checkpath(argv[1], mntpath);
120
121         iov[0].iov_base = "fstype";
122         iov[0].iov_len = sizeof("fstype");
123         iov[1].iov_base = fsname;
124         iov[1].iov_len = strlen(iov[1].iov_base) + 1;
125         iov[2].iov_base = "fspath";
126         iov[2].iov_len = sizeof("fspath");
127         iov[3].iov_base = mntpath;
128         iov[3].iov_len = strlen(mntpath) + 1;
129
130         /*
131          * nmount(2) would kill us with SIGSYS if the kernel doesn't have it.
132          * This design bug is inconvenient.  We must catch the signal and not
133          * just ignore it because of a plain bug: nmount(2) would return
134          * EINVAL instead of the correct ENOSYS if the kernel doesn't have it
135          * and we don't let the signal kill us.  EINVAL is too ambiguous.
136          * This bug in 4.4BSD-Lite1 was fixed in 4.4BSD-Lite2 but is still in
137          * FreeBSD-5.0.
138          */
139         signal(SIGSYS, catchsig);
140         error = nmount(iov, 4, mntflags);
141         signal(SIGSYS, SIG_DFL);
142
143         /*
144          * Try with the old mount syscall in the case
145          * this file system has not been converted yet,
146          * or the user didn't recompile his kernel.
147          */
148         if (error && (errno == EOPNOTSUPP || errno == ENOSYS || caughtsig))
149                 error = mount(fsname, mntpath, mntflags, NULL);
150
151         if (error)
152                 err(EX_OSERR, NULL);
153         exit(0);
154 }
155
156 void
157 usage()
158 {
159         (void)fprintf(stderr,
160                 "usage: mount_%s [-o options] what_to_mount mount_point\n",
161                       fsname);
162         exit(EX_USAGE);
163 }