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. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * @(#) Copyright (c) 1989, 1993, 1994 The Regents of the University of California. All rights reserved.
30 * @(#)chmod.c 8.8 (Berkeley) 4/1/94
31 * $FreeBSD: head/bin/chmod/chmod.c 283997 2015-06-04 19:18:58Z pluknet $
34 #include <sys/param.h>
47 static void usage(void);
50 main(int argc
, char *argv
[])
55 int Hflag
, Lflag
, Rflag
, ch
, fflag
;
56 int fts_options
, hflag
, rval
, vflag
;
60 Hflag
= Lflag
= Rflag
= fflag
= hflag
= vflag
= 0;
61 while ((ch
= getopt(argc
, argv
, "HLPRXfghorstuvwx")) != -1)
82 * In System V (and probably POSIX.2) the -h option
83 * causes chmod to change the mode of the symbolic
84 * link. 4.4BSD's symbolic links didn't have modes,
85 * so it was an undocumented noop. In FreeBSD 3.0,
86 * lchmod(2) is introduced and this option does real
93 * "-[rwx]" are valid mode commands. If they are the entire
94 * argument, getopt has moved past them, so decrement optind.
95 * Regardless, we're done argument processing.
97 case 'g': case 'o': case 'r': case 's':
98 case 't': case 'u': case 'w': case 'X': case 'x':
99 if (argv
[optind
- 1][0] == '-' &&
100 argv
[optind
- 1][1] == ch
&&
101 argv
[optind
- 1][2] == '\0')
111 done
: argv
+= optind
;
119 errx(1, "the -R and -h options may not be "
120 "specified together.");
122 fts_options
= FTS_LOGICAL
;
124 fts_options
= FTS_PHYSICAL
;
127 fts_options
|= FTS_COMFOLLOW
;
131 fts_options
= FTS_PHYSICAL
;
133 fts_options
= FTS_LOGICAL
;
138 if ((set
= setmode(mode
)) == NULL
) {
140 errx(1, "invalid file mode: %s", mode
);
142 /* malloc for setmode() failed */
143 err(1, "setmode failed");
146 if ((ftsp
= fts_open(++argv
, fts_options
, 0)) == NULL
)
148 for (rval
= 0; (p
= fts_read(ftsp
)) != NULL
;) {
151 if ((fts_options
& FTS_LOGICAL
) ||
152 ((fts_options
& FTS_COMFOLLOW
) &&
153 p
->fts_level
== FTS_ROOTLEVEL
))
156 atflag
= AT_SYMLINK_NOFOLLOW
;
158 switch (p
->fts_info
) {
161 fts_set(ftsp
, p
, FTS_SKIP
);
163 case FTS_DNR
: /* Warn, chmod. */
164 warnx("%s: %s", p
->fts_path
, strerror(p
->fts_errno
));
167 case FTS_DP
: /* Already changed at FTS_D. */
169 case FTS_ERR
: /* Warn, continue. */
171 warnx("%s: %s", p
->fts_path
, strerror(p
->fts_errno
));
177 newmode
= getmode(set
, p
->fts_statp
->st_mode
);
178 if ((newmode
& ALLPERMS
) == (p
->fts_statp
->st_mode
& ALLPERMS
))
180 if (fchmodat(AT_FDCWD
, p
->fts_accpath
, newmode
, atflag
) == -1
182 warn("%s", p
->fts_path
);
185 printf("%s", p
->fts_path
);
190 strmode(p
->fts_statp
->st_mode
, m1
);
191 strmode((p
->fts_statp
->st_mode
&
192 S_IFMT
) | newmode
, m2
);
193 printf(": 0%o [%s] -> 0%o [%s]",
194 p
->fts_statp
->st_mode
, m1
,
195 (p
->fts_statp
->st_mode
& S_IFMT
) |
210 "usage: chmod [-fhv] [-R [-H | -L | -P]] mode file ...\n");