1 /* $NetBSD: chmod.c,v 1.33 2005/10/01 20:09:18 christos Exp $ */
4 * Copyright (c) 1989, 1993, 1994
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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.
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
32 #include <sys/cdefs.h>
35 "@(#) Copyright (c) 1989, 1993, 1994\
36 The Regents of the University of California. All rights reserved.");
41 static char sccsid
[] = "@(#)chmod.c 8.8 (Berkeley) 4/1/94";
43 __RCSID("$NetBSD: chmod.c,v 1.33 2005/10/01 20:09:18 christos Exp $");
47 #include <sys/param.h>
49 #include <sys/types.h>
61 int main(int, char *[]);
65 main(int argc
, char *argv
[])
70 int Hflag
, Lflag
, Rflag
, ch
, fflag
, fts_options
, hflag
, rval
;
72 int (*change_mode
)(const char *, mode_t
);
75 (void)setlocale(LC_ALL
, "");
77 Hflag
= Lflag
= Rflag
= fflag
= hflag
= 0;
78 while ((ch
= getopt(argc
, argv
, "HLPRXfghorstuwx")) != -1)
94 case 'f': /* XXX: undocumented. */
99 * In System V the -h option causes chmod to
100 * change the mode of the symbolic link.
101 * 4.4BSD's symbolic links didn't have modes,
102 * so it was an undocumented noop. In NetBSD
103 * 1.3, lchmod(2) is introduced and this
104 * option does real work.
110 * "-[rwx]" are valid mode commands. If they are the entire
111 * argument, getopt has moved past them, so decrement optind.
112 * Regardless, we're done argument processing.
114 case 'g': case 'o': case 'r': case 's':
115 case 't': case 'u': case 'w': case 'X': case 'x':
116 if (argv
[optind
- 1][0] == '-' &&
117 argv
[optind
- 1][1] == ch
&&
118 argv
[optind
- 1][2] == '\0')
125 done
: argv
+= optind
;
131 fts_options
= FTS_PHYSICAL
;
135 "the -R and -h options may not be specified together.");
139 fts_options
|= FTS_COMFOLLOW
;
141 fts_options
&= ~FTS_PHYSICAL
;
142 fts_options
|= FTS_LOGICAL
;
145 fts_options
|= FTS_COMFOLLOW
;
147 change_mode
= lchmod
;
152 if ((set
= setmode(mode
)) == NULL
) {
153 err(EXIT_FAILURE
, "Cannot set file mode `%s'", mode
);
157 if ((ftsp
= fts_open(++argv
, fts_options
, 0)) == NULL
) {
158 err(EXIT_FAILURE
, "fts_open");
161 for (rval
= 0; (p
= fts_read(ftsp
)) != NULL
;) {
162 switch (p
->fts_info
) {
165 (void)fts_set(ftsp
, p
, FTS_SKIP
);
167 case FTS_DNR
: /* Warn, chmod, continue. */
168 warnx("%s: %s", p
->fts_path
, strerror(p
->fts_errno
));
171 case FTS_DP
: /* Already changed at FTS_D. */
173 case FTS_ERR
: /* Warn, continue. */
175 warnx("%s: %s", p
->fts_path
, strerror(p
->fts_errno
));
178 case FTS_SL
: /* Ignore. */
181 * The only symlinks that end up here are ones that
182 * don't point to anything and ones that we found
183 * doing a physical walk.
192 if ((*change_mode
)(p
->fts_accpath
,
193 getmode(set
, p
->fts_statp
->st_mode
)) && !fflag
) {
194 warn("%s", p
->fts_path
);
199 err(EXIT_FAILURE
, "fts_read");
209 (void)fprintf(stderr
,
210 "usage: %s [-R [-H | -L | -P]] [-h] mode file ...\n",