2 * Copyright (c) 1992, 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) 1992, 1993, 1994 The Regents of the University of California. All rights reserved.
30 * @(#)chflags.c 8.5 (Berkeley) 4/1/94
31 * $FreeBSD: head/bin/chflags/chflags.c 282208 2015-04-29 00:49:00Z smh $
34 #include <sys/param.h>
35 #include <sys/types.h>
47 static void usage(void);
50 main(int argc
, char *argv
[])
54 u_long clear
, newflags
, set
;
56 int Hflag
, Lflag
, Rflag
, fflag
, hflag
, vflag
;
57 int ch
, fts_options
, oct
, rval
;
60 Hflag
= Lflag
= Rflag
= fflag
= hflag
= vflag
= 0;
61 while ((ch
= getopt(argc
, argv
, "HLPRfhv")) != -1)
98 errx(1, "the -R and -h options may not be "
99 "specified together.");
101 fts_options
= FTS_LOGICAL
;
103 fts_options
= FTS_PHYSICAL
;
106 fts_options
|= FTS_COMFOLLOW
;
110 fts_options
= FTS_PHYSICAL
;
112 fts_options
= FTS_LOGICAL
;
116 if (*flags
>= '0' && *flags
<= '7') {
118 val
= strtol(flags
, &ep
, 8);
122 err(1, "invalid flags: %s", flags
);
124 errx(1, "invalid flags: %s", flags
);
128 if (strtofflags(&flags
, &set
, &clear
))
129 errx(1, "invalid flag: %s", flags
);
134 if ((ftsp
= fts_open(++argv
, fts_options
, 0)) == NULL
)
137 for (rval
= 0; (p
= fts_read(ftsp
)) != NULL
;) {
140 if ((fts_options
& FTS_LOGICAL
) ||
141 ((fts_options
& FTS_COMFOLLOW
) &&
142 p
->fts_level
== FTS_ROOTLEVEL
))
145 atflag
= AT_SYMLINK_NOFOLLOW
;
147 switch (p
->fts_info
) {
148 case FTS_D
: /* Change it at FTS_DP if we're recursive. */
150 fts_set(ftsp
, p
, FTS_SKIP
);
152 case FTS_DNR
: /* Warn, chflags. */
153 warnx("%s: %s", p
->fts_path
, strerror(p
->fts_errno
));
156 case FTS_ERR
: /* Warn, continue. */
158 warnx("%s: %s", p
->fts_path
, strerror(p
->fts_errno
));
167 newflags
= (p
->fts_statp
->st_flags
| set
) & clear
;
168 if (newflags
== p
->fts_statp
->st_flags
)
170 if (chflagsat(AT_FDCWD
, p
->fts_accpath
, newflags
,
171 atflag
) == -1 && !fflag
) {
172 warn("%s", p
->fts_path
);
175 printf("%s", p
->fts_path
);
177 printf(": 0%lo -> 0%lo",
178 (u_long
)p
->fts_statp
->st_flags
,
192 "usage: chflags [-fhv] [-R [-H | -L | -P]] flags file ...\n");