1 /* $NetBSD: mount_overlay.c,v 1.11 2007/07/16 17:06:54 pooka Exp $ */
4 * Copyright (c) 1992, 1993, 1994
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software donated to Berkeley by
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 #include <sys/cdefs.h>
37 __COPYRIGHT("@(#) Copyright (c) 1992, 1993, 1994\
38 The Regents of the University of California. All rights reserved.");
43 static char sccsid
[] = "@(#)mount_null.c 8.6 (Berkeley) 4/26/95";
45 __RCSID("$NetBSD: mount_overlay.c,v 1.11 2007/07/16 17:06:54 pooka Exp $");
49 #include <sys/param.h>
50 #include <sys/mount.h>
51 #include <miscfs/overlay/overlay.h>
61 static const struct mntopt mopts
[] = {
67 int mount_overlay(int argc
, char **argv
);
68 static void usage(void);
72 main(int argc
, char **argv
)
74 return mount_overlay(argc
, argv
);
79 mount_overlay(int argc
, char *argv
[])
81 struct overlay_args args
;
83 char target
[MAXPATHLEN
], canon_dir
[MAXPATHLEN
];
87 while ((ch
= getopt(argc
, argv
, "o:")) != -1)
90 mp
= getmntopts(optarg
, mopts
, &mntflags
, 0);
105 if (realpath(argv
[0], target
) == NULL
) /* Check device path */
106 err(1, "realpath %s", argv
[0]);
107 if (strncmp(argv
[0], target
, MAXPATHLEN
)) {
108 warnx("\"%s\" is a relative path.", argv
[0]);
109 warnx("using \"%s\" instead.", target
);
112 if (realpath(argv
[1], canon_dir
) == NULL
) /* Check mounton path */
113 err(1, "realpath %s", argv
[1]);
114 if (strncmp(argv
[1], canon_dir
, MAXPATHLEN
)) {
115 warnx("\"%s\" is a relative path.", argv
[1]);
116 warnx("using \"%s\" instead.", canon_dir
);
119 args
.la
.target
= target
;
121 if (mount(MOUNT_OVERLAY
, canon_dir
, mntflags
, &args
, sizeof args
) == -1)
122 err(1, "%s on %s", target
, canon_dir
);
129 (void)fprintf(stderr
,
130 "usage: mount_overlay [-o options] /overlay mount_point\n");