pax.c revision 81601
11556Srgrimes/*-
21556Srgrimes * Copyright (c) 1992 Keith Muller.
31556Srgrimes * Copyright (c) 1992, 1993
41556Srgrimes *	The Regents of the University of California.  All rights reserved.
51556Srgrimes *
61556Srgrimes * This code is derived from software contributed to Berkeley by
71556Srgrimes * Keith Muller of the University of California, San Diego.
81556Srgrimes *
91556Srgrimes * Redistribution and use in source and binary forms, with or without
101556Srgrimes * modification, are permitted provided that the following conditions
111556Srgrimes * are met:
121556Srgrimes * 1. Redistributions of source code must retain the above copyright
131556Srgrimes *    notice, this list of conditions and the following disclaimer.
141556Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
151556Srgrimes *    notice, this list of conditions and the following disclaimer in the
161556Srgrimes *    documentation and/or other materials provided with the distribution.
171556Srgrimes * 3. All advertising materials mentioning features or use of this software
181556Srgrimes *    must display the following acknowledgement:
191556Srgrimes *	This product includes software developed by the University of
201556Srgrimes *	California, Berkeley and its contributors.
211556Srgrimes * 4. Neither the name of the University nor the names of its contributors
221556Srgrimes *    may be used to endorse or promote products derived from this software
231556Srgrimes *    without specific prior written permission.
241556Srgrimes *
251556Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
261556Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
271556Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
281556Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
291556Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
301556Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
311556Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
321556Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
331556Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
341556Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
351556Srgrimes * SUCH DAMAGE.
361556Srgrimes */
371556Srgrimes
381556Srgrimes#ifndef lint
3920420Sstevestatic char const copyright[] =
401556Srgrimes"@(#) Copyright (c) 1992, 1993\n\
411556Srgrimes	The Regents of the University of California.  All rights reserved.\n";
421556Srgrimes#endif /* not lint */
431556Srgrimes
441556Srgrimes#ifndef lint
4536049Scharnier#if 0
4636049Scharnierstatic char sccsid[] = "@(#)pax.c	8.2 (Berkeley) 4/18/94";
4736049Scharnier#endif
4836049Scharnierstatic const char rcsid[] =
4950471Speter  "$FreeBSD: head/bin/pax/pax.c 81601 2001-08-13 21:54:47Z peter $";
501556Srgrimes#endif /* not lint */
511556Srgrimes
521556Srgrimes#include <sys/types.h>
531556Srgrimes#include <sys/stat.h>
541556Srgrimes#include <sys/time.h>
551556Srgrimes#include <sys/resource.h>
5676286Skris#include <err.h>
5731666Seivind#include <errno.h>
5876351Skris#include <fcntl.h>
5931666Seivind#include <locale.h>
6076016Skris#include <paths.h>
611556Srgrimes#include <signal.h>
6231666Seivind#include <stdio.h>
6331666Seivind#include <stdlib.h>
6478732Sdd#include <string.h>
651556Srgrimes#include <unistd.h>
661556Srgrimes#include "pax.h"
671556Srgrimes#include "extern.h"
681556Srgrimesstatic int gen_init __P((void));
691556Srgrimes
701556Srgrimes/*
711556Srgrimes * PAX main routines, general globals and some simple start up routines
721556Srgrimes */
731556Srgrimes
741556Srgrimes/*
751556Srgrimes * Variables that can be accessed by any routine within pax
761556Srgrimes */
771556Srgrimesint	act = DEFOP;		/* read/write/append/copy */
781556SrgrimesFSUB	*frmt = NULL;		/* archive format type */
791556Srgrimesint	cflag;			/* match all EXCEPT pattern/file */
8076351Skrisint	cwdfd;			/* starting cwd */
811556Srgrimesint	dflag;			/* directory member match only  */
821556Srgrimesint	iflag;			/* interactive file/archive rename */
831556Srgrimesint	kflag;			/* do not overwrite existing files */
841556Srgrimesint	lflag;			/* use hard links when possible */
851556Srgrimesint	nflag;			/* select first archive member match */
861556Srgrimesint	tflag;			/* restore access time after read */
871556Srgrimesint	uflag;			/* ignore older modification time files */
881556Srgrimesint	vflag;			/* produce verbose output */
891556Srgrimesint	Dflag;			/* same as uflag except inode change time */
901556Srgrimesint	Hflag;			/* follow command line symlinks (write only) */
911556Srgrimesint	Lflag;			/* follow symlinks when writing */
921556Srgrimesint	Xflag;			/* archive files with same device id only */
931556Srgrimesint	Yflag;			/* same as Dflg except after name mode */
941556Srgrimesint	Zflag;			/* same as uflg except after name mode */
951556Srgrimesint	vfpart;			/* is partial verbose output in progress */
961556Srgrimesint	patime = 1;		/* preserve file access time */
971556Srgrimesint	pmtime = 1;		/* preserve file modification times */
9876351Skrisint	nodirs;			/* do not create directories as needed */
991556Srgrimesint	pmode;			/* preserve file mode bits */
1001556Srgrimesint	pids;			/* preserve file uid/gid */
10176351Skrisint	rmleadslash = 0;	/* remove leading '/' from pathnames */
1021556Srgrimesint	exit_val;		/* exit value */
1031556Srgrimesint	docrc;			/* check/create file crc */
1041556Srgrimeschar	*dirptr;		/* destination dir in a copy */
1051556Srgrimeschar	*argv0;			/* root of argv[0] */
10676351Skrissigset_t s_mask;		/* signal mask for cleanup critical sect */
10781601SpeterFILE	*listf;			/* file pointer to print file list to */
10876016Skrischar	*tempfile;		/* tempfile to use for mkstemp(3) */
10976016Skrischar	*tempbase;		/* basename of tempfile to use for mkstemp(3) */
1101556Srgrimes
1111556Srgrimes/*
1121556Srgrimes *	PAX - Portable Archive Interchange
1131556Srgrimes *
1141556Srgrimes * 	A utility to read, write, and write lists of the members of archive
1151556Srgrimes *	files and copy directory hierarchies. A variety of archive formats
1161556Srgrimes *	are supported (some are described in POSIX 1003.1 10.1):
1171556Srgrimes *
1181556Srgrimes *		ustar - 10.1.1 extended tar interchange format
1191556Srgrimes *		cpio  - 10.1.2 extended cpio interchange format
1201556Srgrimes *		tar - old BSD 4.3 tar format
1211556Srgrimes *		binary cpio - old cpio with binary header format
1221556Srgrimes *		sysVR4 cpio -  with and without CRC
1231556Srgrimes *
1241556Srgrimes * This version is a superset of IEEE Std 1003.2b-d3
1251556Srgrimes *
1261556Srgrimes * Summary of Extensions to the IEEE Standard:
1271556Srgrimes *
1281556Srgrimes * 1	READ ENHANCEMENTS
1291556Srgrimes * 1.1	Operations which read archives will continue to operate even when
1308855Srgrimes *	processing archives which may be damaged, truncated, or fail to meet
1311556Srgrimes *	format specs in several different ways. Damaged sections of archives
1321556Srgrimes *	are detected and avoided if possible. Attempts will be made to resync
1331556Srgrimes *	archive read operations even with badly damaged media.
1341556Srgrimes * 1.2	Blocksize requirements are not strictly enforced on archive read.
1351556Srgrimes *	Tapes which have variable sized records can be read without errors.
1361556Srgrimes * 1.3	The user can specify via the non-standard option flag -E if error
1371556Srgrimes *	resync operation should stop on a media error, try a specified number
1381556Srgrimes *	of times to correct, or try to correct forever.
1391556Srgrimes * 1.4	Sparse files (lseek holes) stored on the archive (but stored with blocks
1401556Srgrimes *	of all zeros will be restored with holes appropriate for the target
1411556Srgrimes *	filesystem
1421556Srgrimes * 1.5	The user is notified whenever something is found during archive
1431556Srgrimes *	read operations which violates spec (but the read will continue).
1441556Srgrimes * 1.6	Multiple archive volumes can be read and may span over different
1458855Srgrimes *	archive devices
1461556Srgrimes * 1.7	Rigidly restores all file attributes exactly as they are stored on the
1471556Srgrimes *	archive.
1481556Srgrimes * 1.8	Modification change time ranges can be specified via multiple -T
1491556Srgrimes *	options. These allow a user to select files whose modification time
1501556Srgrimes *	lies within a specific time range.
1511556Srgrimes * 1.9	Files can be selected based on owner (user name or uid) via one or more
1521556Srgrimes *	-U options.
1531556Srgrimes * 1.10	Files can be selected based on group (group name or gid) via one o
1541556Srgrimes *	more -G options.
15546684Skris * 1.11	File modification time can be checked against existing file after
1561556Srgrimes *	name modification (-Z)
1571556Srgrimes *
1581556Srgrimes * 2	WRITE ENHANCEMENTS
1591556Srgrimes * 2.1	Write operation will stop instead of allowing a user to create a flawed
1601556Srgrimes *	flawed archive (due to any problem).
16146684Skris * 2.2	Archives written by pax are forced to strictly conform to both the
16246684Skris *	archive and pax the specific format specifications.
1631556Srgrimes * 2.3	Blocking size and format is rigidly enforced on writes.
1641556Srgrimes * 2.4	Formats which may exhibit header overflow problems (they have fields
1651556Srgrimes *	too small for large file systems, such as inode number storage), use
1661556Srgrimes *	routines designed to repair this problem. These techniques still
1671556Srgrimes *	conform to both pax and format specifications, but no longer truncate
1681556Srgrimes *	these fields. This removes any restrictions on using these archive
1691556Srgrimes *	formats on large file systems.
1701556Srgrimes * 2.5	Multiple archive volumes can be written and may span over different
1718855Srgrimes *	archive devices
1721556Srgrimes * 2.6	A archive volume record limit allows the user to specify the number
1731556Srgrimes *	of bytes stored on an archive volume. When reached the user is
1741556Srgrimes *	prompted for the next archive volume. This is specified with the
17546684Skris *	non-standard -B flag. The limit is rounded up to the next blocksize.
1761556Srgrimes * 2.7	All archive padding during write use zero filled sections. This makes
1771556Srgrimes *	it much easier to pull data out of flawed archive during read
1781556Srgrimes *	operations.
1791556Srgrimes * 2.8	Access time reset with the -t applies to all file nodes (including
1801556Srgrimes *	directories).
1811556Srgrimes * 2.9	Symbolic links can be followed with -L (optional in the spec).
1821556Srgrimes * 2.10	Modification or inode change time ranges can be specified via
1831556Srgrimes *	multiple -T options. These allow a user to select files whose
1841556Srgrimes *	modification or inode change time lies within a specific time range.
1851556Srgrimes * 2.11	Files can be selected based on owner (user name or uid) via one or more
1861556Srgrimes *	-U options.
1871556Srgrimes * 2.12	Files can be selected based on group (group name or gid) via one o
1881556Srgrimes *	more -G options.
1891556Srgrimes * 2.13	Symlinks which appear on the command line can be followed (without
1901556Srgrimes *	following other symlinks; -H flag)
1911556Srgrimes *
1921556Srgrimes * 3	COPY ENHANCEMENTS
1931556Srgrimes * 3.1	Sparse files (lseek holes) can be copied without expanding the holes
1941556Srgrimes *	into zero filled blocks. The file copy is created with holes which are
1951556Srgrimes *	appropriate for the target filesystem
1961556Srgrimes * 3.2	Access time as well as modification time on copied file trees can be
1971556Srgrimes *	preserved with the appropriate -p options.
1981556Srgrimes * 3.3	Access time reset with the -t applies to all file nodes (including
1991556Srgrimes *	directories).
2001556Srgrimes * 3.4	Symbolic links can be followed with -L (optional in the spec).
2011556Srgrimes * 3.5	Modification or inode change time ranges can be specified via
2021556Srgrimes *	multiple -T options. These allow a user to select files whose
2031556Srgrimes *	modification or inode change time lies within a specific time range.
2041556Srgrimes * 3.6	Files can be selected based on owner (user name or uid) via one or more
2051556Srgrimes *	-U options.
2061556Srgrimes * 3.7	Files can be selected based on group (group name or gid) via one o
2071556Srgrimes *	more -G options.
2081556Srgrimes * 3.8	Symlinks which appear on the command line can be followed (without
2091556Srgrimes *	following other symlinks; -H flag)
21046684Skris * 3.9  File inode change time can be checked against existing file before
2111556Srgrimes *	name modification (-D)
21246684Skris * 3.10 File inode change time can be checked against existing file after
2131556Srgrimes *	name modification (-Y)
21446684Skris * 3.11	File modification time can be checked against existing file after
2151556Srgrimes *	name modification (-Z)
2161556Srgrimes *
2171556Srgrimes * 4	GENERAL ENHANCEMENTS
2188855Srgrimes * 4.1	Internal structure is designed to isolate format dependent and
2191556Srgrimes *	independent functions. Formats are selected via a format driver table.
2201556Srgrimes *	This encourages the addition of new archive formats by only having to
2211556Srgrimes *	write those routines which id, read and write the archive header.
2221556Srgrimes */
2231556Srgrimes
2241556Srgrimes/*
2251556Srgrimes * main()
2261556Srgrimes *	parse options, set up and operate as specified by the user.
2271556Srgrimes *	any operational flaw will set exit_val to non-zero
2281556Srgrimes * Return: 0 if ok, 1 otherwise
2291556Srgrimes */
2301556Srgrimes
23176017Skris#ifdef __STDC__
2321556Srgrimesint
2331556Srgrimesmain(int argc, char **argv)
2341556Srgrimes#else
2351556Srgrimesint
2361556Srgrimesmain(argc, argv)
2371556Srgrimes	int argc;
2381556Srgrimes	char **argv;
2391556Srgrimes#endif
2401556Srgrimes{
24176016Skris	char *tmpdir;
24276016Skris	size_t tdlen;
24376016Skris
24417517Sache	(void) setlocale(LC_ALL, "");
24581601Speter	listf = stderr;
24676351Skris	/*
24776351Skris	 * Keep a reference to cwd, so we can always come back home.
24876351Skris	 */
24976351Skris	cwdfd = open(".", O_RDONLY);
25076351Skris	if (cwdfd < 0) {
25176351Skris		syswarn(0, errno, "Can't open current working directory.");
25276351Skris		return(exit_val);
25376351Skris	}
25476016Skris
2551556Srgrimes	/*
25676016Skris	 * Where should we put temporary files?
25776016Skris	 */
25876016Skris	if ((tmpdir = getenv("TMPDIR")) == NULL || *tmpdir == '\0')
25976016Skris		tmpdir = _PATH_TMP;
26076016Skris	tdlen = strlen(tmpdir);
26176016Skris	while(tdlen > 0 && tmpdir[tdlen - 1] == '/')
26276016Skris		tdlen--;
26376016Skris	tempfile = malloc(tdlen + 1 + sizeof(_TFILE_BASE));
26476016Skris	if (tempfile == NULL) {
26576017Skris		paxwarn(1, "Cannot allocate memory for temp file name.");
26676016Skris		return(exit_val);
26776016Skris	}
26876016Skris	if (tdlen)
26976016Skris		memcpy(tempfile, tmpdir, tdlen);
27076016Skris	tempbase = tempfile + tdlen;
27176016Skris	*tempbase++ = '/';
27276016Skris
27376016Skris	/*
2741556Srgrimes	 * parse options, determine operational mode, general init
2751556Srgrimes	 */
2761556Srgrimes	options(argc, argv);
27776019Skris	if ((gen_init() < 0) || (tty_init() < 0))
2781556Srgrimes		return(exit_val);
2791556Srgrimes
2801556Srgrimes	/*
2818855Srgrimes	 * select a primary operation mode
2821556Srgrimes	 */
2831556Srgrimes	switch(act) {
2841556Srgrimes	case EXTRACT:
2851556Srgrimes		extract();
2861556Srgrimes		break;
2871556Srgrimes	case ARCHIVE:
2881556Srgrimes		archive();
2891556Srgrimes		break;
2901556Srgrimes	case APPND:
29176286Skris		if (gzip_program != NULL)
29276286Skris			err(1, "can not gzip while appending");
2931556Srgrimes		append();
2941556Srgrimes		break;
2951556Srgrimes	case COPY:
2961556Srgrimes		copy();
2971556Srgrimes		break;
2981556Srgrimes	default:
2991556Srgrimes	case LIST:
3001556Srgrimes		list();
3011556Srgrimes		break;
3021556Srgrimes	}
3031556Srgrimes	return(exit_val);
3041556Srgrimes}
3051556Srgrimes
3061556Srgrimes/*
3071556Srgrimes * sig_cleanup()
3081556Srgrimes *	when interrupted we try to do whatever delayed processing we can.
3091556Srgrimes *	This is not critical, but we really ought to limit our damage when we
3101556Srgrimes *	are aborted by the user.
3111556Srgrimes * Return:
3121556Srgrimes *	never....
3131556Srgrimes */
3141556Srgrimes
31576017Skris#ifdef __STDC__
3161556Srgrimesvoid
3171556Srgrimessig_cleanup(int which_sig)
3181556Srgrimes#else
3191556Srgrimesvoid
3201556Srgrimessig_cleanup(which_sig)
3211556Srgrimes	int which_sig;
3221556Srgrimes#endif
3231556Srgrimes{
3241556Srgrimes	/*
3251556Srgrimes	 * restore modes and times for any dirs we may have created
3261556Srgrimes	 * or any dirs we may have read. Set vflag and vfpart so the user
3271556Srgrimes	 * will clearly see the message on a line by itself.
3281556Srgrimes	 */
3291556Srgrimes	vflag = vfpart = 1;
3301556Srgrimes	if (which_sig == SIGXCPU)
33176017Skris		paxwarn(0, "Cpu time limit reached, cleaning up.");
3321556Srgrimes	else
33376017Skris		paxwarn(0, "Signal caught, cleaning up.");
3341556Srgrimes
3351556Srgrimes	ar_close();
3361556Srgrimes	proc_dir();
3371556Srgrimes	if (tflag)
3381556Srgrimes		atdir_end();
3391556Srgrimes	exit(1);
3401556Srgrimes}
3411556Srgrimes
3421556Srgrimes/*
3431556Srgrimes * gen_init()
3441556Srgrimes *	general setup routines. Not all are required, but they really help
3451556Srgrimes *	when dealing with a medium to large sized archives.
3461556Srgrimes */
3471556Srgrimes
34876017Skris#ifdef __STDC__
3491556Srgrimesstatic int
3501556Srgrimesgen_init(void)
3511556Srgrimes#else
3521556Srgrimesstatic int
3531556Srgrimesgen_init()
3541556Srgrimes#endif
3551556Srgrimes{
3561556Srgrimes	struct rlimit reslimit;
3571556Srgrimes	struct sigaction n_hand;
3581556Srgrimes	struct sigaction o_hand;
3591556Srgrimes
3601556Srgrimes	/*
3611556Srgrimes	 * Really needed to handle large archives. We can run out of memory for
3621556Srgrimes	 * internal tables really fast when we have a whole lot of files...
3631556Srgrimes	 */
3641556Srgrimes	if (getrlimit(RLIMIT_DATA , &reslimit) == 0){
3651556Srgrimes		reslimit.rlim_cur = reslimit.rlim_max;
3661556Srgrimes		(void)setrlimit(RLIMIT_DATA , &reslimit);
3671556Srgrimes	}
3681556Srgrimes
3691556Srgrimes	/*
3701556Srgrimes	 * should file size limits be waived? if the os limits us, this is
3711556Srgrimes	 * needed if we want to write a large archive
3721556Srgrimes	 */
3731556Srgrimes	if (getrlimit(RLIMIT_FSIZE , &reslimit) == 0){
3741556Srgrimes		reslimit.rlim_cur = reslimit.rlim_max;
3751556Srgrimes		(void)setrlimit(RLIMIT_FSIZE , &reslimit);
3761556Srgrimes	}
3771556Srgrimes
3781556Srgrimes	/*
3791556Srgrimes	 * increase the size the stack can grow to
3801556Srgrimes	 */
3811556Srgrimes	if (getrlimit(RLIMIT_STACK , &reslimit) == 0){
3821556Srgrimes		reslimit.rlim_cur = reslimit.rlim_max;
3831556Srgrimes		(void)setrlimit(RLIMIT_STACK , &reslimit);
3841556Srgrimes	}
3851556Srgrimes
3861556Srgrimes	/*
3871556Srgrimes	 * not really needed, but doesn't hurt
3881556Srgrimes	 */
3891556Srgrimes	if (getrlimit(RLIMIT_RSS , &reslimit) == 0){
3901556Srgrimes		reslimit.rlim_cur = reslimit.rlim_max;
3911556Srgrimes		(void)setrlimit(RLIMIT_RSS , &reslimit);
3921556Srgrimes	}
3931556Srgrimes
3941556Srgrimes	/*
3951556Srgrimes	 * signal handling to reset stored directory times and modes. Since
3961556Srgrimes	 * we deal with broken pipes via failed writes we ignore it. We also
3971556Srgrimes	 * deal with any file size limit thorugh failed writes. Cpu time
3981556Srgrimes	 * limits are caught and a cleanup is forced.
3991556Srgrimes	 */
4001556Srgrimes	if ((sigemptyset(&s_mask) < 0) || (sigaddset(&s_mask, SIGTERM) < 0) ||
4011556Srgrimes	    (sigaddset(&s_mask,SIGINT) < 0)||(sigaddset(&s_mask,SIGHUP) < 0) ||
4021556Srgrimes	    (sigaddset(&s_mask,SIGPIPE) < 0)||(sigaddset(&s_mask,SIGQUIT)<0) ||
4031556Srgrimes	    (sigaddset(&s_mask,SIGXCPU) < 0)||(sigaddset(&s_mask,SIGXFSZ)<0)) {
40476017Skris		paxwarn(1, "Unable to set up signal mask");
4051556Srgrimes		return(-1);
4061556Srgrimes	}
40776351Skris	memset(&n_hand, 0, sizeof n_hand);
4081556Srgrimes	n_hand.sa_mask = s_mask;
4091556Srgrimes	n_hand.sa_flags = 0;
4101556Srgrimes	n_hand.sa_handler = sig_cleanup;
4111556Srgrimes
4121556Srgrimes	if ((sigaction(SIGHUP, &n_hand, &o_hand) < 0) &&
4138855Srgrimes	    (o_hand.sa_handler == SIG_IGN) &&
4141556Srgrimes	    (sigaction(SIGHUP, &o_hand, &o_hand) < 0))
4151556Srgrimes		goto out;
4161556Srgrimes
4171556Srgrimes	if ((sigaction(SIGTERM, &n_hand, &o_hand) < 0) &&
4188855Srgrimes	    (o_hand.sa_handler == SIG_IGN) &&
4191556Srgrimes	    (sigaction(SIGTERM, &o_hand, &o_hand) < 0))
4201556Srgrimes		goto out;
4211556Srgrimes
4221556Srgrimes	if ((sigaction(SIGINT, &n_hand, &o_hand) < 0) &&
4238855Srgrimes	    (o_hand.sa_handler == SIG_IGN) &&
4241556Srgrimes	    (sigaction(SIGINT, &o_hand, &o_hand) < 0))
4251556Srgrimes		goto out;
4261556Srgrimes
4271556Srgrimes	if ((sigaction(SIGQUIT, &n_hand, &o_hand) < 0) &&
4288855Srgrimes	    (o_hand.sa_handler == SIG_IGN) &&
4291556Srgrimes	    (sigaction(SIGQUIT, &o_hand, &o_hand) < 0))
4301556Srgrimes		goto out;
4311556Srgrimes
4321556Srgrimes	if ((sigaction(SIGXCPU, &n_hand, &o_hand) < 0) &&
4338855Srgrimes	    (o_hand.sa_handler == SIG_IGN) &&
4341556Srgrimes	    (sigaction(SIGXCPU, &o_hand, &o_hand) < 0))
4351556Srgrimes		goto out;
4361556Srgrimes
4371556Srgrimes	n_hand.sa_handler = SIG_IGN;
4381556Srgrimes	if ((sigaction(SIGPIPE, &n_hand, &o_hand) < 0) ||
4391556Srgrimes	    (sigaction(SIGXFSZ, &n_hand, &o_hand) < 0))
4401556Srgrimes		goto out;
4411556Srgrimes	return(0);
4421556Srgrimes
4431556Srgrimes    out:
44476017Skris	syswarn(1, errno, "Unable to set up signal handler");
4451556Srgrimes	return(-1);
4461556Srgrimes}
447