]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sbin/mount_ext2fs/mount_ext2fs.c
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / sbin / mount_ext2fs / mount_ext2fs.c
1 /*-
2  * Copyright (c) 1993, 1994
3  *      The Regents of the University of California.  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  * 4. Neither the name of the University nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29
30 #ifndef lint
31 static const char copyright[] =
32 "@(#) Copyright (c) 1993, 1994\n\
33         The Regents of the University of California.  All rights reserved.\n";
34 #endif /* not lint */
35
36 #ifndef lint
37 /*
38 static char sccsid[] = "@(#)mount_lfs.c 8.3 (Berkeley) 3/27/94";
39 */
40 static const char rcsid[] =
41   "$FreeBSD$";
42 #endif /* not lint */
43
44 #include <sys/param.h>
45 #include <sys/mount.h>
46 #include <sys/uio.h>
47
48 #include <err.h>
49 #include <stdio.h>
50 #include <stdlib.h>
51 #include <string.h>
52 #include <sysexits.h>
53 #include <unistd.h>
54
55 #include "mntopts.h"
56
57 static void     usage(void);
58
59 int
60 main(int argc, char *argv[])
61 {
62         struct iovec *iov;
63         int ch, iovlen;
64         char *fs_name, *fspec, mntpath[MAXPATHLEN];
65         char *fstype;
66
67         fstype = strrchr(argv[0], '_');
68         if (fstype == NULL)
69                 errx(EX_USAGE, "argv[0] must end in _fstype");
70         else
71                 ++fstype;
72
73         iov = NULL;
74         iovlen = 0;
75         while ((ch = getopt(argc, argv, "o:")) != -1)
76                 switch (ch) {
77                 case 'o': {
78                         char *p = NULL;
79                         char *val = strdup("");
80                         p = strchr(optarg, '=');
81                         if (p != NULL) {
82                                 free(val);
83                                 *p = '\0';
84                                 val = p + 1;
85                         }
86                         build_iovec(&iov, &iovlen, optarg, val, strlen(val)+1);
87                         }
88                         break;
89                 case '?':
90                 default:
91                         usage();
92                 }
93         argc -= optind;
94         argv += optind;
95
96         if (argc != 2)
97                 usage();
98
99         fspec = argv[0];        /* the name of the device file */
100         fs_name = argv[1];      /* the mount point */
101
102         /*
103          * Resolve the mountpoint with realpath(3) and remove unnecessary
104          * slashes from the devicename if there are any.
105          */
106         (void)checkpath(fs_name, mntpath);
107         (void)rmslashes(fspec, fspec);
108
109         build_iovec(&iov, &iovlen, "fstype", fstype, strlen(fstype) + 1);
110         build_iovec(&iov, &iovlen, "fspath", mntpath, strlen(mntpath) + 1);
111         build_iovec(&iov, &iovlen, "from", fspec, strlen(fspec) + 1);
112
113         if (nmount(iov, iovlen, 0) < 0)
114                 err(EX_OSERR, "%s", fspec);
115         return (0);
116 }
117
118 static void
119 usage()
120 {
121         (void)fprintf(stderr,
122                 "usage: mount_ext2fs [-o options] special node\n");
123         exit(EX_USAGE);
124 }