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
|
/* $OpenBSD: popen.c,v 1.36 2013/04/29 00:28:23 okan Exp $ */
/* $NetBSD: popen.c,v 1.6 1997/05/13 06:48:42 mikel Exp $ */
/*
* Copyright (c) 1980, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include "rcv.h"
#include <sys/wait.h>
#include <fcntl.h>
#include <errno.h>
#include <stdarg.h>
#include <lockfile.h>
#include "extern.h"
#define READ 0
#define WRITE 1
struct fp {
FILE *fp;
int pipe;
pid_t pid;
struct fp *link;
};
static struct fp *fp_head;
struct child {
pid_t pid;
char done;
char free;
int status;
struct child *link;
};
static struct child *child, *child_freelist = NULL;
static struct child *findchild(pid_t, int);
static void delchild(struct child *);
static pid_t file_pid(FILE *);
static int handle_spool_locks(int);
FILE *
Fopen(char *file, char *mode)
{
FILE *fp;
if ((fp = fopen(file, mode)) != NULL) {
register_file(fp, 0, 0);
(void)fcntl(fileno(fp), F_SETFD, FD_CLOEXEC);
}
return(fp);
}
FILE *
Fdopen(int fd, char *mode)
{
FILE *fp;
if ((fp = fdopen(fd, mode)) != NULL) {
register_file(fp, 0, 0);
(void)fcntl(fileno(fp), F_SETFD, FD_CLOEXEC);
}
return(fp);
}
int
Fclose(FILE *fp)
{
unregister_file(fp);
return(fclose(fp));
}
FILE *
Popen(char *cmd, char *mode)
{
int p[2];
int myside, hisside, fd0, fd1;
pid_t pid;
sigset_t nset;
FILE *fp;
if (pipe(p) < 0)
return(NULL);
(void)fcntl(p[READ], F_SETFD, FD_CLOEXEC);
(void)fcntl(p[WRITE], F_SETFD, FD_CLOEXEC);
if (*mode == 'r') {
myside = p[READ];
hisside = fd0 = fd1 = p[WRITE];
} else {
myside = p[WRITE];
hisside = fd0 = p[READ];
fd1 = -1;
}
sigemptyset(&nset);
pid = start_command(value("SHELL"), &nset, fd0, fd1, "-c", cmd, NULL);
if (pid < 0) {
(void)close(p[READ]);
(void)close(p[WRITE]);
return(NULL);
}
(void)close(hisside);
if ((fp = fdopen(myside, mode)) != NULL)
register_file(fp, 1, pid);
return(fp);
}
int
Pclose(FILE *ptr)
{
int i;
sigset_t nset, oset;
i = file_pid(ptr);
unregister_file(ptr);
(void)fclose(ptr);
sigemptyset(&nset);
sigaddset(&nset, SIGINT);
sigaddset(&nset, SIGHUP);
sigprocmask(SIG_BLOCK, &nset, &oset);
i = wait_child(i);
sigprocmask(SIG_SETMASK, &oset, NULL);
return(i);
}
void
close_all_files(void)
{
while (fp_head)
if (fp_head->pipe)
(void)Pclose(fp_head->fp);
else
(void)Fclose(fp_head->fp);
}
void
register_file(FILE *fp, int pipe, pid_t pid)
{
struct fp *fpp;
if ((fpp = (struct fp *)malloc(sizeof(*fpp))) == NULL)
errx(1, "Out of memory");
fpp->fp = fp;
fpp->pipe = pipe;
fpp->pid = pid;
fpp->link = fp_head;
fp_head = fpp;
}
void
unregister_file(FILE *fp)
{
struct fp **pp, *p;
for (pp = &fp_head; (p = *pp) != NULL; pp = &p->link)
if (p->fp == fp) {
*pp = p->link;
(void)free(p);
return;
}
errx(1, "Invalid file pointer");
}
static pid_t
file_pid(FILE *fp)
{
struct fp *p;
for (p = fp_head; p; p = p->link)
if (p->fp == fp)
return(p->pid);
errx(1, "Invalid file pointer");
/*NOTREACHED*/
}
/*
* Run a command without a shell, with optional arguments and splicing
* of stdin (-1 means none) and stdout. The command name can be a sequence
* of words.
* Signals must be handled by the caller.
* "nset" contains the signals to ignore in the new process.
* SIGINT is enabled unless it's in "nset".
*/
pid_t
start_commandv(char *cmd, sigset_t *nset, int infd, int outfd, va_list args)
{
pid_t pid;
if ((pid = fork()) < 0) {
warn("fork");
return(-1);
}
if (pid == 0) {
char *argv[100];
int i = getrawlist(cmd, argv, sizeof(argv)/ sizeof(*argv));
while ((argv[i++] = va_arg(args, char *)))
;
argv[i] = NULL;
prepare_child(nset, infd, outfd);
execvp(argv[0], argv);
warn("%s", argv[0]);
_exit(1);
}
return(pid);
}
int
run_command(char *cmd, sigset_t *nset, int infd, int outfd, ...)
{
pid_t pid;
va_list args;
va_start(args, outfd);
pid = start_commandv(cmd, nset, infd, outfd, args);
va_end(args);
if (pid < 0)
return(-1);
return(wait_command(pid));
}
int
start_command(char *cmd, sigset_t *nset, int infd, int outfd, ...)
{
va_list args;
int r;
va_start(args, outfd);
r = start_commandv(cmd, nset, infd, outfd, args);
va_end(args);
return(r);
}
void
prepare_child(sigset_t *nset, int infd, int outfd)
{
int i;
sigset_t eset;
/*
* All file descriptors other than 0, 1, and 2 are supposed to be
* close-on-exec.
*/
if (infd > 0) {
dup2(infd, 0);
} else if (infd != 0) {
/* we don't want the child stealing my stdin input */
close(0);
open(_PATH_DEVNULL, O_RDONLY, 0);
}
if (outfd >= 0 && outfd != 1)
dup2(outfd, 1);
if (nset == NULL)
return;
if (nset != NULL) {
for (i = 1; i < NSIG; i++)
if (sigismember(nset, i))
(void)signal(i, SIG_IGN);
}
if (nset == NULL || !sigismember(nset, SIGINT))
(void)signal(SIGINT, SIG_DFL);
sigemptyset(&eset);
(void)sigprocmask(SIG_SETMASK, &eset, NULL);
}
int
wait_command(pid_t pid)
{
int ret;
ret = wait_child(pid);
if (ret > 0) {
printf("Fatal error, process exited with code %d.\n", ret);
return(-1);
} else if (ret < 0) {
puts("Fatal error in process.");
return(-1);
}
return(0);
}
static struct child *
findchild(pid_t pid, int dont_alloc)
{
struct child **cpp;
for (cpp = &child; *cpp != NULL && (*cpp)->pid != pid;
cpp = &(*cpp)->link)
;
if (*cpp == NULL) {
if (dont_alloc)
return(NULL);
if (child_freelist) {
*cpp = child_freelist;
child_freelist = (*cpp)->link;
} else {
*cpp = (struct child *)malloc(sizeof(struct child));
if (*cpp == NULL)
errx(1, "Out of memory");
}
(*cpp)->pid = pid;
(*cpp)->done = (*cpp)->free = 0;
(*cpp)->link = NULL;
}
return(*cpp);
}
static void
delchild(struct child *cp)
{
struct child **cpp;
for (cpp = &child; *cpp != cp; cpp = &(*cpp)->link)
;
*cpp = cp->link;
cp->link = child_freelist;
child_freelist = cp;
}
/* ARGSUSED */
void
sigchild(int signo)
{
pid_t pid;
int status;
struct child *cp;
int save_errno = errno;
while ((pid = waitpid((pid_t)-1, &status, WNOHANG)) > 0) {
cp = findchild(pid, 1);
if (!cp)
continue;
if (cp->free)
delchild(cp);
else {
cp->done = 1;
cp->status = status;
}
}
errno = save_errno;
}
int wait_status;
/*
* Wait for a specific child to die.
*/
int
wait_child(pid_t pid)
{
struct child *cp;
sigset_t nset, oset;
pid_t rv = 0;
sigemptyset(&nset);
sigaddset(&nset, SIGCHLD);
sigprocmask(SIG_BLOCK, &nset, &oset);
/*
* If we have not already waited on the pid (via sigchild)
* wait on it now. Otherwise, use the wait status stashed
* by sigchild.
*/
cp = findchild(pid, 1);
if (cp == NULL || !cp->done)
rv = waitpid(pid, &wait_status, 0);
else
wait_status = cp->status;
if (cp != NULL)
delchild(cp);
sigprocmask(SIG_SETMASK, &oset, NULL);
if (rv >= 0 && (WIFEXITED(wait_status)))
return (WEXITSTATUS(wait_status));
else
return(-1);
}
/*
* Mark that we will wait for this child via SIGCHLD, or waitpid() manually, and we want its exit status stored.
*/
int
add_child(pid_t pid) {
if (!findchild(pid, 0/* alloc if not present */))
return(-1); // this should never happen
else
return(0);
}
/*
* Mark a child as don't care.
*/
void
free_child(pid_t pid)
{
struct child *cp;
sigset_t nset, oset;
sigemptyset(&nset);
sigaddset(&nset, SIGCHLD);
sigprocmask(SIG_BLOCK, &nset, &oset);
if ((cp = findchild(pid, 0)) != NULL) {
if (cp->done)
delchild(cp);
else
cp->free = 1;
}
sigprocmask(SIG_SETMASK, &oset, NULL);
}
/*
* Lock(1)/unlock(0) mail spool using lockspool(1).
* Returns 1 for success, 0 for failure, -1 for bad usage.
*/
static int
handle_spool_locks(int action)
{
#ifndef DEBIAN
static FILE *lockfp = NULL;
if (action == 0) {
/* Clear the lock */
if (lockfp == NULL) {
fputs("handle_spool_locks: no spool lock to remove.\n",
stderr);
return(-1);
}
(void)Pclose(lockfp);
lockfp = NULL;
} else if (action == 1) {
char *cmd;
char buf[sizeof(_PATH_LOCKSPOOL) + MAXLOGNAME + 1];
/* XXX - lockspool requires root for user arg, we do not */
if (uflag) {
snprintf(buf, sizeof(buf), "%s %s", _PATH_LOCKSPOOL,
myname);
cmd = buf;
} else
cmd = _PATH_LOCKSPOOL;
/* Create the lock */
lockfp = Popen(cmd, "r");
if (lockfp == NULL)
return(0);
if (getc(lockfp) != '1') {
Pclose(lockfp);
lockfp = NULL;
return(0);
}
} else {
(void)fprintf(stderr, "handle_spool_locks: unknown action %d\n",
action);
return(-1);
}
return(1);
#else
int retval;
char lockpath[PATHSIZE];
snprintf(lockpath, PATHSIZE - 1, "%s.lock", mailname);
lockpath[PATHSIZE - 1] = '\0';
if (action == 0) {
/* Clear the lock */
retval = lockfile_remove(lockpath);
if (retval == 0)
return(1);
else
warn("Cannot remove lockfile %s", lockpath);
} else if (action == 1) {
retval = lockfile_create(lockpath, 3, 0);
switch (retval) {
case L_SUCCESS:
return(1);
case L_NAMELEN:
warnx( "Cannot create lockfile %s: %s",
lockpath,
"Recipient name too long."
);
break;
case L_TMPLOCK:
warnx( "Cannot create lockfile %s: %s",
lockpath,
"Error creating temporary lockfile"
);
break;
case L_TMPWRITE:
warnx( "Cannot create lockfile %s: %s",
lockpath,
"Failed to write pid into tmp lockfile."
);
break;
case L_MAXTRYS:
warnx( "Cannot create lockfile %s: %s",
lockpath,
"Failed after max tries."
);
break;
case L_ERROR:
default:
warn( "Cannot create lockfile %s",
lockpath
);
break;
}
}
return(0);
#endif
}
int
spool_lock(void)
{
return(handle_spool_locks(1));
}
int
spool_unlock(void)
{
return(handle_spool_locks(0));
}
|