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