]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - sbin/mount_autofs/mount_autofs.c
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / sbin / mount_autofs / mount_autofs.c
1 /*
2  * Copyright (c) 2004 Alfred Perlstein <alfred@FreeBSD.org>
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  * $Id: mount_autofs.c,v 1.5 2004/09/08 08:12:21 bright Exp $
27  * $FreeBSD$
28  */
29 #include <err.h>
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #include <unistd.h>
34
35 #include <sys/param.h>
36 #include <sys/mount.h>
37 #include <sys/uio.h>
38
39 void usage(void);
40
41 const char *progname;
42
43 void
44 usage(void) {
45
46         errx(1, "usage: %s node", progname);
47 }
48 int     mymount(const char *type, const char *dir, int flags, void *data);
49
50 #if __FreeBSD_version < 600000
51 int
52 mymount(const char *type, const char *dir, int flags, void *data)
53 {
54
55         return (mount(type, dir, flags, data));
56 }
57 #else
58 void    ioset(struct iovec *iovp, const char *str);
59
60 void
61 ioset(struct iovec *iovp, const char *str)
62 {
63
64         iovp->iov_base = __DECONST(char *, str);
65         iovp->iov_len = strlen(str) + 1;
66 }
67
68 int
69 mymount(
70         const char *type,
71         const char *dir,
72         int flags __unused,
73         void *data __unused
74 )
75 {
76         struct iovec iov[4], *iovp;
77
78         iovp = &iov[0];
79         ioset(iovp++, "fstype");
80         ioset(iovp++, type);
81         ioset(iovp++, "fspath");
82         ioset(iovp++, dir);
83         return (nmount(iov, 4, 0));
84 }
85 #endif
86
87 int
88 main(int argc, char **argv)
89 {
90         int error;
91         int ch;
92
93         progname = argv[0];
94
95         while ((ch = getopt(argc, argv, "o:")) != -1) {
96                 /* just eat opts for now */
97                 switch (ch) {
98                 case '?':
99                         usage();
100                 }
101         }
102         argc -= optind;
103         argv += optind;
104
105         if (argc < 2) {
106                 usage();
107         }
108
109         error = mymount("autofs", argv[1], 0, NULL);
110         if (error)
111                 perror("mount");
112         return (error == 0 ? EXIT_SUCCESS : EXIT_FAILURE);
113 }