Home | History | Annotate | Line # | Download | only in chmod
chmod.c revision 1.31
      1 /* $NetBSD: chmod.c,v 1.31 2003/09/14 19:20:17 jschauma Exp $ */
      2 
      3 /*
      4  * Copyright (c) 1989, 1993, 1994
      5  *	The Regents of the University of California.  All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  * 3. Neither the name of the University nor the names of its contributors
     16  *    may be used to endorse or promote products derived from this software
     17  *    without specific prior written permission.
     18  *
     19  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29  * SUCH DAMAGE.
     30  */
     31 
     32 #include <sys/cdefs.h>
     33 #ifndef lint
     34 __COPYRIGHT(
     35 "@(#) Copyright (c) 1989, 1993, 1994\n\
     36 	The Regents of the University of California.  All rights reserved.\n");
     37 #endif /* not lint */
     38 
     39 #ifndef lint
     40 #if 0
     41 static char sccsid[] = "@(#)chmod.c	8.8 (Berkeley) 4/1/94";
     42 #else
     43 __RCSID("$NetBSD: chmod.c,v 1.31 2003/09/14 19:20:17 jschauma Exp $");
     44 #endif
     45 #endif /* not lint */
     46 
     47 #include <sys/param.h>
     48 #include <sys/stat.h>
     49 #include <sys/types.h>
     50 
     51 #include <err.h>
     52 #include <errno.h>
     53 #include <fts.h>
     54 #include <limits.h>
     55 #include <locale.h>
     56 #include <stdio.h>
     57 #include <stdlib.h>
     58 #include <string.h>
     59 #include <unistd.h>
     60 #include <vis.h>
     61 
     62 int stdout_ok;
     63 
     64 int	main(int, char *[]);
     65 void	usage(void);
     66 
     67 int
     68 main(int argc, char *argv[])
     69 {
     70 	FTS *ftsp;
     71 	FTSENT *p;
     72 	mode_t *set;
     73 	int Hflag, Lflag, Rflag, ch, fflag, fts_options, hflag, rval;
     74 	char *mode;
     75 	int (*change_mode)(const char *, mode_t);
     76 
     77 	setprogname(argv[0]);
     78 	(void)setlocale(LC_ALL, "");
     79 
     80 	Hflag = Lflag = Rflag = fflag = hflag = 0;
     81 	while ((ch = getopt(argc, argv, "HLPRXfghorstuwx")) != -1)
     82 		switch (ch) {
     83 		case 'H':
     84 			Hflag = 1;
     85 			Lflag = 0;
     86 			break;
     87 		case 'L':
     88 			Lflag = 1;
     89 			Hflag = 0;
     90 			break;
     91 		case 'P':
     92 			Hflag = Lflag = 0;
     93 			break;
     94 		case 'R':
     95 			Rflag = 1;
     96 			break;
     97 		case 'f':		/* XXX: undocumented. */
     98 			fflag = 1;
     99 			break;
    100 		case 'h':
    101 			/*
    102 			 * In System V the -h option causes chmod to
    103 			 * change the mode of the symbolic link.
    104 			 * 4.4BSD's symbolic links didn't have modes,
    105 			 * so it was an undocumented noop.  In NetBSD
    106 			 * 1.3, lchmod(2) is introduced and this
    107 			 * option does real work.
    108 			 */
    109 			hflag = 1;
    110 			break;
    111 		/*
    112 		 * XXX
    113 		 * "-[rwx]" are valid mode commands.  If they are the entire
    114 		 * argument, getopt has moved past them, so decrement optind.
    115 		 * Regardless, we're done argument processing.
    116 		 */
    117 		case 'g': case 'o': case 'r': case 's':
    118 		case 't': case 'u': case 'w': case 'X': case 'x':
    119 			if (argv[optind - 1][0] == '-' &&
    120 			    argv[optind - 1][1] == ch &&
    121 			    argv[optind - 1][2] == '\0')
    122 				--optind;
    123 			goto done;
    124 		case '?':
    125 		default:
    126 			usage();
    127 		}
    128 done:	argv += optind;
    129 	argc -= optind;
    130 
    131 	if (argc < 2)
    132 		usage();
    133 
    134 	stdout_ok = isatty(STDOUT_FILENO);
    135 
    136 	fts_options = FTS_PHYSICAL;
    137 	if (Rflag) {
    138 		if (hflag) {
    139 			errx(EXIT_FAILURE,
    140 		"the -R and -h options may not be specified together.");
    141 			/* NOTREACHED */
    142 		}
    143 		if (Hflag)
    144 			fts_options |= FTS_COMFOLLOW;
    145 		if (Lflag) {
    146 			fts_options &= ~FTS_PHYSICAL;
    147 			fts_options |= FTS_LOGICAL;
    148 		}
    149 	} else if (!hflag)
    150 		fts_options |= FTS_COMFOLLOW;
    151 	if (hflag)
    152 		change_mode = lchmod;
    153 	else
    154 		change_mode = chmod;
    155 
    156 	mode = *argv;
    157 	if ((set = setmode(mode)) == NULL) {
    158 		errx(EXIT_FAILURE, "invalid file mode: %s", mode);
    159 		/* NOTREACHED */
    160 	}
    161 
    162 	if ((ftsp = fts_open(++argv, fts_options, 0)) == NULL) {
    163 		err(EXIT_FAILURE, "fts_open");
    164 		/* NOTREACHED */
    165 	}
    166 	for (rval = 0; (p = fts_read(ftsp)) != NULL;) {
    167 		switch (p->fts_info) {
    168 		case FTS_D:
    169 			if (!Rflag)
    170 				(void)fts_set(ftsp, p, FTS_SKIP);
    171 			break;
    172 		case FTS_DNR:			/* Warn, chmod, continue. */
    173 			warnx("%s: %s", p->fts_path, strerror(p->fts_errno));
    174 			rval = 1;
    175 			break;
    176 		case FTS_DP:			/* Already changed at FTS_D. */
    177 			continue;
    178 		case FTS_ERR:			/* Warn, continue. */
    179 		case FTS_NS:
    180 			warnx("%s: %s", p->fts_path, strerror(p->fts_errno));
    181 			rval = 1;
    182 			continue;
    183 		case FTS_SL:			/* Ignore. */
    184 		case FTS_SLNONE:
    185 			/*
    186 			 * The only symlinks that end up here are ones that
    187 			 * don't point to anything and ones that we found
    188 			 * doing a physical walk.
    189 			 */
    190 			if (!hflag)
    191 				continue;
    192 			/* else */
    193 			/* FALLTHROUGH */
    194 		default:
    195 			break;
    196 		}
    197 		if ((*change_mode)(p->fts_accpath,
    198 		    getmode(set, p->fts_statp->st_mode)) && !fflag) {
    199 			warn("%s", p->fts_path);
    200 			rval = 1;
    201 		}
    202 	}
    203 	if (errno) {
    204 		err(EXIT_FAILURE, "fts_read");
    205 		/* NOTREACHED */
    206 	}
    207 	exit(rval);
    208 	/* NOTREACHED */
    209 }
    210 
    211 void
    212 usage(void)
    213 {
    214 	(void)fprintf(stderr,
    215 	    "usage: %s [-R [-H | -L | -P]] [-h] mode file ...\n",
    216 	    getprogname());
    217 	exit(1);
    218 	/* NOTREACHED */
    219 }
    220