-
Notifications
You must be signed in to change notification settings - Fork 0
/
chown.c
86 lines (78 loc) · 2.41 KB
/
chown.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// Copyright (C) 2021 Benjamin Stürz
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
#define PROG_NAME "chown"
#include <sys/types.h>
#include <sys/stat.h>
#include <stdbool.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <dirent.h>
#include <limits.h>
#include <fcntl.h>
#include <stdio.h>
#include <ctype.h>
#include <pwd.h>
#include <grp.h>
#include "errprintf.h"
#include "common.h"
#include "chown.h"
static int recursive, opt_h = 0, opt_upper = 0, initial;
int main(int argc, char* argv[]) {
if (argc < 2) {
print_usage:
fputs("Usage: chown [-h] owner[:group] file...\n", stderr);
fputs(" chown -R [-H|-L|-P] owner[:group] file...\n", stderr);
return 1;
}
int option;
recursive = 0;
opt_upper = 'P';
while ((option = getopt(argc, argv, ":RHLPh")) != -1) {
switch (option) {
case 'R': recursive = 1; opt_upper = 'P'; break;
case 'h': opt_h = 1; break;
case 'H': opt_upper = 'H'; break;
case 'L': opt_upper = 'L'; break;
case 'P': opt_upper = 'P'; break;
default: goto print_usage;
}
}
if ((argc - optind) < 2 || (opt_upper && !recursive)) goto print_usage;
char* owner = argv[optind++];
char* group = NULL;
char* end;
if ((end = strchr(owner, ':')) != NULL) {
group = end + 1;
char* tmp = (char*)malloc(end - owner + 2);
if (!tmp) {
errprintf("failed to allocate memory");
return 1;
}
strncpy(tmp, owner, end - owner);
owner = tmp;
}
uid_t uid;
gid_t gid = -1;
if (!getusrinfo(&uid, &gid, owner, group)) return 1;
int rv = 0;
for (; optind < argc; ++optind) {
const char* path = argv[optind];
initial = true;
if (!do_chown(path, uid, gid)) rv = 1;
}
if (group) free(owner);
return rv;
}