igb.4: Update according to the recent TX/RX MSI-X handling work
[dragonfly.git] / sbin / mount_union / mount_union.c
1 /*
2  * Copyright (c) 1992, 1993, 1994
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software donated to Berkeley by
6  * Jan-Simon Pendry.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. Neither the name of the University nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  *
32  * @(#) Copyright (c) 1992, 1993, 1994 The Regents of the University of California.  All rights reserved.
33  * @(#)mount_union.c    8.5 (Berkeley) 3/27/94
34  * $FreeBSD: src/sbin/mount_union/mount_union.c,v 1.12 1999/10/09 11:54:14 phk Exp $
35  */
36
37 #include <sys/param.h>
38 #include <sys/mount.h>
39
40 #include <vfs/union/union.h>
41
42 #include <err.h>
43 #include <mntopts.h>
44 #include <stdio.h>
45 #include <stdlib.h>
46 #include <string.h>
47 #include <sysexits.h>
48 #include <unistd.h>
49
50 static struct mntopt mopts[] = {
51         MOPT_STDOPTS,
52         MOPT_NULL
53 };
54
55 static int      subdir(const char *, const char *);
56 static void     usage(void) __dead2;
57
58 int
59 main(int argc, char **argv)
60 {
61         struct union_args args;
62         int ch, mntflags;
63         char source[MAXPATHLEN];
64         char target[MAXPATHLEN];
65         struct vfsconf vfc;
66         int error;
67
68         mntflags = 0;
69         args.mntflags = UNMNT_ABOVE;
70         while ((ch = getopt(argc, argv, "bo:r")) != -1)
71                 switch (ch) {
72                 case 'b':
73                         args.mntflags &= ~UNMNT_OPMASK;
74                         args.mntflags |= UNMNT_BELOW;
75                         break;
76                 case 'o':
77                         getmntopts(optarg, mopts, &mntflags, 0);
78                         break;
79                 case 'r':
80                         args.mntflags &= ~UNMNT_OPMASK;
81                         args.mntflags |= UNMNT_REPLACE;
82                         break;
83                 case '?':
84                 default:
85                         usage();
86                         /* NOTREACHED */
87                 }
88         argc -= optind;
89         argv += optind;
90
91         if (argc != 2)
92                 usage();
93
94         /* resolve both target and source with realpath(3) */
95         checkpath(argv[0], target);
96         checkpath(argv[1], source);
97
98         if (subdir(target, source) || subdir(source, target))
99                 errx(EX_USAGE, "%s (%s) and %s (%s) are not distinct paths",
100                     argv[0], target, argv[1], source);
101
102         args.target = target;
103
104         error = getvfsbyname("union", &vfc);
105         if (error && vfsisloadable("union")) {
106                 if (vfsload("union"))
107                         err(EX_OSERR, "vfsload(union)");
108                 endvfsent();    /* flush cache */
109                 error = getvfsbyname("union", &vfc);
110         }
111         if (error)
112                 errx(EX_OSERR, "union filesystem is not available");
113
114         if (mount(vfc.vfc_name, source, mntflags, &args))
115                 err(EX_OSERR, "%s", target);
116         exit(0);
117 }
118
119 static int
120 subdir(const char *p, const char *dir)
121 {
122         int l;
123
124         l = strlen(dir);
125         if (l <= 1)
126                 return (1);
127
128         if ((strncmp(p, dir, l) == 0) && (p[l] == '/' || p[l] == '\0'))
129                 return (1);
130
131         return (0);
132 }
133
134 static void
135 usage(void)
136 {
137         fprintf(stderr,
138             "usage: mount_union [-br] [-o options] target_fs mount_point\n");
139         exit(EX_USAGE);
140 }