]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/mount_ext2fs/mount_ext2fs.c
Make TSO (TCP segmentation offload) capabilities visible and accessible with
[FreeBSD/FreeBSD.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 struct mntopt mopts[] = {
58         MOPT_STDOPTS,
59         MOPT_ASYNC,
60         MOPT_FORCE,
61         MOPT_SYNC,
62         MOPT_UPDATE,
63         MOPT_END
64 };
65
66 static void     usage(void) __dead2;
67
68 int
69 main(argc, argv)
70         int argc;
71         char *argv[];
72 {
73         struct iovec iov[6];
74         int ch, mntflags;
75         char *fs_name, *fspec, mntpath[MAXPATHLEN];
76
77         mntflags = 0;
78         while ((ch = getopt(argc, argv, "o:")) != -1)
79                 switch (ch) {
80                 case 'o':
81                         getmntopts(optarg, mopts, &mntflags, 0);
82                         break;
83                 case '?':
84                 default:
85                         usage();
86                 }
87         argc -= optind;
88         argv += optind;
89
90         if (argc != 2)
91                 usage();
92
93         fspec = argv[0];        /* the name of the device file */
94         fs_name = argv[1];      /* the mount point */
95
96         /*
97          * Resolve the mountpoint with realpath(3) and remove unnecessary
98          * slashes from the devicename if there are any.
99          */
100         (void)checkpath(fs_name, mntpath);
101         (void)rmslashes(fspec, fspec);
102
103         iov[0].iov_base = "fstype";
104         iov[0].iov_len = sizeof("fstype");
105         iov[1].iov_base = "ext2fs";
106         iov[1].iov_len = strlen(iov[1].iov_base) + 1;
107         iov[2].iov_base = "fspath";
108         iov[2].iov_len = sizeof("fspath");
109         iov[3].iov_base = mntpath;
110         iov[3].iov_len = strlen(mntpath) + 1;
111         iov[4].iov_base = "from";
112         iov[4].iov_len = sizeof("from");
113         iov[5].iov_base = fspec;
114         iov[5].iov_len = strlen(fspec) + 1;
115         if (nmount(iov, 6, mntflags) < 0)
116                 err(EX_OSERR, "%s", fspec);
117         exit(0);
118 }
119
120 void
121 usage()
122 {
123         (void)fprintf(stderr,
124                 "usage: mount_ext2fs [-o options] special node\n");
125         exit(EX_USAGE);
126 }