aboutsummaryrefslogtreecommitdiff
path: root/miscutils/crontab.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-02-16 13:47:57 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-02-16 13:47:57 +0000
commit7fc294cdfe1e7f4a12c44f984a698b0c0f609075 (patch)
tree95fa6ff18d8894af201b3f341962c97956330252 /miscutils/crontab.c
parent3718832a1542f7bf786a1678741b8566ad3a35c6 (diff)
downloadbusybox-7fc294cdfe1e7f4a12c44f984a698b0c0f609075.tar.gz
crontab: clear env if run by non-root, so that we can use PATH now
crontab: make "-c /tmp/ -e" work
Diffstat (limited to 'miscutils/crontab.c')
-rw-r--r--miscutils/crontab.c18
1 files changed, 8 insertions, 10 deletions
diff --git a/miscutils/crontab.c b/miscutils/crontab.c
index b292535b1..a1fe2c5a5 100644
--- a/miscutils/crontab.c
+++ b/miscutils/crontab.c
@@ -15,9 +15,6 @@
#ifndef CRONTABS
#define CRONTABS "/var/spool/cron/crontabs"
#endif
-#ifndef TMPDIR
-#define TMPDIR "/var/spool/cron"
-#endif
#ifndef CRONUPDATE
#define CRONUPDATE "cron.update"
#endif
@@ -37,7 +34,7 @@ static void change_user(const struct passwd *pas)
if (chdir(pas->pw_dir) < 0) {
bb_perror_msg("chdir(%s) by %s failed",
pas->pw_dir, pas->pw_name);
- xchdir(TMPDIR);
+ xchdir("/tmp");
}
}
@@ -62,9 +59,7 @@ static void edit_file(const struct passwd *pas, const char *file)
ptr = PATH_VI;
}
- /* TODO: clean up the environment!!! */
- /* not execlp - we won't use PATH */
- execl(ptr, ptr, file, NULL);
+ BB_EXECLP(ptr, ptr, file, NULL);
bb_perror_msg_and_die("exec %s", ptr);
}
@@ -136,9 +131,12 @@ int crontab_main(int argc, char **argv)
opt_ler = getopt32(argv, "u:c:lerd", &user_name, &crontab_dir);
argv += optind;
- if (opt_ler & (OPT_u|OPT_c))
- if (my_uid != geteuid())
+ if (my_uid != geteuid()) { /* run by non-root? */
+ if (opt_ler & (OPT_u|OPT_c))
bb_error_msg_and_die("only root can use -c or -u");
+ /* Clear dangerous stuff, set PATH */
+ sanitize_env_for_suid();
+ }
if (opt_ler & OPT_u) {
pas = getpwnam(user_name);
@@ -194,7 +192,7 @@ int crontab_main(int argc, char **argv)
}
case OPT_e: /* Edit */
- tmp_fname = xasprintf(TMPDIR "/crontab.%u", (unsigned)getpid());
+ tmp_fname = xasprintf("%s.%u", crontab_dir, (unsigned)getpid());
fd = xopen3(tmp_fname, O_RDWR|O_CREAT|O_TRUNC|O_EXCL, 0600);
xmove_fd(fd, STDIN_FILENO);
fd = open(pas->pw_name, O_RDONLY);