Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | f811e07 | 1999-10-09 00:25:00 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Mini umount implementation for busybox |
| 4 | * |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 6 | * Copyright (C) 2005 by Rob Landley <rob@landley.net> |
| 7 | * |
| 8 | * This program is licensed under the GNU General Public license (GPL) |
| 9 | * version 2 or later, see http://www.fsf.org/licensing/licenses/gpl.html |
| 10 | * or the file "LICENSE" in the busybox source tarball for the full text. |
Eric Andersen | f811e07 | 1999-10-09 00:25:00 +0000 | [diff] [blame] | 11 | * |
| 12 | */ |
| 13 | |
Matt Kraai | adcbc12 | 2001-05-02 21:24:51 +0000 | [diff] [blame] | 14 | #include <limits.h> |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 15 | #include <stdio.h> |
Eric Andersen | f811e07 | 1999-10-09 00:25:00 +0000 | [diff] [blame] | 16 | #include <mntent.h> |
Eric Andersen | f811e07 | 1999-10-09 00:25:00 +0000 | [diff] [blame] | 17 | #include <errno.h> |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 18 | #include <string.h> |
| 19 | #include <stdlib.h> |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 20 | #include <sys/mount.h> |
Eric Andersen | cbe31da | 2001-02-20 06:14:08 +0000 | [diff] [blame] | 21 | #include "busybox.h" |
Eric Andersen | e1e23ee | 2000-06-19 18:38:51 +0000 | [diff] [blame] | 22 | |
Erik Andersen | e132f4b | 2000-02-09 04:16:43 +0000 | [diff] [blame] | 23 | extern int umount_main(int argc, char **argv) |
| 24 | { |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 25 | int doForce = 0; |
| 26 | int freeLoop = ENABLE_FEATURE_MOUNT_LOOP; |
| 27 | int useMtab = ENABLE_FEATURE_MTAB_SUPPORT; |
| 28 | int umountAll = FALSE; |
| 29 | int doRemount = FALSE; |
| 30 | char path[2*PATH_MAX]; |
| 31 | struct mntent me; |
| 32 | FILE *fp; |
| 33 | int status=EXIT_SUCCESS; |
| 34 | struct mtab_list { |
| 35 | char *dir; |
| 36 | char *device; |
| 37 | struct mtab_list *next; |
| 38 | } *mtl, *m; |
Matt Kraai | adcbc12 | 2001-05-02 21:24:51 +0000 | [diff] [blame] | 39 | |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 40 | if(argc < 2) bb_show_usage(); |
| 41 | |
Erik Andersen | e132f4b | 2000-02-09 04:16:43 +0000 | [diff] [blame] | 42 | /* Parse any options */ |
| 43 | while (--argc > 0 && **(++argv) == '-') { |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 44 | while (*++(*argv)) { |
| 45 | if(**argv=='a') umountAll = TRUE; |
| 46 | else if(ENABLE_FEATURE_MOUNT_LOOP && **argv=='D') freeLoop = FALSE; |
| 47 | else if(ENABLE_FEATURE_MTAB_SUPPORT && **argv=='n') useMtab = FALSE; |
| 48 | else if(**argv=='f') doForce = 1; // MNT_FORCE |
| 49 | else if(**argv=='l') doForce = 2; // MNT_DETACH |
| 50 | else if(**argv=='r') doRemount = TRUE; |
| 51 | else if(**argv=='v'); |
| 52 | else bb_show_usage(); |
| 53 | } |
Erik Andersen | e132f4b | 2000-02-09 04:16:43 +0000 | [diff] [blame] | 54 | } |
| 55 | |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 56 | /* Get a list of mount points from mtab. We read them all in now mostly |
| 57 | * for umount -a (so we don't have to worry about the list changing while |
| 58 | * we iterate over it, or about getting stuck in a loop on the same failing |
| 59 | * entry. Notice that this also naturally reverses the list so that -a |
| 60 | * umounts the most recent entries first. */ |
| 61 | |
| 62 | m=mtl=0; |
| 63 | if(!(fp = setmntent(bb_path_mtab_file, "r"))) |
| 64 | bb_error_msg_and_die("Cannot open %s", bb_path_mtab_file); |
| 65 | while (getmntent_r(fp,&me,path,sizeof(path))) { |
| 66 | m=xmalloc(sizeof(struct mtab_list)); |
| 67 | m->next=mtl; |
| 68 | m->device=bb_xstrdup(me.mnt_fsname); |
| 69 | m->dir=bb_xstrdup(me.mnt_dir); |
| 70 | mtl=m; |
| 71 | } |
| 72 | endmntent(fp); |
| 73 | |
| 74 | /* If we're umounting all, then m points to the start of the list and |
| 75 | * the argument list should be empty (which will match all). */ |
| 76 | if(!umountAll) m=0; |
| 77 | |
| 78 | // Loop through everything we're supposed to umount, and do so. |
| 79 | for(;;) { |
| 80 | int curstat; |
| 81 | |
| 82 | // Do we alrady know what to umount this time through the loop? |
| 83 | if(m) safe_strncpy(path,m->dir,PATH_MAX); |
| 84 | // For umountAll, end of mtab means time to exit. |
| 85 | else if(umountAll) break; |
| 86 | // Get next command line argument (and look it up in mtab list) |
| 87 | else if(!argc--) break; |
| 88 | else { |
| 89 | // Get next command line argument (and look it up in mtab list) |
| 90 | realpath(*argv++, path); |
| 91 | for(m = mtl; m; m = m->next) |
| 92 | if(!strcmp(path, m->dir) || !strcmp(path, m->device)) |
| 93 | break; |
| 94 | } |
| 95 | |
| 96 | // Let's ask the thing nicely to unmount. |
| 97 | curstat = umount(path); |
| 98 | |
| 99 | // Force the unmount, if necessary. |
| 100 | if(curstat && doForce) { |
| 101 | curstat = umount2(path, doForce); |
| 102 | if(curstat) |
| 103 | bb_error_msg_and_die("forced umount of %s failed!", path); |
| 104 | } |
| 105 | |
| 106 | // If still can't umount, maybe remount read-only? |
| 107 | if (curstat && doRemount && errno == EBUSY && m) { |
| 108 | curstat = mount(m->device, path, NULL, MS_REMOUNT|MS_RDONLY, NULL); |
| 109 | bb_error_msg(curstat ? "Cannot remount %s read-only" : |
| 110 | "%s busy - remounted read-only", m->device); |
| 111 | } |
| 112 | |
| 113 | /* De-allcate the loop device. This ioctl should be ignored on any |
| 114 | * non-loop block devices. */ |
| 115 | if(ENABLE_FEATURE_MOUNT_LOOP && freeLoop && m) |
| 116 | del_loop(m->device); |
| 117 | |
| 118 | if(curstat) { |
Rob Landley | f4c684a | 2005-08-23 20:03:17 +0000 | [diff] [blame] | 119 | /* Yes, the ENABLE is redundant here, but the optimizer for ARM |
| 120 | * can't do simple constant propogation in local variables... */ |
| 121 | if(ENABLE_FEATURE_MTAB_SUPPORT && useMtab && m) erase_mtab(m->dir); |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 122 | status = EXIT_FAILURE; |
| 123 | bb_perror_msg("Couldn't umount %s\n", path); |
| 124 | } |
| 125 | // Find next matching mtab entry for -a or umount /dev |
| 126 | while(m && (m = m->next)) |
| 127 | if(umountAll || !strcmp(path,m->device)) |
| 128 | break; |
Erik Andersen | e132f4b | 2000-02-09 04:16:43 +0000 | [diff] [blame] | 129 | } |
Erik Andersen | e132f4b | 2000-02-09 04:16:43 +0000 | [diff] [blame] | 130 | |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 131 | // Free mtab list if necessary |
| 132 | |
| 133 | if(ENABLE_FEATURE_CLEAN_UP) { |
| 134 | while(mtl) { |
| 135 | m=mtl->next; |
| 136 | free(mtl->device); |
| 137 | free(mtl->dir); |
| 138 | free(mtl); |
| 139 | mtl=m; |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | return status; |
Glenn L McGrath | 15a4f1e | 2004-02-22 11:35:13 +0000 | [diff] [blame] | 144 | } |