blob: d391a26e19991619ea7942d661b8b3ba8acf628c [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersencc8ed391999-10-05 16:24:54 +00002/*
Eric Andersen596e5461999-10-07 08:30:23 +00003 * Mini mount implementation for busybox
4 *
Eric Andersenc4996011999-10-20 22:08:37 +00005 * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
Eric Andersenc7bda1c2004-03-15 08:29:22 +00006 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Rob Landleydc0955b2006-03-14 18:16:25 +00007 * Copyright (C) 2005-2006 by Rob Landley <rob@landley.net>
Eric Andersen596e5461999-10-07 08:30:23 +00008 *
Rob Landley7b363fd2005-12-20 17:18:01 +00009 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Erik Andersenb7cc49d2000-01-13 06:38:14 +000010 */
Eric Andersencc8ed391999-10-05 16:24:54 +000011
Rob Landley22d26fc2006-06-15 15:49:36 +000012/* Design notes: There is no spec for mount. Remind me to write one.
Rob Landleydc0955b2006-03-14 18:16:25 +000013
14 mount_main() calls singlemount() which calls mount_it_now().
Eric Andersen9601a1c2006-03-20 18:07:50 +000015
Rob Landleydc0955b2006-03-14 18:16:25 +000016 mount_main() can loop through /etc/fstab for mount -a
17 singlemount() can loop through /etc/filesystems for fstype detection.
18 mount_it_now() does the actual mount.
19*/
20
Eric Andersencc8ed391999-10-05 16:24:54 +000021#include <mntent.h>
Denis Vlasenko2535f122007-09-15 13:28:30 +000022#include "libbb.h"
Eric Andersenbd22ed82000-07-08 18:55:24 +000023
Denis Vlasenko30a64cd2006-09-15 15:12:00 +000024/* Needed for nfs support only... */
25#include <syslog.h>
26#include <sys/utsname.h>
27#undef TRUE
28#undef FALSE
29#include <rpc/rpc.h>
30#include <rpc/pmap_prot.h>
31#include <rpc/pmap_clnt.h>
32
Denis Vlasenko2535f122007-09-15 13:28:30 +000033#ifndef MS_SILENT
34#define MS_SILENT (1 << 15)
35#endif
Denis Vlasenko30a64cd2006-09-15 15:12:00 +000036
Denis Vlasenko908d6b72006-12-18 23:07:42 +000037#if defined(__dietlibc__)
38/* 16.12.2006, Sampo Kellomaki (sampo@iki.fi)
39 * dietlibc-0.30 does not have implementation of getmntent_r() */
Denis Vlasenko908d6b72006-12-18 23:07:42 +000040struct mntent *getmntent_r(FILE* stream, struct mntent* result, char* buffer, int bufsize)
41{
Denis Vlasenko908d6b72006-12-18 23:07:42 +000042 struct mntent* ment = getmntent(stream);
43 memcpy(result, ment, sizeof(struct mntent));
44 return result;
45}
46#endif
47
Denis Vlasenko2535f122007-09-15 13:28:30 +000048#define getmntent_buf bb_common_bufsiz1
49
Denis Vlasenko908d6b72006-12-18 23:07:42 +000050
Rob Landleydc0955b2006-03-14 18:16:25 +000051// Not real flags, but we want to be able to check for this.
Denis Vlasenko13c5a682006-10-16 22:39:51 +000052enum {
53 MOUNT_USERS = (1<<28)*ENABLE_DESKTOP,
54 MOUNT_NOAUTO = (1<<29),
55 MOUNT_SWAP = (1<<30),
56};
57// TODO: more "user" flag compatibility.
58// "user" option (from mount manpage):
59// Only the user that mounted a filesystem can unmount it again.
60// If any user should be able to unmount, then use users instead of user
61// in the fstab line. The owner option is similar to the user option,
62// with the restriction that the user must be the owner of the special file.
63// This may be useful e.g. for /dev/fd if a login script makes
64// the console user owner of this device.
Rob Landley3ba7bd12006-08-09 19:51:13 +000065
Rob Landleydc0955b2006-03-14 18:16:25 +000066/* Standard mount options (from -o options or --options), with corresponding
67 * flags */
Eric Andersencc8ed391999-10-05 16:24:54 +000068
Rob Landley6a6798b2005-08-10 20:35:54 +000069struct {
Denis Vlasenko06c0a712007-01-29 22:51:44 +000070 const char *name;
Rob Landley6a6798b2005-08-10 20:35:54 +000071 long flags;
Rob Landleye3781b72006-08-08 01:39:49 +000072} static mount_options[] = {
73 // MS_FLAGS set a bit. ~MS_FLAGS disable that bit. 0 flags are NOPs.
Rob Landleydc0955b2006-03-14 18:16:25 +000074
Rob Landleye3781b72006-08-08 01:39:49 +000075 USE_FEATURE_MOUNT_LOOP(
76 {"loop", 0},
77 )
Rob Landleydc0955b2006-03-14 18:16:25 +000078
Rob Landleye3781b72006-08-08 01:39:49 +000079 USE_FEATURE_MOUNT_FSTAB(
80 {"defaults", 0},
Denis Vlasenko5e90e102006-11-27 19:50:16 +000081 /* {"quiet", 0}, - do not filter out, vfat wants to see it */
Denis Vlasenko13c5a682006-10-16 22:39:51 +000082 {"noauto", MOUNT_NOAUTO},
Denis Vlasenkobf295dd2007-04-05 21:57:47 +000083 {"sw", MOUNT_SWAP},
Denis Vlasenko13c5a682006-10-16 22:39:51 +000084 {"swap", MOUNT_SWAP},
85 USE_DESKTOP({"user", MOUNT_USERS},)
86 USE_DESKTOP({"users", MOUNT_USERS},)
Rob Landleye3781b72006-08-08 01:39:49 +000087 )
Rob Landleydc0955b2006-03-14 18:16:25 +000088
Rob Landleye3781b72006-08-08 01:39:49 +000089 USE_FEATURE_MOUNT_FLAGS(
90 // vfs flags
91 {"nosuid", MS_NOSUID},
92 {"suid", ~MS_NOSUID},
93 {"dev", ~MS_NODEV},
94 {"nodev", MS_NODEV},
95 {"exec", ~MS_NOEXEC},
96 {"noexec", MS_NOEXEC},
97 {"sync", MS_SYNCHRONOUS},
98 {"async", ~MS_SYNCHRONOUS},
99 {"atime", ~MS_NOATIME},
100 {"noatime", MS_NOATIME},
101 {"diratime", ~MS_NODIRATIME},
102 {"nodiratime", MS_NODIRATIME},
103 {"loud", ~MS_SILENT},
Eric Andersen9601a1c2006-03-20 18:07:50 +0000104
Rob Landleye3781b72006-08-08 01:39:49 +0000105 // action flags
Rob Landleydc0955b2006-03-14 18:16:25 +0000106
Rob Landleye3781b72006-08-08 01:39:49 +0000107 {"bind", MS_BIND},
108 {"move", MS_MOVE},
109 {"shared", MS_SHARED},
110 {"slave", MS_SLAVE},
111 {"private", MS_PRIVATE},
112 {"unbindable", MS_UNBINDABLE},
113 {"rshared", MS_SHARED|MS_RECURSIVE},
114 {"rslave", MS_SLAVE|MS_RECURSIVE},
115 {"rprivate", MS_SLAVE|MS_RECURSIVE},
116 {"runbindable", MS_UNBINDABLE|MS_RECURSIVE},
117 )
118
119 // Always understood.
120
121 {"ro", MS_RDONLY}, // vfs flag
122 {"rw", ~MS_RDONLY}, // vfs flag
123 {"remount", MS_REMOUNT}, // action flag
Eric Andersencc8ed391999-10-05 16:24:54 +0000124};
125
Denis Vlasenko25098f72006-09-14 15:46:33 +0000126
Rob Landleydc0955b2006-03-14 18:16:25 +0000127/* Append mount options to string */
Denis Vlasenko06c0a712007-01-29 22:51:44 +0000128static void append_mount_options(char **oldopts, const char *newopts)
Eric Andersencc8ed391999-10-05 16:24:54 +0000129{
Denis Vlasenko8d474b52006-09-17 15:00:58 +0000130 if (*oldopts && **oldopts) {
Denis Vlasenkoc889d2b2006-09-17 15:08:12 +0000131 /* do not insert options which are already there */
132 while (newopts[0]) {
133 char *p;
134 int len = strlen(newopts);
135 p = strchr(newopts, ',');
136 if (p) len = p - newopts;
137 p = *oldopts;
138 while (1) {
Denis Vlasenko13c5a682006-10-16 22:39:51 +0000139 if (!strncmp(p, newopts, len)
140 && (p[len]==',' || p[len]==0))
Denis Vlasenkoc889d2b2006-09-17 15:08:12 +0000141 goto skip;
142 p = strchr(p,',');
Denis Vlasenko51742f42007-04-12 00:32:05 +0000143 if (!p) break;
Denis Vlasenkoc889d2b2006-09-17 15:08:12 +0000144 p++;
145 }
146 p = xasprintf("%s,%.*s", *oldopts, len, newopts);
147 free(*oldopts);
148 *oldopts = p;
149skip:
150 newopts += len;
151 while (newopts[0] == ',') newopts++;
152 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000153 } else {
154 if (ENABLE_FEATURE_CLEAN_UP) free(*oldopts);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000155 *oldopts = xstrdup(newopts);
Rob Landleydc0955b2006-03-14 18:16:25 +0000156 }
157}
158
159/* Use the mount_options list to parse options into flags.
Denis Vlasenko00d7d6c2006-09-11 17:42:44 +0000160 * Also return list of unrecognized options if unrecognized!=NULL */
Rob Landleydc0955b2006-03-14 18:16:25 +0000161static int parse_mount_options(char *options, char **unrecognized)
162{
163 int flags = MS_SILENT;
164
Rob Landley6a6798b2005-08-10 20:35:54 +0000165 // Loop through options
Rob Landleydc0955b2006-03-14 18:16:25 +0000166 for (;;) {
Rob Landley6a6798b2005-08-10 20:35:54 +0000167 int i;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000168 char *comma = strchr(options, ',');
Eric Andersencc8ed391999-10-05 16:24:54 +0000169
Rob Landleydc0955b2006-03-14 18:16:25 +0000170 if (comma) *comma = 0;
Eric Andersen3ae0c781999-11-04 01:13:21 +0000171
Rob Landley6a6798b2005-08-10 20:35:54 +0000172 // Find this option in mount_options
Denis Vlasenko80b8b392007-06-25 10:55:35 +0000173 for (i = 0; i < ARRAY_SIZE(mount_options); i++) {
Rob Landleydc0955b2006-03-14 18:16:25 +0000174 if (!strcasecmp(mount_options[i].name, options)) {
Rob Landley6a6798b2005-08-10 20:35:54 +0000175 long fl = mount_options[i].flags;
Denis Vlasenko8d474b52006-09-17 15:00:58 +0000176 if (fl < 0) flags &= fl;
Rob Landleydc0955b2006-03-14 18:16:25 +0000177 else flags |= fl;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000178 break;
179 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000180 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000181 // If unrecognized not NULL, append unrecognized mount options */
Denis Vlasenko80b8b392007-06-25 10:55:35 +0000182 if (unrecognized && i == ARRAY_SIZE(mount_options)) {
Rob Landley6a6798b2005-08-10 20:35:54 +0000183 // Add it to strflags, to pass on to kernel
Rob Landleydc0955b2006-03-14 18:16:25 +0000184 i = *unrecognized ? strlen(*unrecognized) : 0;
185 *unrecognized = xrealloc(*unrecognized, i+strlen(options)+2);
Eric Andersen9601a1c2006-03-20 18:07:50 +0000186
Rob Landley6a6798b2005-08-10 20:35:54 +0000187 // Comma separated if it's not the first one
Rob Landleydc0955b2006-03-14 18:16:25 +0000188 if (i) (*unrecognized)[i++] = ',';
189 strcpy((*unrecognized)+i, options);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000190 }
Eric Andersen9601a1c2006-03-20 18:07:50 +0000191
Denis Vlasenko2535f122007-09-15 13:28:30 +0000192 if (!comma)
193 break;
194 // Advance to next option
195 *comma = ',';
196 options = ++comma;
Eric Andersencc8ed391999-10-05 16:24:54 +0000197 }
Eric Andersen9601a1c2006-03-20 18:07:50 +0000198
Rob Landleydc0955b2006-03-14 18:16:25 +0000199 return flags;
Eric Andersencc8ed391999-10-05 16:24:54 +0000200}
201
Rob Landleydc0955b2006-03-14 18:16:25 +0000202// Return a list of all block device backed filesystems
Matt Kraai12400822001-04-17 04:32:50 +0000203
Rob Landleydc0955b2006-03-14 18:16:25 +0000204static llist_t *get_block_backed_filesystems(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000205{
Denis Vlasenko87468852007-04-13 23:22:00 +0000206 static const char filesystems[2][sizeof("/proc/filesystems")] = {
Denis Vlasenko372686b2006-10-12 22:42:33 +0000207 "/etc/filesystems",
208 "/proc/filesystems",
Denis Vlasenko372686b2006-10-12 22:42:33 +0000209 };
210 char *fs, *buf;
Rob Landleydc0955b2006-03-14 18:16:25 +0000211 llist_t *list = 0;
212 int i;
213 FILE *f;
Eric Andersencc8ed391999-10-05 16:24:54 +0000214
Denis Vlasenko87468852007-04-13 23:22:00 +0000215 for (i = 0; i < 2; i++) {
Denis Vlasenko8d474b52006-09-17 15:00:58 +0000216 f = fopen(filesystems[i], "r");
217 if (!f) continue;
Eric Andersen9601a1c2006-03-20 18:07:50 +0000218
Denis Vlasenko2d5ca602006-10-12 22:43:20 +0000219 while ((buf = xmalloc_getline(f)) != 0) {
Denis Vlasenko372686b2006-10-12 22:42:33 +0000220 if (!strncmp(buf, "nodev", 5) && isspace(buf[5]))
221 continue;
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000222 fs = skip_whitespace(buf);
Denis Vlasenko372686b2006-10-12 22:42:33 +0000223 if (*fs=='#' || *fs=='*' || !*fs) continue;
Eric Andersen9601a1c2006-03-20 18:07:50 +0000224
Denis Vlasenko372686b2006-10-12 22:42:33 +0000225 llist_add_to_end(&list, xstrdup(fs));
226 free(buf);
Rob Landleydc0955b2006-03-14 18:16:25 +0000227 }
228 if (ENABLE_FEATURE_CLEAN_UP) fclose(f);
229 }
230
231 return list;
232}
233
234llist_t *fslist = 0;
235
Rob Landleydc0955b2006-03-14 18:16:25 +0000236#if ENABLE_FEATURE_CLEAN_UP
237static void delete_block_backed_filesystems(void)
238{
Rob Landleya6b5b602006-05-08 19:03:07 +0000239 llist_free(fslist, free);
Rob Landleydc0955b2006-03-14 18:16:25 +0000240}
Rob Landleyfe908fd2006-03-29 14:30:49 +0000241#else
242void delete_block_backed_filesystems(void);
Rob Landleydc0955b2006-03-14 18:16:25 +0000243#endif
244
245#if ENABLE_FEATURE_MTAB_SUPPORT
Denis Vlasenko00d7d6c2006-09-11 17:42:44 +0000246static int useMtab = 1;
Eric Andersen19b5b8f2006-03-20 18:07:13 +0000247static int fakeIt;
Rob Landleydc0955b2006-03-14 18:16:25 +0000248#else
Denis Vlasenko116080a2006-09-21 11:13:08 +0000249#define useMtab 0
250#define fakeIt 0
Rob Landleydc0955b2006-03-14 18:16:25 +0000251#endif
252
253// Perform actual mount of specific filesystem at specific location.
Denis Vlasenko8d474b52006-09-17 15:00:58 +0000254// NB: mp->xxx fields may be trashed on exit
Denis Vlasenko25098f72006-09-14 15:46:33 +0000255static int mount_it_now(struct mntent *mp, int vfsflags, char *filteropts)
Rob Landleydc0955b2006-03-14 18:16:25 +0000256{
Denis Vlasenkob1726782006-09-29 14:43:20 +0000257 int rc = 0;
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000258
Denis Vlasenkob1726782006-09-29 14:43:20 +0000259 if (fakeIt) goto mtab;
Eric Andersen19b5b8f2006-03-20 18:07:13 +0000260
Rob Landleydc0955b2006-03-14 18:16:25 +0000261 // Mount, with fallback to read-only if necessary.
262
Denis Vlasenko8d474b52006-09-17 15:00:58 +0000263 for (;;) {
Rob Landleydc0955b2006-03-14 18:16:25 +0000264 rc = mount(mp->mnt_fsname, mp->mnt_dir, mp->mnt_type,
265 vfsflags, filteropts);
Denis Vlasenko8d474b52006-09-17 15:00:58 +0000266 if (!rc || (vfsflags&MS_RDONLY) || (errno!=EACCES && errno!=EROFS))
Rob Landleydc0955b2006-03-14 18:16:25 +0000267 break;
Denis Vlasenko2535f122007-09-15 13:28:30 +0000268 if (!(vfsflags & MS_SILENT))
269 bb_error_msg("%s is write-protected, mounting read-only",
270 mp->mnt_fsname);
Rob Landleydc0955b2006-03-14 18:16:25 +0000271 vfsflags |= MS_RDONLY;
272 }
273
Rob Landleydc0955b2006-03-14 18:16:25 +0000274 // Abort entirely if permission denied.
275
276 if (rc && errno == EPERM)
277 bb_error_msg_and_die(bb_msg_perm_denied_are_you_root);
278
279 /* If the mount was successful, and we're maintaining an old-style
280 * mtab file by hand, add the new entry to it now. */
Denis Vlasenko6a353c82006-11-19 17:34:57 +0000281 mtab:
Denis Vlasenkofc56dd22006-09-17 15:01:53 +0000282 if (ENABLE_FEATURE_MTAB_SUPPORT && useMtab && !rc && !(vfsflags & MS_REMOUNT)) {
Denis Vlasenkoa52145a2006-09-17 15:09:48 +0000283 char *fsname;
Rob Landleydc0955b2006-03-14 18:16:25 +0000284 FILE *mountTable = setmntent(bb_path_mtab_file, "a+");
285 int i;
286
Denis Vlasenko6a353c82006-11-19 17:34:57 +0000287 if (!mountTable) {
Denis Vlasenko00d7d6c2006-09-11 17:42:44 +0000288 bb_error_msg("no %s",bb_path_mtab_file);
Denis Vlasenko6a353c82006-11-19 17:34:57 +0000289 goto ret;
290 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000291
292 // Add vfs string flags
293
Denis Vlasenkofc56dd22006-09-17 15:01:53 +0000294 for (i=0; mount_options[i].flags != MS_REMOUNT; i++)
Denis Vlasenko25098f72006-09-14 15:46:33 +0000295 if (mount_options[i].flags > 0 && (mount_options[i].flags & vfsflags))
Rob Landleye3781b72006-08-08 01:39:49 +0000296 append_mount_options(&(mp->mnt_opts), mount_options[i].name);
Rob Landleydc0955b2006-03-14 18:16:25 +0000297
298 // Remove trailing / (if any) from directory we mounted on
299
Denis Vlasenko727ef942006-09-14 13:19:19 +0000300 i = strlen(mp->mnt_dir) - 1;
Denis Vlasenkofc56dd22006-09-17 15:01:53 +0000301 if (i > 0 && mp->mnt_dir[i] == '/') mp->mnt_dir[i] = 0;
Denis Vlasenko727ef942006-09-14 13:19:19 +0000302
Denis Vlasenkofc56dd22006-09-17 15:01:53 +0000303 // Convert to canonical pathnames as needed
Denis Vlasenko727ef942006-09-14 13:19:19 +0000304
Denis Vlasenkoa52145a2006-09-17 15:09:48 +0000305 mp->mnt_dir = bb_simplify_path(mp->mnt_dir);
Denis Vlasenkofc56dd22006-09-17 15:01:53 +0000306 fsname = 0;
Denis Vlasenko727ef942006-09-14 13:19:19 +0000307 if (!mp->mnt_type || !*mp->mnt_type) { /* bind mount */
Denis Vlasenkofc56dd22006-09-17 15:01:53 +0000308 mp->mnt_fsname = fsname = bb_simplify_path(mp->mnt_fsname);
Denis Vlasenko06c0a712007-01-29 22:51:44 +0000309 mp->mnt_type = (char*)"bind";
Denis Vlasenko727ef942006-09-14 13:19:19 +0000310 }
Denis Vlasenko25098f72006-09-14 15:46:33 +0000311 mp->mnt_freq = mp->mnt_passno = 0;
Rob Landleydc0955b2006-03-14 18:16:25 +0000312
313 // Write and close.
314
Denis Vlasenko727ef942006-09-14 13:19:19 +0000315 addmntent(mountTable, mp);
Rob Landleydc0955b2006-03-14 18:16:25 +0000316 endmntent(mountTable);
Denis Vlasenkofc56dd22006-09-17 15:01:53 +0000317 if (ENABLE_FEATURE_CLEAN_UP) {
Denis Vlasenkoa52145a2006-09-17 15:09:48 +0000318 free(mp->mnt_dir);
Denis Vlasenkofc56dd22006-09-17 15:01:53 +0000319 free(fsname);
320 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000321 }
Denis Vlasenko6a353c82006-11-19 17:34:57 +0000322 ret:
Rob Landleydc0955b2006-03-14 18:16:25 +0000323 return rc;
324}
325
Denis Vlasenko25098f72006-09-14 15:46:33 +0000326#if ENABLE_FEATURE_MOUNT_NFS
327
328/*
329 * Linux NFS mount
330 * Copyright (C) 1993 Rick Sladkey <jrs@world.std.com>
331 *
332 * Licensed under GPLv2, see file LICENSE in this tarball for details.
333 *
334 * Wed Feb 8 12:51:48 1995, biro@yggdrasil.com (Ross Biro): allow all port
335 * numbers to be specified on the command line.
336 *
337 * Fri, 8 Mar 1996 18:01:39, Swen Thuemmler <swen@uni-paderborn.de>:
338 * Omit the call to connect() for Linux version 1.3.11 or later.
339 *
340 * Wed Oct 1 23:55:28 1997: Dick Streefland <dick_streefland@tasking.com>
341 * Implemented the "bg", "fg" and "retry" mount options for NFS.
342 *
343 * 1999-02-22 Arkadiusz Mi¶kiewicz <misiek@misiek.eu.org>
344 * - added Native Language Support
345 *
346 * Modified by Olaf Kirch and Trond Myklebust for new NFS code,
347 * plus NFSv3 stuff.
348 */
349
Denis Vlasenko25098f72006-09-14 15:46:33 +0000350/* This is just a warning of a common mistake. Possibly this should be a
351 * uclibc faq entry rather than in busybox... */
Denis Vlasenko30a64cd2006-09-15 15:12:00 +0000352#if defined(__UCLIBC__) && ! defined(__UCLIBC_HAS_RPC__)
Denis Vlasenko25098f72006-09-14 15:46:33 +0000353#error "You need to build uClibc with UCLIBC_HAS_RPC for NFS support."
354#endif
355
356#define MOUNTPORT 635
357#define MNTPATHLEN 1024
358#define MNTNAMLEN 255
359#define FHSIZE 32
360#define FHSIZE3 64
361
362typedef char fhandle[FHSIZE];
363
364typedef struct {
365 unsigned int fhandle3_len;
366 char *fhandle3_val;
367} fhandle3;
368
369enum mountstat3 {
370 MNT_OK = 0,
371 MNT3ERR_PERM = 1,
372 MNT3ERR_NOENT = 2,
373 MNT3ERR_IO = 5,
374 MNT3ERR_ACCES = 13,
375 MNT3ERR_NOTDIR = 20,
376 MNT3ERR_INVAL = 22,
377 MNT3ERR_NAMETOOLONG = 63,
378 MNT3ERR_NOTSUPP = 10004,
379 MNT3ERR_SERVERFAULT = 10006,
380};
381typedef enum mountstat3 mountstat3;
382
383struct fhstatus {
384 unsigned int fhs_status;
385 union {
386 fhandle fhs_fhandle;
387 } fhstatus_u;
388};
389typedef struct fhstatus fhstatus;
390
391struct mountres3_ok {
392 fhandle3 fhandle;
393 struct {
394 unsigned int auth_flavours_len;
395 char *auth_flavours_val;
396 } auth_flavours;
397};
398typedef struct mountres3_ok mountres3_ok;
399
400struct mountres3 {
401 mountstat3 fhs_status;
402 union {
403 mountres3_ok mountinfo;
404 } mountres3_u;
405};
406typedef struct mountres3 mountres3;
407
408typedef char *dirpath;
409
410typedef char *name;
411
412typedef struct mountbody *mountlist;
413
414struct mountbody {
415 name ml_hostname;
416 dirpath ml_directory;
417 mountlist ml_next;
418};
419typedef struct mountbody mountbody;
420
421typedef struct groupnode *groups;
422
423struct groupnode {
424 name gr_name;
425 groups gr_next;
426};
427typedef struct groupnode groupnode;
428
429typedef struct exportnode *exports;
430
431struct exportnode {
432 dirpath ex_dir;
433 groups ex_groups;
434 exports ex_next;
435};
436typedef struct exportnode exportnode;
437
438struct ppathcnf {
439 int pc_link_max;
440 short pc_max_canon;
441 short pc_max_input;
442 short pc_name_max;
443 short pc_path_max;
444 short pc_pipe_buf;
Denis Vlasenko28703012006-12-19 20:32:02 +0000445 uint8_t pc_vdisable;
Denis Vlasenko25098f72006-09-14 15:46:33 +0000446 char pc_xxx;
447 short pc_mask[2];
448};
449typedef struct ppathcnf ppathcnf;
450
451#define MOUNTPROG 100005
452#define MOUNTVERS 1
453
454#define MOUNTPROC_NULL 0
455#define MOUNTPROC_MNT 1
456#define MOUNTPROC_DUMP 2
457#define MOUNTPROC_UMNT 3
458#define MOUNTPROC_UMNTALL 4
459#define MOUNTPROC_EXPORT 5
460#define MOUNTPROC_EXPORTALL 6
461
462#define MOUNTVERS_POSIX 2
463
464#define MOUNTPROC_PATHCONF 7
465
466#define MOUNT_V3 3
467
468#define MOUNTPROC3_NULL 0
469#define MOUNTPROC3_MNT 1
470#define MOUNTPROC3_DUMP 2
471#define MOUNTPROC3_UMNT 3
472#define MOUNTPROC3_UMNTALL 4
473#define MOUNTPROC3_EXPORT 5
474
475enum {
476#ifndef NFS_FHSIZE
477 NFS_FHSIZE = 32,
478#endif
479#ifndef NFS_PORT
480 NFS_PORT = 2049
481#endif
482};
483
Denis Vlasenko25098f72006-09-14 15:46:33 +0000484/*
485 * We want to be able to compile mount on old kernels in such a way
486 * that the binary will work well on more recent kernels.
487 * Thus, if necessary we teach nfsmount.c the structure of new fields
488 * that will come later.
489 *
490 * Moreover, the new kernel includes conflict with glibc includes
491 * so it is easiest to ignore the kernel altogether (at compile time).
492 */
493
494struct nfs2_fh {
495 char data[32];
496};
497struct nfs3_fh {
498 unsigned short size;
499 unsigned char data[64];
500};
501
502struct nfs_mount_data {
503 int version; /* 1 */
504 int fd; /* 1 */
505 struct nfs2_fh old_root; /* 1 */
506 int flags; /* 1 */
507 int rsize; /* 1 */
508 int wsize; /* 1 */
509 int timeo; /* 1 */
510 int retrans; /* 1 */
511 int acregmin; /* 1 */
512 int acregmax; /* 1 */
513 int acdirmin; /* 1 */
514 int acdirmax; /* 1 */
515 struct sockaddr_in addr; /* 1 */
516 char hostname[256]; /* 1 */
517 int namlen; /* 2 */
518 unsigned int bsize; /* 3 */
519 struct nfs3_fh root; /* 4 */
520};
521
522/* bits in the flags field */
523enum {
524 NFS_MOUNT_SOFT = 0x0001, /* 1 */
525 NFS_MOUNT_INTR = 0x0002, /* 1 */
526 NFS_MOUNT_SECURE = 0x0004, /* 1 */
527 NFS_MOUNT_POSIX = 0x0008, /* 1 */
528 NFS_MOUNT_NOCTO = 0x0010, /* 1 */
529 NFS_MOUNT_NOAC = 0x0020, /* 1 */
530 NFS_MOUNT_TCP = 0x0040, /* 2 */
531 NFS_MOUNT_VER3 = 0x0080, /* 3 */
532 NFS_MOUNT_KERBEROS = 0x0100, /* 3 */
533 NFS_MOUNT_NONLM = 0x0200 /* 3 */
534};
535
536
537/*
538 * We need to translate between nfs status return values and
539 * the local errno values which may not be the same.
540 *
541 * Andreas Schwab <schwab@LS5.informatik.uni-dortmund.de>: change errno:
542 * "after #include <errno.h> the symbol errno is reserved for any use,
543 * it cannot even be used as a struct tag or field name".
544 */
545
546#ifndef EDQUOT
547#define EDQUOT ENOSPC
548#endif
549
550// Convert each NFSERR_BLAH into EBLAH
551
552static const struct {
553 int stat;
554 int errnum;
555} nfs_errtbl[] = {
556 {0,0}, {1,EPERM}, {2,ENOENT}, {5,EIO}, {6,ENXIO}, {13,EACCES}, {17,EEXIST},
557 {19,ENODEV}, {20,ENOTDIR}, {21,EISDIR}, {22,EINVAL}, {27,EFBIG},
558 {28,ENOSPC}, {30,EROFS}, {63,ENAMETOOLONG}, {66,ENOTEMPTY}, {69,EDQUOT},
559 {70,ESTALE}, {71,EREMOTE}, {-1,EIO}
560};
561
562static char *nfs_strerror(int status)
563{
564 int i;
Denis Vlasenkoc0975192006-09-17 15:06:34 +0000565 static char buf[sizeof("unknown nfs status return value: ") + sizeof(int)*3];
Denis Vlasenko25098f72006-09-14 15:46:33 +0000566
567 for (i = 0; nfs_errtbl[i].stat != -1; i++) {
568 if (nfs_errtbl[i].stat == status)
569 return strerror(nfs_errtbl[i].errnum);
570 }
571 sprintf(buf, "unknown nfs status return value: %d", status);
572 return buf;
573}
574
575static bool_t xdr_fhandle(XDR *xdrs, fhandle objp)
576{
577 if (!xdr_opaque(xdrs, objp, FHSIZE))
578 return FALSE;
579 return TRUE;
580}
581
582static bool_t xdr_fhstatus(XDR *xdrs, fhstatus *objp)
583{
584 if (!xdr_u_int(xdrs, &objp->fhs_status))
585 return FALSE;
586 switch (objp->fhs_status) {
587 case 0:
588 if (!xdr_fhandle(xdrs, objp->fhstatus_u.fhs_fhandle))
589 return FALSE;
590 break;
591 default:
592 break;
593 }
594 return TRUE;
595}
596
597static bool_t xdr_dirpath(XDR *xdrs, dirpath *objp)
598{
599 if (!xdr_string(xdrs, objp, MNTPATHLEN))
600 return FALSE;
601 return TRUE;
602}
603
604static bool_t xdr_fhandle3(XDR *xdrs, fhandle3 *objp)
605{
606 if (!xdr_bytes(xdrs, (char **)&objp->fhandle3_val, (unsigned int *) &objp->fhandle3_len, FHSIZE3))
607 return FALSE;
608 return TRUE;
609}
610
611static bool_t xdr_mountres3_ok(XDR *xdrs, mountres3_ok *objp)
612{
613 if (!xdr_fhandle3(xdrs, &objp->fhandle))
614 return FALSE;
615 if (!xdr_array(xdrs, &(objp->auth_flavours.auth_flavours_val), &(objp->auth_flavours.auth_flavours_len), ~0,
616 sizeof (int), (xdrproc_t) xdr_int))
617 return FALSE;
618 return TRUE;
619}
620
621static bool_t xdr_mountstat3(XDR *xdrs, mountstat3 *objp)
622{
623 if (!xdr_enum(xdrs, (enum_t *) objp))
624 return FALSE;
625 return TRUE;
626}
627
628static bool_t xdr_mountres3(XDR *xdrs, mountres3 *objp)
629{
630 if (!xdr_mountstat3(xdrs, &objp->fhs_status))
631 return FALSE;
632 switch (objp->fhs_status) {
633 case MNT_OK:
634 if (!xdr_mountres3_ok(xdrs, &objp->mountres3_u.mountinfo))
635 return FALSE;
636 break;
637 default:
638 break;
639 }
640 return TRUE;
641}
642
643#define MAX_NFSPROT ((nfs_mount_version >= 4) ? 3 : 2)
644
645/*
646 * nfs_mount_version according to the sources seen at compile time.
647 */
648static int nfs_mount_version;
649static int kernel_version;
650
651/*
652 * Unfortunately, the kernel prints annoying console messages
653 * in case of an unexpected nfs mount version (instead of
654 * just returning some error). Therefore we'll have to try
655 * and figure out what version the kernel expects.
656 *
657 * Variables:
658 * KERNEL_NFS_MOUNT_VERSION: kernel sources at compile time
659 * NFS_MOUNT_VERSION: these nfsmount sources at compile time
660 * nfs_mount_version: version this source and running kernel can handle
661 */
662static void
663find_kernel_nfs_mount_version(void)
664{
665 if (kernel_version)
666 return;
667
668 nfs_mount_version = 4; /* default */
669
670 kernel_version = get_linux_version_code();
671 if (kernel_version) {
672 if (kernel_version < KERNEL_VERSION(2,1,32))
673 nfs_mount_version = 1;
674 else if (kernel_version < KERNEL_VERSION(2,2,18) ||
675 (kernel_version >= KERNEL_VERSION(2,3,0) &&
676 kernel_version < KERNEL_VERSION(2,3,99)))
677 nfs_mount_version = 3;
678 /* else v4 since 2.3.99pre4 */
679 }
680}
681
682static struct pmap *
683get_mountport(struct sockaddr_in *server_addr,
684 long unsigned prog,
685 long unsigned version,
686 long unsigned proto,
687 long unsigned port)
688{
689 struct pmaplist *pmap;
690 static struct pmap p = {0, 0, 0, 0};
691
692 server_addr->sin_port = PMAPPORT;
Denis Vlasenko5870ad92007-02-04 02:39:55 +0000693/* glibc 2.4 (still) has pmap_getmaps(struct sockaddr_in *).
694 * I understand it like "IPv6 for this is not 100% ready" */
Denis Vlasenko25098f72006-09-14 15:46:33 +0000695 pmap = pmap_getmaps(server_addr);
696
697 if (version > MAX_NFSPROT)
698 version = MAX_NFSPROT;
699 if (!prog)
700 prog = MOUNTPROG;
701 p.pm_prog = prog;
702 p.pm_vers = version;
703 p.pm_prot = proto;
704 p.pm_port = port;
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000705
Denis Vlasenko25098f72006-09-14 15:46:33 +0000706 while (pmap) {
707 if (pmap->pml_map.pm_prog != prog)
708 goto next;
709 if (!version && p.pm_vers > pmap->pml_map.pm_vers)
710 goto next;
711 if (version > 2 && pmap->pml_map.pm_vers != version)
712 goto next;
713 if (version && version <= 2 && pmap->pml_map.pm_vers > 2)
714 goto next;
715 if (pmap->pml_map.pm_vers > MAX_NFSPROT ||
716 (proto && p.pm_prot && pmap->pml_map.pm_prot != proto) ||
717 (port && pmap->pml_map.pm_port != port))
718 goto next;
719 memcpy(&p, &pmap->pml_map, sizeof(p));
720next:
721 pmap = pmap->pml_next;
722 }
723 if (!p.pm_vers)
724 p.pm_vers = MOUNTVERS;
725 if (!p.pm_port)
726 p.pm_port = MOUNTPORT;
727 if (!p.pm_prot)
728 p.pm_prot = IPPROTO_TCP;
729 return &p;
730}
731
Denis Vlasenkof0000652007-09-04 18:30:26 +0000732#if BB_MMU
Denis Vlasenko25098f72006-09-14 15:46:33 +0000733static int daemonize(void)
734{
735 int fd;
736 int pid = fork();
737 if (pid < 0) /* error */
738 return -errno;
739 if (pid > 0) /* parent */
740 return 0;
741 /* child */
742 fd = xopen(bb_dev_null, O_RDWR);
743 dup2(fd, 0);
744 dup2(fd, 1);
745 dup2(fd, 2);
Denis Vlasenko9af7c9d2007-01-19 21:19:35 +0000746 while (fd > 2) close(fd--);
Denis Vlasenko25098f72006-09-14 15:46:33 +0000747 setsid();
Denis Vlasenko8f8f2682006-10-03 21:00:43 +0000748 openlog(applet_name, LOG_PID, LOG_DAEMON);
Denis Vlasenko25098f72006-09-14 15:46:33 +0000749 logmode = LOGMODE_SYSLOG;
750 return 1;
751}
Denis Vlasenkof0000652007-09-04 18:30:26 +0000752#else
753static inline int daemonize(void) { return -ENOSYS; }
754#endif
Denis Vlasenko25098f72006-09-14 15:46:33 +0000755
756// TODO
757static inline int we_saw_this_host_before(const char *hostname)
758{
759 return 0;
760}
761
762/* RPC strerror analogs are terminally idiotic:
763 * *mandatory* prefix and \n at end.
764 * This hopefully helps. Usage:
765 * error_msg_rpc(clnt_*error*(" ")) */
766static void error_msg_rpc(const char *msg)
767{
Denis Vlasenko23514fe2006-09-19 14:07:52 +0000768 int len;
Denis Vlasenko25098f72006-09-14 15:46:33 +0000769 while (msg[0] == ' ' || msg[0] == ':') msg++;
770 len = strlen(msg);
771 while (len && msg[len-1] == '\n') len--;
772 bb_error_msg("%.*s", len, msg);
773}
774
Denis Vlasenko3bc59aa2006-09-17 15:04:01 +0000775// NB: mp->xxx fields may be trashed on exit
Denis Vlasenko25098f72006-09-14 15:46:33 +0000776static int nfsmount(struct mntent *mp, int vfsflags, char *filteropts)
777{
778 CLIENT *mclient;
779 char *hostname;
780 char *pathname;
781 char *mounthost;
782 struct nfs_mount_data data;
783 char *opt;
784 struct hostent *hp;
785 struct sockaddr_in server_addr;
786 struct sockaddr_in mount_server_addr;
787 int msock, fsock;
788 union {
789 struct fhstatus nfsv2;
790 struct mountres3 nfsv3;
791 } status;
792 int daemonized;
793 char *s;
794 int port;
795 int mountport;
796 int proto;
Denis Vlasenkof0000652007-09-04 18:30:26 +0000797#if BB_MMU
798 int bg = 0;
799#else
800 enum { bg = 0 };
801#endif
Denis Vlasenko25098f72006-09-14 15:46:33 +0000802 int soft;
803 int intr;
804 int posix;
805 int nocto;
806 int noac;
807 int nolock;
808 int retry;
809 int tcp;
810 int mountprog;
811 int mountvers;
812 int nfsprog;
813 int nfsvers;
814 int retval;
815
816 find_kernel_nfs_mount_version();
817
818 daemonized = 0;
819 mounthost = NULL;
820 retval = ETIMEDOUT;
821 msock = fsock = -1;
822 mclient = NULL;
823
824 /* NB: hostname, mounthost, filteropts must be free()d prior to return */
825
826 filteropts = xstrdup(filteropts); /* going to trash it later... */
827
828 hostname = xstrdup(mp->mnt_fsname);
829 /* mount_main() guarantees that ':' is there */
830 s = strchr(hostname, ':');
831 pathname = s + 1;
832 *s = '\0';
833 /* Ignore all but first hostname in replicated mounts
834 until they can be fully supported. (mack@sgi.com) */
835 s = strchr(hostname, ',');
836 if (s) {
837 *s = '\0';
838 bb_error_msg("warning: multiple hostnames not supported");
839 }
840
841 server_addr.sin_family = AF_INET;
842 if (!inet_aton(hostname, &server_addr.sin_addr)) {
843 hp = gethostbyname(hostname);
844 if (hp == NULL) {
845 bb_herror_msg("%s", hostname);
846 goto fail;
847 }
848 if (hp->h_length > sizeof(struct in_addr)) {
849 bb_error_msg("got bad hp->h_length");
850 hp->h_length = sizeof(struct in_addr);
851 }
852 memcpy(&server_addr.sin_addr,
853 hp->h_addr, hp->h_length);
854 }
855
856 memcpy(&mount_server_addr, &server_addr, sizeof(mount_server_addr));
857
858 /* add IP address to mtab options for use when unmounting */
859
860 if (!mp->mnt_opts) { /* TODO: actually mp->mnt_opts is never NULL */
861 mp->mnt_opts = xasprintf("addr=%s", inet_ntoa(server_addr.sin_addr));
862 } else {
863 char *tmp = xasprintf("%s%saddr=%s", mp->mnt_opts,
864 mp->mnt_opts[0] ? "," : "",
865 inet_ntoa(server_addr.sin_addr));
866 free(mp->mnt_opts);
867 mp->mnt_opts = tmp;
868 }
869
870 /* Set default options.
871 * rsize/wsize (and bsize, for ver >= 3) are left 0 in order to
872 * let the kernel decide.
873 * timeo is filled in after we know whether it'll be TCP or UDP. */
874 memset(&data, 0, sizeof(data));
875 data.retrans = 3;
876 data.acregmin = 3;
877 data.acregmax = 60;
878 data.acdirmin = 30;
879 data.acdirmax = 60;
880 data.namlen = NAME_MAX;
881
Denis Vlasenko25098f72006-09-14 15:46:33 +0000882 soft = 0;
883 intr = 0;
884 posix = 0;
885 nocto = 0;
886 nolock = 0;
887 noac = 0;
888 retry = 10000; /* 10000 minutes ~ 1 week */
889 tcp = 0;
890
891 mountprog = MOUNTPROG;
892 mountvers = 0;
893 port = 0;
894 mountport = 0;
895 nfsprog = 100003;
896 nfsvers = 0;
897
898 /* parse options */
Denis Vlasenko68de7202007-05-09 20:38:04 +0000899 if (filteropts) for (opt = strtok(filteropts, ","); opt; opt = strtok(NULL, ",")) {
Denis Vlasenko25098f72006-09-14 15:46:33 +0000900 char *opteq = strchr(opt, '=');
901 if (opteq) {
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000902 static const char options[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000903 /* 0 */ "rsize\0"
904 /* 1 */ "wsize\0"
905 /* 2 */ "timeo\0"
906 /* 3 */ "retrans\0"
907 /* 4 */ "acregmin\0"
908 /* 5 */ "acregmax\0"
909 /* 6 */ "acdirmin\0"
910 /* 7 */ "acdirmax\0"
911 /* 8 */ "actimeo\0"
912 /* 9 */ "retry\0"
913 /* 10 */ "port\0"
914 /* 11 */ "mountport\0"
915 /* 12 */ "mounthost\0"
916 /* 13 */ "mountprog\0"
917 /* 14 */ "mountvers\0"
918 /* 15 */ "nfsprog\0"
919 /* 16 */ "nfsvers\0"
920 /* 17 */ "vers\0"
921 /* 18 */ "proto\0"
922 /* 19 */ "namlen\0"
923 /* 20 */ "addr\0";
Denis Vlasenko13858992006-10-08 12:49:22 +0000924 int val = xatoi_u(opteq + 1);
Denis Vlasenko25098f72006-09-14 15:46:33 +0000925 *opteq = '\0';
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000926 switch (index_in_strings(options, opt)) {
Denis Vlasenko68f21872006-10-26 01:47:34 +0000927 case 0: // "rsize"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000928 data.rsize = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000929 break;
930 case 1: // "wsize"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000931 data.wsize = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000932 break;
933 case 2: // "timeo"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000934 data.timeo = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000935 break;
936 case 3: // "retrans"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000937 data.retrans = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000938 break;
939 case 4: // "acregmin"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000940 data.acregmin = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000941 break;
942 case 5: // "acregmax"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000943 data.acregmax = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000944 break;
945 case 6: // "acdirmin"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000946 data.acdirmin = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000947 break;
948 case 7: // "acdirmax"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000949 data.acdirmax = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000950 break;
951 case 8: // "actimeo"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000952 data.acregmin = val;
953 data.acregmax = val;
954 data.acdirmin = val;
955 data.acdirmax = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000956 break;
957 case 9: // "retry"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000958 retry = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000959 break;
960 case 10: // "port"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000961 port = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000962 break;
963 case 11: // "mountport"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000964 mountport = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000965 break;
966 case 12: // "mounthost"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000967 mounthost = xstrndup(opteq+1,
Denis Vlasenko5af906e2006-11-05 18:05:09 +0000968 strcspn(opteq+1," \t\n\r,"));
Denis Vlasenko68f21872006-10-26 01:47:34 +0000969 break;
970 case 13: // "mountprog"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000971 mountprog = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000972 break;
973 case 14: // "mountvers"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000974 mountvers = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000975 break;
976 case 15: // "nfsprog"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000977 nfsprog = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000978 break;
979 case 16: // "nfsvers"
980 case 17: // "vers"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000981 nfsvers = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000982 break;
983 case 18: // "proto"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000984 if (!strncmp(opteq+1, "tcp", 3))
985 tcp = 1;
986 else if (!strncmp(opteq+1, "udp", 3))
987 tcp = 0;
988 else
989 bb_error_msg("warning: unrecognized proto= option");
Denis Vlasenko68f21872006-10-26 01:47:34 +0000990 break;
991 case 19: // "namlen"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000992 if (nfs_mount_version >= 2)
993 data.namlen = val;
994 else
995 bb_error_msg("warning: option namlen is not supported\n");
Denis Vlasenko68f21872006-10-26 01:47:34 +0000996 break;
997 case 20: // "addr" - ignore
998 break;
999 default:
Denis Vlasenko25098f72006-09-14 15:46:33 +00001000 bb_error_msg("unknown nfs mount parameter: %s=%d", opt, val);
1001 goto fail;
1002 }
1003 }
1004 else {
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001005 static const char options[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +00001006 "bg\0"
1007 "fg\0"
1008 "soft\0"
1009 "hard\0"
1010 "intr\0"
1011 "posix\0"
1012 "cto\0"
1013 "ac\0"
1014 "tcp\0"
1015 "udp\0"
1016 "lock\0";
Denis Vlasenko25098f72006-09-14 15:46:33 +00001017 int val = 1;
1018 if (!strncmp(opt, "no", 2)) {
1019 val = 0;
1020 opt += 2;
1021 }
Denis Vlasenko990d0f62007-07-24 15:54:42 +00001022 switch (index_in_strings(options, opt)) {
Denis Vlasenko68f21872006-10-26 01:47:34 +00001023 case 0: // "bg"
Denis Vlasenkof0000652007-09-04 18:30:26 +00001024#if BB_MMU
Denis Vlasenko25098f72006-09-14 15:46:33 +00001025 bg = val;
Denis Vlasenkof0000652007-09-04 18:30:26 +00001026#endif
Denis Vlasenko68f21872006-10-26 01:47:34 +00001027 break;
1028 case 1: // "fg"
Denis Vlasenkof0000652007-09-04 18:30:26 +00001029#if BB_MMU
Denis Vlasenko25098f72006-09-14 15:46:33 +00001030 bg = !val;
Denis Vlasenkof0000652007-09-04 18:30:26 +00001031#endif
Denis Vlasenko68f21872006-10-26 01:47:34 +00001032 break;
1033 case 2: // "soft"
Denis Vlasenko25098f72006-09-14 15:46:33 +00001034 soft = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +00001035 break;
1036 case 3: // "hard"
Denis Vlasenko25098f72006-09-14 15:46:33 +00001037 soft = !val;
Denis Vlasenko68f21872006-10-26 01:47:34 +00001038 break;
1039 case 4: // "intr"
Denis Vlasenko25098f72006-09-14 15:46:33 +00001040 intr = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +00001041 break;
1042 case 5: // "posix"
Denis Vlasenko25098f72006-09-14 15:46:33 +00001043 posix = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +00001044 break;
1045 case 6: // "cto"
Denis Vlasenko25098f72006-09-14 15:46:33 +00001046 nocto = !val;
Denis Vlasenko68f21872006-10-26 01:47:34 +00001047 break;
1048 case 7: // "ac"
Denis Vlasenko25098f72006-09-14 15:46:33 +00001049 noac = !val;
Denis Vlasenko68f21872006-10-26 01:47:34 +00001050 break;
1051 case 8: // "tcp"
Denis Vlasenko25098f72006-09-14 15:46:33 +00001052 tcp = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +00001053 break;
1054 case 9: // "udp"
Denis Vlasenko25098f72006-09-14 15:46:33 +00001055 tcp = !val;
Denis Vlasenko68f21872006-10-26 01:47:34 +00001056 break;
1057 case 10: // "lock"
Denis Vlasenko25098f72006-09-14 15:46:33 +00001058 if (nfs_mount_version >= 3)
1059 nolock = !val;
1060 else
1061 bb_error_msg("warning: option nolock is not supported");
Denis Vlasenko68f21872006-10-26 01:47:34 +00001062 break;
1063 default:
Denis Vlasenko25098f72006-09-14 15:46:33 +00001064 bb_error_msg("unknown nfs mount option: %s%s", val ? "" : "no", opt);
1065 goto fail;
1066 }
1067 }
1068 }
1069 proto = (tcp) ? IPPROTO_TCP : IPPROTO_UDP;
1070
1071 data.flags = (soft ? NFS_MOUNT_SOFT : 0)
1072 | (intr ? NFS_MOUNT_INTR : 0)
1073 | (posix ? NFS_MOUNT_POSIX : 0)
1074 | (nocto ? NFS_MOUNT_NOCTO : 0)
1075 | (noac ? NFS_MOUNT_NOAC : 0);
1076 if (nfs_mount_version >= 2)
1077 data.flags |= (tcp ? NFS_MOUNT_TCP : 0);
1078 if (nfs_mount_version >= 3)
1079 data.flags |= (nolock ? NFS_MOUNT_NONLM : 0);
1080 if (nfsvers > MAX_NFSPROT || mountvers > MAX_NFSPROT) {
1081 bb_error_msg("NFSv%d not supported", nfsvers);
1082 goto fail;
1083 }
1084 if (nfsvers && !mountvers)
1085 mountvers = (nfsvers < 3) ? 1 : nfsvers;
1086 if (nfsvers && nfsvers < mountvers) {
1087 mountvers = nfsvers;
1088 }
1089
1090 /* Adjust options if none specified */
1091 if (!data.timeo)
1092 data.timeo = tcp ? 70 : 7;
1093
Denis Vlasenko25098f72006-09-14 15:46:33 +00001094 data.version = nfs_mount_version;
1095
1096 if (vfsflags & MS_REMOUNT)
1097 goto do_mount;
1098
1099 /*
1100 * If the previous mount operation on the same host was
1101 * backgrounded, and the "bg" for this mount is also set,
1102 * give up immediately, to avoid the initial timeout.
1103 */
1104 if (bg && we_saw_this_host_before(hostname)) {
Denis Vlasenko7d8de4d2007-08-28 11:23:23 +00001105 daemonized = daemonize();
Denis Vlasenko25098f72006-09-14 15:46:33 +00001106 if (daemonized <= 0) { /* parent or error */
1107 retval = -daemonized;
1108 goto ret;
1109 }
1110 }
1111
1112 /* create mount daemon client */
1113 /* See if the nfs host = mount host. */
1114 if (mounthost) {
1115 if (mounthost[0] >= '0' && mounthost[0] <= '9') {
1116 mount_server_addr.sin_family = AF_INET;
1117 mount_server_addr.sin_addr.s_addr = inet_addr(hostname);
1118 } else {
1119 hp = gethostbyname(mounthost);
1120 if (hp == NULL) {
1121 bb_herror_msg("%s", mounthost);
1122 goto fail;
1123 } else {
1124 if (hp->h_length > sizeof(struct in_addr)) {
1125 bb_error_msg("got bad hp->h_length?");
1126 hp->h_length = sizeof(struct in_addr);
1127 }
1128 mount_server_addr.sin_family = AF_INET;
1129 memcpy(&mount_server_addr.sin_addr,
1130 hp->h_addr, hp->h_length);
1131 }
1132 }
1133 }
1134
1135 /*
1136 * The following loop implements the mount retries. When the mount
1137 * times out, and the "bg" option is set, we background ourself
1138 * and continue trying.
1139 *
1140 * The case where the mount point is not present and the "bg"
1141 * option is set, is treated as a timeout. This is done to
1142 * support nested mounts.
1143 *
1144 * The "retry" count specified by the user is the number of
1145 * minutes to retry before giving up.
1146 */
1147 {
1148 struct timeval total_timeout;
1149 struct timeval retry_timeout;
1150 struct pmap* pm_mnt;
1151 time_t t;
1152 time_t prevt;
1153 time_t timeout;
1154
1155 retry_timeout.tv_sec = 3;
1156 retry_timeout.tv_usec = 0;
1157 total_timeout.tv_sec = 20;
1158 total_timeout.tv_usec = 0;
1159 timeout = time(NULL) + 60 * retry;
1160 prevt = 0;
1161 t = 30;
1162retry:
1163 /* be careful not to use too many CPU cycles */
1164 if (t - prevt < 30)
1165 sleep(30);
1166
1167 pm_mnt = get_mountport(&mount_server_addr,
1168 mountprog,
1169 mountvers,
1170 proto,
1171 mountport);
1172 nfsvers = (pm_mnt->pm_vers < 2) ? 2 : pm_mnt->pm_vers;
1173
1174 /* contact the mount daemon via TCP */
1175 mount_server_addr.sin_port = htons(pm_mnt->pm_port);
1176 msock = RPC_ANYSOCK;
1177
1178 switch (pm_mnt->pm_prot) {
1179 case IPPROTO_UDP:
1180 mclient = clntudp_create(&mount_server_addr,
1181 pm_mnt->pm_prog,
1182 pm_mnt->pm_vers,
1183 retry_timeout,
1184 &msock);
1185 if (mclient)
1186 break;
1187 mount_server_addr.sin_port = htons(pm_mnt->pm_port);
1188 msock = RPC_ANYSOCK;
1189 case IPPROTO_TCP:
1190 mclient = clnttcp_create(&mount_server_addr,
1191 pm_mnt->pm_prog,
1192 pm_mnt->pm_vers,
1193 &msock, 0, 0);
1194 break;
1195 default:
Denis Vlasenko7d8de4d2007-08-28 11:23:23 +00001196 mclient = NULL;
Denis Vlasenko25098f72006-09-14 15:46:33 +00001197 }
1198 if (!mclient) {
1199 if (!daemonized && prevt == 0)
1200 error_msg_rpc(clnt_spcreateerror(" "));
1201 } else {
1202 enum clnt_stat clnt_stat;
1203 /* try to mount hostname:pathname */
1204 mclient->cl_auth = authunix_create_default();
1205
1206 /* make pointers in xdr_mountres3 NULL so
1207 * that xdr_array allocates memory for us
1208 */
1209 memset(&status, 0, sizeof(status));
1210
1211 if (pm_mnt->pm_vers == 3)
1212 clnt_stat = clnt_call(mclient, MOUNTPROC3_MNT,
1213 (xdrproc_t) xdr_dirpath,
1214 (caddr_t) &pathname,
1215 (xdrproc_t) xdr_mountres3,
1216 (caddr_t) &status,
1217 total_timeout);
1218 else
1219 clnt_stat = clnt_call(mclient, MOUNTPROC_MNT,
1220 (xdrproc_t) xdr_dirpath,
1221 (caddr_t) &pathname,
1222 (xdrproc_t) xdr_fhstatus,
1223 (caddr_t) &status,
1224 total_timeout);
1225
1226 if (clnt_stat == RPC_SUCCESS)
1227 goto prepare_kernel_data; /* we're done */
1228 if (errno != ECONNREFUSED) {
1229 error_msg_rpc(clnt_sperror(mclient, " "));
1230 goto fail; /* don't retry */
1231 }
1232 /* Connection refused */
1233 if (!daemonized && prevt == 0) /* print just once */
1234 error_msg_rpc(clnt_sperror(mclient, " "));
1235 auth_destroy(mclient->cl_auth);
1236 clnt_destroy(mclient);
Denis Vlasenko7d8de4d2007-08-28 11:23:23 +00001237 mclient = NULL;
Denis Vlasenko25098f72006-09-14 15:46:33 +00001238 close(msock);
Denis Vlasenko7d8de4d2007-08-28 11:23:23 +00001239 msock = -1;
Denis Vlasenko25098f72006-09-14 15:46:33 +00001240 }
1241
1242 /* Timeout. We are going to retry... maybe */
1243
1244 if (!bg)
1245 goto fail;
1246 if (!daemonized) {
1247 daemonized = daemonize();
1248 if (daemonized <= 0) { /* parent or error */
1249 retval = -daemonized;
1250 goto ret;
1251 }
1252 }
1253 prevt = t;
1254 t = time(NULL);
1255 if (t >= timeout)
1256 /* TODO error message */
1257 goto fail;
1258
1259 goto retry;
1260 }
1261
1262prepare_kernel_data:
1263
1264 if (nfsvers == 2) {
1265 if (status.nfsv2.fhs_status != 0) {
1266 bb_error_msg("%s:%s failed, reason given by server: %s",
1267 hostname, pathname,
1268 nfs_strerror(status.nfsv2.fhs_status));
1269 goto fail;
1270 }
1271 memcpy(data.root.data,
1272 (char *) status.nfsv2.fhstatus_u.fhs_fhandle,
1273 NFS_FHSIZE);
1274 data.root.size = NFS_FHSIZE;
1275 memcpy(data.old_root.data,
1276 (char *) status.nfsv2.fhstatus_u.fhs_fhandle,
1277 NFS_FHSIZE);
1278 } else {
1279 fhandle3 *my_fhandle;
1280 if (status.nfsv3.fhs_status != 0) {
1281 bb_error_msg("%s:%s failed, reason given by server: %s",
1282 hostname, pathname,
1283 nfs_strerror(status.nfsv3.fhs_status));
1284 goto fail;
1285 }
1286 my_fhandle = &status.nfsv3.mountres3_u.mountinfo.fhandle;
1287 memset(data.old_root.data, 0, NFS_FHSIZE);
1288 memset(&data.root, 0, sizeof(data.root));
1289 data.root.size = my_fhandle->fhandle3_len;
1290 memcpy(data.root.data,
1291 (char *) my_fhandle->fhandle3_val,
1292 my_fhandle->fhandle3_len);
1293
1294 data.flags |= NFS_MOUNT_VER3;
1295 }
1296
1297 /* create nfs socket for kernel */
1298
1299 if (tcp) {
1300 if (nfs_mount_version < 3) {
1301 bb_error_msg("NFS over TCP is not supported");
1302 goto fail;
1303 }
1304 fsock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
1305 } else
1306 fsock = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
1307 if (fsock < 0) {
1308 bb_perror_msg("nfs socket");
1309 goto fail;
1310 }
1311 if (bindresvport(fsock, 0) < 0) {
1312 bb_perror_msg("nfs bindresvport");
1313 goto fail;
1314 }
1315 if (port == 0) {
1316 server_addr.sin_port = PMAPPORT;
1317 port = pmap_getport(&server_addr, nfsprog, nfsvers,
1318 tcp ? IPPROTO_TCP : IPPROTO_UDP);
1319 if (port == 0)
1320 port = NFS_PORT;
Denis Vlasenko25098f72006-09-14 15:46:33 +00001321 }
Denis Vlasenko25098f72006-09-14 15:46:33 +00001322 server_addr.sin_port = htons(port);
1323
1324 /* prepare data structure for kernel */
1325
1326 data.fd = fsock;
1327 memcpy((char *) &data.addr, (char *) &server_addr, sizeof(data.addr));
1328 strncpy(data.hostname, hostname, sizeof(data.hostname));
1329
1330 /* clean up */
1331
1332 auth_destroy(mclient->cl_auth);
1333 clnt_destroy(mclient);
1334 close(msock);
Denis Vlasenko7d8de4d2007-08-28 11:23:23 +00001335 msock = -1;
Denis Vlasenko25098f72006-09-14 15:46:33 +00001336
1337 if (bg) {
1338 /* We must wait until mount directory is available */
1339 struct stat statbuf;
1340 int delay = 1;
1341 while (stat(mp->mnt_dir, &statbuf) == -1) {
1342 if (!daemonized) {
1343 daemonized = daemonize();
1344 if (daemonized <= 0) { /* parent or error */
Denis Vlasenko7d8de4d2007-08-28 11:23:23 +00001345 // FIXME: parent doesn't close fsock - ??!
Denis Vlasenko25098f72006-09-14 15:46:33 +00001346 retval = -daemonized;
1347 goto ret;
1348 }
1349 }
1350 sleep(delay); /* 1, 2, 4, 8, 16, 30, ... */
1351 delay *= 2;
1352 if (delay > 30)
1353 delay = 30;
1354 }
1355 }
1356
1357do_mount: /* perform actual mount */
1358
Denis Vlasenko06c0a712007-01-29 22:51:44 +00001359 mp->mnt_type = (char*)"nfs";
Denis Vlasenko25098f72006-09-14 15:46:33 +00001360 retval = mount_it_now(mp, vfsflags, (char*)&data);
1361 goto ret;
1362
1363fail: /* abort */
1364
Denis Vlasenko7d8de4d2007-08-28 11:23:23 +00001365 if (msock >= 0) {
Denis Vlasenko25098f72006-09-14 15:46:33 +00001366 if (mclient) {
1367 auth_destroy(mclient->cl_auth);
1368 clnt_destroy(mclient);
1369 }
1370 close(msock);
1371 }
Denis Vlasenko7d8de4d2007-08-28 11:23:23 +00001372 if (fsock >= 0)
Denis Vlasenko25098f72006-09-14 15:46:33 +00001373 close(fsock);
1374
1375ret:
1376 free(hostname);
1377 free(mounthost);
1378 free(filteropts);
1379 return retval;
1380}
1381
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001382#else /* !ENABLE_FEATURE_MOUNT_NFS */
1383
1384/* Never called. Call should be optimized out. */
1385int nfsmount(struct mntent *mp, int vfsflags, char *filteropts);
1386
1387#endif /* !ENABLE_FEATURE_MOUNT_NFS */
1388
1389// Mount one directory. Handles CIFS, NFS, loopback, autobind, and filesystem
1390// type detection. Returns 0 for success, nonzero for failure.
Denis Vlasenko3bc59aa2006-09-17 15:04:01 +00001391// NB: mp->xxx fields may be trashed on exit
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001392static int singlemount(struct mntent *mp, int ignore_busy)
1393{
1394 int rc = -1, vfsflags;
1395 char *loopFile = 0, *filteropts = 0;
1396 llist_t *fl = 0;
1397 struct stat st;
1398
1399 vfsflags = parse_mount_options(mp->mnt_opts, &filteropts);
1400
1401 // Treat fstype "auto" as unspecified.
1402
Denis Vlasenko6cd2d2b2007-01-22 14:06:03 +00001403 if (mp->mnt_type && strcmp(mp->mnt_type,"auto") == 0)
1404 mp->mnt_type = 0;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001405
Denis Vlasenko2535f122007-09-15 13:28:30 +00001406 // Might this be a virtual filesystem?
1407
1408 if (ENABLE_FEATURE_MOUNT_HELPERS
1409 && (strchr(mp->mnt_fsname,'#'))
1410 ) {
1411 char *s, *p, *args[35];
1412 int n = 0;
1413 for (s = p = mp->mnt_fsname; *s && n < 35-3; ++s) {
1414 if (s[0] == '#' && s[1] != '#') {
1415 *s = '\0';
1416 args[n++] = p;
1417 p = s + 1;
1418 }
1419 }
1420 args[n++] = p;
1421 args[n++] = mp->mnt_dir;
1422 args[n] = NULL;
1423 rc = wait4pid(xspawn(args));
1424 goto report_error;
1425 }
1426
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001427 // Might this be an CIFS filesystem?
1428
Denis Vlasenko6cd2d2b2007-01-22 14:06:03 +00001429 if (ENABLE_FEATURE_MOUNT_CIFS
1430 && (!mp->mnt_type || strcmp(mp->mnt_type,"cifs") == 0)
1431 && (mp->mnt_fsname[0]=='/' || mp->mnt_fsname[0]=='\\')
1432 && mp->mnt_fsname[0]==mp->mnt_fsname[1]
1433 ) {
Denis Vlasenko5870ad92007-02-04 02:39:55 +00001434 len_and_sockaddr *lsa;
1435 char *ip, *dotted;
1436 char *s;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001437
1438 rc = 1;
1439 // Replace '/' with '\' and verify that unc points to "//server/share".
1440
1441 for (s = mp->mnt_fsname; *s; ++s)
1442 if (*s == '/') *s = '\\';
1443
1444 // get server IP
1445
1446 s = strrchr(mp->mnt_fsname, '\\');
Denis Vlasenko5870ad92007-02-04 02:39:55 +00001447 if (s <= mp->mnt_fsname+1) goto report_error;
Denis Vlasenko6cd2d2b2007-01-22 14:06:03 +00001448 *s = '\0';
Denis Vlasenko5870ad92007-02-04 02:39:55 +00001449 lsa = host2sockaddr(mp->mnt_fsname+2, 0);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001450 *s = '\\';
Denis Vlasenko5870ad92007-02-04 02:39:55 +00001451 if (!lsa) goto report_error;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001452
Denis Vlasenko5870ad92007-02-04 02:39:55 +00001453 // insert ip=... option into string flags.
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001454
Denis Vlasenkoa27a11b2007-08-18 14:16:39 +00001455 dotted = xmalloc_sockaddr2dotted_noport(&lsa->sa);
Denis Vlasenko5870ad92007-02-04 02:39:55 +00001456 ip = xasprintf("ip=%s", dotted);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001457 parse_mount_options(ip, &filteropts);
1458
1459 // compose new unc '\\server-ip\share'
Denis Vlasenko5870ad92007-02-04 02:39:55 +00001460 // (s => slash after hostname)
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001461
Denis Vlasenko5870ad92007-02-04 02:39:55 +00001462 mp->mnt_fsname = xasprintf("\\\\%s%s", dotted, s);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001463
1464 // lock is required
1465 vfsflags |= MS_MANDLOCK;
1466
Denis Vlasenko06c0a712007-01-29 22:51:44 +00001467 mp->mnt_type = (char*)"cifs";
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001468 rc = mount_it_now(mp, vfsflags, filteropts);
Denis Vlasenko5870ad92007-02-04 02:39:55 +00001469 if (ENABLE_FEATURE_CLEAN_UP) {
1470 free(mp->mnt_fsname);
1471 free(ip);
1472 free(dotted);
1473 free(lsa);
1474 }
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001475 goto report_error;
1476 }
1477
1478 // Might this be an NFS filesystem?
1479
Denis Vlasenko6cd2d2b2007-01-22 14:06:03 +00001480 if (ENABLE_FEATURE_MOUNT_NFS
Denis Vlasenko0e2c9fb2007-08-03 14:16:24 +00001481 && (!mp->mnt_type || !strcmp(mp->mnt_type, "nfs"))
Denis Vlasenko6cd2d2b2007-01-22 14:06:03 +00001482 && strchr(mp->mnt_fsname, ':') != NULL
1483 ) {
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001484 rc = nfsmount(mp, vfsflags, filteropts);
1485 goto report_error;
1486 }
1487
1488 // Look at the file. (Not found isn't a failure for remount, or for
1489 // a synthetic filesystem like proc or sysfs.)
Denis Vlasenko38ec1472007-05-20 12:32:41 +00001490 // (We use stat, not lstat, in order to allow
1491 // mount symlink_to_file_or_blkdev dir)
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001492
Denis Vlasenko38ec1472007-05-20 12:32:41 +00001493 if (!stat(mp->mnt_fsname, &st)
Denis Vlasenko6cd2d2b2007-01-22 14:06:03 +00001494 && !(vfsflags & (MS_REMOUNT | MS_BIND | MS_MOVE))
1495 ) {
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001496 // Do we need to allocate a loopback device for it?
1497
1498 if (ENABLE_FEATURE_MOUNT_LOOP && S_ISREG(st.st_mode)) {
1499 loopFile = bb_simplify_path(mp->mnt_fsname);
Denis Vlasenko0e2c9fb2007-08-03 14:16:24 +00001500 mp->mnt_fsname = NULL; /* will receive malloced loop dev name */
1501 if (set_loop(&(mp->mnt_fsname), loopFile, 0) < 0) {
1502 if (errno == EPERM || errno == EACCES)
1503 bb_error_msg(bb_msg_perm_denied_are_you_root);
1504 else
1505 bb_perror_msg("cannot setup loop device");
Denis Vlasenko13b49242006-09-17 15:04:35 +00001506 return errno;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001507 }
1508
1509 // Autodetect bind mounts
1510
1511 } else if (S_ISDIR(st.st_mode) && !mp->mnt_type)
1512 vfsflags |= MS_BIND;
1513 }
1514
1515 /* If we know the fstype (or don't need to), jump straight
1516 * to the actual mount. */
1517
1518 if (mp->mnt_type || (vfsflags & (MS_REMOUNT | MS_BIND | MS_MOVE)))
1519 rc = mount_it_now(mp, vfsflags, filteropts);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001520 else {
Denis Vlasenko6cd2d2b2007-01-22 14:06:03 +00001521 // Loop through filesystem types until mount succeeds
1522 // or we run out
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001523
1524 /* Initialize list of block backed filesystems. This has to be
1525 * done here so that during "mount -a", mounts after /proc shows up
1526 * can autodetect. */
1527
1528 if (!fslist) {
1529 fslist = get_block_backed_filesystems();
1530 if (ENABLE_FEATURE_CLEAN_UP && fslist)
1531 atexit(delete_block_backed_filesystems);
1532 }
1533
1534 for (fl = fslist; fl; fl = fl->link) {
1535 mp->mnt_type = fl->data;
Denis Vlasenko13b49242006-09-17 15:04:35 +00001536 rc = mount_it_now(mp, vfsflags, filteropts);
Denis Vlasenko8d474b52006-09-17 15:00:58 +00001537 if (!rc) break;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001538 }
1539 }
1540
1541 // If mount failed, clean up loop file (if any).
1542
1543 if (ENABLE_FEATURE_MOUNT_LOOP && rc && loopFile) {
1544 del_loop(mp->mnt_fsname);
1545 if (ENABLE_FEATURE_CLEAN_UP) {
1546 free(loopFile);
1547 free(mp->mnt_fsname);
1548 }
1549 }
1550
Denis Vlasenko5870ad92007-02-04 02:39:55 +00001551 report_error:
1552 if (ENABLE_FEATURE_CLEAN_UP)
1553 free(filteropts);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001554
Denis Vlasenkoc8d4d2f2007-09-07 19:33:56 +00001555 if (errno == EBUSY && ignore_busy)
1556 return 0;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001557 if (rc < 0)
Denis Vlasenko0e2c9fb2007-08-03 14:16:24 +00001558 bb_perror_msg("mounting %s on %s failed", mp->mnt_fsname, mp->mnt_dir);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001559 return rc;
1560}
1561
1562// Parse options, if necessary parse fstab/mtab, and call singlemount for
1563// each directory to be mounted.
1564
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001565static const char must_be_root[] ALIGN1 = "you must be root";
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001566
Denis Vlasenko06af2162007-02-03 17:28:39 +00001567int mount_main(int argc, char **argv);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001568int mount_main(int argc, char **argv)
1569{
Denis Vlasenkoda3cec92006-09-24 01:01:01 +00001570 enum { OPT_ALL = 0x10 };
Denis Vlasenko9c99b622006-09-17 15:05:31 +00001571
1572 char *cmdopts = xstrdup(""), *fstype=0, *storage_path=0;
Denis Vlasenko85f9e322006-09-19 14:14:12 +00001573 char *opt_o;
1574 const char *fstabname;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001575 FILE *fstab;
Denis Vlasenko9c99b622006-09-17 15:05:31 +00001576 int i, j, rc = 0;
Denis Vlasenko67b23e62006-10-03 21:00:06 +00001577 unsigned opt;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001578 struct mntent mtpair[2], *mtcur = mtpair;
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001579 SKIP_DESKTOP(const int nonroot = 0;)
1580 USE_DESKTOP( int nonroot = (getuid() != 0);)
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001581
1582 /* parse long options, like --bind and --move. Note that -o option
1583 * and --option are synonymous. Yes, this means --remount,rw works. */
1584
Denis Vlasenko9c99b622006-09-17 15:05:31 +00001585 for (i = j = 0; i < argc; i++) {
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001586 if (argv[i][0] == '-' && argv[i][1] == '-') {
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001587 append_mount_options(&cmdopts, argv[i]+2);
Denis Vlasenko9c99b622006-09-17 15:05:31 +00001588 } else argv[j++] = argv[i];
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001589 }
Denis Vlasenkoda3cec92006-09-24 01:01:01 +00001590 argv[j] = 0;
Denis Vlasenko9c99b622006-09-17 15:05:31 +00001591 argc = j;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001592
1593 // Parse remaining options
1594
Denis Vlasenkofb48f6c2007-08-29 11:49:41 +00001595 opt = getopt32(argv, "o:t:rwanfvsi", &opt_o, &fstype);
Denis Vlasenkoda3cec92006-09-24 01:01:01 +00001596 if (opt & 0x1) append_mount_options(&cmdopts, opt_o); // -o
1597 //if (opt & 0x2) // -t
1598 if (opt & 0x4) append_mount_options(&cmdopts, "ro"); // -r
1599 if (opt & 0x8) append_mount_options(&cmdopts, "rw"); // -w
1600 //if (opt & 0x10) // -a
Denis Vlasenkob1726782006-09-29 14:43:20 +00001601 if (opt & 0x20) USE_FEATURE_MTAB_SUPPORT(useMtab = 0); // -n
1602 if (opt & 0x40) USE_FEATURE_MTAB_SUPPORT(fakeIt = 1); // -f
Denis Vlasenko546cd182006-10-02 18:52:49 +00001603 //if (opt & 0x80) // -v: verbose (ignore)
1604 //if (opt & 0x100) // -s: sloppy (ignore)
Denis Vlasenkofb48f6c2007-08-29 11:49:41 +00001605 //if (opt & 0x200) // -i: don't call mount.<fstype> (ignore)
Denis Vlasenko3bc59aa2006-09-17 15:04:01 +00001606 argv += optind;
1607 argc -= optind;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001608
1609 // Three or more non-option arguments? Die with a usage message.
1610
Denis Vlasenko3bc59aa2006-09-17 15:04:01 +00001611 if (argc > 2) bb_show_usage();
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001612
1613 // If we have no arguments, show currently mounted filesystems
1614
Denis Vlasenko3bc59aa2006-09-17 15:04:01 +00001615 if (!argc) {
Denis Vlasenko9c99b622006-09-17 15:05:31 +00001616 if (!(opt & OPT_ALL)) {
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001617 FILE *mountTable = setmntent(bb_path_mtab_file, "r");
1618
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001619 if (!mountTable) bb_error_msg_and_die("no %s", bb_path_mtab_file);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001620
Denis Vlasenko2535f122007-09-15 13:28:30 +00001621 while (getmntent_r(mountTable, &mtpair[0], getmntent_buf,
1622 sizeof(getmntent_buf)))
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001623 {
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001624 // Don't show rootfs. FIXME: why??
Denis Vlasenko908d6b72006-12-18 23:07:42 +00001625 // util-linux 2.12a happily shows rootfs...
1626 //if (!strcmp(mtpair->mnt_fsname, "rootfs")) continue;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001627
1628 if (!fstype || !strcmp(mtpair->mnt_type, fstype))
1629 printf("%s on %s type %s (%s)\n", mtpair->mnt_fsname,
1630 mtpair->mnt_dir, mtpair->mnt_type,
1631 mtpair->mnt_opts);
1632 }
1633 if (ENABLE_FEATURE_CLEAN_UP) endmntent(mountTable);
1634 return EXIT_SUCCESS;
1635 }
Denis Vlasenko3bc59aa2006-09-17 15:04:01 +00001636 } else storage_path = bb_simplify_path(argv[0]);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001637
1638 // When we have two arguments, the second is the directory and we can
1639 // skip looking at fstab entirely. We can always abspath() the directory
1640 // argument when we get it.
1641
Denis Vlasenko3bc59aa2006-09-17 15:04:01 +00001642 if (argc == 2) {
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001643 if (nonroot)
1644 bb_error_msg_and_die(must_be_root);
Denis Vlasenko3bc59aa2006-09-17 15:04:01 +00001645 mtpair->mnt_fsname = argv[0];
1646 mtpair->mnt_dir = argv[1];
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001647 mtpair->mnt_type = fstype;
1648 mtpair->mnt_opts = cmdopts;
1649 rc = singlemount(mtpair, 0);
1650 goto clean_up;
1651 }
1652
Denis Vlasenko546cd182006-10-02 18:52:49 +00001653 i = parse_mount_options(cmdopts, 0);
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001654 if (nonroot && (i & ~MS_SILENT)) // Non-root users cannot specify flags
1655 bb_error_msg_and_die(must_be_root);
Denis Vlasenko546cd182006-10-02 18:52:49 +00001656
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001657 // If we have a shared subtree flag, don't worry about fstab or mtab.
Denis Vlasenko546cd182006-10-02 18:52:49 +00001658
Denis Vlasenko6cd2d2b2007-01-22 14:06:03 +00001659 if (ENABLE_FEATURE_MOUNT_FLAGS
1660 && (i & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
1661 ) {
Denis Vlasenko3bc59aa2006-09-17 15:04:01 +00001662 rc = mount("", argv[0], "", i, "");
1663 if (rc) bb_perror_msg_and_die("%s", argv[0]);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001664 goto clean_up;
1665 }
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00001666
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001667 // Open either fstab or mtab
1668
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001669 fstabname = "/etc/fstab";
1670 if (i & MS_REMOUNT) {
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001671 fstabname = bb_path_mtab_file;
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001672 }
1673 fstab = setmntent(fstabname, "r");
Denis Vlasenko8d474b52006-09-17 15:00:58 +00001674 if (!fstab)
Denis Vlasenko85f9e322006-09-19 14:14:12 +00001675 bb_perror_msg_and_die("cannot read %s", fstabname);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001676
1677 // Loop through entries until we find what we're looking for.
1678
Denis Vlasenko546cd182006-10-02 18:52:49 +00001679 memset(mtpair, 0, sizeof(mtpair));
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001680 for (;;) {
Denis Vlasenko8d474b52006-09-17 15:00:58 +00001681 struct mntent *mtnext = (mtcur==mtpair ? mtpair+1 : mtpair);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001682
1683 // Get next fstab entry
1684
Denis Vlasenko2535f122007-09-15 13:28:30 +00001685 if (!getmntent_r(fstab, mtcur, getmntent_buf
1686 + (mtcur==mtpair ? sizeof(getmntent_buf)/2 : 0),
1687 sizeof(getmntent_buf)/2))
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001688 {
1689 // Were we looking for something specific?
1690
Denis Vlasenko3bc59aa2006-09-17 15:04:01 +00001691 if (argc) {
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001692
1693 // If we didn't find anything, complain.
1694
1695 if (!mtnext->mnt_fsname)
1696 bb_error_msg_and_die("can't find %s in %s",
Denis Vlasenko3bc59aa2006-09-17 15:04:01 +00001697 argv[0], fstabname);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001698
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001699 mtcur = mtnext;
1700 if (nonroot) {
1701 // fstab must have "users" or "user"
1702 if (!(parse_mount_options(mtcur->mnt_opts, 0) & MOUNT_USERS))
1703 bb_error_msg_and_die(must_be_root);
1704 }
1705
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001706 // Mount the last thing we found.
1707
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001708 mtcur->mnt_opts = xstrdup(mtcur->mnt_opts);
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001709 append_mount_options(&(mtcur->mnt_opts), cmdopts);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001710 rc = singlemount(mtcur, 0);
1711 free(mtcur->mnt_opts);
1712 }
1713 goto clean_up;
1714 }
1715
1716 /* If we're trying to mount something specific and this isn't it,
1717 * skip it. Note we must match both the exact text in fstab (ala
1718 * "proc") or a full path from root */
1719
Denis Vlasenko3bc59aa2006-09-17 15:04:01 +00001720 if (argc) {
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001721
1722 // Is this what we're looking for?
1723
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001724 if (strcmp(argv[0], mtcur->mnt_fsname) &&
1725 strcmp(storage_path, mtcur->mnt_fsname) &&
1726 strcmp(argv[0], mtcur->mnt_dir) &&
1727 strcmp(storage_path, mtcur->mnt_dir)) continue;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001728
1729 // Remember this entry. Something later may have overmounted
1730 // it, and we want the _last_ match.
1731
1732 mtcur = mtnext;
1733
1734 // If we're mounting all.
1735
1736 } else {
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001737 // Do we need to match a filesystem type?
Denis Vlasenkobf295dd2007-04-05 21:57:47 +00001738 if (fstype && match_fstype(mtcur, fstype)) continue;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001739
1740 // Skip noauto and swap anyway.
1741
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001742 if (parse_mount_options(mtcur->mnt_opts, 0)
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001743 & (MOUNT_NOAUTO | MOUNT_SWAP)) continue;
1744
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001745 // No, mount -a won't mount anything,
1746 // even user mounts, for mere humans.
1747
1748 if (nonroot)
1749 bb_error_msg_and_die(must_be_root);
1750
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001751 // Mount this thing.
1752
Denis Vlasenko666da5e2006-12-26 18:17:42 +00001753 // NFS mounts want this to be xrealloc-able
1754 mtcur->mnt_opts = xstrdup(mtcur->mnt_opts);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001755 if (singlemount(mtcur, 1)) {
1756 /* Count number of failed mounts */
1757 rc++;
1758 }
Denis Vlasenko666da5e2006-12-26 18:17:42 +00001759 free(mtcur->mnt_opts);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001760 }
1761 }
1762 if (ENABLE_FEATURE_CLEAN_UP) endmntent(fstab);
1763
1764clean_up:
1765
1766 if (ENABLE_FEATURE_CLEAN_UP) {
1767 free(storage_path);
1768 free(cmdopts);
1769 }
1770
1771 return rc;
1772}