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 | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 6 | * |
Eric Andersen | d274b53 | 2002-10-10 03:47:01 +0000 | [diff] [blame] | 7 | * Reworked by (C) 2002 Vladimir Oleynik <dzo@simtreas.ru> |
| 8 | * to correctly parse '-rwxgoa' |
| 9 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 10 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 11 | */ |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 12 | //config:config CHMOD |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 13 | //config: bool "chmod (5.5 kb)" |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 14 | //config: default y |
| 15 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 16 | //config: chmod is used to change the access permission of files. |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 17 | |
| 18 | //applet:IF_CHMOD(APPLET_NOEXEC(chmod, chmod, BB_DIR_BIN, BB_SUID_DROP, chmod)) |
| 19 | |
| 20 | //kbuild:lib-$(CONFIG_CHMOD) += chmod.o |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 21 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 22 | /* BB_AUDIT SUSv3 compliant */ |
Denis Vlasenko | fefb279 | 2006-10-27 15:13:54 +0000 | [diff] [blame] | 23 | /* BB_AUDIT GNU defects - unsupported long options. */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 24 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/chmod.html */ |
| 25 | |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 26 | //usage:#define chmod_trivial_usage |
| 27 | //usage: "[-R"IF_DESKTOP("cvf")"] MODE[,MODE]... FILE..." |
| 28 | //usage:#define chmod_full_usage "\n\n" |
| 29 | //usage: "Each MODE is one or more of the letters ugoa, one of the\n" |
| 30 | //usage: "symbols +-= and one or more of the letters rwxst\n" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 31 | //usage: "\n -R Recurse" |
| 32 | //usage: IF_DESKTOP( |
| 33 | //usage: "\n -c List changed files" |
| 34 | //usage: "\n -v List all files" |
| 35 | //usage: "\n -f Hide errors" |
| 36 | //usage: ) |
| 37 | //usage: |
| 38 | //usage:#define chmod_example_usage |
| 39 | //usage: "$ ls -l /tmp/foo\n" |
| 40 | //usage: "-rw-rw-r-- 1 root root 0 Apr 12 18:25 /tmp/foo\n" |
| 41 | //usage: "$ chmod u+x /tmp/foo\n" |
| 42 | //usage: "$ ls -l /tmp/foo\n" |
| 43 | //usage: "-rwxrw-r-- 1 root root 0 Apr 12 18:25 /tmp/foo*\n" |
| 44 | //usage: "$ chmod 444 /tmp/foo\n" |
| 45 | //usage: "$ ls -l /tmp/foo\n" |
| 46 | //usage: "-r--r--r-- 1 root root 0 Apr 12 18:25 /tmp/foo\n" |
| 47 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 48 | #include "libbb.h" |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 49 | |
Denis Vlasenko | 99912ca | 2007-04-10 15:43:37 +0000 | [diff] [blame] | 50 | /* This is a NOEXEC applet. Be very careful! */ |
| 51 | |
| 52 | |
Denis Vlasenko | fefb279 | 2006-10-27 15:13:54 +0000 | [diff] [blame] | 53 | #define OPT_RECURSE (option_mask32 & 1) |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 54 | #define OPT_VERBOSE (IF_DESKTOP(option_mask32 & 2) IF_NOT_DESKTOP(0)) |
| 55 | #define OPT_CHANGED (IF_DESKTOP(option_mask32 & 4) IF_NOT_DESKTOP(0)) |
| 56 | #define OPT_QUIET (IF_DESKTOP(option_mask32 & 8) IF_NOT_DESKTOP(0)) |
| 57 | #define OPT_STR "R" IF_DESKTOP("vcf") |
Denis Vlasenko | fefb279 | 2006-10-27 15:13:54 +0000 | [diff] [blame] | 58 | |
Denis Vlasenko | 8c35d65 | 2006-10-27 23:42:25 +0000 | [diff] [blame] | 59 | /* coreutils: |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 60 | * chmod never changes the permissions of symbolic links; the chmod |
| 61 | * system call cannot change their permissions. This is not a problem |
| 62 | * since the permissions of symbolic links are never used. |
| 63 | * However, for each symbolic link listed on the command line, chmod changes |
| 64 | * the permissions of the pointed-to file. In contrast, chmod ignores |
| 65 | * symbolic links encountered during recursive directory traversals. |
| 66 | */ |
| 67 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 68 | static int FAST_FUNC fileAction(const char *fileName, struct stat *statbuf, void* param, int depth) |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 69 | { |
Denis Vlasenko | 8c35d65 | 2006-10-27 23:42:25 +0000 | [diff] [blame] | 70 | mode_t newmode; |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 71 | |
Denis Vlasenko | 8c35d65 | 2006-10-27 23:42:25 +0000 | [diff] [blame] | 72 | /* match coreutils behavior */ |
| 73 | if (depth == 0) { |
| 74 | /* statbuf holds lstat result, but we need stat (follow link) */ |
| 75 | if (stat(fileName, statbuf)) |
| 76 | goto err; |
| 77 | } else { /* depth > 0: skip links */ |
| 78 | if (S_ISLNK(statbuf->st_mode)) |
| 79 | return TRUE; |
| 80 | } |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 81 | |
Denys Vlasenko | 5711a2a | 2015-10-07 17:55:33 +0200 | [diff] [blame] | 82 | newmode = bb_parse_mode((char *)param, statbuf->st_mode); |
| 83 | if (newmode == (mode_t)-1) |
Denys Vlasenko | 651a269 | 2010-03-23 16:25:17 +0100 | [diff] [blame] | 84 | bb_error_msg_and_die("invalid mode '%s'", (char *)param); |
Denis Vlasenko | fefb279 | 2006-10-27 15:13:54 +0000 | [diff] [blame] | 85 | |
Denis Vlasenko | 8c35d65 | 2006-10-27 23:42:25 +0000 | [diff] [blame] | 86 | if (chmod(fileName, newmode) == 0) { |
| 87 | if (OPT_VERBOSE |
Denis Vlasenko | fefb279 | 2006-10-27 15:13:54 +0000 | [diff] [blame] | 88 | || (OPT_CHANGED && statbuf->st_mode != newmode) |
| 89 | ) { |
| 90 | printf("mode of '%s' changed to %04o (%s)\n", fileName, |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 91 | newmode & 07777, bb_mode_string(newmode)+1); |
Denis Vlasenko | fefb279 | 2006-10-27 15:13:54 +0000 | [diff] [blame] | 92 | } |
| 93 | return TRUE; |
| 94 | } |
Denis Vlasenko | 8c35d65 | 2006-10-27 23:42:25 +0000 | [diff] [blame] | 95 | err: |
| 96 | if (!OPT_QUIET) |
Denis Vlasenko | 0c97c9d | 2007-10-01 11:58:38 +0000 | [diff] [blame] | 97 | bb_simple_perror_msg(fileName); |
Denis Vlasenko | fefb279 | 2006-10-27 15:13:54 +0000 | [diff] [blame] | 98 | return FALSE; |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 99 | } |
| 100 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 101 | int chmod_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 102 | int chmod_main(int argc UNUSED_PARAM, char **argv) |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 103 | { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 104 | int retval = EXIT_SUCCESS; |
Denis Vlasenko | fefb279 | 2006-10-27 15:13:54 +0000 | [diff] [blame] | 105 | char *arg, **argp; |
Eric Andersen | d274b53 | 2002-10-10 03:47:01 +0000 | [diff] [blame] | 106 | char *smode; |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 107 | |
Denis Vlasenko | 8c35d65 | 2006-10-27 23:42:25 +0000 | [diff] [blame] | 108 | /* Convert first encountered -r into ar, -w into aw etc |
| 109 | * so that getopt would not eat it */ |
| 110 | argp = argv; |
| 111 | while ((arg = *++argp)) { |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 112 | /* Mode spec must be the first arg (sans -R etc) */ |
| 113 | /* (protect against mishandling e.g. "chmod 644 -r") */ |
Denis Vlasenko | 8c35d65 | 2006-10-27 23:42:25 +0000 | [diff] [blame] | 114 | if (arg[0] != '-') { |
| 115 | arg = NULL; |
Denis Vlasenko | fefb279 | 2006-10-27 15:13:54 +0000 | [diff] [blame] | 116 | break; |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 117 | } |
Denis Vlasenko | 8c35d65 | 2006-10-27 23:42:25 +0000 | [diff] [blame] | 118 | /* An option. Not a -- or valid option? */ |
| 119 | if (arg[1] && !strchr("-"OPT_STR, arg[1])) { |
| 120 | arg[0] = 'a'; |
| 121 | break; |
| 122 | } |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 123 | } |
| 124 | |
Denis Vlasenko | 8c0c119 | 2006-10-28 12:42:40 +0000 | [diff] [blame] | 125 | /* Parse options */ |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 126 | getopt32(argv, "^" OPT_STR "\0" "-2"); |
Denis Vlasenko | fefb279 | 2006-10-27 15:13:54 +0000 | [diff] [blame] | 127 | argv += optind; |
Eric Andersen | d274b53 | 2002-10-10 03:47:01 +0000 | [diff] [blame] | 128 | |
Denis Vlasenko | 8c35d65 | 2006-10-27 23:42:25 +0000 | [diff] [blame] | 129 | /* Restore option-like mode if needed */ |
| 130 | if (arg) arg[0] = '-'; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 131 | |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 132 | /* Ok, ready to do the deed now */ |
Denis Vlasenko | 8c35d65 | 2006-10-27 23:42:25 +0000 | [diff] [blame] | 133 | smode = *argv++; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 134 | do { |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 135 | if (!recursive_action(*argv, |
Denis Vlasenko | 8c0c119 | 2006-10-28 12:42:40 +0000 | [diff] [blame] | 136 | OPT_RECURSE, // recurse |
Denis Vlasenko | 8c0c119 | 2006-10-28 12:42:40 +0000 | [diff] [blame] | 137 | fileAction, // file action |
| 138 | fileAction, // dir action |
| 139 | smode, // user data |
| 140 | 0) // depth |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 141 | ) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 142 | retval = EXIT_FAILURE; |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 143 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 144 | } while (*++argv); |
| 145 | |
| 146 | return retval; |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 147 | } |
Denis Vlasenko | 8c35d65 | 2006-10-27 23:42:25 +0000 | [diff] [blame] | 148 | |
| 149 | /* |
| 150 | Security: chmod is too important and too subtle. |
| 151 | This is a test script (busybox chmod versus coreutils). |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 152 | Run it in empty directory. |
Denis Vlasenko | 8c35d65 | 2006-10-27 23:42:25 +0000 | [diff] [blame] | 153 | |
| 154 | #!/bin/sh |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 155 | t1="/tmp/busybox chmod" |
| 156 | t2="/usr/bin/chmod" |
| 157 | create() { |
Denis Vlasenko | 8c35d65 | 2006-10-27 23:42:25 +0000 | [diff] [blame] | 158 | rm -rf $1; mkdir $1 |
| 159 | ( |
| 160 | cd $1 || exit 1 |
| 161 | mkdir dir |
| 162 | >up |
| 163 | >file |
| 164 | >dir/file |
| 165 | ln -s dir linkdir |
| 166 | ln -s file linkfile |
| 167 | ln -s ../up dir/up |
| 168 | ) |
| 169 | } |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 170 | tst() { |
Denis Vlasenko | 8c35d65 | 2006-10-27 23:42:25 +0000 | [diff] [blame] | 171 | (cd test1; $t1 $1) |
| 172 | (cd test2; $t2 $1) |
| 173 | (cd test1; ls -lR) >out1 |
| 174 | (cd test2; ls -lR) >out2 |
| 175 | echo "chmod $1" >out.diff |
| 176 | if ! diff -u out1 out2 >>out.diff; then exit 1; fi |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 177 | rm out.diff |
Denis Vlasenko | 8c35d65 | 2006-10-27 23:42:25 +0000 | [diff] [blame] | 178 | } |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 179 | echo "If script produced 'out.diff' file, then at least one testcase failed" |
Denis Vlasenko | 8c35d65 | 2006-10-27 23:42:25 +0000 | [diff] [blame] | 180 | create test1; create test2 |
Denis Vlasenko | 94cf69f | 2006-10-28 12:37:51 +0000 | [diff] [blame] | 181 | tst "a+w file" |
| 182 | tst "a-w dir" |
| 183 | tst "a+w linkfile" |
| 184 | tst "a-w linkdir" |
| 185 | tst "-R a+w file" |
| 186 | tst "-R a-w dir" |
| 187 | tst "-R a+w linkfile" |
| 188 | tst "-R a-w linkdir" |
| 189 | tst "a-r,a+x linkfile" |
Denis Vlasenko | 8c35d65 | 2006-10-27 23:42:25 +0000 | [diff] [blame] | 190 | */ |