blob: 7d5709521ed94a5e29b663144b5443edc21dc3ea [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
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000013#include "libbb.h"
Eric Andersenf6f7bfb2002-10-22 12:24:59 +000014
Denis Vlasenkoded5dfe2009-02-03 23:59:41 +000015#define CRONTABS CONFIG_FEATURE_CROND_DIR "/crontabs"
Eric Andersenf6f7bfb2002-10-22 12:24:59 +000016#ifndef CRONUPDATE
17#define CRONUPDATE "cron.update"
18#endif
Eric Andersenf6f7bfb2002-10-22 12:24:59 +000019
Denis Vlasenko069e3472008-02-16 13:17:13 +000020static void edit_file(const struct passwd *pas, const char *file)
21{
22 const char *ptr;
Denis Vlasenko82604e92008-07-01 15:59:42 +000023 int pid = vfork();
Denis Vlasenko069e3472008-02-16 13:17:13 +000024
Denis Vlasenko82604e92008-07-01 15:59:42 +000025 if (pid < 0) /* failure */
26 bb_perror_msg_and_die("vfork");
Denis Vlasenko069e3472008-02-16 13:17:13 +000027 if (pid) { /* parent */
28 wait4pid(pid);
29 return;
30 }
31
32 /* CHILD - change user and run editor */
Bernhard Reutner-Fischer99709ab2010-02-24 16:10:09 +010033 /* initgroups, setgid, setuid */
34 change_identity(pas);
35 setup_environment(DEFAULT_SHELL, 0,
36 SETUP_ENV_CHANGEENV | SETUP_ENV_TO_TMP, pas);
Denis Vlasenko069e3472008-02-16 13:17:13 +000037 ptr = getenv("VISUAL");
38 if (!ptr) {
39 ptr = getenv("EDITOR");
40 if (!ptr)
Denis Vlasenkob44c7902008-03-17 09:29:43 +000041 ptr = "vi";
Denis Vlasenko069e3472008-02-16 13:17:13 +000042 }
43
Denis Vlasenko7fc294c2008-02-16 13:47:57 +000044 BB_EXECLP(ptr, ptr, file, NULL);
Denis Vlasenko069e3472008-02-16 13:17:13 +000045 bb_perror_msg_and_die("exec %s", ptr);
46}
47
48static int open_as_user(const struct passwd *pas, const char *file)
49{
Denis Vlasenko069e3472008-02-16 13:17:13 +000050 pid_t pid;
51 char c;
52
Denis Vlasenko82604e92008-07-01 15:59:42 +000053 pid = vfork();
54 if (pid < 0) /* ERROR */
55 bb_perror_msg_and_die("vfork");
Denis Vlasenko069e3472008-02-16 13:17:13 +000056 if (pid) { /* PARENT */
Denis Vlasenko03b4c142008-02-17 14:30:03 +000057 if (wait4pid(pid) == 0) {
58 /* exitcode 0: child says it can read */
Denis Vlasenko069e3472008-02-16 13:17:13 +000059 return open(file, O_RDONLY);
Denis Vlasenko03b4c142008-02-17 14:30:03 +000060 }
Denis Vlasenko069e3472008-02-16 13:17:13 +000061 return -1;
62 }
63
64 /* CHILD */
Denis Vlasenko069e3472008-02-16 13:17:13 +000065 /* initgroups, setgid, setuid */
66 change_identity(pas);
Denis Vlasenko03b4c142008-02-17 14:30:03 +000067 /* We just try to read one byte. If it works, file is readable
68 * under this user. We signal that by exiting with 0. */
69 _exit(safe_read(xopen(file, O_RDONLY), &c, 1) < 0);
Denis Vlasenko069e3472008-02-16 13:17:13 +000070}
71
72int crontab_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000073int crontab_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenko069e3472008-02-16 13:17:13 +000074{
75 const struct passwd *pas;
76 const char *crontab_dir = CRONTABS;
77 char *tmp_fname;
78 char *new_fname;
79 char *user_name; /* -u USER */
80 int fd;
Denis Vlasenko30cfdf92008-09-21 15:29:29 +000081 int src_fd;
Denis Vlasenko069e3472008-02-16 13:17:13 +000082 int opt_ler;
Denis Vlasenko069e3472008-02-16 13:17:13 +000083
84 /* file [opts] Replace crontab from file
85 * - [opts] Replace crontab from stdin
86 * -u user User
87 * -c dir Crontab directory
88 * -l List crontab for user
89 * -e Edit crontab for user
90 * -r Delete crontab for user
91 * bbox also supports -d == -r, but most other crontab
92 * implementations do not. Deprecated.
93 */
94 enum {
95 OPT_u = (1 << 0),
96 OPT_c = (1 << 1),
97 OPT_l = (1 << 2),
98 OPT_e = (1 << 3),
99 OPT_r = (1 << 4),
100 OPT_ler = OPT_l + OPT_e + OPT_r,
101 };
102
Denis Vlasenko069e3472008-02-16 13:17:13 +0000103 opt_complementary = "?1:dr"; /* max one argument; -d implies -r */
104 opt_ler = getopt32(argv, "u:c:lerd", &user_name, &crontab_dir);
105 argv += optind;
106
Denis Vlasenkoc9ca0a32008-02-18 11:08:33 +0000107 if (sanitize_env_if_suid()) { /* Clears dangerous stuff, sets PATH */
Denys Vlasenkob2e5fc32009-11-25 14:52:47 +0100108 /* Run by non-root */
Denis Vlasenko7fc294c2008-02-16 13:47:57 +0000109 if (opt_ler & (OPT_u|OPT_c))
Denys Vlasenkob2e5fc32009-11-25 14:52:47 +0100110 bb_error_msg_and_die(bb_msg_you_must_be_root);
Denis Vlasenko7fc294c2008-02-16 13:47:57 +0000111 }
Denis Vlasenko069e3472008-02-16 13:17:13 +0000112
113 if (opt_ler & OPT_u) {
Denis Vlasenkod7a805e2008-12-03 19:05:55 +0000114 pas = xgetpwnam(user_name);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000115 } else {
Denis Vlasenko0c68a872008-12-02 22:56:59 +0000116 pas = xgetpwuid(getuid());
Denis Vlasenko069e3472008-02-16 13:17:13 +0000117 }
118
119#define user_name DONT_USE_ME_BEYOND_THIS_POINT
Denis Vlasenko069e3472008-02-16 13:17:13 +0000120
121 /* From now on, keep only -l, -e, -r bits */
122 opt_ler &= OPT_ler;
123 if ((opt_ler - 1) & opt_ler) /* more than one bit set? */
124 bb_show_usage();
125
126 /* Read replacement file under user's UID/GID/group vector */
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000127 src_fd = STDIN_FILENO;
Denis Vlasenko069e3472008-02-16 13:17:13 +0000128 if (!opt_ler) { /* Replace? */
129 if (!argv[0])
130 bb_show_usage();
131 if (NOT_LONE_DASH(argv[0])) {
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000132 src_fd = open_as_user(pas, argv[0]);
133 if (src_fd < 0)
Denis Vlasenko069e3472008-02-16 13:17:13 +0000134 bb_error_msg_and_die("user %s cannot read %s",
135 pas->pw_name, argv[0]);
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000136 }
137 }
Denis Vlasenko069e3472008-02-16 13:17:13 +0000138
139 /* cd to our crontab directory */
140 xchdir(crontab_dir);
141
142 tmp_fname = NULL;
143
144 /* Handle requested operation */
145 switch (opt_ler) {
146
147 default: /* case OPT_r: Delete */
Denis Vlasenko03b4c142008-02-17 14:30:03 +0000148 unlink(pas->pw_name);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000149 break;
150
151 case OPT_l: /* List */
152 {
153 char *args[2] = { pas->pw_name, NULL };
154 return bb_cat(args);
155 /* list exits,
156 * the rest go play with cron update file */
157 }
158
159 case OPT_e: /* Edit */
Denis Vlasenko7fc294c2008-02-16 13:47:57 +0000160 tmp_fname = xasprintf("%s.%u", crontab_dir, (unsigned)getpid());
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000161 /* No O_EXCL: we don't want to be stuck if earlier crontabs
162 * were killed, leaving stale temp file behind */
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000163 src_fd = xopen3(tmp_fname, O_RDWR|O_CREAT|O_TRUNC, 0600);
164 fchown(src_fd, pas->pw_uid, pas->pw_gid);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000165 fd = open(pas->pw_name, O_RDONLY);
166 if (fd >= 0) {
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000167 bb_copyfd_eof(fd, src_fd);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000168 close(fd);
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000169 xlseek(src_fd, 0, SEEK_SET);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000170 }
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000171 close_on_exec_on(src_fd); /* don't want editor to see this fd */
Denis Vlasenko069e3472008-02-16 13:17:13 +0000172 edit_file(pas, tmp_fname);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000173 /* fall through */
174
175 case 0: /* Replace (no -l, -e, or -r were given) */
176 new_fname = xasprintf("%s.new", pas->pw_name);
177 fd = open(new_fname, O_WRONLY|O_CREAT|O_TRUNC|O_APPEND, 0600);
178 if (fd >= 0) {
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000179 bb_copyfd_eof(src_fd, fd);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000180 close(fd);
Denis Vlasenko03b4c142008-02-17 14:30:03 +0000181 xrename(new_fname, pas->pw_name);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000182 } else {
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100183 bb_error_msg("can't create %s/%s",
Denis Vlasenko069e3472008-02-16 13:17:13 +0000184 crontab_dir, new_fname);
185 }
186 if (tmp_fname)
Denis Vlasenko03b4c142008-02-17 14:30:03 +0000187 unlink(tmp_fname);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000188 /*free(tmp_fname);*/
189 /*free(new_fname);*/
190
191 } /* switch */
192
193 /* Bump notification file. Handle window where crond picks file up
194 * before we can write our entry out.
195 */
Bernhard Reutner-Fischer27dd4952008-02-18 18:35:53 +0000196 while ((fd = open(CRONUPDATE, O_WRONLY|O_CREAT|O_APPEND, 0600)) >= 0) {
Denis Vlasenko069e3472008-02-16 13:17:13 +0000197 struct stat st;
198
199 fdprintf(fd, "%s\n", pas->pw_name);
200 if (fstat(fd, &st) != 0 || st.st_nlink != 0) {
201 /*close(fd);*/
202 break;
203 }
204 /* st.st_nlink == 0:
205 * file was deleted, maybe crond missed our notification */
206 close(fd);
207 /* loop */
208 }
209 if (fd < 0) {
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100210 bb_error_msg("can't append to %s/%s",
Denis Vlasenko069e3472008-02-16 13:17:13 +0000211 crontab_dir, CRONUPDATE);
212 }
213 return 0;
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000214}