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 chown 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 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 8 | */ |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 9 | //config:config CHOWN |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 10 | //config: bool "chown (7.6 kb)" |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 11 | //config: default y |
| 12 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 13 | //config: chown is used to change the user and/or group ownership |
| 14 | //config: of files. |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 15 | //config: |
| 16 | //config:config FEATURE_CHOWN_LONG_OPTIONS |
| 17 | //config: bool "Enable long options" |
| 18 | //config: default y |
| 19 | //config: depends on CHOWN && LONG_OPTS |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 20 | |
| 21 | //applet:IF_CHOWN(APPLET_NOEXEC(chown, chown, BB_DIR_BIN, BB_SUID_DROP, chown)) |
| 22 | |
| 23 | //kbuild:lib-$(CONFIG_CHOWN) += chown.o |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 24 | |
Denis Vlasenko | 8a91081 | 2007-03-08 16:14:46 +0000 | [diff] [blame] | 25 | /* BB_AUDIT SUSv3 defects - none? */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 26 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/chown.html */ |
| 27 | |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 28 | //usage:#define chown_trivial_usage |
Aaro Koskinen | 2735bc0 | 2015-10-16 17:24:46 +0200 | [diff] [blame] | 29 | //usage: "[-Rh"IF_DESKTOP("LHPcvf")"]... USER[:[GRP]] FILE..." |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 30 | //usage:#define chown_full_usage "\n\n" |
Denys Vlasenko | e2b9215 | 2021-06-14 20:47:20 +0200 | [diff] [blame] | 31 | //usage: "Change the owner and/or group of FILEs to USER and/or GRP" |
| 32 | //usage: "\n" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 33 | //usage: "\n -h Affect symlinks instead of symlink targets" |
Denys Vlasenko | 16ca379 | 2014-01-09 17:52:13 +0100 | [diff] [blame] | 34 | //usage: IF_DESKTOP( |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 35 | //usage: "\n -L Traverse all symlinks to directories" |
| 36 | //usage: "\n -H Traverse symlinks on command line only" |
| 37 | //usage: "\n -P Don't traverse symlinks (default)" |
Denys Vlasenko | e2b9215 | 2021-06-14 20:47:20 +0200 | [diff] [blame] | 38 | //usage: ) |
| 39 | //next 4 options are the same for chmod/chown/chgrp: |
| 40 | //usage: "\n -R Recurse" |
| 41 | //usage: IF_DESKTOP( |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 42 | //usage: "\n -c List changed files" |
Denys Vlasenko | e2b9215 | 2021-06-14 20:47:20 +0200 | [diff] [blame] | 43 | //usage: "\n -v Verbose" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 44 | //usage: "\n -f Hide errors" |
| 45 | //usage: ) |
| 46 | //usage: |
| 47 | //usage:#define chown_example_usage |
| 48 | //usage: "$ ls -l /tmp/foo\n" |
| 49 | //usage: "-r--r--r-- 1 andersen andersen 0 Apr 12 18:25 /tmp/foo\n" |
| 50 | //usage: "$ chown root /tmp/foo\n" |
| 51 | //usage: "$ ls -l /tmp/foo\n" |
| 52 | //usage: "-r--r--r-- 1 root andersen 0 Apr 12 18:25 /tmp/foo\n" |
| 53 | //usage: "$ chown root.root /tmp/foo\n" |
| 54 | //usage: "ls -l /tmp/foo\n" |
| 55 | //usage: "-r--r--r-- 1 root root 0 Apr 12 18:25 /tmp/foo\n" |
| 56 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 57 | #include "libbb.h" |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 58 | |
Denis Vlasenko | 99912ca | 2007-04-10 15:43:37 +0000 | [diff] [blame] | 59 | /* This is a NOEXEC applet. Be very careful! */ |
| 60 | |
| 61 | |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 62 | #define OPT_STR "Rh" IF_DESKTOP("vcfLHP") |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 63 | #define BIT_RECURSE 1 |
Denis Vlasenko | 08d120e | 2008-07-22 11:37:23 +0000 | [diff] [blame] | 64 | #define OPT_RECURSE (opt & 1) |
| 65 | #define OPT_NODEREF (opt & 2) |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 66 | #define OPT_VERBOSE (IF_DESKTOP(opt & 0x04) IF_NOT_DESKTOP(0)) |
| 67 | #define OPT_CHANGED (IF_DESKTOP(opt & 0x08) IF_NOT_DESKTOP(0)) |
| 68 | #define OPT_QUIET (IF_DESKTOP(opt & 0x10) IF_NOT_DESKTOP(0)) |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 69 | /* POSIX options |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 70 | * -L traverse every symbolic link to a directory encountered |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 71 | * -H if a command line argument is a symbolic link to a directory, traverse it |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 72 | * -P do not traverse any symbolic links (default) |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 73 | * We do not conform to the following: |
| 74 | * "Specifying more than one of -H, -L, and -P is not an error. |
| 75 | * The last option specified shall determine the behavior of the utility." */ |
| 76 | /* -L */ |
Denis Vlasenko | 8a91081 | 2007-03-08 16:14:46 +0000 | [diff] [blame] | 77 | #define BIT_TRAVERSE 0x20 |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 78 | #define OPT_TRAVERSE (IF_DESKTOP(opt & BIT_TRAVERSE) IF_NOT_DESKTOP(0)) |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 79 | /* -H or -L */ |
Denis Vlasenko | 8a91081 | 2007-03-08 16:14:46 +0000 | [diff] [blame] | 80 | #define BIT_TRAVERSE_TOP (0x20|0x40) |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 81 | #define OPT_TRAVERSE_TOP (IF_DESKTOP(opt & BIT_TRAVERSE_TOP) IF_NOT_DESKTOP(0)) |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 82 | |
Matheus Izvekov | 31416d5 | 2010-01-21 19:30:25 -0200 | [diff] [blame] | 83 | #if ENABLE_FEATURE_CHOWN_LONG_OPTIONS |
| 84 | static const char chown_longopts[] ALIGN1 = |
| 85 | "recursive\0" No_argument "R" |
| 86 | "dereference\0" No_argument "\xff" |
| 87 | "no-dereference\0" No_argument "h" |
| 88 | # if ENABLE_DESKTOP |
| 89 | "changes\0" No_argument "c" |
| 90 | "silent\0" No_argument "f" |
| 91 | "quiet\0" No_argument "f" |
| 92 | "verbose\0" No_argument "v" |
| 93 | # endif |
| 94 | ; |
| 95 | #endif |
| 96 | |
Denis Vlasenko | 16c7fb7 | 2007-03-14 22:08:04 +0000 | [diff] [blame] | 97 | typedef int (*chown_fptr)(const char *, uid_t, gid_t); |
| 98 | |
Denis Vlasenko | 08d120e | 2008-07-22 11:37:23 +0000 | [diff] [blame] | 99 | struct param_t { |
| 100 | struct bb_uidgid_t ugid; |
| 101 | chown_fptr chown_func; |
| 102 | }; |
Denis Vlasenko | 16c7fb7 | 2007-03-14 22:08:04 +0000 | [diff] [blame] | 103 | |
Denys Vlasenko | 689d065 | 2020-10-01 21:52:16 +0200 | [diff] [blame] | 104 | static int FAST_FUNC fileAction(struct recursive_state *state UNUSED_PARAM, |
| 105 | const char *fileName, struct stat *statbuf) |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 106 | { |
Denys Vlasenko | 689d065 | 2020-10-01 21:52:16 +0200 | [diff] [blame] | 107 | #define param (*(struct param_t*)state->userData) |
Denis Vlasenko | 08d120e | 2008-07-22 11:37:23 +0000 | [diff] [blame] | 108 | #define opt option_mask32 |
Denys Vlasenko | 0cd445f | 2010-02-06 21:11:49 +0100 | [diff] [blame] | 109 | uid_t u = (param.ugid.uid == (uid_t)-1L) ? statbuf->st_uid : param.ugid.uid; |
| 110 | gid_t g = (param.ugid.gid == (gid_t)-1L) ? statbuf->st_gid : param.ugid.gid; |
Denis Vlasenko | 8a91081 | 2007-03-08 16:14:46 +0000 | [diff] [blame] | 111 | |
Denis Vlasenko | 08d120e | 2008-07-22 11:37:23 +0000 | [diff] [blame] | 112 | if (param.chown_func(fileName, u, g) == 0) { |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 113 | if (OPT_VERBOSE |
Denis Vlasenko | 8a91081 | 2007-03-08 16:14:46 +0000 | [diff] [blame] | 114 | || (OPT_CHANGED && (statbuf->st_uid != u || statbuf->st_gid != g)) |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 115 | ) { |
Denis Vlasenko | 6eebed5 | 2007-01-03 20:07:06 +0000 | [diff] [blame] | 116 | printf("changed ownership of '%s' to %u:%u\n", |
Denis Vlasenko | 8a91081 | 2007-03-08 16:14:46 +0000 | [diff] [blame] | 117 | fileName, (unsigned)u, (unsigned)g); |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 118 | } |
Rob Landley | f8ec1b5 | 2006-01-06 18:22:05 +0000 | [diff] [blame] | 119 | return TRUE; |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 120 | } |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 121 | if (!OPT_QUIET) |
Denys Vlasenko | 0cd445f | 2010-02-06 21:11:49 +0100 | [diff] [blame] | 122 | bb_simple_perror_msg(fileName); |
Rob Landley | f8ec1b5 | 2006-01-06 18:22:05 +0000 | [diff] [blame] | 123 | return FALSE; |
Denis Vlasenko | 08d120e | 2008-07-22 11:37:23 +0000 | [diff] [blame] | 124 | #undef opt |
| 125 | #undef param |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 126 | } |
| 127 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 128 | int chown_main(int argc UNUSED_PARAM, char **argv) |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 129 | { |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 130 | int retval = EXIT_SUCCESS; |
Denis Vlasenko | 08d120e | 2008-07-22 11:37:23 +0000 | [diff] [blame] | 131 | int opt, flags; |
| 132 | struct param_t param; |
| 133 | |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame] | 134 | #if ENABLE_FEATURE_CHOWN_LONG_OPTIONS |
Denys Vlasenko | b013bec | 2017-12-31 17:59:16 +0100 | [diff] [blame] | 135 | opt = getopt32long(argv, "^" OPT_STR "\0" "-2", chown_longopts); |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame] | 136 | #else |
Denys Vlasenko | b013bec | 2017-12-31 17:59:16 +0100 | [diff] [blame] | 137 | opt = getopt32(argv, "^" OPT_STR "\0" "-2"); |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame] | 138 | #endif |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 139 | argv += optind; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 140 | |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 141 | /* This matches coreutils behavior (almost - see below) */ |
Denys Vlasenko | 9882b34 | 2010-01-23 00:13:32 +0100 | [diff] [blame] | 142 | param.chown_func = chown; |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 143 | if (OPT_NODEREF |
Denys Vlasenko | 6830ade | 2013-01-15 13:58:01 +0100 | [diff] [blame] | 144 | /* || (OPT_RECURSE && !OPT_TRAVERSE_TOP): */ |
| 145 | IF_DESKTOP( || (opt & (BIT_RECURSE|BIT_TRAVERSE_TOP)) == BIT_RECURSE) |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 146 | ) { |
Denis Vlasenko | 08d120e | 2008-07-22 11:37:23 +0000 | [diff] [blame] | 147 | param.chown_func = lchown; |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 148 | } |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 149 | |
Denis Vlasenko | d166f83 | 2007-07-05 00:12:55 +0000 | [diff] [blame] | 150 | flags = ACTION_DEPTHFIRST; /* match coreutils order */ |
| 151 | if (OPT_RECURSE) |
| 152 | flags |= ACTION_RECURSE; |
| 153 | if (OPT_TRAVERSE_TOP) |
| 154 | flags |= ACTION_FOLLOWLINKS_L0; /* -H/-L: follow links on depth 0 */ |
| 155 | if (OPT_TRAVERSE) |
| 156 | flags |= ACTION_FOLLOWLINKS; /* follow links if -L */ |
| 157 | |
Denis Vlasenko | 08d120e | 2008-07-22 11:37:23 +0000 | [diff] [blame] | 158 | parse_chown_usergroup_or_die(¶m.ugid, argv[0]); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 159 | |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 160 | /* Ok, ready to do the deed now */ |
Denys Vlasenko | 9882b34 | 2010-01-23 00:13:32 +0100 | [diff] [blame] | 161 | while (*++argv) { |
Denis Vlasenko | d166f83 | 2007-07-05 00:12:55 +0000 | [diff] [blame] | 162 | if (!recursive_action(*argv, |
| 163 | flags, /* flags */ |
Bernhard Reutner-Fischer | 3e816c1 | 2007-03-29 10:30:50 +0000 | [diff] [blame] | 164 | fileAction, /* file action */ |
| 165 | fileAction, /* dir action */ |
Denys Vlasenko | 689d065 | 2020-10-01 21:52:16 +0200 | [diff] [blame] | 166 | ¶m) /* user data */ |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 167 | ) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 168 | retval = EXIT_FAILURE; |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 169 | } |
Denys Vlasenko | 9882b34 | 2010-01-23 00:13:32 +0100 | [diff] [blame] | 170 | } |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 171 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 172 | return retval; |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 173 | } |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 174 | |
| 175 | /* |
| 176 | Testcase. Run in empty directory. |
| 177 | |
| 178 | #!/bin/sh |
| 179 | t1="/tmp/busybox chown" |
| 180 | t2="/usr/bin/chown" |
| 181 | create() { |
| 182 | rm -rf $1; mkdir $1 |
| 183 | ( |
| 184 | cd $1 || exit 1 |
| 185 | mkdir dir dir2 |
| 186 | >up |
| 187 | >file |
| 188 | >dir/file |
| 189 | >dir2/file |
| 190 | ln -s dir linkdir |
| 191 | ln -s file linkfile |
| 192 | ln -s ../up dir/linkup |
| 193 | ln -s ../dir2 dir/linkupdir2 |
| 194 | ) |
| 195 | chown -R 0:0 $1 |
| 196 | } |
| 197 | tst() { |
| 198 | create test1 |
| 199 | create test2 |
Denis Vlasenko | d166f83 | 2007-07-05 00:12:55 +0000 | [diff] [blame] | 200 | echo "[$1]" >>test1.out |
| 201 | echo "[$1]" >>test2.out |
| 202 | (cd test1; $t1 $1) >>test1.out 2>&1 |
| 203 | (cd test2; $t2 $1) >>test2.out 2>&1 |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 204 | (cd test1; ls -lnR) >out1 |
| 205 | (cd test2; ls -lnR) >out2 |
| 206 | echo "chown $1" >out.diff |
| 207 | if ! diff -u out1 out2 >>out.diff; then exit 1; fi |
| 208 | rm out.diff |
| 209 | } |
| 210 | tst_for_each() { |
| 211 | tst "$1 1:1 file" |
| 212 | tst "$1 1:1 dir" |
| 213 | tst "$1 1:1 linkdir" |
| 214 | tst "$1 1:1 linkfile" |
| 215 | } |
| 216 | echo "If script produced 'out.diff' file, then at least one testcase failed" |
Denis Vlasenko | d166f83 | 2007-07-05 00:12:55 +0000 | [diff] [blame] | 217 | >test1.out |
| 218 | >test2.out |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 219 | # These match coreutils 6.8: |
Denis Vlasenko | d166f83 | 2007-07-05 00:12:55 +0000 | [diff] [blame] | 220 | tst_for_each "-v" |
| 221 | tst_for_each "-vR" |
| 222 | tst_for_each "-vRP" |
| 223 | tst_for_each "-vRL" |
| 224 | tst_for_each "-vRH" |
| 225 | tst_for_each "-vh" |
| 226 | tst_for_each "-vhR" |
| 227 | tst_for_each "-vhRP" |
| 228 | tst_for_each "-vhRL" |
| 229 | tst_for_each "-vhRH" |
| 230 | # Fix `name' in coreutils output |
| 231 | sed 's/`/'"'"'/g' -i test2.out |
| 232 | # Compare us with coreutils output |
| 233 | diff -u test1.out test2.out |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 234 | |
| 235 | */ |