mount: recognize "dirsync" (closes bug 835)
[platform/upstream/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 the GPL v2 or later, see the file LICENSE in this tarball.
11  */
12
13 #include "libbb.h"
14
15 #ifndef CRONTABS
16 #define CRONTABS        "/var/spool/cron/crontabs"
17 #endif
18 #ifndef CRONUPDATE
19 #define CRONUPDATE      "cron.update"
20 #endif
21 #ifndef PATH_VI
22 #define PATH_VI         "/bin/vi"   /* location of vi */
23 #endif
24
25 static void change_user(const struct passwd *pas)
26 {
27         setenv("USER", pas->pw_name, 1);
28         setenv("HOME", pas->pw_dir, 1);
29         setenv("SHELL", DEFAULT_SHELL, 1);
30
31         /* initgroups, setgid, setuid */
32         change_identity(pas);
33
34         if (chdir(pas->pw_dir) < 0) {
35                 bb_perror_msg("chdir(%s) by %s failed",
36                                 pas->pw_dir, pas->pw_name);
37                 xchdir("/tmp");
38         }
39 }
40
41 static 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
62         BB_EXECLP(ptr, ptr, file, NULL);
63         bb_perror_msg_and_die("exec %s", ptr);
64 }
65
66 static int open_as_user(const struct passwd *pas, const char *file)
67 {
68         pid_t pid;
69         char c;
70
71         pid = vfork();
72         if (pid < 0) /* ERROR */
73                 bb_perror_msg_and_die("vfork");
74         if (pid) { /* PARENT */
75                 if (wait4pid(pid) == 0) {
76                         /* exitcode 0: child says it can read */
77                         return open(file, O_RDONLY);
78                 }
79                 return -1;
80         }
81
82         /* CHILD */
83         /* initgroups, setgid, setuid */
84         change_identity(pas);
85         /* 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);
88 }
89
90 int crontab_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
91 int 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
101         /* file [opts]     Replace crontab from file
102          * - [opts]        Replace crontab from stdin
103          * -u user         User
104          * -c dir          Crontab directory
105          * -l              List crontab for user
106          * -e              Edit crontab for user
107          * -r              Delete crontab for user
108          * bbox also supports -d == -r, but most other crontab
109          * implementations do not. Deprecated.
110          */
111         enum {
112                 OPT_u = (1 << 0),
113                 OPT_c = (1 << 1),
114                 OPT_l = (1 << 2),
115                 OPT_e = (1 << 3),
116                 OPT_r = (1 << 4),
117                 OPT_ler = OPT_l + OPT_e + OPT_r,
118         };
119
120         opt_complementary = "?1:dr"; /* max one argument; -d implies -r */
121         opt_ler = getopt32(argv, "u:c:lerd", &user_name, &crontab_dir);
122         argv += optind;
123
124         if (sanitize_env_if_suid()) { /* Clears dangerous stuff, sets PATH */
125                 /* run by non-root? */
126                 if (opt_ler & (OPT_u|OPT_c))
127                         bb_error_msg_and_die("only root can use -c or -u");
128         }
129
130         if (opt_ler & OPT_u) {
131                 pas = getpwnam(user_name);
132                 if (!pas)
133                         bb_error_msg_and_die("user %s is not known", user_name);
134         } else {
135                 uid_t my_uid = getuid();
136                 pas = getpwuid(my_uid);
137                 if (!pas)
138                         bb_perror_msg_and_die("no user record for UID %u",
139                                         (unsigned)my_uid);
140         }
141
142 #define user_name DONT_USE_ME_BEYOND_THIS_POINT
143
144         /* From now on, keep only -l, -e, -r bits */
145         opt_ler &= OPT_ler;
146         if ((opt_ler - 1) & opt_ler) /* more than one bit set? */
147                 bb_show_usage();
148
149         /* Read replacement file under user's UID/GID/group vector */
150         if (!opt_ler) { /* Replace? */
151                 if (!argv[0])
152                         bb_show_usage();
153                 if (NOT_LONE_DASH(argv[0])) {
154                         fd = open_as_user(pas, argv[0]);
155                         if (fd < 0)
156                                 bb_error_msg_and_die("user %s cannot read %s",
157                                                 pas->pw_name, argv[0]);
158                         xmove_fd(fd, STDIN_FILENO);
159                 }
160         }
161
162         /* cd to our crontab directory */
163         xchdir(crontab_dir);
164
165         tmp_fname = NULL;
166
167         /* Handle requested operation */
168         switch (opt_ler) {
169
170         default: /* case OPT_r: Delete */
171                 unlink(pas->pw_name);
172                 break;
173
174         case OPT_l: /* List */
175                 {
176                         char *args[2] = { pas->pw_name, NULL };
177                         return bb_cat(args);
178                         /* list exits,
179                          * the rest go play with cron update file */
180                 }
181
182         case OPT_e: /* Edit */
183                 tmp_fname = xasprintf("%s.%u", crontab_dir, (unsigned)getpid());
184                 fd = xopen3(tmp_fname, O_RDWR|O_CREAT|O_TRUNC|O_EXCL, 0600);
185                 xmove_fd(fd, STDIN_FILENO);
186                 fd = open(pas->pw_name, O_RDONLY);
187                 if (fd >= 0) {
188                         bb_copyfd_eof(fd, STDIN_FILENO);
189                         close(fd);
190                 }
191                 fchown(STDIN_FILENO, pas->pw_uid, pas->pw_gid);
192                 edit_file(pas, tmp_fname);
193                 xlseek(STDIN_FILENO, 0, SEEK_SET);
194                 /* fall through */
195
196         case 0: /* Replace (no -l, -e, or -r were given) */
197                 new_fname = xasprintf("%s.new", pas->pw_name);
198                 fd = open(new_fname, O_WRONLY|O_CREAT|O_TRUNC|O_APPEND, 0600);
199                 if (fd >= 0) {
200                         bb_copyfd_eof(STDIN_FILENO, fd);
201                         close(fd);
202                         xrename(new_fname, pas->pw_name);
203                 } else {
204                         bb_error_msg("cannot create %s/%s",
205                                         crontab_dir, new_fname);
206                 }
207                 if (tmp_fname)
208                         unlink(tmp_fname);
209                 /*free(tmp_fname);*/
210                 /*free(new_fname);*/
211
212         } /* switch */
213
214         /* Bump notification file.  Handle window where crond picks file up
215          * before we can write our entry out.
216          */
217         while ((fd = open(CRONUPDATE, O_WRONLY|O_CREAT|O_APPEND)) >= 0) {
218                 struct stat st;
219
220                 fdprintf(fd, "%s\n", pas->pw_name);
221                 if (fstat(fd, &st) != 0 || st.st_nlink != 0) {
222                         /*close(fd);*/
223                         break;
224                 }
225                 /* st.st_nlink == 0:
226                  * file was deleted, maybe crond missed our notification */
227                 close(fd);
228                 /* loop */
229         }
230         if (fd < 0) {
231                 bb_error_msg("cannot append to %s/%s",
232                                 crontab_dir, CRONUPDATE);
233         }
234         return 0;
235 }