1 1.30 mlelstv /* $NetBSD: mount_ados.c,v 1.30 2020/07/26 08:20:22 mlelstv 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.15 grant * 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.30 mlelstv __RCSID("$NetBSD: mount_ados.c,v 1.30 2020/07/26 08:20:22 mlelstv Exp $"); 40 1.1 chopps #endif /* not lint */ 41 1.1 chopps 42 1.1 chopps #include <sys/param.h> 43 1.1 chopps #include <sys/mount.h> 44 1.1 chopps #include <sys/stat.h> 45 1.27 pooka #include <assert.h> 46 1.1 chopps #include <err.h> 47 1.1 chopps #include <grp.h> 48 1.1 chopps #include <pwd.h> 49 1.1 chopps #include <stdio.h> 50 1.1 chopps #include <stdlib.h> 51 1.1 chopps #include <string.h> 52 1.1 chopps #include <unistd.h> 53 1.8 fvdl 54 1.8 fvdl #include <adosfs/adosfs.h> 55 1.1 chopps 56 1.16 jdolecek #include <mntopts.h> 57 1.13 is #include <errno.h> 58 1.28 pooka 59 1.28 pooka #include "mountprog.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.23 christos MOPT_NULL, 65 1.3 mycroft }; 66 1.3 mycroft 67 1.19 xtraeme int mount_ados(int argc, char **argv); 68 1.29 joerg __dead static void usage(void); 69 1.3 mycroft 70 1.12 jdolecek #ifndef MOUNT_NOMAIN 71 1.1 chopps int 72 1.12 jdolecek main(int argc, char **argv) 73 1.12 jdolecek { 74 1.12 jdolecek return mount_ados(argc, argv); 75 1.12 jdolecek } 76 1.12 jdolecek #endif 77 1.12 jdolecek 78 1.12 jdolecek int 79 1.19 xtraeme mount_ados(int argc, char **argv) 80 1.1 chopps { 81 1.1 chopps struct adosfs_args args; 82 1.1 chopps struct stat sb; 83 1.21 christos mntoptparse_t mp; 84 1.3 mycroft int c, mntflags, set_gid, set_uid, set_mask; 85 1.18 erh char *dev, *dir, canon_dir[MAXPATHLEN], canon_dev[MAXPATHLEN]; 86 1.1 chopps 87 1.3 mycroft mntflags = set_gid = set_uid = set_mask = 0; 88 1.1 chopps (void)memset(&args, '\0', sizeof(args)); 89 1.1 chopps 90 1.6 lukem while ((c = getopt(argc, argv, "u:g:m:o:")) != -1) { 91 1.1 chopps switch (c) { 92 1.1 chopps case 'u': 93 1.1 chopps args.uid = a_uid(optarg); 94 1.1 chopps set_uid = 1; 95 1.1 chopps break; 96 1.1 chopps case 'g': 97 1.1 chopps args.gid = a_gid(optarg); 98 1.1 chopps set_gid = 1; 99 1.1 chopps break; 100 1.1 chopps case 'm': 101 1.1 chopps args.mask = a_mask(optarg); 102 1.1 chopps set_mask = 1; 103 1.1 chopps break; 104 1.3 mycroft case 'o': 105 1.21 christos mp = getmntopts(optarg, mopts, &mntflags, 0); 106 1.21 christos if (mp == NULL) 107 1.21 christos err(1, "getmntopts"); 108 1.21 christos freemntopts(mp); 109 1.3 mycroft break; 110 1.1 chopps case '?': 111 1.1 chopps default: 112 1.1 chopps usage(); 113 1.1 chopps break; 114 1.1 chopps } 115 1.1 chopps } 116 1.1 chopps 117 1.1 chopps if (optind + 2 != argc) 118 1.1 chopps usage(); 119 1.1 chopps 120 1.1 chopps dev = argv[optind]; 121 1.1 chopps dir = argv[optind + 1]; 122 1.18 erh 123 1.30 mlelstv pathadj(dev, canon_dev); 124 1.30 mlelstv dev = canon_dev; 125 1.18 erh 126 1.30 mlelstv pathadj(dir, canon_dir); 127 1.30 mlelstv dir = canon_dir; 128 1.1 chopps 129 1.1 chopps args.fspec = dev; 130 1.1 chopps if (!set_gid || !set_uid || !set_mask) { 131 1.1 chopps if (stat(dir, &sb) == -1) 132 1.1 chopps err(1, "stat %s", dir); 133 1.1 chopps 134 1.1 chopps if (!set_uid) 135 1.1 chopps args.uid = sb.st_uid; 136 1.1 chopps if (!set_gid) 137 1.1 chopps args.gid = sb.st_gid; 138 1.1 chopps if (!set_mask) 139 1.1 chopps args.mask = sb.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO); 140 1.1 chopps } 141 1.1 chopps 142 1.27 pooka if (mount(MOUNT_ADOSFS, dir, mntflags, &args, sizeof args) == -1) 143 1.27 pooka if (errno != EROFS) 144 1.27 pooka err(1, "%s on %s", dev, dir); 145 1.13 is 146 1.27 pooka if (mntflags & MNT_GETARGS) { 147 1.27 pooka assert(errno != EROFS); 148 1.27 pooka printf("uid=%d, gid=%d, mask=0%o\n", args.uid, args.gid, 149 1.27 pooka args.mask); 150 1.27 pooka exit(0); 151 1.27 pooka } 152 1.1 chopps 153 1.13 is mntflags |= MNT_RDONLY; 154 1.26 dsl if (mount(MOUNT_ADOSFS, dir, mntflags, &args, sizeof args) == -1) 155 1.14 christos err(1, "%s on %s", dev, dir); 156 1.14 christos 157 1.14 christos exit (0); 158 1.1 chopps } 159 1.1 chopps 160 1.12 jdolecek static void 161 1.19 xtraeme usage(void) 162 1.1 chopps { 163 1.2 chopps 164 1.3 mycroft fprintf(stderr, "usage: mount_ados [-o options] [-u user] [-g group] [-m mask] bdev dir\n"); 165 1.2 chopps exit(1); 166 1.2 chopps } 167