blob: eb7c2059c099f78ccab26fc1d60f6b68f6ba4efc [file] [log] [blame]
Bernhard Reutner-Fischerd9cf7ac2006-04-12 18:39:58 +00001/* vi: set sw=4 ts=4: */
Eric Andersenf6f7bfb2002-10-22 12:24:59 +00002/*
3 * CRONTAB
4 *
5 * usually setuid root, -c option only works if getuid() == geteuid()
6 *
7 * Copyright 1994 Matthew Dillon (dillon@apollo.west.oic.com)
Mike Frysingerf284c762006-04-16 20:38:26 +00008 * Vladimir Oleynik <dzo@simtreas.ru> (C) 2002
Eric Andersenf6f7bfb2002-10-22 12:24:59 +00009 *
Mike Frysingerf284c762006-04-16 20:38:26 +000010 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersenf6f7bfb2002-10-22 12:24:59 +000011 */
12
Bernhard Reutner-Fischerc89982d2006-06-03 19:49:21 +000013#include "busybox.h"
Eric Andersenf6f7bfb2002-10-22 12:24:59 +000014
15#ifndef CRONTABS
16#define CRONTABS "/var/spool/cron/crontabs"
17#endif
18#ifndef TMPDIR
19#define TMPDIR "/var/spool/cron"
20#endif
21#ifndef CRONUPDATE
22#define CRONUPDATE "cron.update"
23#endif
24#ifndef PATH_VI
Denis Vlasenko94d5d822006-09-27 19:48:56 +000025#define PATH_VI "/bin/vi" /* location of vi */
Eric Andersenf6f7bfb2002-10-22 12:24:59 +000026#endif
27
Denis Vlasenko94d5d822006-09-27 19:48:56 +000028static const char *CDir = CRONTABS;
Eric Andersenf6f7bfb2002-10-22 12:24:59 +000029
30static void EditFile(const char *user, const char *file);
31static int GetReplaceStream(const char *user, const char *file);
Denis Vlasenko94d5d822006-09-27 19:48:56 +000032static int ChangeUser(const char *user, short dochdir);
Eric Andersenf6f7bfb2002-10-22 12:24:59 +000033
Rob Landleyd921b2e2006-08-03 15:41:12 +000034int crontab_main(int ac, char **av)
Eric Andersenf6f7bfb2002-10-22 12:24:59 +000035{
Denis Vlasenko94d5d822006-09-27 19:48:56 +000036 enum { NONE, EDIT, LIST, REPLACE, DELETE } option = NONE;
37 const struct passwd *pas;
38 const char *repFile = NULL;
39 int repFd = 0;
40 int i;
41 char caller[256]; /* user that ran program */
42 char buf[1024];
43 int UserId;
Eric Andersenf6f7bfb2002-10-22 12:24:59 +000044
Denis Vlasenko94d5d822006-09-27 19:48:56 +000045 UserId = getuid();
46 pas = getpwuid(UserId);
47 if (pas == NULL)
48 bb_perror_msg_and_die("getpwuid");
Eric Andersenf6f7bfb2002-10-22 12:24:59 +000049
Denis Vlasenko94d5d822006-09-27 19:48:56 +000050 safe_strncpy(caller, pas->pw_name, sizeof(caller));
Eric Andersenf6f7bfb2002-10-22 12:24:59 +000051
Denis Vlasenko94d5d822006-09-27 19:48:56 +000052 i = 1;
53 if (ac > 1) {
Denis Vlasenko9f739442006-12-16 23:49:13 +000054 if (LONE_DASH(av[1])) {
Denis Vlasenko94d5d822006-09-27 19:48:56 +000055 option = REPLACE;
56 ++i;
57 } else if (av[1][0] != '-') {
58 option = REPLACE;
59 ++i;
60 repFile = av[1];
Eric Andersenf6f7bfb2002-10-22 12:24:59 +000061 }
Eric Andersenf6f7bfb2002-10-22 12:24:59 +000062 }
Eric Andersenf6f7bfb2002-10-22 12:24:59 +000063
Denis Vlasenko94d5d822006-09-27 19:48:56 +000064 for (; i < ac; ++i) {
65 char *ptr = av[i];
Eric Andersenf6f7bfb2002-10-22 12:24:59 +000066
Denis Vlasenko94d5d822006-09-27 19:48:56 +000067 if (*ptr != '-')
68 break;
69 ptr += 2;
Eric Andersenf6f7bfb2002-10-22 12:24:59 +000070
Denis Vlasenko94d5d822006-09-27 19:48:56 +000071 switch (ptr[-1]) {
72 case 'l':
73 if (ptr[-1] == 'l')
74 option = LIST;
75 /* fall through */
76 case 'e':
77 if (ptr[-1] == 'e')
78 option = EDIT;
79 /* fall through */
80 case 'd':
81 if (ptr[-1] == 'd')
82 option = DELETE;
83 /* fall through */
84 case 'u':
85 if (i + 1 < ac && av[i+1][0] != '-') {
86 ++i;
87 if (getuid() == geteuid()) {
88 pas = getpwnam(av[i]);
89 if (pas) {
90 UserId = pas->pw_uid;
91 } else {
92 bb_error_msg_and_die("user %s unknown", av[i]);
93 }
94 } else {
95 bb_error_msg_and_die("only the superuser may specify a user");
96 }
97 }
98 break;
99 case 'c':
100 if (getuid() == geteuid()) {
101 CDir = (*ptr) ? ptr : av[++i];
102 } else {
103 bb_error_msg_and_die("-c option: superuser only");
104 }
105 break;
106 default:
107 i = ac;
108 break;
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000109 }
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000110 }
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000111 if (i != ac || option == NONE)
112 bb_show_usage();
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000113
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000114 /*
115 * Get password entry
116 */
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000117
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000118 pas = getpwuid(UserId);
119 if (pas == NULL)
120 bb_perror_msg_and_die("getpwuid");
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000121
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000122 /*
123 * If there is a replacement file, obtain a secure descriptor to it.
124 */
125
126 if (repFile) {
127 repFd = GetReplaceStream(caller, repFile);
128 if (repFd < 0)
Denis Vlasenko89f0b342006-11-18 22:04:09 +0000129 bb_error_msg_and_die("cannot read replacement file");
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000130 }
131
132 /*
133 * Change directory to our crontab directory
134 */
135
136 xchdir(CDir);
137
138 /*
139 * Handle options as appropriate
140 */
141
142 switch (option) {
143 case LIST:
144 {
145 FILE *fi;
146
147 fi = fopen(pas->pw_name, "r");
148 if (fi) {
149 while (fgets(buf, sizeof(buf), fi) != NULL)
150 fputs(buf, stdout);
151 fclose(fi);
152 } else {
153 bb_error_msg("no crontab for %s", pas->pw_name);
154 }
155 }
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000156 break;
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000157 case EDIT:
158 {
Denis Vlasenkocf749bc2006-11-26 15:45:17 +0000159/* FIXME: messy code here! we have file copying helpers for this! */
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000160 FILE *fi;
161 int fd;
162 int n;
163 char tmp[128];
164
165 snprintf(tmp, sizeof(tmp), TMPDIR "/crontab.%d", getpid());
166 fd = xopen3(tmp, O_RDWR|O_CREAT|O_TRUNC|O_EXCL, 0600);
Denis Vlasenkocf749bc2006-11-26 15:45:17 +0000167/* race, use fchown */
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000168 chown(tmp, getuid(), getgid());
169 fi = fopen(pas->pw_name, "r");
170 if (fi) {
171 while ((n = fread(buf, 1, sizeof(buf), fi)) > 0)
Denis Vlasenkocf749bc2006-11-26 15:45:17 +0000172 full_write(fd, buf, n);
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000173 }
174 EditFile(caller, tmp);
175 remove(tmp);
Denis Vlasenkoea620772006-10-14 02:23:43 +0000176 lseek(fd, 0L, SEEK_SET);
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000177 repFd = fd;
178 }
179 option = REPLACE;
180 /* fall through */
181 case REPLACE:
182 {
Denis Vlasenkocf749bc2006-11-26 15:45:17 +0000183/* same here */
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000184 char path[1024];
185 int fd;
186 int n;
187
188 snprintf(path, sizeof(path), "%s.new", pas->pw_name);
189 fd = open(path, O_CREAT|O_TRUNC|O_APPEND|O_WRONLY, 0600);
190 if (fd >= 0) {
191 while ((n = read(repFd, buf, sizeof(buf))) > 0) {
Denis Vlasenkocf749bc2006-11-26 15:45:17 +0000192 full_write(fd, buf, n);
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000193 }
194 close(fd);
195 rename(path, pas->pw_name);
196 } else {
Denis Vlasenko89f0b342006-11-18 22:04:09 +0000197 bb_error_msg("cannot create %s/%s", CDir, path);
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000198 }
199 close(repFd);
200 }
201 break;
202 case DELETE:
203 remove(pas->pw_name);
204 break;
205 case NONE:
206 default:
207 break;
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000208 }
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000209
210 /*
211 * Bump notification file. Handle window where crond picks file up
212 * before we can write our entry out.
213 */
214
215 if (option == REPLACE || option == DELETE) {
216 FILE *fo;
217 struct stat st;
218
219 while ((fo = fopen(CRONUPDATE, "a"))) {
220 fprintf(fo, "%s\n", pas->pw_name);
221 fflush(fo);
222 if (fstat(fileno(fo), &st) != 0 || st.st_nlink != 0) {
223 fclose(fo);
224 break;
225 }
226 fclose(fo);
227 /* loop */
228 }
229 if (fo == NULL) {
Denis Vlasenko89f0b342006-11-18 22:04:09 +0000230 bb_error_msg("cannot append to %s/%s", CDir, CRONUPDATE);
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000231 }
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000232 }
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000233 return 0;
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000234}
235
Rob Landleyd921b2e2006-08-03 15:41:12 +0000236static int GetReplaceStream(const char *user, const char *file)
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000237{
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000238 int filedes[2];
239 int pid;
240 int fd;
241 int n;
242 char buf[1024];
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000243
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000244 if (pipe(filedes) < 0) {
245 perror("pipe");
246 return -1;
247 }
248 pid = fork();
249 if (pid < 0) {
250 perror("fork");
251 return -1;
252 }
253 if (pid > 0) {
254 /*
255 * PARENT
256 */
257
258 close(filedes[1]);
259 if (read(filedes[0], buf, 1) != 1) {
260 close(filedes[0]);
261 filedes[0] = -1;
262 }
263 return filedes[0];
264 }
265
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000266 /*
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000267 * CHILD
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000268 */
269
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000270 close(filedes[0]);
271
272 if (ChangeUser(user, 0) < 0)
273 exit(0);
274
Denis Vlasenko40920822006-10-03 20:28:06 +0000275 xfunc_error_retval = 0;
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000276 fd = xopen(file, O_RDONLY);
277 buf[0] = 0;
278 write(filedes[1], buf, 1);
279 while ((n = read(fd, buf, sizeof(buf))) > 0) {
280 write(filedes[1], buf, n);
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000281 }
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000282 exit(0);
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000283}
284
Rob Landleyd921b2e2006-08-03 15:41:12 +0000285static void EditFile(const char *user, const char *file)
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000286{
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000287 int pid = fork();
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000288
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000289 if (pid == 0) {
290 /*
291 * CHILD - change user and run editor
292 */
Denis Vlasenko06c0a712007-01-29 22:51:44 +0000293 const char *ptr;
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000294
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000295 if (ChangeUser(user, 1) < 0)
296 exit(0);
297 ptr = getenv("VISUAL");
298 if (ptr == NULL || strlen(ptr) > 256)
299 ptr = PATH_VI;
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000300
Denis Vlasenko06c0a712007-01-29 22:51:44 +0000301 ptr = xasprintf("%s %s", ptr, file);
302 execl(DEFAULT_SHELL, DEFAULT_SHELL, "-c", ptr, NULL);
303 bb_perror_msg_and_die("exec");
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000304 }
305 if (pid < 0) {
306 /*
307 * PARENT - failure
308 */
309 bb_perror_msg_and_die("fork");
310 }
311 wait4(pid, NULL, 0, NULL);
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000312}
313
Rob Landleyd921b2e2006-08-03 15:41:12 +0000314static int ChangeUser(const char *user, short dochdir)
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000315{
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000316 struct passwd *pas;
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000317
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000318 /*
319 * Obtain password entry and change privileges
320 */
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000321
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000322 pas = getpwnam(user);
323 if (pas == NULL) {
324 bb_perror_msg_and_die("failed to get uid for %s", user);
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000325 }
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000326 setenv("USER", pas->pw_name, 1);
327 setenv("HOME", pas->pw_dir, 1);
328 setenv("SHELL", DEFAULT_SHELL, 1);
329
330 /*
331 * Change running state to the user in question
332 */
333 change_identity(pas);
334
335 if (dochdir) {
336 if (chdir(pas->pw_dir) < 0) {
337 bb_perror_msg("chdir(%s) by %s failed", pas->pw_dir, user);
338 xchdir(TMPDIR);
339 }
340 }
341 return pas->pw_uid;
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000342}