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 | * |
Rob Landley | f8ec1b5 | 2006-01-06 18:22:05 +0000 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
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? */ |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 11 | /* BB_AUDIT GNU defects - unsupported long options. */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 12 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/chown.html */ |
| 13 | |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 14 | #include "busybox.h" |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 15 | |
Denis Vlasenko | 99912ca | 2007-04-10 15:43:37 +0000 | [diff] [blame^] | 16 | /* This is a NOEXEC applet. Be very careful! */ |
| 17 | |
| 18 | |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 19 | #define OPT_STR ("Rh" USE_DESKTOP("vcfLHP")) |
| 20 | #define BIT_RECURSE 1 |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 21 | #define OPT_RECURSE (option_mask32 & 1) |
| 22 | #define OPT_NODEREF (option_mask32 & 2) |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 23 | #define OPT_VERBOSE (USE_DESKTOP(option_mask32 & 0x04) SKIP_DESKTOP(0)) |
| 24 | #define OPT_CHANGED (USE_DESKTOP(option_mask32 & 0x08) SKIP_DESKTOP(0)) |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 25 | #define OPT_QUIET (USE_DESKTOP(option_mask32 & 0x10) SKIP_DESKTOP(0)) |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 26 | /* POSIX options |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 27 | * -L traverse every symbolic link to a directory encountered |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 28 | * -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] | 29 | * -P do not traverse any symbolic links (default) |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 30 | * We do not conform to the following: |
| 31 | * "Specifying more than one of -H, -L, and -P is not an error. |
| 32 | * The last option specified shall determine the behavior of the utility." */ |
| 33 | /* -L */ |
Denis Vlasenko | 8a91081 | 2007-03-08 16:14:46 +0000 | [diff] [blame] | 34 | #define BIT_TRAVERSE 0x20 |
| 35 | #define OPT_TRAVERSE (USE_DESKTOP(option_mask32 & BIT_TRAVERSE) SKIP_DESKTOP(0)) |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 36 | /* -H or -L */ |
Denis Vlasenko | 8a91081 | 2007-03-08 16:14:46 +0000 | [diff] [blame] | 37 | #define BIT_TRAVERSE_TOP (0x20|0x40) |
| 38 | #define OPT_TRAVERSE_TOP (USE_DESKTOP(option_mask32 & BIT_TRAVERSE_TOP) SKIP_DESKTOP(0)) |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 39 | |
Denis Vlasenko | 16c7fb7 | 2007-03-14 22:08:04 +0000 | [diff] [blame] | 40 | typedef int (*chown_fptr)(const char *, uid_t, gid_t); |
| 41 | |
| 42 | static struct bb_uidgid_t ugid = { -1, -1 }; |
| 43 | |
Bernhard Reutner-Fischer | 20f4000 | 2006-01-30 17:17:14 +0000 | [diff] [blame] | 44 | static int fileAction(const char *fileName, struct stat *statbuf, |
Denis Vlasenko | 16c7fb7 | 2007-03-14 22:08:04 +0000 | [diff] [blame] | 45 | void *cf, int depth) |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 46 | { |
Denis Vlasenko | 8a91081 | 2007-03-08 16:14:46 +0000 | [diff] [blame] | 47 | uid_t u = (ugid.uid == (uid_t)-1) ? statbuf->st_uid : ugid.uid; |
| 48 | gid_t g = (ugid.gid == (gid_t)-1) ? statbuf->st_gid : ugid.gid; |
| 49 | |
Denis Vlasenko | 16c7fb7 | 2007-03-14 22:08:04 +0000 | [diff] [blame] | 50 | if (!((chown_fptr)cf)(fileName, u, g)) { |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 51 | if (OPT_VERBOSE |
Denis Vlasenko | 8a91081 | 2007-03-08 16:14:46 +0000 | [diff] [blame] | 52 | || (OPT_CHANGED && (statbuf->st_uid != u || statbuf->st_gid != g)) |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 53 | ) { |
Denis Vlasenko | 6eebed5 | 2007-01-03 20:07:06 +0000 | [diff] [blame] | 54 | printf("changed ownership of '%s' to %u:%u\n", |
Denis Vlasenko | 8a91081 | 2007-03-08 16:14:46 +0000 | [diff] [blame] | 55 | fileName, (unsigned)u, (unsigned)g); |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 56 | } |
Rob Landley | f8ec1b5 | 2006-01-06 18:22:05 +0000 | [diff] [blame] | 57 | return TRUE; |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 58 | } |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 59 | if (!OPT_QUIET) |
| 60 | bb_perror_msg("%s", fileName); /* A filename can have % in it... */ |
Rob Landley | f8ec1b5 | 2006-01-06 18:22:05 +0000 | [diff] [blame] | 61 | return FALSE; |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 62 | } |
| 63 | |
Denis Vlasenko | 06af216 | 2007-02-03 17:28:39 +0000 | [diff] [blame] | 64 | int chown_main(int argc, char **argv); |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 65 | int chown_main(int argc, char **argv) |
| 66 | { |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 67 | int retval = EXIT_SUCCESS; |
Denis Vlasenko | 16c7fb7 | 2007-03-14 22:08:04 +0000 | [diff] [blame] | 68 | chown_fptr chown_func; |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 69 | |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 70 | opt_complementary = "-2"; |
| 71 | getopt32(argc, argv, OPT_STR); |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 72 | argv += optind; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 73 | |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 74 | /* This matches coreutils behavior (almost - see below) */ |
Denis Vlasenko | 16c7fb7 | 2007-03-14 22:08:04 +0000 | [diff] [blame] | 75 | chown_func = chown; |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 76 | if (OPT_NODEREF |
Denis Vlasenko | 8a91081 | 2007-03-08 16:14:46 +0000 | [diff] [blame] | 77 | /* || (OPT_RECURSE && !OPT_TRAVERSE_TOP): */ |
| 78 | USE_DESKTOP( || (option_mask32 & (BIT_RECURSE|BIT_TRAVERSE_TOP)) == BIT_RECURSE) |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 79 | ) { |
| 80 | chown_func = lchown; |
| 81 | } |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 82 | |
Denis Vlasenko | cce3858 | 2007-02-26 22:47:42 +0000 | [diff] [blame] | 83 | parse_chown_usergroup_or_die(&ugid, argv[0]); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 84 | |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 85 | /* Ok, ready to do the deed now */ |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 86 | argv++; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 87 | do { |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 88 | char *arg = *argv; |
| 89 | |
Denis Vlasenko | 8a91081 | 2007-03-08 16:14:46 +0000 | [diff] [blame] | 90 | if (OPT_TRAVERSE_TOP) { |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 91 | /* resolves symlink (even recursive) */ |
| 92 | arg = xmalloc_realpath(arg); |
| 93 | if (!arg) |
| 94 | continue; |
| 95 | } |
| 96 | |
| 97 | if (!recursive_action(arg, |
Denis Vlasenko | bbd695d | 2007-04-08 10:52:28 +0000 | [diff] [blame] | 98 | (OPT_RECURSE ? ACTION_RECURSE : 0) | /* recurse */ |
| 99 | (OPT_TRAVERSE ? ACTION_FOLLOWLINKS : 0),/* follow links if -L */ |
Bernhard Reutner-Fischer | 3e816c1 | 2007-03-29 10:30:50 +0000 | [diff] [blame] | 100 | fileAction, /* file action */ |
| 101 | fileAction, /* dir action */ |
| 102 | chown_func, /* user data */ |
| 103 | 0) /* depth */ |
Denis Vlasenko | 51b4c92 | 2006-10-27 16:07:20 +0000 | [diff] [blame] | 104 | ) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 105 | retval = EXIT_FAILURE; |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 106 | } |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 107 | |
Denis Vlasenko | 8a91081 | 2007-03-08 16:14:46 +0000 | [diff] [blame] | 108 | if (OPT_TRAVERSE_TOP) |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 109 | free(arg); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 110 | } while (*++argv); |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 111 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 112 | return retval; |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 113 | } |
Denis Vlasenko | cd27c42 | 2007-03-08 13:37:43 +0000 | [diff] [blame] | 114 | |
| 115 | /* |
| 116 | Testcase. Run in empty directory. |
| 117 | |
| 118 | #!/bin/sh |
| 119 | t1="/tmp/busybox chown" |
| 120 | t2="/usr/bin/chown" |
| 121 | create() { |
| 122 | rm -rf $1; mkdir $1 |
| 123 | ( |
| 124 | cd $1 || exit 1 |
| 125 | mkdir dir dir2 |
| 126 | >up |
| 127 | >file |
| 128 | >dir/file |
| 129 | >dir2/file |
| 130 | ln -s dir linkdir |
| 131 | ln -s file linkfile |
| 132 | ln -s ../up dir/linkup |
| 133 | ln -s ../dir2 dir/linkupdir2 |
| 134 | ) |
| 135 | chown -R 0:0 $1 |
| 136 | } |
| 137 | tst() { |
| 138 | create test1 |
| 139 | create test2 |
| 140 | (cd test1; $t1 $1) |
| 141 | (cd test2; $t2 $1) |
| 142 | (cd test1; ls -lnR) >out1 |
| 143 | (cd test2; ls -lnR) >out2 |
| 144 | echo "chown $1" >out.diff |
| 145 | if ! diff -u out1 out2 >>out.diff; then exit 1; fi |
| 146 | rm out.diff |
| 147 | } |
| 148 | tst_for_each() { |
| 149 | tst "$1 1:1 file" |
| 150 | tst "$1 1:1 dir" |
| 151 | tst "$1 1:1 linkdir" |
| 152 | tst "$1 1:1 linkfile" |
| 153 | } |
| 154 | echo "If script produced 'out.diff' file, then at least one testcase failed" |
| 155 | # These match coreutils 6.8: |
| 156 | tst_for_each "" |
| 157 | tst_for_each "-R" |
| 158 | tst_for_each "-RP" |
| 159 | tst_for_each "-RL" |
| 160 | tst_for_each "-RH" |
| 161 | tst_for_each "-h" |
| 162 | tst_for_each "-hR" |
| 163 | tst_for_each "-hRP" |
| 164 | # Below: with "chown linkdir" coreutils 6.8 will chown linkdir _target_, |
| 165 | # we lchown _the link_. I believe we are "more correct". |
| 166 | #tst_for_each "-hRL" |
| 167 | #tst_for_each "-hRH" |
| 168 | |
| 169 | */ |