Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | f6be944 | 1999-10-13 21:12:06 +0000 | [diff] [blame] | 2 | /* |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 3 | * rmdir implementation for busybox |
Eric Andersen | f6be944 | 1999-10-13 21:12:06 +0000 | [diff] [blame] | 4 | * |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 5 | * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org> |
Eric Andersen | f6be944 | 1999-10-13 21:12:06 +0000 | [diff] [blame] | 6 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Eric Andersen | f6be944 | 1999-10-13 21:12:06 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 10 | /* BB_AUDIT SUSv3 compliant */ |
| 11 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/rmdir.html */ |
Matt Kraai | 1350666 | 2001-08-29 21:18:47 +0000 | [diff] [blame] | 12 | |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 13 | //usage:#define rmdir_trivial_usage |
| 14 | //usage: "[OPTIONS] DIRECTORY..." |
| 15 | //usage:#define rmdir_full_usage "\n\n" |
| 16 | //usage: "Remove DIRECTORY if it is empty\n" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 17 | //usage: IF_FEATURE_RMDIR_LONG_OPTIONS( |
| 18 | //usage: "\n -p|--parents Include parents" |
| 19 | //usage: "\n --ignore-fail-on-non-empty" |
| 20 | //usage: ) |
| 21 | //usage: IF_NOT_FEATURE_RMDIR_LONG_OPTIONS( |
| 22 | //usage: "\n -p Include parents" |
| 23 | //usage: ) |
| 24 | //usage: |
| 25 | //usage:#define rmdir_example_usage |
| 26 | //usage: "# rmdir /tmp/foo\n" |
| 27 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 28 | #include "libbb.h" |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 29 | |
Denis Vlasenko | 99912ca | 2007-04-10 15:43:37 +0000 | [diff] [blame] | 30 | /* This is a NOFORK applet. Be very careful! */ |
| 31 | |
| 32 | |
Simon B | 3698ed1 | 2012-05-06 15:03:32 +0200 | [diff] [blame] | 33 | #define PARENTS (1 << 0) |
Denys Vlasenko | 17f8418 | 2014-05-19 16:23:50 +0200 | [diff] [blame] | 34 | #define VERBOSE ((1 << 1) * ENABLE_FEATURE_VERBOSE) |
Simon B | 3698ed1 | 2012-05-06 15:03:32 +0200 | [diff] [blame] | 35 | #define IGNORE_NON_EMPTY (1 << 2) |
Denis Vlasenko | 52feee9 | 2008-02-24 14:56:10 +0000 | [diff] [blame] | 36 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 37 | int rmdir_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 38 | int rmdir_main(int argc UNUSED_PARAM, char **argv) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 39 | { |
Matt Kraai | 9a71af5 | 2000-11-22 01:09:38 +0000 | [diff] [blame] | 40 | int status = EXIT_SUCCESS; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 41 | int flags; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 42 | char *path; |
Matt Kraai | 9a71af5 | 2000-11-22 01:09:38 +0000 | [diff] [blame] | 43 | |
Denis Vlasenko | 52feee9 | 2008-02-24 14:56:10 +0000 | [diff] [blame] | 44 | #if ENABLE_FEATURE_RMDIR_LONG_OPTIONS |
| 45 | static const char rmdir_longopts[] ALIGN1 = |
| 46 | "parents\0" No_argument "p" |
| 47 | /* Debian etch: many packages fail to be purged or installed |
| 48 | * because they desperately want this option: */ |
| 49 | "ignore-fail-on-non-empty\0" No_argument "\xff" |
Denys Vlasenko | 17f8418 | 2014-05-19 16:23:50 +0200 | [diff] [blame] | 50 | IF_FEATURE_VERBOSE( |
| 51 | "verbose\0" No_argument "v" |
| 52 | ) |
Denis Vlasenko | 52feee9 | 2008-02-24 14:56:10 +0000 | [diff] [blame] | 53 | ; |
| 54 | applet_long_options = rmdir_longopts; |
| 55 | #endif |
Simon B | 3698ed1 | 2012-05-06 15:03:32 +0200 | [diff] [blame] | 56 | flags = getopt32(argv, "pv"); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 57 | argv += optind; |
Matt Kraai | 1350666 | 2001-08-29 21:18:47 +0000 | [diff] [blame] | 58 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 59 | if (!*argv) { |
| 60 | bb_show_usage(); |
| 61 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 62 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 63 | do { |
| 64 | path = *argv; |
| 65 | |
Denis Vlasenko | 99912ca | 2007-04-10 15:43:37 +0000 | [diff] [blame] | 66 | while (1) { |
Denys Vlasenko | 17f8418 | 2014-05-19 16:23:50 +0200 | [diff] [blame] | 67 | if (flags & VERBOSE) { |
| 68 | printf("rmdir: removing directory, '%s'\n", path); |
| 69 | } |
| 70 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 71 | if (rmdir(path) < 0) { |
Denis Vlasenko | 52feee9 | 2008-02-24 14:56:10 +0000 | [diff] [blame] | 72 | #if ENABLE_FEATURE_RMDIR_LONG_OPTIONS |
| 73 | if ((flags & IGNORE_NON_EMPTY) && errno == ENOTEMPTY) |
| 74 | break; |
| 75 | #endif |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 76 | bb_perror_msg("'%s'", path); /* Match gnu rmdir msg. */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 77 | status = EXIT_FAILURE; |
Denis Vlasenko | 52feee9 | 2008-02-24 14:56:10 +0000 | [diff] [blame] | 78 | } else if (flags & PARENTS) { |
| 79 | /* Note: path was not "" since rmdir succeeded. */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 80 | path = dirname(path); |
Denis Vlasenko | 52feee9 | 2008-02-24 14:56:10 +0000 | [diff] [blame] | 81 | /* Path is now just the parent component. Dirname |
| 82 | * returns "." if there are no parents. |
Denis Vlasenko | 89f0b34 | 2006-11-18 22:04:09 +0000 | [diff] [blame] | 83 | */ |
Denis Vlasenko | 52feee9 | 2008-02-24 14:56:10 +0000 | [diff] [blame] | 84 | if (NOT_LONE_CHAR(path, '.')) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 85 | continue; |
| 86 | } |
| 87 | } |
| 88 | break; |
Denis Vlasenko | 99912ca | 2007-04-10 15:43:37 +0000 | [diff] [blame] | 89 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 90 | } while (*++argv); |
Matt Kraai | 1350666 | 2001-08-29 21:18:47 +0000 | [diff] [blame] | 91 | |
Matt Kraai | 9a71af5 | 2000-11-22 01:09:38 +0000 | [diff] [blame] | 92 | return status; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 93 | } |