mount_ados.c revision 1.14 1 1.14 christos /* $NetBSD: mount_ados.c,v 1.14 2002/09/21 18:43:33 christos Exp $ */
2 1.4 cgd
3 1.1 chopps /*
4 1.1 chopps * Copyright (c) 1994 Christopher G. Demetriou
5 1.1 chopps * All rights reserved.
6 1.11 cgd *
7 1.1 chopps * Redistribution and use in source and binary forms, with or without
8 1.1 chopps * modification, are permitted provided that the following conditions
9 1.1 chopps * are met:
10 1.1 chopps * 1. Redistributions of source code must retain the above copyright
11 1.1 chopps * notice, this list of conditions and the following disclaimer.
12 1.1 chopps * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 chopps * notice, this list of conditions and the following disclaimer in the
14 1.1 chopps * documentation and/or other materials provided with the distribution.
15 1.1 chopps * 3. All advertising materials mentioning features or use of this software
16 1.1 chopps * must display the following acknowledgement:
17 1.11 cgd * This product includes software developed for the
18 1.11 cgd * NetBSD Project. See http://www.netbsd.org/ for
19 1.11 cgd * information about NetBSD.
20 1.1 chopps * 4. The name of the author may not be used to endorse or promote products
21 1.11 cgd * derived from this software without specific prior written permission.
22 1.11 cgd *
23 1.1 chopps * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24 1.1 chopps * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 1.1 chopps * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 1.1 chopps * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 1.1 chopps * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 1.1 chopps * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 1.1 chopps * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 1.1 chopps * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 1.1 chopps * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 1.1 chopps * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 1.11 cgd *
34 1.11 cgd * <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
35 1.1 chopps */
36 1.1 chopps
37 1.6 lukem #include <sys/cdefs.h>
38 1.1 chopps #ifndef lint
39 1.14 christos __RCSID("$NetBSD: mount_ados.c,v 1.14 2002/09/21 18:43:33 christos Exp $");
40 1.1 chopps #endif /* not lint */
41 1.1 chopps
42 1.1 chopps #include <sys/cdefs.h>
43 1.1 chopps #include <sys/param.h>
44 1.1 chopps #include <sys/mount.h>
45 1.1 chopps #include <sys/stat.h>
46 1.1 chopps #include <ctype.h>
47 1.1 chopps #include <err.h>
48 1.1 chopps #include <grp.h>
49 1.1 chopps #include <pwd.h>
50 1.1 chopps #include <stdio.h>
51 1.1 chopps #include <stdlib.h>
52 1.1 chopps #include <string.h>
53 1.1 chopps #include <unistd.h>
54 1.8 fvdl
55 1.8 fvdl #include <adosfs/adosfs.h>
56 1.1 chopps
57 1.3 mycroft #include "mntopts.h"
58 1.13 is #include <errno.h>
59 1.12 jdolecek #include <fattr.h>
60 1.3 mycroft
61 1.12 jdolecek static const struct mntopt mopts[] = {
62 1.3 mycroft MOPT_STDOPTS,
63 1.14 christos MOPT_GETARGS,
64 1.3 mycroft { NULL }
65 1.3 mycroft };
66 1.3 mycroft
67 1.6 lukem int main __P((int, char *[]));
68 1.12 jdolecek int mount_ados __P((int argc, char **argv));
69 1.12 jdolecek static void usage __P((void));
70 1.3 mycroft
71 1.12 jdolecek #ifndef MOUNT_NOMAIN
72 1.1 chopps int
73 1.12 jdolecek main(int argc, char **argv)
74 1.12 jdolecek {
75 1.12 jdolecek return mount_ados(argc, argv);
76 1.12 jdolecek }
77 1.12 jdolecek #endif
78 1.12 jdolecek
79 1.12 jdolecek int
80 1.12 jdolecek mount_ados(argc, argv)
81 1.1 chopps int argc;
82 1.1 chopps char **argv;
83 1.1 chopps {
84 1.1 chopps struct adosfs_args args;
85 1.1 chopps struct stat sb;
86 1.3 mycroft int c, mntflags, set_gid, set_uid, set_mask;
87 1.1 chopps char *dev, *dir, ndir[MAXPATHLEN+1];
88 1.1 chopps
89 1.3 mycroft mntflags = set_gid = set_uid = set_mask = 0;
90 1.1 chopps (void)memset(&args, '\0', sizeof(args));
91 1.1 chopps
92 1.6 lukem while ((c = getopt(argc, argv, "u:g:m:o:")) != -1) {
93 1.1 chopps switch (c) {
94 1.1 chopps case 'u':
95 1.1 chopps args.uid = a_uid(optarg);
96 1.1 chopps set_uid = 1;
97 1.1 chopps break;
98 1.1 chopps case 'g':
99 1.1 chopps args.gid = a_gid(optarg);
100 1.1 chopps set_gid = 1;
101 1.1 chopps break;
102 1.1 chopps case 'm':
103 1.1 chopps args.mask = a_mask(optarg);
104 1.1 chopps set_mask = 1;
105 1.1 chopps break;
106 1.3 mycroft case 'o':
107 1.7 lukem getmntopts(optarg, mopts, &mntflags, 0);
108 1.3 mycroft break;
109 1.1 chopps case '?':
110 1.1 chopps default:
111 1.1 chopps usage();
112 1.1 chopps break;
113 1.1 chopps }
114 1.1 chopps }
115 1.1 chopps
116 1.1 chopps if (optind + 2 != argc)
117 1.1 chopps usage();
118 1.1 chopps
119 1.1 chopps dev = argv[optind];
120 1.1 chopps dir = argv[optind + 1];
121 1.1 chopps if (dir[0] != '/') {
122 1.1 chopps warnx("\"%s\" is a relative path.", dir);
123 1.1 chopps if (getcwd(ndir, sizeof(ndir)) == NULL)
124 1.1 chopps err(1, "getcwd");
125 1.1 chopps strncat(ndir, "/", sizeof(ndir) - strlen(ndir) - 1);
126 1.1 chopps strncat(ndir, dir, sizeof(ndir) - strlen(ndir) - 1);
127 1.1 chopps dir = ndir;
128 1.1 chopps warnx("using \"%s\" instead.", dir);
129 1.1 chopps }
130 1.1 chopps
131 1.1 chopps args.fspec = dev;
132 1.3 mycroft args.export.ex_root = -2; /* unchecked anyway on DOS fs */
133 1.3 mycroft if (mntflags & MNT_RDONLY)
134 1.3 mycroft args.export.ex_flags = MNT_EXRDONLY;
135 1.3 mycroft else
136 1.3 mycroft args.export.ex_flags = 0;
137 1.1 chopps if (!set_gid || !set_uid || !set_mask) {
138 1.1 chopps if (stat(dir, &sb) == -1)
139 1.1 chopps err(1, "stat %s", dir);
140 1.1 chopps
141 1.1 chopps if (!set_uid)
142 1.1 chopps args.uid = sb.st_uid;
143 1.1 chopps if (!set_gid)
144 1.1 chopps args.gid = sb.st_gid;
145 1.1 chopps if (!set_mask)
146 1.1 chopps args.mask = sb.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO);
147 1.1 chopps }
148 1.1 chopps
149 1.13 is if (mount(MOUNT_ADOSFS, dir, mntflags, &args) >= 0)
150 1.13 is exit (0);
151 1.13 is
152 1.13 is if (errno != EROFS)
153 1.9 perseant err(1, "%s on %s", dev, dir);
154 1.1 chopps
155 1.13 is mntflags |= MNT_RDONLY;
156 1.13 is args.export.ex_flags = MNT_EXRDONLY;
157 1.13 is
158 1.14 christos if (mount(MOUNT_ADOSFS, dir, mntflags, &args) == -1)
159 1.14 christos err(1, "%s on %s", dev, dir);
160 1.14 christos
161 1.14 christos if (mntflags & MNT_GETARGS)
162 1.14 christos printf("uid=%d, gid=%d, mask=%d\n", args.uid, args.gid,
163 1.14 christos args.mask);
164 1.13 is
165 1.14 christos exit (0);
166 1.1 chopps }
167 1.1 chopps
168 1.12 jdolecek static void
169 1.1 chopps usage()
170 1.1 chopps {
171 1.2 chopps
172 1.3 mycroft fprintf(stderr, "usage: mount_ados [-o options] [-u user] [-g group] [-m mask] bdev dir\n");
173 1.2 chopps exit(1);
174 1.2 chopps }
175