blob: 5557bc491e0f000013207253d093f73b1d95fd0c [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);
Denys Vlasenkofd686a22010-02-26 09:52:45 +010035 setup_environment(DEFAULT_SHELL,
36 SETUP_ENV_CHANGEENV | SETUP_ENV_TO_TMP,
37 pas);
Denis Vlasenko069e3472008-02-16 13:17:13 +000038 ptr = getenv("VISUAL");
39 if (!ptr) {
40 ptr = getenv("EDITOR");
41 if (!ptr)
Denis Vlasenkob44c7902008-03-17 09:29:43 +000042 ptr = "vi";
Denis Vlasenko069e3472008-02-16 13:17:13 +000043 }
44
Denis Vlasenko7fc294c2008-02-16 13:47:57 +000045 BB_EXECLP(ptr, ptr, file, NULL);
Denis Vlasenko069e3472008-02-16 13:17:13 +000046 bb_perror_msg_and_die("exec %s", ptr);
47}
48
49static int open_as_user(const struct passwd *pas, const char *file)
50{
Denis Vlasenko069e3472008-02-16 13:17:13 +000051 pid_t pid;
52 char c;
53
Denis Vlasenko82604e92008-07-01 15:59:42 +000054 pid = vfork();
55 if (pid < 0) /* ERROR */
56 bb_perror_msg_and_die("vfork");
Denis Vlasenko069e3472008-02-16 13:17:13 +000057 if (pid) { /* PARENT */
Denis Vlasenko03b4c142008-02-17 14:30:03 +000058 if (wait4pid(pid) == 0) {
59 /* exitcode 0: child says it can read */
Denis Vlasenko069e3472008-02-16 13:17:13 +000060 return open(file, O_RDONLY);
Denis Vlasenko03b4c142008-02-17 14:30:03 +000061 }
Denis Vlasenko069e3472008-02-16 13:17:13 +000062 return -1;
63 }
64
65 /* CHILD */
Denis Vlasenko069e3472008-02-16 13:17:13 +000066 /* initgroups, setgid, setuid */
67 change_identity(pas);
Denis Vlasenko03b4c142008-02-17 14:30:03 +000068 /* We just try to read one byte. If it works, file is readable
69 * under this user. We signal that by exiting with 0. */
70 _exit(safe_read(xopen(file, O_RDONLY), &c, 1) < 0);
Denis Vlasenko069e3472008-02-16 13:17:13 +000071}
72
73int crontab_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000074int crontab_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenko069e3472008-02-16 13:17:13 +000075{
76 const struct passwd *pas;
77 const char *crontab_dir = CRONTABS;
78 char *tmp_fname;
79 char *new_fname;
80 char *user_name; /* -u USER */
81 int fd;
Denis Vlasenko30cfdf92008-09-21 15:29:29 +000082 int src_fd;
Denis Vlasenko069e3472008-02-16 13:17:13 +000083 int opt_ler;
Denis Vlasenko069e3472008-02-16 13:17:13 +000084
85 /* file [opts] Replace crontab from file
86 * - [opts] Replace crontab from stdin
87 * -u user User
88 * -c dir Crontab directory
89 * -l List crontab for user
90 * -e Edit crontab for user
91 * -r Delete crontab for user
92 * bbox also supports -d == -r, but most other crontab
93 * implementations do not. Deprecated.
94 */
95 enum {
96 OPT_u = (1 << 0),
97 OPT_c = (1 << 1),
98 OPT_l = (1 << 2),
99 OPT_e = (1 << 3),
100 OPT_r = (1 << 4),
101 OPT_ler = OPT_l + OPT_e + OPT_r,
102 };
103
Denis Vlasenko069e3472008-02-16 13:17:13 +0000104 opt_complementary = "?1:dr"; /* max one argument; -d implies -r */
105 opt_ler = getopt32(argv, "u:c:lerd", &user_name, &crontab_dir);
106 argv += optind;
107
Denis Vlasenkoc9ca0a32008-02-18 11:08:33 +0000108 if (sanitize_env_if_suid()) { /* Clears dangerous stuff, sets PATH */
Denys Vlasenkob2e5fc32009-11-25 14:52:47 +0100109 /* Run by non-root */
Denis Vlasenko7fc294c2008-02-16 13:47:57 +0000110 if (opt_ler & (OPT_u|OPT_c))
Denys Vlasenkob2e5fc32009-11-25 14:52:47 +0100111 bb_error_msg_and_die(bb_msg_you_must_be_root);
Denis Vlasenko7fc294c2008-02-16 13:47:57 +0000112 }
Denis Vlasenko069e3472008-02-16 13:17:13 +0000113
114 if (opt_ler & OPT_u) {
Denis Vlasenkod7a805e2008-12-03 19:05:55 +0000115 pas = xgetpwnam(user_name);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000116 } else {
Denis Vlasenko0c68a872008-12-02 22:56:59 +0000117 pas = xgetpwuid(getuid());
Denis Vlasenko069e3472008-02-16 13:17:13 +0000118 }
119
120#define user_name DONT_USE_ME_BEYOND_THIS_POINT
Denis Vlasenko069e3472008-02-16 13:17:13 +0000121
122 /* From now on, keep only -l, -e, -r bits */
123 opt_ler &= OPT_ler;
124 if ((opt_ler - 1) & opt_ler) /* more than one bit set? */
125 bb_show_usage();
126
127 /* Read replacement file under user's UID/GID/group vector */
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000128 src_fd = STDIN_FILENO;
Denis Vlasenko069e3472008-02-16 13:17:13 +0000129 if (!opt_ler) { /* Replace? */
130 if (!argv[0])
131 bb_show_usage();
132 if (NOT_LONE_DASH(argv[0])) {
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000133 src_fd = open_as_user(pas, argv[0]);
134 if (src_fd < 0)
Denis Vlasenko069e3472008-02-16 13:17:13 +0000135 bb_error_msg_and_die("user %s cannot read %s",
136 pas->pw_name, argv[0]);
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000137 }
138 }
Denis Vlasenko069e3472008-02-16 13:17:13 +0000139
140 /* cd to our crontab directory */
141 xchdir(crontab_dir);
142
143 tmp_fname = NULL;
144
145 /* Handle requested operation */
146 switch (opt_ler) {
147
148 default: /* case OPT_r: Delete */
Denis Vlasenko03b4c142008-02-17 14:30:03 +0000149 unlink(pas->pw_name);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000150 break;
151
152 case OPT_l: /* List */
153 {
154 char *args[2] = { pas->pw_name, NULL };
155 return bb_cat(args);
156 /* list exits,
157 * the rest go play with cron update file */
158 }
159
160 case OPT_e: /* Edit */
Denis Vlasenko7fc294c2008-02-16 13:47:57 +0000161 tmp_fname = xasprintf("%s.%u", crontab_dir, (unsigned)getpid());
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000162 /* No O_EXCL: we don't want to be stuck if earlier crontabs
163 * were killed, leaving stale temp file behind */
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000164 src_fd = xopen3(tmp_fname, O_RDWR|O_CREAT|O_TRUNC, 0600);
165 fchown(src_fd, pas->pw_uid, pas->pw_gid);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000166 fd = open(pas->pw_name, O_RDONLY);
167 if (fd >= 0) {
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000168 bb_copyfd_eof(fd, src_fd);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000169 close(fd);
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000170 xlseek(src_fd, 0, SEEK_SET);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000171 }
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000172 close_on_exec_on(src_fd); /* don't want editor to see this fd */
Denis Vlasenko069e3472008-02-16 13:17:13 +0000173 edit_file(pas, tmp_fname);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000174 /* fall through */
175
176 case 0: /* Replace (no -l, -e, or -r were given) */
177 new_fname = xasprintf("%s.new", pas->pw_name);
178 fd = open(new_fname, O_WRONLY|O_CREAT|O_TRUNC|O_APPEND, 0600);
179 if (fd >= 0) {
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000180 bb_copyfd_eof(src_fd, fd);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000181 close(fd);
Denis Vlasenko03b4c142008-02-17 14:30:03 +0000182 xrename(new_fname, pas->pw_name);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000183 } else {
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100184 bb_error_msg("can't create %s/%s",
Denis Vlasenko069e3472008-02-16 13:17:13 +0000185 crontab_dir, new_fname);
186 }
187 if (tmp_fname)
Denis Vlasenko03b4c142008-02-17 14:30:03 +0000188 unlink(tmp_fname);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000189 /*free(tmp_fname);*/
190 /*free(new_fname);*/
191
192 } /* switch */
193
194 /* Bump notification file. Handle window where crond picks file up
195 * before we can write our entry out.
196 */
Bernhard Reutner-Fischer27dd4952008-02-18 18:35:53 +0000197 while ((fd = open(CRONUPDATE, O_WRONLY|O_CREAT|O_APPEND, 0600)) >= 0) {
Denis Vlasenko069e3472008-02-16 13:17:13 +0000198 struct stat st;
199
200 fdprintf(fd, "%s\n", pas->pw_name);
201 if (fstat(fd, &st) != 0 || st.st_nlink != 0) {
202 /*close(fd);*/
203 break;
204 }
205 /* st.st_nlink == 0:
206 * file was deleted, maybe crond missed our notification */
207 close(fd);
208 /* loop */
209 }
210 if (fd < 0) {
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100211 bb_error_msg("can't append to %s/%s",
Denis Vlasenko069e3472008-02-16 13:17:13 +0000212 crontab_dir, CRONUPDATE);
213 }
214 return 0;
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000215}