forked from webmin/webmin
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathexec_cron.cgi
executable file
·78 lines (68 loc) · 2.02 KB
/
exec_cron.cgi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/local/bin/perl
# exec_cron.cgi
# Execute an existing cron job, and display the output
require './cron-lib.pl';
&ReadParse();
@jobs = &list_cron_jobs();
$job = $jobs[$in{'idx'}];
&can_edit_user(\%access, $job->{'user'}) || &error($text{'exec_ecannot'});
&foreign_require("proc", "proc-lib.pl");
# split command into command and input
&convert_range($job);
&convert_comment($job);
$job->{'command'} =~ s/\\%/\0/g;
@lines = split(/%/ , $job->{'command'});
foreach (@lines) { s/\0/%/g; }
for($i=1; $i<@lines; $i++) {
$input .= $lines[$i]."\n";
}
if ($in{'bg'}) {
&ui_print_header(undef, $text{'exec_title'}, "");
}
else {
&ui_print_unbuffered_header(undef, $text{'exec_title'}, "");
}
&additional_log('exec', undef, $lines[0]);
&webmin_log("exec", "cron", $job->{'user'}, $job);
# Remove variables that wouldn't be in the 'real' cron
&clean_environment();
# Set cron environment variables
foreach $e (&read_envs($job->{'user'})) {
$ENV{$1} = $2 if ($e =~ /^(\S+)\s+(.*)$/);
}
if (&supports_users()) {
# Get command and switch uid/gid
@uinfo = getpwnam($job->{'user'});
$ENV{"HOME"} = $uinfo[7];
$ENV{"SHELL"} = "/bin/sh";
$ENV{"LOGNAME"} = $ENV{"USER"} = $job->{'user'};
&switch_to_unix_user(\@uinfo);
}
if ($in{'bg'}) {
# Run in background
print &text('exec_cmdbg',
"<tt>".&html_escape($lines[0])."</tt>"),"<p>\n";
if (defined($input)) {
local $temp = &tempname();
&open_tempfile(TEMP, ">$temp");
&print_tempfile(TEMP, $input);
&close_tempfile(TEMP);
&execute_command("(($lines[0]) ; rm -f $temp) &", $temp,
undef, undef);
}
else {
&execute_command("($lines[0]) &", undef, undef, undef);
}
}
else {
# Execute cron command and display output..
print &text('exec_cmd',
"<tt>".&html_escape($lines[0])."</tt>"),"<p>\n";
print "<pre>";
$got = &foreign_call("proc", "safe_process_exec",
$lines[0], 0, 0, STDOUT, $input, 1);
print "<i>$text{'exec_none'}</i>\n" if (!$got);
print "</pre>\n";
}
&ui_print_footer("edit_cron.cgi?idx=$in{'idx'}", $text{'edit_return'},
"", $text{'index_return'});