blob: 8b45c58b85e2b3fca63e8738623753932111b388 [file] [log] [blame]
Matt Kraai8810bdb2001-04-24 20:04:18 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Mini remove_file implementation for busybox
4 *
Matt Kraai8810bdb2001-04-24 20:04:18 +00005 * Copyright (C) 2001 Matt Kraai <kraai@alumni.carnegiemellon.edu>
6 *
Matt Kraai8810bdb2001-04-24 20:04:18 +00007 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Matt Kraai8810bdb2001-04-24 20:04:18 +000020 */
21
22#include <stdio.h>
23#include <time.h>
24#include <utime.h>
25#include <dirent.h>
26#include <errno.h>
27#include <unistd.h>
28#include <stdlib.h>
Manuel Novoa III a2949aa2001-06-29 18:59:32 +000029#include <string.h>
Matt Kraai8810bdb2001-04-24 20:04:18 +000030#include <getopt.h>
31#include "libbb.h"
32
33extern int remove_file(const char *path, int flags)
34{
35 struct stat path_stat;
36 int path_exists = 1;
37
Matt Kraaif3e79ba2001-05-11 02:35:36 +000038 if (lstat(path, &path_stat) < 0) {
Matt Kraai8810bdb2001-04-24 20:04:18 +000039 if (errno != ENOENT) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000040 bb_perror_msg("unable to stat `%s'", path);
Matt Kraai8810bdb2001-04-24 20:04:18 +000041 return -1;
42 }
43
44 path_exists = 0;
45 }
46
47 if (!path_exists) {
48 if (!(flags & FILEUTILS_FORCE)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000049 bb_perror_msg("cannot remove `%s'", path);
Matt Kraai8810bdb2001-04-24 20:04:18 +000050 return -1;
51 }
52 return 0;
53 }
54
55 if (S_ISDIR(path_stat.st_mode)) {
56 DIR *dp;
57 struct dirent *d;
58 int status = 0;
59
60 if (!(flags & FILEUTILS_RECUR)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000061 bb_error_msg("%s: is a directory", path);
Matt Kraai8810bdb2001-04-24 20:04:18 +000062 return -1;
63 }
64
65 if ((!(flags & FILEUTILS_FORCE) && access(path, W_OK) < 0 &&
66 isatty(0)) ||
67 (flags & FILEUTILS_INTERACTIVE)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000068 fprintf(stderr, "%s: descend into directory `%s'? ", bb_applet_name,
Matt Kraai8810bdb2001-04-24 20:04:18 +000069 path);
Manuel Novoa III cad53642003-03-19 09:13:01 +000070 if (!bb_ask_confirmation())
Matt Kraai8810bdb2001-04-24 20:04:18 +000071 return 0;
72 }
73
74 if ((dp = opendir(path)) == NULL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000075 bb_perror_msg("unable to open `%s'", path);
Matt Kraai8810bdb2001-04-24 20:04:18 +000076 return -1;
77 }
78
79 while ((d = readdir(dp)) != NULL) {
80 char *new_path;
81
Glenn L McGrath393183d2003-05-26 14:07:50 +000082 new_path = concat_subpath_file(path, d->d_name);
83 if(new_path == NULL)
Matt Kraai8810bdb2001-04-24 20:04:18 +000084 continue;
Matt Kraai8810bdb2001-04-24 20:04:18 +000085 if (remove_file(new_path, flags) < 0)
86 status = -1;
87 free(new_path);
88 }
89
90 if (closedir(dp) < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000091 bb_perror_msg("unable to close `%s'", path);
Matt Kraai8810bdb2001-04-24 20:04:18 +000092 return -1;
93 }
94
95 if (flags & FILEUTILS_INTERACTIVE) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000096 fprintf(stderr, "%s: remove directory `%s'? ", bb_applet_name, path);
97 if (!bb_ask_confirmation())
Matt Kraai8810bdb2001-04-24 20:04:18 +000098 return status;
99 }
100
101 if (rmdir(path) < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000102 bb_perror_msg("unable to remove `%s'", path);
Matt Kraai8810bdb2001-04-24 20:04:18 +0000103 return -1;
104 }
105
106 return status;
107 } else {
108 if ((!(flags & FILEUTILS_FORCE) && access(path, W_OK) < 0 &&
Matt Kraaif3e79ba2001-05-11 02:35:36 +0000109 !S_ISLNK(path_stat.st_mode) &&
Matt Kraai8810bdb2001-04-24 20:04:18 +0000110 isatty(0)) ||
111 (flags & FILEUTILS_INTERACTIVE)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000112 fprintf(stderr, "%s: remove `%s'? ", bb_applet_name, path);
113 if (!bb_ask_confirmation())
Matt Kraai8810bdb2001-04-24 20:04:18 +0000114 return 0;
115 }
116
117 if (unlink(path) < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000118 bb_perror_msg("unable to remove `%s'", path);
Matt Kraai8810bdb2001-04-24 20:04:18 +0000119 return -1;
120 }
121
122 return 0;
123 }
124}