source: mainline/uspace/app/bdsh/cmds/modules/rm/rm.c@ 081d60f

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 081d60f was 081d60f, checked in by Sean Bartell <wingedtachikoma@…>, 13 years ago

Fix some style issues in bdsh.

  • Slight indentation fix in sleep.c
  • Use a better name in sleep.c
  • Remove static things from header files in various commands
  • Property mode set to 100644
File size: 7.4 KB
Line 
1/*
2 * Copyright (c) 2008 Tim Post
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <stdio.h>
30#include <stdlib.h>
31#include <unistd.h>
32#include <fcntl.h>
33#include <dirent.h>
34#include <getopt.h>
35#include <mem.h>
36#include <str.h>
37
38#include "config.h"
39#include "errors.h"
40#include "util.h"
41#include "entry.h"
42#include "rm.h"
43#include "cmds.h"
44
45static const char *cmdname = "rm";
46#define RM_VERSION "0.0.1"
47
48static struct option const long_options[] = {
49 { "help", no_argument, 0, 'h' },
50 { "version", no_argument, 0, 'v' },
51 { "recursive", no_argument, 0, 'r' },
52 { "force", no_argument, 0, 'f' },
53 { "safe", no_argument, 0, 's' },
54 { 0, 0, 0, 0 }
55};
56
57/* Return values for rm_scope() */
58#define RM_BOGUS 0
59#define RM_FILE 1
60#define RM_DIR 2
61
62/* Flags for rm_update() */
63#define _RM_ENTRY 0
64#define _RM_ADVANCE 1
65#define _RM_REWIND 2
66#define _RM_EXIT 3
67
68/* A simple job structure */
69typedef struct {
70 /* Options set at run time */
71 unsigned int force; /* -f option */
72 unsigned int recursive; /* -r option */
73 unsigned int safe; /* -s option */
74
75 /* Keeps track of the job in progress */
76 int advance; /* How far deep we've gone since entering */
77 DIR *entry; /* Entry point to the tree being removed */
78 char *owd; /* Where we were when we invoked rm */
79 char *cwd; /* Current directory being transversed */
80 char *nwd; /* Next directory to be transversed */
81
82 /* Counters */
83 int f_removed; /* Number of files unlinked */
84 int d_removed; /* Number of directories unlinked */
85} rm_job_t;
86
87static rm_job_t rm;
88
89static unsigned int rm_recursive(const char *);
90
91static unsigned int rm_start(rm_job_t *rm)
92{
93 rm->recursive = 0;
94 rm->force = 0;
95 rm->safe = 0;
96
97 /* Make sure we can allocate enough memory to store
98 * what is needed in the job structure */
99 if (NULL == (rm->nwd = (char *) malloc(PATH_MAX)))
100 return 0;
101 memset(rm->nwd, 0, sizeof(rm->nwd));
102
103 if (NULL == (rm->owd = (char *) malloc(PATH_MAX)))
104 return 0;
105 memset(rm->owd, 0, sizeof(rm->owd));
106
107 if (NULL == (rm->cwd = (char *) malloc(PATH_MAX)))
108 return 0;
109 memset(rm->cwd, 0, sizeof(rm->cwd));
110
111 chdir(".");
112
113 if (NULL == (getcwd(rm->owd, PATH_MAX)))
114 return 0;
115
116 return 1;
117}
118
119static void rm_end(rm_job_t *rm)
120{
121 if (NULL != rm->nwd)
122 free(rm->nwd);
123
124 if (NULL != rm->owd)
125 free(rm->owd);
126
127 if (NULL != rm->cwd)
128 free(rm->cwd);
129}
130
131static unsigned int rm_single(const char *path)
132{
133 if (unlink(path)) {
134 cli_error(CL_EFAIL, "rm: could not remove file %s", path);
135 return 1;
136 }
137 return 0;
138}
139
140static unsigned int rm_scope(const char *path)
141{
142 int fd;
143 DIR *dirp;
144
145 dirp = opendir(path);
146 if (dirp) {
147 closedir(dirp);
148 return RM_DIR;
149 }
150
151 fd = open(path, O_RDONLY);
152 if (fd > 0) {
153 close(fd);
154 return RM_FILE;
155 }
156
157 return RM_BOGUS;
158}
159
160static unsigned int rm_recursive_not_empty_dirs(const char *path)
161{
162 DIR *dirp;
163 struct dirent *dp;
164 char buff[PATH_MAX];
165 unsigned int scope;
166 unsigned int ret = 0;
167
168 dirp = opendir(path);
169 if (!dirp) {
170 /* May have been deleted between scoping it and opening it */
171 cli_error(CL_EFAIL, "Could not open %s", path);
172 return ret;
173 }
174
175 memset(buff, 0, sizeof(buff));
176 while ((dp = readdir(dirp))) {
177 snprintf(buff, PATH_MAX - 1, "%s/%s", path, dp->d_name);
178 scope = rm_scope(buff);
179 switch (scope) {
180 case RM_BOGUS:
181 break;
182 case RM_FILE:
183 ret += rm_single(buff);
184 break;
185 case RM_DIR:
186 ret += rm_recursive(buff);
187 break;
188 }
189 }
190
191 closedir(dirp);
192
193 return ret;
194}
195
196static unsigned int rm_recursive(const char *path)
197{
198 int rc;
199 unsigned int ret = 0;
200
201 /* First see if it will just go away */
202 rc = rmdir(path);
203 if (rc == 0)
204 return 0;
205
206 /* Its not empty, recursively scan it */
207 ret = rm_recursive_not_empty_dirs(path);
208
209 /* Delete directory */
210 rc = rmdir(path);
211 if (rc == 0)
212 return ret;
213
214 cli_error(CL_ENOTSUP, "Can not remove %s", path);
215
216 return ret + 1;
217}
218
219/* Dispays help for rm in various levels */
220void help_cmd_rm(unsigned int level)
221{
222 if (level == HELP_SHORT) {
223 printf("`%s' removes files and directories.\n", cmdname);
224 } else {
225 help_cmd_rm(HELP_SHORT);
226 printf(
227 "Usage: %s [options] <path>\n"
228 "Options:\n"
229 " -h, --help A short option summary\n"
230 " -v, --version Print version information and exit\n"
231 " -r, --recursive Recursively remove sub directories\n"
232 " -f, --force Do not prompt prior to removing files\n"
233 " -s, --safe Stop if directories change during removal\n\n"
234 "Currently, %s is under development, some options don't work.\n",
235 cmdname, cmdname);
236 }
237 return;
238}
239
240/* Main entry point for rm, accepts an array of arguments */
241int cmd_rm(char **argv)
242{
243 unsigned int argc;
244 unsigned int i, scope, ret = 0;
245 int c, opt_ind;
246 size_t len;
247 char *buff = NULL;
248
249 argc = cli_count_args(argv);
250
251 if (argc < 2) {
252 cli_error(CL_EFAIL,
253 "%s: insufficient arguments. Try %s --help", cmdname, cmdname);
254 return CMD_FAILURE;
255 }
256
257 if (!rm_start(&rm)) {
258 cli_error(CL_ENOMEM, "%s: could not initialize", cmdname);
259 rm_end(&rm);
260 return CMD_FAILURE;
261 }
262
263 for (c = 0, optind = 0, opt_ind = 0; c != -1;) {
264 c = getopt_long(argc, argv, "hvrfs", long_options, &opt_ind);
265 switch (c) {
266 case 'h':
267 help_cmd_rm(HELP_LONG);
268 return CMD_SUCCESS;
269 case 'v':
270 printf("%s\n", RM_VERSION);
271 return CMD_SUCCESS;
272 case 'r':
273 rm.recursive = 1;
274 break;
275 case 'f':
276 rm.force = 1;
277 break;
278 case 's':
279 rm.safe = 1;
280 break;
281 }
282 }
283
284 if ((unsigned) optind == argc) {
285 cli_error(CL_EFAIL,
286 "%s: insufficient arguments. Try %s --help", cmdname, cmdname);
287 rm_end(&rm);
288 return CMD_FAILURE;
289 }
290
291 i = optind;
292 while (NULL != argv[i]) {
293 len = str_size(argv[i]) + 2;
294 buff = (char *) realloc(buff, len);
295 if (buff == NULL) {
296 printf("rm: out of memory\n");
297 ret = 1;
298 break;
299 }
300 memset(buff, 0, sizeof(buff));
301 snprintf(buff, len, "%s", argv[i]);
302
303 scope = rm_scope(buff);
304 switch (scope) {
305 case RM_BOGUS: /* FIXME */
306 case RM_FILE:
307 ret += rm_single(buff);
308 break;
309 case RM_DIR:
310 if (! rm.recursive) {
311 printf("%s is a directory, use -r to remove it.\n", buff);
312 ret ++;
313 } else {
314 ret += rm_recursive(buff);
315 }
316 break;
317 }
318 i++;
319 }
320
321 if (NULL != buff)
322 free(buff);
323
324 rm_end(&rm);
325
326 if (ret)
327 return CMD_FAILURE;
328 else
329 return CMD_SUCCESS;
330}
331
Note: See TracBrowser for help on using the repository browser.