bcd2eab33b76ae81f1d76634ea4213946cf38587
[oweals/busybox.git] / miscutils / crontab.c
1 /* vi: set sw=4 ts=4: */
2 /*
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)
8  * Vladimir Oleynik <dzo@simtreas.ru> (C) 2002
9  *
10  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
11  */
12 //config:config CRONTAB
13 //config:       bool "crontab"
14 //config:       default y
15 //config:       help
16 //config:         Crontab manipulates the crontab for a particular user. Only
17 //config:         the superuser may specify a different user and/or crontab directory.
18 //config:         Note that Busybox binary must be setuid root for this applet to
19 //config:         work properly.
20
21 //usage:#define crontab_trivial_usage
22 //usage:       "[-c DIR] [-u USER] [-ler]|[FILE]"
23 //usage:#define crontab_full_usage "\n\n"
24 //usage:       "        -c      Crontab directory"
25 //usage:     "\n        -u      User"
26 //usage:     "\n        -l      List crontab"
27 //usage:     "\n        -e      Edit crontab"
28 //usage:     "\n        -r      Delete crontab"
29 //usage:     "\n        FILE    Replace crontab by FILE ('-': stdin)"
30
31 #include "libbb.h"
32
33 #define CRONTABS        CONFIG_FEATURE_CROND_DIR "/crontabs"
34 #ifndef CRONUPDATE
35 #define CRONUPDATE      "cron.update"
36 #endif
37
38 static void edit_file(const struct passwd *pas, const char *file)
39 {
40         const char *ptr;
41         pid_t pid;
42
43         pid = xvfork();
44         if (pid) { /* parent */
45                 wait4pid(pid);
46                 return;
47         }
48
49         /* CHILD - change user and run editor */
50         /* initgroups, setgid, setuid */
51         change_identity(pas);
52         setup_environment(pas->pw_shell,
53                         SETUP_ENV_CHANGEENV | SETUP_ENV_TO_TMP,
54                         pas);
55         ptr = getenv("VISUAL");
56         if (!ptr) {
57                 ptr = getenv("EDITOR");
58                 if (!ptr)
59                         ptr = "vi";
60         }
61
62         BB_EXECLP(ptr, ptr, file, NULL);
63         bb_perror_msg_and_die("can't execute '%s'", ptr);
64 }
65
66 int crontab_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
67 int crontab_main(int argc UNUSED_PARAM, char **argv)
68 {
69         const struct passwd *pas;
70         const char *crontab_dir = CRONTABS;
71         char *tmp_fname;
72         char *new_fname;
73         char *user_name;  /* -u USER */
74         int fd;
75         int src_fd;
76         int opt_ler;
77
78         /* file [opts]     Replace crontab from file
79          * - [opts]        Replace crontab from stdin
80          * -u user         User
81          * -c dir          Crontab directory
82          * -l              List crontab for user
83          * -e              Edit crontab for user
84          * -r              Delete crontab for user
85          * bbox also supports -d == -r, but most other crontab
86          * implementations do not. Deprecated.
87          */
88         enum {
89                 OPT_u = (1 << 0),
90                 OPT_c = (1 << 1),
91                 OPT_l = (1 << 2),
92                 OPT_e = (1 << 3),
93                 OPT_r = (1 << 4),
94                 OPT_ler = OPT_l + OPT_e + OPT_r,
95         };
96
97         opt_complementary = "?1:dr"; /* max one argument; -d implies -r */
98         opt_ler = getopt32(argv, "u:c:lerd", &user_name, &crontab_dir);
99         argv += optind;
100
101         if (sanitize_env_if_suid()) { /* Clears dangerous stuff, sets PATH */
102                 /* Run by non-root */
103                 if (opt_ler & (OPT_u|OPT_c))
104                         bb_error_msg_and_die(bb_msg_you_must_be_root);
105         }
106
107         if (opt_ler & OPT_u) {
108                 pas = xgetpwnam(user_name);
109         } else {
110                 pas = xgetpwuid(getuid());
111         }
112
113 #define user_name DONT_USE_ME_BEYOND_THIS_POINT
114
115         /* From now on, keep only -l, -e, -r bits */
116         opt_ler &= OPT_ler;
117         if ((opt_ler - 1) & opt_ler) /* more than one bit set? */
118                 bb_show_usage();
119
120         /* Read replacement file under user's UID/GID/group vector */
121         src_fd = STDIN_FILENO;
122         if (!opt_ler) { /* Replace? */
123                 if (!argv[0])
124                         bb_show_usage();
125                 if (NOT_LONE_DASH(argv[0])) {
126                         src_fd = xopen_as_uid_gid(argv[0], O_RDONLY, pas->pw_uid, pas->pw_gid);
127                 }
128         }
129
130         /* cd to our crontab directory */
131         xchdir(crontab_dir);
132
133         tmp_fname = NULL;
134
135         /* Handle requested operation */
136         switch (opt_ler) {
137
138         default: /* case OPT_r: Delete */
139                 unlink(pas->pw_name);
140                 break;
141
142         case OPT_l: /* List */
143                 {
144                         char *args[2] = { pas->pw_name, NULL };
145                         return bb_cat(args);
146                         /* list exits,
147                          * the rest go play with cron update file */
148                 }
149
150         case OPT_e: /* Edit */
151                 tmp_fname = xasprintf("%s.%u", crontab_dir, (unsigned)getpid());
152                 /* No O_EXCL: we don't want to be stuck if earlier crontabs
153                  * were killed, leaving stale temp file behind */
154                 src_fd = xopen3(tmp_fname, O_RDWR|O_CREAT|O_TRUNC, 0600);
155                 fchown(src_fd, pas->pw_uid, pas->pw_gid);
156                 fd = open(pas->pw_name, O_RDONLY);
157                 if (fd >= 0) {
158                         bb_copyfd_eof(fd, src_fd);
159                         close(fd);
160                         xlseek(src_fd, 0, SEEK_SET);
161                 }
162                 close_on_exec_on(src_fd); /* don't want editor to see this fd */
163                 edit_file(pas, tmp_fname);
164                 /* fall through */
165
166         case 0: /* Replace (no -l, -e, or -r were given) */
167                 new_fname = xasprintf("%s.new", pas->pw_name);
168                 fd = open(new_fname, O_WRONLY|O_CREAT|O_TRUNC|O_APPEND, 0600);
169                 if (fd >= 0) {
170                         bb_copyfd_eof(src_fd, fd);
171                         close(fd);
172                         xrename(new_fname, pas->pw_name);
173                 } else {
174                         bb_error_msg("can't create %s/%s",
175                                         crontab_dir, new_fname);
176                 }
177                 if (tmp_fname)
178                         unlink(tmp_fname);
179                 /*free(tmp_fname);*/
180                 /*free(new_fname);*/
181         } /* switch */
182
183         /* Bump notification file.  Handle window where crond picks file up
184          * before we can write our entry out.
185          */
186         while ((fd = open(CRONUPDATE, O_WRONLY|O_CREAT|O_APPEND, 0600)) >= 0) {
187                 struct stat st;
188
189                 fdprintf(fd, "%s\n", pas->pw_name);
190                 if (fstat(fd, &st) != 0 || st.st_nlink != 0) {
191                         /*close(fd);*/
192                         break;
193                 }
194                 /* st.st_nlink == 0:
195                  * file was deleted, maybe crond missed our notification */
196                 close(fd);
197                 /* loop */
198         }
199         if (fd < 0) {
200                 bb_error_msg("can't append to %s/%s",
201                                 crontab_dir, CRONUPDATE);
202         }
203         return 0;
204 }