2 * Copyright (c) 1989, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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.
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
35 static char const copyright
[] =
36 "@(#) Copyright (c) 1989, 1993, 1994\n\
37 The Regents of the University of California. All rights reserved.\n";
42 static char sccsid
[] = "@(#)chmod.c 8.8 (Berkeley) 4/1/94";
45 #include <sys/cdefs.h>
46 __RCSID("$FreeBSD: src/bin/chmod/chmod.c,v 1.27 2002/08/04 05:29:13 obrien Exp $");
48 #include <sys/types.h>
61 #include "chmod_acl.h"
67 int main(int, char *[]);
71 main(int argc
, char *argv
[])
78 int Hflag
, Lflag
, Pflag
, Rflag
, ch
, fts_options
, hflag
, rval
;
81 mode_t newmode
, omode
;
83 unsigned int acloptflags
= 0;
85 int inheritance_level
= 0;
88 int ace_arg_not_required
= 0;
89 acl_t acl_input
= NULL
;
91 int (*change_mode
)(const char *, mode_t
);
95 Hflag
= Lflag
= Pflag
= Rflag
= fflag
= hflag
= vflag
= 0;
97 while ((ch
= getopt(argc
, argv
, "HLPRXfghorstuvwx")) != -1)
99 while ((ch
= getopt(argc
, argv
, "ACEHILNPRVXafghinorstuvwx")) != -1)
124 * In System V (and probably POSIX.2) the -h option
125 * causes chmod to change the mode of the symbolic
126 * link. 4.4BSD's symbolic links didn't have modes,
127 * so it was an undocumented noop. In FreeBSD 3.0,
128 * lchmod(2) is introduced and this option does real
135 if (argv
[optind
- 1][0] == '-' &&
136 argv
[optind
- 1][1] == ch
)
140 // acloptflags |= ACL_FLAG | ACL_TO_STDOUT;
141 // ace_arg_not_required = 1;
142 errx(1, "-A not implemented");
145 acloptflags
|= ACL_FLAG
| ACL_FROM_STDIN
;
148 acloptflags
|= ACL_FLAG
| ACL_CHECK_CANONICITY
;
149 ace_arg_not_required
= 1;
152 acloptflags
|= ACL_FLAG
| ACL_REMOVE_INHERIT_FLAG
;
153 ace_arg_not_required
= 1;
156 acloptflags
|= ACL_FLAG
| ACL_REMOVE_INHERITED_ENTRIES
;
157 ace_arg_not_required
= 1;
160 acloptflags
|= ACL_FLAG
| ACL_NO_TRANSLATE
;
163 acloptflags
|= ACL_FLAG
| ACL_CLEAR_FLAG
;
164 ace_arg_not_required
= 1;
167 // acloptflags |= ACL_FLAG | ACL_INVOKE_EDITOR;
168 // ace_arg_not_required = 1;
169 errx(1, "-V not implemented");
171 #endif /* __APPLE__ */
174 * "-[rwx]" are valid mode commands. If they are the entire
175 * argument, getopt has moved past them, so decrement optind.
176 * Regardless, we're done argument processing.
178 case 'g': case 'o': case 'r': case 's':
179 case 't': case 'u': case 'w': case 'X': case 'x':
180 if (argv
[optind
- 1][0] == '-' &&
181 argv
[optind
- 1][1] == ch
&&
182 argv
[optind
- 1][2] == '\0')
192 done
: argv
+= optind
;
196 if (argc
< ((acloptflags
& ACL_FLAG
) ? 1 : 2))
198 if (!Rflag
&& (Hflag
|| Lflag
|| Pflag
))
199 warnx("options -H, -L, -P only useful with -R");
200 #else /* !__APPLE__ */
203 #endif /* __APPLE__ */
206 if (!(acloptflags
& ACL_FLAG
) && ((acloptlen
= strlen(argv
[0])) > 1) && (argv
[0][1] == 'a')) {
207 acloptflags
|= ACL_FLAG
;
208 switch (argv
[0][0]) {
210 acloptflags
|= ACL_SET_FLAG
;
213 acloptflags
|= ACL_DELETE_FLAG
;
216 acloptflags
|= ACL_REWRITE_FLAG
;
219 acloptflags
&= ~ACL_FLAG
;
227 for (index
= 2; index
< acloptlen
; index
++) {
228 switch (argv
[0][index
]) {
230 acloptflags
|= ACL_ORDER_FLAG
;
232 if (argc
< ((acloptflags
& ACL_DELETE_FLAG
)
238 aclpos
= strtol(argv
[0], &ep
, 0);
240 if (aclpos
> ACL_MAX_ENTRIES
244 errx(1, "Invalid ACL entry number: %ld", aclpos
);
245 if (acloptflags
& ACL_DELETE_FLAG
)
246 ace_arg_not_required
= 1;
250 acloptflags
|= ACL_INHERIT_FLAG
;
251 /* The +aii.. syntax to specify
252 * inheritance level is rather unwieldy,
253 * find an alternative.
256 if (inheritance_level
> 1)
257 warnx("Inheritance across more than one generation is not currently supported");
258 if (inheritance_level
>= MAX_INHERITANCE_LEVEL
)
275 fts_options
= FTS_PHYSICAL
;
278 "the -R and -h options may not be specified together.");
280 fts_options
|= FTS_COMFOLLOW
;
282 fts_options
&= ~FTS_PHYSICAL
;
283 fts_options
|= FTS_LOGICAL
;
286 fts_options
= hflag
? FTS_PHYSICAL
: FTS_LOGICAL
;
289 change_mode
= lchmod
;
293 if (acloptflags
& ACL_FROM_STDIN
) {
295 size_t readtotal
= 0;
297 mode
= (char *) malloc(MAX_ACL_TEXT_SIZE
);
300 err(1, "Unable to allocate mode string");
301 /* Read the ACEs from STDIN */
303 readtotal
+= readval
;
304 readval
= read(STDIN_FILENO
, mode
+ readtotal
,
306 } while ((readval
> 0) && (readtotal
<= MAX_ACL_TEXT_SIZE
));
309 errx(1, "-E specified, but read from STDIN failed");
311 mode
[readtotal
- 1] = '\0';
319 if ((acloptflags
& ACL_FLAG
)) {
321 /* Are we deleting by entry number, verifying
322 * canonicity or performing some other operation that
323 * does not require an input entry? If so, there's no
326 if (ace_arg_not_required
) {
330 /* Parse the text into an ACL*/
331 acl_input
= parse_acl_entries(mode
);
332 if (acl_input
== NULL
) {
333 errx(1, "Invalid ACL specification: %s", mode
);
338 #endif /* __APPLE__*/
339 if (*mode
>= '0' && *mode
<= '7') {
341 val
= strtol(mode
, &ep
, 8);
342 if (val
> USHRT_MAX
|| val
< 0)
345 err(1, "Invalid file mode: %s", mode
);
347 errx(1, "Invalid file mode: %s", mode
);
351 if ((set
= setmode(mode
)) == NULL
)
352 errx(1, "Invalid file mode: %s", mode
);
357 #endif /* __APPLE__*/
358 if ((ftsp
= fts_open(++argv
, fts_options
, 0)) == NULL
)
360 for (rval
= 0; (p
= fts_read(ftsp
)) != NULL
;) {
361 switch (p
->fts_info
) {
364 (void)fts_set(ftsp
, p
, FTS_SKIP
);
366 case FTS_DNR
: /* Warn, chmod, continue. */
367 warnx("%s: %s", p
->fts_path
, strerror(p
->fts_errno
));
370 case FTS_DP
: /* Already changed at FTS_D. */
373 if (acloptflags
& ACL_FLAG
) /* don't need stat for -N */
375 case FTS_ERR
: /* Warn, continue. */
376 warnx("%s: %s", p
->fts_path
, strerror(p
->fts_errno
));
379 case FTS_SL
: /* Ignore. */
382 * The only symlinks that end up here are ones that
383 * don't point to anything and ones that we found
384 * doing a physical walk.
394 /* If an ACL manipulation option was specified, manipulate */
395 if (acloptflags
& ACL_FLAG
) {
396 if (0 != modify_file_acl(acloptflags
, p
->fts_accpath
, acl_input
, (int)aclpos
, inheritance_level
, !hflag
))
400 #endif /* __APPLE__ */
401 newmode
= oct
? omode
: getmode(set
, p
->fts_statp
->st_mode
);
402 if ((newmode
& ALLPERMS
) == (p
->fts_statp
->st_mode
& ALLPERMS
))
404 if ((*change_mode
)(p
->fts_accpath
, newmode
) && !fflag
) {
405 warn("Unable to change file mode on %s", p
->fts_path
);
409 (void)printf("%s", p
->fts_accpath
);
414 strmode(p
->fts_statp
->st_mode
, m1
);
415 strmode((p
->fts_statp
->st_mode
&
416 S_IFMT
) | newmode
, m2
);
418 (void)printf(": 0%o [%s] -> 0%o [%s]",
419 p
->fts_statp
->st_mode
, m1
,
420 (p
->fts_statp
->st_mode
& S_IFMT
) |
429 #endif /* __APPLE__*/
436 if (mode
&& (acloptflags
& ACL_FROM_STDIN
))
439 #endif /* __APPLE__ */
449 (void)fprintf(stderr
,
450 "usage:\tchmod [-fhv] [-R [-H | -L | -P]] [-a | +a | =a [i][# [ n]]] mode|entry file ...\n"
451 "\tchmod [-fhv] [-R [-H | -L | -P]] [-E | -C | -N | -i | -I] file ...\n"); /* add -A and -V when implemented */
453 (void)fprintf(stderr
,
454 "usage: chmod [-fhv] [-R [-H | -L | -P]] mode file ...\n");
455 #endif /* __APPLE__ */