2011-05-27 22:48:07 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/stat.h>
|
2014-11-13 18:54:28 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2011-05-27 22:48:07 +00:00
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
static void chmodr(const char *);
|
|
|
|
|
2014-11-13 20:24:47 +00:00
|
|
|
static int rflag = 0;
|
2014-04-23 19:28:59 +00:00
|
|
|
static char *modestr = "";
|
|
|
|
static mode_t mask = 0;
|
2014-10-02 22:46:04 +00:00
|
|
|
static int ret = 0;
|
2011-05-27 22:48:07 +00:00
|
|
|
|
2013-06-14 18:20:47 +00:00
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
2013-10-10 13:50:52 +00:00
|
|
|
eprintf("usage: %s [-R] mode [file...]\n", argv0);
|
2013-06-14 18:20:47 +00:00
|
|
|
}
|
|
|
|
|
2011-05-27 22:48:07 +00:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
2013-10-10 13:50:52 +00:00
|
|
|
int c;
|
|
|
|
argv0 = argv[0];
|
2011-05-27 22:48:07 +00:00
|
|
|
|
2013-10-10 13:50:52 +00:00
|
|
|
while (--argc > 0 && (*++argv)[0] == '-') {
|
|
|
|
while ((c = *++argv[0])) {
|
|
|
|
switch (c) {
|
|
|
|
case 'R':
|
2014-11-13 20:24:47 +00:00
|
|
|
rflag = 1;
|
2013-10-10 13:50:52 +00:00
|
|
|
break;
|
2013-10-20 08:53:43 +00:00
|
|
|
case 'r': case 'w': case 'x': case 's': case 't':
|
2013-10-10 13:50:52 +00:00
|
|
|
/*
|
2013-10-20 08:53:43 +00:00
|
|
|
* -[rwxst] are valid modes so do not interpret
|
2013-10-10 13:50:52 +00:00
|
|
|
* them as options - in any case we are done if
|
|
|
|
* we hit this case
|
|
|
|
*/
|
|
|
|
--argv[0];
|
|
|
|
goto done;
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
2014-04-23 19:28:59 +00:00
|
|
|
mask = getumask();
|
|
|
|
modestr = argv[0];
|
2013-10-10 13:50:52 +00:00
|
|
|
argv++;
|
|
|
|
argc--;
|
2013-06-14 18:20:47 +00:00
|
|
|
|
2014-11-13 17:29:30 +00:00
|
|
|
if (argc < 1)
|
2013-06-14 18:20:47 +00:00
|
|
|
usage();
|
2011-05-27 22:48:07 +00:00
|
|
|
|
2013-10-10 13:50:52 +00:00
|
|
|
for (; argc > 0; argc--, argv++)
|
2013-06-14 18:20:47 +00:00
|
|
|
chmodr(argv[0]);
|
2014-04-23 20:00:08 +00:00
|
|
|
return ret;
|
2011-05-27 22:48:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
chmodr(const char *path)
|
|
|
|
{
|
2011-06-10 23:30:07 +00:00
|
|
|
struct stat st;
|
2014-04-23 19:28:59 +00:00
|
|
|
mode_t m;
|
2011-06-10 23:30:07 +00:00
|
|
|
|
2014-11-19 19:59:37 +00:00
|
|
|
if (stat(path, &st) < 0) {
|
2014-04-23 20:00:08 +00:00
|
|
|
weprintf("stat %s:", path);
|
2014-10-02 22:46:04 +00:00
|
|
|
ret = 1;
|
2014-04-23 20:00:08 +00:00
|
|
|
return;
|
|
|
|
}
|
2011-06-10 23:30:07 +00:00
|
|
|
|
2014-04-23 19:28:59 +00:00
|
|
|
m = parsemode(modestr, st.st_mode, mask);
|
2014-11-19 19:59:37 +00:00
|
|
|
if (chmod(path, m) < 0) {
|
2014-04-22 11:11:46 +00:00
|
|
|
weprintf("chmod %s:", path);
|
2014-10-02 22:46:04 +00:00
|
|
|
ret = 1;
|
2014-04-23 20:00:08 +00:00
|
|
|
}
|
2014-11-13 17:29:30 +00:00
|
|
|
if (rflag)
|
2011-05-27 22:48:07 +00:00
|
|
|
recurse(path, chmodr);
|
|
|
|
}
|