1 /* 2 * Copyright (c) 1988, 1993, 1994 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 3. All advertising materials mentioning features or use of this software 14 * must display the following acknowledgement: 15 * This product includes software developed by the University of 16 * California, Berkeley and its contributors. 17 * 4. Neither the name of the University nor the names of its contributors 18 * may be used to endorse or promote products derived from this software 19 * without specific prior written permission. 20 * 21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 31 * SUCH DAMAGE. 32 */ 33 34 #ifndef lint 35 static char copyright[] = 36 "@(#) Copyright (c) 1988, 1993, 1994\n\ 37 The Regents of the University of California. All rights reserved.\n"; 38 #endif /* not lint */ 39 40 #ifndef lint 41 static char sccsid[] = "@(#)chown.c 8.8 (Berkeley) 4/4/94"; 42 #endif /* not lint */ 43 44 #include <sys/param.h> 45 #include <sys/stat.h> 46 47 #include <ctype.h> 48 #include <dirent.h> 49 #include <err.h> 50 #include <errno.h> 51 #include <fts.h> 52 #include <grp.h> 53 #include <pwd.h> 54 #include <stdio.h> 55 #include <stdlib.h> 56 #include <string.h> 57 #include <unistd.h> 58 59 void a_gid __P((char *)); 60 void a_uid __P((char *)); 61 void chownerr __P((char *)); 62 u_long id __P((char *, char *)); 63 void usage __P((void)); 64 65 uid_t uid; 66 gid_t gid; 67 int Rflag, ischown, fflag; 68 char *gname, *myname; 69 70 int 71 main(argc, argv) 72 int argc; 73 char *argv[]; 74 { 75 FTS *ftsp; 76 FTSENT *p; 77 int Hflag, Lflag, Pflag, ch, fts_options, hflag, rval; 78 char *cp; 79 80 myname = (cp = rindex(*argv, '/')) ? cp + 1 : *argv; 81 ischown = myname[2] == 'o'; 82 83 Hflag = Lflag = Pflag = hflag = 0; 84 while ((ch = getopt(argc, argv, "HLPRfh")) != EOF) 85 switch (ch) { 86 case 'H': 87 Hflag = 1; 88 Lflag = Pflag = 0; 89 break; 90 case 'L': 91 Lflag = 1; 92 Hflag = Pflag = 0; 93 break; 94 case 'P': 95 Pflag = 1; 96 Hflag = Lflag = 0; 97 break; 98 case 'R': 99 Rflag = 1; 100 break; 101 case 'f': 102 fflag = 1; 103 break; 104 case 'h': 105 /* 106 * In System V (and probably POSIX.2) the -h option 107 * causes chown/chgrp to change the owner/group of 108 * the symbolic link. 4.4BSD's symbolic links don't 109 * have owners/groups, so it's an undocumented noop. 110 * Do syntax checking, though. 111 */ 112 hflag = 1; 113 break; 114 case '?': 115 default: 116 usage(); 117 } 118 argv += optind; 119 argc -= optind; 120 121 if (argc < 2) 122 usage(); 123 124 fts_options = FTS_PHYSICAL; 125 if (Rflag) { 126 if (hflag) 127 errx(1, 128 "the -R and -h options may not be specified together."); 129 if (Hflag) 130 fts_options |= FTS_COMFOLLOW; 131 if (Lflag) { 132 fts_options &= ~FTS_PHYSICAL; 133 fts_options |= FTS_LOGICAL; 134 } 135 } 136 137 uid = gid = -1; 138 if (ischown) { 139 #ifdef SUPPORT_DOT 140 if ((cp = strchr(*argv, '.')) != NULL) { 141 *cp++ = '\0'; 142 a_gid(cp); 143 } else 144 #endif 145 if ((cp = strchr(*argv, ':')) != NULL) { 146 *cp++ = '\0'; 147 a_gid(cp); 148 } 149 a_uid(*argv); 150 } else 151 a_gid(*argv); 152 153 if ((ftsp = fts_open(++argv, fts_options, 0)) == NULL) 154 err(1, NULL); 155 156 for (rval = 0; (p = fts_read(ftsp)) != NULL;) { 157 switch (p->fts_info) { 158 case FTS_D: 159 if (Rflag) /* Change it at FTS_DP. */ 160 continue; 161 fts_set(ftsp, p, FTS_SKIP); 162 break; 163 case FTS_DNR: /* Warn, chown, continue. */ 164 warnx("%s: %s", p->fts_path, strerror(p->fts_errno)); 165 rval = 1; 166 break; 167 case FTS_ERR: /* Warn, continue. */ 168 case FTS_NS: 169 warnx("%s: %s", p->fts_path, strerror(p->fts_errno)); 170 rval = 1; 171 continue; 172 case FTS_SL: /* Ignore. */ 173 case FTS_SLNONE: 174 /* 175 * The only symlinks that end up here are ones that 176 * don't point to anything and ones that we found 177 * doing a physical walk. 178 */ 179 continue; 180 default: 181 break; 182 } 183 if (chown(p->fts_accpath, uid, gid) && !fflag) { 184 chownerr(p->fts_path); 185 rval = 1; 186 } 187 } 188 if (errno) 189 err(1, "fts_read"); 190 exit(rval); 191 } 192 193 void 194 a_gid(s) 195 char *s; 196 { 197 struct group *gr; 198 199 if (*s == '\0') /* Argument was "uid[:.]". */ 200 return; 201 gname = s; 202 gid = ((gr = getgrnam(s)) == NULL) ? id(s, "group") : gr->gr_gid; 203 } 204 205 void 206 a_uid(s) 207 char *s; 208 { 209 struct passwd *pw; 210 211 if (*s == '\0') /* Argument was "[:.]gid". */ 212 return; 213 uid = ((pw = getpwnam(s)) == NULL) ? id(s, "user") : pw->pw_uid; 214 } 215 216 u_long 217 id(name, type) 218 char *name, *type; 219 { 220 u_long val; 221 char *ep; 222 223 /* 224 * XXX 225 * We know that uid_t's and gid_t's are unsigned longs. 226 */ 227 errno = 0; 228 val = strtoul(name, &ep, 10); 229 if (errno) 230 err(1, "%s", name); 231 if (*ep != '\0') 232 errx(1, "%s: illegal %s name", name, type); 233 return (val); 234 } 235 236 void 237 chownerr(file) 238 char *file; 239 { 240 static int euid = -1, ngroups = -1; 241 gid_t groups[NGROUPS]; 242 243 /* Check for chown without being root. */ 244 if (errno != EPERM || 245 uid != -1 && euid == -1 && (euid = geteuid()) != 0) { 246 if (fflag) 247 exit(0); 248 err(1, "%s", file); 249 } 250 251 /* Check group membership; kernel just returns EPERM. */ 252 if (gid != -1 && ngroups == -1) { 253 ngroups = getgroups(NGROUPS, groups); 254 while (--ngroups >= 0 && gid != groups[ngroups]); 255 if (ngroups < 0) { 256 if (fflag) 257 exit(0); 258 errx(1, "you are not a member of group %s", gname); 259 } 260 } 261 262 if (!fflag) 263 warn("%s", file); 264 } 265 266 void 267 usage() 268 { 269 (void)fprintf(stderr, 270 "usage: %s [-R [-H | -L | -P]] [-f] %s file ...\n", 271 myname, ischown ? "[owner][:group]" : "group"); 272 exit(1); 273 } 274