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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
|
#include <bglibs/sysdeps.h>
#include <errno.h>
#include <grp.h>
#include <pwd.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <unistd.h>
#include <bglibs/iobuf.h>
#include <bglibs/msg.h>
#include <bglibs/wrap.h>
#include <bglibs/path.h>
#include <bglibs/envstr.h>
#include <bglibs/str.h>
#include <bglibs/unix.h>
#include <bglibs/selfpipe.h>
#include "bcron.h"
#include "conf_sendmail.c"
const char program[] = "bcron-exec";
const int msg_show_pid = 0;
extern char** environ;
static const char** shell_argv;
static int shell_argc;
static int testmode = 0;
#define SLOT_MAX 512
struct slot
{
pid_t pid;
int tmpfd;
long headerlen;
int sending_email;
str id;
struct passwd pw;
};
static struct slot slots[SLOT_MAX];
static int slots_used = 0;
/*
Input: ID NUL username NUL command NUL environment NUL NUL
Output: ID NUL code message NUL
Codes:
K Job completed
Z Temporary error running job
D Invalid job specification
*/
static const char* path;
static str tmp;
static const char* tmpprefix = "/tmp/bcron";
#define NUL 0
static int devnull;
static void report(const char* id, const char* msg)
{
wrap_str(str_copyb(&tmp, id, strlen(id) + 1));
wrap_str(str_cats(&tmp, msg));
if (!sendpacket(1, &tmp))
exit(111);
}
static void report_slot(int slot, const char* msg)
{
debugf(DEBUG_EXEC, "{slot }d{ report: }s", slot, msg + 1);
report(slots[slot].id.s, msg);
}
static void failsys(const char* id, const char* msg)
{
wrap_str(str_copyb(&tmp, id, strlen(id) + 1));
wrap_str(str_cats(&tmp, msg));
wrap_str(str_cats(&tmp, ": "));
wrap_str(str_cats(&tmp, strerror(errno)));
if (!sendpacket(1, &tmp))
exit(111);
}
static void failsys_slot(int slot, const char* msg)
{
debugf(DEBUG_EXEC, "{slot }d{ failsys: }s", slot, msg + 1);
failsys(slots[slot].id.s, msg);
}
static void init_slots(void)
{
int slot;
for (slot = 0; slot < SLOT_MAX; ++slot) {
slots[slot].pid = 0;
slots[slot].tmpfd = -1;
wrap_str(str_ready(&slots[slot].id, 16));
}
}
static int pick_slot(void)
{
int slot;
for (slot = 0; slot < SLOT_MAX; ++slot)
if (slots[slot].pid == 0)
return slot;
return -1;
}
static void exec_cmd(int fdin, int fdout,
const char** argv,
const str* env,
const struct passwd* pw)
{
selfpipe_close();
dup2(fdin, 0);
dup2(fdout, 1);
dup2(fdout, 2);
close(fdin);
close(fdout);
if (!testmode) {
if (initgroups(pw->pw_name, pw->pw_gid) != 0)
die1sys(111, "Could not initgroups");
if (setgid(pw->pw_gid) != 0)
die1sys(111, "Could not setgid");
if (setuid(pw->pw_uid) != 0)
die1sys(111, "Could not setuid");
}
if (chdir(pw->pw_dir) != 0)
die1sys(111, "Could not change directory");
if (env)
if ((environ = envstr_make_array(env)) == 0)
die_oom(111);
execv(argv[0], (char**)argv);
die3sys(111, "Could not execute '", argv[0], "'");
exit(111);
}
static int forkexec_slot(int slot, int fdin, int fdout,
const char** argv,
const str* env)
{
pid_t pid;
const struct passwd* pw = &slots[slot].pw;
switch (pid = fork()) {
case -1:
failsys_slot(slot, "ZFork failed");
return 0;
case 0:
exec_cmd(fdin, fdout, argv, env, pw);
}
slots[slot].pid = pid;
++slots_used;
return 1;
}
static int strcopy(char** dest, const char* src)
{
if (*dest)
free(*dest);
return (*dest = strdup(src)) != 0;
}
static int init_slot(int slot, const struct passwd* pw)
{
struct slot* s;
s = &slots[slot];
if (!strcopy(&s->pw.pw_name, pw->pw_name))
return 0;
s->pw.pw_passwd = 0;
s->pw.pw_uid = pw->pw_uid;
s->pw.pw_gid = pw->pw_gid;
s->pw.pw_gecos = 0;
if (!strcopy(&s->pw.pw_dir, pw->pw_dir))
return 0;
s->pw.pw_shell = 0;
return 1;
}
static void start_slot(int slot,
const char* command,
const char* envstart)
{
static str env;
char* period;
int fd;
char hostname[256];
const char* mailto;
const struct passwd* pw = &slots[slot].pw;
const char* shell;
msg5("(", pw->pw_name, ") CMD (", command, ")");
env.len = 0;
wrap_str(envstr_set(&env, "PATH", path, 1));
if (envstart)
wrap_str(envstr_from_string(&env, envstart, 1));
wrap_str(envstr_set(&env, "HOME", pw->pw_dir, 1));
wrap_str(envstr_set(&env, "USER", pw->pw_name, 1));
wrap_str(envstr_set(&env, "LOGNAME", pw->pw_name, 1));
if ((shell = envstr_get(&env, "SHELL")) == 0)
shell = "/bin/sh";
if ((mailto = envstr_get(&env, "MAILTO")) == 0)
mailto = pw->pw_name;
if (*mailto == 0) {
fd = devnull;
slots[slot].headerlen = 0;
}
else {
if ((fd = path_mktemp(tmpprefix, &tmp)) == -1) {
failsys_slot(slot, "ZCould not create temporary file");
return;
}
unlink(tmp.s);
cloexec_on(fd);
gethostname(hostname, sizeof hostname);
wrap_str(str_copyns(&tmp, 6, "To: <", mailto, ">\n",
"From: Cron Daemon <root@", hostname, ">\n"));
if ((period = strchr(hostname, '.')) != 0)
*period = 0;
wrap_str(str_catns(&tmp, 7, "Subject: Cron <", pw->pw_name,
"@", hostname, "> ", command, "\n\n"));
slots[slot].headerlen = tmp.len;
if (write(fd, tmp.s, tmp.len) != (long)tmp.len) {
close(fd);
fd = -1;
report_slot(slot, "ZCould not write message header");
return;
}
}
shell_argv[shell_argc+0] = shell;
shell_argv[shell_argc+1] = "-c";
shell_argv[shell_argc+2] = command;
debugf(DEBUG_EXEC, "{slot }d{ starting: }s", slot, command);
if (!forkexec_slot(slot, devnull, fd, shell_argv, &env)) {
if (fd != devnull)
close(fd);
fd = -1;
}
slots[slot].sending_email = 0;
slots[slot].tmpfd = fd;
}
static void send_email(int slot)
{
if (lseek(slots[slot].tmpfd, SEEK_SET, 0) != 0)
failsys_slot(slot, "ZCould not lseek");
else {
if (testmode) {
char buf[4096];
int rd;
while ((rd = read(slots[slot].tmpfd, buf, sizeof buf)) > 0) {
write(2, buf, rd);
}
report_slot(slot, "KJob complete");
}
else {
debugf(DEBUG_EXEC, "{slot }d{ Job complete, sending mail}", slot);
forkexec_slot(slot, slots[slot].tmpfd, devnull, sendmail, 0);
slots[slot].sending_email = 1;
}
}
}
static void end_slot(int slot, int status)
{
struct stat st;
slots[slot].pid = 0;
--slots_used;
if (slots[slot].sending_email) {
slots[slot].sending_email = 0;
if (status)
report_slot(slot, "ZJob complete, sending email failed");
else
report_slot(slot, "KJob complete, email sent");
}
else {
/* No header, no possible way to send email. */
if (slots[slot].headerlen == 0)
report_slot(slot, "KJob complete, no MAILTO");
else {
/* If the job crashed, make sure it is noted. */
if (WIFSIGNALED(status)) {
debugf(DEBUG_EXEC, "{slot }d{ Job was killed by signal #}d",
slot, WTERMSIG(status));
wrap_str(str_copys(&tmp, "\n\nJob was killed by signal #"));
wrap_str(str_cati(&tmp, WTERMSIG(status)));
wrap_str(str_catc(&tmp, '\n'));
write(slots[slot].tmpfd, tmp.s, tmp.len);
}
if (fstat(slots[slot].tmpfd, &st) == -1)
failsys_slot(slot, "ZCould not fstat");
else if (st.st_size > slots[slot].headerlen)
send_email(slot);
else
report_slot(slot, "KJob complete, no mail sent");
}
/* To simplify the procedure, close the temporary file early.
* The email sender still has it open, and will effect the final
* deletion of the file when it completes. */
if (slots[slot].tmpfd != devnull)
close(slots[slot].tmpfd);
slots[slot].tmpfd = -1;
}
}
#define FAIL(S,M) do{ report(S,M); return; }while(0)
static void handle_packet(struct connection* c)
{
str* packet;
const char* id;
const char* runas;
const char* command;
const char* envstart;
long slot;
unsigned int i;
struct passwd* pw;
packet = &c->packet;
id = packet->s;
if (*id == NUL)
FAIL(id, "DInvalid ID");
if ((slot = pick_slot()) < 0)
FAIL(id, "DCould not allocate a slot");
wrap_str(str_copys(&slots[slot].id, id));
if ((i = str_findfirst(packet, NUL) + 1) >= packet->len)
FAIL(id, "DInvalid packet");
runas = packet->s + i;
if (*runas == NUL
|| (pw = getpwnam(runas)) == 0)
FAIL(id, "DInvalid username");
if ((i = str_findnext(packet, NUL, i) + 1) >= packet->len)
FAIL(id, "DInvalid packet");
command = packet->s + i;
if ((i = str_findnext(packet, NUL, i) + 1) >= packet->len)
envstart = 0;
else {
envstart = packet->s + i;
wrap_str(str_catc(packet, 0));
}
if (!init_slot(slot, pw))
FAIL(id, "ZOut of memory");
start_slot(slot, command, envstart);
}
static void handle_child(int wnh)
{
pid_t pid;
int slot;
int status;
while ((pid = waitpid(-1, &status, wnh)) != -1 && pid != 0) {
for (slot = 0; slot < SLOT_MAX; ++slot) {
if (slots[slot].pid == pid) {
end_slot(slot, status);
break;
}
}
}
}
int main(int argc, char* argv[])
{
struct connection conn;
iopoll_fd fds[2];
int selfpipe;
int i;
msg_debug_init();
testmode = getenv("TESTMODE") != 0;
if ((shell_argv = malloc((argc + 3) * sizeof *argv)) == 0)
die_oom(111);
for (i = 1; i < argc; ++i)
shell_argv[i-1] = argv[i];
for (; i < argc + 4; ++i)
shell_argv[i-1] = 0;
shell_argc = argc - 1;
if ((path = getenv("PATH")) == 0)
die1(111, "No PATH is set");
if ((devnull = open("/dev/null", O_RDWR)) == -1)
die1sys(111, "Could not open \"/dev/null\"");
if (!nonblock_on(0))
die1sys(111, "Could not set non-blocking status");
if ((selfpipe = selfpipe_init()) == -1)
die1sys(111, "Could not create self-pipe");
init_slots();
connection_init(&conn, 0, 0);
fds[0].fd = 0;
fds[0].events = IOPOLL_READ;
fds[1].fd = selfpipe;
fds[1].events = IOPOLL_READ;
for (;;) {
if (iopoll_restart(fds, 2, -1) == -1)
die1sys(111, "Poll failed");
if (fds[0].revents)
if (connection_read(&conn, handle_packet) <= 0)
break;
if (fds[1].revents) {
read(selfpipe, &i, 1);
handle_child(WNOHANG);
}
}
msg1("Waiting for remaining slots to complete");
while (slots_used > 0)
handle_child(0);
return 0;
}
|