Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 3 | * Mini chmod implementation for busybox |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 4 | * |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen |
| 6 | * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org> |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 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" |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 30 | |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 31 | static int fileAction(const char *fileName, struct stat *statbuf, void* junk) |
| 32 | { |
Matt Kraai | 6aabfd5 | 2001-04-26 18:55:29 +0000 | [diff] [blame] | 33 | if (!parse_mode((char *)junk, &(statbuf->st_mode))) |
| 34 | error_msg_and_die("internal error"); |
| 35 | if (chmod(fileName, statbuf->st_mode) == 0) |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 36 | return (TRUE); |
| 37 | perror(fileName); |
| 38 | return (FALSE); |
| 39 | } |
| 40 | |
| 41 | int chmod_main(int argc, char **argv) |
| 42 | { |
Matt Kraai | 6aabfd5 | 2001-04-26 18:55:29 +0000 | [diff] [blame] | 43 | int i; |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 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; |
Matt Kraai | 468f504 | 2001-04-26 18:27:47 +0000 | [diff] [blame] | 52 | break; |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 53 | default: |
| 54 | show_usage(); |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | if (argc > optind && argc > 2 && argv[optind]) { |
| 59 | /* Parse the specified mode */ |
Matt Kraai | 6aabfd5 | 2001-04-26 18:55:29 +0000 | [diff] [blame] | 60 | mode_t mode; |
Matt Kraai | 1f0c436 | 2001-12-20 23:13:26 +0000 | [diff] [blame] | 61 | if (! parse_mode(argv[optind], &mode)) { |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 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 */ |
Matt Kraai | 6aabfd5 | 2001-04-26 18:55:29 +0000 | [diff] [blame] | 69 | for (i = optind + 1; i < argc; i++) { |
Matt Kraai | 1f0c436 | 2001-12-20 23:13:26 +0000 | [diff] [blame] | 70 | if (! recursive_action (argv[i], recursiveFlag, FALSE, FALSE, fileAction, |
| 71 | fileAction, argv[optind])) { |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 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 | */ |