blob: 38b39680f4d6ce81618272ce2666d71d939dd42f [file] [log] [blame]
Eric Andersen9f0fedb2001-04-24 18:07:19 +00001/* vi: set sw=4 ts=4: */
2/*
Eric Andersenbdfd0d72001-10-24 05:00:29 +00003 * Mini chmod implementation for busybox
Eric Andersen9f0fedb2001-04-24 18:07:19 +00004 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00005 * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen
6 * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
Eric Andersen9f0fedb2001-04-24 18:07:19 +00007 *
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"
Eric Andersen9f0fedb2001-04-24 18:07:19 +000030
Eric Andersen9f0fedb2001-04-24 18:07:19 +000031static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
32{
Matt Kraai6aabfd52001-04-26 18:55:29 +000033 if (!parse_mode((char *)junk, &(statbuf->st_mode)))
34 error_msg_and_die("internal error");
35 if (chmod(fileName, statbuf->st_mode) == 0)
Eric Andersen9f0fedb2001-04-24 18:07:19 +000036 return (TRUE);
37 perror(fileName);
38 return (FALSE);
39}
40
41int chmod_main(int argc, char **argv)
42{
Matt Kraai6aabfd52001-04-26 18:55:29 +000043 int i;
Eric Andersen9f0fedb2001-04-24 18:07:19 +000044 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;
Matt Kraai468f5042001-04-26 18:27:47 +000052 break;
Eric Andersen9f0fedb2001-04-24 18:07:19 +000053 default:
54 show_usage();
55 }
56 }
57
58 if (argc > optind && argc > 2 && argv[optind]) {
59 /* Parse the specified mode */
Matt Kraai6aabfd52001-04-26 18:55:29 +000060 mode_t mode;
Matt Kraai1f0c4362001-12-20 23:13:26 +000061 if (! parse_mode(argv[optind], &mode)) {
Eric Andersen9f0fedb2001-04-24 18:07:19 +000062 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 */
Matt Kraai6aabfd52001-04-26 18:55:29 +000069 for (i = optind + 1; i < argc; i++) {
Matt Kraai1f0c4362001-12-20 23:13:26 +000070 if (! recursive_action (argv[i], recursiveFlag, FALSE, FALSE, fileAction,
71 fileAction, argv[optind])) {
Eric Andersen9f0fedb2001-04-24 18:07:19 +000072 return EXIT_FAILURE;
73 }
74 }
75 return EXIT_SUCCESS;
76}
77
78/*
79Local Variables:
80c-file-style: "linux"
81c-basic-offset: 4
82tab-width: 4
83End:
84*/