forked from dubiousjim/dcron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
crontab.c
369 lines (331 loc) · 7.66 KB
/
crontab.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
/*
* CRONTAB.C
*
* crontab [-u user] [-c dir] [-l|-e|-d|file|-]
* usually run as setuid root
* -u and -c options only work if getuid() == geteuid()
*
* Copyright 1994 Matthew Dillon (dillon@apollo.backplane.com)
* Copyright 2009-2011 James Pryor <profjim@jimpryor.net>
* May be distributed under the GNU General Public License
*/
#include "defs.h"
Prototype void printlogf(int level, const char *ctl, ...);
void Usage(void);
int GetReplaceStream(const char *user, const char *file);
void EditFile(const char *user, const char *file);
const char *CDir = CRONTABS;
int UserId;
int
main(int ac, char **av)
{
enum { NONE, EDIT, LIST, REPLACE, DELETE } option = NONE;
struct passwd *pas;
char *repFile = NULL;
int repFd = 0;
int i;
char caller[SMALL_BUFFER]; /* user that ran program */
UserId = getuid();
if ((pas = getpwuid(UserId)) == NULL) {
perror("getpwuid");
exit(1);
}
/* [v]snprintf write at most size including \0; they'll null-terminate, even when they truncate */
/* return value >= size means result was truncated */
if (snprintf(caller, sizeof(caller), "%s", pas->pw_name) >= sizeof(caller)) {
printlogf(0, "username '%s' too long", caller);
exit(1);
}
opterr = 0;
while ((i=getopt(ac,av,"ledu:c:")) != -1) {
switch(i) {
case 'l':
if (option != NONE)
Usage();
else
option = LIST;
break;
case 'e':
if (option != NONE)
Usage();
else
option = EDIT;
break;
case 'd':
if (option != NONE)
Usage();
else
option = DELETE;
break;
case 'u':
/* getopt guarantees optarg != 0 here */
if (*optarg != 0 && getuid() == geteuid()) {
pas = getpwnam(optarg);
if (pas) {
UserId = pas->pw_uid;
/* paranoia */
if ((pas = getpwuid(UserId)) == NULL) {
perror("getpwuid");
exit(1);
}
} else {
printlogf(0, "user '%s' unknown", optarg);
exit(1);
}
} else {
printlogf(0, "-u option: superuser only");
exit(1);
}
break;
case 'c':
/* getopt guarantees optarg != 0 here */
if (*optarg != 0 && getuid() == geteuid()) {
CDir = optarg;
} else {
printlogf(0, "-c option: superuser only");
exit(1);
}
break;
default:
/* unrecognized -X */
option = NONE;
}
}
if (option == NONE && optind == ac - 1) {
if (av[optind][0] != '-') {
option = REPLACE;
repFile = av[optind];
optind++;
} else if (av[optind][1] == 0) {
option = REPLACE;
optind++;
}
}
if (option == NONE || optind != ac) {
Usage();
}
/*
* If there is a replacement file, obtain a secure descriptor to it.
*/
if (repFile) {
repFd = GetReplaceStream(caller, repFile);
if (repFd < 0) {
printlogf(0, "unable to read replacement file %s", repFile);
exit(1);
}
}
/*
* Change directory to our crontab directory
*/
if (chdir(CDir) < 0) {
printlogf(0, "cannot change dir to %s: %s", CDir, strerror(errno));
exit(1);
}
/*
* Handle options as appropriate
*/
switch(option) {
case LIST:
{
FILE *fi;
char buf[RW_BUFFER];
if ((fi = fopen(pas->pw_name, "r"))) {
while (fgets(buf, sizeof(buf), fi) != NULL)
fputs(buf, stdout);
fclose(fi);
} else {
fprintf(stderr, "no crontab for %s\n", pas->pw_name);
/* no error code */
}
}
break;
case EDIT:
{
FILE *fi;
int fd;
int n;
char tmp[] = TMPDIR "/crontab.XXXXXX";
char buf[RW_BUFFER];
/*
* Create temp file with perm 0600 and O_EXCL flag, ensuring that this call creates the file
* Read from fi for "$CDir/$USER", write to fd for temp file
* EditFile changes user if necessary, and runs editor on temp file
* Then we delete the temp file, keeping its fd as repFd
*/
if ((fd = mkstemp(tmp)) >= 0) {
chown(tmp, getuid(), getgid());
if ((fi = fopen(pas->pw_name, "r"))) {
while ((n = fread(buf, 1, sizeof(buf), fi)) > 0)
write(fd, buf, n);
}
EditFile(caller, tmp);
remove(tmp);
lseek(fd, 0L, 0);
repFd = fd;
} else {
printlogf(0, "unable to create %s: %s", tmp, strerror(errno));
exit(1);
}
}
option = REPLACE;
/* fall through */
case REPLACE:
{
char buf[RW_BUFFER];
char path[SMALL_BUFFER];
int fd;
int n;
/*
* Read from repFd, write to fd for "$CDir/$USER.new"
*/
snprintf(path, sizeof(path), "%s.new", pas->pw_name);
if ((fd = open(path, O_CREAT|O_TRUNC|O_EXCL|O_APPEND|O_WRONLY, 0600)) >= 0) {
while ((n = read(repFd, buf, sizeof(buf))) > 0) {
write(fd, buf, n);
}
close(fd);
rename(path, pas->pw_name);
} else {
fprintf(stderr, "unable to create %s/%s: %s\n",
CDir,
path,
strerror(errno)
);
}
close(repFd);
}
break;
case DELETE:
remove(pas->pw_name);
break;
case NONE:
default:
break;
}
/*
* Bump notification file. Handle window where crond picks file up
* before we can write our entry out.
*/
if (option == REPLACE || option == DELETE) {
FILE *fo;
struct stat st;
while ((fo = fopen(CRONUPDATE, "a"))) {
fprintf(fo, "%s\n", pas->pw_name);
fflush(fo);
if (fstat(fileno(fo), &st) != 0 || st.st_nlink != 0) {
fclose(fo);
break;
}
fclose(fo);
/* loop */
}
if (fo == NULL) {
fprintf(stderr, "unable to append to %s/%s\n", CDir, CRONUPDATE);
}
}
exit(0);
/* not reached */
}
void
printlogf(int level, const char *ctl, ...)
{
va_list va;
char buf[LOG_BUFFER];
va_start(va, ctl);
vsnprintf(buf, sizeof(buf), ctl, va);
write(2, buf, strlen(buf));
va_end(va);
}
void
Usage(void)
{
/*
* parse error
*/
printf("crontab " VERSION "\n");
printf("crontab file [-u user] replace crontab from file\n");
printf("crontab - [-u user] replace crontab from stdin\n");
printf("crontab -l [-u user] list crontab\n");
printf("crontab -e [-u user] edit crontab\n");
printf("crontab -d [-u user] delete crontab\n");
printf("crontab -c dir <opts> specify crontab directory\n");
exit(2);
}
int
GetReplaceStream(const char *user, const char *file)
{
int filedes[2];
int pid;
int fd;
int n;
char buf[RW_BUFFER];
if (pipe(filedes) < 0) {
perror("pipe");
return(-1);
}
if ((pid = fork()) < 0) {
perror("fork");
return(-1);
}
if (pid > 0) {
/*
* PARENT
* Read from pipe[0], return it (or -1 if it's empty)
*/
close(filedes[1]);
if (read(filedes[0], buf, 1) != 1) {
close(filedes[0]);
filedes[0] = -1;
}
return(filedes[0]);
}
/*
* CHILD
* Read from fd for "$file", write to pipe[1]
*/
close(filedes[0]);
if (ChangeUser(user, NULL) < 0)
exit(0);
fd = open(file, O_RDONLY);
if (fd < 0) {
printlogf(0, "unable to open %s: %s", file, strerror(errno));
exit(1);
}
buf[0] = 0;
write(filedes[1], buf, 1);
while ((n = read(fd, buf, sizeof(buf))) > 0) {
write(filedes[1], buf, n);
}
exit(0);
}
void
EditFile(const char *user, const char *file)
{
int pid;
if ((pid = fork()) == 0) {
/*
* CHILD - change user and run editor on "$file"
*/
const char *ptr;
char visual[SMALL_BUFFER];
if (ChangeUser(user, TMPDIR) < 0)
exit(0);
if ((ptr = getenv("EDITOR")) == NULL || strlen(ptr) >= sizeof(visual))
if ((ptr = getenv("VISUAL")) == NULL || strlen(ptr) >= sizeof(visual))
ptr = PATH_VI;
/* [v]snprintf write at most size including \0; they'll null-terminate, even when they truncate */
/* return value >= size means result was truncated */
if (snprintf(visual, sizeof(visual), "%s %s", ptr, file) < sizeof(visual))
execl("/bin/sh", "/bin/sh", "-c", visual, NULL);
printlogf(0, "couldn't exec %s", visual);
exit(1);
}
if (pid < 0) {
/*
* PARENT - failure
*/
perror("fork");
exit(1);
}
waitpid(pid, NULL, 0);
}