blob: bc7f56a2268c425a50de4136ff56d862ad10cdf1 [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
15#ifndef CRONTABS
16#define CRONTABS "/var/spool/cron/crontabs"
17#endif
Eric Andersenf6f7bfb2002-10-22 12:24:59 +000018#ifndef CRONUPDATE
19#define CRONUPDATE "cron.update"
20#endif
21#ifndef PATH_VI
Denis Vlasenko94d5d822006-09-27 19:48:56 +000022#define PATH_VI "/bin/vi" /* location of vi */
Eric Andersenf6f7bfb2002-10-22 12:24:59 +000023#endif
24
Denis Vlasenko069e3472008-02-16 13:17:13 +000025static void change_user(const struct passwd *pas)
Eric Andersenf6f7bfb2002-10-22 12:24:59 +000026{
Denis Vlasenko94d5d822006-09-27 19:48:56 +000027 setenv("USER", pas->pw_name, 1);
28 setenv("HOME", pas->pw_dir, 1);
29 setenv("SHELL", DEFAULT_SHELL, 1);
30
Denis Vlasenko069e3472008-02-16 13:17:13 +000031 /* initgroups, setgid, setuid */
Denis Vlasenko94d5d822006-09-27 19:48:56 +000032 change_identity(pas);
33
Denis Vlasenko069e3472008-02-16 13:17:13 +000034 if (chdir(pas->pw_dir) < 0) {
35 bb_perror_msg("chdir(%s) by %s failed",
36 pas->pw_dir, pas->pw_name);
Denis Vlasenko7fc294c2008-02-16 13:47:57 +000037 xchdir("/tmp");
Denis Vlasenko069e3472008-02-16 13:17:13 +000038 }
39}
40
41static void edit_file(const struct passwd *pas, const char *file)
42{
43 const char *ptr;
44 int pid = vfork();
45
46 if (pid < 0) /* failure */
47 bb_perror_msg_and_die("vfork");
48 if (pid) { /* parent */
49 wait4pid(pid);
50 return;
51 }
52
53 /* CHILD - change user and run editor */
54 change_user(pas);
55 ptr = getenv("VISUAL");
56 if (!ptr) {
57 ptr = getenv("EDITOR");
58 if (!ptr)
59 ptr = PATH_VI;
60 }
61
Denis Vlasenko7fc294c2008-02-16 13:47:57 +000062 BB_EXECLP(ptr, ptr, file, NULL);
Denis Vlasenko069e3472008-02-16 13:17:13 +000063 bb_perror_msg_and_die("exec %s", ptr);
64}
65
66static int open_as_user(const struct passwd *pas, const char *file)
67{
Denis Vlasenko069e3472008-02-16 13:17:13 +000068 pid_t pid;
69 char c;
70
Denis Vlasenko069e3472008-02-16 13:17:13 +000071 pid = vfork();
72 if (pid < 0) /* ERROR */
73 bb_perror_msg_and_die("vfork");
74 if (pid) { /* PARENT */
Denis Vlasenko03b4c142008-02-17 14:30:03 +000075 if (wait4pid(pid) == 0) {
76 /* exitcode 0: child says it can read */
Denis Vlasenko069e3472008-02-16 13:17:13 +000077 return open(file, O_RDONLY);
Denis Vlasenko03b4c142008-02-17 14:30:03 +000078 }
Denis Vlasenko069e3472008-02-16 13:17:13 +000079 return -1;
80 }
81
82 /* CHILD */
Denis Vlasenko069e3472008-02-16 13:17:13 +000083 /* initgroups, setgid, setuid */
84 change_identity(pas);
Denis Vlasenko03b4c142008-02-17 14:30:03 +000085 /* We just try to read one byte. If it works, file is readable
86 * under this user. We signal that by exiting with 0. */
87 _exit(safe_read(xopen(file, O_RDONLY), &c, 1) < 0);
Denis Vlasenko069e3472008-02-16 13:17:13 +000088}
89
90int crontab_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
91int crontab_main(int argc, char **argv)
92{
93 const struct passwd *pas;
94 const char *crontab_dir = CRONTABS;
95 char *tmp_fname;
96 char *new_fname;
97 char *user_name; /* -u USER */
98 int fd;
99 int opt_ler;
100 uid_t my_uid;
101
102 /* file [opts] Replace crontab from file
103 * - [opts] Replace crontab from stdin
104 * -u user User
105 * -c dir Crontab directory
106 * -l List crontab for user
107 * -e Edit crontab for user
108 * -r Delete crontab for user
109 * bbox also supports -d == -r, but most other crontab
110 * implementations do not. Deprecated.
111 */
112 enum {
113 OPT_u = (1 << 0),
114 OPT_c = (1 << 1),
115 OPT_l = (1 << 2),
116 OPT_e = (1 << 3),
117 OPT_r = (1 << 4),
118 OPT_ler = OPT_l + OPT_e + OPT_r,
119 };
120
121 my_uid = getuid();
122
123 opt_complementary = "?1:dr"; /* max one argument; -d implies -r */
124 opt_ler = getopt32(argv, "u:c:lerd", &user_name, &crontab_dir);
125 argv += optind;
126
Denis Vlasenko7fc294c2008-02-16 13:47:57 +0000127 if (my_uid != geteuid()) { /* run by non-root? */
128 if (opt_ler & (OPT_u|OPT_c))
Denis Vlasenko069e3472008-02-16 13:17:13 +0000129 bb_error_msg_and_die("only root can use -c or -u");
Denis Vlasenko7fc294c2008-02-16 13:47:57 +0000130 /* Clear dangerous stuff, set PATH */
131 sanitize_env_for_suid();
132 }
Denis Vlasenko069e3472008-02-16 13:17:13 +0000133
134 if (opt_ler & OPT_u) {
135 pas = getpwnam(user_name);
136 if (!pas)
137 bb_error_msg_and_die("user %s is not known", user_name);
138 my_uid = pas->pw_uid;
139 } else {
140 pas = getpwuid(my_uid);
141 if (!pas)
142 bb_perror_msg_and_die("no user record for UID %u",
143 (unsigned)my_uid);
144 }
145
146#define user_name DONT_USE_ME_BEYOND_THIS_POINT
147#define my_uid DONT_USE_ME_BEYOND_THIS_POINT
148
149 /* From now on, keep only -l, -e, -r bits */
150 opt_ler &= OPT_ler;
151 if ((opt_ler - 1) & opt_ler) /* more than one bit set? */
152 bb_show_usage();
153
154 /* Read replacement file under user's UID/GID/group vector */
155 if (!opt_ler) { /* Replace? */
156 if (!argv[0])
157 bb_show_usage();
158 if (NOT_LONE_DASH(argv[0])) {
159 fd = open_as_user(pas, argv[0]);
160 if (fd < 0)
161 bb_error_msg_and_die("user %s cannot read %s",
162 pas->pw_name, argv[0]);
163 xmove_fd(fd, STDIN_FILENO);
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000164 }
165 }
Denis Vlasenko069e3472008-02-16 13:17:13 +0000166
167 /* cd to our crontab directory */
168 xchdir(crontab_dir);
169
170 tmp_fname = NULL;
171
172 /* Handle requested operation */
173 switch (opt_ler) {
174
175 default: /* case OPT_r: Delete */
Denis Vlasenko03b4c142008-02-17 14:30:03 +0000176 unlink(pas->pw_name);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000177 break;
178
179 case OPT_l: /* List */
180 {
181 char *args[2] = { pas->pw_name, NULL };
182 return bb_cat(args);
183 /* list exits,
184 * the rest go play with cron update file */
185 }
186
187 case OPT_e: /* Edit */
Denis Vlasenko7fc294c2008-02-16 13:47:57 +0000188 tmp_fname = xasprintf("%s.%u", crontab_dir, (unsigned)getpid());
Denis Vlasenko069e3472008-02-16 13:17:13 +0000189 fd = xopen3(tmp_fname, O_RDWR|O_CREAT|O_TRUNC|O_EXCL, 0600);
190 xmove_fd(fd, STDIN_FILENO);
191 fd = open(pas->pw_name, O_RDONLY);
192 if (fd >= 0) {
193 bb_copyfd_eof(fd, STDIN_FILENO);
194 close(fd);
195 }
196 fchown(STDIN_FILENO, pas->pw_uid, pas->pw_gid);
197 edit_file(pas, tmp_fname);
198 xlseek(STDIN_FILENO, 0, SEEK_SET);
199 /* fall through */
200
201 case 0: /* Replace (no -l, -e, or -r were given) */
202 new_fname = xasprintf("%s.new", pas->pw_name);
203 fd = open(new_fname, O_WRONLY|O_CREAT|O_TRUNC|O_APPEND, 0600);
204 if (fd >= 0) {
205 bb_copyfd_eof(STDIN_FILENO, fd);
206 close(fd);
Denis Vlasenko03b4c142008-02-17 14:30:03 +0000207 xrename(new_fname, pas->pw_name);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000208 } else {
209 bb_error_msg("cannot create %s/%s",
210 crontab_dir, new_fname);
211 }
212 if (tmp_fname)
Denis Vlasenko03b4c142008-02-17 14:30:03 +0000213 unlink(tmp_fname);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000214 /*free(tmp_fname);*/
215 /*free(new_fname);*/
216
217 } /* switch */
218
219 /* Bump notification file. Handle window where crond picks file up
220 * before we can write our entry out.
221 */
222 while ((fd = open(CRONUPDATE, O_WRONLY|O_CREAT|O_APPEND)) >= 0) {
223 struct stat st;
224
225 fdprintf(fd, "%s\n", pas->pw_name);
226 if (fstat(fd, &st) != 0 || st.st_nlink != 0) {
227 /*close(fd);*/
228 break;
229 }
230 /* st.st_nlink == 0:
231 * file was deleted, maybe crond missed our notification */
232 close(fd);
233 /* loop */
234 }
235 if (fd < 0) {
236 bb_error_msg("cannot append to %s/%s",
237 crontab_dir, CRONUPDATE);
238 }
239 return 0;
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000240}