blob: 163e15dce1413123be56d2cb458e8c8385baa247 [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 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020010 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
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;
Pascal Bellard926031b2010-07-04 15:32:38 +020023 int pid = xvfork();
Denis Vlasenko069e3472008-02-16 13:17:13 +000024
Denis Vlasenko069e3472008-02-16 13:17:13 +000025 if (pid) { /* parent */
26 wait4pid(pid);
27 return;
28 }
29
30 /* CHILD - change user and run editor */
Bernhard Reutner-Fischer99709ab2010-02-24 16:10:09 +010031 /* initgroups, setgid, setuid */
32 change_identity(pas);
Denys Vlasenkofd686a22010-02-26 09:52:45 +010033 setup_environment(DEFAULT_SHELL,
34 SETUP_ENV_CHANGEENV | SETUP_ENV_TO_TMP,
35 pas);
Denis Vlasenko069e3472008-02-16 13:17:13 +000036 ptr = getenv("VISUAL");
37 if (!ptr) {
38 ptr = getenv("EDITOR");
39 if (!ptr)
Denis Vlasenkob44c7902008-03-17 09:29:43 +000040 ptr = "vi";
Denis Vlasenko069e3472008-02-16 13:17:13 +000041 }
42
Denis Vlasenko7fc294c2008-02-16 13:47:57 +000043 BB_EXECLP(ptr, ptr, file, NULL);
Denis Vlasenko069e3472008-02-16 13:17:13 +000044 bb_perror_msg_and_die("exec %s", ptr);
45}
46
47static int open_as_user(const struct passwd *pas, const char *file)
48{
Denis Vlasenko069e3472008-02-16 13:17:13 +000049 pid_t pid;
50 char c;
51
Pascal Bellard926031b2010-07-04 15:32:38 +020052 pid = xvfork();
Denis Vlasenko069e3472008-02-16 13:17:13 +000053 if (pid) { /* PARENT */
Denis Vlasenko03b4c142008-02-17 14:30:03 +000054 if (wait4pid(pid) == 0) {
55 /* exitcode 0: child says it can read */
Denis Vlasenko069e3472008-02-16 13:17:13 +000056 return open(file, O_RDONLY);
Denis Vlasenko03b4c142008-02-17 14:30:03 +000057 }
Denis Vlasenko069e3472008-02-16 13:17:13 +000058 return -1;
59 }
60
61 /* CHILD */
Denis Vlasenko069e3472008-02-16 13:17:13 +000062 /* initgroups, setgid, setuid */
63 change_identity(pas);
Denis Vlasenko03b4c142008-02-17 14:30:03 +000064 /* We just try to read one byte. If it works, file is readable
65 * under this user. We signal that by exiting with 0. */
66 _exit(safe_read(xopen(file, O_RDONLY), &c, 1) < 0);
Denis Vlasenko069e3472008-02-16 13:17:13 +000067}
68
69int crontab_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000070int crontab_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenko069e3472008-02-16 13:17:13 +000071{
72 const struct passwd *pas;
73 const char *crontab_dir = CRONTABS;
74 char *tmp_fname;
75 char *new_fname;
76 char *user_name; /* -u USER */
77 int fd;
Denis Vlasenko30cfdf92008-09-21 15:29:29 +000078 int src_fd;
Denis Vlasenko069e3472008-02-16 13:17:13 +000079 int opt_ler;
Denis Vlasenko069e3472008-02-16 13:17:13 +000080
81 /* file [opts] Replace crontab from file
82 * - [opts] Replace crontab from stdin
83 * -u user User
84 * -c dir Crontab directory
85 * -l List crontab for user
86 * -e Edit crontab for user
87 * -r Delete crontab for user
88 * bbox also supports -d == -r, but most other crontab
89 * implementations do not. Deprecated.
90 */
91 enum {
92 OPT_u = (1 << 0),
93 OPT_c = (1 << 1),
94 OPT_l = (1 << 2),
95 OPT_e = (1 << 3),
96 OPT_r = (1 << 4),
97 OPT_ler = OPT_l + OPT_e + OPT_r,
98 };
99
Denis Vlasenko069e3472008-02-16 13:17:13 +0000100 opt_complementary = "?1:dr"; /* max one argument; -d implies -r */
101 opt_ler = getopt32(argv, "u:c:lerd", &user_name, &crontab_dir);
102 argv += optind;
103
Denis Vlasenkoc9ca0a32008-02-18 11:08:33 +0000104 if (sanitize_env_if_suid()) { /* Clears dangerous stuff, sets PATH */
Denys Vlasenkob2e5fc32009-11-25 14:52:47 +0100105 /* Run by non-root */
Denis Vlasenko7fc294c2008-02-16 13:47:57 +0000106 if (opt_ler & (OPT_u|OPT_c))
Denys Vlasenkob2e5fc32009-11-25 14:52:47 +0100107 bb_error_msg_and_die(bb_msg_you_must_be_root);
Denis Vlasenko7fc294c2008-02-16 13:47:57 +0000108 }
Denis Vlasenko069e3472008-02-16 13:17:13 +0000109
110 if (opt_ler & OPT_u) {
Denis Vlasenkod7a805e2008-12-03 19:05:55 +0000111 pas = xgetpwnam(user_name);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000112 } else {
Denis Vlasenko0c68a872008-12-02 22:56:59 +0000113 pas = xgetpwuid(getuid());
Denis Vlasenko069e3472008-02-16 13:17:13 +0000114 }
115
116#define user_name DONT_USE_ME_BEYOND_THIS_POINT
Denis Vlasenko069e3472008-02-16 13:17:13 +0000117
118 /* From now on, keep only -l, -e, -r bits */
119 opt_ler &= OPT_ler;
120 if ((opt_ler - 1) & opt_ler) /* more than one bit set? */
121 bb_show_usage();
122
123 /* Read replacement file under user's UID/GID/group vector */
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000124 src_fd = STDIN_FILENO;
Denis Vlasenko069e3472008-02-16 13:17:13 +0000125 if (!opt_ler) { /* Replace? */
126 if (!argv[0])
127 bb_show_usage();
128 if (NOT_LONE_DASH(argv[0])) {
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000129 src_fd = open_as_user(pas, argv[0]);
130 if (src_fd < 0)
Denis Vlasenko069e3472008-02-16 13:17:13 +0000131 bb_error_msg_and_die("user %s cannot read %s",
132 pas->pw_name, argv[0]);
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000133 }
134 }
Denis Vlasenko069e3472008-02-16 13:17:13 +0000135
136 /* cd to our crontab directory */
137 xchdir(crontab_dir);
138
139 tmp_fname = NULL;
140
141 /* Handle requested operation */
142 switch (opt_ler) {
143
144 default: /* case OPT_r: Delete */
Denis Vlasenko03b4c142008-02-17 14:30:03 +0000145 unlink(pas->pw_name);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000146 break;
147
148 case OPT_l: /* List */
149 {
150 char *args[2] = { pas->pw_name, NULL };
151 return bb_cat(args);
152 /* list exits,
153 * the rest go play with cron update file */
154 }
155
156 case OPT_e: /* Edit */
Denis Vlasenko7fc294c2008-02-16 13:47:57 +0000157 tmp_fname = xasprintf("%s.%u", crontab_dir, (unsigned)getpid());
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000158 /* No O_EXCL: we don't want to be stuck if earlier crontabs
159 * were killed, leaving stale temp file behind */
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000160 src_fd = xopen3(tmp_fname, O_RDWR|O_CREAT|O_TRUNC, 0600);
161 fchown(src_fd, pas->pw_uid, pas->pw_gid);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000162 fd = open(pas->pw_name, O_RDONLY);
163 if (fd >= 0) {
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000164 bb_copyfd_eof(fd, src_fd);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000165 close(fd);
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000166 xlseek(src_fd, 0, SEEK_SET);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000167 }
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000168 close_on_exec_on(src_fd); /* don't want editor to see this fd */
Denis Vlasenko069e3472008-02-16 13:17:13 +0000169 edit_file(pas, tmp_fname);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000170 /* fall through */
171
172 case 0: /* Replace (no -l, -e, or -r were given) */
173 new_fname = xasprintf("%s.new", pas->pw_name);
174 fd = open(new_fname, O_WRONLY|O_CREAT|O_TRUNC|O_APPEND, 0600);
175 if (fd >= 0) {
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000176 bb_copyfd_eof(src_fd, fd);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000177 close(fd);
Denis Vlasenko03b4c142008-02-17 14:30:03 +0000178 xrename(new_fname, pas->pw_name);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000179 } else {
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100180 bb_error_msg("can't create %s/%s",
Denis Vlasenko069e3472008-02-16 13:17:13 +0000181 crontab_dir, new_fname);
182 }
183 if (tmp_fname)
Denis Vlasenko03b4c142008-02-17 14:30:03 +0000184 unlink(tmp_fname);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000185 /*free(tmp_fname);*/
186 /*free(new_fname);*/
187
188 } /* switch */
189
190 /* Bump notification file. Handle window where crond picks file up
191 * before we can write our entry out.
192 */
Bernhard Reutner-Fischer27dd4952008-02-18 18:35:53 +0000193 while ((fd = open(CRONUPDATE, O_WRONLY|O_CREAT|O_APPEND, 0600)) >= 0) {
Denis Vlasenko069e3472008-02-16 13:17:13 +0000194 struct stat st;
195
196 fdprintf(fd, "%s\n", pas->pw_name);
197 if (fstat(fd, &st) != 0 || st.st_nlink != 0) {
198 /*close(fd);*/
199 break;
200 }
201 /* st.st_nlink == 0:
202 * file was deleted, maybe crond missed our notification */
203 close(fd);
204 /* loop */
205 }
206 if (fd < 0) {
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100207 bb_error_msg("can't append to %s/%s",
Denis Vlasenko069e3472008-02-16 13:17:13 +0000208 crontab_dir, CRONUPDATE);
209 }
210 return 0;
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000211}