]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/mount_reiserfs/mount_reiserfs.c
This commit was generated by cvs2svn to compensate for changes in r146895,
[FreeBSD/FreeBSD.git] / sbin / mount_reiserfs / mount_reiserfs.c
1 /*-
2  * Copyright (c) 2005 Jean-Sébastien Pédron
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 AUTHOR 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 AUTHOR 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  * $FreeBSD$
27  */
28
29 #include <sys/param.h>
30 #include <sys/mount.h>
31 #include <sys/uio.h>
32
33 #include <err.h>
34 #include <stdio.h>
35 #include <stdlib.h>
36 #include <string.h>
37 #include <sysexits.h>
38 #include <unistd.h>
39
40 #include "mntopts.h"
41
42 struct mntopt mopts[] = {
43         MOPT_STDOPTS,
44         MOPT_NULL
45 };
46
47 void    usage(void);
48
49 int
50 main(int argc, char *argv[])
51 {
52         struct iovec *iov;
53         int ch, mntflags, iovlen;
54         char *dev, *dir, mntpath[MAXPATHLEN];
55
56         mntflags = 0;
57         while ((ch = getopt(argc, argv, "o:")) != -1) {
58                 switch(ch) {
59                 case 'o':
60                         getmntopts(optarg, mopts, &mntflags, 0);
61                         break;
62                 case '?':
63                 default:
64                         usage();
65                 }
66         }
67         argc -= optind;
68         argv += optind;
69
70         if (argc != 2)
71                 usage();
72
73         dev = argv[0];
74         dir = argv[1];
75
76         /*
77          * Resolve the mountpoint with realpath(3) and remove unnecessary
78          * slashes from the devicename if there are any.
79          */
80         (void)checkpath(dir, mntpath);
81         (void)rmslashes(dev, dev);
82
83         /* Read-only support for now */
84         mntflags |= MNT_RDONLY;
85
86         /* Prepare the options vector for nmount(). build_iovec() is declared
87          * in mntopts.h. */
88         iov = NULL;
89         iovlen = 0;
90         build_iovec(&iov, &iovlen, "fstype", "reiserfs", -1);
91         build_iovec(&iov, &iovlen, "fspath", mntpath, -1);
92         build_iovec(&iov, &iovlen, "from", dev, -1);
93
94         if (nmount(iov, iovlen, mntflags) < 0)
95                 err(EX_OSERR, "%s", dev);
96
97         exit(0);
98 }
99
100 void
101 usage(void)
102 {
103         fprintf(stderr,
104             "usage: mount_reiserfs [-o options] special node\n");
105         exit(EX_USAGE);
106 }