X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=util-linux%2Fmount.c;h=f665a08758e2377809a04ba726448bba79c777f2;hb=6ced427a6debb71967a8b9cebc12e31c08de0f6a;hp=e1c1c601bd0e74fd7baec801b6a575e2f50ed5f3;hpb=8bb50782a5f0dd955a6fe18d381eb9322d1447e7;p=oweals%2Fbusybox.git diff --git a/util-linux/mount.c b/util-linux/mount.c index e1c1c601b..f665a0875 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -13,7 +13,7 @@ * bb_getopt_ulflags(); */ -/* Design notes: There is no spec for this. Remind me to write one. +/* Design notes: There is no spec for mount. Remind me to write one. mount_main() calls singlemount() which calls mount_it_now(). @@ -22,18 +22,8 @@ mount_it_now() does the actual mount. */ -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include // for CONFIG_FEATURE_MOUNT_LOOP -#include // for CONFIG_FEATURE_MOUNT_LOOP #include "busybox.h" +#include // These two aren't always defined in old headers #ifndef MS_BIND @@ -93,12 +83,12 @@ struct { static void append_mount_options(char **oldopts, char *newopts) { if(*oldopts && **oldopts) { - char *temp=bb_xasprintf("%s,%s",*oldopts,newopts); + char *temp=xasprintf("%s,%s",*oldopts,newopts); free(*oldopts); *oldopts=temp; } else { if (ENABLE_FEATURE_CLEAN_UP) free(*oldopts); - *oldopts = bb_xstrdup(newopts); + *oldopts = xstrdup(newopts); } } @@ -169,7 +159,7 @@ static llist_t *get_block_backed_filesystems(void) if(*fs=='#' || *fs=='*') continue; if(!*fs) continue; - llist_add_to_end(&list,bb_xstrdup(fs)); + llist_add_to_end(&list,xstrdup(fs)); } if (ENABLE_FEATURE_CLEAN_UP) fclose(f); } @@ -260,9 +250,9 @@ static int mount_it_now(struct mntent *mp, int vfsflags, char *filteropts) // Mount one directory. Handles NFS, loopback, autobind, and filesystem type // detection. Returns 0 for success, nonzero for failure. -static int singlemount(struct mntent *mp) +static int singlemount(struct mntent *mp, int ignore_busy) { - int rc = 1, vfsflags; + int rc = -1, vfsflags; char *loopFile = 0, *filteropts = 0; llist_t *fl = 0; struct stat st; @@ -281,14 +271,14 @@ static int singlemount(struct mntent *mp) { if (nfsmount(mp->mnt_fsname, mp->mnt_dir, &vfsflags, &filteropts, 1)) { bb_perror_msg("nfsmount failed"); - return 1; + goto report_error; } else { // Strangely enough, nfsmount() doesn't actually mount() anything. mp->mnt_type = "nfs"; rc = mount_it_now(mp, vfsflags, filteropts); if (ENABLE_FEATURE_CLEAN_UP) free(filteropts); - return rc; + goto report_error; } } @@ -358,18 +348,22 @@ static int singlemount(struct mntent *mp) free(mp->mnt_fsname); } } +report_error: + if (rc && errno == EBUSY && ignore_busy) rc = 0; + if (rc < 0) + bb_perror_msg("Mounting %s on %s failed", mp->mnt_fsname, mp->mnt_dir); + return rc; } - // Parse options, if necessary parse fstab/mtab, and call singlemount for // each directory to be mounted. int mount_main(int argc, char **argv) { - char *cmdopts = bb_xstrdup(""), *fstabname, *fstype=0, *storage_path=0; + char *cmdopts = xstrdup(""), *fstabname, *fstype=0, *storage_path=0; FILE *fstab; - int i, opt, all = FALSE, rc = 1; + int i, opt, all = FALSE, rc = 0; struct mntent mtpair[2], *mtcur = mtpair; /* parse long options, like --bind and --move. Note that -o option @@ -451,7 +445,7 @@ int mount_main(int argc, char **argv) mtpair->mnt_dir = argv[optind+1]; mtpair->mnt_type = fstype; mtpair->mnt_opts = cmdopts; - rc = singlemount(mtpair); + rc = singlemount(mtpair, 0); goto clean_up; } @@ -493,12 +487,12 @@ int mount_main(int argc, char **argv) // Mount the last thing we found. mtcur = mtnext; - mtcur->mnt_opts=bb_xstrdup(mtcur->mnt_opts); + mtcur->mnt_opts = xstrdup(mtcur->mnt_opts); append_mount_options(&(mtcur->mnt_opts),cmdopts); - rc = singlemount(mtcur); + rc = singlemount(mtcur, 0); free(mtcur->mnt_opts); } - break; + goto clean_up; } /* If we're trying to mount something specific and this isn't it, @@ -533,13 +527,9 @@ int mount_main(int argc, char **argv) // Mount this thing. - if (singlemount(mtcur)) { - // Don't whine about already mounted fs when mounting all. - // Note: we should probably change return value to indicate - // failure, without causing a duplicate error message. - if (errno != EBUSY) bb_perror_msg("Mounting %s on %s failed", - mtcur->mnt_fsname, mtcur->mnt_dir); - rc = 0; + if (singlemount(mtcur, 1)) { + /* Count number of failed mounts */ + rc++; } } } @@ -552,9 +542,5 @@ clean_up: free(cmdopts); } - if(rc) - bb_perror_msg("Mounting %s on %s failed", - mtcur->mnt_fsname, mtcur->mnt_dir); - return rc; }