2023-10-24 13:59:42 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2023-11-01 12:25:51 +03:00
|
|
|
#include <dirent.h>
|
2023-10-24 13:59:42 +03:00
|
|
|
#include <sys/stat.h>
|
2023-11-01 12:25:51 +03:00
|
|
|
#include "make_path.h"
|
|
|
|
#include "get_stat.h"
|
2023-10-24 13:59:42 +03:00
|
|
|
|
2023-11-01 12:25:51 +03:00
|
|
|
int (*get_stat)(const char *prog_name, const char *path, struct stat *stat_path);
|
|
|
|
unsigned int r_flag;
|
|
|
|
unsigned int s_flag;
|
|
|
|
mode_t mode;
|
2023-10-24 13:59:42 +03:00
|
|
|
|
2023-11-01 12:25:51 +03:00
|
|
|
|
|
|
|
int change(const char *file) {
|
|
|
|
struct stat old_file;
|
|
|
|
if (get_stat("chmod", file, &old_file))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (chmod(file, mode) == 0) {
|
|
|
|
struct stat new_file;
|
|
|
|
if (get_stat("chmod", file, &new_file))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (old_file.st_mode != new_file.st_mode)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!s_flag)
|
|
|
|
fprintf(stderr, "chmod: %s unchanged\n", file);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
fprintf(stderr, "chmod: unable to chown %s: %s\n", file, strerror(errno));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int chtree(const char *dst) {
|
|
|
|
int ret = change(dst);
|
|
|
|
|
|
|
|
struct stat stat_path;
|
|
|
|
if (get_stat("chmod", dst, &stat_path))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (!S_ISDIR(stat_path.st_mode) || !r_flag)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
DIR *dir = opendir(dst);
|
|
|
|
if (dir == NULL) {
|
|
|
|
if (!s_flag)
|
|
|
|
fprintf(stderr, "chown: %s: Can`t open directory\n", dst);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct dirent *ep;
|
|
|
|
while ((ep = readdir(dir)) != NULL) {
|
|
|
|
if (!strcmp(ep->d_name, ".") || !strcmp(ep->d_name, ".."))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
char *full_path = mu_make_path("chmod", dst, ep->d_name);
|
|
|
|
if (full_path == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (chtree(full_path))
|
|
|
|
ret = 1;
|
|
|
|
|
|
|
|
free(full_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
closedir(dir);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void parse_mode(const char *arg){
|
|
|
|
char *p;
|
|
|
|
mode = strtol(arg, &p, 8);
|
|
|
|
if (*p)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
2023-10-24 13:59:42 +03:00
|
|
|
int i;
|
2023-11-01 12:25:51 +03:00
|
|
|
|
|
|
|
get_stat = mu_get_lstat;
|
2023-10-24 13:59:42 +03:00
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
if (argv[i][0] != '-')
|
|
|
|
break;
|
|
|
|
|
|
|
|
else if (!strcmp(argv[i], "-r"))
|
|
|
|
r_flag = 1;
|
|
|
|
|
2023-11-01 12:25:51 +03:00
|
|
|
else if (!strcmp(argv[i], "-s") || !strcmp(argv[i], "-f"))
|
2023-10-24 13:59:42 +03:00
|
|
|
s_flag = 1;
|
|
|
|
|
2023-11-01 12:25:51 +03:00
|
|
|
else if (!strcmp(argv[i], "-H"))
|
|
|
|
get_stat = mu_get_stat;
|
|
|
|
|
2023-10-24 13:59:42 +03:00
|
|
|
else if (!strcmp(argv[i], "--help")) {
|
2023-11-01 12:25:51 +03:00
|
|
|
printf("chmod [-H if a command line argument is a symbolic link] [-r recursive] [-s silent] [file1 file2...]\n");
|
2023-10-24 13:59:42 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-01 12:25:51 +03:00
|
|
|
if (argc - i - 1 <= 0) {
|
|
|
|
fprintf(stderr, "chmod: missing operand\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
parse_mode(argv[i]);
|
|
|
|
argv++;
|
|
|
|
argc--;
|
|
|
|
|
|
|
|
int ret = 0;
|
|
|
|
for (; i < argc; i++)
|
|
|
|
if (chtree(argv[i]))
|
|
|
|
ret = 1;
|
|
|
|
|
|
|
|
return ret;
|
2023-10-24 13:59:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|