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