blob: 85c6623b26698effdd204cb4c9176ea8bac081f4 [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
Pere Orga5bc8c002011-04-11 03:29:49 +020013//usage:#define crontab_trivial_usage
14//usage: "[-c DIR] [-u USER] [-ler]|[FILE]"
15//usage:#define crontab_full_usage "\n\n"
16//usage: " -c Crontab directory"
17//usage: "\n -u User"
18//usage: "\n -l List crontab"
19//usage: "\n -e Edit crontab"
20//usage: "\n -r Delete crontab"
21//usage: "\n FILE Replace crontab by FILE ('-': stdin)"
22
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000023#include "libbb.h"
Eric Andersenf6f7bfb2002-10-22 12:24:59 +000024
Denis Vlasenkoded5dfe2009-02-03 23:59:41 +000025#define CRONTABS CONFIG_FEATURE_CROND_DIR "/crontabs"
Eric Andersenf6f7bfb2002-10-22 12:24:59 +000026#ifndef CRONUPDATE
27#define CRONUPDATE "cron.update"
28#endif
Eric Andersenf6f7bfb2002-10-22 12:24:59 +000029
Denis Vlasenko069e3472008-02-16 13:17:13 +000030static void edit_file(const struct passwd *pas, const char *file)
31{
32 const char *ptr;
Denys Vlasenko681efe22011-03-08 21:00:36 +010033 pid_t pid;
Denis Vlasenko069e3472008-02-16 13:17:13 +000034
Denys Vlasenko681efe22011-03-08 21:00:36 +010035 pid = xvfork();
Denis Vlasenko069e3472008-02-16 13:17:13 +000036 if (pid) { /* parent */
37 wait4pid(pid);
38 return;
39 }
40
41 /* CHILD - change user and run editor */
Bernhard Reutner-Fischer99709ab2010-02-24 16:10:09 +010042 /* initgroups, setgid, setuid */
43 change_identity(pas);
Denys Vlasenko681efe22011-03-08 21:00:36 +010044 setup_environment(pas->pw_shell,
Denys Vlasenkofd686a22010-02-26 09:52:45 +010045 SETUP_ENV_CHANGEENV | SETUP_ENV_TO_TMP,
46 pas);
Denis Vlasenko069e3472008-02-16 13:17:13 +000047 ptr = getenv("VISUAL");
48 if (!ptr) {
49 ptr = getenv("EDITOR");
50 if (!ptr)
Denis Vlasenkob44c7902008-03-17 09:29:43 +000051 ptr = "vi";
Denis Vlasenko069e3472008-02-16 13:17:13 +000052 }
53
Denis Vlasenko7fc294c2008-02-16 13:47:57 +000054 BB_EXECLP(ptr, ptr, file, NULL);
Denys Vlasenko681efe22011-03-08 21:00:36 +010055 bb_perror_msg_and_die("can't execute '%s'", ptr);
Denis Vlasenko069e3472008-02-16 13:17:13 +000056}
57
Denis Vlasenko069e3472008-02-16 13:17:13 +000058int crontab_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000059int crontab_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenko069e3472008-02-16 13:17:13 +000060{
61 const struct passwd *pas;
62 const char *crontab_dir = CRONTABS;
63 char *tmp_fname;
64 char *new_fname;
65 char *user_name; /* -u USER */
66 int fd;
Denis Vlasenko30cfdf92008-09-21 15:29:29 +000067 int src_fd;
Denis Vlasenko069e3472008-02-16 13:17:13 +000068 int opt_ler;
Denis Vlasenko069e3472008-02-16 13:17:13 +000069
70 /* file [opts] Replace crontab from file
71 * - [opts] Replace crontab from stdin
72 * -u user User
73 * -c dir Crontab directory
74 * -l List crontab for user
75 * -e Edit crontab for user
76 * -r Delete crontab for user
77 * bbox also supports -d == -r, but most other crontab
78 * implementations do not. Deprecated.
79 */
80 enum {
81 OPT_u = (1 << 0),
82 OPT_c = (1 << 1),
83 OPT_l = (1 << 2),
84 OPT_e = (1 << 3),
85 OPT_r = (1 << 4),
86 OPT_ler = OPT_l + OPT_e + OPT_r,
87 };
88
Denis Vlasenko069e3472008-02-16 13:17:13 +000089 opt_complementary = "?1:dr"; /* max one argument; -d implies -r */
90 opt_ler = getopt32(argv, "u:c:lerd", &user_name, &crontab_dir);
91 argv += optind;
92
Denis Vlasenkoc9ca0a32008-02-18 11:08:33 +000093 if (sanitize_env_if_suid()) { /* Clears dangerous stuff, sets PATH */
Denys Vlasenkob2e5fc32009-11-25 14:52:47 +010094 /* Run by non-root */
Denis Vlasenko7fc294c2008-02-16 13:47:57 +000095 if (opt_ler & (OPT_u|OPT_c))
Denys Vlasenkob2e5fc32009-11-25 14:52:47 +010096 bb_error_msg_and_die(bb_msg_you_must_be_root);
Denis Vlasenko7fc294c2008-02-16 13:47:57 +000097 }
Denis Vlasenko069e3472008-02-16 13:17:13 +000098
99 if (opt_ler & OPT_u) {
Denis Vlasenkod7a805e2008-12-03 19:05:55 +0000100 pas = xgetpwnam(user_name);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000101 } else {
Denis Vlasenko0c68a872008-12-02 22:56:59 +0000102 pas = xgetpwuid(getuid());
Denis Vlasenko069e3472008-02-16 13:17:13 +0000103 }
104
105#define user_name DONT_USE_ME_BEYOND_THIS_POINT
Denis Vlasenko069e3472008-02-16 13:17:13 +0000106
107 /* From now on, keep only -l, -e, -r bits */
108 opt_ler &= OPT_ler;
109 if ((opt_ler - 1) & opt_ler) /* more than one bit set? */
110 bb_show_usage();
111
112 /* Read replacement file under user's UID/GID/group vector */
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000113 src_fd = STDIN_FILENO;
Denis Vlasenko069e3472008-02-16 13:17:13 +0000114 if (!opt_ler) { /* Replace? */
115 if (!argv[0])
116 bb_show_usage();
117 if (NOT_LONE_DASH(argv[0])) {
Ryan Mallon1d30b3f2013-10-08 14:53:29 +0200118 src_fd = xopen_as_uid_gid(argv[0], O_RDONLY, pas->pw_uid, pas->pw_gid);
Denis Vlasenko94d5d822006-09-27 19:48:56 +0000119 }
120 }
Denis Vlasenko069e3472008-02-16 13:17:13 +0000121
122 /* cd to our crontab directory */
123 xchdir(crontab_dir);
124
125 tmp_fname = NULL;
126
127 /* Handle requested operation */
128 switch (opt_ler) {
129
130 default: /* case OPT_r: Delete */
Denis Vlasenko03b4c142008-02-17 14:30:03 +0000131 unlink(pas->pw_name);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000132 break;
133
134 case OPT_l: /* List */
135 {
136 char *args[2] = { pas->pw_name, NULL };
137 return bb_cat(args);
138 /* list exits,
139 * the rest go play with cron update file */
140 }
141
142 case OPT_e: /* Edit */
Denis Vlasenko7fc294c2008-02-16 13:47:57 +0000143 tmp_fname = xasprintf("%s.%u", crontab_dir, (unsigned)getpid());
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000144 /* No O_EXCL: we don't want to be stuck if earlier crontabs
145 * were killed, leaving stale temp file behind */
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000146 src_fd = xopen3(tmp_fname, O_RDWR|O_CREAT|O_TRUNC, 0600);
147 fchown(src_fd, pas->pw_uid, pas->pw_gid);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000148 fd = open(pas->pw_name, O_RDONLY);
149 if (fd >= 0) {
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000150 bb_copyfd_eof(fd, src_fd);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000151 close(fd);
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000152 xlseek(src_fd, 0, SEEK_SET);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000153 }
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000154 close_on_exec_on(src_fd); /* don't want editor to see this fd */
Denis Vlasenko069e3472008-02-16 13:17:13 +0000155 edit_file(pas, tmp_fname);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000156 /* fall through */
157
158 case 0: /* Replace (no -l, -e, or -r were given) */
159 new_fname = xasprintf("%s.new", pas->pw_name);
160 fd = open(new_fname, O_WRONLY|O_CREAT|O_TRUNC|O_APPEND, 0600);
161 if (fd >= 0) {
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000162 bb_copyfd_eof(src_fd, fd);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000163 close(fd);
Denis Vlasenko03b4c142008-02-17 14:30:03 +0000164 xrename(new_fname, pas->pw_name);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000165 } else {
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100166 bb_error_msg("can't create %s/%s",
Denis Vlasenko069e3472008-02-16 13:17:13 +0000167 crontab_dir, new_fname);
168 }
169 if (tmp_fname)
Denis Vlasenko03b4c142008-02-17 14:30:03 +0000170 unlink(tmp_fname);
Denis Vlasenko069e3472008-02-16 13:17:13 +0000171 /*free(tmp_fname);*/
172 /*free(new_fname);*/
Denis Vlasenko069e3472008-02-16 13:17:13 +0000173 } /* switch */
174
175 /* Bump notification file. Handle window where crond picks file up
176 * before we can write our entry out.
177 */
Bernhard Reutner-Fischer27dd4952008-02-18 18:35:53 +0000178 while ((fd = open(CRONUPDATE, O_WRONLY|O_CREAT|O_APPEND, 0600)) >= 0) {
Denis Vlasenko069e3472008-02-16 13:17:13 +0000179 struct stat st;
180
181 fdprintf(fd, "%s\n", pas->pw_name);
182 if (fstat(fd, &st) != 0 || st.st_nlink != 0) {
183 /*close(fd);*/
184 break;
185 }
186 /* st.st_nlink == 0:
187 * file was deleted, maybe crond missed our notification */
188 close(fd);
189 /* loop */
190 }
191 if (fd < 0) {
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100192 bb_error_msg("can't append to %s/%s",
Denis Vlasenko069e3472008-02-16 13:17:13 +0000193 crontab_dir, CRONUPDATE);
194 }
195 return 0;
Eric Andersenf6f7bfb2002-10-22 12:24:59 +0000196}