2 * Copyright (c) 1994 Christopher G. Demetriou
3 * Copyright (c) 1999 Semen Ustimenko (semenu@FreeBSD.org)
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. All advertising materials mentioning features or use of this software
15 * must display the following acknowledgement:
16 * This product includes software developed by Christopher G. Demetriou.
17 * 4. The name of the author may not be used to endorse or promote products
18 * derived from this software without specific prior written permission
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 * $FreeBSD: src/sbin/mount_hpfs/mount_hpfs.c,v 1.1 1999/12/09 19:09:15 semenu Exp $
34 #include <sys/param.h>
35 #include <sys/mount.h>
37 #include <vfs/hpfs/hpfsmount.h>
49 static struct mntopt mopts
[] = {
54 static gid_t
a_gid(char *);
55 static uid_t
a_uid(char *);
56 static mode_t
a_mask(char *);
57 static void usage(void) __dead2
;
59 static void load_u2wtable(struct hpfs_args
*, char *);
63 main(int argc
, char **argv
)
65 struct hpfs_args args
;
67 int c
, mntflags
, set_gid
, set_uid
, set_mask
,error
;
68 char *dev
, *dir
, ndir
[MAXPATHLEN
+1];
71 mntflags
= set_gid
= set_uid
= set_mask
= 0;
72 memset(&args
, '\0', sizeof(args
));
74 while ((c
= getopt(argc
, argv
, "u:g:m:o:c:W:")) != -1) {
77 args
.uid
= a_uid(optarg
);
81 args
.gid
= a_gid(optarg
);
85 args
.mode
= a_mask(optarg
);
89 getmntopts(optarg
, mopts
, &mntflags
, 0);
93 load_u2wtable(&args
, optarg
);
94 args
.flags
|= HPFSMNT_TABLES
;
104 if (optind
+ 2 != argc
)
107 mntflags
|= MNT_RDONLY
;
110 dir
= argv
[optind
+ 1];
112 warnx("\"%s\" is a relative path", dir
);
113 if (getcwd(ndir
, sizeof(ndir
)) == NULL
)
114 err(EX_OSERR
, "getcwd");
115 strncat(ndir
, "/", sizeof(ndir
) - strlen(ndir
) - 1);
116 strncat(ndir
, dir
, sizeof(ndir
) - strlen(ndir
) - 1);
118 warnx("using \"%s\" instead", dir
);
122 args
.export
.ex_root
= 65534; /* unchecked anyway on DOS fs */
123 if (mntflags
& MNT_RDONLY
)
124 args
.export
.ex_flags
= MNT_EXRDONLY
;
126 args
.export
.ex_flags
= 0;
128 if (!set_gid
|| !set_uid
|| !set_mask
) {
129 if (stat(dir
, &sb
) == -1)
130 err(EX_OSERR
, "stat %s", dir
);
133 args
.uid
= sb
.st_uid
;
135 args
.gid
= sb
.st_gid
;
137 args
.mode
= sb
.st_mode
& (S_IRWXU
| S_IRWXG
| S_IRWXO
);
140 error
= getvfsbyname("hpfs", &vfc
);
141 if(error
&& vfsisloadable("hpfs")) {
143 err(EX_OSERR
, "vfsload(hpfs)");
144 endvfsent(); /* clear cache */
145 error
= getvfsbyname("hpfs", &vfc
);
148 errx(EX_OSERR
, "hpfs filesystem is not available");
150 if (mount(vfc
.vfc_name
, dir
, mntflags
, &args
) < 0)
151 err(EX_OSERR
, "%s", dev
);
163 if ((gr
= getgrnam(s
)) != NULL
)
166 for (gname
= s
; *s
&& isdigit(*s
); ++s
);
170 errx(EX_NOUSER
, "unknown group id: %s", gname
);
182 if ((pw
= getpwnam(s
)) != NULL
)
185 for (uname
= s
; *s
&& isdigit(*s
); ++s
);
189 errx(EX_NOUSER
, "unknown user id: %s", uname
);
201 if (*s
>= '0' && *s
<= '7') {
203 rv
= strtol(optarg
, &ep
, 8);
205 if (!done
|| rv
< 0 || *ep
)
206 errx(EX_USAGE
, "invalid file mode: %s", s
);
213 fprintf(stderr
, "usage: mount_hpfs [-u user] [-g group] [-m mask] bdev dir\n");
219 load_u2wtable (struct hpfs_args
*pargs
, char *name
)
229 snprintf(buf
, sizeof(buf
), "/usr/libdata/msdosfs/%s", name
);
233 if ((f
= fopen(fn
, "r")) == NULL
)
234 err(EX_NOINPUT
, "%s", fn
);
235 for (i
= 0; i
< 128; i
++) {
236 if (fscanf(f
, "%i", &code
) != 1)
237 errx(EX_DATAERR
, "u2w: missing item number %d", i
);
238 /* pargs->u2w[i] = code; */
240 for (i
= 0; i
< 128; i
++) {
241 if (fscanf(f
, "%i", &code
) != 1)
242 errx(EX_DATAERR
, "d2u: missing item number %d", i
);
243 pargs
->d2u
[i
] = code
;
245 for (i
= 0; i
< 128; i
++) {
246 if (fscanf(f
, "%i", &code
) != 1)
247 errx(EX_DATAERR
, "u2d: missing item number %d", i
);
248 pargs
->u2d
[i
] = code
;