blob: 044440435be20e2fb007c41461edbdc69f1adc98 [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 change_user(const struct passwd *pas)
Eric Andersenf6f7bfb2002-10-22 12:24:59 +000021{
Denis Vlasenkob8d1a4c2008-09-20 16:28:59 +000022 xsetenv("USER", pas->pw_name);
23 xsetenv("HOME", pas->pw_dir);
24 xsetenv("SHELL", DEFAULT_SHELL);
Denis Vlasenko94d5d822006-09-27 19:48:56 +000025
Denis Vlasenko069e3472008-02-16 13:17:13 +000026 /* initgroups, setgid, setuid */
Denis Vlasenko94d5d822006-09-27 19:48:56 +000027 change_identity(pas);
28
Denis Vlasenko069e3472008-02-16 13:17:13 +000029 if (chdir(pas->pw_dir) < 0) {
30 bb_perror_msg("chdir(%s) by %s failed",
31 pas->pw_dir, pas->pw_name);
Denis Vlasenko7fc294c2008-02-16 13:47:57 +000032 xchdir("/tmp");
Denis Vlasenko069e3472008-02-16 13:17:13 +000033 }
34}
35
36static void edit_file(const struct passwd *pas, const char *file)
37{
38 const char *ptr;
Denis Vlasenko82604e92008-07-01 15:59:42 +000039 int pid = vfork();
Denis Vlasenko069e3472008-02-16 13:17:13 +000040
Denis Vlasenko82604e92008-07-01 15:59:42 +000041 if (pid < 0) /* failure */
42 bb_perror_msg_and_die("vfork");
Denis Vlasenko069e3472008-02-16 13:17:13 +000043 if (pid) { /* parent */
44 wait4pid(pid);
45 return;
46 }
47
48 /* CHILD - change user and run editor */
49 change_user(pas);
50 ptr = getenv("VISUAL");
51 if (!ptr) {
52 ptr = getenv("EDITOR");
53 if (!ptr)
Denis Vlasenkob44c7902008-03-17 09:29:43 +000054 ptr = "vi";
Denis Vlasenko069e3472008-02-16 13:17:13 +000055 }
56
Denis Vlasenko7fc294c2008-02-16 13:47:57 +000057 BB_EXECLP(ptr, ptr, file, NULL);
Denis Vlasenko069e3472008-02-16 13:17:13 +000058 bb_perror_msg_and_die("exec %s", ptr);
59}
60
61static int open_as_user(const struct passwd *pas, const char *file)
62{
Denis Vlasenko069e3472008-02-16 13:17:13 +000063 pid_t pid;
64 char c;
65
Denis Vlasenko82604e92008-07-01 15:59:42 +000066 pid = vfork();
67 if (pid < 0) /* ERROR */
68 bb_perror_msg_and_die("vfork");
Denis Vlasenko069e3472008-02-16 13:17:13 +000069 if (pid) { /* PARENT */
Denis Vlasenko03b4c142008-02-17 14:30:03 +000070 if (wait4pid(pid) == 0) {
71 /* exitcode 0: child says it can read */
Denis Vlasenko069e3472008-02-16 13:17:13 +000072 return open(file, O_RDONLY);
Denis Vlasenko03b4c142008-02-17 14:30:03 +000073 }
Denis Vlasenko069e3472008-02-16 13:17:13 +000074 return -1;
75 }
76
77 /* CHILD */
Denis Vlasenko069e3472008-02-16 13:17:13 +000078 /* initgroups, setgid, setuid */
79 change_identity(pas);
Denis Vlasenko03b4c142008-02-17 14:30:03 +000080 /* We just try to read one byte. If it works, file is readable
81 * under this user. We signal that by exiting with 0. */
82 _exit(safe_read(xopen(file, O_RDONLY), &c, 1) < 0);
Denis Vlasenko069e3472008-02-16 13:17:13 +000083}
84
85int crontab_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000086int crontab_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenko069e3472008-02-16 13:17:13 +000087{
88 const struct passwd *pas;
89 const char *crontab_dir = CRONTABS;
90 char *tmp_fname;
91 char *new_fname;
92 char *user_name; /* -u USER */
93 int fd;
Denis Vlasenko30cfdf92008-09-21 15:29:29 +000094 int src_fd;
Denis Vlasenko069e3472008-02-16 13:17:13 +000095 int opt_ler;
Denis Vlasenko069e3472008-02-16 13:17:13 +000096
97 /* file [opts] Replace crontab from file
98 * - [opts] Replace crontab from stdin
99 * -u user User
100 * -c dir Crontab directory
101 * -l List crontab for user
102 * -e Edit crontab for user
103 * -r Delete crontab for user
104 * bbox also supports -d == -r, but most other crontab
105 * implementations do not. Deprecated.
106 */
107 enum {
108 OPT_u = (1 << 0),
109 OPT_c = (1 << 1),
110 OPT_l = (1 << 2),
111 OPT_e = (1 << 3),
112 OPT_r = (1 << 4),
113 OPT_ler = OPT_l + OPT_e + OPT_r,
114 };
115
Denis Vlasenko069e3472008-02-16 13:17:13 +0000116 opt_complementary = "?1:dr"; /* max one argument; -d implies -r */
117 opt_ler = getopt32(argv, "u:c:lerd", &user_name, &crontab_dir);
118 argv += optind;
119
Denis Vlasenkoc9ca0a32008-02-18 11:08:33 +0000120 if (sanitize_env_if_suid()) { /* Clears dangerous stuff, sets PATH */
Denys Vlasenkob2e5fc32009-11-25 14:52:47 +0100121 /* Run by non-root */
Denis Vlasenko7fc294c2008-02-16 13:47:57 +0000122 if (opt_ler & (OPT_u|OPT_c))
Denys Vlasenkob2e5fc32009-11-25 14:52:47 +0100123 bb_error_msg_and_die(bb_msg_you_must_be_root);
Denis Vlasenko7fc294c2008-02-16 13:47:57 +0000124 }
Denis Vlasenko069e3472008-02-16 13:17:13 +0000125
126 if (opt_ler & OPT_u) {
Denis Vlasenkod7a805e2008-12-03 19:05:55 +0000127 pas = xgetpwnam(user_name);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000128 } else {
Denis Vlasenko0c68a872008-12-02 22:56:59 +0000129 pas = xgetpwuid(getuid());
Denis Vlasenko069e3472008-02-16 13:17:13 +0000130 }
131
132#define user_name DONT_USE_ME_BEYOND_THIS_POINT
Denis Vlasenko069e3472008-02-16 13:17:13 +0000133
134 /* From now on, keep only -l, -e, -r bits */
135 opt_ler &= OPT_ler;
136 if ((opt_ler - 1) & opt_ler) /* more than one bit set? */
137 bb_show_usage();
138
139 /* Read replacement file under user's UID/GID/group vector */
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000140 src_fd = STDIN_FILENO;
Denis Vlasenko069e3472008-02-16 13:17:13 +0000141 if (!opt_ler) { /* Replace? */
142 if (!argv[0])
143 bb_show_usage();
144 if (NOT_LONE_DASH(argv[0])) {
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000145 src_fd = open_as_user(pas, argv[0]);
146 if (src_fd < 0)
Denis Vlasenko069e3472008-02-16 13:17:13 +0000147 bb_error_msg_and_die("user %s cannot read %s",
148 pas->pw_name, argv[0]);
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000149 }
150 }
Denis Vlasenko069e3472008-02-16 13:17:13 +0000151
152 /* cd to our crontab directory */
153 xchdir(crontab_dir);
154
155 tmp_fname = NULL;
156
157 /* Handle requested operation */
158 switch (opt_ler) {
159
160 default: /* case OPT_r: Delete */
Denis Vlasenko03b4c142008-02-17 14:30:03 +0000161 unlink(pas->pw_name);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000162 break;
163
164 case OPT_l: /* List */
165 {
166 char *args[2] = { pas->pw_name, NULL };
167 return bb_cat(args);
168 /* list exits,
169 * the rest go play with cron update file */
170 }
171
172 case OPT_e: /* Edit */
Denis Vlasenko7fc294c2008-02-16 13:47:57 +0000173 tmp_fname = xasprintf("%s.%u", crontab_dir, (unsigned)getpid());
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000174 /* No O_EXCL: we don't want to be stuck if earlier crontabs
175 * were killed, leaving stale temp file behind */
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000176 src_fd = xopen3(tmp_fname, O_RDWR|O_CREAT|O_TRUNC, 0600);
177 fchown(src_fd, pas->pw_uid, pas->pw_gid);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000178 fd = open(pas->pw_name, O_RDONLY);
179 if (fd >= 0) {
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000180 bb_copyfd_eof(fd, src_fd);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000181 close(fd);
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000182 xlseek(src_fd, 0, SEEK_SET);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000183 }
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000184 close_on_exec_on(src_fd); /* don't want editor to see this fd */
Denis Vlasenko069e3472008-02-16 13:17:13 +0000185 edit_file(pas, tmp_fname);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000186 /* fall through */
187
188 case 0: /* Replace (no -l, -e, or -r were given) */
189 new_fname = xasprintf("%s.new", pas->pw_name);
190 fd = open(new_fname, O_WRONLY|O_CREAT|O_TRUNC|O_APPEND, 0600);
191 if (fd >= 0) {
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000192 bb_copyfd_eof(src_fd, fd);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000193 close(fd);
Denis Vlasenko03b4c142008-02-17 14:30:03 +0000194 xrename(new_fname, pas->pw_name);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000195 } else {
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100196 bb_error_msg("can't create %s/%s",
Denis Vlasenko069e3472008-02-16 13:17:13 +0000197 crontab_dir, new_fname);
198 }
199 if (tmp_fname)
Denis Vlasenko03b4c142008-02-17 14:30:03 +0000200 unlink(tmp_fname);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000201 /*free(tmp_fname);*/
202 /*free(new_fname);*/
203
204 } /* switch */
205
206 /* Bump notification file. Handle window where crond picks file up
207 * before we can write our entry out.
208 */
Bernhard Reutner-Fischer27dd4952008-02-18 18:35:53 +0000209 while ((fd = open(CRONUPDATE, O_WRONLY|O_CREAT|O_APPEND, 0600)) >= 0) {
Denis Vlasenko069e3472008-02-16 13:17:13 +0000210 struct stat st;
211
212 fdprintf(fd, "%s\n", pas->pw_name);
213 if (fstat(fd, &st) != 0 || st.st_nlink != 0) {
214 /*close(fd);*/
215 break;
216 }
217 /* st.st_nlink == 0:
218 * file was deleted, maybe crond missed our notification */
219 close(fd);
220 /* loop */
221 }
222 if (fd < 0) {
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100223 bb_error_msg("can't append to %s/%s",
Denis Vlasenko069e3472008-02-16 13:17:13 +0000224 crontab_dir, CRONUPDATE);
225 }
226 return 0;
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000227}