Bernhard Reutner-Fischer | d9cf7ac | 2006-04-12 18:39:58 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 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) |
Mike Frysinger | f284c76 | 2006-04-16 20:38:26 +0000 | [diff] [blame] | 8 | * Vladimir Oleynik <dzo@simtreas.ru> (C) 2002 |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 9 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 10 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 11 | */ |
| 12 | |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 13 | //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 Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 23 | #include "libbb.h" |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 24 | |
Denis Vlasenko | ded5dfe | 2009-02-03 23:59:41 +0000 | [diff] [blame] | 25 | #define CRONTABS CONFIG_FEATURE_CROND_DIR "/crontabs" |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 26 | #ifndef CRONUPDATE |
| 27 | #define CRONUPDATE "cron.update" |
| 28 | #endif |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 29 | |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 30 | static void edit_file(const struct passwd *pas, const char *file) |
| 31 | { |
| 32 | const char *ptr; |
Denys Vlasenko | 681efe2 | 2011-03-08 21:00:36 +0100 | [diff] [blame] | 33 | pid_t pid; |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 34 | |
Denys Vlasenko | 681efe2 | 2011-03-08 21:00:36 +0100 | [diff] [blame] | 35 | pid = xvfork(); |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 36 | if (pid) { /* parent */ |
| 37 | wait4pid(pid); |
| 38 | return; |
| 39 | } |
| 40 | |
| 41 | /* CHILD - change user and run editor */ |
Bernhard Reutner-Fischer | 99709ab | 2010-02-24 16:10:09 +0100 | [diff] [blame] | 42 | /* initgroups, setgid, setuid */ |
| 43 | change_identity(pas); |
Denys Vlasenko | 681efe2 | 2011-03-08 21:00:36 +0100 | [diff] [blame] | 44 | setup_environment(pas->pw_shell, |
Denys Vlasenko | fd686a2 | 2010-02-26 09:52:45 +0100 | [diff] [blame] | 45 | SETUP_ENV_CHANGEENV | SETUP_ENV_TO_TMP, |
| 46 | pas); |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 47 | ptr = getenv("VISUAL"); |
| 48 | if (!ptr) { |
| 49 | ptr = getenv("EDITOR"); |
| 50 | if (!ptr) |
Denis Vlasenko | b44c790 | 2008-03-17 09:29:43 +0000 | [diff] [blame] | 51 | ptr = "vi"; |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 52 | } |
| 53 | |
Denis Vlasenko | 7fc294c | 2008-02-16 13:47:57 +0000 | [diff] [blame] | 54 | BB_EXECLP(ptr, ptr, file, NULL); |
Denys Vlasenko | 681efe2 | 2011-03-08 21:00:36 +0100 | [diff] [blame] | 55 | bb_perror_msg_and_die("can't execute '%s'", ptr); |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | static int open_as_user(const struct passwd *pas, const char *file) |
| 59 | { |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 60 | pid_t pid; |
| 61 | char c; |
| 62 | |
Pascal Bellard | 926031b | 2010-07-04 15:32:38 +0200 | [diff] [blame] | 63 | pid = xvfork(); |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 64 | if (pid) { /* PARENT */ |
Denis Vlasenko | 03b4c14 | 2008-02-17 14:30:03 +0000 | [diff] [blame] | 65 | if (wait4pid(pid) == 0) { |
| 66 | /* exitcode 0: child says it can read */ |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 67 | return open(file, O_RDONLY); |
Denis Vlasenko | 03b4c14 | 2008-02-17 14:30:03 +0000 | [diff] [blame] | 68 | } |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 69 | return -1; |
| 70 | } |
| 71 | |
| 72 | /* CHILD */ |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 73 | /* initgroups, setgid, setuid */ |
| 74 | change_identity(pas); |
Denis Vlasenko | 03b4c14 | 2008-02-17 14:30:03 +0000 | [diff] [blame] | 75 | /* We just try to read one byte. If it works, file is readable |
| 76 | * under this user. We signal that by exiting with 0. */ |
| 77 | _exit(safe_read(xopen(file, O_RDONLY), &c, 1) < 0); |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | int crontab_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 81 | int crontab_main(int argc UNUSED_PARAM, char **argv) |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 82 | { |
| 83 | const struct passwd *pas; |
| 84 | const char *crontab_dir = CRONTABS; |
| 85 | char *tmp_fname; |
| 86 | char *new_fname; |
| 87 | char *user_name; /* -u USER */ |
| 88 | int fd; |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 89 | int src_fd; |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 90 | int opt_ler; |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 91 | |
| 92 | /* file [opts] Replace crontab from file |
| 93 | * - [opts] Replace crontab from stdin |
| 94 | * -u user User |
| 95 | * -c dir Crontab directory |
| 96 | * -l List crontab for user |
| 97 | * -e Edit crontab for user |
| 98 | * -r Delete crontab for user |
| 99 | * bbox also supports -d == -r, but most other crontab |
| 100 | * implementations do not. Deprecated. |
| 101 | */ |
| 102 | enum { |
| 103 | OPT_u = (1 << 0), |
| 104 | OPT_c = (1 << 1), |
| 105 | OPT_l = (1 << 2), |
| 106 | OPT_e = (1 << 3), |
| 107 | OPT_r = (1 << 4), |
| 108 | OPT_ler = OPT_l + OPT_e + OPT_r, |
| 109 | }; |
| 110 | |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 111 | opt_complementary = "?1:dr"; /* max one argument; -d implies -r */ |
| 112 | opt_ler = getopt32(argv, "u:c:lerd", &user_name, &crontab_dir); |
| 113 | argv += optind; |
| 114 | |
Denis Vlasenko | c9ca0a3 | 2008-02-18 11:08:33 +0000 | [diff] [blame] | 115 | if (sanitize_env_if_suid()) { /* Clears dangerous stuff, sets PATH */ |
Denys Vlasenko | b2e5fc3 | 2009-11-25 14:52:47 +0100 | [diff] [blame] | 116 | /* Run by non-root */ |
Denis Vlasenko | 7fc294c | 2008-02-16 13:47:57 +0000 | [diff] [blame] | 117 | if (opt_ler & (OPT_u|OPT_c)) |
Denys Vlasenko | b2e5fc3 | 2009-11-25 14:52:47 +0100 | [diff] [blame] | 118 | bb_error_msg_and_die(bb_msg_you_must_be_root); |
Denis Vlasenko | 7fc294c | 2008-02-16 13:47:57 +0000 | [diff] [blame] | 119 | } |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 120 | |
| 121 | if (opt_ler & OPT_u) { |
Denis Vlasenko | d7a805e | 2008-12-03 19:05:55 +0000 | [diff] [blame] | 122 | pas = xgetpwnam(user_name); |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 123 | } else { |
Denis Vlasenko | 0c68a87 | 2008-12-02 22:56:59 +0000 | [diff] [blame] | 124 | pas = xgetpwuid(getuid()); |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | #define user_name DONT_USE_ME_BEYOND_THIS_POINT |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 128 | |
| 129 | /* From now on, keep only -l, -e, -r bits */ |
| 130 | opt_ler &= OPT_ler; |
| 131 | if ((opt_ler - 1) & opt_ler) /* more than one bit set? */ |
| 132 | bb_show_usage(); |
| 133 | |
| 134 | /* Read replacement file under user's UID/GID/group vector */ |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 135 | src_fd = STDIN_FILENO; |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 136 | if (!opt_ler) { /* Replace? */ |
| 137 | if (!argv[0]) |
| 138 | bb_show_usage(); |
| 139 | if (NOT_LONE_DASH(argv[0])) { |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 140 | src_fd = open_as_user(pas, argv[0]); |
| 141 | if (src_fd < 0) |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 142 | bb_error_msg_and_die("user %s cannot read %s", |
| 143 | pas->pw_name, argv[0]); |
Denis Vlasenko | 94d5d82 | 2006-09-27 19:48:56 +0000 | [diff] [blame] | 144 | } |
| 145 | } |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 146 | |
| 147 | /* cd to our crontab directory */ |
| 148 | xchdir(crontab_dir); |
| 149 | |
| 150 | tmp_fname = NULL; |
| 151 | |
| 152 | /* Handle requested operation */ |
| 153 | switch (opt_ler) { |
| 154 | |
| 155 | default: /* case OPT_r: Delete */ |
Denis Vlasenko | 03b4c14 | 2008-02-17 14:30:03 +0000 | [diff] [blame] | 156 | unlink(pas->pw_name); |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 157 | break; |
| 158 | |
| 159 | case OPT_l: /* List */ |
| 160 | { |
| 161 | char *args[2] = { pas->pw_name, NULL }; |
| 162 | return bb_cat(args); |
| 163 | /* list exits, |
| 164 | * the rest go play with cron update file */ |
| 165 | } |
| 166 | |
| 167 | case OPT_e: /* Edit */ |
Denis Vlasenko | 7fc294c | 2008-02-16 13:47:57 +0000 | [diff] [blame] | 168 | tmp_fname = xasprintf("%s.%u", crontab_dir, (unsigned)getpid()); |
Denis Vlasenko | b44c790 | 2008-03-17 09:29:43 +0000 | [diff] [blame] | 169 | /* No O_EXCL: we don't want to be stuck if earlier crontabs |
| 170 | * were killed, leaving stale temp file behind */ |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 171 | src_fd = xopen3(tmp_fname, O_RDWR|O_CREAT|O_TRUNC, 0600); |
| 172 | fchown(src_fd, pas->pw_uid, pas->pw_gid); |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 173 | fd = open(pas->pw_name, O_RDONLY); |
| 174 | if (fd >= 0) { |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 175 | bb_copyfd_eof(fd, src_fd); |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 176 | close(fd); |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 177 | xlseek(src_fd, 0, SEEK_SET); |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 178 | } |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 179 | close_on_exec_on(src_fd); /* don't want editor to see this fd */ |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 180 | edit_file(pas, tmp_fname); |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 181 | /* fall through */ |
| 182 | |
| 183 | case 0: /* Replace (no -l, -e, or -r were given) */ |
| 184 | new_fname = xasprintf("%s.new", pas->pw_name); |
| 185 | fd = open(new_fname, O_WRONLY|O_CREAT|O_TRUNC|O_APPEND, 0600); |
| 186 | if (fd >= 0) { |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 187 | bb_copyfd_eof(src_fd, fd); |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 188 | close(fd); |
Denis Vlasenko | 03b4c14 | 2008-02-17 14:30:03 +0000 | [diff] [blame] | 189 | xrename(new_fname, pas->pw_name); |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 190 | } else { |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 191 | bb_error_msg("can't create %s/%s", |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 192 | crontab_dir, new_fname); |
| 193 | } |
| 194 | if (tmp_fname) |
Denis Vlasenko | 03b4c14 | 2008-02-17 14:30:03 +0000 | [diff] [blame] | 195 | unlink(tmp_fname); |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 196 | /*free(tmp_fname);*/ |
| 197 | /*free(new_fname);*/ |
| 198 | |
| 199 | } /* switch */ |
| 200 | |
| 201 | /* Bump notification file. Handle window where crond picks file up |
| 202 | * before we can write our entry out. |
| 203 | */ |
Bernhard Reutner-Fischer | 27dd495 | 2008-02-18 18:35:53 +0000 | [diff] [blame] | 204 | while ((fd = open(CRONUPDATE, O_WRONLY|O_CREAT|O_APPEND, 0600)) >= 0) { |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 205 | struct stat st; |
| 206 | |
| 207 | fdprintf(fd, "%s\n", pas->pw_name); |
| 208 | if (fstat(fd, &st) != 0 || st.st_nlink != 0) { |
| 209 | /*close(fd);*/ |
| 210 | break; |
| 211 | } |
| 212 | /* st.st_nlink == 0: |
| 213 | * file was deleted, maybe crond missed our notification */ |
| 214 | close(fd); |
| 215 | /* loop */ |
| 216 | } |
| 217 | if (fd < 0) { |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 218 | bb_error_msg("can't append to %s/%s", |
Denis Vlasenko | 069e347 | 2008-02-16 13:17:13 +0000 | [diff] [blame] | 219 | crontab_dir, CRONUPDATE); |
| 220 | } |
| 221 | return 0; |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 222 | } |