Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2 | /* |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 3 | * Mini mount implementation for busybox |
| 4 | * |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 5 | * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>. |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 6 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 7 | * Copyright (C) 2005-2006 by Rob Landley <rob@landley.net> |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 8 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 9 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Erik Andersen | b7cc49d | 2000-01-13 06:38:14 +0000 | [diff] [blame] | 10 | */ |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 11 | // Design notes: There is no spec for mount. Remind me to write one. |
| 12 | // |
| 13 | // mount_main() calls singlemount() which calls mount_it_now(). |
| 14 | // |
| 15 | // mount_main() can loop through /etc/fstab for mount -a |
| 16 | // singlemount() can loop through /etc/filesystems for fstype detection. |
| 17 | // mount_it_now() does the actual mount. |
| 18 | // |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 19 | |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 20 | //config:config MOUNT |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 21 | //config: bool "mount (23 kb)" |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 22 | //config: default y |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 23 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 24 | //config: All files and filesystems in Unix are arranged into one big directory |
| 25 | //config: tree. The 'mount' utility is used to graft a filesystem onto a |
| 26 | //config: particular part of the tree. A filesystem can either live on a block |
| 27 | //config: device, or it can be accessible over the network, as is the case with |
Denys Vlasenko | 68b653b | 2017-07-27 10:53:09 +0200 | [diff] [blame] | 28 | //config: NFS filesystems. |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 29 | //config: |
| 30 | //config:config FEATURE_MOUNT_FAKE |
Denys Vlasenko | 5b3cbe3 | 2017-07-27 14:45:25 +0200 | [diff] [blame] | 31 | //config: bool "Support -f (fake mount)" |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 32 | //config: default y |
| 33 | //config: depends on MOUNT |
| 34 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 35 | //config: Enable support for faking a file system mount. |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 36 | //config: |
| 37 | //config:config FEATURE_MOUNT_VERBOSE |
Denys Vlasenko | 5b3cbe3 | 2017-07-27 14:45:25 +0200 | [diff] [blame] | 38 | //config: bool "Support -v (verbose)" |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 39 | //config: default y |
| 40 | //config: depends on MOUNT |
| 41 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 42 | //config: Enable multi-level -v[vv...] verbose messages. Useful if you |
| 43 | //config: debug mount problems and want to see what is exactly passed |
| 44 | //config: to the kernel. |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 45 | //config: |
| 46 | //config:config FEATURE_MOUNT_HELPERS |
| 47 | //config: bool "Support mount helpers" |
| 48 | //config: default n |
| 49 | //config: depends on MOUNT |
| 50 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 51 | //config: Enable mounting of virtual file systems via external helpers. |
| 52 | //config: E.g. "mount obexfs#-b00.11.22.33.44.55 /mnt" will in effect call |
| 53 | //config: "obexfs -b00.11.22.33.44.55 /mnt" |
| 54 | //config: Also "mount -t sometype [-o opts] fs /mnt" will try |
| 55 | //config: "sometype [-o opts] fs /mnt" if simple mount syscall fails. |
| 56 | //config: The idea is to use such virtual filesystems in /etc/fstab. |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 57 | //config: |
| 58 | //config:config FEATURE_MOUNT_LABEL |
| 59 | //config: bool "Support specifying devices by label or UUID" |
| 60 | //config: default y |
| 61 | //config: depends on MOUNT |
| 62 | //config: select VOLUMEID |
| 63 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 64 | //config: This allows for specifying a device by label or uuid, rather than by |
| 65 | //config: name. This feature utilizes the same functionality as blkid/findfs. |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 66 | //config: |
| 67 | //config:config FEATURE_MOUNT_NFS |
| 68 | //config: bool "Support mounting NFS file systems on Linux < 2.6.23" |
| 69 | //config: default n |
| 70 | //config: depends on MOUNT |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 71 | //config: select FEATURE_SYSLOG |
| 72 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 73 | //config: Enable mounting of NFS file systems on Linux kernels prior |
| 74 | //config: to version 2.6.23. Note that in this case mounting of NFS |
| 75 | //config: over IPv6 will not be possible. |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 76 | //config: |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 77 | //config: Note that this option links in RPC support from libc, |
| 78 | //config: which is rather large (~10 kbytes on uclibc). |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 79 | //config: |
| 80 | //config:config FEATURE_MOUNT_CIFS |
| 81 | //config: bool "Support mounting CIFS/SMB file systems" |
| 82 | //config: default y |
| 83 | //config: depends on MOUNT |
| 84 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 85 | //config: Enable support for samba mounts. |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 86 | //config: |
| 87 | //config:config FEATURE_MOUNT_FLAGS |
| 88 | //config: depends on MOUNT |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 89 | //config: bool "Support lots of -o flags" |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 90 | //config: default y |
| 91 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 92 | //config: Without this, mount only supports ro/rw/remount. With this, it |
| 93 | //config: supports nosuid, suid, dev, nodev, exec, noexec, sync, async, atime, |
| 94 | //config: noatime, diratime, nodiratime, loud, bind, move, shared, slave, |
| 95 | //config: private, unbindable, rshared, rslave, rprivate, and runbindable. |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 96 | //config: |
| 97 | //config:config FEATURE_MOUNT_FSTAB |
| 98 | //config: depends on MOUNT |
Denys Vlasenko | 5b3cbe3 | 2017-07-27 14:45:25 +0200 | [diff] [blame] | 99 | //config: bool "Support /etc/fstab and -a (mount all)" |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 100 | //config: default y |
| 101 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 102 | //config: Support mount all and looking for files in /etc/fstab. |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 103 | //config: |
| 104 | //config:config FEATURE_MOUNT_OTHERTAB |
| 105 | //config: depends on FEATURE_MOUNT_FSTAB |
| 106 | //config: bool "Support -T <alt_fstab>" |
| 107 | //config: default y |
| 108 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 109 | //config: Support mount -T (specifying an alternate fstab) |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 110 | |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 111 | /* On full-blown systems, requires suid for user mounts. |
| 112 | * But it's not unthinkable to have it available in non-suid flavor on some systems, |
| 113 | * for viewing mount table. |
| 114 | * Therefore we use BB_SUID_MAYBE instead of BB_SUID_REQUIRE: */ |
| 115 | //applet:IF_MOUNT(APPLET(mount, BB_DIR_BIN, IF_DESKTOP(BB_SUID_MAYBE) IF_NOT_DESKTOP(BB_SUID_DROP))) |
| 116 | |
| 117 | //kbuild:lib-$(CONFIG_MOUNT) += mount.o |
| 118 | |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 119 | //usage:#define mount_trivial_usage |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 120 | //usage: "[OPTIONS] [-o OPT] DEVICE NODE" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 121 | //usage:#define mount_full_usage "\n\n" |
| 122 | //usage: "Mount a filesystem. Filesystem autodetection requires /proc.\n" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 123 | //usage: "\n -a Mount all filesystems in fstab" |
| 124 | //usage: IF_FEATURE_MOUNT_FAKE( |
| 125 | //usage: IF_FEATURE_MTAB_SUPPORT( |
| 126 | //usage: "\n -f Update /etc/mtab, but don't mount" |
| 127 | //usage: ) |
| 128 | //usage: IF_NOT_FEATURE_MTAB_SUPPORT( |
| 129 | //usage: "\n -f Dry run" |
| 130 | //usage: ) |
| 131 | //usage: ) |
| 132 | //usage: IF_FEATURE_MOUNT_HELPERS( |
| 133 | //usage: "\n -i Don't run mount helper" |
| 134 | //usage: ) |
| 135 | //usage: IF_FEATURE_MTAB_SUPPORT( |
| 136 | //usage: "\n -n Don't update /etc/mtab" |
| 137 | //usage: ) |
Bernhard Reutner-Fischer | 20c5e5a | 2013-01-17 02:30:35 +0100 | [diff] [blame] | 138 | //usage: IF_FEATURE_MOUNT_VERBOSE( |
| 139 | //usage: "\n -v Verbose" |
| 140 | //usage: ) |
| 141 | ////usage: "\n -s Sloppy (ignored)" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 142 | //usage: "\n -r Read-only mount" |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 143 | ////usage: "\n -w Read-write mount (default)" |
Karol Lewandowski | b5ebe5f | 2011-11-03 10:02:31 +0100 | [diff] [blame] | 144 | //usage: "\n -t FSTYPE[,...] Filesystem type(s)" |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 145 | //usage: IF_FEATURE_MOUNT_OTHERTAB( |
| 146 | //usage: "\n -T FILE Read FILE instead of /etc/fstab" |
| 147 | //usage: ) |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 148 | //usage: "\n -O OPT Mount only filesystems with option OPT (-a only)" |
| 149 | //usage: "\n-o OPT:" |
| 150 | //usage: IF_FEATURE_MOUNT_LOOP( |
| 151 | //usage: "\n loop Ignored (loop devices are autodetected)" |
| 152 | //usage: ) |
| 153 | //usage: IF_FEATURE_MOUNT_FLAGS( |
| 154 | //usage: "\n [a]sync Writes are [a]synchronous" |
| 155 | //usage: "\n [no]atime Disable/enable updates to inode access times" |
| 156 | //usage: "\n [no]diratime Disable/enable atime updates to directories" |
| 157 | //usage: "\n [no]relatime Disable/enable atime updates relative to modification time" |
| 158 | //usage: "\n [no]dev (Dis)allow use of special device files" |
| 159 | //usage: "\n [no]exec (Dis)allow use of executable files" |
| 160 | //usage: "\n [no]suid (Dis)allow set-user-id-root programs" |
| 161 | //usage: "\n [r]shared Convert [recursively] to a shared subtree" |
| 162 | //usage: "\n [r]slave Convert [recursively] to a slave subtree" |
| 163 | //usage: "\n [r]private Convert [recursively] to a private subtree" |
| 164 | //usage: "\n [un]bindable Make mount point [un]able to be bind mounted" |
| 165 | //usage: "\n [r]bind Bind a file or directory [recursively] to another location" |
| 166 | //usage: "\n move Relocate an existing mount point" |
| 167 | //usage: ) |
| 168 | //usage: "\n remount Remount a mounted filesystem, changing flags" |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 169 | //usage: "\n ro Same as -r" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 170 | //usage: "\n" |
| 171 | //usage: "\nThere are filesystem-specific -o flags." |
| 172 | //usage: |
| 173 | //usage:#define mount_example_usage |
| 174 | //usage: "$ mount\n" |
| 175 | //usage: "/dev/hda3 on / type minix (rw)\n" |
| 176 | //usage: "proc on /proc type proc (rw)\n" |
| 177 | //usage: "devpts on /dev/pts type devpts (rw)\n" |
| 178 | //usage: "$ mount /dev/fd0 /mnt -t msdos -o ro\n" |
| 179 | //usage: "$ mount /tmp/diskimage /opt -t ext2 -o loop\n" |
| 180 | //usage: "$ mount cd_image.iso mydir\n" |
| 181 | //usage:#define mount_notes_usage |
| 182 | //usage: "Returns 0 for success, number of failed mounts for -a, or errno for one mount." |
| 183 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 184 | #include <mntent.h> |
Lauri Kasanen | 6cfec7d | 2020-12-21 18:55:59 +0200 | [diff] [blame] | 185 | #if ENABLE_FEATURE_SYSLOG |
Bernhard Reutner-Fischer | f470196 | 2008-01-27 12:50:12 +0000 | [diff] [blame] | 186 | #include <syslog.h> |
Lauri Kasanen | 6cfec7d | 2020-12-21 18:55:59 +0200 | [diff] [blame] | 187 | #endif |
Denys Vlasenko | da49f58 | 2009-07-08 02:58:38 +0200 | [diff] [blame] | 188 | #include <sys/mount.h> |
Denys Vlasenko | 102ff76 | 2009-11-21 17:14:08 +0100 | [diff] [blame] | 189 | // Grab more as needed from util-linux's mount/mount_constants.h |
| 190 | #ifndef MS_DIRSYNC |
| 191 | # define MS_DIRSYNC (1 << 7) // Directory modifications are synchronous |
| 192 | #endif |
Denys Vlasenko | 34c5115 | 2020-12-06 21:47:24 +0100 | [diff] [blame] | 193 | #ifndef MS_NOSYMFOLLOW |
| 194 | # define MS_NOSYMFOLLOW (1 << 8) |
Vladimir Dronnikov | be168b1 | 2009-10-05 02:18:01 +0200 | [diff] [blame] | 195 | #endif |
Denys Vlasenko | da49f58 | 2009-07-08 02:58:38 +0200 | [diff] [blame] | 196 | #ifndef MS_BIND |
| 197 | # define MS_BIND (1 << 12) |
| 198 | #endif |
| 199 | #ifndef MS_MOVE |
| 200 | # define MS_MOVE (1 << 13) |
| 201 | #endif |
| 202 | #ifndef MS_RECURSIVE |
| 203 | # define MS_RECURSIVE (1 << 14) |
| 204 | #endif |
| 205 | #ifndef MS_SILENT |
| 206 | # define MS_SILENT (1 << 15) |
| 207 | #endif |
Denys Vlasenko | 102ff76 | 2009-11-21 17:14:08 +0100 | [diff] [blame] | 208 | // The shared subtree stuff, which went in around 2.6.15 |
Denys Vlasenko | da49f58 | 2009-07-08 02:58:38 +0200 | [diff] [blame] | 209 | #ifndef MS_UNBINDABLE |
| 210 | # define MS_UNBINDABLE (1 << 17) |
| 211 | #endif |
| 212 | #ifndef MS_PRIVATE |
| 213 | # define MS_PRIVATE (1 << 18) |
| 214 | #endif |
| 215 | #ifndef MS_SLAVE |
| 216 | # define MS_SLAVE (1 << 19) |
| 217 | #endif |
| 218 | #ifndef MS_SHARED |
| 219 | # define MS_SHARED (1 << 20) |
| 220 | #endif |
Denys Vlasenko | 696c38d | 2020-12-06 20:59:41 +0100 | [diff] [blame] | 221 | |
Denys Vlasenko | da49f58 | 2009-07-08 02:58:38 +0200 | [diff] [blame] | 222 | #ifndef MS_RELATIME |
| 223 | # define MS_RELATIME (1 << 21) |
| 224 | #endif |
Denys Vlasenko | 9ad8979 | 2012-06-26 16:09:00 +0200 | [diff] [blame] | 225 | #ifndef MS_STRICTATIME |
| 226 | # define MS_STRICTATIME (1 << 24) |
| 227 | #endif |
Denys Vlasenko | 696c38d | 2020-12-06 20:59:41 +0100 | [diff] [blame] | 228 | #ifndef MS_LAZYTIME |
| 229 | # define MS_LAZYTIME (1 << 25) |
| 230 | #endif |
Denys Vlasenko | 9ad8979 | 2012-06-26 16:09:00 +0200 | [diff] [blame] | 231 | |
| 232 | /* Any ~MS_FOO value has this bit set: */ |
| 233 | #define BB_MS_INVERTED_VALUE (1u << 31) |
Eric Andersen | bd22ed8 | 2000-07-08 18:55:24 +0000 | [diff] [blame] | 234 | |
Denys Vlasenko | 102ff76 | 2009-11-21 17:14:08 +0100 | [diff] [blame] | 235 | #include "libbb.h" |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 236 | #include "common_bufsiz.h" |
Denis Vlasenko | 6aa7696 | 2008-03-18 01:44:52 +0000 | [diff] [blame] | 237 | #if ENABLE_FEATURE_MOUNT_LABEL |
Natanael Copa | 9aff299 | 2009-09-20 04:28:22 +0200 | [diff] [blame] | 238 | # include "volume_id.h" |
| 239 | #else |
| 240 | # define resolve_mount_spec(fsname) ((void)0) |
Denis Vlasenko | 6aa7696 | 2008-03-18 01:44:52 +0000 | [diff] [blame] | 241 | #endif |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 242 | |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 243 | // Needed for nfs support only |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 244 | #include <sys/utsname.h> |
| 245 | #undef TRUE |
| 246 | #undef FALSE |
Denys Vlasenko | cc42814 | 2009-12-16 02:06:56 +0100 | [diff] [blame] | 247 | #if ENABLE_FEATURE_MOUNT_NFS |
| 248 | /* This is just a warning of a common mistake. Possibly this should be a |
| 249 | * uclibc faq entry rather than in busybox... */ |
| 250 | # if defined(__UCLIBC__) && ! defined(__UCLIBC_HAS_RPC__) |
Denys Vlasenko | ce55284 | 2017-07-10 14:43:22 +0200 | [diff] [blame] | 251 | # warning "You probably need to build uClibc with UCLIBC_HAS_RPC for NFS support" |
Denys Vlasenko | 4892f3a | 2018-02-13 18:20:28 +0100 | [diff] [blame] | 252 | /* not #error, since user may be using e.g. libtirpc instead. |
| 253 | * This might work: |
| 254 | * CONFIG_EXTRA_CFLAGS="-I/usr/include/tirpc" |
| 255 | * CONFIG_EXTRA_LDLIBS="tirpc" |
| 256 | */ |
Denys Vlasenko | cc42814 | 2009-12-16 02:06:56 +0100 | [diff] [blame] | 257 | # endif |
| 258 | # include <rpc/rpc.h> |
| 259 | # include <rpc/pmap_prot.h> |
| 260 | # include <rpc/pmap_clnt.h> |
| 261 | #endif |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 262 | |
| 263 | |
Denis Vlasenko | 908d6b7 | 2006-12-18 23:07:42 +0000 | [diff] [blame] | 264 | #if defined(__dietlibc__) |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 265 | // 16.12.2006, Sampo Kellomaki (sampo@iki.fi) |
| 266 | // dietlibc-0.30 does not have implementation of getmntent_r() |
Denis Vlasenko | a0e17f7 | 2008-05-26 01:19:53 +0000 | [diff] [blame] | 267 | static struct mntent *getmntent_r(FILE* stream, struct mntent* result, |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 268 | char* buffer UNUSED_PARAM, int bufsize UNUSED_PARAM) |
Denis Vlasenko | 908d6b7 | 2006-12-18 23:07:42 +0000 | [diff] [blame] | 269 | { |
Denis Vlasenko | 908d6b7 | 2006-12-18 23:07:42 +0000 | [diff] [blame] | 270 | struct mntent* ment = getmntent(stream); |
Denis Vlasenko | a0e17f7 | 2008-05-26 01:19:53 +0000 | [diff] [blame] | 271 | return memcpy(result, ment, sizeof(*ment)); |
Denis Vlasenko | 908d6b7 | 2006-12-18 23:07:42 +0000 | [diff] [blame] | 272 | } |
| 273 | #endif |
| 274 | |
| 275 | |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 276 | // Not real flags, but we want to be able to check for this. |
Denis Vlasenko | 13c5a68 | 2006-10-16 22:39:51 +0000 | [diff] [blame] | 277 | enum { |
Denys Vlasenko | 911d265 | 2015-12-30 20:11:34 +0100 | [diff] [blame] | 278 | MOUNT_USERS = (1 << 27) * ENABLE_DESKTOP, |
| 279 | MOUNT_NOFAIL = (1 << 28) * ENABLE_DESKTOP, |
Denis Vlasenko | a4522c5 | 2008-03-17 08:46:43 +0000 | [diff] [blame] | 280 | MOUNT_NOAUTO = (1 << 29), |
| 281 | MOUNT_SWAP = (1 << 30), |
Denys Vlasenko | 911d265 | 2015-12-30 20:11:34 +0100 | [diff] [blame] | 282 | MOUNT_FAKEFLAGS = MOUNT_USERS | MOUNT_NOFAIL | MOUNT_NOAUTO | MOUNT_SWAP |
Denis Vlasenko | 13c5a68 | 2006-10-16 22:39:51 +0000 | [diff] [blame] | 283 | }; |
Denis Vlasenko | b1d8e7d | 2008-02-16 23:28:42 +0000 | [diff] [blame] | 284 | |
| 285 | |
Denys Vlasenko | 237bedd | 2016-07-06 21:58:02 +0200 | [diff] [blame] | 286 | #define OPTION_STR "o:*t:rwanfvsiO:" IF_FEATURE_MOUNT_OTHERTAB("T:") |
Denis Vlasenko | b1d8e7d | 2008-02-16 23:28:42 +0000 | [diff] [blame] | 287 | enum { |
| 288 | OPT_o = (1 << 0), |
| 289 | OPT_t = (1 << 1), |
| 290 | OPT_r = (1 << 2), |
| 291 | OPT_w = (1 << 3), |
| 292 | OPT_a = (1 << 4), |
| 293 | OPT_n = (1 << 5), |
| 294 | OPT_f = (1 << 6), |
| 295 | OPT_v = (1 << 7), |
| 296 | OPT_s = (1 << 8), |
| 297 | OPT_i = (1 << 9), |
Denis Vlasenko | 7aaedcf | 2009-03-14 22:57:20 +0000 | [diff] [blame] | 298 | OPT_O = (1 << 10), |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 299 | OPT_T = (1 << 11), |
Denis Vlasenko | b1d8e7d | 2008-02-16 23:28:42 +0000 | [diff] [blame] | 300 | }; |
| 301 | |
| 302 | #if ENABLE_FEATURE_MTAB_SUPPORT |
Denys Vlasenko | e2e4cc2 | 2009-06-19 11:48:29 +0200 | [diff] [blame] | 303 | #define USE_MTAB (!(option_mask32 & OPT_n)) |
Denis Vlasenko | b1d8e7d | 2008-02-16 23:28:42 +0000 | [diff] [blame] | 304 | #else |
Denys Vlasenko | e2e4cc2 | 2009-06-19 11:48:29 +0200 | [diff] [blame] | 305 | #define USE_MTAB 0 |
Denis Vlasenko | b1d8e7d | 2008-02-16 23:28:42 +0000 | [diff] [blame] | 306 | #endif |
| 307 | |
| 308 | #if ENABLE_FEATURE_MOUNT_FAKE |
Denys Vlasenko | e2e4cc2 | 2009-06-19 11:48:29 +0200 | [diff] [blame] | 309 | #define FAKE_IT (option_mask32 & OPT_f) |
Denis Vlasenko | b1d8e7d | 2008-02-16 23:28:42 +0000 | [diff] [blame] | 310 | #else |
Denys Vlasenko | e2e4cc2 | 2009-06-19 11:48:29 +0200 | [diff] [blame] | 311 | #define FAKE_IT 0 |
| 312 | #endif |
| 313 | |
| 314 | #if ENABLE_FEATURE_MOUNT_HELPERS |
| 315 | #define HELPERS_ALLOWED (!(option_mask32 & OPT_i)) |
| 316 | #else |
| 317 | #define HELPERS_ALLOWED 0 |
Denis Vlasenko | b1d8e7d | 2008-02-16 23:28:42 +0000 | [diff] [blame] | 318 | #endif |
| 319 | |
| 320 | |
Denis Vlasenko | 13c5a68 | 2006-10-16 22:39:51 +0000 | [diff] [blame] | 321 | // TODO: more "user" flag compatibility. |
| 322 | // "user" option (from mount manpage): |
| 323 | // Only the user that mounted a filesystem can unmount it again. |
| 324 | // If any user should be able to unmount, then use users instead of user |
| 325 | // in the fstab line. The owner option is similar to the user option, |
| 326 | // with the restriction that the user must be the owner of the special file. |
| 327 | // This may be useful e.g. for /dev/fd if a login script makes |
| 328 | // the console user owner of this device. |
Rob Landley | 3ba7bd1 | 2006-08-09 19:51:13 +0000 | [diff] [blame] | 329 | |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 330 | // Standard mount options (from -o options or --options), |
| 331 | // with corresponding flags |
Denys Vlasenko | 965b795 | 2020-11-30 13:03:03 +0100 | [diff] [blame] | 332 | static const int32_t mount_options[] ALIGN4 = { |
Rob Landley | e3781b7 | 2006-08-08 01:39:49 +0000 | [diff] [blame] | 333 | // MS_FLAGS set a bit. ~MS_FLAGS disable that bit. 0 flags are NOPs. |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 334 | |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 335 | IF_FEATURE_MOUNT_LOOP( |
Denis Vlasenko | 63430ae | 2007-10-29 19:18:39 +0000 | [diff] [blame] | 336 | /* "loop" */ 0, |
Rob Landley | e3781b7 | 2006-08-08 01:39:49 +0000 | [diff] [blame] | 337 | ) |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 338 | |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 339 | IF_FEATURE_MOUNT_FSTAB( |
Denis Vlasenko | 63430ae | 2007-10-29 19:18:39 +0000 | [diff] [blame] | 340 | /* "defaults" */ 0, |
| 341 | /* "quiet" 0 - do not filter out, vfat wants to see it */ |
| 342 | /* "noauto" */ MOUNT_NOAUTO, |
| 343 | /* "sw" */ MOUNT_SWAP, |
| 344 | /* "swap" */ MOUNT_SWAP, |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 345 | IF_DESKTOP(/* "user" */ MOUNT_USERS,) |
| 346 | IF_DESKTOP(/* "users" */ MOUNT_USERS,) |
Denys Vlasenko | 911d265 | 2015-12-30 20:11:34 +0100 | [diff] [blame] | 347 | IF_DESKTOP(/* "nofail" */ MOUNT_NOFAIL,) |
Denis Vlasenko | 8c638cb | 2008-01-29 09:31:09 +0000 | [diff] [blame] | 348 | /* "_netdev" */ 0, |
Bernhard Reutner-Fischer | 20c5e5a | 2013-01-17 02:30:35 +0100 | [diff] [blame] | 349 | IF_DESKTOP(/* "comment=" */ 0,) /* systemd uses this in fstab */ |
Rob Landley | e3781b7 | 2006-08-08 01:39:49 +0000 | [diff] [blame] | 350 | ) |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 351 | |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 352 | IF_FEATURE_MOUNT_FLAGS( |
Rob Landley | e3781b7 | 2006-08-08 01:39:49 +0000 | [diff] [blame] | 353 | // vfs flags |
Denis Vlasenko | 63430ae | 2007-10-29 19:18:39 +0000 | [diff] [blame] | 354 | /* "nosuid" */ MS_NOSUID, |
| 355 | /* "suid" */ ~MS_NOSUID, |
| 356 | /* "dev" */ ~MS_NODEV, |
| 357 | /* "nodev" */ MS_NODEV, |
| 358 | /* "exec" */ ~MS_NOEXEC, |
| 359 | /* "noexec" */ MS_NOEXEC, |
| 360 | /* "sync" */ MS_SYNCHRONOUS, |
Denis Vlasenko | c9ca0a3 | 2008-02-18 11:08:33 +0000 | [diff] [blame] | 361 | /* "dirsync" */ MS_DIRSYNC, |
Denis Vlasenko | 63430ae | 2007-10-29 19:18:39 +0000 | [diff] [blame] | 362 | /* "async" */ ~MS_SYNCHRONOUS, |
| 363 | /* "atime" */ ~MS_NOATIME, |
| 364 | /* "noatime" */ MS_NOATIME, |
| 365 | /* "diratime" */ ~MS_NODIRATIME, |
| 366 | /* "nodiratime" */ MS_NODIRATIME, |
Bernhard Reutner-Fischer | fb5902c | 2008-08-06 18:14:38 +0000 | [diff] [blame] | 367 | /* "relatime" */ MS_RELATIME, |
| 368 | /* "norelatime" */ ~MS_RELATIME, |
Denys Vlasenko | 9ad8979 | 2012-06-26 16:09:00 +0200 | [diff] [blame] | 369 | /* "strictatime" */ MS_STRICTATIME, |
Denys Vlasenko | 696c38d | 2020-12-06 20:59:41 +0100 | [diff] [blame] | 370 | /* "nostrictatime"*/ ~MS_STRICTATIME, |
| 371 | /* "lazytime" */ MS_LAZYTIME, |
| 372 | /* "nolazytime" */ ~MS_LAZYTIME, |
Denys Vlasenko | 34c5115 | 2020-12-06 21:47:24 +0100 | [diff] [blame] | 373 | /* "nosymfollow" */ MS_NOSYMFOLLOW, |
Denys Vlasenko | 696c38d | 2020-12-06 20:59:41 +0100 | [diff] [blame] | 374 | /* "mand" */ MS_MANDLOCK, |
| 375 | /* "nomand" */ ~MS_MANDLOCK, |
| 376 | /* "loud" */ ~MS_SILENT, |
Eric Andersen | 9601a1c | 2006-03-20 18:07:50 +0000 | [diff] [blame] | 377 | |
Rob Landley | e3781b7 | 2006-08-08 01:39:49 +0000 | [diff] [blame] | 378 | // action flags |
Denys Vlasenko | 696c38d | 2020-12-06 20:59:41 +0100 | [diff] [blame] | 379 | /* "rbind" */ MS_BIND|MS_RECURSIVE, |
Denis Vlasenko | 63430ae | 2007-10-29 19:18:39 +0000 | [diff] [blame] | 380 | /* "bind" */ MS_BIND, |
| 381 | /* "move" */ MS_MOVE, |
| 382 | /* "shared" */ MS_SHARED, |
| 383 | /* "slave" */ MS_SLAVE, |
| 384 | /* "private" */ MS_PRIVATE, |
| 385 | /* "unbindable" */ MS_UNBINDABLE, |
| 386 | /* "rshared" */ MS_SHARED|MS_RECURSIVE, |
| 387 | /* "rslave" */ MS_SLAVE|MS_RECURSIVE, |
Roman Borisov | d3679d2 | 2011-03-23 11:20:25 +0300 | [diff] [blame] | 388 | /* "rprivate" */ MS_PRIVATE|MS_RECURSIVE, |
Denis Vlasenko | 63430ae | 2007-10-29 19:18:39 +0000 | [diff] [blame] | 389 | /* "runbindable" */ MS_UNBINDABLE|MS_RECURSIVE, |
Rob Landley | e3781b7 | 2006-08-08 01:39:49 +0000 | [diff] [blame] | 390 | ) |
| 391 | |
| 392 | // Always understood. |
Denis Vlasenko | 63430ae | 2007-10-29 19:18:39 +0000 | [diff] [blame] | 393 | /* "ro" */ MS_RDONLY, // vfs flag |
| 394 | /* "rw" */ ~MS_RDONLY, // vfs flag |
| 395 | /* "remount" */ MS_REMOUNT // action flag |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 396 | }; |
| 397 | |
Denys Vlasenko | 3e134eb | 2016-04-22 18:09:21 +0200 | [diff] [blame] | 398 | static const char mount_option_str[] ALIGN1 = |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 399 | IF_FEATURE_MOUNT_LOOP( |
Denis Vlasenko | 3f8f4b2 | 2008-12-10 11:28:30 +0000 | [diff] [blame] | 400 | "loop\0" |
Denis Vlasenko | 63430ae | 2007-10-29 19:18:39 +0000 | [diff] [blame] | 401 | ) |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 402 | IF_FEATURE_MOUNT_FSTAB( |
Denis Vlasenko | 3f8f4b2 | 2008-12-10 11:28:30 +0000 | [diff] [blame] | 403 | "defaults\0" |
| 404 | // "quiet\0" - do not filter out, vfat wants to see it |
| 405 | "noauto\0" |
| 406 | "sw\0" |
| 407 | "swap\0" |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 408 | IF_DESKTOP("user\0") |
| 409 | IF_DESKTOP("users\0") |
Denys Vlasenko | 911d265 | 2015-12-30 20:11:34 +0100 | [diff] [blame] | 410 | IF_DESKTOP("nofail\0") |
Denis Vlasenko | 3f8f4b2 | 2008-12-10 11:28:30 +0000 | [diff] [blame] | 411 | "_netdev\0" |
Bernhard Reutner-Fischer | 20c5e5a | 2013-01-17 02:30:35 +0100 | [diff] [blame] | 412 | IF_DESKTOP("comment=\0") /* systemd uses this in fstab */ |
Denis Vlasenko | 63430ae | 2007-10-29 19:18:39 +0000 | [diff] [blame] | 413 | ) |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 414 | IF_FEATURE_MOUNT_FLAGS( |
Denis Vlasenko | 63430ae | 2007-10-29 19:18:39 +0000 | [diff] [blame] | 415 | // vfs flags |
Denys Vlasenko | 696c38d | 2020-12-06 20:59:41 +0100 | [diff] [blame] | 416 | "nosuid" "\0" |
| 417 | "suid" "\0" |
| 418 | "dev" "\0" |
| 419 | "nodev" "\0" |
| 420 | "exec" "\0" |
| 421 | "noexec" "\0" |
| 422 | "sync" "\0" |
| 423 | "dirsync" "\0" |
| 424 | "async" "\0" |
| 425 | "atime" "\0" |
| 426 | "noatime" "\0" |
| 427 | "diratime" "\0" |
| 428 | "nodiratime" "\0" |
| 429 | "relatime" "\0" |
| 430 | "norelatime" "\0" |
| 431 | "strictatime" "\0" |
| 432 | "nostrictatime""\0" |
| 433 | "lazytime" "\0" |
| 434 | "nolazytime" "\0" |
Denys Vlasenko | 34c5115 | 2020-12-06 21:47:24 +0100 | [diff] [blame] | 435 | "nosymfollow" "\0" |
Denys Vlasenko | 696c38d | 2020-12-06 20:59:41 +0100 | [diff] [blame] | 436 | "mand" "\0" |
| 437 | "nomand" "\0" |
| 438 | "loud" "\0" |
Denis Vlasenko | 63430ae | 2007-10-29 19:18:39 +0000 | [diff] [blame] | 439 | |
| 440 | // action flags |
Denys Vlasenko | 696c38d | 2020-12-06 20:59:41 +0100 | [diff] [blame] | 441 | "rbind\0" |
Denis Vlasenko | 3f8f4b2 | 2008-12-10 11:28:30 +0000 | [diff] [blame] | 442 | "bind\0" |
| 443 | "move\0" |
Roman Borisov | 945fd17 | 2011-02-25 14:50:39 +0300 | [diff] [blame] | 444 | "make-shared\0" |
| 445 | "make-slave\0" |
| 446 | "make-private\0" |
| 447 | "make-unbindable\0" |
| 448 | "make-rshared\0" |
| 449 | "make-rslave\0" |
| 450 | "make-rprivate\0" |
| 451 | "make-runbindable\0" |
Denis Vlasenko | 63430ae | 2007-10-29 19:18:39 +0000 | [diff] [blame] | 452 | ) |
| 453 | |
| 454 | // Always understood. |
Denis Vlasenko | 3f8f4b2 | 2008-12-10 11:28:30 +0000 | [diff] [blame] | 455 | "ro\0" // vfs flag |
| 456 | "rw\0" // vfs flag |
| 457 | "remount\0" // action flag |
Denis Vlasenko | 63430ae | 2007-10-29 19:18:39 +0000 | [diff] [blame] | 458 | ; |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 459 | |
Denis Vlasenko | f732e96 | 2008-02-18 12:07:49 +0000 | [diff] [blame] | 460 | |
| 461 | struct globals { |
| 462 | #if ENABLE_FEATURE_MOUNT_NFS |
| 463 | smalluint nfs_mount_version; |
| 464 | #endif |
| 465 | #if ENABLE_FEATURE_MOUNT_VERBOSE |
| 466 | unsigned verbose; |
| 467 | #endif |
| 468 | llist_t *fslist; |
Denis Vlasenko | d0a071a | 2008-03-17 09:33:45 +0000 | [diff] [blame] | 469 | char getmntent_buf[1]; |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 470 | } FIX_ALIASING; |
Denis Vlasenko | d0a071a | 2008-03-17 09:33:45 +0000 | [diff] [blame] | 471 | enum { GETMNTENT_BUFSIZE = COMMON_BUFSIZE - offsetof(struct globals, getmntent_buf) }; |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 472 | #define G (*(struct globals*)bb_common_bufsiz1) |
Denis Vlasenko | f732e96 | 2008-02-18 12:07:49 +0000 | [diff] [blame] | 473 | #define nfs_mount_version (G.nfs_mount_version) |
Denis Vlasenko | b413368 | 2008-02-18 13:05:38 +0000 | [diff] [blame] | 474 | #if ENABLE_FEATURE_MOUNT_VERBOSE |
Denis Vlasenko | f732e96 | 2008-02-18 12:07:49 +0000 | [diff] [blame] | 475 | #define verbose (G.verbose ) |
Denis Vlasenko | b413368 | 2008-02-18 13:05:38 +0000 | [diff] [blame] | 476 | #else |
| 477 | #define verbose 0 |
| 478 | #endif |
Denis Vlasenko | f732e96 | 2008-02-18 12:07:49 +0000 | [diff] [blame] | 479 | #define fslist (G.fslist ) |
| 480 | #define getmntent_buf (G.getmntent_buf ) |
Denys Vlasenko | 47cfbf3 | 2016-04-21 18:18:48 +0200 | [diff] [blame] | 481 | #define INIT_G() do { setup_common_bufsiz(); } while (0) |
Denis Vlasenko | f732e96 | 2008-02-18 12:07:49 +0000 | [diff] [blame] | 482 | |
Roman Borisov | c8dc01d | 2011-02-28 05:06:01 +0100 | [diff] [blame] | 483 | #if ENABLE_FEATURE_MTAB_SUPPORT |
| 484 | /* |
| 485 | * update_mtab_entry_on_move() is used to update entry in case of mount --move. |
| 486 | * we are looking for existing entries mnt_dir which is equal to mnt_fsname of |
| 487 | * input mntent and replace it by new one. |
| 488 | */ |
| 489 | static void FAST_FUNC update_mtab_entry_on_move(const struct mntent *mp) |
| 490 | { |
| 491 | struct mntent *entries, *m; |
| 492 | int i, count; |
| 493 | FILE *mountTable; |
| 494 | |
| 495 | mountTable = setmntent(bb_path_mtab_file, "r"); |
| 496 | if (!mountTable) { |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 497 | bb_simple_perror_msg(bb_path_mtab_file); |
Roman Borisov | c8dc01d | 2011-02-28 05:06:01 +0100 | [diff] [blame] | 498 | return; |
| 499 | } |
| 500 | |
| 501 | entries = NULL; |
| 502 | count = 0; |
| 503 | while ((m = getmntent(mountTable)) != NULL) { |
| 504 | entries = xrealloc_vector(entries, 3, count); |
| 505 | entries[count].mnt_fsname = xstrdup(m->mnt_fsname); |
| 506 | entries[count].mnt_dir = xstrdup(m->mnt_dir); |
| 507 | entries[count].mnt_type = xstrdup(m->mnt_type); |
| 508 | entries[count].mnt_opts = xstrdup(m->mnt_opts); |
| 509 | entries[count].mnt_freq = m->mnt_freq; |
| 510 | entries[count].mnt_passno = m->mnt_passno; |
| 511 | count++; |
| 512 | } |
| 513 | endmntent(mountTable); |
| 514 | |
| 515 | mountTable = setmntent(bb_path_mtab_file, "w"); |
| 516 | if (mountTable) { |
| 517 | for (i = 0; i < count; i++) { |
| 518 | if (strcmp(entries[i].mnt_dir, mp->mnt_fsname) != 0) |
| 519 | addmntent(mountTable, &entries[i]); |
| 520 | else |
| 521 | addmntent(mountTable, mp); |
| 522 | } |
| 523 | endmntent(mountTable); |
| 524 | } else if (errno != EROFS) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 525 | bb_simple_perror_msg(bb_path_mtab_file); |
Roman Borisov | c8dc01d | 2011-02-28 05:06:01 +0100 | [diff] [blame] | 526 | |
| 527 | if (ENABLE_FEATURE_CLEAN_UP) { |
| 528 | for (i = 0; i < count; i++) { |
| 529 | free(entries[i].mnt_fsname); |
| 530 | free(entries[i].mnt_dir); |
| 531 | free(entries[i].mnt_type); |
| 532 | free(entries[i].mnt_opts); |
| 533 | } |
| 534 | free(entries); |
| 535 | } |
| 536 | } |
| 537 | #endif |
Denis Vlasenko | f732e96 | 2008-02-18 12:07:49 +0000 | [diff] [blame] | 538 | |
| 539 | #if ENABLE_FEATURE_MOUNT_VERBOSE |
| 540 | static int verbose_mount(const char *source, const char *target, |
| 541 | const char *filesystemtype, |
| 542 | unsigned long mountflags, const void *data) |
| 543 | { |
| 544 | int rc; |
| 545 | |
| 546 | errno = 0; |
| 547 | rc = mount(source, target, filesystemtype, mountflags, data); |
| 548 | if (verbose >= 2) |
Denis Vlasenko | a4522c5 | 2008-03-17 08:46:43 +0000 | [diff] [blame] | 549 | bb_perror_msg("mount('%s','%s','%s',0x%08lx,'%s'):%d", |
Denis Vlasenko | b413368 | 2008-02-18 13:05:38 +0000 | [diff] [blame] | 550 | source, target, filesystemtype, |
| 551 | mountflags, (char*)data, rc); |
Denis Vlasenko | f732e96 | 2008-02-18 12:07:49 +0000 | [diff] [blame] | 552 | return rc; |
| 553 | } |
| 554 | #else |
| 555 | #define verbose_mount(...) mount(__VA_ARGS__) |
| 556 | #endif |
| 557 | |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 558 | // Append mount options to string |
Denis Vlasenko | 06c0a71 | 2007-01-29 22:51:44 +0000 | [diff] [blame] | 559 | static void append_mount_options(char **oldopts, const char *newopts) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 560 | { |
Denis Vlasenko | 8d474b5 | 2006-09-17 15:00:58 +0000 | [diff] [blame] | 561 | if (*oldopts && **oldopts) { |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 562 | // Do not insert options which are already there |
Denis Vlasenko | c889d2b | 2006-09-17 15:08:12 +0000 | [diff] [blame] | 563 | while (newopts[0]) { |
| 564 | char *p; |
Denys Vlasenko | 1b66112 | 2021-08-23 02:31:26 +0200 | [diff] [blame] | 565 | int len; |
| 566 | |
| 567 | len = strchrnul(newopts, ',') - newopts; |
Denis Vlasenko | c889d2b | 2006-09-17 15:08:12 +0000 | [diff] [blame] | 568 | p = *oldopts; |
| 569 | while (1) { |
Denis Vlasenko | 13c5a68 | 2006-10-16 22:39:51 +0000 | [diff] [blame] | 570 | if (!strncmp(p, newopts, len) |
Denis Vlasenko | 63430ae | 2007-10-29 19:18:39 +0000 | [diff] [blame] | 571 | && (p[len] == ',' || p[len] == '\0')) |
Denis Vlasenko | c889d2b | 2006-09-17 15:08:12 +0000 | [diff] [blame] | 572 | goto skip; |
| 573 | p = strchr(p,','); |
Denis Vlasenko | 51742f4 | 2007-04-12 00:32:05 +0000 | [diff] [blame] | 574 | if (!p) break; |
Denis Vlasenko | c889d2b | 2006-09-17 15:08:12 +0000 | [diff] [blame] | 575 | p++; |
| 576 | } |
| 577 | p = xasprintf("%s,%.*s", *oldopts, len, newopts); |
| 578 | free(*oldopts); |
| 579 | *oldopts = p; |
Denis Vlasenko | 63430ae | 2007-10-29 19:18:39 +0000 | [diff] [blame] | 580 | skip: |
Denis Vlasenko | c889d2b | 2006-09-17 15:08:12 +0000 | [diff] [blame] | 581 | newopts += len; |
Denys Vlasenko | 1b66112 | 2021-08-23 02:31:26 +0200 | [diff] [blame] | 582 | while (*newopts == ',') newopts++; |
Denis Vlasenko | c889d2b | 2006-09-17 15:08:12 +0000 | [diff] [blame] | 583 | } |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 584 | } else { |
| 585 | if (ENABLE_FEATURE_CLEAN_UP) free(*oldopts); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 586 | *oldopts = xstrdup(newopts); |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 587 | } |
| 588 | } |
| 589 | |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 590 | // Use the mount_options list to parse options into flags. |
Alexander Shishkin | 7765095 | 2010-10-28 06:10:03 +0200 | [diff] [blame] | 591 | // Also update list of unrecognized options if unrecognized != NULL |
Denys Vlasenko | cf4dc4a | 2021-10-08 02:16:41 +0200 | [diff] [blame] | 592 | static unsigned long parse_mount_options(char *options, char **unrecognized, uint32_t *opt) |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 593 | { |
Denys Vlasenko | 9ee4266 | 2012-06-21 12:08:56 +0200 | [diff] [blame] | 594 | unsigned long flags = MS_SILENT; |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 595 | |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 596 | // Loop through options |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 597 | for (;;) { |
Denis Vlasenko | 6b06cb8 | 2008-05-15 21:30:45 +0000 | [diff] [blame] | 598 | unsigned i; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 599 | char *comma = strchr(options, ','); |
Denis Vlasenko | 63430ae | 2007-10-29 19:18:39 +0000 | [diff] [blame] | 600 | const char *option_str = mount_option_str; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 601 | |
Denis Vlasenko | 63430ae | 2007-10-29 19:18:39 +0000 | [diff] [blame] | 602 | if (comma) *comma = '\0'; |
Eric Andersen | 3ae0c78 | 1999-11-04 01:13:21 +0000 | [diff] [blame] | 603 | |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 604 | // FIXME: use hasmntopt() |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 605 | // Find this option in mount_options |
Denis Vlasenko | 80b8b39 | 2007-06-25 10:55:35 +0000 | [diff] [blame] | 606 | for (i = 0; i < ARRAY_SIZE(mount_options); i++) { |
Denys Vlasenko | 6ebb2b6 | 2012-06-22 15:17:18 +0200 | [diff] [blame] | 607 | unsigned opt_len = strlen(option_str); |
Bernhard Reutner-Fischer | 20c5e5a | 2013-01-17 02:30:35 +0100 | [diff] [blame] | 608 | |
Denys Vlasenko | 6ebb2b6 | 2012-06-22 15:17:18 +0200 | [diff] [blame] | 609 | if (strncasecmp(option_str, options, opt_len) == 0 |
Bernhard Reutner-Fischer | 20c5e5a | 2013-01-17 02:30:35 +0100 | [diff] [blame] | 610 | && (options[opt_len] == '\0' |
| 611 | /* or is it "comment=" thingy in fstab? */ |
| 612 | IF_FEATURE_MOUNT_FSTAB(IF_DESKTOP( || option_str[opt_len-1] == '=' )) |
| 613 | ) |
Denys Vlasenko | 6ebb2b6 | 2012-06-22 15:17:18 +0200 | [diff] [blame] | 614 | ) { |
Denys Vlasenko | 9ee4266 | 2012-06-21 12:08:56 +0200 | [diff] [blame] | 615 | unsigned long fl = mount_options[i]; |
Denys Vlasenko | 9ad8979 | 2012-06-26 16:09:00 +0200 | [diff] [blame] | 616 | if (fl & BB_MS_INVERTED_VALUE) |
Alexander Shishkin | 7765095 | 2010-10-28 06:10:03 +0200 | [diff] [blame] | 617 | flags &= fl; |
| 618 | else |
| 619 | flags |= fl; |
Denys Vlasenko | cf4dc4a | 2021-10-08 02:16:41 +0200 | [diff] [blame] | 620 | /* If we see "-o rw" on command line, it's the same as -w: |
| 621 | * "do not try to fall back to RO mounts" |
| 622 | */ |
| 623 | if (fl == ~MS_RDONLY && opt) |
| 624 | (*opt) |= OPT_w; |
Alexander Shishkin | 7765095 | 2010-10-28 06:10:03 +0200 | [diff] [blame] | 625 | goto found; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 626 | } |
Denys Vlasenko | 6ebb2b6 | 2012-06-22 15:17:18 +0200 | [diff] [blame] | 627 | option_str += opt_len + 1; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 628 | } |
Alexander Shishkin | 7765095 | 2010-10-28 06:10:03 +0200 | [diff] [blame] | 629 | // We did not recognize this option. |
| 630 | // If "unrecognized" is not NULL, append option there. |
| 631 | // Note that we should not append *empty* option - |
| 632 | // in this case we want to pass NULL, not "", to "data" |
| 633 | // parameter of mount(2) syscall. |
| 634 | // This is crucial for filesystems that don't accept |
| 635 | // any arbitrary mount options, like cgroup fs: |
| 636 | // "mount -t cgroup none /mnt" |
| 637 | if (options[0] && unrecognized) { |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 638 | // Add it to strflags, to pass on to kernel |
Alexander Shishkin | 7765095 | 2010-10-28 06:10:03 +0200 | [diff] [blame] | 639 | char *p = *unrecognized; |
| 640 | unsigned len = p ? strlen(p) : 0; |
| 641 | *unrecognized = p = xrealloc(p, len + strlen(options) + 2); |
Eric Andersen | 9601a1c | 2006-03-20 18:07:50 +0000 | [diff] [blame] | 642 | |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 643 | // Comma separated if it's not the first one |
Alexander Shishkin | 7765095 | 2010-10-28 06:10:03 +0200 | [diff] [blame] | 644 | if (len) p[len++] = ','; |
| 645 | strcpy(p + len, options); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 646 | } |
Alexander Shishkin | 7765095 | 2010-10-28 06:10:03 +0200 | [diff] [blame] | 647 | found: |
Denis Vlasenko | 2535f12 | 2007-09-15 13:28:30 +0000 | [diff] [blame] | 648 | if (!comma) |
| 649 | break; |
| 650 | // Advance to next option |
| 651 | *comma = ','; |
| 652 | options = ++comma; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 653 | } |
Eric Andersen | 9601a1c | 2006-03-20 18:07:50 +0000 | [diff] [blame] | 654 | |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 655 | return flags; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 656 | } |
| 657 | |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 658 | // Return a list of all block device backed filesystems |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 659 | static llist_t *get_block_backed_filesystems(void) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 660 | { |
Denys Vlasenko | 6599e38 | 2020-11-30 15:10:43 +0100 | [diff] [blame] | 661 | static const char filesystems[2][sizeof("/proc/filesystems")] ALIGN1 = { |
Denis Vlasenko | 372686b | 2006-10-12 22:42:33 +0000 | [diff] [blame] | 662 | "/etc/filesystems", |
| 663 | "/proc/filesystems", |
Denis Vlasenko | 372686b | 2006-10-12 22:42:33 +0000 | [diff] [blame] | 664 | }; |
| 665 | char *fs, *buf; |
Denys Vlasenko | e2e4cc2 | 2009-06-19 11:48:29 +0200 | [diff] [blame] | 666 | llist_t *list = NULL; |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 667 | int i; |
| 668 | FILE *f; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 669 | |
Denis Vlasenko | 8746885 | 2007-04-13 23:22:00 +0000 | [diff] [blame] | 670 | for (i = 0; i < 2; i++) { |
Denis Vlasenko | 5415c85 | 2008-07-21 23:05:26 +0000 | [diff] [blame] | 671 | f = fopen_for_read(filesystems[i]); |
Denis Vlasenko | 8d474b5 | 2006-09-17 15:00:58 +0000 | [diff] [blame] | 672 | if (!f) continue; |
Eric Andersen | 9601a1c | 2006-03-20 18:07:50 +0000 | [diff] [blame] | 673 | |
Denis Vlasenko | 8ee649a | 2008-03-26 20:04:27 +0000 | [diff] [blame] | 674 | while ((buf = xmalloc_fgetline(f)) != NULL) { |
Denys Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 675 | if (is_prefixed_with(buf, "nodev") && isspace(buf[5])) |
Denys Vlasenko | f85554c | 2011-11-03 09:54:53 +0100 | [diff] [blame] | 676 | goto next; |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 677 | fs = skip_whitespace(buf); |
Denys Vlasenko | e2e4cc2 | 2009-06-19 11:48:29 +0200 | [diff] [blame] | 678 | if (*fs == '#' || *fs == '*' || !*fs) |
Denys Vlasenko | f85554c | 2011-11-03 09:54:53 +0100 | [diff] [blame] | 679 | goto next; |
Eric Andersen | 9601a1c | 2006-03-20 18:07:50 +0000 | [diff] [blame] | 680 | |
Denis Vlasenko | 372686b | 2006-10-12 22:42:33 +0000 | [diff] [blame] | 681 | llist_add_to_end(&list, xstrdup(fs)); |
Denys Vlasenko | f85554c | 2011-11-03 09:54:53 +0100 | [diff] [blame] | 682 | next: |
Denis Vlasenko | 372686b | 2006-10-12 22:42:33 +0000 | [diff] [blame] | 683 | free(buf); |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 684 | } |
| 685 | if (ENABLE_FEATURE_CLEAN_UP) fclose(f); |
| 686 | } |
| 687 | |
| 688 | return list; |
| 689 | } |
| 690 | |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 691 | #if ENABLE_FEATURE_CLEAN_UP |
| 692 | static void delete_block_backed_filesystems(void) |
| 693 | { |
Rob Landley | a6b5b60 | 2006-05-08 19:03:07 +0000 | [diff] [blame] | 694 | llist_free(fslist, free); |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 695 | } |
Rob Landley | fe908fd | 2006-03-29 14:30:49 +0000 | [diff] [blame] | 696 | #else |
| 697 | void delete_block_backed_filesystems(void); |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 698 | #endif |
| 699 | |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 700 | // Perform actual mount of specific filesystem at specific location. |
Denis Vlasenko | 8d474b5 | 2006-09-17 15:00:58 +0000 | [diff] [blame] | 701 | // NB: mp->xxx fields may be trashed on exit |
Denys Vlasenko | 9ee4266 | 2012-06-21 12:08:56 +0200 | [diff] [blame] | 702 | static int mount_it_now(struct mntent *mp, unsigned long vfsflags, char *filteropts) |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 703 | { |
Denis Vlasenko | b172678 | 2006-09-29 14:43:20 +0000 | [diff] [blame] | 704 | int rc = 0; |
Rob Landley | eaa34ca | 2006-03-18 02:58:11 +0000 | [diff] [blame] | 705 | |
Denys Vlasenko | 911d265 | 2015-12-30 20:11:34 +0100 | [diff] [blame] | 706 | vfsflags &= ~(unsigned long)MOUNT_FAKEFLAGS; |
| 707 | |
Denys Vlasenko | e2e4cc2 | 2009-06-19 11:48:29 +0200 | [diff] [blame] | 708 | if (FAKE_IT) { |
Denis Vlasenko | b413368 | 2008-02-18 13:05:38 +0000 | [diff] [blame] | 709 | if (verbose >= 2) |
| 710 | bb_error_msg("would do mount('%s','%s','%s',0x%08lx,'%s')", |
| 711 | mp->mnt_fsname, mp->mnt_dir, mp->mnt_type, |
| 712 | vfsflags, filteropts); |
| 713 | goto mtab; |
| 714 | } |
Eric Andersen | 19b5b8f | 2006-03-20 18:07:13 +0000 | [diff] [blame] | 715 | |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 716 | // Mount, with fallback to read-only if necessary. |
Denis Vlasenko | 8d474b5 | 2006-09-17 15:00:58 +0000 | [diff] [blame] | 717 | for (;;) { |
Denis Vlasenko | f732e96 | 2008-02-18 12:07:49 +0000 | [diff] [blame] | 718 | errno = 0; |
| 719 | rc = verbose_mount(mp->mnt_fsname, mp->mnt_dir, mp->mnt_type, |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 720 | vfsflags, filteropts); |
Denys Vlasenko | dbdf9e0 | 2021-08-23 02:30:13 +0200 | [diff] [blame] | 721 | if (rc == 0) |
| 722 | goto mtab; // success |
Denis Vlasenko | 32d49bc | 2008-02-03 23:52:41 +0000 | [diff] [blame] | 723 | |
Denys Vlasenko | dbdf9e0 | 2021-08-23 02:30:13 +0200 | [diff] [blame] | 724 | // mount failed, try helper program |
| 725 | // mount.<mnt_type> |
| 726 | if (HELPERS_ALLOWED && mp->mnt_type) { |
Denys Vlasenko | e2e4cc2 | 2009-06-19 11:48:29 +0200 | [diff] [blame] | 727 | char *args[8]; |
Denis Vlasenko | 32d49bc | 2008-02-03 23:52:41 +0000 | [diff] [blame] | 728 | int errno_save = errno; |
Denis Vlasenko | a4522c5 | 2008-03-17 08:46:43 +0000 | [diff] [blame] | 729 | args[0] = xasprintf("mount.%s", mp->mnt_type); |
Denis Vlasenko | 32d49bc | 2008-02-03 23:52:41 +0000 | [diff] [blame] | 730 | rc = 1; |
Denys Vlasenko | e2e4cc2 | 2009-06-19 11:48:29 +0200 | [diff] [blame] | 731 | if (FAKE_IT) |
| 732 | args[rc++] = (char *)"-f"; |
| 733 | if (ENABLE_FEATURE_MTAB_SUPPORT && !USE_MTAB) |
| 734 | args[rc++] = (char *)"-n"; |
Denis Vlasenko | 5c32993 | 2009-04-12 12:16:21 +0000 | [diff] [blame] | 735 | args[rc++] = mp->mnt_fsname; |
| 736 | args[rc++] = mp->mnt_dir; |
Denis Vlasenko | 32d49bc | 2008-02-03 23:52:41 +0000 | [diff] [blame] | 737 | if (filteropts) { |
| 738 | args[rc++] = (char *)"-o"; |
| 739 | args[rc++] = filteropts; |
| 740 | } |
Denis Vlasenko | 32d49bc | 2008-02-03 23:52:41 +0000 | [diff] [blame] | 741 | args[rc] = NULL; |
Denys Vlasenko | 8531d76 | 2010-03-18 22:44:00 +0100 | [diff] [blame] | 742 | rc = spawn_and_wait(args); |
Denis Vlasenko | a4522c5 | 2008-03-17 08:46:43 +0000 | [diff] [blame] | 743 | free(args[0]); |
Denys Vlasenko | dbdf9e0 | 2021-08-23 02:30:13 +0200 | [diff] [blame] | 744 | if (rc == 0) |
| 745 | goto mtab; // success |
Denis Vlasenko | 32d49bc | 2008-02-03 23:52:41 +0000 | [diff] [blame] | 746 | errno = errno_save; |
| 747 | } |
| 748 | |
Denys Vlasenko | dbdf9e0 | 2021-08-23 02:30:13 +0200 | [diff] [blame] | 749 | // Should we retry read-only mount? |
| 750 | if (vfsflags & MS_RDONLY) |
| 751 | break; // no, already was tried |
| 752 | if (option_mask32 & OPT_w) |
| 753 | break; // no, "mount -w" never falls back to RO |
| 754 | if (errno != EACCES && errno != EROFS) |
| 755 | break; // no, error isn't hinting that RO may work |
| 756 | |
Denis Vlasenko | 2535f12 | 2007-09-15 13:28:30 +0000 | [diff] [blame] | 757 | if (!(vfsflags & MS_SILENT)) |
| 758 | bb_error_msg("%s is write-protected, mounting read-only", |
| 759 | mp->mnt_fsname); |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 760 | vfsflags |= MS_RDONLY; |
| 761 | } |
| 762 | |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 763 | // Abort entirely if permission denied. |
| 764 | |
| 765 | if (rc && errno == EPERM) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 766 | bb_simple_error_msg_and_die(bb_msg_perm_denied_are_you_root); |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 767 | |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 768 | // If the mount was successful, and we're maintaining an old-style |
| 769 | // mtab file by hand, add the new entry to it now. |
Denis Vlasenko | 6a353c8 | 2006-11-19 17:34:57 +0000 | [diff] [blame] | 770 | mtab: |
Denys Vlasenko | e2e4cc2 | 2009-06-19 11:48:29 +0200 | [diff] [blame] | 771 | if (USE_MTAB && !rc && !(vfsflags & MS_REMOUNT)) { |
Denis Vlasenko | a52145a | 2006-09-17 15:09:48 +0000 | [diff] [blame] | 772 | char *fsname; |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 773 | FILE *mountTable = setmntent(bb_path_mtab_file, "a+"); |
Denis Vlasenko | 63430ae | 2007-10-29 19:18:39 +0000 | [diff] [blame] | 774 | const char *option_str = mount_option_str; |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 775 | int i; |
| 776 | |
Denis Vlasenko | 6a353c8 | 2006-11-19 17:34:57 +0000 | [diff] [blame] | 777 | if (!mountTable) { |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 778 | bb_simple_perror_msg(bb_path_mtab_file); |
Denis Vlasenko | 6a353c8 | 2006-11-19 17:34:57 +0000 | [diff] [blame] | 779 | goto ret; |
| 780 | } |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 781 | |
| 782 | // Add vfs string flags |
Denis Vlasenko | 63430ae | 2007-10-29 19:18:39 +0000 | [diff] [blame] | 783 | for (i = 0; mount_options[i] != MS_REMOUNT; i++) { |
| 784 | if (mount_options[i] > 0 && (mount_options[i] & vfsflags)) |
| 785 | append_mount_options(&(mp->mnt_opts), option_str); |
| 786 | option_str += strlen(option_str) + 1; |
| 787 | } |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 788 | |
| 789 | // Remove trailing / (if any) from directory we mounted on |
Denis Vlasenko | 727ef94 | 2006-09-14 13:19:19 +0000 | [diff] [blame] | 790 | i = strlen(mp->mnt_dir) - 1; |
Roman Borisov | c8dc01d | 2011-02-28 05:06:01 +0100 | [diff] [blame] | 791 | while (i > 0 && mp->mnt_dir[i] == '/') |
Denys Vlasenko | c6450c9 | 2011-02-28 11:09:49 +0100 | [diff] [blame] | 792 | mp->mnt_dir[i--] = '\0'; |
Denis Vlasenko | 727ef94 | 2006-09-14 13:19:19 +0000 | [diff] [blame] | 793 | |
Denis Vlasenko | fc56dd2 | 2006-09-17 15:01:53 +0000 | [diff] [blame] | 794 | // Convert to canonical pathnames as needed |
Denis Vlasenko | a52145a | 2006-09-17 15:09:48 +0000 | [diff] [blame] | 795 | mp->mnt_dir = bb_simplify_path(mp->mnt_dir); |
Roman Borisov | c8dc01d | 2011-02-28 05:06:01 +0100 | [diff] [blame] | 796 | fsname = NULL; |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 797 | if (!mp->mnt_type || !*mp->mnt_type) { // bind mount |
Denis Vlasenko | fc56dd2 | 2006-09-17 15:01:53 +0000 | [diff] [blame] | 798 | mp->mnt_fsname = fsname = bb_simplify_path(mp->mnt_fsname); |
Denis Vlasenko | 06c0a71 | 2007-01-29 22:51:44 +0000 | [diff] [blame] | 799 | mp->mnt_type = (char*)"bind"; |
Denis Vlasenko | 727ef94 | 2006-09-14 13:19:19 +0000 | [diff] [blame] | 800 | } |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 801 | mp->mnt_freq = mp->mnt_passno = 0; |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 802 | |
Roman Borisov | c8dc01d | 2011-02-28 05:06:01 +0100 | [diff] [blame] | 803 | // Write and close |
| 804 | #if ENABLE_FEATURE_MTAB_SUPPORT |
| 805 | if (vfsflags & MS_MOVE) |
| 806 | update_mtab_entry_on_move(mp); |
| 807 | else |
| 808 | #endif |
| 809 | addmntent(mountTable, mp); |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 810 | endmntent(mountTable); |
Roman Borisov | c8dc01d | 2011-02-28 05:06:01 +0100 | [diff] [blame] | 811 | |
Denis Vlasenko | fc56dd2 | 2006-09-17 15:01:53 +0000 | [diff] [blame] | 812 | if (ENABLE_FEATURE_CLEAN_UP) { |
Denis Vlasenko | a52145a | 2006-09-17 15:09:48 +0000 | [diff] [blame] | 813 | free(mp->mnt_dir); |
Denis Vlasenko | fc56dd2 | 2006-09-17 15:01:53 +0000 | [diff] [blame] | 814 | free(fsname); |
| 815 | } |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 816 | } |
Denis Vlasenko | 6a353c8 | 2006-11-19 17:34:57 +0000 | [diff] [blame] | 817 | ret: |
Rob Landley | dc0955b | 2006-03-14 18:16:25 +0000 | [diff] [blame] | 818 | return rc; |
| 819 | } |
| 820 | |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 821 | #if ENABLE_FEATURE_MOUNT_NFS |
| 822 | |
| 823 | /* |
| 824 | * Linux NFS mount |
| 825 | * Copyright (C) 1993 Rick Sladkey <jrs@world.std.com> |
| 826 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 827 | * Licensed under GPLv2, see file LICENSE in this source tree. |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 828 | * |
| 829 | * Wed Feb 8 12:51:48 1995, biro@yggdrasil.com (Ross Biro): allow all port |
| 830 | * numbers to be specified on the command line. |
| 831 | * |
| 832 | * Fri, 8 Mar 1996 18:01:39, Swen Thuemmler <swen@uni-paderborn.de>: |
| 833 | * Omit the call to connect() for Linux version 1.3.11 or later. |
| 834 | * |
| 835 | * Wed Oct 1 23:55:28 1997: Dick Streefland <dick_streefland@tasking.com> |
| 836 | * Implemented the "bg", "fg" and "retry" mount options for NFS. |
| 837 | * |
Denis Vlasenko | b44c790 | 2008-03-17 09:29:43 +0000 | [diff] [blame] | 838 | * 1999-02-22 Arkadiusz Mickiewicz <misiek@misiek.eu.org> |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 839 | * - added Native Language Support |
| 840 | * |
| 841 | * Modified by Olaf Kirch and Trond Myklebust for new NFS code, |
| 842 | * plus NFSv3 stuff. |
| 843 | */ |
| 844 | |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 845 | #define MOUNTPORT 635 |
| 846 | #define MNTPATHLEN 1024 |
| 847 | #define MNTNAMLEN 255 |
| 848 | #define FHSIZE 32 |
| 849 | #define FHSIZE3 64 |
| 850 | |
| 851 | typedef char fhandle[FHSIZE]; |
| 852 | |
| 853 | typedef struct { |
| 854 | unsigned int fhandle3_len; |
| 855 | char *fhandle3_val; |
| 856 | } fhandle3; |
| 857 | |
| 858 | enum mountstat3 { |
| 859 | MNT_OK = 0, |
| 860 | MNT3ERR_PERM = 1, |
| 861 | MNT3ERR_NOENT = 2, |
| 862 | MNT3ERR_IO = 5, |
| 863 | MNT3ERR_ACCES = 13, |
| 864 | MNT3ERR_NOTDIR = 20, |
| 865 | MNT3ERR_INVAL = 22, |
| 866 | MNT3ERR_NAMETOOLONG = 63, |
| 867 | MNT3ERR_NOTSUPP = 10004, |
| 868 | MNT3ERR_SERVERFAULT = 10006, |
| 869 | }; |
| 870 | typedef enum mountstat3 mountstat3; |
| 871 | |
| 872 | struct fhstatus { |
| 873 | unsigned int fhs_status; |
| 874 | union { |
| 875 | fhandle fhs_fhandle; |
| 876 | } fhstatus_u; |
| 877 | }; |
| 878 | typedef struct fhstatus fhstatus; |
| 879 | |
| 880 | struct mountres3_ok { |
| 881 | fhandle3 fhandle; |
| 882 | struct { |
| 883 | unsigned int auth_flavours_len; |
| 884 | char *auth_flavours_val; |
| 885 | } auth_flavours; |
| 886 | }; |
| 887 | typedef struct mountres3_ok mountres3_ok; |
| 888 | |
| 889 | struct mountres3 { |
| 890 | mountstat3 fhs_status; |
| 891 | union { |
| 892 | mountres3_ok mountinfo; |
| 893 | } mountres3_u; |
| 894 | }; |
| 895 | typedef struct mountres3 mountres3; |
| 896 | |
| 897 | typedef char *dirpath; |
| 898 | |
| 899 | typedef char *name; |
| 900 | |
| 901 | typedef struct mountbody *mountlist; |
| 902 | |
| 903 | struct mountbody { |
| 904 | name ml_hostname; |
| 905 | dirpath ml_directory; |
| 906 | mountlist ml_next; |
| 907 | }; |
| 908 | typedef struct mountbody mountbody; |
| 909 | |
| 910 | typedef struct groupnode *groups; |
| 911 | |
| 912 | struct groupnode { |
| 913 | name gr_name; |
| 914 | groups gr_next; |
| 915 | }; |
| 916 | typedef struct groupnode groupnode; |
| 917 | |
| 918 | typedef struct exportnode *exports; |
| 919 | |
| 920 | struct exportnode { |
| 921 | dirpath ex_dir; |
| 922 | groups ex_groups; |
| 923 | exports ex_next; |
| 924 | }; |
| 925 | typedef struct exportnode exportnode; |
| 926 | |
| 927 | struct ppathcnf { |
| 928 | int pc_link_max; |
| 929 | short pc_max_canon; |
| 930 | short pc_max_input; |
| 931 | short pc_name_max; |
| 932 | short pc_path_max; |
| 933 | short pc_pipe_buf; |
Denis Vlasenko | 2870301 | 2006-12-19 20:32:02 +0000 | [diff] [blame] | 934 | uint8_t pc_vdisable; |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 935 | char pc_xxx; |
| 936 | short pc_mask[2]; |
| 937 | }; |
| 938 | typedef struct ppathcnf ppathcnf; |
| 939 | |
| 940 | #define MOUNTPROG 100005 |
| 941 | #define MOUNTVERS 1 |
| 942 | |
| 943 | #define MOUNTPROC_NULL 0 |
| 944 | #define MOUNTPROC_MNT 1 |
| 945 | #define MOUNTPROC_DUMP 2 |
| 946 | #define MOUNTPROC_UMNT 3 |
| 947 | #define MOUNTPROC_UMNTALL 4 |
| 948 | #define MOUNTPROC_EXPORT 5 |
| 949 | #define MOUNTPROC_EXPORTALL 6 |
| 950 | |
| 951 | #define MOUNTVERS_POSIX 2 |
| 952 | |
| 953 | #define MOUNTPROC_PATHCONF 7 |
| 954 | |
| 955 | #define MOUNT_V3 3 |
| 956 | |
| 957 | #define MOUNTPROC3_NULL 0 |
| 958 | #define MOUNTPROC3_MNT 1 |
| 959 | #define MOUNTPROC3_DUMP 2 |
| 960 | #define MOUNTPROC3_UMNT 3 |
| 961 | #define MOUNTPROC3_UMNTALL 4 |
| 962 | #define MOUNTPROC3_EXPORT 5 |
| 963 | |
| 964 | enum { |
| 965 | #ifndef NFS_FHSIZE |
| 966 | NFS_FHSIZE = 32, |
| 967 | #endif |
| 968 | #ifndef NFS_PORT |
| 969 | NFS_PORT = 2049 |
| 970 | #endif |
| 971 | }; |
| 972 | |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 973 | /* |
| 974 | * We want to be able to compile mount on old kernels in such a way |
| 975 | * that the binary will work well on more recent kernels. |
| 976 | * Thus, if necessary we teach nfsmount.c the structure of new fields |
| 977 | * that will come later. |
| 978 | * |
| 979 | * Moreover, the new kernel includes conflict with glibc includes |
| 980 | * so it is easiest to ignore the kernel altogether (at compile time). |
| 981 | */ |
| 982 | |
| 983 | struct nfs2_fh { |
Dave Love | fae473c | 2011-11-10 15:19:25 +0100 | [diff] [blame] | 984 | char data[32]; |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 985 | }; |
| 986 | struct nfs3_fh { |
Dave Love | fae473c | 2011-11-10 15:19:25 +0100 | [diff] [blame] | 987 | unsigned short size; |
| 988 | unsigned char data[64]; |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 989 | }; |
| 990 | |
| 991 | struct nfs_mount_data { |
Dave Love | fae473c | 2011-11-10 15:19:25 +0100 | [diff] [blame] | 992 | int version; /* 1 */ |
| 993 | int fd; /* 1 */ |
| 994 | struct nfs2_fh old_root; /* 1 */ |
| 995 | int flags; /* 1 */ |
| 996 | int rsize; /* 1 */ |
| 997 | int wsize; /* 1 */ |
| 998 | int timeo; /* 1 */ |
| 999 | int retrans; /* 1 */ |
| 1000 | int acregmin; /* 1 */ |
| 1001 | int acregmax; /* 1 */ |
| 1002 | int acdirmin; /* 1 */ |
| 1003 | int acdirmax; /* 1 */ |
| 1004 | struct sockaddr_in addr; /* 1 */ |
| 1005 | char hostname[256]; /* 1 */ |
| 1006 | int namlen; /* 2 */ |
| 1007 | unsigned int bsize; /* 3 */ |
| 1008 | struct nfs3_fh root; /* 4 */ |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1009 | }; |
| 1010 | |
| 1011 | /* bits in the flags field */ |
| 1012 | enum { |
| 1013 | NFS_MOUNT_SOFT = 0x0001, /* 1 */ |
| 1014 | NFS_MOUNT_INTR = 0x0002, /* 1 */ |
| 1015 | NFS_MOUNT_SECURE = 0x0004, /* 1 */ |
| 1016 | NFS_MOUNT_POSIX = 0x0008, /* 1 */ |
| 1017 | NFS_MOUNT_NOCTO = 0x0010, /* 1 */ |
| 1018 | NFS_MOUNT_NOAC = 0x0020, /* 1 */ |
| 1019 | NFS_MOUNT_TCP = 0x0040, /* 2 */ |
| 1020 | NFS_MOUNT_VER3 = 0x0080, /* 3 */ |
| 1021 | NFS_MOUNT_KERBEROS = 0x0100, /* 3 */ |
Denis Vlasenko | c29684a | 2008-07-19 22:40:30 +0000 | [diff] [blame] | 1022 | NFS_MOUNT_NONLM = 0x0200, /* 3 */ |
Dave Love | fae473c | 2011-11-10 15:19:25 +0100 | [diff] [blame] | 1023 | NFS_MOUNT_NOACL = 0x0800, /* 4 */ |
Denis Vlasenko | c29684a | 2008-07-19 22:40:30 +0000 | [diff] [blame] | 1024 | NFS_MOUNT_NORDIRPLUS = 0x4000 |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1025 | }; |
| 1026 | |
| 1027 | |
| 1028 | /* |
| 1029 | * We need to translate between nfs status return values and |
| 1030 | * the local errno values which may not be the same. |
| 1031 | * |
| 1032 | * Andreas Schwab <schwab@LS5.informatik.uni-dortmund.de>: change errno: |
| 1033 | * "after #include <errno.h> the symbol errno is reserved for any use, |
| 1034 | * it cannot even be used as a struct tag or field name". |
| 1035 | */ |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1036 | #ifndef EDQUOT |
Denys Vlasenko | cc42814 | 2009-12-16 02:06:56 +0100 | [diff] [blame] | 1037 | # define EDQUOT ENOSPC |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1038 | #endif |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 1039 | /* Convert each NFSERR_BLAH into EBLAH */ |
Denys Vlasenko | 3e134eb | 2016-04-22 18:09:21 +0200 | [diff] [blame] | 1040 | static const uint8_t nfs_err_stat[] ALIGN1 = { |
Denys Vlasenko | cc42814 | 2009-12-16 02:06:56 +0100 | [diff] [blame] | 1041 | 1, 2, 5, 6, 13, 17, |
| 1042 | 19, 20, 21, 22, 27, 28, |
| 1043 | 30, 63, 66, 69, 70, 71 |
| 1044 | }; |
Denys Vlasenko | dc1fd2e | 2010-05-19 17:01:29 +0200 | [diff] [blame] | 1045 | #if ( \ |
| 1046 | EPERM | ENOENT | EIO | ENXIO | EACCES| EEXIST | \ |
| 1047 | ENODEV| ENOTDIR | EISDIR | EINVAL| EFBIG | ENOSPC | \ |
| 1048 | EROFS | ENAMETOOLONG| ENOTEMPTY| EDQUOT| ESTALE| EREMOTE) < 256 |
| 1049 | typedef uint8_t nfs_err_type; |
| 1050 | #else |
| 1051 | typedef uint16_t nfs_err_type; |
| 1052 | #endif |
Denys Vlasenko | 3e134eb | 2016-04-22 18:09:21 +0200 | [diff] [blame] | 1053 | static const nfs_err_type nfs_err_errnum[] ALIGN2 = { |
Denys Vlasenko | cc42814 | 2009-12-16 02:06:56 +0100 | [diff] [blame] | 1054 | EPERM , ENOENT , EIO , ENXIO , EACCES, EEXIST, |
| 1055 | ENODEV, ENOTDIR , EISDIR , EINVAL, EFBIG , ENOSPC, |
| 1056 | EROFS , ENAMETOOLONG, ENOTEMPTY, EDQUOT, ESTALE, EREMOTE |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1057 | }; |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1058 | static char *nfs_strerror(int status) |
| 1059 | { |
| 1060 | int i; |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1061 | |
Denys Vlasenko | cc42814 | 2009-12-16 02:06:56 +0100 | [diff] [blame] | 1062 | for (i = 0; i < ARRAY_SIZE(nfs_err_stat); i++) { |
| 1063 | if (nfs_err_stat[i] == status) |
| 1064 | return strerror(nfs_err_errnum[i]); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1065 | } |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 1066 | return xasprintf("unknown nfs status return value: %d", status); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1067 | } |
| 1068 | |
| 1069 | static bool_t xdr_fhandle(XDR *xdrs, fhandle objp) |
| 1070 | { |
Alexander Shishkin | 54779a4 | 2010-10-22 13:35:47 +0200 | [diff] [blame] | 1071 | return xdr_opaque(xdrs, objp, FHSIZE); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1072 | } |
| 1073 | |
| 1074 | static bool_t xdr_fhstatus(XDR *xdrs, fhstatus *objp) |
| 1075 | { |
| 1076 | if (!xdr_u_int(xdrs, &objp->fhs_status)) |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 1077 | return FALSE; |
Alexander Shishkin | 54779a4 | 2010-10-22 13:35:47 +0200 | [diff] [blame] | 1078 | if (objp->fhs_status == 0) |
| 1079 | return xdr_fhandle(xdrs, objp->fhstatus_u.fhs_fhandle); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1080 | return TRUE; |
| 1081 | } |
| 1082 | |
| 1083 | static bool_t xdr_dirpath(XDR *xdrs, dirpath *objp) |
| 1084 | { |
Alexander Shishkin | 54779a4 | 2010-10-22 13:35:47 +0200 | [diff] [blame] | 1085 | return xdr_string(xdrs, objp, MNTPATHLEN); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1086 | } |
| 1087 | |
| 1088 | static bool_t xdr_fhandle3(XDR *xdrs, fhandle3 *objp) |
| 1089 | { |
Alexander Shishkin | 54779a4 | 2010-10-22 13:35:47 +0200 | [diff] [blame] | 1090 | return xdr_bytes(xdrs, (char **)&objp->fhandle3_val, |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 1091 | (unsigned int *) &objp->fhandle3_len, |
| 1092 | FHSIZE3); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1093 | } |
| 1094 | |
| 1095 | static bool_t xdr_mountres3_ok(XDR *xdrs, mountres3_ok *objp) |
| 1096 | { |
| 1097 | if (!xdr_fhandle3(xdrs, &objp->fhandle)) |
| 1098 | return FALSE; |
Alexander Shishkin | 54779a4 | 2010-10-22 13:35:47 +0200 | [diff] [blame] | 1099 | return xdr_array(xdrs, &(objp->auth_flavours.auth_flavours_val), |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 1100 | &(objp->auth_flavours.auth_flavours_len), |
| 1101 | ~0, |
| 1102 | sizeof(int), |
| 1103 | (xdrproc_t) xdr_int); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1104 | } |
| 1105 | |
| 1106 | static bool_t xdr_mountstat3(XDR *xdrs, mountstat3 *objp) |
| 1107 | { |
Alexander Shishkin | 54779a4 | 2010-10-22 13:35:47 +0200 | [diff] [blame] | 1108 | return xdr_enum(xdrs, (enum_t *) objp); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1109 | } |
| 1110 | |
| 1111 | static bool_t xdr_mountres3(XDR *xdrs, mountres3 *objp) |
| 1112 | { |
| 1113 | if (!xdr_mountstat3(xdrs, &objp->fhs_status)) |
| 1114 | return FALSE; |
Alexander Shishkin | 54779a4 | 2010-10-22 13:35:47 +0200 | [diff] [blame] | 1115 | if (objp->fhs_status == MNT_OK) |
| 1116 | return xdr_mountres3_ok(xdrs, &objp->mountres3_u.mountinfo); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1117 | return TRUE; |
| 1118 | } |
| 1119 | |
| 1120 | #define MAX_NFSPROT ((nfs_mount_version >= 4) ? 3 : 2) |
| 1121 | |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1122 | /* |
| 1123 | * Unfortunately, the kernel prints annoying console messages |
| 1124 | * in case of an unexpected nfs mount version (instead of |
| 1125 | * just returning some error). Therefore we'll have to try |
| 1126 | * and figure out what version the kernel expects. |
| 1127 | * |
| 1128 | * Variables: |
| 1129 | * KERNEL_NFS_MOUNT_VERSION: kernel sources at compile time |
| 1130 | * NFS_MOUNT_VERSION: these nfsmount sources at compile time |
| 1131 | * nfs_mount_version: version this source and running kernel can handle |
| 1132 | */ |
| 1133 | static void |
| 1134 | find_kernel_nfs_mount_version(void) |
| 1135 | { |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 1136 | int kernel_version; |
| 1137 | |
| 1138 | if (nfs_mount_version) |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1139 | return; |
| 1140 | |
| 1141 | nfs_mount_version = 4; /* default */ |
| 1142 | |
| 1143 | kernel_version = get_linux_version_code(); |
| 1144 | if (kernel_version) { |
Denys Vlasenko | cc42814 | 2009-12-16 02:06:56 +0100 | [diff] [blame] | 1145 | if (kernel_version < KERNEL_VERSION(2,2,18)) |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1146 | nfs_mount_version = 3; |
| 1147 | /* else v4 since 2.3.99pre4 */ |
| 1148 | } |
| 1149 | } |
| 1150 | |
Denis Vlasenko | 3f5fdc7 | 2007-10-14 04:55:59 +0000 | [diff] [blame] | 1151 | static void |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 1152 | get_mountport(struct pmap *pm_mnt, |
| 1153 | struct sockaddr_in *server_addr, |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1154 | long unsigned prog, |
| 1155 | long unsigned version, |
| 1156 | long unsigned proto, |
| 1157 | long unsigned port) |
| 1158 | { |
| 1159 | struct pmaplist *pmap; |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1160 | |
| 1161 | server_addr->sin_port = PMAPPORT; |
Denis Vlasenko | 5870ad9 | 2007-02-04 02:39:55 +0000 | [diff] [blame] | 1162 | /* glibc 2.4 (still) has pmap_getmaps(struct sockaddr_in *). |
| 1163 | * I understand it like "IPv6 for this is not 100% ready" */ |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1164 | pmap = pmap_getmaps(server_addr); |
| 1165 | |
| 1166 | if (version > MAX_NFSPROT) |
| 1167 | version = MAX_NFSPROT; |
| 1168 | if (!prog) |
| 1169 | prog = MOUNTPROG; |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 1170 | pm_mnt->pm_prog = prog; |
| 1171 | pm_mnt->pm_vers = version; |
| 1172 | pm_mnt->pm_prot = proto; |
| 1173 | pm_mnt->pm_port = port; |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 1174 | |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1175 | while (pmap) { |
| 1176 | if (pmap->pml_map.pm_prog != prog) |
| 1177 | goto next; |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 1178 | if (!version && pm_mnt->pm_vers > pmap->pml_map.pm_vers) |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1179 | goto next; |
| 1180 | if (version > 2 && pmap->pml_map.pm_vers != version) |
| 1181 | goto next; |
| 1182 | if (version && version <= 2 && pmap->pml_map.pm_vers > 2) |
| 1183 | goto next; |
Denys Vlasenko | 6b9f163 | 2010-01-28 02:24:24 +0100 | [diff] [blame] | 1184 | if (pmap->pml_map.pm_vers > MAX_NFSPROT |
| 1185 | || (proto && pm_mnt->pm_prot && pmap->pml_map.pm_prot != proto) |
| 1186 | || (port && pmap->pml_map.pm_port != port) |
| 1187 | ) { |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1188 | goto next; |
Denys Vlasenko | 6b9f163 | 2010-01-28 02:24:24 +0100 | [diff] [blame] | 1189 | } |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 1190 | memcpy(pm_mnt, &pmap->pml_map, sizeof(*pm_mnt)); |
| 1191 | next: |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1192 | pmap = pmap->pml_next; |
| 1193 | } |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 1194 | if (!pm_mnt->pm_vers) |
| 1195 | pm_mnt->pm_vers = MOUNTVERS; |
| 1196 | if (!pm_mnt->pm_port) |
| 1197 | pm_mnt->pm_port = MOUNTPORT; |
| 1198 | if (!pm_mnt->pm_prot) |
| 1199 | pm_mnt->pm_prot = IPPROTO_TCP; |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1200 | } |
| 1201 | |
Denis Vlasenko | f000065 | 2007-09-04 18:30:26 +0000 | [diff] [blame] | 1202 | #if BB_MMU |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1203 | static int daemonize(void) |
| 1204 | { |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1205 | int pid = fork(); |
| 1206 | if (pid < 0) /* error */ |
| 1207 | return -errno; |
| 1208 | if (pid > 0) /* parent */ |
| 1209 | return 0; |
| 1210 | /* child */ |
Denis Vlasenko | c29684a | 2008-07-19 22:40:30 +0000 | [diff] [blame] | 1211 | close(0); |
| 1212 | xopen(bb_dev_null, O_RDWR); |
| 1213 | xdup2(0, 1); |
| 1214 | xdup2(0, 2); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1215 | setsid(); |
Denis Vlasenko | 8f8f268 | 2006-10-03 21:00:43 +0000 | [diff] [blame] | 1216 | openlog(applet_name, LOG_PID, LOG_DAEMON); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1217 | logmode = LOGMODE_SYSLOG; |
| 1218 | return 1; |
| 1219 | } |
Denis Vlasenko | f000065 | 2007-09-04 18:30:26 +0000 | [diff] [blame] | 1220 | #else |
Denys Vlasenko | 8c317f0 | 2019-05-14 17:26:47 +0200 | [diff] [blame] | 1221 | static inline int daemonize(void) |
| 1222 | { |
| 1223 | return -ENOSYS; |
| 1224 | } |
Denis Vlasenko | f000065 | 2007-09-04 18:30:26 +0000 | [diff] [blame] | 1225 | #endif |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1226 | |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 1227 | /* TODO */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 1228 | static inline int we_saw_this_host_before(const char *hostname UNUSED_PARAM) |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1229 | { |
| 1230 | return 0; |
| 1231 | } |
| 1232 | |
| 1233 | /* RPC strerror analogs are terminally idiotic: |
| 1234 | * *mandatory* prefix and \n at end. |
| 1235 | * This hopefully helps. Usage: |
| 1236 | * error_msg_rpc(clnt_*error*(" ")) */ |
| 1237 | static void error_msg_rpc(const char *msg) |
| 1238 | { |
Denis Vlasenko | 23514fe | 2006-09-19 14:07:52 +0000 | [diff] [blame] | 1239 | int len; |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1240 | while (msg[0] == ' ' || msg[0] == ':') msg++; |
| 1241 | len = strlen(msg); |
| 1242 | while (len && msg[len-1] == '\n') len--; |
| 1243 | bb_error_msg("%.*s", len, msg); |
| 1244 | } |
| 1245 | |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 1246 | /* NB: mp->xxx fields may be trashed on exit */ |
Denys Vlasenko | 9ee4266 | 2012-06-21 12:08:56 +0200 | [diff] [blame] | 1247 | static NOINLINE int nfsmount(struct mntent *mp, unsigned long vfsflags, char *filteropts) |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1248 | { |
| 1249 | CLIENT *mclient; |
| 1250 | char *hostname; |
| 1251 | char *pathname; |
| 1252 | char *mounthost; |
Denys Vlasenko | e71dd7c | 2009-05-13 16:32:32 +0200 | [diff] [blame] | 1253 | /* prior to 2.6.23, kernel took NFS options in a form of this struct |
| 1254 | * only. 2.6.23+ looks at data->version, and if it's not 1..6, |
| 1255 | * then data pointer is interpreted as a string. */ |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1256 | struct nfs_mount_data data; |
| 1257 | char *opt; |
Denys Vlasenko | 2496616 | 2020-10-06 02:36:47 +0200 | [diff] [blame] | 1258 | char *tokstate; |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1259 | struct hostent *hp; |
| 1260 | struct sockaddr_in server_addr; |
| 1261 | struct sockaddr_in mount_server_addr; |
| 1262 | int msock, fsock; |
| 1263 | union { |
| 1264 | struct fhstatus nfsv2; |
| 1265 | struct mountres3 nfsv3; |
| 1266 | } status; |
| 1267 | int daemonized; |
| 1268 | char *s; |
| 1269 | int port; |
| 1270 | int mountport; |
| 1271 | int proto; |
Denis Vlasenko | f000065 | 2007-09-04 18:30:26 +0000 | [diff] [blame] | 1272 | #if BB_MMU |
Denis Vlasenko | c29684a | 2008-07-19 22:40:30 +0000 | [diff] [blame] | 1273 | smallint bg = 0; |
Denis Vlasenko | f000065 | 2007-09-04 18:30:26 +0000 | [diff] [blame] | 1274 | #else |
| 1275 | enum { bg = 0 }; |
| 1276 | #endif |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1277 | int retry; |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1278 | int mountprog; |
| 1279 | int mountvers; |
| 1280 | int nfsprog; |
| 1281 | int nfsvers; |
| 1282 | int retval; |
Denys Vlasenko | e71dd7c | 2009-05-13 16:32:32 +0200 | [diff] [blame] | 1283 | /* these all are one-bit really. gcc 4.3.1 likes this combination: */ |
Denis Vlasenko | c29684a | 2008-07-19 22:40:30 +0000 | [diff] [blame] | 1284 | smallint tcp; |
| 1285 | smallint soft; |
| 1286 | int intr; |
| 1287 | int posix; |
| 1288 | int nocto; |
| 1289 | int noac; |
| 1290 | int nordirplus; |
| 1291 | int nolock; |
Dave Love | fae473c | 2011-11-10 15:19:25 +0100 | [diff] [blame] | 1292 | int noacl; |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1293 | |
| 1294 | find_kernel_nfs_mount_version(); |
| 1295 | |
| 1296 | daemonized = 0; |
| 1297 | mounthost = NULL; |
| 1298 | retval = ETIMEDOUT; |
| 1299 | msock = fsock = -1; |
| 1300 | mclient = NULL; |
| 1301 | |
| 1302 | /* NB: hostname, mounthost, filteropts must be free()d prior to return */ |
| 1303 | |
| 1304 | filteropts = xstrdup(filteropts); /* going to trash it later... */ |
| 1305 | |
| 1306 | hostname = xstrdup(mp->mnt_fsname); |
| 1307 | /* mount_main() guarantees that ':' is there */ |
| 1308 | s = strchr(hostname, ':'); |
| 1309 | pathname = s + 1; |
| 1310 | *s = '\0'; |
| 1311 | /* Ignore all but first hostname in replicated mounts |
Denys Vlasenko | a86e024 | 2011-11-10 16:53:35 +0100 | [diff] [blame] | 1312 | * until they can be fully supported. (mack@sgi.com) */ |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1313 | s = strchr(hostname, ','); |
| 1314 | if (s) { |
| 1315 | *s = '\0'; |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 1316 | bb_simple_error_msg("warning: multiple hostnames not supported"); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1317 | } |
| 1318 | |
| 1319 | server_addr.sin_family = AF_INET; |
| 1320 | if (!inet_aton(hostname, &server_addr.sin_addr)) { |
| 1321 | hp = gethostbyname(hostname); |
| 1322 | if (hp == NULL) { |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 1323 | bb_simple_herror_msg(hostname); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1324 | goto fail; |
| 1325 | } |
Denys Vlasenko | 9906933 | 2010-02-27 19:38:19 +0100 | [diff] [blame] | 1326 | if (hp->h_length != (int)sizeof(struct in_addr)) { |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 1327 | bb_simple_error_msg_and_die("only IPv4 is supported"); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1328 | } |
Denys Vlasenko | 9906933 | 2010-02-27 19:38:19 +0100 | [diff] [blame] | 1329 | memcpy(&server_addr.sin_addr, hp->h_addr_list[0], sizeof(struct in_addr)); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1330 | } |
| 1331 | |
| 1332 | memcpy(&mount_server_addr, &server_addr, sizeof(mount_server_addr)); |
| 1333 | |
| 1334 | /* add IP address to mtab options for use when unmounting */ |
| 1335 | |
| 1336 | if (!mp->mnt_opts) { /* TODO: actually mp->mnt_opts is never NULL */ |
| 1337 | mp->mnt_opts = xasprintf("addr=%s", inet_ntoa(server_addr.sin_addr)); |
| 1338 | } else { |
| 1339 | char *tmp = xasprintf("%s%saddr=%s", mp->mnt_opts, |
| 1340 | mp->mnt_opts[0] ? "," : "", |
| 1341 | inet_ntoa(server_addr.sin_addr)); |
| 1342 | free(mp->mnt_opts); |
| 1343 | mp->mnt_opts = tmp; |
| 1344 | } |
| 1345 | |
| 1346 | /* Set default options. |
| 1347 | * rsize/wsize (and bsize, for ver >= 3) are left 0 in order to |
| 1348 | * let the kernel decide. |
| 1349 | * timeo is filled in after we know whether it'll be TCP or UDP. */ |
| 1350 | memset(&data, 0, sizeof(data)); |
Denis Vlasenko | c29684a | 2008-07-19 22:40:30 +0000 | [diff] [blame] | 1351 | data.retrans = 3; |
| 1352 | data.acregmin = 3; |
| 1353 | data.acregmax = 60; |
| 1354 | data.acdirmin = 30; |
| 1355 | data.acdirmax = 60; |
| 1356 | data.namlen = NAME_MAX; |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1357 | |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1358 | soft = 0; |
| 1359 | intr = 0; |
| 1360 | posix = 0; |
| 1361 | nocto = 0; |
| 1362 | nolock = 0; |
| 1363 | noac = 0; |
Denis Vlasenko | c29684a | 2008-07-19 22:40:30 +0000 | [diff] [blame] | 1364 | nordirplus = 0; |
Dave Love | fae473c | 2011-11-10 15:19:25 +0100 | [diff] [blame] | 1365 | noacl = 0; |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1366 | retry = 10000; /* 10000 minutes ~ 1 week */ |
Bernhard Reutner-Fischer | 8820629 | 2011-05-04 19:03:30 +0200 | [diff] [blame] | 1367 | tcp = 1; /* nfs-utils uses tcp per default */ |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1368 | |
| 1369 | mountprog = MOUNTPROG; |
| 1370 | mountvers = 0; |
| 1371 | port = 0; |
| 1372 | mountport = 0; |
| 1373 | nfsprog = 100003; |
| 1374 | nfsvers = 0; |
| 1375 | |
| 1376 | /* parse options */ |
Denys Vlasenko | 2496616 | 2020-10-06 02:36:47 +0200 | [diff] [blame] | 1377 | if (filteropts) for (opt = strtok_r(filteropts, ",", &tokstate); opt; opt = strtok_r(NULL, ",", &tokstate)) { |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1378 | char *opteq = strchr(opt, '='); |
| 1379 | if (opteq) { |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1380 | int val, idx; |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 1381 | static const char options[] ALIGN1 = |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 1382 | /* 0 */ "rsize\0" |
| 1383 | /* 1 */ "wsize\0" |
| 1384 | /* 2 */ "timeo\0" |
| 1385 | /* 3 */ "retrans\0" |
| 1386 | /* 4 */ "acregmin\0" |
| 1387 | /* 5 */ "acregmax\0" |
| 1388 | /* 6 */ "acdirmin\0" |
| 1389 | /* 7 */ "acdirmax\0" |
| 1390 | /* 8 */ "actimeo\0" |
| 1391 | /* 9 */ "retry\0" |
| 1392 | /* 10 */ "port\0" |
| 1393 | /* 11 */ "mountport\0" |
| 1394 | /* 12 */ "mounthost\0" |
| 1395 | /* 13 */ "mountprog\0" |
| 1396 | /* 14 */ "mountvers\0" |
| 1397 | /* 15 */ "nfsprog\0" |
| 1398 | /* 16 */ "nfsvers\0" |
| 1399 | /* 17 */ "vers\0" |
| 1400 | /* 18 */ "proto\0" |
| 1401 | /* 19 */ "namlen\0" |
| 1402 | /* 20 */ "addr\0"; |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1403 | |
| 1404 | *opteq++ = '\0'; |
| 1405 | idx = index_in_strings(options, opt); |
| 1406 | switch (idx) { |
| 1407 | case 12: // "mounthost" |
| 1408 | mounthost = xstrndup(opteq, |
| 1409 | strcspn(opteq, " \t\n\r,")); |
| 1410 | continue; |
| 1411 | case 18: // "proto" |
Denys Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 1412 | if (is_prefixed_with(opteq, "tcp")) |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1413 | tcp = 1; |
Denys Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 1414 | else if (is_prefixed_with(opteq, "udp")) |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1415 | tcp = 0; |
| 1416 | else |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 1417 | bb_simple_error_msg("warning: unrecognized proto= option"); |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1418 | continue; |
| 1419 | case 20: // "addr" - ignore |
| 1420 | continue; |
Peter Korsgaard | 301fe50 | 2011-02-21 17:52:13 +0100 | [diff] [blame] | 1421 | case -1: // unknown |
| 1422 | if (vfsflags & MS_REMOUNT) |
| 1423 | continue; |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1424 | } |
| 1425 | |
Denys Vlasenko | 7783248 | 2010-08-12 14:14:45 +0200 | [diff] [blame] | 1426 | val = xatoi_positive(opteq); |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1427 | switch (idx) { |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1428 | case 0: // "rsize" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1429 | data.rsize = val; |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1430 | continue; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1431 | case 1: // "wsize" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1432 | data.wsize = val; |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1433 | continue; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1434 | case 2: // "timeo" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1435 | data.timeo = val; |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1436 | continue; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1437 | case 3: // "retrans" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1438 | data.retrans = val; |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1439 | continue; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1440 | case 4: // "acregmin" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1441 | data.acregmin = val; |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1442 | continue; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1443 | case 5: // "acregmax" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1444 | data.acregmax = val; |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1445 | continue; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1446 | case 6: // "acdirmin" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1447 | data.acdirmin = val; |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1448 | continue; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1449 | case 7: // "acdirmax" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1450 | data.acdirmax = val; |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1451 | continue; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1452 | case 8: // "actimeo" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1453 | data.acregmin = val; |
| 1454 | data.acregmax = val; |
| 1455 | data.acdirmin = val; |
| 1456 | data.acdirmax = val; |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1457 | continue; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1458 | case 9: // "retry" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1459 | retry = val; |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1460 | continue; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1461 | case 10: // "port" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1462 | port = val; |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1463 | continue; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1464 | case 11: // "mountport" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1465 | mountport = val; |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1466 | continue; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1467 | case 13: // "mountprog" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1468 | mountprog = val; |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1469 | continue; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1470 | case 14: // "mountvers" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1471 | mountvers = val; |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1472 | continue; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1473 | case 15: // "nfsprog" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1474 | nfsprog = val; |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1475 | continue; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1476 | case 16: // "nfsvers" |
| 1477 | case 17: // "vers" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1478 | nfsvers = val; |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1479 | continue; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1480 | case 19: // "namlen" |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1481 | //if (nfs_mount_version >= 2) |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1482 | data.namlen = val; |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1483 | //else |
| 1484 | // bb_error_msg("warning: option namlen is not supported\n"); |
| 1485 | continue; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1486 | default: |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1487 | bb_error_msg("unknown nfs mount parameter: %s=%d", opt, val); |
| 1488 | goto fail; |
| 1489 | } |
| 1490 | } |
Denis Vlasenko | f26e3d2 | 2008-06-24 21:39:32 +0000 | [diff] [blame] | 1491 | else { /* not of the form opt=val */ |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 1492 | static const char options[] ALIGN1 = |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 1493 | "bg\0" |
| 1494 | "fg\0" |
| 1495 | "soft\0" |
| 1496 | "hard\0" |
| 1497 | "intr\0" |
| 1498 | "posix\0" |
| 1499 | "cto\0" |
| 1500 | "ac\0" |
| 1501 | "tcp\0" |
| 1502 | "udp\0" |
Denis Vlasenko | c29684a | 2008-07-19 22:40:30 +0000 | [diff] [blame] | 1503 | "lock\0" |
Dave Love | fae473c | 2011-11-10 15:19:25 +0100 | [diff] [blame] | 1504 | "rdirplus\0" |
Denys Vlasenko | 56443cd | 2012-04-20 15:07:22 +0200 | [diff] [blame] | 1505 | "acl\0"; |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1506 | int val = 1; |
Denys Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 1507 | if (is_prefixed_with(opt, "no")) { |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1508 | val = 0; |
| 1509 | opt += 2; |
| 1510 | } |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 1511 | switch (index_in_strings(options, opt)) { |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1512 | case 0: // "bg" |
Denis Vlasenko | f000065 | 2007-09-04 18:30:26 +0000 | [diff] [blame] | 1513 | #if BB_MMU |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1514 | bg = val; |
Denis Vlasenko | f000065 | 2007-09-04 18:30:26 +0000 | [diff] [blame] | 1515 | #endif |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1516 | break; |
| 1517 | case 1: // "fg" |
Denis Vlasenko | f000065 | 2007-09-04 18:30:26 +0000 | [diff] [blame] | 1518 | #if BB_MMU |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1519 | bg = !val; |
Denis Vlasenko | f000065 | 2007-09-04 18:30:26 +0000 | [diff] [blame] | 1520 | #endif |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1521 | break; |
| 1522 | case 2: // "soft" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1523 | soft = val; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1524 | break; |
| 1525 | case 3: // "hard" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1526 | soft = !val; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1527 | break; |
| 1528 | case 4: // "intr" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1529 | intr = val; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1530 | break; |
| 1531 | case 5: // "posix" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1532 | posix = val; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1533 | break; |
| 1534 | case 6: // "cto" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1535 | nocto = !val; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1536 | break; |
| 1537 | case 7: // "ac" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1538 | noac = !val; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1539 | break; |
| 1540 | case 8: // "tcp" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1541 | tcp = val; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1542 | break; |
| 1543 | case 9: // "udp" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1544 | tcp = !val; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1545 | break; |
| 1546 | case 10: // "lock" |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1547 | if (nfs_mount_version >= 3) |
| 1548 | nolock = !val; |
| 1549 | else |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 1550 | bb_simple_error_msg("warning: option nolock is not supported"); |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1551 | break; |
Denis Vlasenko | c29684a | 2008-07-19 22:40:30 +0000 | [diff] [blame] | 1552 | case 11: //rdirplus |
| 1553 | nordirplus = !val; |
| 1554 | break; |
Dave Love | fae473c | 2011-11-10 15:19:25 +0100 | [diff] [blame] | 1555 | case 12: // acl |
Denys Vlasenko | 56443cd | 2012-04-20 15:07:22 +0200 | [diff] [blame] | 1556 | noacl = !val; |
Dave Love | fae473c | 2011-11-10 15:19:25 +0100 | [diff] [blame] | 1557 | break; |
Denis Vlasenko | 68f2187 | 2006-10-26 01:47:34 +0000 | [diff] [blame] | 1558 | default: |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1559 | bb_error_msg("unknown nfs mount option: %s%s", val ? "" : "no", opt); |
| 1560 | goto fail; |
| 1561 | } |
| 1562 | } |
| 1563 | } |
| 1564 | proto = (tcp) ? IPPROTO_TCP : IPPROTO_UDP; |
| 1565 | |
| 1566 | data.flags = (soft ? NFS_MOUNT_SOFT : 0) |
| 1567 | | (intr ? NFS_MOUNT_INTR : 0) |
| 1568 | | (posix ? NFS_MOUNT_POSIX : 0) |
| 1569 | | (nocto ? NFS_MOUNT_NOCTO : 0) |
Denis Vlasenko | c29684a | 2008-07-19 22:40:30 +0000 | [diff] [blame] | 1570 | | (noac ? NFS_MOUNT_NOAC : 0) |
Dave Love | fae473c | 2011-11-10 15:19:25 +0100 | [diff] [blame] | 1571 | | (nordirplus ? NFS_MOUNT_NORDIRPLUS : 0) |
Denys Vlasenko | 56443cd | 2012-04-20 15:07:22 +0200 | [diff] [blame] | 1572 | | (noacl ? NFS_MOUNT_NOACL : 0); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1573 | if (nfs_mount_version >= 2) |
| 1574 | data.flags |= (tcp ? NFS_MOUNT_TCP : 0); |
| 1575 | if (nfs_mount_version >= 3) |
| 1576 | data.flags |= (nolock ? NFS_MOUNT_NONLM : 0); |
| 1577 | if (nfsvers > MAX_NFSPROT || mountvers > MAX_NFSPROT) { |
| 1578 | bb_error_msg("NFSv%d not supported", nfsvers); |
| 1579 | goto fail; |
| 1580 | } |
| 1581 | if (nfsvers && !mountvers) |
| 1582 | mountvers = (nfsvers < 3) ? 1 : nfsvers; |
| 1583 | if (nfsvers && nfsvers < mountvers) { |
| 1584 | mountvers = nfsvers; |
| 1585 | } |
| 1586 | |
| 1587 | /* Adjust options if none specified */ |
| 1588 | if (!data.timeo) |
| 1589 | data.timeo = tcp ? 70 : 7; |
| 1590 | |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1591 | data.version = nfs_mount_version; |
| 1592 | |
| 1593 | if (vfsflags & MS_REMOUNT) |
| 1594 | goto do_mount; |
| 1595 | |
| 1596 | /* |
| 1597 | * If the previous mount operation on the same host was |
| 1598 | * backgrounded, and the "bg" for this mount is also set, |
| 1599 | * give up immediately, to avoid the initial timeout. |
| 1600 | */ |
| 1601 | if (bg && we_saw_this_host_before(hostname)) { |
Denis Vlasenko | 7d8de4d | 2007-08-28 11:23:23 +0000 | [diff] [blame] | 1602 | daemonized = daemonize(); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1603 | if (daemonized <= 0) { /* parent or error */ |
| 1604 | retval = -daemonized; |
| 1605 | goto ret; |
| 1606 | } |
| 1607 | } |
| 1608 | |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 1609 | /* Create mount daemon client */ |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1610 | /* See if the nfs host = mount host. */ |
| 1611 | if (mounthost) { |
| 1612 | if (mounthost[0] >= '0' && mounthost[0] <= '9') { |
| 1613 | mount_server_addr.sin_family = AF_INET; |
| 1614 | mount_server_addr.sin_addr.s_addr = inet_addr(hostname); |
| 1615 | } else { |
| 1616 | hp = gethostbyname(mounthost); |
| 1617 | if (hp == NULL) { |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 1618 | bb_simple_herror_msg(mounthost); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1619 | goto fail; |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1620 | } |
Denys Vlasenko | 9906933 | 2010-02-27 19:38:19 +0100 | [diff] [blame] | 1621 | if (hp->h_length != (int)sizeof(struct in_addr)) { |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 1622 | bb_simple_error_msg_and_die("only IPv4 is supported"); |
Denis Vlasenko | 77ad97f | 2008-05-13 02:27:31 +0000 | [diff] [blame] | 1623 | } |
| 1624 | mount_server_addr.sin_family = AF_INET; |
Denys Vlasenko | 9906933 | 2010-02-27 19:38:19 +0100 | [diff] [blame] | 1625 | memcpy(&mount_server_addr.sin_addr, hp->h_addr_list[0], sizeof(struct in_addr)); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1626 | } |
| 1627 | } |
| 1628 | |
| 1629 | /* |
| 1630 | * The following loop implements the mount retries. When the mount |
| 1631 | * times out, and the "bg" option is set, we background ourself |
| 1632 | * and continue trying. |
| 1633 | * |
| 1634 | * The case where the mount point is not present and the "bg" |
| 1635 | * option is set, is treated as a timeout. This is done to |
| 1636 | * support nested mounts. |
| 1637 | * |
| 1638 | * The "retry" count specified by the user is the number of |
| 1639 | * minutes to retry before giving up. |
| 1640 | */ |
| 1641 | { |
| 1642 | struct timeval total_timeout; |
| 1643 | struct timeval retry_timeout; |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 1644 | struct pmap pm_mnt; |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1645 | time_t t; |
| 1646 | time_t prevt; |
| 1647 | time_t timeout; |
| 1648 | |
| 1649 | retry_timeout.tv_sec = 3; |
| 1650 | retry_timeout.tv_usec = 0; |
| 1651 | total_timeout.tv_sec = 20; |
| 1652 | total_timeout.tv_usec = 0; |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 1653 | /* FIXME: use monotonic()? */ |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1654 | timeout = time(NULL) + 60 * retry; |
| 1655 | prevt = 0; |
| 1656 | t = 30; |
Denis Vlasenko | 63430ae | 2007-10-29 19:18:39 +0000 | [diff] [blame] | 1657 | retry: |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 1658 | /* Be careful not to use too many CPU cycles */ |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1659 | if (t - prevt < 30) |
| 1660 | sleep(30); |
| 1661 | |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 1662 | get_mountport(&pm_mnt, &mount_server_addr, |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1663 | mountprog, |
| 1664 | mountvers, |
| 1665 | proto, |
| 1666 | mountport); |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 1667 | nfsvers = (pm_mnt.pm_vers < 2) ? 2 : pm_mnt.pm_vers; |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1668 | |
| 1669 | /* contact the mount daemon via TCP */ |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 1670 | mount_server_addr.sin_port = htons(pm_mnt.pm_port); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1671 | msock = RPC_ANYSOCK; |
| 1672 | |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 1673 | switch (pm_mnt.pm_prot) { |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1674 | case IPPROTO_UDP: |
| 1675 | mclient = clntudp_create(&mount_server_addr, |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 1676 | pm_mnt.pm_prog, |
| 1677 | pm_mnt.pm_vers, |
| 1678 | retry_timeout, |
| 1679 | &msock); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1680 | if (mclient) |
| 1681 | break; |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 1682 | mount_server_addr.sin_port = htons(pm_mnt.pm_port); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1683 | msock = RPC_ANYSOCK; |
| 1684 | case IPPROTO_TCP: |
| 1685 | mclient = clnttcp_create(&mount_server_addr, |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 1686 | pm_mnt.pm_prog, |
| 1687 | pm_mnt.pm_vers, |
| 1688 | &msock, 0, 0); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1689 | break; |
| 1690 | default: |
Denis Vlasenko | 7d8de4d | 2007-08-28 11:23:23 +0000 | [diff] [blame] | 1691 | mclient = NULL; |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1692 | } |
| 1693 | if (!mclient) { |
| 1694 | if (!daemonized && prevt == 0) |
| 1695 | error_msg_rpc(clnt_spcreateerror(" ")); |
| 1696 | } else { |
| 1697 | enum clnt_stat clnt_stat; |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 1698 | |
| 1699 | /* Try to mount hostname:pathname */ |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1700 | mclient->cl_auth = authunix_create_default(); |
| 1701 | |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 1702 | /* Make pointers in xdr_mountres3 NULL so |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1703 | * that xdr_array allocates memory for us |
| 1704 | */ |
| 1705 | memset(&status, 0, sizeof(status)); |
| 1706 | |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 1707 | if (pm_mnt.pm_vers == 3) |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1708 | clnt_stat = clnt_call(mclient, MOUNTPROC3_MNT, |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 1709 | (xdrproc_t) xdr_dirpath, |
| 1710 | (caddr_t) &pathname, |
| 1711 | (xdrproc_t) xdr_mountres3, |
| 1712 | (caddr_t) &status, |
| 1713 | total_timeout); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1714 | else |
| 1715 | clnt_stat = clnt_call(mclient, MOUNTPROC_MNT, |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 1716 | (xdrproc_t) xdr_dirpath, |
| 1717 | (caddr_t) &pathname, |
| 1718 | (xdrproc_t) xdr_fhstatus, |
| 1719 | (caddr_t) &status, |
| 1720 | total_timeout); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1721 | |
| 1722 | if (clnt_stat == RPC_SUCCESS) |
| 1723 | goto prepare_kernel_data; /* we're done */ |
| 1724 | if (errno != ECONNREFUSED) { |
| 1725 | error_msg_rpc(clnt_sperror(mclient, " ")); |
| 1726 | goto fail; /* don't retry */ |
| 1727 | } |
| 1728 | /* Connection refused */ |
| 1729 | if (!daemonized && prevt == 0) /* print just once */ |
| 1730 | error_msg_rpc(clnt_sperror(mclient, " ")); |
| 1731 | auth_destroy(mclient->cl_auth); |
| 1732 | clnt_destroy(mclient); |
Denis Vlasenko | 7d8de4d | 2007-08-28 11:23:23 +0000 | [diff] [blame] | 1733 | mclient = NULL; |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1734 | close(msock); |
Denis Vlasenko | 7d8de4d | 2007-08-28 11:23:23 +0000 | [diff] [blame] | 1735 | msock = -1; |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1736 | } |
| 1737 | |
| 1738 | /* Timeout. We are going to retry... maybe */ |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1739 | if (!bg) |
| 1740 | goto fail; |
| 1741 | if (!daemonized) { |
| 1742 | daemonized = daemonize(); |
| 1743 | if (daemonized <= 0) { /* parent or error */ |
| 1744 | retval = -daemonized; |
| 1745 | goto ret; |
| 1746 | } |
| 1747 | } |
| 1748 | prevt = t; |
| 1749 | t = time(NULL); |
| 1750 | if (t >= timeout) |
| 1751 | /* TODO error message */ |
| 1752 | goto fail; |
| 1753 | |
| 1754 | goto retry; |
| 1755 | } |
| 1756 | |
Denis Vlasenko | 63430ae | 2007-10-29 19:18:39 +0000 | [diff] [blame] | 1757 | prepare_kernel_data: |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1758 | |
| 1759 | if (nfsvers == 2) { |
| 1760 | if (status.nfsv2.fhs_status != 0) { |
| 1761 | bb_error_msg("%s:%s failed, reason given by server: %s", |
| 1762 | hostname, pathname, |
| 1763 | nfs_strerror(status.nfsv2.fhs_status)); |
| 1764 | goto fail; |
| 1765 | } |
| 1766 | memcpy(data.root.data, |
| 1767 | (char *) status.nfsv2.fhstatus_u.fhs_fhandle, |
| 1768 | NFS_FHSIZE); |
| 1769 | data.root.size = NFS_FHSIZE; |
| 1770 | memcpy(data.old_root.data, |
| 1771 | (char *) status.nfsv2.fhstatus_u.fhs_fhandle, |
| 1772 | NFS_FHSIZE); |
| 1773 | } else { |
| 1774 | fhandle3 *my_fhandle; |
| 1775 | if (status.nfsv3.fhs_status != 0) { |
| 1776 | bb_error_msg("%s:%s failed, reason given by server: %s", |
| 1777 | hostname, pathname, |
| 1778 | nfs_strerror(status.nfsv3.fhs_status)); |
| 1779 | goto fail; |
| 1780 | } |
| 1781 | my_fhandle = &status.nfsv3.mountres3_u.mountinfo.fhandle; |
| 1782 | memset(data.old_root.data, 0, NFS_FHSIZE); |
| 1783 | memset(&data.root, 0, sizeof(data.root)); |
| 1784 | data.root.size = my_fhandle->fhandle3_len; |
| 1785 | memcpy(data.root.data, |
| 1786 | (char *) my_fhandle->fhandle3_val, |
| 1787 | my_fhandle->fhandle3_len); |
| 1788 | |
| 1789 | data.flags |= NFS_MOUNT_VER3; |
| 1790 | } |
| 1791 | |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 1792 | /* Create nfs socket for kernel */ |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1793 | if (tcp) { |
| 1794 | if (nfs_mount_version < 3) { |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 1795 | bb_simple_error_msg("NFS over TCP is not supported"); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1796 | goto fail; |
| 1797 | } |
| 1798 | fsock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); |
| 1799 | } else |
| 1800 | fsock = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP); |
| 1801 | if (fsock < 0) { |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 1802 | bb_simple_perror_msg("nfs socket"); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1803 | goto fail; |
| 1804 | } |
| 1805 | if (bindresvport(fsock, 0) < 0) { |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 1806 | bb_simple_perror_msg("nfs bindresvport"); |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1807 | goto fail; |
| 1808 | } |
| 1809 | if (port == 0) { |
| 1810 | server_addr.sin_port = PMAPPORT; |
| 1811 | port = pmap_getport(&server_addr, nfsprog, nfsvers, |
| 1812 | tcp ? IPPROTO_TCP : IPPROTO_UDP); |
| 1813 | if (port == 0) |
| 1814 | port = NFS_PORT; |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1815 | } |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1816 | server_addr.sin_port = htons(port); |
| 1817 | |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 1818 | /* Prepare data structure for kernel */ |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1819 | data.fd = fsock; |
| 1820 | memcpy((char *) &data.addr, (char *) &server_addr, sizeof(data.addr)); |
| 1821 | strncpy(data.hostname, hostname, sizeof(data.hostname)); |
| 1822 | |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 1823 | /* Clean up */ |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1824 | auth_destroy(mclient->cl_auth); |
| 1825 | clnt_destroy(mclient); |
| 1826 | close(msock); |
Denis Vlasenko | 7d8de4d | 2007-08-28 11:23:23 +0000 | [diff] [blame] | 1827 | msock = -1; |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1828 | |
| 1829 | if (bg) { |
| 1830 | /* We must wait until mount directory is available */ |
| 1831 | struct stat statbuf; |
| 1832 | int delay = 1; |
| 1833 | while (stat(mp->mnt_dir, &statbuf) == -1) { |
| 1834 | if (!daemonized) { |
| 1835 | daemonized = daemonize(); |
| 1836 | if (daemonized <= 0) { /* parent or error */ |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 1837 | /* FIXME: parent doesn't close fsock - ??! */ |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1838 | retval = -daemonized; |
| 1839 | goto ret; |
| 1840 | } |
| 1841 | } |
| 1842 | sleep(delay); /* 1, 2, 4, 8, 16, 30, ... */ |
| 1843 | delay *= 2; |
| 1844 | if (delay > 30) |
| 1845 | delay = 30; |
| 1846 | } |
| 1847 | } |
| 1848 | |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 1849 | /* Perform actual mount */ |
| 1850 | do_mount: |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1851 | retval = mount_it_now(mp, vfsflags, (char*)&data); |
| 1852 | goto ret; |
| 1853 | |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 1854 | /* Abort */ |
| 1855 | fail: |
Denis Vlasenko | 7d8de4d | 2007-08-28 11:23:23 +0000 | [diff] [blame] | 1856 | if (msock >= 0) { |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1857 | if (mclient) { |
| 1858 | auth_destroy(mclient->cl_auth); |
| 1859 | clnt_destroy(mclient); |
| 1860 | } |
| 1861 | close(msock); |
| 1862 | } |
Denis Vlasenko | 7d8de4d | 2007-08-28 11:23:23 +0000 | [diff] [blame] | 1863 | if (fsock >= 0) |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1864 | close(fsock); |
| 1865 | |
Denis Vlasenko | 63430ae | 2007-10-29 19:18:39 +0000 | [diff] [blame] | 1866 | ret: |
Denis Vlasenko | 25098f7 | 2006-09-14 15:46:33 +0000 | [diff] [blame] | 1867 | free(hostname); |
| 1868 | free(mounthost); |
| 1869 | free(filteropts); |
| 1870 | return retval; |
| 1871 | } |
| 1872 | |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 1873 | #else // !ENABLE_FEATURE_MOUNT_NFS |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 1874 | |
Denys Vlasenko | a86e024 | 2011-11-10 16:53:35 +0100 | [diff] [blame] | 1875 | /* Linux 2.6.23+ supports nfs mounts with options passed as a string. |
| 1876 | * For older kernels, you must build busybox with ENABLE_FEATURE_MOUNT_NFS. |
| 1877 | * (However, note that then you lose any chances that NFS over IPv6 would work). |
| 1878 | */ |
Denys Vlasenko | 9ee4266 | 2012-06-21 12:08:56 +0200 | [diff] [blame] | 1879 | static int nfsmount(struct mntent *mp, unsigned long vfsflags, char *filteropts) |
Denys Vlasenko | a86e024 | 2011-11-10 16:53:35 +0100 | [diff] [blame] | 1880 | { |
| 1881 | len_and_sockaddr *lsa; |
| 1882 | char *opts; |
| 1883 | char *end; |
| 1884 | char *dotted; |
| 1885 | int ret; |
| 1886 | |
| 1887 | # if ENABLE_FEATURE_IPV6 |
| 1888 | end = strchr(mp->mnt_fsname, ']'); |
| 1889 | if (end && end[1] == ':') |
| 1890 | end++; |
| 1891 | else |
| 1892 | # endif |
| 1893 | /* mount_main() guarantees that ':' is there */ |
| 1894 | end = strchr(mp->mnt_fsname, ':'); |
| 1895 | |
| 1896 | *end = '\0'; |
Denys Vlasenko | 39b2331 | 2011-11-10 17:01:39 +0100 | [diff] [blame] | 1897 | lsa = xhost2sockaddr(mp->mnt_fsname, /*port:*/ 0); |
Denys Vlasenko | a86e024 | 2011-11-10 16:53:35 +0100 | [diff] [blame] | 1898 | *end = ':'; |
| 1899 | dotted = xmalloc_sockaddr2dotted_noport(&lsa->u.sa); |
| 1900 | if (ENABLE_FEATURE_CLEAN_UP) free(lsa); |
| 1901 | opts = xasprintf("%s%saddr=%s", |
| 1902 | filteropts ? filteropts : "", |
| 1903 | filteropts ? "," : "", |
| 1904 | dotted |
| 1905 | ); |
| 1906 | if (ENABLE_FEATURE_CLEAN_UP) free(dotted); |
| 1907 | ret = mount_it_now(mp, vfsflags, opts); |
| 1908 | if (ENABLE_FEATURE_CLEAN_UP) free(opts); |
| 1909 | |
| 1910 | return ret; |
| 1911 | } |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 1912 | |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 1913 | #endif // !ENABLE_FEATURE_MOUNT_NFS |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 1914 | |
Steffen Trumtrar | 6561e07 | 2020-07-29 10:43:53 +0200 | [diff] [blame] | 1915 | // Find "...,NAME=NUM,..." in the option string, remove "NAME=NUM" option |
| 1916 | // and return NUM. |
| 1917 | // Return 0 if not found. |
| 1918 | // All instances must be parsed and removed (for example, since kernel 5.4 |
| 1919 | // squashfs: Unknown parameter 'sizelimit' |
| 1920 | // will result if loopback mount option "sizelimit=NNN" is not removed |
| 1921 | // and squashfs sees it in option string). |
| 1922 | static unsigned long long cut_out_ull_opt(char *opts, const char *name_eq) |
| 1923 | { |
| 1924 | unsigned long long ret = 0; |
| 1925 | |
| 1926 | if (!opts) // allow NULL opts (simplifies callers' work) |
| 1927 | return ret; |
| 1928 | |
| 1929 | for (;;) { |
| 1930 | char *end; |
| 1931 | char *opt; |
| 1932 | |
| 1933 | // Find comma-delimited "NAME=" |
| 1934 | for (;;) { |
| 1935 | opt = strstr(opts, name_eq); |
| 1936 | if (!opt) |
| 1937 | return ret; |
| 1938 | if (opt == opts) |
| 1939 | break; // found it (it's first opt) |
| 1940 | if (opt[-1] == ',') { |
| 1941 | opts = opt - 1; |
| 1942 | break; // found it (it's not a first opt) |
| 1943 | } |
| 1944 | // False positive like "VNAME=", we are at "N". |
| 1945 | // - skip it, loop back to searching |
| 1946 | opts = opt + 1; |
| 1947 | } |
| 1948 | |
| 1949 | ret = bb_strtoull(opt + strlen(name_eq), &end, 0); |
| 1950 | if (errno && errno != EINVAL) { |
| 1951 | err: |
| 1952 | bb_error_msg_and_die("bad option '%s'", opt); |
| 1953 | } |
| 1954 | if (*end == '\0') { |
| 1955 | // It is "[,]NAME=NUM\0" - truncate it and return |
| 1956 | *opts = '\0'; |
| 1957 | return ret; |
| 1958 | } |
| 1959 | if (*end != ',') |
| 1960 | goto err; |
| 1961 | // We are at trailing comma |
| 1962 | // Remove "NAME=NUM," and loop back to check for duplicate opts |
| 1963 | overlapping_strcpy(opt, end + 1); |
| 1964 | } |
| 1965 | } |
| 1966 | |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 1967 | // Mount one directory. Handles CIFS, NFS, loopback, autobind, and filesystem |
| 1968 | // type detection. Returns 0 for success, nonzero for failure. |
Denis Vlasenko | 3bc59aa | 2006-09-17 15:04:01 +0000 | [diff] [blame] | 1969 | // NB: mp->xxx fields may be trashed on exit |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 1970 | static int singlemount(struct mntent *mp, int ignore_busy) |
| 1971 | { |
Denys Vlasenko | ab518ee | 2017-03-16 16:49:37 +0100 | [diff] [blame] | 1972 | int loopfd = -1; |
Denis Vlasenko | b413368 | 2008-02-18 13:05:38 +0000 | [diff] [blame] | 1973 | int rc = -1; |
Denys Vlasenko | 9ee4266 | 2012-06-21 12:08:56 +0200 | [diff] [blame] | 1974 | unsigned long vfsflags; |
Denys Vlasenko | e2e4cc2 | 2009-06-19 11:48:29 +0200 | [diff] [blame] | 1975 | char *loopFile = NULL, *filteropts = NULL; |
| 1976 | llist_t *fl = NULL; |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 1977 | struct stat st; |
| 1978 | |
Denys Vlasenko | b7a0e13 | 2009-12-15 16:36:14 +0100 | [diff] [blame] | 1979 | errno = 0; |
| 1980 | |
Denys Vlasenko | cf4dc4a | 2021-10-08 02:16:41 +0200 | [diff] [blame] | 1981 | vfsflags = parse_mount_options(mp->mnt_opts, &filteropts, NULL); |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 1982 | |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 1983 | // Treat fstype "auto" as unspecified |
Denis Vlasenko | a4522c5 | 2008-03-17 08:46:43 +0000 | [diff] [blame] | 1984 | if (mp->mnt_type && strcmp(mp->mnt_type, "auto") == 0) |
| 1985 | mp->mnt_type = NULL; |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 1986 | |
Denis Vlasenko | 2535f12 | 2007-09-15 13:28:30 +0000 | [diff] [blame] | 1987 | // Might this be a virtual filesystem? |
Denys Vlasenko | e2e4cc2 | 2009-06-19 11:48:29 +0200 | [diff] [blame] | 1988 | if (ENABLE_FEATURE_MOUNT_HELPERS && strchr(mp->mnt_fsname, '#')) { |
| 1989 | char *args[35]; |
| 1990 | char *s; |
| 1991 | int n; |
| 1992 | // fsname: "cmd#arg1#arg2..." |
| 1993 | // WARNING: allows execution of arbitrary commands! |
| 1994 | // Try "mount 'sh#-c#sh' bogus_dir". |
| 1995 | // It is safe ONLY because non-root |
| 1996 | // cannot use two-argument mount command |
| 1997 | // and using one-argument "mount 'sh#-c#sh'" doesn't work: |
| 1998 | // "mount: can't find sh#-c#sh in /etc/fstab" |
| 1999 | // (if /etc/fstab has it, it's ok: root sets up /etc/fstab). |
| 2000 | |
| 2001 | s = mp->mnt_fsname; |
| 2002 | n = 0; |
| 2003 | args[n++] = s; |
| 2004 | while (*s && n < 35 - 2) { |
| 2005 | if (*s++ == '#' && *s != '#') { |
| 2006 | s[-1] = '\0'; |
| 2007 | args[n++] = s; |
Denis Vlasenko | 2535f12 | 2007-09-15 13:28:30 +0000 | [diff] [blame] | 2008 | } |
| 2009 | } |
Denis Vlasenko | 2535f12 | 2007-09-15 13:28:30 +0000 | [diff] [blame] | 2010 | args[n++] = mp->mnt_dir; |
| 2011 | args[n] = NULL; |
Denys Vlasenko | 8531d76 | 2010-03-18 22:44:00 +0100 | [diff] [blame] | 2012 | rc = spawn_and_wait(args); |
Denis Vlasenko | 2535f12 | 2007-09-15 13:28:30 +0000 | [diff] [blame] | 2013 | goto report_error; |
| 2014 | } |
| 2015 | |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2016 | // Might this be an CIFS filesystem? |
Denis Vlasenko | 6cd2d2b | 2007-01-22 14:06:03 +0000 | [diff] [blame] | 2017 | if (ENABLE_FEATURE_MOUNT_CIFS |
Denis Vlasenko | a4522c5 | 2008-03-17 08:46:43 +0000 | [diff] [blame] | 2018 | && (!mp->mnt_type || strcmp(mp->mnt_type, "cifs") == 0) |
| 2019 | && (mp->mnt_fsname[0] == '/' || mp->mnt_fsname[0] == '\\') |
| 2020 | && mp->mnt_fsname[0] == mp->mnt_fsname[1] |
Denis Vlasenko | 6cd2d2b | 2007-01-22 14:06:03 +0000 | [diff] [blame] | 2021 | ) { |
Denys Vlasenko | 4e60f30 | 2009-12-15 01:28:59 +0100 | [diff] [blame] | 2022 | int len; |
| 2023 | char c; |
Bernhard Reutner-Fischer | 20c5e5a | 2013-01-17 02:30:35 +0100 | [diff] [blame] | 2024 | char *hostname, *share; |
Denis Vlasenko | 5870ad9 | 2007-02-04 02:39:55 +0000 | [diff] [blame] | 2025 | len_and_sockaddr *lsa; |
Bernhard Reutner-Fischer | 20c5e5a | 2013-01-17 02:30:35 +0100 | [diff] [blame] | 2026 | |
| 2027 | // Parse mp->mnt_fsname of the form "//hostname/share[/dir1/dir2]" |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2028 | |
Denys Vlasenko | b7a0e13 | 2009-12-15 16:36:14 +0100 | [diff] [blame] | 2029 | hostname = mp->mnt_fsname + 2; |
| 2030 | len = strcspn(hostname, "/\\"); |
Bernhard Reutner-Fischer | 20c5e5a | 2013-01-17 02:30:35 +0100 | [diff] [blame] | 2031 | share = hostname + len + 1; |
| 2032 | if (len == 0 // 3rd char is a [back]slash (IOW: empty hostname) |
| 2033 | || share[-1] == '\0' // no [back]slash after hostname |
| 2034 | || share[0] == '\0' // empty share name |
Martin Santesson | 406ea15 | 2013-01-16 00:47:19 +0100 | [diff] [blame] | 2035 | ) { |
Denis Vlasenko | 5c32993 | 2009-04-12 12:16:21 +0000 | [diff] [blame] | 2036 | goto report_error; |
Martin Santesson | 406ea15 | 2013-01-16 00:47:19 +0100 | [diff] [blame] | 2037 | } |
Bernhard Reutner-Fischer | 20c5e5a | 2013-01-17 02:30:35 +0100 | [diff] [blame] | 2038 | c = share[-1]; |
| 2039 | share[-1] = '\0'; |
| 2040 | len = strcspn(share, "/\\"); |
Martin Santesson | 406ea15 | 2013-01-16 00:47:19 +0100 | [diff] [blame] | 2041 | |
| 2042 | // "unc=\\hostname\share" option is mandatory |
| 2043 | // after CIFS option parsing was rewritten in Linux 3.4. |
Bernhard Reutner-Fischer | 20c5e5a | 2013-01-17 02:30:35 +0100 | [diff] [blame] | 2044 | // Must use backslashes. |
| 2045 | // If /dir1/dir2 is present, also add "prefixpath=dir1/dir2" |
Martin Santesson | 406ea15 | 2013-01-16 00:47:19 +0100 | [diff] [blame] | 2046 | { |
Bernhard Reutner-Fischer | 20c5e5a | 2013-01-17 02:30:35 +0100 | [diff] [blame] | 2047 | char *unc = xasprintf( |
| 2048 | share[len] != '\0' /* "/dir1/dir2" exists? */ |
| 2049 | ? "unc=\\\\%s\\%.*s,prefixpath=%s" |
| 2050 | : "unc=\\\\%s\\%.*s", |
| 2051 | hostname, |
| 2052 | len, share, |
| 2053 | share + len + 1 /* "dir1/dir2" */ |
| 2054 | ); |
Denys Vlasenko | cf4dc4a | 2021-10-08 02:16:41 +0200 | [diff] [blame] | 2055 | parse_mount_options(unc, &filteropts, NULL); |
Denys Vlasenko | 9b7ebfe | 2013-01-22 11:00:45 +0100 | [diff] [blame] | 2056 | if (ENABLE_FEATURE_CLEAN_UP) free(unc); |
Martin Santesson | 406ea15 | 2013-01-16 00:47:19 +0100 | [diff] [blame] | 2057 | } |
| 2058 | |
Denys Vlasenko | b7a0e13 | 2009-12-15 16:36:14 +0100 | [diff] [blame] | 2059 | lsa = host2sockaddr(hostname, 0); |
Bernhard Reutner-Fischer | 20c5e5a | 2013-01-17 02:30:35 +0100 | [diff] [blame] | 2060 | share[-1] = c; |
Denis Vlasenko | 5c32993 | 2009-04-12 12:16:21 +0000 | [diff] [blame] | 2061 | if (!lsa) |
| 2062 | goto report_error; |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2063 | |
Denys Vlasenko | b09ab44 | 2016-09-27 21:02:35 +0200 | [diff] [blame] | 2064 | // If there is no "ip=..." option yet |
| 2065 | if (!is_prefixed_with(filteropts, ",ip="+1) |
| 2066 | && !strstr(filteropts, ",ip=") |
| 2067 | ) { |
| 2068 | char *dotted, *ip; |
| 2069 | // Insert "ip=..." option into options |
| 2070 | dotted = xmalloc_sockaddr2dotted_noport(&lsa->u.sa); |
| 2071 | if (ENABLE_FEATURE_CLEAN_UP) free(lsa); |
| 2072 | ip = xasprintf("ip=%s", dotted); |
| 2073 | if (ENABLE_FEATURE_CLEAN_UP) free(dotted); |
Denys Vlasenko | 5093c8c | 2016-09-26 20:36:30 +0200 | [diff] [blame] | 2074 | // Note: IPv6 scoped addresses ("host%iface", see RFC 4007) should be |
Denys Vlasenko | 3c18e30 | 2016-09-26 19:53:04 +0200 | [diff] [blame] | 2075 | // handled by libc in getnameinfo() (inside xmalloc_sockaddr2dotted_noport()). |
| 2076 | // Currently, glibc does not support that (has no NI_NUMERICSCOPE), |
| 2077 | // musl apparently does. This results in "ip=numericIPv6%iface_name" |
| 2078 | // (instead of _numeric_ iface_id) with glibc. |
Denys Vlasenko | 5093c8c | 2016-09-26 20:36:30 +0200 | [diff] [blame] | 2079 | // This probably should be fixed in glibc, not here. |
Denys Vlasenko | b09ab44 | 2016-09-27 21:02:35 +0200 | [diff] [blame] | 2080 | // The workaround is to manually specify correct "ip=ADDR%n" option. |
Denys Vlasenko | cf4dc4a | 2021-10-08 02:16:41 +0200 | [diff] [blame] | 2081 | parse_mount_options(ip, &filteropts, NULL); |
Denys Vlasenko | b09ab44 | 2016-09-27 21:02:35 +0200 | [diff] [blame] | 2082 | if (ENABLE_FEATURE_CLEAN_UP) free(ip); |
| 2083 | } |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2084 | |
Denis Vlasenko | 06c0a71 | 2007-01-29 22:51:44 +0000 | [diff] [blame] | 2085 | mp->mnt_type = (char*)"cifs"; |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2086 | rc = mount_it_now(mp, vfsflags, filteropts); |
Denys Vlasenko | 4e60f30 | 2009-12-15 01:28:59 +0100 | [diff] [blame] | 2087 | |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2088 | goto report_error; |
| 2089 | } |
| 2090 | |
| 2091 | // Might this be an NFS filesystem? |
Denys Vlasenko | b1eedfc | 2020-12-05 14:14:11 +0100 | [diff] [blame] | 2092 | if (!(vfsflags & (MS_BIND | MS_MOVE)) |
| 2093 | && (!mp->mnt_type || is_prefixed_with(mp->mnt_type, "nfs")) |
Denis Vlasenko | 6cd2d2b | 2007-01-22 14:06:03 +0000 | [diff] [blame] | 2094 | ) { |
Denys Vlasenko | b1eedfc | 2020-12-05 14:14:11 +0100 | [diff] [blame] | 2095 | char *colon = strchr(mp->mnt_fsname, ':'); |
Denys Vlasenko | 56ee576 | 2020-12-09 20:56:43 +0100 | [diff] [blame] | 2096 | if (colon // looks like "hostname:..." |
| 2097 | && strchrnul(mp->mnt_fsname, '/') > colon // "hostname:" has no slashes |
Denys Vlasenko | b1eedfc | 2020-12-05 14:14:11 +0100 | [diff] [blame] | 2098 | ) { |
| 2099 | if (!mp->mnt_type) |
| 2100 | mp->mnt_type = (char*)"nfs"; |
| 2101 | rc = nfsmount(mp, vfsflags, filteropts); |
| 2102 | goto report_error; |
| 2103 | } |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2104 | } |
| 2105 | |
| 2106 | // Look at the file. (Not found isn't a failure for remount, or for |
| 2107 | // a synthetic filesystem like proc or sysfs.) |
Denis Vlasenko | 38ec147 | 2007-05-20 12:32:41 +0000 | [diff] [blame] | 2108 | // (We use stat, not lstat, in order to allow |
| 2109 | // mount symlink_to_file_or_blkdev dir) |
Denis Vlasenko | 38ec147 | 2007-05-20 12:32:41 +0000 | [diff] [blame] | 2110 | if (!stat(mp->mnt_fsname, &st) |
Denis Vlasenko | 6cd2d2b | 2007-01-22 14:06:03 +0000 | [diff] [blame] | 2111 | && !(vfsflags & (MS_REMOUNT | MS_BIND | MS_MOVE)) |
| 2112 | ) { |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2113 | // Do we need to allocate a loopback device for it? |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2114 | if (ENABLE_FEATURE_MOUNT_LOOP && S_ISREG(st.st_mode)) { |
Steffen Trumtrar | 6561e07 | 2020-07-29 10:43:53 +0200 | [diff] [blame] | 2115 | unsigned long long offset; |
| 2116 | unsigned long long sizelimit; |
| 2117 | |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2118 | loopFile = bb_simplify_path(mp->mnt_fsname); |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 2119 | mp->mnt_fsname = NULL; // will receive malloced loop dev name |
Denys Vlasenko | ab518ee | 2017-03-16 16:49:37 +0100 | [diff] [blame] | 2120 | |
Steffen Trumtrar | 6561e07 | 2020-07-29 10:43:53 +0200 | [diff] [blame] | 2121 | // Parse and remove loopback options |
| 2122 | offset = cut_out_ull_opt(filteropts, "offset="); |
| 2123 | sizelimit = cut_out_ull_opt(filteropts, "sizelimit="); |
| 2124 | |
Denys Vlasenko | ab518ee | 2017-03-16 16:49:37 +0100 | [diff] [blame] | 2125 | // mount always creates AUTOCLEARed loopdevs, so that umounting |
| 2126 | // drops them without any code in the userspace. |
| 2127 | // This happens since circa linux-2.6.25: |
| 2128 | // commit 96c5865559cee0f9cbc5173f3c949f6ce3525581 |
| 2129 | // Date: Wed Feb 6 01:36:27 2008 -0800 |
| 2130 | // Subject: Allow auto-destruction of loop devices |
| 2131 | loopfd = set_loop(&mp->mnt_fsname, |
| 2132 | loopFile, |
Steffen Trumtrar | 6561e07 | 2020-07-29 10:43:53 +0200 | [diff] [blame] | 2133 | offset, |
| 2134 | sizelimit, |
Denys Vlasenko | ab518ee | 2017-03-16 16:49:37 +0100 | [diff] [blame] | 2135 | ((vfsflags & MS_RDONLY) ? BB_LO_FLAGS_READ_ONLY : 0) |
| 2136 | | BB_LO_FLAGS_AUTOCLEAR |
| 2137 | ); |
| 2138 | if (loopfd < 0) { |
Denis Vlasenko | 0e2c9fb | 2007-08-03 14:16:24 +0000 | [diff] [blame] | 2139 | if (errno == EPERM || errno == EACCES) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 2140 | bb_simple_error_msg(bb_msg_perm_denied_are_you_root); |
Denis Vlasenko | 0e2c9fb | 2007-08-03 14:16:24 +0000 | [diff] [blame] | 2141 | else |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 2142 | bb_simple_perror_msg("can't setup loop device"); |
Denys Vlasenko | 56ee576 | 2020-12-09 20:56:43 +0100 | [diff] [blame] | 2143 | return loopfd; // was "return errno", but it can be 0 here |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2144 | } |
| 2145 | |
| 2146 | // Autodetect bind mounts |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2147 | } else if (S_ISDIR(st.st_mode) && !mp->mnt_type) |
| 2148 | vfsflags |= MS_BIND; |
| 2149 | } |
| 2150 | |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 2151 | // If we know the fstype (or don't need to), jump straight |
| 2152 | // to the actual mount. |
Denys Vlasenko | fa1b370 | 2010-06-27 16:47:40 +0200 | [diff] [blame] | 2153 | if (mp->mnt_type || (vfsflags & (MS_REMOUNT | MS_BIND | MS_MOVE))) { |
Karol Lewandowski | b5ebe5f | 2011-11-03 10:02:31 +0100 | [diff] [blame] | 2154 | char *next; |
| 2155 | for (;;) { |
| 2156 | next = mp->mnt_type ? strchr(mp->mnt_type, ',') : NULL; |
| 2157 | if (next) |
| 2158 | *next = '\0'; |
| 2159 | rc = mount_it_now(mp, vfsflags, filteropts); |
| 2160 | if (rc == 0 || !next) |
| 2161 | break; |
| 2162 | mp->mnt_type = next + 1; |
| 2163 | } |
Denys Vlasenko | fa1b370 | 2010-06-27 16:47:40 +0200 | [diff] [blame] | 2164 | } else { |
Denis Vlasenko | 6cd2d2b | 2007-01-22 14:06:03 +0000 | [diff] [blame] | 2165 | // Loop through filesystem types until mount succeeds |
| 2166 | // or we run out |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2167 | |
Denys Vlasenko | b7a0e13 | 2009-12-15 16:36:14 +0100 | [diff] [blame] | 2168 | // Initialize list of block backed filesystems. |
| 2169 | // This has to be done here so that during "mount -a", |
| 2170 | // mounts after /proc shows up can autodetect. |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2171 | if (!fslist) { |
| 2172 | fslist = get_block_backed_filesystems(); |
| 2173 | if (ENABLE_FEATURE_CLEAN_UP && fslist) |
| 2174 | atexit(delete_block_backed_filesystems); |
| 2175 | } |
| 2176 | |
| 2177 | for (fl = fslist; fl; fl = fl->link) { |
| 2178 | mp->mnt_type = fl->data; |
Denis Vlasenko | 13b4924 | 2006-09-17 15:04:35 +0000 | [diff] [blame] | 2179 | rc = mount_it_now(mp, vfsflags, filteropts); |
Karol Lewandowski | b5ebe5f | 2011-11-03 10:02:31 +0100 | [diff] [blame] | 2180 | if (rc == 0) |
Denys Vlasenko | e2e4cc2 | 2009-06-19 11:48:29 +0200 | [diff] [blame] | 2181 | break; |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2182 | } |
| 2183 | } |
| 2184 | |
| 2185 | // If mount failed, clean up loop file (if any). |
Denys Vlasenko | ab518ee | 2017-03-16 16:49:37 +0100 | [diff] [blame] | 2186 | // (Newer kernels which support LO_FLAGS_AUTOCLEAR should not need this, |
| 2187 | // merely "close(loopfd)" should do it?) |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2188 | if (ENABLE_FEATURE_MOUNT_LOOP && rc && loopFile) { |
| 2189 | del_loop(mp->mnt_fsname); |
| 2190 | if (ENABLE_FEATURE_CLEAN_UP) { |
| 2191 | free(loopFile); |
Denys Vlasenko | ecf25cb | 2016-06-20 11:04:04 +0200 | [diff] [blame] | 2192 | /* No, "rc != 0" needs it: free(mp->mnt_fsname); */ |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2193 | } |
| 2194 | } |
| 2195 | |
Denis Vlasenko | 5870ad9 | 2007-02-04 02:39:55 +0000 | [diff] [blame] | 2196 | report_error: |
| 2197 | if (ENABLE_FEATURE_CLEAN_UP) |
| 2198 | free(filteropts); |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2199 | |
Denys Vlasenko | ab518ee | 2017-03-16 16:49:37 +0100 | [diff] [blame] | 2200 | if (loopfd >= 0) |
| 2201 | close(loopfd); |
| 2202 | |
Denis Vlasenko | c8d4d2f | 2007-09-07 19:33:56 +0000 | [diff] [blame] | 2203 | if (errno == EBUSY && ignore_busy) |
| 2204 | return 0; |
Denys Vlasenko | 911d265 | 2015-12-30 20:11:34 +0100 | [diff] [blame] | 2205 | if (errno == ENOENT && (vfsflags & MOUNT_NOFAIL)) |
| 2206 | return 0; |
Denys Vlasenko | fa1b370 | 2010-06-27 16:47:40 +0200 | [diff] [blame] | 2207 | if (rc != 0) |
Denis Vlasenko | 0e2c9fb | 2007-08-03 14:16:24 +0000 | [diff] [blame] | 2208 | bb_perror_msg("mounting %s on %s failed", mp->mnt_fsname, mp->mnt_dir); |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2209 | return rc; |
| 2210 | } |
| 2211 | |
Michael Abbott | 6b5accb | 2009-12-04 03:33:07 +0100 | [diff] [blame] | 2212 | // -O support |
| 2213 | // -O interprets a list of filter options which select whether a mount |
| 2214 | // point will be mounted: only mounts with options matching *all* filtering |
| 2215 | // options will be selected. |
| 2216 | // By default each -O filter option must be present in the list of mount |
| 2217 | // options, but if it is prefixed by "no" then it must be absent. |
| 2218 | // For example, |
| 2219 | // -O a,nob,c matches -o a,c but fails to match -o a,b,c |
| 2220 | // (and also fails to match -o a because -o c is absent). |
| 2221 | // |
| 2222 | // It is different from -t in that each option is matched exactly; a leading |
| 2223 | // "no" at the beginning of one option does not negate the rest. |
| 2224 | static int match_opt(const char *fs_opt_in, const char *O_opt) |
Denis Vlasenko | 7aaedcf | 2009-03-14 22:57:20 +0000 | [diff] [blame] | 2225 | { |
Denis Vlasenko | 7aaedcf | 2009-03-14 22:57:20 +0000 | [diff] [blame] | 2226 | if (!O_opt) |
Michael Abbott | 6b5accb | 2009-12-04 03:33:07 +0100 | [diff] [blame] | 2227 | return 1; |
Denis Vlasenko | 7aaedcf | 2009-03-14 22:57:20 +0000 | [diff] [blame] | 2228 | |
Michael Abbott | 6b5accb | 2009-12-04 03:33:07 +0100 | [diff] [blame] | 2229 | while (*O_opt) { |
| 2230 | const char *fs_opt = fs_opt_in; |
| 2231 | int O_len; |
| 2232 | int match; |
Denis Vlasenko | 7aaedcf | 2009-03-14 22:57:20 +0000 | [diff] [blame] | 2233 | |
Michael Abbott | 6b5accb | 2009-12-04 03:33:07 +0100 | [diff] [blame] | 2234 | // If option begins with "no" then treat as an inverted match: |
| 2235 | // matching is a failure |
| 2236 | match = 0; |
| 2237 | if (O_opt[0] == 'n' && O_opt[1] == 'o') { |
| 2238 | match = 1; |
| 2239 | O_opt += 2; |
Denis Vlasenko | 7aaedcf | 2009-03-14 22:57:20 +0000 | [diff] [blame] | 2240 | } |
Michael Abbott | 6b5accb | 2009-12-04 03:33:07 +0100 | [diff] [blame] | 2241 | // Isolate the current O option |
| 2242 | O_len = strchrnul(O_opt, ',') - O_opt; |
| 2243 | // Check for a match against existing options |
| 2244 | while (1) { |
| 2245 | if (strncmp(fs_opt, O_opt, O_len) == 0 |
| 2246 | && (fs_opt[O_len] == '\0' || fs_opt[O_len] == ',') |
| 2247 | ) { |
| 2248 | if (match) |
| 2249 | return 0; // "no" prefix, but option found |
| 2250 | match = 1; // current O option found, go check next one |
| 2251 | break; |
| 2252 | } |
| 2253 | fs_opt = strchr(fs_opt, ','); |
| 2254 | if (!fs_opt) |
| 2255 | break; |
| 2256 | fs_opt++; |
| 2257 | } |
| 2258 | if (match == 0) |
| 2259 | return 0; // match wanted but not found |
| 2260 | if (O_opt[O_len] == '\0') // end? |
Denis Vlasenko | 7aaedcf | 2009-03-14 22:57:20 +0000 | [diff] [blame] | 2261 | break; |
Michael Abbott | 6b5accb | 2009-12-04 03:33:07 +0100 | [diff] [blame] | 2262 | // Step to the next O option |
| 2263 | O_opt += O_len + 1; |
Denis Vlasenko | 7aaedcf | 2009-03-14 22:57:20 +0000 | [diff] [blame] | 2264 | } |
Michael Abbott | 6b5accb | 2009-12-04 03:33:07 +0100 | [diff] [blame] | 2265 | // If we get here then everything matched |
| 2266 | return 1; |
Denis Vlasenko | 7aaedcf | 2009-03-14 22:57:20 +0000 | [diff] [blame] | 2267 | } |
| 2268 | |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2269 | // Parse options, if necessary parse fstab/mtab, and call singlemount for |
| 2270 | // each directory to be mounted. |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 2271 | int mount_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 2272 | int mount_main(int argc UNUSED_PARAM, char **argv) |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2273 | { |
Denis Vlasenko | 7aaedcf | 2009-03-14 22:57:20 +0000 | [diff] [blame] | 2274 | char *cmdopts = xzalloc(1); |
Denis Vlasenko | a4522c5 | 2008-03-17 08:46:43 +0000 | [diff] [blame] | 2275 | char *fstype = NULL; |
Denis Vlasenko | 7aaedcf | 2009-03-14 22:57:20 +0000 | [diff] [blame] | 2276 | char *O_optmatch = NULL; |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2277 | char *storage_path; |
Denis Vlasenko | f9dde91 | 2008-10-18 19:15:57 +0000 | [diff] [blame] | 2278 | llist_t *lst_o = NULL; |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 2279 | const char *fstabname = "/etc/fstab"; |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2280 | FILE *fstab; |
Denys Vlasenko | a732966 | 2009-12-05 04:25:19 +0100 | [diff] [blame] | 2281 | int i, j; |
| 2282 | int rc = EXIT_SUCCESS; |
Denys Vlasenko | 9ee4266 | 2012-06-21 12:08:56 +0200 | [diff] [blame] | 2283 | unsigned long cmdopt_flags; |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 2284 | unsigned opt; |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2285 | struct mntent mtpair[2], *mtcur = mtpair; |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 2286 | IF_NOT_DESKTOP(const int nonroot = 0;) |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2287 | |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 2288 | IF_DESKTOP(int nonroot = ) sanitize_env_if_suid(); |
Denis Vlasenko | c9ca0a3 | 2008-02-18 11:08:33 +0000 | [diff] [blame] | 2289 | |
Denys Vlasenko | 1671424 | 2011-09-21 01:59:15 +0200 | [diff] [blame] | 2290 | INIT_G(); |
| 2291 | |
Denis Vlasenko | f732e96 | 2008-02-18 12:07:49 +0000 | [diff] [blame] | 2292 | // Parse long options, like --bind and --move. Note that -o option |
| 2293 | // and --option are synonymous. Yes, this means --remount,rw works. |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2294 | for (i = j = 1; argv[i]; i++) { |
| 2295 | if (argv[i][0] == '-' && argv[i][1] == '-') |
| 2296 | append_mount_options(&cmdopts, argv[i] + 2); |
| 2297 | else |
| 2298 | argv[j++] = argv[i]; |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2299 | } |
Denis Vlasenko | a4522c5 | 2008-03-17 08:46:43 +0000 | [diff] [blame] | 2300 | argv[j] = NULL; |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2301 | |
| 2302 | // Parse remaining options |
Denis Vlasenko | 7aaedcf | 2009-03-14 22:57:20 +0000 | [diff] [blame] | 2303 | // Max 2 params; -o is a list, -v is a counter |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 2304 | opt = getopt32(argv, "^" |
| 2305 | OPTION_STR |
| 2306 | "\0" "?2"IF_FEATURE_MOUNT_VERBOSE("vv"), |
| 2307 | &lst_o, &fstype, &O_optmatch |
| 2308 | IF_FEATURE_MOUNT_OTHERTAB(, &fstabname) |
| 2309 | IF_FEATURE_MOUNT_VERBOSE(, &verbose) |
| 2310 | ); |
| 2311 | |
Denis Vlasenko | f9dde91 | 2008-10-18 19:15:57 +0000 | [diff] [blame] | 2312 | while (lst_o) append_mount_options(&cmdopts, llist_pop(&lst_o)); // -o |
Denis Vlasenko | b1d8e7d | 2008-02-16 23:28:42 +0000 | [diff] [blame] | 2313 | if (opt & OPT_r) append_mount_options(&cmdopts, "ro"); // -r |
| 2314 | if (opt & OPT_w) append_mount_options(&cmdopts, "rw"); // -w |
Denis Vlasenko | 3bc59aa | 2006-09-17 15:04:01 +0000 | [diff] [blame] | 2315 | argv += optind; |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2316 | |
| 2317 | // If we have no arguments, show currently mounted filesystems |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2318 | if (!argv[0]) { |
Denis Vlasenko | 397de61 | 2008-03-17 08:55:44 +0000 | [diff] [blame] | 2319 | if (!(opt & OPT_a)) { |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2320 | FILE *mountTable = setmntent(bb_path_mtab_file, "r"); |
| 2321 | |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2322 | if (!mountTable) |
| 2323 | bb_error_msg_and_die("no %s", bb_path_mtab_file); |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2324 | |
Denis Vlasenko | 2535f12 | 2007-09-15 13:28:30 +0000 | [diff] [blame] | 2325 | while (getmntent_r(mountTable, &mtpair[0], getmntent_buf, |
Denis Vlasenko | d0a071a | 2008-03-17 09:33:45 +0000 | [diff] [blame] | 2326 | GETMNTENT_BUFSIZE)) |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2327 | { |
Denis Vlasenko | 13c5a68 | 2006-10-16 22:39:51 +0000 | [diff] [blame] | 2328 | // Don't show rootfs. FIXME: why?? |
Denis Vlasenko | 908d6b7 | 2006-12-18 23:07:42 +0000 | [diff] [blame] | 2329 | // util-linux 2.12a happily shows rootfs... |
Denys Vlasenko | 4e60f30 | 2009-12-15 01:28:59 +0100 | [diff] [blame] | 2330 | //if (strcmp(mtpair->mnt_fsname, "rootfs") == 0) continue; |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2331 | |
Denys Vlasenko | 4e60f30 | 2009-12-15 01:28:59 +0100 | [diff] [blame] | 2332 | if (!fstype || strcmp(mtpair->mnt_type, fstype) == 0) |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2333 | printf("%s on %s type %s (%s)\n", mtpair->mnt_fsname, |
| 2334 | mtpair->mnt_dir, mtpair->mnt_type, |
| 2335 | mtpair->mnt_opts); |
| 2336 | } |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2337 | if (ENABLE_FEATURE_CLEAN_UP) |
| 2338 | endmntent(mountTable); |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2339 | return EXIT_SUCCESS; |
| 2340 | } |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2341 | storage_path = NULL; |
| 2342 | } else { |
| 2343 | // When we have two arguments, the second is the directory and we can |
| 2344 | // skip looking at fstab entirely. We can always abspath() the directory |
| 2345 | // argument when we get it. |
| 2346 | if (argv[1]) { |
| 2347 | if (nonroot) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 2348 | bb_simple_error_msg_and_die(bb_msg_you_must_be_root); |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2349 | mtpair->mnt_fsname = argv[0]; |
| 2350 | mtpair->mnt_dir = argv[1]; |
| 2351 | mtpair->mnt_type = fstype; |
| 2352 | mtpair->mnt_opts = cmdopts; |
Denis Vlasenko | 6a2d0d9 | 2008-12-10 11:39:18 +0000 | [diff] [blame] | 2353 | resolve_mount_spec(&mtpair->mnt_fsname); |
Denys Vlasenko | a732966 | 2009-12-05 04:25:19 +0100 | [diff] [blame] | 2354 | rc = singlemount(mtpair, /*ignore_busy:*/ 0); |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2355 | return rc; |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 2356 | } |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2357 | storage_path = bb_simplify_path(argv[0]); // malloced |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2358 | } |
| 2359 | |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2360 | // Past this point, we are handling either "mount -a [opts]" |
| 2361 | // or "mount [opts] single_param" |
| 2362 | |
Denys Vlasenko | cf4dc4a | 2021-10-08 02:16:41 +0200 | [diff] [blame] | 2363 | cmdopt_flags = parse_mount_options(cmdopts, NULL, &option_mask32); |
Denys Vlasenko | 9ee4266 | 2012-06-21 12:08:56 +0200 | [diff] [blame] | 2364 | if (nonroot && (cmdopt_flags & ~MS_SILENT)) // Non-root users cannot specify flags |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 2365 | bb_simple_error_msg_and_die(bb_msg_you_must_be_root); |
Denis Vlasenko | 546cd18 | 2006-10-02 18:52:49 +0000 | [diff] [blame] | 2366 | |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2367 | // If we have a shared subtree flag, don't worry about fstab or mtab. |
Denis Vlasenko | 6cd2d2b | 2007-01-22 14:06:03 +0000 | [diff] [blame] | 2368 | if (ENABLE_FEATURE_MOUNT_FLAGS |
Denys Vlasenko | 9ee4266 | 2012-06-21 12:08:56 +0200 | [diff] [blame] | 2369 | && (cmdopt_flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE)) |
Denis Vlasenko | 6cd2d2b | 2007-01-22 14:06:03 +0000 | [diff] [blame] | 2370 | ) { |
Denis Vlasenko | 30e5cf8 | 2008-12-05 16:40:36 +0000 | [diff] [blame] | 2371 | // verbose_mount(source, target, type, flags, data) |
Denys Vlasenko | 9ee4266 | 2012-06-21 12:08:56 +0200 | [diff] [blame] | 2372 | rc = verbose_mount("", argv[0], "", cmdopt_flags, ""); |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2373 | if (rc) |
| 2374 | bb_simple_perror_msg_and_die(argv[0]); |
| 2375 | return rc; |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2376 | } |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 2377 | |
Isaac Dunham | 7b434a6 | 2015-03-11 16:07:24 +0100 | [diff] [blame] | 2378 | // A malicious user could overmount /usr without this. |
| 2379 | if (ENABLE_FEATURE_MOUNT_OTHERTAB && nonroot) |
| 2380 | fstabname = "/etc/fstab"; |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2381 | // Open either fstab or mtab |
Denys Vlasenko | 9ee4266 | 2012-06-21 12:08:56 +0200 | [diff] [blame] | 2382 | if (cmdopt_flags & MS_REMOUNT) { |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2383 | // WARNING. I am not sure this matches util-linux's |
| 2384 | // behavior. It's possible util-linux does not |
| 2385 | // take -o opts from mtab (takes only mount source). |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2386 | fstabname = bb_path_mtab_file; |
Denis Vlasenko | 13c5a68 | 2006-10-16 22:39:51 +0000 | [diff] [blame] | 2387 | } |
| 2388 | fstab = setmntent(fstabname, "r"); |
Denis Vlasenko | 8d474b5 | 2006-09-17 15:00:58 +0000 | [diff] [blame] | 2389 | if (!fstab) |
Denys Vlasenko | 651a269 | 2010-03-23 16:25:17 +0100 | [diff] [blame] | 2390 | bb_perror_msg_and_die("can't read '%s'", fstabname); |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2391 | |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2392 | // Loop through entries until we find what we're looking for |
Denis Vlasenko | 546cd18 | 2006-10-02 18:52:49 +0000 | [diff] [blame] | 2393 | memset(mtpair, 0, sizeof(mtpair)); |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2394 | for (;;) { |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2395 | struct mntent *mtother = (mtcur==mtpair ? mtpair+1 : mtpair); |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2396 | |
| 2397 | // Get next fstab entry |
Denis Vlasenko | 2535f12 | 2007-09-15 13:28:30 +0000 | [diff] [blame] | 2398 | if (!getmntent_r(fstab, mtcur, getmntent_buf |
Denis Vlasenko | d0a071a | 2008-03-17 09:33:45 +0000 | [diff] [blame] | 2399 | + (mtcur==mtpair ? GETMNTENT_BUFSIZE/2 : 0), |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2400 | GETMNTENT_BUFSIZE/2) |
| 2401 | ) { // End of fstab/mtab is reached |
| 2402 | mtcur = mtother; // the thing we found last time |
| 2403 | break; |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2404 | } |
| 2405 | |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2406 | // If we're trying to mount something specific and this isn't it, |
| 2407 | // skip it. Note we must match the exact text in fstab (ala |
| 2408 | // "proc") or a full path from root |
| 2409 | if (argv[0]) { |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2410 | |
| 2411 | // Is this what we're looking for? |
Denys Vlasenko | a732966 | 2009-12-05 04:25:19 +0100 | [diff] [blame] | 2412 | if (strcmp(argv[0], mtcur->mnt_fsname) != 0 |
| 2413 | && strcmp(storage_path, mtcur->mnt_fsname) != 0 |
| 2414 | && strcmp(argv[0], mtcur->mnt_dir) != 0 |
| 2415 | && strcmp(storage_path, mtcur->mnt_dir) != 0 |
| 2416 | ) { |
| 2417 | continue; // no |
| 2418 | } |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2419 | |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2420 | // Remember this entry. Something later may have |
| 2421 | // overmounted it, and we want the _last_ match. |
| 2422 | mtcur = mtother; |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2423 | |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2424 | // If we're mounting all |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2425 | } else { |
Denys Vlasenko | a732966 | 2009-12-05 04:25:19 +0100 | [diff] [blame] | 2426 | struct mntent *mp; |
Denis Vlasenko | 13c5a68 | 2006-10-16 22:39:51 +0000 | [diff] [blame] | 2427 | // No, mount -a won't mount anything, |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2428 | // even user mounts, for mere humans |
Denis Vlasenko | 13c5a68 | 2006-10-16 22:39:51 +0000 | [diff] [blame] | 2429 | if (nonroot) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 2430 | bb_simple_error_msg_and_die(bb_msg_you_must_be_root); |
Denis Vlasenko | 13c5a68 | 2006-10-16 22:39:51 +0000 | [diff] [blame] | 2431 | |
Denis Vlasenko | 7aaedcf | 2009-03-14 22:57:20 +0000 | [diff] [blame] | 2432 | // Does type match? (NULL matches always) |
Denys Vlasenko | 35b54a3 | 2017-01-30 00:45:05 +0100 | [diff] [blame] | 2433 | if (!fstype_matches(mtcur->mnt_type, fstype)) |
Denis Vlasenko | 7aaedcf | 2009-03-14 22:57:20 +0000 | [diff] [blame] | 2434 | continue; |
| 2435 | |
Denys Vlasenko | a732966 | 2009-12-05 04:25:19 +0100 | [diff] [blame] | 2436 | // Skip noauto and swap anyway |
Denys Vlasenko | cf4dc4a | 2021-10-08 02:16:41 +0200 | [diff] [blame] | 2437 | if ((parse_mount_options(mtcur->mnt_opts, NULL, NULL) & (MOUNT_NOAUTO | MOUNT_SWAP)) |
Denis Vlasenko | 7aaedcf | 2009-03-14 22:57:20 +0000 | [diff] [blame] | 2438 | // swap is bogus "fstype", parse_mount_options can't check fstypes |
| 2439 | || strcasecmp(mtcur->mnt_type, "swap") == 0 |
| 2440 | ) { |
| 2441 | continue; |
| 2442 | } |
| 2443 | |
| 2444 | // Does (at least one) option match? |
| 2445 | // (NULL matches always) |
| 2446 | if (!match_opt(mtcur->mnt_opts, O_optmatch)) |
| 2447 | continue; |
| 2448 | |
| 2449 | resolve_mount_spec(&mtcur->mnt_fsname); |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2450 | |
Denis Vlasenko | 666da5e | 2006-12-26 18:17:42 +0000 | [diff] [blame] | 2451 | // NFS mounts want this to be xrealloc-able |
| 2452 | mtcur->mnt_opts = xstrdup(mtcur->mnt_opts); |
Denis Vlasenko | 6a2d0d9 | 2008-12-10 11:39:18 +0000 | [diff] [blame] | 2453 | |
Denys Vlasenko | a732966 | 2009-12-05 04:25:19 +0100 | [diff] [blame] | 2454 | // If nothing is mounted on this directory... |
| 2455 | // (otherwise repeated "mount -a" mounts everything again) |
| 2456 | mp = find_mount_point(mtcur->mnt_dir, /*subdir_too:*/ 0); |
| 2457 | // We do not check fsname match of found mount point - |
| 2458 | // "/" may have fsname of "/dev/root" while fstab |
| 2459 | // says "/dev/something_else". |
| 2460 | if (mp) { |
Denys Vlasenko | 8656676 | 2009-12-10 21:32:28 +0100 | [diff] [blame] | 2461 | if (verbose) { |
| 2462 | bb_error_msg("according to %s, " |
| 2463 | "%s is already mounted on %s", |
| 2464 | bb_path_mtab_file, |
| 2465 | mp->mnt_fsname, mp->mnt_dir); |
| 2466 | } |
Denys Vlasenko | a732966 | 2009-12-05 04:25:19 +0100 | [diff] [blame] | 2467 | } else { |
| 2468 | // ...mount this thing |
| 2469 | if (singlemount(mtcur, /*ignore_busy:*/ 1)) { |
| 2470 | // Count number of failed mounts |
| 2471 | rc++; |
| 2472 | } |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2473 | } |
Denis Vlasenko | 666da5e | 2006-12-26 18:17:42 +0000 | [diff] [blame] | 2474 | free(mtcur->mnt_opts); |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2475 | } |
| 2476 | } |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2477 | |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2478 | // End of fstab/mtab is reached. |
| 2479 | // Were we looking for something specific? |
Denys Vlasenko | a732966 | 2009-12-05 04:25:19 +0100 | [diff] [blame] | 2480 | if (argv[0]) { // yes |
Denys Vlasenko | 9ee4266 | 2012-06-21 12:08:56 +0200 | [diff] [blame] | 2481 | unsigned long l; |
Denis Vlasenko | 7aaedcf | 2009-03-14 22:57:20 +0000 | [diff] [blame] | 2482 | |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2483 | // If we didn't find anything, complain |
| 2484 | if (!mtcur->mnt_fsname) |
| 2485 | bb_error_msg_and_die("can't find %s in %s", |
| 2486 | argv[0], fstabname); |
Denis Vlasenko | 7aaedcf | 2009-03-14 22:57:20 +0000 | [diff] [blame] | 2487 | |
| 2488 | // What happens when we try to "mount swap_partition"? |
| 2489 | // (fstab containts "swap_partition swap swap defaults 0 0") |
| 2490 | // util-linux-ng 2.13.1 does this: |
| 2491 | // stat("/sbin/mount.swap", 0x7fff62a3a350) = -1 ENOENT (No such file or directory) |
| 2492 | // mount("swap_partition", "swap", "swap", MS_MGC_VAL, NULL) = -1 ENOENT (No such file or directory) |
| 2493 | // lstat("swap", 0x7fff62a3a640) = -1 ENOENT (No such file or directory) |
| 2494 | // write(2, "mount: mount point swap does not exist\n", 39) = 39 |
| 2495 | // exit_group(32) = ? |
| 2496 | #if 0 |
| 2497 | // In case we want to simply skip swap partitions: |
Denys Vlasenko | cf4dc4a | 2021-10-08 02:16:41 +0200 | [diff] [blame] | 2498 | l = parse_mount_options(mtcur->mnt_opts, NULL, NULL); |
Denis Vlasenko | 7aaedcf | 2009-03-14 22:57:20 +0000 | [diff] [blame] | 2499 | if ((l & MOUNT_SWAP) |
| 2500 | // swap is bogus "fstype", parse_mount_options can't check fstypes |
| 2501 | || strcasecmp(mtcur->mnt_type, "swap") == 0 |
| 2502 | ) { |
| 2503 | goto ret; |
| 2504 | } |
| 2505 | #endif |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2506 | if (nonroot) { |
| 2507 | // fstab must have "users" or "user" |
Denys Vlasenko | cf4dc4a | 2021-10-08 02:16:41 +0200 | [diff] [blame] | 2508 | l = parse_mount_options(mtcur->mnt_opts, NULL, NULL); |
Denis Vlasenko | 7aaedcf | 2009-03-14 22:57:20 +0000 | [diff] [blame] | 2509 | if (!(l & MOUNT_USERS)) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 2510 | bb_simple_error_msg_and_die(bb_msg_you_must_be_root); |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2511 | } |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2512 | |
Denys Vlasenko | a732966 | 2009-12-05 04:25:19 +0100 | [diff] [blame] | 2513 | //util-linux-2.12 does not do this check. |
| 2514 | //// If nothing is mounted on this directory... |
| 2515 | //// (otherwise repeated "mount FOO" mounts FOO again) |
| 2516 | //mp = find_mount_point(mtcur->mnt_dir, /*subdir_too:*/ 0); |
| 2517 | //if (mp) { |
| 2518 | // bb_error_msg("according to %s, " |
| 2519 | // "%s is already mounted on %s", |
| 2520 | // bb_path_mtab_file, |
| 2521 | // mp->mnt_fsname, mp->mnt_dir); |
| 2522 | //} else { |
| 2523 | // ...mount the last thing we found |
| 2524 | mtcur->mnt_opts = xstrdup(mtcur->mnt_opts); |
| 2525 | append_mount_options(&(mtcur->mnt_opts), cmdopts); |
| 2526 | resolve_mount_spec(&mtpair->mnt_fsname); |
| 2527 | rc = singlemount(mtcur, /*ignore_busy:*/ 0); |
| 2528 | if (ENABLE_FEATURE_CLEAN_UP) |
| 2529 | free(mtcur->mnt_opts); |
| 2530 | //} |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2531 | } |
| 2532 | |
Denis Vlasenko | 7aaedcf | 2009-03-14 22:57:20 +0000 | [diff] [blame] | 2533 | //ret: |
Denis Vlasenko | d0cc3f4 | 2008-06-24 18:59:59 +0000 | [diff] [blame] | 2534 | if (ENABLE_FEATURE_CLEAN_UP) |
| 2535 | endmntent(fstab); |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2536 | if (ENABLE_FEATURE_CLEAN_UP) { |
| 2537 | free(storage_path); |
| 2538 | free(cmdopts); |
| 2539 | } |
Denys Vlasenko | a732966 | 2009-12-05 04:25:19 +0100 | [diff] [blame] | 2540 | |
| 2541 | //TODO: exitcode should be ORed mask of (from "man mount"): |
| 2542 | // 0 success |
| 2543 | // 1 incorrect invocation or permissions |
| 2544 | // 2 system error (out of memory, cannot fork, no more loop devices) |
| 2545 | // 4 internal mount bug or missing nfs support in mount |
| 2546 | // 8 user interrupt |
| 2547 | //16 problems writing or locking /etc/mtab |
| 2548 | //32 mount failure |
| 2549 | //64 some mount succeeded |
Denis Vlasenko | 30a64cd | 2006-09-15 15:12:00 +0000 | [diff] [blame] | 2550 | return rc; |
| 2551 | } |