do_command.c revision 173412
1/* Copyright 1988,1990,1993,1994 by Paul Vixie
2 * All rights reserved
3 *
4 * Distribute freely, except: don't remove my name from the source or
5 * documentation (don't take credit for my work), mark your changes (don't
6 * get me blamed for your possible bugs), don't alter or remove this
7 * notice.  May be sold if buildable source is provided to buyer.  No
8 * warrantee of any kind, express or implied, is included with this
9 * software; use at your own risk, responsibility for damages (if any) to
10 * anyone resulting from the use of this software rests entirely with the
11 * user.
12 *
13 * Send bug reports, bug fixes, enhancements, requests, flames, etc., and
14 * I'll try to keep a version up to date.  I can be reached as follows:
15 * Paul Vixie          <paul@vix.com>          uunet!decwrl!vixie!paul
16 */
17
18#if !defined(lint) && !defined(LINT)
19static const char rcsid[] =
20  "$FreeBSD: head/usr.sbin/cron/cron/do_command.c 173412 2007-11-07 10:53:41Z kevlo $";
21#endif
22
23
24#include "cron.h"
25#include <sys/signal.h>
26#if defined(sequent)
27# include <sys/universe.h>
28#endif
29#if defined(SYSLOG)
30# include <syslog.h>
31#endif
32#if defined(LOGIN_CAP)
33# include <login_cap.h>
34#endif
35#ifdef PAM
36# include <security/pam_appl.h>
37# include <security/openpam.h>
38#endif
39
40
41static void		child_process(entry *, user *),
42			do_univ(user *);
43
44
45void
46do_command(e, u)
47	entry	*e;
48	user	*u;
49{
50	Debug(DPROC, ("[%d] do_command(%s, (%s,%d,%d))\n",
51		getpid(), e->cmd, u->name, e->uid, e->gid))
52
53	/* fork to become asynchronous -- parent process is done immediately,
54	 * and continues to run the normal cron code, which means return to
55	 * tick().  the child and grandchild don't leave this function, alive.
56	 *
57	 * vfork() is unsuitable, since we have much to do, and the parent
58	 * needs to be able to run off and fork other processes.
59	 */
60	switch (fork()) {
61	case -1:
62		log_it("CRON",getpid(),"error","can't fork");
63		break;
64	case 0:
65		/* child process */
66		pidfile_close(pfh);
67		child_process(e, u);
68		Debug(DPROC, ("[%d] child process done, exiting\n", getpid()))
69		_exit(OK_EXIT);
70		break;
71	default:
72		/* parent process */
73		break;
74	}
75	Debug(DPROC, ("[%d] main process returning to work\n", getpid()))
76}
77
78
79static void
80child_process(e, u)
81	entry	*e;
82	user	*u;
83{
84	int		stdin_pipe[2], stdout_pipe[2];
85	register char	*input_data;
86	char		*usernm, *mailto;
87	int		children = 0;
88# if defined(LOGIN_CAP)
89	struct passwd	*pwd;
90	login_cap_t *lc;
91# endif
92
93	Debug(DPROC, ("[%d] child_process('%s')\n", getpid(), e->cmd))
94
95	/* mark ourselves as different to PS command watchers by upshifting
96	 * our program name.  This has no effect on some kernels.
97	 */
98	setproctitle("running job");
99
100	/* discover some useful and important environment settings
101	 */
102	usernm = env_get("LOGNAME", e->envp);
103	mailto = env_get("MAILTO", e->envp);
104
105#ifdef PAM
106	/* use PAM to see if the user's account is available,
107	 * i.e., not locked or expired or whatever.  skip this
108	 * for system tasks from /etc/crontab -- they can run
109	 * as any user.
110	 */
111	if (strcmp(u->name, SYS_NAME)) {	/* not equal */
112		pam_handle_t *pamh = NULL;
113		int pam_err;
114		struct pam_conv pamc = {
115			.conv = openpam_nullconv,
116			.appdata_ptr = NULL
117		};
118
119		Debug(DPROC, ("[%d] checking account with PAM\n", getpid()))
120
121		/* u->name keeps crontab owner name while LOGNAME is the name
122		 * of user to run command on behalf of.  they should be the
123		 * same for a task from a per-user crontab.
124		 */
125		if (strcmp(u->name, usernm)) {
126			log_it(usernm, getpid(), "username ambiguity", u->name);
127			exit(ERROR_EXIT);
128		}
129
130		pam_err = pam_start("cron", usernm, &pamc, &pamh);
131		if (pam_err != PAM_SUCCESS) {
132			log_it("CRON", getpid(), "error", "can't start PAM");
133			exit(ERROR_EXIT);
134		}
135
136		pam_err = pam_acct_mgmt(pamh, PAM_SILENT);
137		/* Expired password shouldn't prevent the job from running. */
138		if (pam_err != PAM_SUCCESS && pam_err != PAM_NEW_AUTHTOK_REQD) {
139			log_it(usernm, getpid(), "USER", "account unavailable");
140			exit(ERROR_EXIT);
141		}
142
143		pam_end(pamh, pam_err);
144	}
145#endif
146
147#ifdef USE_SIGCHLD
148	/* our parent is watching for our death by catching SIGCHLD.  we
149	 * do not care to watch for our children's deaths this way -- we
150	 * use wait() explictly.  so we have to disable the signal (which
151	 * was inherited from the parent).
152	 */
153	(void) signal(SIGCHLD, SIG_DFL);
154#else
155	/* on system-V systems, we are ignoring SIGCLD.  we have to stop
156	 * ignoring it now or the wait() in cron_pclose() won't work.
157	 * because of this, we have to wait() for our children here, as well.
158	 */
159	(void) signal(SIGCLD, SIG_DFL);
160#endif /*BSD*/
161
162	/* create some pipes to talk to our future child
163	 */
164	pipe(stdin_pipe);	/* child's stdin */
165	pipe(stdout_pipe);	/* child's stdout */
166
167	/* since we are a forked process, we can diddle the command string
168	 * we were passed -- nobody else is going to use it again, right?
169	 *
170	 * if a % is present in the command, previous characters are the
171	 * command, and subsequent characters are the additional input to
172	 * the command.  Subsequent %'s will be transformed into newlines,
173	 * but that happens later.
174	 *
175	 * If there are escaped %'s, remove the escape character.
176	 */
177	/*local*/{
178		register int escaped = FALSE;
179		register int ch;
180		register char *p;
181
182		for (input_data = p = e->cmd; (ch = *input_data);
183		     input_data++, p++) {
184			if (p != input_data)
185			    *p = ch;
186			if (escaped) {
187				if (ch == '%' || ch == '\\')
188					*--p = ch;
189				escaped = FALSE;
190				continue;
191			}
192			if (ch == '\\') {
193				escaped = TRUE;
194				continue;
195			}
196			if (ch == '%') {
197				*input_data++ = '\0';
198				break;
199			}
200		}
201		*p = '\0';
202	}
203
204	/* fork again, this time so we can exec the user's command.
205	 */
206	switch (vfork()) {
207	case -1:
208		log_it("CRON",getpid(),"error","can't vfork");
209		exit(ERROR_EXIT);
210		/*NOTREACHED*/
211	case 0:
212		Debug(DPROC, ("[%d] grandchild process Vfork()'ed\n",
213			      getpid()))
214
215		if (e->uid == ROOT_UID)
216			Jitter = RootJitter;
217		if (Jitter != 0) {
218			srandom(getpid());
219			sleep(random() % Jitter);
220		}
221
222		/* write a log message.  we've waited this long to do it
223		 * because it was not until now that we knew the PID that
224		 * the actual user command shell was going to get and the
225		 * PID is part of the log message.
226		 */
227		/*local*/{
228			char *x = mkprints((u_char *)e->cmd, strlen(e->cmd));
229
230			log_it(usernm, getpid(), "CMD", x);
231			free(x);
232		}
233
234		/* that's the last thing we'll log.  close the log files.
235		 */
236#ifdef SYSLOG
237		closelog();
238#endif
239
240		/* get new pgrp, void tty, etc.
241		 */
242		(void) setsid();
243
244		/* close the pipe ends that we won't use.  this doesn't affect
245		 * the parent, who has to read and write them; it keeps the
246		 * kernel from recording us as a potential client TWICE --
247		 * which would keep it from sending SIGPIPE in otherwise
248		 * appropriate circumstances.
249		 */
250		close(stdin_pipe[WRITE_PIPE]);
251		close(stdout_pipe[READ_PIPE]);
252
253		/* grandchild process.  make std{in,out} be the ends of
254		 * pipes opened by our daddy; make stderr go to stdout.
255		 */
256		close(STDIN);	dup2(stdin_pipe[READ_PIPE], STDIN);
257		close(STDOUT);	dup2(stdout_pipe[WRITE_PIPE], STDOUT);
258		close(STDERR);	dup2(STDOUT, STDERR);
259
260		/* close the pipes we just dup'ed.  The resources will remain.
261		 */
262		close(stdin_pipe[READ_PIPE]);
263		close(stdout_pipe[WRITE_PIPE]);
264
265		/* set our login universe.  Do this in the grandchild
266		 * so that the child can invoke /usr/lib/sendmail
267		 * without surprises.
268		 */
269		do_univ(u);
270
271# if defined(LOGIN_CAP)
272		/* Set user's entire context, but skip the environment
273		 * as cron provides a separate interface for this
274		 */
275		if ((pwd = getpwnam(usernm)) == NULL)
276			pwd = getpwuid(e->uid);
277		lc = NULL;
278		if (pwd != NULL) {
279			pwd->pw_gid = e->gid;
280			if (e->class != NULL)
281				lc = login_getclass(e->class);
282		}
283		if (pwd &&
284		    setusercontext(lc, pwd, e->uid,
285			    LOGIN_SETALL & ~(LOGIN_SETPATH|LOGIN_SETENV)) == 0)
286			(void) endpwent();
287		else {
288			/* fall back to the old method */
289			(void) endpwent();
290# endif
291			/* set our directory, uid and gid.  Set gid first,
292			 * since once we set uid, we've lost root privileges.
293			 */
294			if (setgid(e->gid) != 0) {
295				log_it(usernm, getpid(),
296				    "error", "setgid failed");
297				exit(ERROR_EXIT);
298			}
299# if defined(BSD)
300			if (initgroups(usernm, e->gid) != 0) {
301				log_it(usernm, getpid(),
302				    "error", "initgroups failed");
303				exit(ERROR_EXIT);
304			}
305# endif
306			if (setlogin(usernm) != 0) {
307				log_it(usernm, getpid(),
308				    "error", "setlogin failed");
309				exit(ERROR_EXIT);
310			}
311			if (setuid(e->uid) != 0) {
312				log_it(usernm, getpid(),
313				    "error", "setuid failed");
314				exit(ERROR_EXIT);
315			}
316			/* we aren't root after this..*/
317#if defined(LOGIN_CAP)
318		}
319		if (lc != NULL)
320			login_close(lc);
321#endif
322		chdir(env_get("HOME", e->envp));
323
324		/* exec the command.
325		 */
326		{
327			char	*shell = env_get("SHELL", e->envp);
328
329# if DEBUGGING
330			if (DebugFlags & DTEST) {
331				fprintf(stderr,
332				"debug DTEST is on, not exec'ing command.\n");
333				fprintf(stderr,
334				"\tcmd='%s' shell='%s'\n", e->cmd, shell);
335				_exit(OK_EXIT);
336			}
337# endif /*DEBUGGING*/
338			execle(shell, shell, "-c", e->cmd, (char *)0, e->envp);
339			warn("execl: couldn't exec `%s'", shell);
340			_exit(ERROR_EXIT);
341		}
342		break;
343	default:
344		/* parent process */
345		break;
346	}
347
348	children++;
349
350	/* middle process, child of original cron, parent of process running
351	 * the user's command.
352	 */
353
354	Debug(DPROC, ("[%d] child continues, closing pipes\n", getpid()))
355
356	/* close the ends of the pipe that will only be referenced in the
357	 * grandchild process...
358	 */
359	close(stdin_pipe[READ_PIPE]);
360	close(stdout_pipe[WRITE_PIPE]);
361
362	/*
363	 * write, to the pipe connected to child's stdin, any input specified
364	 * after a % in the crontab entry.  while we copy, convert any
365	 * additional %'s to newlines.  when done, if some characters were
366	 * written and the last one wasn't a newline, write a newline.
367	 *
368	 * Note that if the input data won't fit into one pipe buffer (2K
369	 * or 4K on most BSD systems), and the child doesn't read its stdin,
370	 * we would block here.  thus we must fork again.
371	 */
372
373	if (*input_data && fork() == 0) {
374		register FILE	*out = fdopen(stdin_pipe[WRITE_PIPE], "w");
375		register int	need_newline = FALSE;
376		register int	escaped = FALSE;
377		register int	ch;
378
379		if (out == NULL) {
380			warn("fdopen failed in child2");
381			_exit(ERROR_EXIT);
382		}
383
384		Debug(DPROC, ("[%d] child2 sending data to grandchild\n", getpid()))
385
386		/* close the pipe we don't use, since we inherited it and
387		 * are part of its reference count now.
388		 */
389		close(stdout_pipe[READ_PIPE]);
390
391		/* translation:
392		 *	\% -> %
393		 *	%  -> \n
394		 *	\x -> \x	for all x != %
395		 */
396		while ((ch = *input_data++)) {
397			if (escaped) {
398				if (ch != '%')
399					putc('\\', out);
400			} else {
401				if (ch == '%')
402					ch = '\n';
403			}
404
405			if (!(escaped = (ch == '\\'))) {
406				putc(ch, out);
407				need_newline = (ch != '\n');
408			}
409		}
410		if (escaped)
411			putc('\\', out);
412		if (need_newline)
413			putc('\n', out);
414
415		/* close the pipe, causing an EOF condition.  fclose causes
416		 * stdin_pipe[WRITE_PIPE] to be closed, too.
417		 */
418		fclose(out);
419
420		Debug(DPROC, ("[%d] child2 done sending to grandchild\n", getpid()))
421		exit(0);
422	}
423
424	/* close the pipe to the grandkiddie's stdin, since its wicked uncle
425	 * ernie back there has it open and will close it when he's done.
426	 */
427	close(stdin_pipe[WRITE_PIPE]);
428
429	children++;
430
431	/*
432	 * read output from the grandchild.  it's stderr has been redirected to
433	 * it's stdout, which has been redirected to our pipe.  if there is any
434	 * output, we'll be mailing it to the user whose crontab this is...
435	 * when the grandchild exits, we'll get EOF.
436	 */
437
438	Debug(DPROC, ("[%d] child reading output from grandchild\n", getpid()))
439
440	/*local*/{
441		register FILE	*in = fdopen(stdout_pipe[READ_PIPE], "r");
442		register int	ch;
443
444		if (in == NULL) {
445			warn("fdopen failed in child");
446			_exit(ERROR_EXIT);
447		}
448
449		ch = getc(in);
450		if (ch != EOF) {
451			register FILE	*mail;
452			register int	bytes = 1;
453			int		status = 0;
454
455			Debug(DPROC|DEXT,
456				("[%d] got data (%x:%c) from grandchild\n",
457					getpid(), ch, ch))
458
459			/* get name of recipient.  this is MAILTO if set to a
460			 * valid local username; USER otherwise.
461			 */
462			if (mailto) {
463				/* MAILTO was present in the environment
464				 */
465				if (!*mailto) {
466					/* ... but it's empty. set to NULL
467					 */
468					mailto = NULL;
469				}
470			} else {
471				/* MAILTO not present, set to USER.
472				 */
473				mailto = usernm;
474			}
475
476			/* if we are supposed to be mailing, MAILTO will
477			 * be non-NULL.  only in this case should we set
478			 * up the mail command and subjects and stuff...
479			 */
480
481			if (mailto) {
482				register char	**env;
483				auto char	mailcmd[MAX_COMMAND];
484				auto char	hostname[MAXHOSTNAMELEN];
485
486				(void) gethostname(hostname, MAXHOSTNAMELEN);
487				(void) snprintf(mailcmd, sizeof(mailcmd),
488					       MAILARGS, MAILCMD);
489				if (!(mail = cron_popen(mailcmd, "w", e))) {
490					warn("%s", MAILCMD);
491					(void) _exit(ERROR_EXIT);
492				}
493				fprintf(mail, "From: %s (Cron Daemon)\n", usernm);
494				fprintf(mail, "To: %s\n", mailto);
495				fprintf(mail, "Subject: Cron <%s@%s> %s\n",
496					usernm, first_word(hostname, "."),
497					e->cmd);
498# if defined(MAIL_DATE)
499				fprintf(mail, "Date: %s\n",
500					arpadate(&TargetTime));
501# endif /* MAIL_DATE */
502				for (env = e->envp;  *env;  env++)
503					fprintf(mail, "X-Cron-Env: <%s>\n",
504						*env);
505				fprintf(mail, "\n");
506
507				/* this was the first char from the pipe
508				 */
509				putc(ch, mail);
510			}
511
512			/* we have to read the input pipe no matter whether
513			 * we mail or not, but obviously we only write to
514			 * mail pipe if we ARE mailing.
515			 */
516
517			while (EOF != (ch = getc(in))) {
518				bytes++;
519				if (mailto)
520					putc(ch, mail);
521			}
522
523			/* only close pipe if we opened it -- i.e., we're
524			 * mailing...
525			 */
526
527			if (mailto) {
528				Debug(DPROC, ("[%d] closing pipe to mail\n",
529					getpid()))
530				/* Note: the pclose will probably see
531				 * the termination of the grandchild
532				 * in addition to the mail process, since
533				 * it (the grandchild) is likely to exit
534				 * after closing its stdout.
535				 */
536				status = cron_pclose(mail);
537			}
538
539			/* if there was output and we could not mail it,
540			 * log the facts so the poor user can figure out
541			 * what's going on.
542			 */
543			if (mailto && status) {
544				char buf[MAX_TEMPSTR];
545
546				snprintf(buf, sizeof(buf),
547			"mailed %d byte%s of output but got status 0x%04x\n",
548					bytes, (bytes==1)?"":"s",
549					status);
550				log_it(usernm, getpid(), "MAIL", buf);
551			}
552
553		} /*if data from grandchild*/
554
555		Debug(DPROC, ("[%d] got EOF from grandchild\n", getpid()))
556
557		fclose(in);	/* also closes stdout_pipe[READ_PIPE] */
558	}
559
560	/* wait for children to die.
561	 */
562	for (;  children > 0;  children--)
563	{
564		WAIT_T		waiter;
565		PID_T		pid;
566
567		Debug(DPROC, ("[%d] waiting for grandchild #%d to finish\n",
568			getpid(), children))
569		pid = wait(&waiter);
570		if (pid < OK) {
571			Debug(DPROC, ("[%d] no more grandchildren--mail written?\n",
572				getpid()))
573			break;
574		}
575		Debug(DPROC, ("[%d] grandchild #%d finished, status=%04x",
576			getpid(), pid, WEXITSTATUS(waiter)))
577		if (WIFSIGNALED(waiter) && WCOREDUMP(waiter))
578			Debug(DPROC, (", dumped core"))
579		Debug(DPROC, ("\n"))
580	}
581}
582
583
584static void
585do_univ(u)
586	user	*u;
587{
588#if defined(sequent)
589/* Dynix (Sequent) hack to put the user associated with
590 * the passed user structure into the ATT universe if
591 * necessary.  We have to dig the gecos info out of
592 * the user's password entry to see if the magic
593 * "universe(att)" string is present.
594 */
595
596	struct	passwd	*p;
597	char	*s;
598	int	i;
599
600	p = getpwuid(u->uid);
601	(void) endpwent();
602
603	if (p == NULL)
604		return;
605
606	s = p->pw_gecos;
607
608	for (i = 0; i < 4; i++)
609	{
610		if ((s = strchr(s, ',')) == NULL)
611			return;
612		s++;
613	}
614	if (strcmp(s, "universe(att)"))
615		return;
616
617	(void) universe(U_ATT);
618#endif
619}
620