Audit chmod(1)
1) Update manpage, refactor the HLP-section and other wordings. 2) BUGFIX: If chmod() fails, don't recurse. 3) Rewrite the arg-loop, fixing several issues: BUGFIX: Handle multi-flags (e.g. -RH) BUGFIX: Properly handle the termination flag --, error on e.g. --x BUGFIX: Error out on an empty flag -. 4) Refactor logic after the arg-loop, which is now simpler thanks to argv-incremention.
This commit is contained in:
parent
d9fa4b3ae7
commit
aea256c288
2
README
2
README
|
@ -13,7 +13,7 @@ The following tools are implemented ('*' == finished, '#' == UTF-8 support,
|
||||||
=* cal yes none
|
=* cal yes none
|
||||||
=*| cat yes none
|
=*| cat yes none
|
||||||
=* chgrp yes none
|
=* chgrp yes none
|
||||||
=* chmod yes none
|
=*| chmod yes none
|
||||||
=* chown yes none
|
=* chown yes none
|
||||||
=*| chroot non-posix none
|
=*| chroot non-posix none
|
||||||
=* cksum yes none
|
=* cksum yes none
|
||||||
|
|
19
chmod.1
19
chmod.1
|
@ -1,9 +1,9 @@
|
||||||
.Dd January 17, 2015
|
.Dd March 5, 2015
|
||||||
.Dt CHMOD 1
|
.Dt CHMOD 1
|
||||||
.Os sbase
|
.Os sbase
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
.Nm chmod
|
.Nm chmod
|
||||||
.Nd change file mode
|
.Nd change file modes
|
||||||
.Sh SYNOPSIS
|
.Sh SYNOPSIS
|
||||||
.Nm
|
.Nm
|
||||||
.Oo
|
.Oo
|
||||||
|
@ -14,8 +14,10 @@
|
||||||
.Ar file ...
|
.Ar file ...
|
||||||
.Sh DESCRIPTION
|
.Sh DESCRIPTION
|
||||||
.Nm
|
.Nm
|
||||||
changes the file mode of the given
|
changes the file mode of each
|
||||||
.Ar files .
|
.Ar file
|
||||||
|
to
|
||||||
|
.Ar mode .
|
||||||
.Pp
|
.Pp
|
||||||
If
|
If
|
||||||
.Ar mode
|
.Ar mode
|
||||||
|
@ -59,12 +61,13 @@ read | write | execute | setuid and setgid | sticky
|
||||||
.It Fl R
|
.It Fl R
|
||||||
Change modes recursively.
|
Change modes recursively.
|
||||||
.It Fl H
|
.It Fl H
|
||||||
Only dereference symbolic links that are passed as command line arguments when
|
Dereference
|
||||||
recursively traversing directories.
|
.Ar file
|
||||||
|
if it is a symbolic link.
|
||||||
.It Fl L
|
.It Fl L
|
||||||
Always dereference symbolic links while recursively traversing directories.
|
Dereference all symbolic links.
|
||||||
.It Fl P
|
.It Fl P
|
||||||
Don't dereference symbolic links (default).
|
Preserve symbolic links. This is the default.
|
||||||
.El
|
.El
|
||||||
.Sh SEE ALSO
|
.Sh SEE ALSO
|
||||||
.Xr chgrp 1 ,
|
.Xr chgrp 1 ,
|
||||||
|
|
40
chmod.c
40
chmod.c
|
@ -24,8 +24,7 @@ chmodr(const char *path, int depth)
|
||||||
if (chmod(path, m) < 0) {
|
if (chmod(path, m) < 0) {
|
||||||
weprintf("chmod %s:", path);
|
weprintf("chmod %s:", path);
|
||||||
ret = 1;
|
ret = 1;
|
||||||
}
|
} else if (Rflag)
|
||||||
if (Rflag)
|
|
||||||
recurse(path, chmodr, depth);
|
recurse(path, chmodr, depth);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -40,37 +39,48 @@ main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
size_t i;
|
size_t i;
|
||||||
|
|
||||||
argv0 = argv[0];
|
argv0 = *(argv++);
|
||||||
for (i = 1; i < argc && argv[i][0] == '-'; i++) {
|
argc--;
|
||||||
switch (argv[i][1]) {
|
for (; *argv && (*argv)[0] == '-'; argc--, argv++) {
|
||||||
|
if (!(*argv)[1])
|
||||||
|
usage();
|
||||||
|
for (i = 1; (*argv)[i]; i++) {
|
||||||
|
switch ((*argv)[i]) {
|
||||||
case 'R':
|
case 'R':
|
||||||
Rflag = 1;
|
Rflag = 1;
|
||||||
break;
|
break;
|
||||||
case 'H':
|
case 'H':
|
||||||
case 'L':
|
case 'L':
|
||||||
case 'P':
|
case 'P':
|
||||||
recurse_follow = argv[i][1];
|
recurse_follow = (*argv)[i];
|
||||||
break;
|
break;
|
||||||
case 'r': case 'w': case 'x': case 's': case 't':
|
case 'r': case 'w': case 'x': case 's': case 't':
|
||||||
/*
|
/* -[rwxst] are valid modes, so we're done */
|
||||||
* -[rwxst] are valid modes so do not interpret
|
if (i == 1)
|
||||||
* them as options - in any case we are done if
|
|
||||||
* we hit this case
|
|
||||||
*/
|
|
||||||
goto done;
|
goto done;
|
||||||
|
/* fallthrough */
|
||||||
|
case '-':
|
||||||
|
/* -- terminator */
|
||||||
|
if (i == 1 && !(*argv)[i + 1]) {
|
||||||
|
argv++;
|
||||||
|
argc--;
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
|
/* fallthrough */
|
||||||
default:
|
default:
|
||||||
usage();
|
usage();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
done:
|
done:
|
||||||
mask = getumask();
|
mask = getumask();
|
||||||
modestr = argv[i];
|
modestr = *argv;
|
||||||
|
|
||||||
if (argc - i - 1 < 1)
|
if (argc < 2)
|
||||||
usage();
|
usage();
|
||||||
|
|
||||||
for (++i; i < argc; i++)
|
for (--argc, ++argv; *argv; argc--, argv++)
|
||||||
chmodr(argv[i], 0);
|
chmodr(*argv, 0);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user