2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-13 21:12:06 +00:00
|
|
|
/*
|
2003-03-19 09:13:01 +00:00
|
|
|
* rmdir implementation for busybox
|
1999-10-13 21:12:06 +00:00
|
|
|
*
|
2003-03-19 09:13:01 +00:00
|
|
|
* Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
|
1999-10-13 21:12:06 +00:00
|
|
|
*
|
2006-07-12 07:56:04 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
1999-10-13 21:12:06 +00:00
|
|
|
*/
|
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
/* BB_AUDIT SUSv3 compliant */
|
|
|
|
/* http://www.opengroup.org/onlinepubs/007904975/utilities/rmdir.html */
|
2001-08-29 21:18:47 +00:00
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2007-04-10 15:43:37 +00:00
|
|
|
/* This is a NOFORK applet. Be very careful! */
|
|
|
|
|
|
|
|
|
2008-02-24 14:56:10 +00:00
|
|
|
#define PARENTS 0x01
|
|
|
|
#define IGNORE_NON_EMPTY 0x02
|
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int rmdir_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 09:18:54 +00:00
|
|
|
int rmdir_main(int argc UNUSED_PARAM, char **argv)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2000-11-22 01:09:38 +00:00
|
|
|
int status = EXIT_SUCCESS;
|
2003-03-19 09:13:01 +00:00
|
|
|
int flags;
|
|
|
|
char *path;
|
2000-11-22 01:09:38 +00:00
|
|
|
|
2008-02-24 14:56:10 +00:00
|
|
|
#if ENABLE_FEATURE_RMDIR_LONG_OPTIONS
|
|
|
|
static const char rmdir_longopts[] ALIGN1 =
|
|
|
|
"parents\0" No_argument "p"
|
|
|
|
/* Debian etch: many packages fail to be purged or installed
|
|
|
|
* because they desperately want this option: */
|
|
|
|
"ignore-fail-on-non-empty\0" No_argument "\xff"
|
|
|
|
;
|
|
|
|
applet_long_options = rmdir_longopts;
|
|
|
|
#endif
|
2007-08-18 15:32:12 +00:00
|
|
|
flags = getopt32(argv, "p");
|
2003-03-19 09:13:01 +00:00
|
|
|
argv += optind;
|
2001-08-29 21:18:47 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
if (!*argv) {
|
|
|
|
bb_show_usage();
|
|
|
|
}
|
1999-10-13 21:12:06 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
do {
|
|
|
|
path = *argv;
|
|
|
|
|
2007-04-10 15:43:37 +00:00
|
|
|
while (1) {
|
2003-03-19 09:13:01 +00:00
|
|
|
if (rmdir(path) < 0) {
|
2008-02-24 14:56:10 +00:00
|
|
|
#if ENABLE_FEATURE_RMDIR_LONG_OPTIONS
|
|
|
|
if ((flags & IGNORE_NON_EMPTY) && errno == ENOTEMPTY)
|
|
|
|
break;
|
|
|
|
#endif
|
2006-11-18 22:04:09 +00:00
|
|
|
bb_perror_msg("'%s'", path); /* Match gnu rmdir msg. */
|
2003-03-19 09:13:01 +00:00
|
|
|
status = EXIT_FAILURE;
|
2008-02-24 14:56:10 +00:00
|
|
|
} else if (flags & PARENTS) {
|
|
|
|
/* Note: path was not "" since rmdir succeeded. */
|
2003-03-19 09:13:01 +00:00
|
|
|
path = dirname(path);
|
2008-02-24 14:56:10 +00:00
|
|
|
/* Path is now just the parent component. Dirname
|
|
|
|
* returns "." if there are no parents.
|
2006-11-18 22:04:09 +00:00
|
|
|
*/
|
2008-02-24 14:56:10 +00:00
|
|
|
if (NOT_LONE_CHAR(path, '.')) {
|
2003-03-19 09:13:01 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2007-04-10 15:43:37 +00:00
|
|
|
}
|
2003-03-19 09:13:01 +00:00
|
|
|
} while (*++argv);
|
2001-08-29 21:18:47 +00:00
|
|
|
|
2000-11-22 01:09:38 +00:00
|
|
|
return status;
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|