Patch from Randolfe Averty to fixup package conflict checks, cleanup some memory...
[oweals/busybox.git] / coreutils / chmod.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini chmod implementation for busybox
4  *
5  * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen
6  * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  *
22  */
23
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <unistd.h>
28 #include <getopt.h>
29 #include "busybox.h"
30
31 static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
32 {
33         if (!parse_mode((char *)junk, &(statbuf->st_mode)))
34                 error_msg_and_die("internal error");
35         if (chmod(fileName, statbuf->st_mode) == 0)
36                 return (TRUE);
37         perror(fileName);
38         return (FALSE);
39 }
40
41 int chmod_main(int argc, char **argv)
42 {
43         int i;
44         int opt;
45         int recursiveFlag = FALSE;
46
47         /* do normal option parsing */
48         while ((opt = getopt(argc, argv, "R")) > 0) {
49                 switch (opt) {
50                         case 'R':
51                                 recursiveFlag = TRUE;
52                                 break;
53                         default:
54                                 show_usage();
55                 }
56         }
57
58         if (argc > optind && argc > 2 && argv[optind]) {
59                 /* Parse the specified mode */
60                 mode_t mode;
61                 if (! parse_mode(argv[optind], &mode)) {
62                         error_msg_and_die( "unknown mode: %s", argv[optind]);
63                 }
64         } else {
65                 error_msg_and_die(too_few_args);
66         }
67
68         /* Ok, ready to do the deed now */
69         for (i = optind + 1; i < argc; i++) {
70                 if (! recursive_action (argv[i], recursiveFlag, FALSE, FALSE, fileAction,
71                                         fileAction, argv[optind])) {
72                         return EXIT_FAILURE;
73                 }
74         }
75         return EXIT_SUCCESS;
76 }
77
78 /*
79 Local Variables:
80 c-file-style: "linux"
81 c-basic-offset: 4
82 tab-width: 4
83 End:
84 */