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 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 20 | * |
| 21 | */ |
| 22 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 23 | /* BB_AUDIT SUSv3 defects - unsupported options -h, -H, -L, and -P. */ |
| 24 | /* BB_AUDIT GNU defects - unsupported options -h, -c, -f, -v, and long options. */ |
| 25 | /* BB_AUDIT Note: gnu chown does not support -H, -L, or -P. */ |
| 26 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/chown.html */ |
| 27 | |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 28 | #include <stdlib.h> |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 29 | #include <unistd.h> |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 30 | #include <string.h> |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 31 | #include "busybox.h" |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 32 | |
Eric Andersen | 85e5e72 | 2003-07-22 08:56:55 +0000 | [diff] [blame] | 33 | /* Don't use lchown for glibc older then 2.1.x */ |
Eric Andersen | c57a75d | 2001-04-25 17:12:33 +0000 | [diff] [blame] | 34 | #if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1) |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 35 | #define lchown chown |
| 36 | #endif |
| 37 | |
Eric Andersen | 65504ac | 2001-04-30 18:07:24 +0000 | [diff] [blame] | 38 | static long uid; |
| 39 | static long gid; |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 40 | |
Glenn L McGrath | a88cb50 | 2003-02-08 23:36:16 +0000 | [diff] [blame] | 41 | static int (*chown_func)(const char *, uid_t, gid_t) = chown; |
Eric Andersen | 2b02ab9 | 2001-05-11 15:55:41 +0000 | [diff] [blame] | 42 | |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 43 | static int fileAction(const char *fileName, struct stat *statbuf, void* junk) |
| 44 | { |
Eric Andersen | 2b02ab9 | 2001-05-11 15:55:41 +0000 | [diff] [blame] | 45 | if (chown_func(fileName, uid, (gid == -1) ? statbuf->st_gid : gid) == 0) { |
Glenn L McGrath | 55bf79f | 2003-09-08 14:34:23 +0000 | [diff] [blame] | 46 | chmod(fileName, statbuf->st_mode); |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 47 | return (TRUE); |
| 48 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 49 | bb_perror_msg("%s", fileName); /* Avoid multibyte problems. */ |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 50 | return (FALSE); |
| 51 | } |
| 52 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 53 | #define FLAG_R 1 |
| 54 | #define FLAG_h 2 |
| 55 | |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 56 | int chown_main(int argc, char **argv) |
| 57 | { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 58 | int flags; |
| 59 | int retval = EXIT_SUCCESS; |
| 60 | char *groupName; |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 61 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 62 | flags = bb_getopt_ulflags(argc, argv, "Rh"); |
| 63 | |
| 64 | if (flags & FLAG_h) chown_func = lchown; |
| 65 | |
| 66 | if (argc - optind < 2) { |
| 67 | bb_show_usage(); |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 68 | } |
| 69 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 70 | argv += optind; |
Eric Andersen | 2b02ab9 | 2001-05-11 15:55:41 +0000 | [diff] [blame] | 71 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 72 | /* First, check if there is a group name here */ |
| 73 | if ((groupName = strchr(*argv, '.')) == NULL) { |
| 74 | groupName = strchr(*argv, ':'); |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 75 | } |
| 76 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 77 | gid = -1; |
| 78 | if (groupName) { |
| 79 | *groupName++ = '\0'; |
Bernhard Reutner-Fischer | d5bd137 | 2005-09-20 21:06:17 +0000 | [diff] [blame] | 80 | gid = get_ug_id(groupName, bb_xgetgrnam); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | /* Now check for the username */ |
Bernhard Reutner-Fischer | d5bd137 | 2005-09-20 21:06:17 +0000 | [diff] [blame] | 84 | uid = get_ug_id(*argv, bb_xgetpwnam); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 85 | |
| 86 | ++argv; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 87 | |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 88 | /* Ok, ready to do the deed now */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 89 | do { |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 90 | if (! recursive_action (*argv, (flags & FLAG_R), FALSE, FALSE, |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 91 | fileAction, fileAction, NULL)) { |
| 92 | retval = EXIT_FAILURE; |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 93 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 94 | } while (*++argv); |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 95 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 96 | return retval; |
Eric Andersen | 9f0fedb | 2001-04-24 18:07:19 +0000 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | /* |
| 100 | Local Variables: |
| 101 | c-file-style: "linux" |
| 102 | c-basic-offset: 4 |
| 103 | tab-width: 4 |
| 104 | End: |
| 105 | */ |