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