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 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741
|
/* Copyright 1988,1990,1993,1994 by Paul Vixie
* All rights reserved
*
* Distribute freely, except: don't remove my name from the source or
* documentation (don't take credit for my work), mark your changes (don't
* get me blamed for your possible bugs), don't alter or remove this
* notice. May be sold if buildable source is provided to buyer. No
* warrantee of any kind, express or implied, is included with this
* software; use at your own risk, responsibility for damages (if any) to
* anyone resulting from the use of this software rests entirely with the
* user.
*
* Send bug reports, bug fixes, enhancements, requests, flames, etc., and
* I'll try to keep a version up to date. I can be reached as follows:
* Paul Vixie <paul@vix.com> uunet!decwrl!vixie!paul
*/
#if !defined(lint) && !defined(LINT)
static char rcsid[] = "$Id: do_command.c,v 2.12 1994/01/15 20:43:43 vixie Exp $";
#endif
#include "cron.h"
#include "misc.h"
#include <signal.h>
#include <grp.h>
#include <sys/stat.h>
#include <unistd.h>
#if defined(sequent)
# include <sys/universe.h>
#endif
#if defined(SYSLOG)
# include <syslog.h>
#endif
#if defined(USE_PAM)
#include <security/pam_appl.h>
static pam_handle_t *pamh = NULL;
static const struct pam_conv conv = {
NULL
};
#define PAM_FAIL_CHECK if (retcode != PAM_SUCCESS) { \
fprintf(stderr,"\n%s\n",pam_strerror(pamh, retcode)); \
syslog(LOG_ERR,"%s",pam_strerror(pamh, retcode)); \
pam_end(pamh, retcode); exit(1); \
}
#endif
#ifdef WITH_SELINUX
#include <selinux/selinux.h>
/* #include <selinux/get_context_list.h> */
#endif
static void child_process __P((entry *, user *)),
do_univ __P((user *));
/* Build up the job environment from the PAM environment plus the
crontab environment */
static char **build_env(char **cronenv)
{
char **jobenv = cronenv;
#if defined(USE_PAM)
char **pamenv = pam_getenvlist(pamh);
char *cronvar;
int count = 0;
jobenv = env_copy(pamenv);
/* Now add the cron environment variables. Since env_set()
overwrites existing variables, this will let cron's
environment settings override pam's */
while ((cronvar = cronenv[count++])) {
if (!(jobenv = env_set(jobenv, cronvar))) {
syslog(LOG_ERR, "Setting Cron environment variable %s failed", cronvar);
return NULL;
}
}
#endif
return jobenv;
}
void
do_command(entry *e, user *u)
{
Debug(DPROC, ("[%d] do_command(%s, (%s,%d,%d))\n",
getpid(), e->cmd, u->name, e->uid, e->gid))
/* fork to become asynchronous -- parent process is done immediately,
* and continues to run the normal cron code, which means return to
* tick(). the child and grandchild don't leave this function, alive.
*
* vfork() is unsuitable, since we have much to do, and the parent
* needs to be able to run off and fork other processes.
*/
switch (fork()) {
case -1:
log_it("CRON",getpid(),"error","can't fork");
break;
case 0:
/* child process */
acquire_daemonlock(1);
child_process(e, u);
Debug(DPROC, ("[%d] child process done, exiting\n", getpid()))
_exit(OK_EXIT);
break;
default:
/* parent process */
break;
}
Debug(DPROC, ("[%d] main process returning to work\n", getpid()))
}
void
do_command_now(entry *e, user *u)
{
child_process(e, u);
_exit(OK_EXIT);
}
/*
* CROND
* - cron (runs child_process);
* - cron (runs exec sh -c 'tab entry');
* - cron (writes any %-style stdin to the command);
* - mail (popen writes any stdout to mailcmd);
*/
static void
child_process(entry *e, user *u)
{
int stdin_pipe[2];
FILE *tmpout;
register char *input_data;
char *usernm, *mailto, *mailfrom;
int children = 0;
pid_t job_pid;
#if defined(USE_PAM)
int retcode = 0;
#endif
Debug(DPROC, ("[%d] child_process('%s')\n", getpid(), e->cmd))
/* mark ourselves as different to PS command watchers by upshifting
* our program name. This has no effect on some kernels.
*/
/*local*/{
register char *pch;
for (pch = ProgramName; *pch; pch++)
*pch = MkUpper(*pch);
}
/* discover some useful and important environment settings
*/
usernm = env_get("LOGNAME", e->envp);
mailto = env_get("MAILTO", e->envp);
mailfrom = env_get("MAILFROM", e->envp);
#ifdef USE_SIGCHLD
/* our parent is watching for our death by catching SIGCHLD. we
* do not care to watch for our children's deaths this way -- we
* use wait() explictly. so we have to reset the signal (which
* was inherited from the parent).
*/
(void) signal(SIGCHLD, SIG_DFL);
#else
/* on system-V systems, we are ignoring SIGCLD. we have to stop
* ignoring it now or the wait() in cron_pclose() won't work.
* because of this, we have to wait() for our children here, as well.
*/
(void) signal(SIGCLD, SIG_DFL);
#endif /*BSD*/
/* create a pipe to talk to our future child
*/
pipe(stdin_pipe); /* child's stdin */
/* child's stdout */
if ((tmpout = tmpfile()) == NULL) {
log_it("CRON", getpid(), "error", "create tmpfile");
exit(ERROR_EXIT);
}
/* since we are a forked process, we can diddle the command string
* we were passed -- nobody else is going to use it again, right?
*
* if a % is present in the command, previous characters are the
* command, and subsequent characters are the additional input to
* the command. Subsequent %'s will be transformed into newlines,
* but that happens later.
*
* If there are escaped %'s, remove the escape character.
*/
/*local*/{
register int escaped = FALSE;
register int ch;
register char *p;
for (input_data = p = e->cmd; (ch = *input_data);
input_data++, p++) {
if (p != input_data)
*p = ch;
if (escaped) {
if (ch == '%' || ch == '\\')
*--p = ch;
escaped = FALSE;
continue;
}
if (ch == '\\') {
escaped = TRUE;
continue;
}
if (ch == '%') {
*input_data++ = '\0';
break;
}
}
*p = '\0';
}
#if defined(USE_PAM)
retcode = pam_start("cron", usernm, &conv, &pamh);
PAM_FAIL_CHECK;
retcode = pam_set_item(pamh, PAM_TTY, "cron");
PAM_FAIL_CHECK;
retcode = pam_acct_mgmt(pamh, PAM_SILENT);
PAM_FAIL_CHECK;
retcode = pam_setcred(pamh, PAM_ESTABLISH_CRED | PAM_SILENT);
PAM_FAIL_CHECK;
retcode = pam_open_session(pamh, PAM_SILENT);
PAM_FAIL_CHECK;
#endif
/* fork again, this time so we can exec the user's command.
*/
switch (job_pid = fork()) {
case -1:
log_it("CRON",getpid(),"error","can't fork");
exit(ERROR_EXIT);
/*NOTREACHED*/
case 0:
Debug(DPROC, ("[%d] grandchild process fork()'ed\n",
getpid()))
/* write a log message. we've waited this long to do it
* because it was not until now that we knew the PID that
* the actual user command shell was going to get and the
* PID is part of the log message.
*/
if ((log_level & CRON_LOG_JOBSTART) && ! (log_level & CRON_LOG_JOBPID)) {
char *x = mkprints((u_char *)e->cmd, strlen(e->cmd));
log_it(usernm, getpid(), "CMD", x);
free(x);
}
/* nothing to log from now on. close the log files.
*/
log_close();
/* get new pgrp, void tty, etc.
*/
(void) setsid();
/* close the pipe ends that we won't use. this doesn't affect
* the parent, who has to read and write them; it keeps the
* kernel from recording us as a potential client TWICE --
* which would keep it from sending SIGPIPE in otherwise
* appropriate circumstances.
*/
close(stdin_pipe[WRITE_PIPE]);
/* grandchild process. make std{in,out} be the ends of
* pipes opened by our daddy; make stderr go to stdout.
*/
dup2(stdin_pipe[READ_PIPE], STDIN);
dup2(fileno(tmpout), STDOUT);
dup2(STDOUT, STDERR);
/* close the pipe we just dup'ed. The resources will remain.
*/
close(stdin_pipe[READ_PIPE]);
fclose(tmpout);
/* set our login universe. Do this in the grandchild
* so that the child can invoke /usr/lib/sendmail
* without surprises.
*/
do_univ(u);
/* set our directory, uid and gid. Set gid first, since once
* we set uid, we've lost root privledges.
*/
if (setgid(e->gid) !=0) {
char msg[256];
snprintf(msg, 256, "do_command:setgid(%lu) failed: %s",
(unsigned long) e->gid, strerror(errno));
log_it("CRON",getpid(),"error",msg);
exit(ERROR_EXIT);
}
# if defined(BSD) || defined(POSIX)
if (initgroups(env_get("LOGNAME", e->envp), e->gid) !=0) {
char msg[256];
snprintf(msg, 256, "do_command:initgroups(%lu) failed: %s",
(unsigned long) e->gid, strerror(errno));
log_it("CRON",getpid(),"error",msg);
exit(ERROR_EXIT);
}
# endif
#if defined(USE_PAM)
if (pamh != NULL) {
pam_setcred(pamh, PAM_REINITIALIZE_CRED | PAM_SILENT);
}
#endif
if (setuid(e->uid) !=0) { /* we aren't root after this... */
char msg[256];
snprintf(msg, 256, "do_command:setuid(%lu) failed: %s",
(unsigned long) e->uid, strerror(errno));
log_it("CRON",getpid(),"error",msg);
exit(ERROR_EXIT);
}
chdir(env_get("HOME", e->envp));
/* exec the command.
*/
{
char **jobenv = build_env(e->envp);
char *shell = env_get("SHELL", jobenv);
# if DEBUGGING
if (DebugFlags & DTEST) {
fprintf(stderr,
"debug DTEST is on, not exec'ing command.\n");
fprintf(stderr,
"\tcmd='%s' shell='%s'\n", e->cmd, shell);
_exit(OK_EXIT);
}
# endif /*DEBUGGING*/
#ifdef WITH_SELINUX
if (is_selinux_enabled() > 0) {
if (u->scontext != 0L) {
if (setexeccon(u->scontext) < 0 &&
security_getenforce() > 0) {
fprintf(stderr, "Could not set exec context "
"to %s for user %s\n",
u->scontext,u->name);
_exit(ERROR_EXIT);
}
} else if (security_getenforce() > 0) {
fprintf(stderr, "Error, must have a security context "
"for the cron job when in enforcing "
"mode.\nUser %s.\n", u->name);
_exit(ERROR_EXIT);
}
}
#endif
execle(shell, shell, "-c", e->cmd, (char *)0, jobenv);
fprintf(stderr, "%s: execle: %s\n", shell, strerror(errno));
_exit(ERROR_EXIT);
}
break;
default:
/* parent process */
/* write a log message if we want the parent and child
* PID values
*/
if ( (log_level & CRON_LOG_JOBSTART) && (log_level & CRON_LOG_JOBPID)) {
char logcmd[MAX_COMMAND + 8];
snprintf(logcmd, sizeof(logcmd), "[%d] %s", (int) job_pid, e->cmd);
char *x = mkprints((u_char *)logcmd, strlen(logcmd));
log_it(usernm, getpid(), "CMD", x);
free(x);
}
break;
}
children++;
/* middle process, child of original cron, parent of process running
* the user's command.
*/
Debug(DPROC, ("[%d] child continues, closing pipes\n", getpid()))
/* close the end of the pipe that will only be referenced in the
* grandchild process...
*/
close(stdin_pipe[READ_PIPE]);
/*
* write, to the pipe connected to child's stdin, any input specified
* after a % in the crontab entry. while we copy, convert any
* additional %'s to newlines. when done, if some characters were
* written and the last one wasn't a newline, write a newline.
*
* Note that if the input data won't fit into one pipe buffer (2K
* or 4K on most BSD systems), and the child doesn't read its stdin,
* we would block here. thus we must fork again.
*/
if (*input_data && fork() == 0) {
register FILE *out = fdopen(stdin_pipe[WRITE_PIPE], "w");
register int need_newline = FALSE;
register int escaped = FALSE;
register int ch;
Debug(DPROC, ("[%d] child2 sending data to grandchild\n", getpid()))
/* translation:
* \% -> %
* % -> \n
* \x -> \x for all x != %
*/
while ((ch = *input_data++) != '\0') {
if (escaped) {
if (ch != '%')
putc('\\', out);
} else {
if (ch == '%')
ch = '\n';
}
if (!(escaped = (ch == '\\'))) {
putc(ch, out);
need_newline = (ch != '\n');
}
}
if (escaped)
putc('\\', out);
if (need_newline)
putc('\n', out);
/* close the pipe, causing an EOF condition. fclose causes
* stdin_pipe[WRITE_PIPE] to be closed, too.
*/
fclose(out);
Debug(DPROC, ("[%d] child2 done sending to grandchild\n", getpid()))
exit(0);
}
/* close the pipe to the grandkiddie's stdin, since its wicked uncle
* ernie back there has it open and will close it when he's done.
*/
close(stdin_pipe[WRITE_PIPE]);
children++;
/*
* read output from the grandchild. it's stderr has been redirected to
* it's stdout, which has been redirected to our pipe. if there is any
* output, we'll be mailing it to the user whose crontab this is...
* when the grandchild exits, we'll get EOF.
*/
/* wait for children to die.
*/
int status = 0;
for (; children > 0; children--)
{
char msg[256];
WAIT_T waiter;
PID_T pid;
Debug(DPROC, ("[%d] waiting for grandchild #%d to finish\n",
getpid(), children))
pid = wait(&waiter);
if (pid < OK) {
Debug(DPROC, ("[%d] no more grandchildren\n", getpid()))
break;
}
Debug(DPROC, ("[%d] grandchild #%d finished, status=%04x\n",
getpid(), pid, WEXITSTATUS(waiter)))
if (log_level & CRON_LOG_JOBFAILED) {
if (WIFEXITED(waiter) && WEXITSTATUS(waiter)) {
status = waiter;
snprintf(msg, 256, "grandchild #%d failed with exit "
"status %d", pid, WEXITSTATUS(waiter));
log_it("CRON", getpid(), "error", msg);
} else if (WIFSIGNALED(waiter)) {
status = waiter;
snprintf(msg, 256, "grandchild #%d terminated by signal"
" %d%s", pid, WTERMSIG(waiter),
WCOREDUMP(waiter) ? ", dumped core" : "");
log_it("CRON", getpid(), "error", msg);
}
}
}
// Finally, send any output of the command to the mailer; also, alert
// the user if their job failed. Avoid popening the mailcmd until now
// since sendmail may time out, and to write info about the exit
// status.
long pos;
struct stat mcsb;
fseek(tmpout, 0, SEEK_END);
pos = ftell(tmpout);
fseek(tmpout, 0, SEEK_SET);
Debug(DPROC|DEXT, ("[%d] got %ld bytes data from grandchild tmpfile\n",
getpid(), (long) pos))
if (pos == 0)
goto mail_finished;
// get name of recipient.
if (mailto == NULL)
mailto = usernm;
else if (!*mailto || !safe_p(usernm, mailto))
goto mail_finished;
// get sender address
if (mailfrom == NULL || !*mailfrom || !safe_p(usernm, mailfrom)) {
mailfrom = "root (Cron Daemon)";
}
/* Don't send mail if MAILCMD is not available */
if (stat(MAILCMD, &mcsb) != 0) {
Debug(DPROC|DEXT, ("%s not found, not sending mail\n", MAILCMD))
if (pos > 0) {
log_it("CRON", getpid(), "info", "No MTA installed, discarding output");
}
goto mail_finished;
} else {
Debug(DPROC|DEXT, ("%s found, will send mail\n", MAILCMD))
}
register FILE *mail = NULL;
register int bytes = 0;
register char **env;
char **jobenv = build_env(e->envp);
auto char mailcmd[MAX_COMMAND];
auto char hostname[MAXHOSTNAMELEN];
char *content_type = env_get("CONTENT_TYPE",jobenv),
*content_transfer_encoding = env_get("CONTENT_TRANSFER_ENCODING",jobenv);
int encoding_auto = 0;
(void) gethostname(hostname, MAXHOSTNAMELEN);
(void) snprintf(mailcmd, sizeof(mailcmd),
MAILARGS, MAILCMD, mailto);
if (!(mail = cron_popen(mailcmd, "w", e))) {
perror(MAILCMD);
(void) _exit(ERROR_EXIT);
}
fprintf(mail, "From: %s\n", mailfrom);
fprintf(mail, "To: %s\n", mailto);
fprintf(mail, "Subject: Cron <%s@%s> %s%s\n",
usernm,
fqdn_in_subject ? hostname : first_word(hostname, "."),
e->cmd, status?" (failed)":"");
# if defined(MAIL_DATE)
fprintf(mail, "Date: %s\n",
arpadate(&StartTime));
# endif /* MAIL_DATE */
fprintf(mail, "MIME-Version: 1.0\n");
if (content_type == 0L) {
fprintf(mail, "Content-Type: text/plain; charset=%s\n",
cron_default_mail_charset);
} else {
/* user specified Content-Type header.
* disallow new-lines for security reasons
* (else users could specify arbitrary mail headers!)
*/
char *nl = content_type;
size_t ctlen = strlen(content_type);
while ((*nl != '\0') &&
((nl=strchr(nl,'\n')) != 0L) &&
(nl < (content_type+ctlen))) {
*nl = ' ';
}
fprintf(mail,"Content-Type: %s\n", content_type);
}
if (content_transfer_encoding != 0L) {
char *nl = content_transfer_encoding;
size_t ctlen = strlen(content_transfer_encoding);
while ((*nl != '\0') &&
((nl = strchr(nl,'\n')) != 0L) &&
(nl < (content_transfer_encoding+ctlen))) {
*nl = ' ';
}
} else {
content_transfer_encoding = DEFAULT_CONTENT_TRANSFER_ENCODING;
}
encoding_auto = strcmp (content_transfer_encoding,"auto") == 0;
fprintf(mail,"Content-Transfer-Encoding: %s\n",
encoding_auto ? "quoted-printable"
: content_transfer_encoding);
for (env = e->envp; *env; env++)
fprintf(mail, "X-Cron-Env: <%s>\n",
*env);
fputc('\n', mail);
// Append the actual output of the child to the mail
char buf[4096];
int ret, remain;
/* A QP character results in 3 characters. Inserted soft line breaks
* may need a bit more. 4 is more than enough over the whole buffer.
*/
char buf_encoded[4 * sizeof(buf)];
char *buf_out = buf;
int qp_line_length = 0;
while(1) {
if ((ret = fread(buf, 1, sizeof(buf), tmpout)) == 0)
break;
if (encoding_auto) {
// Quoted-printable encoding according to RFC 2045, 6.7
char *in, *out = buf_encoded;
for (in = buf; in < buf + ret; in++) {
// maximum output line width is 76 characters
if (qp_line_length > 72) {
*out++ = '=';
*out++ = '\n';
qp_line_length = 0;
}
if (*in == '\n') {
// encoded lines may not end with SPACE or TAB
if (out > buf_encoded
&& (out[-1] == ' ' || out[-1] == '\t')) {
*out++ = '=';
*out++ = '\n';
}
*out++ = *in;
qp_line_length = 0;
} else if ((*in >= 33 && *in <= 126 && *in != '=')
|| ((*in == ' ' || *in == '\t')
&& in + 1 < buf + ret)) {
*out++ = *in;
qp_line_length++;
} else {
int r = sprintf(out, "=%02X", (unsigned char)*in);
out += r;
qp_line_length += r;
}
}
buf_out = buf_encoded;
ret = out - buf_encoded;
}
for (remain = ret; remain != 0; ) {
ret = fwrite(buf_out, 1, remain, mail);
if (ret > 0) {
remain -= ret;
bytes += ret;
continue;
}
// XXX error
break;
}
}
Debug(DPROC, ("[%d] closing pipe to mail\n", getpid()))
status = cron_pclose(mail);
/* if there was output and we could not mail it,
* log the facts so the poor user can figure out
* what's going on.
*/
if (status) {
char buf[MAX_TEMPSTR];
snprintf(buf, MAX_TEMPSTR,
"mailed %d byte%s of output "
"but got status 0x%04x from MTA\n",
bytes, (bytes==1)?"":"s", status);
log_it(usernm, getpid(), "MAIL", buf);
}
if (ferror(tmpout)) {
log_it(usernm, getpid(), "MAIL", "stream error reading output");
}
mail_finished:
fclose(tmpout);
if (log_level & CRON_LOG_JOBEND) {
char *x;
if (log_level & CRON_LOG_JOBPID) {
char logcmd[MAX_COMMAND + 8];
snprintf(logcmd, sizeof(logcmd), "[%d] %s", (int) job_pid, e->cmd);
x = mkprints((u_char *)logcmd, strlen(logcmd));
} else {
x = mkprints((u_char *)e->cmd, strlen(e->cmd));
}
log_it(usernm, job_pid, "END", x);
free(x);
}
#if defined(USE_PAM)
pam_setcred(pamh, PAM_DELETE_CRED | PAM_SILENT);
retcode = pam_close_session(pamh, PAM_SILENT);
pam_end(pamh, retcode);
#endif
}
static void
do_univ(user *u)
{
#if defined(sequent)
/* Dynix (Sequent) hack to put the user associated with
* the passed user structure into the ATT universe if
* necessary. We have to dig the gecos info out of
* the user's password entry to see if the magic
* "universe(att)" string is present.
*/
struct passwd *p;
char *s;
int i;
p = getpwuid(u->uid);
(void) endpwent();
if (p == NULL)
return;
s = p->pw_gecos;
for (i = 0; i < 4; i++)
{
if ((s = strchr(s, ',')) == NULL)
return;
s++;
}
if (strcmp(s, "universe(att)"))
return;
(void) universe(U_ATT);
#endif
}
|