blob: e7818ac9f7aba791ed23b55684c80357392aec69 [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
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000021#include "libbb.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000022#include <mntent.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
33
Denis Vlasenko908d6b72006-12-18 23:07:42 +000034#if defined(__dietlibc__)
35/* 16.12.2006, Sampo Kellomaki (sampo@iki.fi)
36 * dietlibc-0.30 does not have implementation of getmntent_r() */
37/* OTOH: why we use getmntent_r instead of getmntent? TODO... */
38struct mntent *getmntent_r(FILE* stream, struct mntent* result, char* buffer, int bufsize)
39{
40 /* *** XXX FIXME WARNING: This hack is NOT thread safe. --Sampo */
41 struct mntent* ment = getmntent(stream);
42 memcpy(result, ment, sizeof(struct mntent));
43 return result;
44}
45#endif
46
47
Rob Landleydc0955b2006-03-14 18:16:25 +000048// Not real flags, but we want to be able to check for this.
Denis Vlasenko13c5a682006-10-16 22:39:51 +000049enum {
50 MOUNT_USERS = (1<<28)*ENABLE_DESKTOP,
51 MOUNT_NOAUTO = (1<<29),
52 MOUNT_SWAP = (1<<30),
53};
54// TODO: more "user" flag compatibility.
55// "user" option (from mount manpage):
56// Only the user that mounted a filesystem can unmount it again.
57// If any user should be able to unmount, then use users instead of user
58// in the fstab line. The owner option is similar to the user option,
59// with the restriction that the user must be the owner of the special file.
60// This may be useful e.g. for /dev/fd if a login script makes
61// the console user owner of this device.
Rob Landley3ba7bd12006-08-09 19:51:13 +000062
Rob Landleydc0955b2006-03-14 18:16:25 +000063/* Standard mount options (from -o options or --options), with corresponding
64 * flags */
Eric Andersencc8ed391999-10-05 16:24:54 +000065
Rob Landley6a6798b2005-08-10 20:35:54 +000066struct {
Denis Vlasenko06c0a712007-01-29 22:51:44 +000067 const char *name;
Rob Landley6a6798b2005-08-10 20:35:54 +000068 long flags;
Rob Landleye3781b72006-08-08 01:39:49 +000069} static mount_options[] = {
70 // MS_FLAGS set a bit. ~MS_FLAGS disable that bit. 0 flags are NOPs.
Rob Landleydc0955b2006-03-14 18:16:25 +000071
Rob Landleye3781b72006-08-08 01:39:49 +000072 USE_FEATURE_MOUNT_LOOP(
73 {"loop", 0},
74 )
Rob Landleydc0955b2006-03-14 18:16:25 +000075
Rob Landleye3781b72006-08-08 01:39:49 +000076 USE_FEATURE_MOUNT_FSTAB(
77 {"defaults", 0},
Denis Vlasenko5e90e102006-11-27 19:50:16 +000078 /* {"quiet", 0}, - do not filter out, vfat wants to see it */
Denis Vlasenko13c5a682006-10-16 22:39:51 +000079 {"noauto", MOUNT_NOAUTO},
Denis Vlasenkobf295dd2007-04-05 21:57:47 +000080 {"sw", MOUNT_SWAP},
Denis Vlasenko13c5a682006-10-16 22:39:51 +000081 {"swap", MOUNT_SWAP},
82 USE_DESKTOP({"user", MOUNT_USERS},)
83 USE_DESKTOP({"users", MOUNT_USERS},)
Rob Landleye3781b72006-08-08 01:39:49 +000084 )
Rob Landleydc0955b2006-03-14 18:16:25 +000085
Rob Landleye3781b72006-08-08 01:39:49 +000086 USE_FEATURE_MOUNT_FLAGS(
87 // vfs flags
88 {"nosuid", MS_NOSUID},
89 {"suid", ~MS_NOSUID},
90 {"dev", ~MS_NODEV},
91 {"nodev", MS_NODEV},
92 {"exec", ~MS_NOEXEC},
93 {"noexec", MS_NOEXEC},
94 {"sync", MS_SYNCHRONOUS},
95 {"async", ~MS_SYNCHRONOUS},
96 {"atime", ~MS_NOATIME},
97 {"noatime", MS_NOATIME},
98 {"diratime", ~MS_NODIRATIME},
99 {"nodiratime", MS_NODIRATIME},
100 {"loud", ~MS_SILENT},
Eric Andersen9601a1c2006-03-20 18:07:50 +0000101
Rob Landleye3781b72006-08-08 01:39:49 +0000102 // action flags
Rob Landleydc0955b2006-03-14 18:16:25 +0000103
Rob Landleye3781b72006-08-08 01:39:49 +0000104 {"bind", MS_BIND},
105 {"move", MS_MOVE},
106 {"shared", MS_SHARED},
107 {"slave", MS_SLAVE},
108 {"private", MS_PRIVATE},
109 {"unbindable", MS_UNBINDABLE},
110 {"rshared", MS_SHARED|MS_RECURSIVE},
111 {"rslave", MS_SLAVE|MS_RECURSIVE},
112 {"rprivate", MS_SLAVE|MS_RECURSIVE},
113 {"runbindable", MS_UNBINDABLE|MS_RECURSIVE},
114 )
115
116 // Always understood.
117
118 {"ro", MS_RDONLY}, // vfs flag
119 {"rw", ~MS_RDONLY}, // vfs flag
120 {"remount", MS_REMOUNT}, // action flag
Eric Andersencc8ed391999-10-05 16:24:54 +0000121};
122
Denis Vlasenko25098f72006-09-14 15:46:33 +0000123
Rob Landleydc0955b2006-03-14 18:16:25 +0000124/* Append mount options to string */
Denis Vlasenko06c0a712007-01-29 22:51:44 +0000125static void append_mount_options(char **oldopts, const char *newopts)
Eric Andersencc8ed391999-10-05 16:24:54 +0000126{
Denis Vlasenko8d474b52006-09-17 15:00:58 +0000127 if (*oldopts && **oldopts) {
Denis Vlasenkoc889d2b2006-09-17 15:08:12 +0000128 /* do not insert options which are already there */
129 while (newopts[0]) {
130 char *p;
131 int len = strlen(newopts);
132 p = strchr(newopts, ',');
133 if (p) len = p - newopts;
134 p = *oldopts;
135 while (1) {
Denis Vlasenko13c5a682006-10-16 22:39:51 +0000136 if (!strncmp(p, newopts, len)
137 && (p[len]==',' || p[len]==0))
Denis Vlasenkoc889d2b2006-09-17 15:08:12 +0000138 goto skip;
139 p = strchr(p,',');
Denis Vlasenko51742f42007-04-12 00:32:05 +0000140 if (!p) break;
Denis Vlasenkoc889d2b2006-09-17 15:08:12 +0000141 p++;
142 }
143 p = xasprintf("%s,%.*s", *oldopts, len, newopts);
144 free(*oldopts);
145 *oldopts = p;
146skip:
147 newopts += len;
148 while (newopts[0] == ',') newopts++;
149 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000150 } else {
151 if (ENABLE_FEATURE_CLEAN_UP) free(*oldopts);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000152 *oldopts = xstrdup(newopts);
Rob Landleydc0955b2006-03-14 18:16:25 +0000153 }
154}
155
156/* Use the mount_options list to parse options into flags.
Denis Vlasenko00d7d6c2006-09-11 17:42:44 +0000157 * Also return list of unrecognized options if unrecognized!=NULL */
Rob Landleydc0955b2006-03-14 18:16:25 +0000158static int parse_mount_options(char *options, char **unrecognized)
159{
160 int flags = MS_SILENT;
161
Rob Landley6a6798b2005-08-10 20:35:54 +0000162 // Loop through options
Rob Landleydc0955b2006-03-14 18:16:25 +0000163 for (;;) {
Rob Landley6a6798b2005-08-10 20:35:54 +0000164 int i;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000165 char *comma = strchr(options, ',');
Eric Andersencc8ed391999-10-05 16:24:54 +0000166
Rob Landleydc0955b2006-03-14 18:16:25 +0000167 if (comma) *comma = 0;
Eric Andersen3ae0c781999-11-04 01:13:21 +0000168
Rob Landley6a6798b2005-08-10 20:35:54 +0000169 // Find this option in mount_options
Denis Vlasenko80b8b392007-06-25 10:55:35 +0000170 for (i = 0; i < ARRAY_SIZE(mount_options); i++) {
Rob Landleydc0955b2006-03-14 18:16:25 +0000171 if (!strcasecmp(mount_options[i].name, options)) {
Rob Landley6a6798b2005-08-10 20:35:54 +0000172 long fl = mount_options[i].flags;
Denis Vlasenko8d474b52006-09-17 15:00:58 +0000173 if (fl < 0) flags &= fl;
Rob Landleydc0955b2006-03-14 18:16:25 +0000174 else flags |= fl;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000175 break;
176 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000177 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000178 // If unrecognized not NULL, append unrecognized mount options */
Denis Vlasenko80b8b392007-06-25 10:55:35 +0000179 if (unrecognized && i == ARRAY_SIZE(mount_options)) {
Rob Landley6a6798b2005-08-10 20:35:54 +0000180 // Add it to strflags, to pass on to kernel
Rob Landleydc0955b2006-03-14 18:16:25 +0000181 i = *unrecognized ? strlen(*unrecognized) : 0;
182 *unrecognized = xrealloc(*unrecognized, i+strlen(options)+2);
Eric Andersen9601a1c2006-03-20 18:07:50 +0000183
Rob Landley6a6798b2005-08-10 20:35:54 +0000184 // Comma separated if it's not the first one
Rob Landleydc0955b2006-03-14 18:16:25 +0000185 if (i) (*unrecognized)[i++] = ',';
186 strcpy((*unrecognized)+i, options);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000187 }
Eric Andersen9601a1c2006-03-20 18:07:50 +0000188
Rob Landley6a6798b2005-08-10 20:35:54 +0000189 // Advance to next option, or finish
Denis Vlasenko8d474b52006-09-17 15:00:58 +0000190 if (comma) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000191 *comma = ',';
192 options = ++comma;
Rob Landley6a6798b2005-08-10 20:35:54 +0000193 } else break;
Eric Andersencc8ed391999-10-05 16:24:54 +0000194 }
Eric Andersen9601a1c2006-03-20 18:07:50 +0000195
Rob Landleydc0955b2006-03-14 18:16:25 +0000196 return flags;
Eric Andersencc8ed391999-10-05 16:24:54 +0000197}
198
Rob Landleydc0955b2006-03-14 18:16:25 +0000199// Return a list of all block device backed filesystems
Matt Kraai12400822001-04-17 04:32:50 +0000200
Rob Landleydc0955b2006-03-14 18:16:25 +0000201static llist_t *get_block_backed_filesystems(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000202{
Denis Vlasenko87468852007-04-13 23:22:00 +0000203 static const char filesystems[2][sizeof("/proc/filesystems")] = {
Denis Vlasenko372686b2006-10-12 22:42:33 +0000204 "/etc/filesystems",
205 "/proc/filesystems",
Denis Vlasenko372686b2006-10-12 22:42:33 +0000206 };
207 char *fs, *buf;
Rob Landleydc0955b2006-03-14 18:16:25 +0000208 llist_t *list = 0;
209 int i;
210 FILE *f;
Eric Andersencc8ed391999-10-05 16:24:54 +0000211
Denis Vlasenko87468852007-04-13 23:22:00 +0000212 for (i = 0; i < 2; i++) {
Denis Vlasenko8d474b52006-09-17 15:00:58 +0000213 f = fopen(filesystems[i], "r");
214 if (!f) continue;
Eric Andersen9601a1c2006-03-20 18:07:50 +0000215
Denis Vlasenko2d5ca602006-10-12 22:43:20 +0000216 while ((buf = xmalloc_getline(f)) != 0) {
Denis Vlasenko372686b2006-10-12 22:42:33 +0000217 if (!strncmp(buf, "nodev", 5) && isspace(buf[5]))
218 continue;
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000219 fs = skip_whitespace(buf);
Denis Vlasenko372686b2006-10-12 22:42:33 +0000220 if (*fs=='#' || *fs=='*' || !*fs) continue;
Eric Andersen9601a1c2006-03-20 18:07:50 +0000221
Denis Vlasenko372686b2006-10-12 22:42:33 +0000222 llist_add_to_end(&list, xstrdup(fs));
223 free(buf);
Rob Landleydc0955b2006-03-14 18:16:25 +0000224 }
225 if (ENABLE_FEATURE_CLEAN_UP) fclose(f);
226 }
227
228 return list;
229}
230
231llist_t *fslist = 0;
232
Rob Landleydc0955b2006-03-14 18:16:25 +0000233#if ENABLE_FEATURE_CLEAN_UP
234static void delete_block_backed_filesystems(void)
235{
Rob Landleya6b5b602006-05-08 19:03:07 +0000236 llist_free(fslist, free);
Rob Landleydc0955b2006-03-14 18:16:25 +0000237}
Rob Landleyfe908fd2006-03-29 14:30:49 +0000238#else
239void delete_block_backed_filesystems(void);
Rob Landleydc0955b2006-03-14 18:16:25 +0000240#endif
241
242#if ENABLE_FEATURE_MTAB_SUPPORT
Denis Vlasenko00d7d6c2006-09-11 17:42:44 +0000243static int useMtab = 1;
Eric Andersen19b5b8f2006-03-20 18:07:13 +0000244static int fakeIt;
Rob Landleydc0955b2006-03-14 18:16:25 +0000245#else
Denis Vlasenko116080a2006-09-21 11:13:08 +0000246#define useMtab 0
247#define fakeIt 0
Rob Landleydc0955b2006-03-14 18:16:25 +0000248#endif
249
250// Perform actual mount of specific filesystem at specific location.
Denis Vlasenko8d474b52006-09-17 15:00:58 +0000251// NB: mp->xxx fields may be trashed on exit
Denis Vlasenko25098f72006-09-14 15:46:33 +0000252static int mount_it_now(struct mntent *mp, int vfsflags, char *filteropts)
Rob Landleydc0955b2006-03-14 18:16:25 +0000253{
Denis Vlasenkob1726782006-09-29 14:43:20 +0000254 int rc = 0;
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000255
Denis Vlasenkob1726782006-09-29 14:43:20 +0000256 if (fakeIt) goto mtab;
Eric Andersen19b5b8f2006-03-20 18:07:13 +0000257
Rob Landleydc0955b2006-03-14 18:16:25 +0000258 // Mount, with fallback to read-only if necessary.
259
Denis Vlasenko8d474b52006-09-17 15:00:58 +0000260 for (;;) {
Rob Landleydc0955b2006-03-14 18:16:25 +0000261 rc = mount(mp->mnt_fsname, mp->mnt_dir, mp->mnt_type,
262 vfsflags, filteropts);
Denis Vlasenko8d474b52006-09-17 15:00:58 +0000263 if (!rc || (vfsflags&MS_RDONLY) || (errno!=EACCES && errno!=EROFS))
Rob Landleydc0955b2006-03-14 18:16:25 +0000264 break;
265 bb_error_msg("%s is write-protected, mounting read-only",
266 mp->mnt_fsname);
267 vfsflags |= MS_RDONLY;
268 }
269
Rob Landleydc0955b2006-03-14 18:16:25 +0000270 // Abort entirely if permission denied.
271
272 if (rc && errno == EPERM)
273 bb_error_msg_and_die(bb_msg_perm_denied_are_you_root);
274
275 /* If the mount was successful, and we're maintaining an old-style
276 * mtab file by hand, add the new entry to it now. */
Denis Vlasenko6a353c82006-11-19 17:34:57 +0000277 mtab:
Denis Vlasenkofc56dd22006-09-17 15:01:53 +0000278 if (ENABLE_FEATURE_MTAB_SUPPORT && useMtab && !rc && !(vfsflags & MS_REMOUNT)) {
Denis Vlasenkoa52145a2006-09-17 15:09:48 +0000279 char *fsname;
Rob Landleydc0955b2006-03-14 18:16:25 +0000280 FILE *mountTable = setmntent(bb_path_mtab_file, "a+");
281 int i;
282
Denis Vlasenko6a353c82006-11-19 17:34:57 +0000283 if (!mountTable) {
Denis Vlasenko00d7d6c2006-09-11 17:42:44 +0000284 bb_error_msg("no %s",bb_path_mtab_file);
Denis Vlasenko6a353c82006-11-19 17:34:57 +0000285 goto ret;
286 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000287
288 // Add vfs string flags
289
Denis Vlasenkofc56dd22006-09-17 15:01:53 +0000290 for (i=0; mount_options[i].flags != MS_REMOUNT; i++)
Denis Vlasenko25098f72006-09-14 15:46:33 +0000291 if (mount_options[i].flags > 0 && (mount_options[i].flags & vfsflags))
Rob Landleye3781b72006-08-08 01:39:49 +0000292 append_mount_options(&(mp->mnt_opts), mount_options[i].name);
Rob Landleydc0955b2006-03-14 18:16:25 +0000293
294 // Remove trailing / (if any) from directory we mounted on
295
Denis Vlasenko727ef942006-09-14 13:19:19 +0000296 i = strlen(mp->mnt_dir) - 1;
Denis Vlasenkofc56dd22006-09-17 15:01:53 +0000297 if (i > 0 && mp->mnt_dir[i] == '/') mp->mnt_dir[i] = 0;
Denis Vlasenko727ef942006-09-14 13:19:19 +0000298
Denis Vlasenkofc56dd22006-09-17 15:01:53 +0000299 // Convert to canonical pathnames as needed
Denis Vlasenko727ef942006-09-14 13:19:19 +0000300
Denis Vlasenkoa52145a2006-09-17 15:09:48 +0000301 mp->mnt_dir = bb_simplify_path(mp->mnt_dir);
Denis Vlasenkofc56dd22006-09-17 15:01:53 +0000302 fsname = 0;
Denis Vlasenko727ef942006-09-14 13:19:19 +0000303 if (!mp->mnt_type || !*mp->mnt_type) { /* bind mount */
Denis Vlasenkofc56dd22006-09-17 15:01:53 +0000304 mp->mnt_fsname = fsname = bb_simplify_path(mp->mnt_fsname);
Denis Vlasenko06c0a712007-01-29 22:51:44 +0000305 mp->mnt_type = (char*)"bind";
Denis Vlasenko727ef942006-09-14 13:19:19 +0000306 }
Denis Vlasenko25098f72006-09-14 15:46:33 +0000307 mp->mnt_freq = mp->mnt_passno = 0;
Rob Landleydc0955b2006-03-14 18:16:25 +0000308
309 // Write and close.
310
Denis Vlasenko727ef942006-09-14 13:19:19 +0000311 addmntent(mountTable, mp);
Rob Landleydc0955b2006-03-14 18:16:25 +0000312 endmntent(mountTable);
Denis Vlasenkofc56dd22006-09-17 15:01:53 +0000313 if (ENABLE_FEATURE_CLEAN_UP) {
Denis Vlasenkoa52145a2006-09-17 15:09:48 +0000314 free(mp->mnt_dir);
Denis Vlasenkofc56dd22006-09-17 15:01:53 +0000315 free(fsname);
316 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000317 }
Denis Vlasenko6a353c82006-11-19 17:34:57 +0000318 ret:
Rob Landleydc0955b2006-03-14 18:16:25 +0000319 return rc;
320}
321
Denis Vlasenko25098f72006-09-14 15:46:33 +0000322#if ENABLE_FEATURE_MOUNT_NFS
323
324/*
325 * Linux NFS mount
326 * Copyright (C) 1993 Rick Sladkey <jrs@world.std.com>
327 *
328 * Licensed under GPLv2, see file LICENSE in this tarball for details.
329 *
330 * Wed Feb 8 12:51:48 1995, biro@yggdrasil.com (Ross Biro): allow all port
331 * numbers to be specified on the command line.
332 *
333 * Fri, 8 Mar 1996 18:01:39, Swen Thuemmler <swen@uni-paderborn.de>:
334 * Omit the call to connect() for Linux version 1.3.11 or later.
335 *
336 * Wed Oct 1 23:55:28 1997: Dick Streefland <dick_streefland@tasking.com>
337 * Implemented the "bg", "fg" and "retry" mount options for NFS.
338 *
339 * 1999-02-22 Arkadiusz Mi¶kiewicz <misiek@misiek.eu.org>
340 * - added Native Language Support
341 *
342 * Modified by Olaf Kirch and Trond Myklebust for new NFS code,
343 * plus NFSv3 stuff.
344 */
345
Denis Vlasenko25098f72006-09-14 15:46:33 +0000346/* This is just a warning of a common mistake. Possibly this should be a
347 * uclibc faq entry rather than in busybox... */
Denis Vlasenko30a64cd2006-09-15 15:12:00 +0000348#if defined(__UCLIBC__) && ! defined(__UCLIBC_HAS_RPC__)
Denis Vlasenko25098f72006-09-14 15:46:33 +0000349#error "You need to build uClibc with UCLIBC_HAS_RPC for NFS support."
350#endif
351
352#define MOUNTPORT 635
353#define MNTPATHLEN 1024
354#define MNTNAMLEN 255
355#define FHSIZE 32
356#define FHSIZE3 64
357
358typedef char fhandle[FHSIZE];
359
360typedef struct {
361 unsigned int fhandle3_len;
362 char *fhandle3_val;
363} fhandle3;
364
365enum mountstat3 {
366 MNT_OK = 0,
367 MNT3ERR_PERM = 1,
368 MNT3ERR_NOENT = 2,
369 MNT3ERR_IO = 5,
370 MNT3ERR_ACCES = 13,
371 MNT3ERR_NOTDIR = 20,
372 MNT3ERR_INVAL = 22,
373 MNT3ERR_NAMETOOLONG = 63,
374 MNT3ERR_NOTSUPP = 10004,
375 MNT3ERR_SERVERFAULT = 10006,
376};
377typedef enum mountstat3 mountstat3;
378
379struct fhstatus {
380 unsigned int fhs_status;
381 union {
382 fhandle fhs_fhandle;
383 } fhstatus_u;
384};
385typedef struct fhstatus fhstatus;
386
387struct mountres3_ok {
388 fhandle3 fhandle;
389 struct {
390 unsigned int auth_flavours_len;
391 char *auth_flavours_val;
392 } auth_flavours;
393};
394typedef struct mountres3_ok mountres3_ok;
395
396struct mountres3 {
397 mountstat3 fhs_status;
398 union {
399 mountres3_ok mountinfo;
400 } mountres3_u;
401};
402typedef struct mountres3 mountres3;
403
404typedef char *dirpath;
405
406typedef char *name;
407
408typedef struct mountbody *mountlist;
409
410struct mountbody {
411 name ml_hostname;
412 dirpath ml_directory;
413 mountlist ml_next;
414};
415typedef struct mountbody mountbody;
416
417typedef struct groupnode *groups;
418
419struct groupnode {
420 name gr_name;
421 groups gr_next;
422};
423typedef struct groupnode groupnode;
424
425typedef struct exportnode *exports;
426
427struct exportnode {
428 dirpath ex_dir;
429 groups ex_groups;
430 exports ex_next;
431};
432typedef struct exportnode exportnode;
433
434struct ppathcnf {
435 int pc_link_max;
436 short pc_max_canon;
437 short pc_max_input;
438 short pc_name_max;
439 short pc_path_max;
440 short pc_pipe_buf;
Denis Vlasenko28703012006-12-19 20:32:02 +0000441 uint8_t pc_vdisable;
Denis Vlasenko25098f72006-09-14 15:46:33 +0000442 char pc_xxx;
443 short pc_mask[2];
444};
445typedef struct ppathcnf ppathcnf;
446
447#define MOUNTPROG 100005
448#define MOUNTVERS 1
449
450#define MOUNTPROC_NULL 0
451#define MOUNTPROC_MNT 1
452#define MOUNTPROC_DUMP 2
453#define MOUNTPROC_UMNT 3
454#define MOUNTPROC_UMNTALL 4
455#define MOUNTPROC_EXPORT 5
456#define MOUNTPROC_EXPORTALL 6
457
458#define MOUNTVERS_POSIX 2
459
460#define MOUNTPROC_PATHCONF 7
461
462#define MOUNT_V3 3
463
464#define MOUNTPROC3_NULL 0
465#define MOUNTPROC3_MNT 1
466#define MOUNTPROC3_DUMP 2
467#define MOUNTPROC3_UMNT 3
468#define MOUNTPROC3_UMNTALL 4
469#define MOUNTPROC3_EXPORT 5
470
471enum {
472#ifndef NFS_FHSIZE
473 NFS_FHSIZE = 32,
474#endif
475#ifndef NFS_PORT
476 NFS_PORT = 2049
477#endif
478};
479
Denis Vlasenko25098f72006-09-14 15:46:33 +0000480/*
481 * We want to be able to compile mount on old kernels in such a way
482 * that the binary will work well on more recent kernels.
483 * Thus, if necessary we teach nfsmount.c the structure of new fields
484 * that will come later.
485 *
486 * Moreover, the new kernel includes conflict with glibc includes
487 * so it is easiest to ignore the kernel altogether (at compile time).
488 */
489
490struct nfs2_fh {
491 char data[32];
492};
493struct nfs3_fh {
494 unsigned short size;
495 unsigned char data[64];
496};
497
498struct nfs_mount_data {
499 int version; /* 1 */
500 int fd; /* 1 */
501 struct nfs2_fh old_root; /* 1 */
502 int flags; /* 1 */
503 int rsize; /* 1 */
504 int wsize; /* 1 */
505 int timeo; /* 1 */
506 int retrans; /* 1 */
507 int acregmin; /* 1 */
508 int acregmax; /* 1 */
509 int acdirmin; /* 1 */
510 int acdirmax; /* 1 */
511 struct sockaddr_in addr; /* 1 */
512 char hostname[256]; /* 1 */
513 int namlen; /* 2 */
514 unsigned int bsize; /* 3 */
515 struct nfs3_fh root; /* 4 */
516};
517
518/* bits in the flags field */
519enum {
520 NFS_MOUNT_SOFT = 0x0001, /* 1 */
521 NFS_MOUNT_INTR = 0x0002, /* 1 */
522 NFS_MOUNT_SECURE = 0x0004, /* 1 */
523 NFS_MOUNT_POSIX = 0x0008, /* 1 */
524 NFS_MOUNT_NOCTO = 0x0010, /* 1 */
525 NFS_MOUNT_NOAC = 0x0020, /* 1 */
526 NFS_MOUNT_TCP = 0x0040, /* 2 */
527 NFS_MOUNT_VER3 = 0x0080, /* 3 */
528 NFS_MOUNT_KERBEROS = 0x0100, /* 3 */
529 NFS_MOUNT_NONLM = 0x0200 /* 3 */
530};
531
532
533/*
534 * We need to translate between nfs status return values and
535 * the local errno values which may not be the same.
536 *
537 * Andreas Schwab <schwab@LS5.informatik.uni-dortmund.de>: change errno:
538 * "after #include <errno.h> the symbol errno is reserved for any use,
539 * it cannot even be used as a struct tag or field name".
540 */
541
542#ifndef EDQUOT
543#define EDQUOT ENOSPC
544#endif
545
546// Convert each NFSERR_BLAH into EBLAH
547
548static const struct {
549 int stat;
550 int errnum;
551} nfs_errtbl[] = {
552 {0,0}, {1,EPERM}, {2,ENOENT}, {5,EIO}, {6,ENXIO}, {13,EACCES}, {17,EEXIST},
553 {19,ENODEV}, {20,ENOTDIR}, {21,EISDIR}, {22,EINVAL}, {27,EFBIG},
554 {28,ENOSPC}, {30,EROFS}, {63,ENAMETOOLONG}, {66,ENOTEMPTY}, {69,EDQUOT},
555 {70,ESTALE}, {71,EREMOTE}, {-1,EIO}
556};
557
558static char *nfs_strerror(int status)
559{
560 int i;
Denis Vlasenkoc0975192006-09-17 15:06:34 +0000561 static char buf[sizeof("unknown nfs status return value: ") + sizeof(int)*3];
Denis Vlasenko25098f72006-09-14 15:46:33 +0000562
563 for (i = 0; nfs_errtbl[i].stat != -1; i++) {
564 if (nfs_errtbl[i].stat == status)
565 return strerror(nfs_errtbl[i].errnum);
566 }
567 sprintf(buf, "unknown nfs status return value: %d", status);
568 return buf;
569}
570
571static bool_t xdr_fhandle(XDR *xdrs, fhandle objp)
572{
573 if (!xdr_opaque(xdrs, objp, FHSIZE))
574 return FALSE;
575 return TRUE;
576}
577
578static bool_t xdr_fhstatus(XDR *xdrs, fhstatus *objp)
579{
580 if (!xdr_u_int(xdrs, &objp->fhs_status))
581 return FALSE;
582 switch (objp->fhs_status) {
583 case 0:
584 if (!xdr_fhandle(xdrs, objp->fhstatus_u.fhs_fhandle))
585 return FALSE;
586 break;
587 default:
588 break;
589 }
590 return TRUE;
591}
592
593static bool_t xdr_dirpath(XDR *xdrs, dirpath *objp)
594{
595 if (!xdr_string(xdrs, objp, MNTPATHLEN))
596 return FALSE;
597 return TRUE;
598}
599
600static bool_t xdr_fhandle3(XDR *xdrs, fhandle3 *objp)
601{
602 if (!xdr_bytes(xdrs, (char **)&objp->fhandle3_val, (unsigned int *) &objp->fhandle3_len, FHSIZE3))
603 return FALSE;
604 return TRUE;
605}
606
607static bool_t xdr_mountres3_ok(XDR *xdrs, mountres3_ok *objp)
608{
609 if (!xdr_fhandle3(xdrs, &objp->fhandle))
610 return FALSE;
611 if (!xdr_array(xdrs, &(objp->auth_flavours.auth_flavours_val), &(objp->auth_flavours.auth_flavours_len), ~0,
612 sizeof (int), (xdrproc_t) xdr_int))
613 return FALSE;
614 return TRUE;
615}
616
617static bool_t xdr_mountstat3(XDR *xdrs, mountstat3 *objp)
618{
619 if (!xdr_enum(xdrs, (enum_t *) objp))
620 return FALSE;
621 return TRUE;
622}
623
624static bool_t xdr_mountres3(XDR *xdrs, mountres3 *objp)
625{
626 if (!xdr_mountstat3(xdrs, &objp->fhs_status))
627 return FALSE;
628 switch (objp->fhs_status) {
629 case MNT_OK:
630 if (!xdr_mountres3_ok(xdrs, &objp->mountres3_u.mountinfo))
631 return FALSE;
632 break;
633 default:
634 break;
635 }
636 return TRUE;
637}
638
639#define MAX_NFSPROT ((nfs_mount_version >= 4) ? 3 : 2)
640
641/*
642 * nfs_mount_version according to the sources seen at compile time.
643 */
644static int nfs_mount_version;
645static int kernel_version;
646
647/*
648 * Unfortunately, the kernel prints annoying console messages
649 * in case of an unexpected nfs mount version (instead of
650 * just returning some error). Therefore we'll have to try
651 * and figure out what version the kernel expects.
652 *
653 * Variables:
654 * KERNEL_NFS_MOUNT_VERSION: kernel sources at compile time
655 * NFS_MOUNT_VERSION: these nfsmount sources at compile time
656 * nfs_mount_version: version this source and running kernel can handle
657 */
658static void
659find_kernel_nfs_mount_version(void)
660{
661 if (kernel_version)
662 return;
663
664 nfs_mount_version = 4; /* default */
665
666 kernel_version = get_linux_version_code();
667 if (kernel_version) {
668 if (kernel_version < KERNEL_VERSION(2,1,32))
669 nfs_mount_version = 1;
670 else if (kernel_version < KERNEL_VERSION(2,2,18) ||
671 (kernel_version >= KERNEL_VERSION(2,3,0) &&
672 kernel_version < KERNEL_VERSION(2,3,99)))
673 nfs_mount_version = 3;
674 /* else v4 since 2.3.99pre4 */
675 }
676}
677
678static struct pmap *
679get_mountport(struct sockaddr_in *server_addr,
680 long unsigned prog,
681 long unsigned version,
682 long unsigned proto,
683 long unsigned port)
684{
685 struct pmaplist *pmap;
686 static struct pmap p = {0, 0, 0, 0};
687
688 server_addr->sin_port = PMAPPORT;
Denis Vlasenko5870ad92007-02-04 02:39:55 +0000689/* glibc 2.4 (still) has pmap_getmaps(struct sockaddr_in *).
690 * I understand it like "IPv6 for this is not 100% ready" */
Denis Vlasenko25098f72006-09-14 15:46:33 +0000691 pmap = pmap_getmaps(server_addr);
692
693 if (version > MAX_NFSPROT)
694 version = MAX_NFSPROT;
695 if (!prog)
696 prog = MOUNTPROG;
697 p.pm_prog = prog;
698 p.pm_vers = version;
699 p.pm_prot = proto;
700 p.pm_port = port;
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000701
Denis Vlasenko25098f72006-09-14 15:46:33 +0000702 while (pmap) {
703 if (pmap->pml_map.pm_prog != prog)
704 goto next;
705 if (!version && p.pm_vers > pmap->pml_map.pm_vers)
706 goto next;
707 if (version > 2 && pmap->pml_map.pm_vers != version)
708 goto next;
709 if (version && version <= 2 && pmap->pml_map.pm_vers > 2)
710 goto next;
711 if (pmap->pml_map.pm_vers > MAX_NFSPROT ||
712 (proto && p.pm_prot && pmap->pml_map.pm_prot != proto) ||
713 (port && pmap->pml_map.pm_port != port))
714 goto next;
715 memcpy(&p, &pmap->pml_map, sizeof(p));
716next:
717 pmap = pmap->pml_next;
718 }
719 if (!p.pm_vers)
720 p.pm_vers = MOUNTVERS;
721 if (!p.pm_port)
722 p.pm_port = MOUNTPORT;
723 if (!p.pm_prot)
724 p.pm_prot = IPPROTO_TCP;
725 return &p;
726}
727
728static int daemonize(void)
729{
730 int fd;
731 int pid = fork();
732 if (pid < 0) /* error */
733 return -errno;
734 if (pid > 0) /* parent */
735 return 0;
736 /* child */
737 fd = xopen(bb_dev_null, O_RDWR);
738 dup2(fd, 0);
739 dup2(fd, 1);
740 dup2(fd, 2);
Denis Vlasenko9af7c9d2007-01-19 21:19:35 +0000741 while (fd > 2) close(fd--);
Denis Vlasenko25098f72006-09-14 15:46:33 +0000742 setsid();
Denis Vlasenko8f8f2682006-10-03 21:00:43 +0000743 openlog(applet_name, LOG_PID, LOG_DAEMON);
Denis Vlasenko25098f72006-09-14 15:46:33 +0000744 logmode = LOGMODE_SYSLOG;
745 return 1;
746}
747
748// TODO
749static inline int we_saw_this_host_before(const char *hostname)
750{
751 return 0;
752}
753
754/* RPC strerror analogs are terminally idiotic:
755 * *mandatory* prefix and \n at end.
756 * This hopefully helps. Usage:
757 * error_msg_rpc(clnt_*error*(" ")) */
758static void error_msg_rpc(const char *msg)
759{
Denis Vlasenko23514fe2006-09-19 14:07:52 +0000760 int len;
Denis Vlasenko25098f72006-09-14 15:46:33 +0000761 while (msg[0] == ' ' || msg[0] == ':') msg++;
762 len = strlen(msg);
763 while (len && msg[len-1] == '\n') len--;
764 bb_error_msg("%.*s", len, msg);
765}
766
Denis Vlasenko3bc59aa2006-09-17 15:04:01 +0000767// NB: mp->xxx fields may be trashed on exit
Denis Vlasenko25098f72006-09-14 15:46:33 +0000768static int nfsmount(struct mntent *mp, int vfsflags, char *filteropts)
769{
770 CLIENT *mclient;
771 char *hostname;
772 char *pathname;
773 char *mounthost;
774 struct nfs_mount_data data;
775 char *opt;
776 struct hostent *hp;
777 struct sockaddr_in server_addr;
778 struct sockaddr_in mount_server_addr;
779 int msock, fsock;
780 union {
781 struct fhstatus nfsv2;
782 struct mountres3 nfsv3;
783 } status;
784 int daemonized;
785 char *s;
786 int port;
787 int mountport;
788 int proto;
789 int bg;
790 int soft;
791 int intr;
792 int posix;
793 int nocto;
794 int noac;
795 int nolock;
796 int retry;
797 int tcp;
798 int mountprog;
799 int mountvers;
800 int nfsprog;
801 int nfsvers;
802 int retval;
803
804 find_kernel_nfs_mount_version();
805
806 daemonized = 0;
807 mounthost = NULL;
808 retval = ETIMEDOUT;
809 msock = fsock = -1;
810 mclient = NULL;
811
812 /* NB: hostname, mounthost, filteropts must be free()d prior to return */
813
814 filteropts = xstrdup(filteropts); /* going to trash it later... */
815
816 hostname = xstrdup(mp->mnt_fsname);
817 /* mount_main() guarantees that ':' is there */
818 s = strchr(hostname, ':');
819 pathname = s + 1;
820 *s = '\0';
821 /* Ignore all but first hostname in replicated mounts
822 until they can be fully supported. (mack@sgi.com) */
823 s = strchr(hostname, ',');
824 if (s) {
825 *s = '\0';
826 bb_error_msg("warning: multiple hostnames not supported");
827 }
828
829 server_addr.sin_family = AF_INET;
830 if (!inet_aton(hostname, &server_addr.sin_addr)) {
831 hp = gethostbyname(hostname);
832 if (hp == NULL) {
833 bb_herror_msg("%s", hostname);
834 goto fail;
835 }
836 if (hp->h_length > sizeof(struct in_addr)) {
837 bb_error_msg("got bad hp->h_length");
838 hp->h_length = sizeof(struct in_addr);
839 }
840 memcpy(&server_addr.sin_addr,
841 hp->h_addr, hp->h_length);
842 }
843
844 memcpy(&mount_server_addr, &server_addr, sizeof(mount_server_addr));
845
846 /* add IP address to mtab options for use when unmounting */
847
848 if (!mp->mnt_opts) { /* TODO: actually mp->mnt_opts is never NULL */
849 mp->mnt_opts = xasprintf("addr=%s", inet_ntoa(server_addr.sin_addr));
850 } else {
851 char *tmp = xasprintf("%s%saddr=%s", mp->mnt_opts,
852 mp->mnt_opts[0] ? "," : "",
853 inet_ntoa(server_addr.sin_addr));
854 free(mp->mnt_opts);
855 mp->mnt_opts = tmp;
856 }
857
858 /* Set default options.
859 * rsize/wsize (and bsize, for ver >= 3) are left 0 in order to
860 * let the kernel decide.
861 * timeo is filled in after we know whether it'll be TCP or UDP. */
862 memset(&data, 0, sizeof(data));
863 data.retrans = 3;
864 data.acregmin = 3;
865 data.acregmax = 60;
866 data.acdirmin = 30;
867 data.acdirmax = 60;
868 data.namlen = NAME_MAX;
869
870 bg = 0;
871 soft = 0;
872 intr = 0;
873 posix = 0;
874 nocto = 0;
875 nolock = 0;
876 noac = 0;
877 retry = 10000; /* 10000 minutes ~ 1 week */
878 tcp = 0;
879
880 mountprog = MOUNTPROG;
881 mountvers = 0;
882 port = 0;
883 mountport = 0;
884 nfsprog = 100003;
885 nfsvers = 0;
886
887 /* parse options */
Denis Vlasenko68de7202007-05-09 20:38:04 +0000888 if (filteropts) for (opt = strtok(filteropts, ","); opt; opt = strtok(NULL, ",")) {
Denis Vlasenko25098f72006-09-14 15:46:33 +0000889 char *opteq = strchr(opt, '=');
890 if (opteq) {
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000891 static const char options[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000892 /* 0 */ "rsize\0"
893 /* 1 */ "wsize\0"
894 /* 2 */ "timeo\0"
895 /* 3 */ "retrans\0"
896 /* 4 */ "acregmin\0"
897 /* 5 */ "acregmax\0"
898 /* 6 */ "acdirmin\0"
899 /* 7 */ "acdirmax\0"
900 /* 8 */ "actimeo\0"
901 /* 9 */ "retry\0"
902 /* 10 */ "port\0"
903 /* 11 */ "mountport\0"
904 /* 12 */ "mounthost\0"
905 /* 13 */ "mountprog\0"
906 /* 14 */ "mountvers\0"
907 /* 15 */ "nfsprog\0"
908 /* 16 */ "nfsvers\0"
909 /* 17 */ "vers\0"
910 /* 18 */ "proto\0"
911 /* 19 */ "namlen\0"
912 /* 20 */ "addr\0";
Denis Vlasenko13858992006-10-08 12:49:22 +0000913 int val = xatoi_u(opteq + 1);
Denis Vlasenko25098f72006-09-14 15:46:33 +0000914 *opteq = '\0';
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000915 switch (index_in_strings(options, opt)) {
Denis Vlasenko68f21872006-10-26 01:47:34 +0000916 case 0: // "rsize"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000917 data.rsize = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000918 break;
919 case 1: // "wsize"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000920 data.wsize = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000921 break;
922 case 2: // "timeo"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000923 data.timeo = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000924 break;
925 case 3: // "retrans"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000926 data.retrans = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000927 break;
928 case 4: // "acregmin"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000929 data.acregmin = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000930 break;
931 case 5: // "acregmax"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000932 data.acregmax = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000933 break;
934 case 6: // "acdirmin"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000935 data.acdirmin = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000936 break;
937 case 7: // "acdirmax"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000938 data.acdirmax = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000939 break;
940 case 8: // "actimeo"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000941 data.acregmin = val;
942 data.acregmax = val;
943 data.acdirmin = val;
944 data.acdirmax = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000945 break;
946 case 9: // "retry"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000947 retry = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000948 break;
949 case 10: // "port"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000950 port = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000951 break;
952 case 11: // "mountport"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000953 mountport = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000954 break;
955 case 12: // "mounthost"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000956 mounthost = xstrndup(opteq+1,
Denis Vlasenko5af906e2006-11-05 18:05:09 +0000957 strcspn(opteq+1," \t\n\r,"));
Denis Vlasenko68f21872006-10-26 01:47:34 +0000958 break;
959 case 13: // "mountprog"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000960 mountprog = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000961 break;
962 case 14: // "mountvers"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000963 mountvers = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000964 break;
965 case 15: // "nfsprog"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000966 nfsprog = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000967 break;
968 case 16: // "nfsvers"
969 case 17: // "vers"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000970 nfsvers = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +0000971 break;
972 case 18: // "proto"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000973 if (!strncmp(opteq+1, "tcp", 3))
974 tcp = 1;
975 else if (!strncmp(opteq+1, "udp", 3))
976 tcp = 0;
977 else
978 bb_error_msg("warning: unrecognized proto= option");
Denis Vlasenko68f21872006-10-26 01:47:34 +0000979 break;
980 case 19: // "namlen"
Denis Vlasenko25098f72006-09-14 15:46:33 +0000981 if (nfs_mount_version >= 2)
982 data.namlen = val;
983 else
984 bb_error_msg("warning: option namlen is not supported\n");
Denis Vlasenko68f21872006-10-26 01:47:34 +0000985 break;
986 case 20: // "addr" - ignore
987 break;
988 default:
Denis Vlasenko25098f72006-09-14 15:46:33 +0000989 bb_error_msg("unknown nfs mount parameter: %s=%d", opt, val);
990 goto fail;
991 }
992 }
993 else {
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000994 static const char options[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000995 "bg\0"
996 "fg\0"
997 "soft\0"
998 "hard\0"
999 "intr\0"
1000 "posix\0"
1001 "cto\0"
1002 "ac\0"
1003 "tcp\0"
1004 "udp\0"
1005 "lock\0";
Denis Vlasenko25098f72006-09-14 15:46:33 +00001006 int val = 1;
1007 if (!strncmp(opt, "no", 2)) {
1008 val = 0;
1009 opt += 2;
1010 }
Denis Vlasenko990d0f62007-07-24 15:54:42 +00001011 switch (index_in_strings(options, opt)) {
Denis Vlasenko68f21872006-10-26 01:47:34 +00001012 case 0: // "bg"
Denis Vlasenko25098f72006-09-14 15:46:33 +00001013 bg = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +00001014 break;
1015 case 1: // "fg"
Denis Vlasenko25098f72006-09-14 15:46:33 +00001016 bg = !val;
Denis Vlasenko68f21872006-10-26 01:47:34 +00001017 break;
1018 case 2: // "soft"
Denis Vlasenko25098f72006-09-14 15:46:33 +00001019 soft = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +00001020 break;
1021 case 3: // "hard"
Denis Vlasenko25098f72006-09-14 15:46:33 +00001022 soft = !val;
Denis Vlasenko68f21872006-10-26 01:47:34 +00001023 break;
1024 case 4: // "intr"
Denis Vlasenko25098f72006-09-14 15:46:33 +00001025 intr = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +00001026 break;
1027 case 5: // "posix"
Denis Vlasenko25098f72006-09-14 15:46:33 +00001028 posix = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +00001029 break;
1030 case 6: // "cto"
Denis Vlasenko25098f72006-09-14 15:46:33 +00001031 nocto = !val;
Denis Vlasenko68f21872006-10-26 01:47:34 +00001032 break;
1033 case 7: // "ac"
Denis Vlasenko25098f72006-09-14 15:46:33 +00001034 noac = !val;
Denis Vlasenko68f21872006-10-26 01:47:34 +00001035 break;
1036 case 8: // "tcp"
Denis Vlasenko25098f72006-09-14 15:46:33 +00001037 tcp = val;
Denis Vlasenko68f21872006-10-26 01:47:34 +00001038 break;
1039 case 9: // "udp"
Denis Vlasenko25098f72006-09-14 15:46:33 +00001040 tcp = !val;
Denis Vlasenko68f21872006-10-26 01:47:34 +00001041 break;
1042 case 10: // "lock"
Denis Vlasenko25098f72006-09-14 15:46:33 +00001043 if (nfs_mount_version >= 3)
1044 nolock = !val;
1045 else
1046 bb_error_msg("warning: option nolock is not supported");
Denis Vlasenko68f21872006-10-26 01:47:34 +00001047 break;
1048 default:
Denis Vlasenko25098f72006-09-14 15:46:33 +00001049 bb_error_msg("unknown nfs mount option: %s%s", val ? "" : "no", opt);
1050 goto fail;
1051 }
1052 }
1053 }
1054 proto = (tcp) ? IPPROTO_TCP : IPPROTO_UDP;
1055
1056 data.flags = (soft ? NFS_MOUNT_SOFT : 0)
1057 | (intr ? NFS_MOUNT_INTR : 0)
1058 | (posix ? NFS_MOUNT_POSIX : 0)
1059 | (nocto ? NFS_MOUNT_NOCTO : 0)
1060 | (noac ? NFS_MOUNT_NOAC : 0);
1061 if (nfs_mount_version >= 2)
1062 data.flags |= (tcp ? NFS_MOUNT_TCP : 0);
1063 if (nfs_mount_version >= 3)
1064 data.flags |= (nolock ? NFS_MOUNT_NONLM : 0);
1065 if (nfsvers > MAX_NFSPROT || mountvers > MAX_NFSPROT) {
1066 bb_error_msg("NFSv%d not supported", nfsvers);
1067 goto fail;
1068 }
1069 if (nfsvers && !mountvers)
1070 mountvers = (nfsvers < 3) ? 1 : nfsvers;
1071 if (nfsvers && nfsvers < mountvers) {
1072 mountvers = nfsvers;
1073 }
1074
1075 /* Adjust options if none specified */
1076 if (!data.timeo)
1077 data.timeo = tcp ? 70 : 7;
1078
Denis Vlasenko25098f72006-09-14 15:46:33 +00001079 data.version = nfs_mount_version;
1080
1081 if (vfsflags & MS_REMOUNT)
1082 goto do_mount;
1083
1084 /*
1085 * If the previous mount operation on the same host was
1086 * backgrounded, and the "bg" for this mount is also set,
1087 * give up immediately, to avoid the initial timeout.
1088 */
1089 if (bg && we_saw_this_host_before(hostname)) {
Denis Vlasenko7d8de4d2007-08-28 11:23:23 +00001090 daemonized = daemonize();
Denis Vlasenko25098f72006-09-14 15:46:33 +00001091 if (daemonized <= 0) { /* parent or error */
1092 retval = -daemonized;
1093 goto ret;
1094 }
1095 }
1096
1097 /* create mount daemon client */
1098 /* See if the nfs host = mount host. */
1099 if (mounthost) {
1100 if (mounthost[0] >= '0' && mounthost[0] <= '9') {
1101 mount_server_addr.sin_family = AF_INET;
1102 mount_server_addr.sin_addr.s_addr = inet_addr(hostname);
1103 } else {
1104 hp = gethostbyname(mounthost);
1105 if (hp == NULL) {
1106 bb_herror_msg("%s", mounthost);
1107 goto fail;
1108 } else {
1109 if (hp->h_length > sizeof(struct in_addr)) {
1110 bb_error_msg("got bad hp->h_length?");
1111 hp->h_length = sizeof(struct in_addr);
1112 }
1113 mount_server_addr.sin_family = AF_INET;
1114 memcpy(&mount_server_addr.sin_addr,
1115 hp->h_addr, hp->h_length);
1116 }
1117 }
1118 }
1119
1120 /*
1121 * The following loop implements the mount retries. When the mount
1122 * times out, and the "bg" option is set, we background ourself
1123 * and continue trying.
1124 *
1125 * The case where the mount point is not present and the "bg"
1126 * option is set, is treated as a timeout. This is done to
1127 * support nested mounts.
1128 *
1129 * The "retry" count specified by the user is the number of
1130 * minutes to retry before giving up.
1131 */
1132 {
1133 struct timeval total_timeout;
1134 struct timeval retry_timeout;
1135 struct pmap* pm_mnt;
1136 time_t t;
1137 time_t prevt;
1138 time_t timeout;
1139
1140 retry_timeout.tv_sec = 3;
1141 retry_timeout.tv_usec = 0;
1142 total_timeout.tv_sec = 20;
1143 total_timeout.tv_usec = 0;
1144 timeout = time(NULL) + 60 * retry;
1145 prevt = 0;
1146 t = 30;
1147retry:
1148 /* be careful not to use too many CPU cycles */
1149 if (t - prevt < 30)
1150 sleep(30);
1151
1152 pm_mnt = get_mountport(&mount_server_addr,
1153 mountprog,
1154 mountvers,
1155 proto,
1156 mountport);
1157 nfsvers = (pm_mnt->pm_vers < 2) ? 2 : pm_mnt->pm_vers;
1158
1159 /* contact the mount daemon via TCP */
1160 mount_server_addr.sin_port = htons(pm_mnt->pm_port);
1161 msock = RPC_ANYSOCK;
1162
1163 switch (pm_mnt->pm_prot) {
1164 case IPPROTO_UDP:
1165 mclient = clntudp_create(&mount_server_addr,
1166 pm_mnt->pm_prog,
1167 pm_mnt->pm_vers,
1168 retry_timeout,
1169 &msock);
1170 if (mclient)
1171 break;
1172 mount_server_addr.sin_port = htons(pm_mnt->pm_port);
1173 msock = RPC_ANYSOCK;
1174 case IPPROTO_TCP:
1175 mclient = clnttcp_create(&mount_server_addr,
1176 pm_mnt->pm_prog,
1177 pm_mnt->pm_vers,
1178 &msock, 0, 0);
1179 break;
1180 default:
Denis Vlasenko7d8de4d2007-08-28 11:23:23 +00001181 mclient = NULL;
Denis Vlasenko25098f72006-09-14 15:46:33 +00001182 }
1183 if (!mclient) {
1184 if (!daemonized && prevt == 0)
1185 error_msg_rpc(clnt_spcreateerror(" "));
1186 } else {
1187 enum clnt_stat clnt_stat;
1188 /* try to mount hostname:pathname */
1189 mclient->cl_auth = authunix_create_default();
1190
1191 /* make pointers in xdr_mountres3 NULL so
1192 * that xdr_array allocates memory for us
1193 */
1194 memset(&status, 0, sizeof(status));
1195
1196 if (pm_mnt->pm_vers == 3)
1197 clnt_stat = clnt_call(mclient, MOUNTPROC3_MNT,
1198 (xdrproc_t) xdr_dirpath,
1199 (caddr_t) &pathname,
1200 (xdrproc_t) xdr_mountres3,
1201 (caddr_t) &status,
1202 total_timeout);
1203 else
1204 clnt_stat = clnt_call(mclient, MOUNTPROC_MNT,
1205 (xdrproc_t) xdr_dirpath,
1206 (caddr_t) &pathname,
1207 (xdrproc_t) xdr_fhstatus,
1208 (caddr_t) &status,
1209 total_timeout);
1210
1211 if (clnt_stat == RPC_SUCCESS)
1212 goto prepare_kernel_data; /* we're done */
1213 if (errno != ECONNREFUSED) {
1214 error_msg_rpc(clnt_sperror(mclient, " "));
1215 goto fail; /* don't retry */
1216 }
1217 /* Connection refused */
1218 if (!daemonized && prevt == 0) /* print just once */
1219 error_msg_rpc(clnt_sperror(mclient, " "));
1220 auth_destroy(mclient->cl_auth);
1221 clnt_destroy(mclient);
Denis Vlasenko7d8de4d2007-08-28 11:23:23 +00001222 mclient = NULL;
Denis Vlasenko25098f72006-09-14 15:46:33 +00001223 close(msock);
Denis Vlasenko7d8de4d2007-08-28 11:23:23 +00001224 msock = -1;
Denis Vlasenko25098f72006-09-14 15:46:33 +00001225 }
1226
1227 /* Timeout. We are going to retry... maybe */
1228
1229 if (!bg)
1230 goto fail;
1231 if (!daemonized) {
1232 daemonized = daemonize();
1233 if (daemonized <= 0) { /* parent or error */
1234 retval = -daemonized;
1235 goto ret;
1236 }
1237 }
1238 prevt = t;
1239 t = time(NULL);
1240 if (t >= timeout)
1241 /* TODO error message */
1242 goto fail;
1243
1244 goto retry;
1245 }
1246
1247prepare_kernel_data:
1248
1249 if (nfsvers == 2) {
1250 if (status.nfsv2.fhs_status != 0) {
1251 bb_error_msg("%s:%s failed, reason given by server: %s",
1252 hostname, pathname,
1253 nfs_strerror(status.nfsv2.fhs_status));
1254 goto fail;
1255 }
1256 memcpy(data.root.data,
1257 (char *) status.nfsv2.fhstatus_u.fhs_fhandle,
1258 NFS_FHSIZE);
1259 data.root.size = NFS_FHSIZE;
1260 memcpy(data.old_root.data,
1261 (char *) status.nfsv2.fhstatus_u.fhs_fhandle,
1262 NFS_FHSIZE);
1263 } else {
1264 fhandle3 *my_fhandle;
1265 if (status.nfsv3.fhs_status != 0) {
1266 bb_error_msg("%s:%s failed, reason given by server: %s",
1267 hostname, pathname,
1268 nfs_strerror(status.nfsv3.fhs_status));
1269 goto fail;
1270 }
1271 my_fhandle = &status.nfsv3.mountres3_u.mountinfo.fhandle;
1272 memset(data.old_root.data, 0, NFS_FHSIZE);
1273 memset(&data.root, 0, sizeof(data.root));
1274 data.root.size = my_fhandle->fhandle3_len;
1275 memcpy(data.root.data,
1276 (char *) my_fhandle->fhandle3_val,
1277 my_fhandle->fhandle3_len);
1278
1279 data.flags |= NFS_MOUNT_VER3;
1280 }
1281
1282 /* create nfs socket for kernel */
1283
1284 if (tcp) {
1285 if (nfs_mount_version < 3) {
1286 bb_error_msg("NFS over TCP is not supported");
1287 goto fail;
1288 }
1289 fsock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
1290 } else
1291 fsock = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
1292 if (fsock < 0) {
1293 bb_perror_msg("nfs socket");
1294 goto fail;
1295 }
1296 if (bindresvport(fsock, 0) < 0) {
1297 bb_perror_msg("nfs bindresvport");
1298 goto fail;
1299 }
1300 if (port == 0) {
1301 server_addr.sin_port = PMAPPORT;
1302 port = pmap_getport(&server_addr, nfsprog, nfsvers,
1303 tcp ? IPPROTO_TCP : IPPROTO_UDP);
1304 if (port == 0)
1305 port = NFS_PORT;
Denis Vlasenko25098f72006-09-14 15:46:33 +00001306 }
Denis Vlasenko25098f72006-09-14 15:46:33 +00001307 server_addr.sin_port = htons(port);
1308
1309 /* prepare data structure for kernel */
1310
1311 data.fd = fsock;
1312 memcpy((char *) &data.addr, (char *) &server_addr, sizeof(data.addr));
1313 strncpy(data.hostname, hostname, sizeof(data.hostname));
1314
1315 /* clean up */
1316
1317 auth_destroy(mclient->cl_auth);
1318 clnt_destroy(mclient);
1319 close(msock);
Denis Vlasenko7d8de4d2007-08-28 11:23:23 +00001320 msock = -1;
Denis Vlasenko25098f72006-09-14 15:46:33 +00001321
1322 if (bg) {
1323 /* We must wait until mount directory is available */
1324 struct stat statbuf;
1325 int delay = 1;
1326 while (stat(mp->mnt_dir, &statbuf) == -1) {
1327 if (!daemonized) {
1328 daemonized = daemonize();
1329 if (daemonized <= 0) { /* parent or error */
Denis Vlasenko7d8de4d2007-08-28 11:23:23 +00001330 // FIXME: parent doesn't close fsock - ??!
Denis Vlasenko25098f72006-09-14 15:46:33 +00001331 retval = -daemonized;
1332 goto ret;
1333 }
1334 }
1335 sleep(delay); /* 1, 2, 4, 8, 16, 30, ... */
1336 delay *= 2;
1337 if (delay > 30)
1338 delay = 30;
1339 }
1340 }
1341
1342do_mount: /* perform actual mount */
1343
Denis Vlasenko06c0a712007-01-29 22:51:44 +00001344 mp->mnt_type = (char*)"nfs";
Denis Vlasenko25098f72006-09-14 15:46:33 +00001345 retval = mount_it_now(mp, vfsflags, (char*)&data);
1346 goto ret;
1347
1348fail: /* abort */
1349
Denis Vlasenko7d8de4d2007-08-28 11:23:23 +00001350 if (msock >= 0) {
Denis Vlasenko25098f72006-09-14 15:46:33 +00001351 if (mclient) {
1352 auth_destroy(mclient->cl_auth);
1353 clnt_destroy(mclient);
1354 }
1355 close(msock);
1356 }
Denis Vlasenko7d8de4d2007-08-28 11:23:23 +00001357 if (fsock >= 0)
Denis Vlasenko25098f72006-09-14 15:46:33 +00001358 close(fsock);
1359
1360ret:
1361 free(hostname);
1362 free(mounthost);
1363 free(filteropts);
1364 return retval;
1365}
1366
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001367#else /* !ENABLE_FEATURE_MOUNT_NFS */
1368
1369/* Never called. Call should be optimized out. */
1370int nfsmount(struct mntent *mp, int vfsflags, char *filteropts);
1371
1372#endif /* !ENABLE_FEATURE_MOUNT_NFS */
1373
1374// Mount one directory. Handles CIFS, NFS, loopback, autobind, and filesystem
1375// type detection. Returns 0 for success, nonzero for failure.
Denis Vlasenko3bc59aa2006-09-17 15:04:01 +00001376// NB: mp->xxx fields may be trashed on exit
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001377static int singlemount(struct mntent *mp, int ignore_busy)
1378{
1379 int rc = -1, vfsflags;
1380 char *loopFile = 0, *filteropts = 0;
1381 llist_t *fl = 0;
1382 struct stat st;
1383
1384 vfsflags = parse_mount_options(mp->mnt_opts, &filteropts);
1385
1386 // Treat fstype "auto" as unspecified.
1387
Denis Vlasenko6cd2d2b2007-01-22 14:06:03 +00001388 if (mp->mnt_type && strcmp(mp->mnt_type,"auto") == 0)
1389 mp->mnt_type = 0;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001390
1391 // Might this be an CIFS filesystem?
1392
Denis Vlasenko6cd2d2b2007-01-22 14:06:03 +00001393 if (ENABLE_FEATURE_MOUNT_CIFS
1394 && (!mp->mnt_type || strcmp(mp->mnt_type,"cifs") == 0)
1395 && (mp->mnt_fsname[0]=='/' || mp->mnt_fsname[0]=='\\')
1396 && mp->mnt_fsname[0]==mp->mnt_fsname[1]
1397 ) {
Denis Vlasenko5870ad92007-02-04 02:39:55 +00001398 len_and_sockaddr *lsa;
1399 char *ip, *dotted;
1400 char *s;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001401
1402 rc = 1;
1403 // Replace '/' with '\' and verify that unc points to "//server/share".
1404
1405 for (s = mp->mnt_fsname; *s; ++s)
1406 if (*s == '/') *s = '\\';
1407
1408 // get server IP
1409
1410 s = strrchr(mp->mnt_fsname, '\\');
Denis Vlasenko5870ad92007-02-04 02:39:55 +00001411 if (s <= mp->mnt_fsname+1) goto report_error;
Denis Vlasenko6cd2d2b2007-01-22 14:06:03 +00001412 *s = '\0';
Denis Vlasenko5870ad92007-02-04 02:39:55 +00001413 lsa = host2sockaddr(mp->mnt_fsname+2, 0);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001414 *s = '\\';
Denis Vlasenko5870ad92007-02-04 02:39:55 +00001415 if (!lsa) goto report_error;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001416
Denis Vlasenko5870ad92007-02-04 02:39:55 +00001417 // insert ip=... option into string flags.
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001418
Denis Vlasenkoa27a11b2007-08-18 14:16:39 +00001419 dotted = xmalloc_sockaddr2dotted_noport(&lsa->sa);
Denis Vlasenko5870ad92007-02-04 02:39:55 +00001420 ip = xasprintf("ip=%s", dotted);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001421 parse_mount_options(ip, &filteropts);
1422
1423 // compose new unc '\\server-ip\share'
Denis Vlasenko5870ad92007-02-04 02:39:55 +00001424 // (s => slash after hostname)
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001425
Denis Vlasenko5870ad92007-02-04 02:39:55 +00001426 mp->mnt_fsname = xasprintf("\\\\%s%s", dotted, s);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001427
1428 // lock is required
1429 vfsflags |= MS_MANDLOCK;
1430
Denis Vlasenko06c0a712007-01-29 22:51:44 +00001431 mp->mnt_type = (char*)"cifs";
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001432 rc = mount_it_now(mp, vfsflags, filteropts);
Denis Vlasenko5870ad92007-02-04 02:39:55 +00001433 if (ENABLE_FEATURE_CLEAN_UP) {
1434 free(mp->mnt_fsname);
1435 free(ip);
1436 free(dotted);
1437 free(lsa);
1438 }
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001439 goto report_error;
1440 }
1441
1442 // Might this be an NFS filesystem?
1443
Denis Vlasenko6cd2d2b2007-01-22 14:06:03 +00001444 if (ENABLE_FEATURE_MOUNT_NFS
Denis Vlasenko0e2c9fb2007-08-03 14:16:24 +00001445 && (!mp->mnt_type || !strcmp(mp->mnt_type, "nfs"))
Denis Vlasenko6cd2d2b2007-01-22 14:06:03 +00001446 && strchr(mp->mnt_fsname, ':') != NULL
1447 ) {
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001448 rc = nfsmount(mp, vfsflags, filteropts);
1449 goto report_error;
1450 }
1451
1452 // Look at the file. (Not found isn't a failure for remount, or for
1453 // a synthetic filesystem like proc or sysfs.)
Denis Vlasenko38ec1472007-05-20 12:32:41 +00001454 // (We use stat, not lstat, in order to allow
1455 // mount symlink_to_file_or_blkdev dir)
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001456
Denis Vlasenko38ec1472007-05-20 12:32:41 +00001457 if (!stat(mp->mnt_fsname, &st)
Denis Vlasenko6cd2d2b2007-01-22 14:06:03 +00001458 && !(vfsflags & (MS_REMOUNT | MS_BIND | MS_MOVE))
1459 ) {
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001460 // Do we need to allocate a loopback device for it?
1461
1462 if (ENABLE_FEATURE_MOUNT_LOOP && S_ISREG(st.st_mode)) {
1463 loopFile = bb_simplify_path(mp->mnt_fsname);
Denis Vlasenko0e2c9fb2007-08-03 14:16:24 +00001464 mp->mnt_fsname = NULL; /* will receive malloced loop dev name */
1465 if (set_loop(&(mp->mnt_fsname), loopFile, 0) < 0) {
1466 if (errno == EPERM || errno == EACCES)
1467 bb_error_msg(bb_msg_perm_denied_are_you_root);
1468 else
1469 bb_perror_msg("cannot setup loop device");
Denis Vlasenko13b49242006-09-17 15:04:35 +00001470 return errno;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001471 }
1472
1473 // Autodetect bind mounts
1474
1475 } else if (S_ISDIR(st.st_mode) && !mp->mnt_type)
1476 vfsflags |= MS_BIND;
1477 }
1478
1479 /* If we know the fstype (or don't need to), jump straight
1480 * to the actual mount. */
1481
1482 if (mp->mnt_type || (vfsflags & (MS_REMOUNT | MS_BIND | MS_MOVE)))
1483 rc = mount_it_now(mp, vfsflags, filteropts);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001484 else {
Denis Vlasenko6cd2d2b2007-01-22 14:06:03 +00001485 // Loop through filesystem types until mount succeeds
1486 // or we run out
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001487
1488 /* Initialize list of block backed filesystems. This has to be
1489 * done here so that during "mount -a", mounts after /proc shows up
1490 * can autodetect. */
1491
1492 if (!fslist) {
1493 fslist = get_block_backed_filesystems();
1494 if (ENABLE_FEATURE_CLEAN_UP && fslist)
1495 atexit(delete_block_backed_filesystems);
1496 }
1497
1498 for (fl = fslist; fl; fl = fl->link) {
1499 mp->mnt_type = fl->data;
Denis Vlasenko13b49242006-09-17 15:04:35 +00001500 rc = mount_it_now(mp, vfsflags, filteropts);
Denis Vlasenko8d474b52006-09-17 15:00:58 +00001501 if (!rc) break;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001502 }
1503 }
1504
1505 // If mount failed, clean up loop file (if any).
1506
1507 if (ENABLE_FEATURE_MOUNT_LOOP && rc && loopFile) {
1508 del_loop(mp->mnt_fsname);
1509 if (ENABLE_FEATURE_CLEAN_UP) {
1510 free(loopFile);
1511 free(mp->mnt_fsname);
1512 }
1513 }
1514
Denis Vlasenko5870ad92007-02-04 02:39:55 +00001515 report_error:
1516 if (ENABLE_FEATURE_CLEAN_UP)
1517 free(filteropts);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001518
Denis Vlasenko0e2c9fb2007-08-03 14:16:24 +00001519 if (rc && errno == EBUSY && ignore_busy)
1520 rc = 0;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001521 if (rc < 0)
Denis Vlasenko0e2c9fb2007-08-03 14:16:24 +00001522 bb_perror_msg("mounting %s on %s failed", mp->mnt_fsname, mp->mnt_dir);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001523
1524 return rc;
1525}
1526
1527// Parse options, if necessary parse fstab/mtab, and call singlemount for
1528// each directory to be mounted.
1529
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001530static const char must_be_root[] ALIGN1 = "you must be root";
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001531
Denis Vlasenko06af2162007-02-03 17:28:39 +00001532int mount_main(int argc, char **argv);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001533int mount_main(int argc, char **argv)
1534{
Denis Vlasenkoda3cec92006-09-24 01:01:01 +00001535 enum { OPT_ALL = 0x10 };
Denis Vlasenko9c99b622006-09-17 15:05:31 +00001536
1537 char *cmdopts = xstrdup(""), *fstype=0, *storage_path=0;
Denis Vlasenko85f9e322006-09-19 14:14:12 +00001538 char *opt_o;
1539 const char *fstabname;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001540 FILE *fstab;
Denis Vlasenko9c99b622006-09-17 15:05:31 +00001541 int i, j, rc = 0;
Denis Vlasenko67b23e62006-10-03 21:00:06 +00001542 unsigned opt;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001543 struct mntent mtpair[2], *mtcur = mtpair;
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001544 SKIP_DESKTOP(const int nonroot = 0;)
1545 USE_DESKTOP( int nonroot = (getuid() != 0);)
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001546
1547 /* parse long options, like --bind and --move. Note that -o option
1548 * and --option are synonymous. Yes, this means --remount,rw works. */
1549
Denis Vlasenko9c99b622006-09-17 15:05:31 +00001550 for (i = j = 0; i < argc; i++) {
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001551 if (argv[i][0] == '-' && argv[i][1] == '-') {
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001552 append_mount_options(&cmdopts, argv[i]+2);
Denis Vlasenko9c99b622006-09-17 15:05:31 +00001553 } else argv[j++] = argv[i];
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001554 }
Denis Vlasenkoda3cec92006-09-24 01:01:01 +00001555 argv[j] = 0;
Denis Vlasenko9c99b622006-09-17 15:05:31 +00001556 argc = j;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001557
1558 // Parse remaining options
1559
Denis Vlasenkofb48f6c2007-08-29 11:49:41 +00001560 opt = getopt32(argv, "o:t:rwanfvsi", &opt_o, &fstype);
Denis Vlasenkoda3cec92006-09-24 01:01:01 +00001561 if (opt & 0x1) append_mount_options(&cmdopts, opt_o); // -o
1562 //if (opt & 0x2) // -t
1563 if (opt & 0x4) append_mount_options(&cmdopts, "ro"); // -r
1564 if (opt & 0x8) append_mount_options(&cmdopts, "rw"); // -w
1565 //if (opt & 0x10) // -a
Denis Vlasenkob1726782006-09-29 14:43:20 +00001566 if (opt & 0x20) USE_FEATURE_MTAB_SUPPORT(useMtab = 0); // -n
1567 if (opt & 0x40) USE_FEATURE_MTAB_SUPPORT(fakeIt = 1); // -f
Denis Vlasenko546cd182006-10-02 18:52:49 +00001568 //if (opt & 0x80) // -v: verbose (ignore)
1569 //if (opt & 0x100) // -s: sloppy (ignore)
Denis Vlasenkofb48f6c2007-08-29 11:49:41 +00001570 //if (opt & 0x200) // -i: don't call mount.<fstype> (ignore)
Denis Vlasenko3bc59aa2006-09-17 15:04:01 +00001571 argv += optind;
1572 argc -= optind;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001573
1574 // Three or more non-option arguments? Die with a usage message.
1575
Denis Vlasenko3bc59aa2006-09-17 15:04:01 +00001576 if (argc > 2) bb_show_usage();
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001577
1578 // If we have no arguments, show currently mounted filesystems
1579
Denis Vlasenko3bc59aa2006-09-17 15:04:01 +00001580 if (!argc) {
Denis Vlasenko9c99b622006-09-17 15:05:31 +00001581 if (!(opt & OPT_ALL)) {
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001582 FILE *mountTable = setmntent(bb_path_mtab_file, "r");
1583
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001584 if (!mountTable) bb_error_msg_and_die("no %s", bb_path_mtab_file);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001585
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001586 while (getmntent_r(mountTable, mtpair, bb_common_bufsiz1,
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001587 sizeof(bb_common_bufsiz1)))
1588 {
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001589 // Don't show rootfs. FIXME: why??
Denis Vlasenko908d6b72006-12-18 23:07:42 +00001590 // util-linux 2.12a happily shows rootfs...
1591 //if (!strcmp(mtpair->mnt_fsname, "rootfs")) continue;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001592
1593 if (!fstype || !strcmp(mtpair->mnt_type, fstype))
1594 printf("%s on %s type %s (%s)\n", mtpair->mnt_fsname,
1595 mtpair->mnt_dir, mtpair->mnt_type,
1596 mtpair->mnt_opts);
1597 }
1598 if (ENABLE_FEATURE_CLEAN_UP) endmntent(mountTable);
1599 return EXIT_SUCCESS;
1600 }
Denis Vlasenko3bc59aa2006-09-17 15:04:01 +00001601 } else storage_path = bb_simplify_path(argv[0]);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001602
1603 // When we have two arguments, the second is the directory and we can
1604 // skip looking at fstab entirely. We can always abspath() the directory
1605 // argument when we get it.
1606
Denis Vlasenko3bc59aa2006-09-17 15:04:01 +00001607 if (argc == 2) {
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001608 if (nonroot)
1609 bb_error_msg_and_die(must_be_root);
Denis Vlasenko3bc59aa2006-09-17 15:04:01 +00001610 mtpair->mnt_fsname = argv[0];
1611 mtpair->mnt_dir = argv[1];
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001612 mtpair->mnt_type = fstype;
1613 mtpair->mnt_opts = cmdopts;
1614 rc = singlemount(mtpair, 0);
1615 goto clean_up;
1616 }
1617
Denis Vlasenko546cd182006-10-02 18:52:49 +00001618 i = parse_mount_options(cmdopts, 0);
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001619 if (nonroot && (i & ~MS_SILENT)) // Non-root users cannot specify flags
1620 bb_error_msg_and_die(must_be_root);
Denis Vlasenko546cd182006-10-02 18:52:49 +00001621
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001622 // If we have a shared subtree flag, don't worry about fstab or mtab.
Denis Vlasenko546cd182006-10-02 18:52:49 +00001623
Denis Vlasenko6cd2d2b2007-01-22 14:06:03 +00001624 if (ENABLE_FEATURE_MOUNT_FLAGS
1625 && (i & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
1626 ) {
Denis Vlasenko3bc59aa2006-09-17 15:04:01 +00001627 rc = mount("", argv[0], "", i, "");
1628 if (rc) bb_perror_msg_and_die("%s", argv[0]);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001629 goto clean_up;
1630 }
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00001631
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001632 // Open either fstab or mtab
1633
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001634 fstabname = "/etc/fstab";
1635 if (i & MS_REMOUNT) {
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001636 fstabname = bb_path_mtab_file;
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001637 }
1638 fstab = setmntent(fstabname, "r");
Denis Vlasenko8d474b52006-09-17 15:00:58 +00001639 if (!fstab)
Denis Vlasenko85f9e322006-09-19 14:14:12 +00001640 bb_perror_msg_and_die("cannot read %s", fstabname);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001641
1642 // Loop through entries until we find what we're looking for.
1643
Denis Vlasenko546cd182006-10-02 18:52:49 +00001644 memset(mtpair, 0, sizeof(mtpair));
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001645 for (;;) {
Denis Vlasenko8d474b52006-09-17 15:00:58 +00001646 struct mntent *mtnext = (mtcur==mtpair ? mtpair+1 : mtpair);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001647
1648 // Get next fstab entry
1649
1650 if (!getmntent_r(fstab, mtcur, bb_common_bufsiz1
1651 + (mtcur==mtpair ? sizeof(bb_common_bufsiz1)/2 : 0),
1652 sizeof(bb_common_bufsiz1)/2))
1653 {
1654 // Were we looking for something specific?
1655
Denis Vlasenko3bc59aa2006-09-17 15:04:01 +00001656 if (argc) {
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001657
1658 // If we didn't find anything, complain.
1659
1660 if (!mtnext->mnt_fsname)
1661 bb_error_msg_and_die("can't find %s in %s",
Denis Vlasenko3bc59aa2006-09-17 15:04:01 +00001662 argv[0], fstabname);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001663
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001664 mtcur = mtnext;
1665 if (nonroot) {
1666 // fstab must have "users" or "user"
1667 if (!(parse_mount_options(mtcur->mnt_opts, 0) & MOUNT_USERS))
1668 bb_error_msg_and_die(must_be_root);
1669 }
1670
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001671 // Mount the last thing we found.
1672
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001673 mtcur->mnt_opts = xstrdup(mtcur->mnt_opts);
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001674 append_mount_options(&(mtcur->mnt_opts), cmdopts);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001675 rc = singlemount(mtcur, 0);
1676 free(mtcur->mnt_opts);
1677 }
1678 goto clean_up;
1679 }
1680
1681 /* If we're trying to mount something specific and this isn't it,
1682 * skip it. Note we must match both the exact text in fstab (ala
1683 * "proc") or a full path from root */
1684
Denis Vlasenko3bc59aa2006-09-17 15:04:01 +00001685 if (argc) {
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001686
1687 // Is this what we're looking for?
1688
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001689 if (strcmp(argv[0], mtcur->mnt_fsname) &&
1690 strcmp(storage_path, mtcur->mnt_fsname) &&
1691 strcmp(argv[0], mtcur->mnt_dir) &&
1692 strcmp(storage_path, mtcur->mnt_dir)) continue;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001693
1694 // Remember this entry. Something later may have overmounted
1695 // it, and we want the _last_ match.
1696
1697 mtcur = mtnext;
1698
1699 // If we're mounting all.
1700
1701 } else {
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001702 // Do we need to match a filesystem type?
Denis Vlasenkobf295dd2007-04-05 21:57:47 +00001703 if (fstype && match_fstype(mtcur, fstype)) continue;
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001704
1705 // Skip noauto and swap anyway.
1706
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001707 if (parse_mount_options(mtcur->mnt_opts, 0)
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001708 & (MOUNT_NOAUTO | MOUNT_SWAP)) continue;
1709
Denis Vlasenko13c5a682006-10-16 22:39:51 +00001710 // No, mount -a won't mount anything,
1711 // even user mounts, for mere humans.
1712
1713 if (nonroot)
1714 bb_error_msg_and_die(must_be_root);
1715
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001716 // Mount this thing.
1717
Denis Vlasenko666da5e2006-12-26 18:17:42 +00001718 // NFS mounts want this to be xrealloc-able
1719 mtcur->mnt_opts = xstrdup(mtcur->mnt_opts);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001720 if (singlemount(mtcur, 1)) {
1721 /* Count number of failed mounts */
1722 rc++;
1723 }
Denis Vlasenko666da5e2006-12-26 18:17:42 +00001724 free(mtcur->mnt_opts);
Denis Vlasenko30a64cd2006-09-15 15:12:00 +00001725 }
1726 }
1727 if (ENABLE_FEATURE_CLEAN_UP) endmntent(fstab);
1728
1729clean_up:
1730
1731 if (ENABLE_FEATURE_CLEAN_UP) {
1732 free(storage_path);
1733 free(cmdopts);
1734 }
1735
1736 return rc;
1737}