1 /* $Header: /p/tcsh/cvsroot/tcsh/sh.sem.c,v 3.88 2014/09/08 18:52:15 christos Exp $ */
3 * sh.sem.c: I/O redirections and job forking. A touchy issue!
4 * Most stuff with builtins is incorrect
7 * Copyright (c) 1980, 1991 The Regents of the University of California.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 RCSID("$tcsh: sh.sem.c,v 3.88 2014/09/08 18:52:15 christos Exp $")
42 #endif /*WINNT_NATIVE*/
48 # endif /* CLEX_DUPS */
50 #endif /* CLOSE_ON_EXEC */
52 #if defined(__sparc__) || defined(sparc)
53 # if !defined(MACH) && SYSVREL == 0 && !defined(Lynx) && !defined(BSD4_4) && !defined(__linux__) && !defined(__GNU__) && !defined(__GLIBC__)
55 # endif /* !MACH && SYSVREL == 0 && !Lynx && !BSD4_4 && !glibc */
56 #endif /* __sparc__ || sparc */
59 static void vffree (int);
61 static Char
*splicepipe (struct command
*, Char
*);
62 static void doio (struct command
*, int *, int *);
63 static void chkclob (const char *);
70 * For SVR4, there are problems with pipelines having the first process as
71 * the group leader. The problem occurs when the first process exits before
72 * the others have a chance to setpgid(). This is because in SVR4 you can't
73 * have a zombie as a group leader. The solution I have used is to reverse
74 * the order in which pipelines are started, making the last process the
75 * group leader. (Note I am not using 'pipeline' in the generic sense -- I
76 * mean processes connected by '|'.) I don't know yet if this causes other
79 * All the changes for this are in execute(), and are enclosed in
82 * David Dawes (dawes@physics.su.oz.au) Oct 1991
87 execute(struct command
*t
, volatile int wanttty
, int *pipein
, int *pipeout
,
91 const struct biltins
* volatile bifunc
;
95 static sigset_t csigset
;
97 static int onosigchld
= 0;
99 static int nosigchld
= 0;
110 if ((varval(STRNTslowexec
) == STRNULL
) &&
111 !t
->t_dcdr
&& !t
->t_dcar
&& !t
->t_dflg
&& !didfds
&&
112 (intty
|| intact
) && (t
->t_dtyp
== NODE_COMMAND
) &&
114 if ((t
->t_dcom
[0][0] & (QUOTE
| TRIM
)) == QUOTE
)
115 (void) Strcpy(t
->t_dcom
[0], t
->t_dcom
[0] + 1);
117 if (nt_try_fast_exec(t
) == 0)
121 #endif /* WINNT_NATIVE */
124 * Ed hutchins@sgi.com & Dominic dbg@sgi.com
125 * Sat Feb 25 03:13:11 PST 1995
126 * try implicit cd if we have a 1 word command
128 if (implicit_cd
&& (intty
|| intact
) && t
->t_dcom
&& t
->t_dcom
[0] &&
129 t
->t_dcom
[0][0] && (blklen(t
->t_dcom
) == 1) && !noexec
) {
134 sCName
= dollar(t
->t_dcom
[0]);
135 if (sCName
!= NULL
&& sCName
[0] == '~') {
136 struct Strbuf buf
= Strbuf_INIT
;
137 const Char
*name_end
;
139 for (name_end
= sCName
+ 1; *name_end
!= '\0' && *name_end
!= '/';
142 if (name_end
!= sCName
+ 1) {
145 name
= Strnsave(sCName
+ 1, name_end
- (sCName
+ 1));
146 home
= gethdir(name
);
148 Strbuf_append(&buf
, home
);
151 Strbuf_append(&buf
, name
);
154 Strbuf_append(&buf
, varval(STRhome
));
155 Strbuf_append(&buf
, name_end
);
157 sCName
= Strbuf_finish(&buf
);
160 pathname
= short2str(sCName
);
162 /* if this is a dir, tack a "cd" on as the first arg */
163 if (pathname
!= NULL
&&
164 ((stat(pathname
, &stbuf
) != -1 && S_ISDIR(stbuf
.st_mode
))
166 || (pathname
[0] && pathname
[1] == ':' && pathname
[2] == '\0')
167 #endif /* WINNT_NATIVE */
170 Char
**ot_dcom
= t
->t_dcom
;
172 vCD
[0] = Strsave(STRcd
);
174 t
->t_dcom
= blkspl(vCD
, ot_dcom
);
176 if (implicit_cd
> 1) {
184 * From: Michael Schroeder <mlschroe@immd4.informatik.uni-erlangen.de>
185 * Don't check for wantty > 0...
187 if (t
->t_dflg
& F_AMPERSAND
)
192 if ((t
->t_dcom
[0][0] & (QUOTE
| TRIM
)) == QUOTE
)
193 memmove(t
->t_dcom
[0], t
->t_dcom
[0] + 1,
194 (Strlen(t
->t_dcom
[0] + 1) + 1) * sizeof (*t
->t_dcom
[0]));
195 if ((t
->t_dflg
& F_REPEAT
) == 0)
196 Dfix(t
); /* $ " ' \ */
197 if (t
->t_dcom
[0] == 0) {
204 if (t
->t_dflg
& F_PIPEIN
)
206 #else /* !BACKPIPE */
207 if (t
->t_dflg
& F_PIPEOUT
)
209 #endif /* BACKPIPE */
211 * Must do << early so parent will know where input pointer should be.
212 * If noexec then this is all we do.
214 if (t
->t_dflg
& F_READ
) {
221 setcopy(STRstatus
, STR0
, VAR_READWRITE
);
224 * This mess is the necessary kludge to handle the prefix builtins:
225 * nice, nohup, time. These commands can also be used by themselves,
226 * and this is not handled here. This will also work when loops are
229 while (t
->t_dtyp
== NODE_COMMAND
)
230 if (eq(t
->t_dcom
[0], STRnice
)) {
232 if (strchr("+-", t
->t_dcom
[1][0])) {
235 t
->t_nice
= (unsigned char)getn(t
->t_dcom
[1]);
236 lshift(t
->t_dcom
, 2);
244 lshift(t
->t_dcom
, 1);
251 else if (eq(t
->t_dcom
[0], STRnohup
)) {
253 t
->t_dflg
|= F_NOHUP
;
254 lshift(t
->t_dcom
, 1);
259 else if (eq(t
->t_dcom
[0], STRhup
)) {
262 lshift(t
->t_dcom
, 1);
267 else if (eq(t
->t_dcom
[0], STRtime
)) {
270 lshift(t
->t_dcom
, 1);
276 else if (eq(t
->t_dcom
[0], STRver
))
277 if (t
->t_dcom
[1] && t
->t_dcom
[2]) {
279 t
->t_systype
= getv(t
->t_dcom
[1]);
280 lshift(t
->t_dcom
, 2);
289 /* is it a command */
290 if (t
->t_dtyp
== NODE_COMMAND
) {
292 * Check if we have a builtin function and remember which one.
297 * Continue for builtins that are part of the scripting language
301 if (bifunc
->bfunct
!= (bfunc_t
)dobreak
&&
302 bifunc
->bfunct
!= (bfunc_t
)docontin
&&
303 bifunc
->bfunct
!= (bfunc_t
)doelse
&&
304 bifunc
->bfunct
!= (bfunc_t
)doend
&&
305 bifunc
->bfunct
!= (bfunc_t
)doforeach
&&
306 bifunc
->bfunct
!= (bfunc_t
)dogoto
&&
307 bifunc
->bfunct
!= (bfunc_t
)doif
&&
308 bifunc
->bfunct
!= (bfunc_t
)dorepeat
&&
309 bifunc
->bfunct
!= (bfunc_t
)doswbrk
&&
310 bifunc
->bfunct
!= (bfunc_t
)doswitch
&&
311 bifunc
->bfunct
!= (bfunc_t
)dowhile
&&
312 bifunc
->bfunct
!= (bfunc_t
)dozip
)
316 else { /* not a command */
323 * GrP Executing a command - run jobcmd hook
324 * Don't run for builtins
325 * Don't run if we're not in a tty
326 * Don't run if we're not really executing
329 * CR - Charles Ross Aug 2005
331 * The new behavior is that the jobcmd won't be executed
332 * if stdout (SHOUT) isnt attached to a tty.. IE when
333 * redirecting, or using backquotes etc..
335 if (t
->t_dtyp
== NODE_COMMAND
&& !bifunc
&& !noexec
&& intty
&& isoutatty
) {
336 Char
*cmd
= unparse(t
);
338 cleanup_push(cmd
, xfree
);
344 * We fork only if we are timed, or are not the end of a parenthesized
345 * list and not a simple builtin function. Simple meaning one that is
346 * not pipedout, niced, nohupped, or &'d. It would be nice(?) to not
347 * fork in some of these cases.
351 * Can't have NOFORK for the tail of a pipe - because it is not the
352 * last command spawned (even if it is at the end of a parenthesised
355 if (t
->t_dflg
& F_PIPEIN
)
356 t
->t_dflg
&= ~(F_NOFORK
);
359 * "command | builtin" may cause major misbehaviour as noted in
360 * in the BUGS file entry
361 * Subject: Redirected input to built-in functions misbehaves badly
362 * forking when the builtin is the end of the pipe corrects the
365 if (bifunc
&& (t
->t_dflg
& F_PIPEIN
))
366 t
->t_dflg
&= ~(F_NOFORK
);
367 #endif /* BACKPIPE */
369 * Prevent forking cd, pushd, popd, chdir cause this will cause the
370 * shell not to change dir! (XXX: but only for nice?)
372 if (bifunc
&& (bifunc
->bfunct
== (bfunc_t
)dochngd
||
373 bifunc
->bfunct
== (bfunc_t
)dopushd
||
374 bifunc
->bfunct
== (bfunc_t
)dopopd
))
375 t
->t_dflg
&= ~(F_NICE
);
377 if (((t
->t_dflg
& F_TIME
) || ((t
->t_dflg
& F_NOFORK
) == 0 &&
378 (!bifunc
|| t
->t_dflg
&
379 (F_PIPEOUT
| F_AMPERSAND
| F_NICE
| F_NOHUP
| F_HUP
)))) ||
381 * We have to fork for eval too.
383 (bifunc
&& (t
->t_dflg
& F_PIPEIN
) != 0 &&
384 bifunc
->bfunct
== (bfunc_t
)doeval
)) {
386 if (t
->t_dtyp
== NODE_PAREN
||
387 t
->t_dflg
& (F_REPEAT
| F_AMPERSAND
) || bifunc
)
392 * We need to block SIGCHLD here, so that if the process does
393 * not die before we can set the process group
395 if (wanttty
>= 0 && !nosigchld
) {
397 sigaddset(&set
, SIGCHLD
);
398 (void)sigprocmask(SIG_BLOCK
, &set
, &csigset
);
403 pid
= pfork(t
, wanttty
);
404 if (pid
== 0 && nosigchld
) {
405 sigprocmask(SIG_SETMASK
, &csigset
, NULL
);
408 else if (pid
!= 0 && (t
->t_dflg
& F_AMPERSAND
))
414 int ochild
, osetintr
, ohaderr
, odidfds
;
415 int oSHIN
, oSHOUT
, oSHDIAG
, oOLDSTD
, otpgrp
;
416 int oisoutatty
, oisdiagatty
;
417 sigset_t oset
, ocsigset
;
418 # ifndef CLOSE_ON_EXEC
420 # endif /* !CLOSE_ON_EXEC */
423 * Prepare for the vfork by saving everything that the child
424 * corrupts before it exec's. Note that in some signal
425 * implementations which keep the signal info in user space
426 * (e.g. Sun's) it will also be necessary to save and restore
427 * the current sigvec's for the signals the child touches
432 * Sooooo true... If this is a Sun, save the sigvec's. (Skip
433 * Gilbrech - 11/22/87)
436 struct sigaction savesv
[NSIGSAVED
];
439 # endif /* SAVESIGVEC */
440 if (wanttty
>= 0 && !nosigchld
&& !noexec
) {
442 sigaddset(&set
, SIGCHLD
);
443 (void)sigprocmask(SIG_BLOCK
, &set
, &csigset
);
447 sigaddset(&set
, SIGCHLD
);
448 sigaddset(&set
, SIGINT
);
449 (void)sigprocmask(SIG_BLOCK
, &set
, &oset
);
454 # ifndef CLOSE_ON_EXEC
456 # endif /* !CLOSE_ON_EXEC */
462 oisoutatty
= isoutatty
;
463 oisdiagatty
= isdiagatty
;
465 onosigchld
= nosigchld
;
470 savesigvec(savesv
, savesm
);
471 # endif /* SAVESIGVEC */
479 restoresigvec(savesv
, savesm
);
480 # endif /* SAVESIGVEC */
481 sigprocmask(SIG_SETMASK
, &oset
, NULL
);
482 stderror(ERR_NOPROC
);
485 if (pid
) { /* parent */
487 restoresigvec(savesv
, savesm
);
488 # endif /* SAVESIGVEC */
494 # ifndef CLOSE_ON_EXEC
496 # endif /* !CLOSE_ON_EXEC */
501 isoutatty
= oisoutatty
;
502 isdiagatty
= oisdiagatty
;
504 nosigchld
= onosigchld
;
514 /* this is from pfork() */
516 sigprocmask(SIG_SETMASK
, &oset
, NULL
);
519 /* this is from pfork() */
523 sigprocmask(SIG_SETMASK
, &csigset
, NULL
);
528 ignint
= (tpgrp
== -1 && (t
->t_dflg
& F_NOINTERRUPT
))
529 || (gointr
&& eq(gointr
, STRminus
));
530 pgrp
= pcurrjob
? pcurrjob
->p_jobid
: getpid();
535 * casts made right for SunOS 4.0 by Douglas C. Schmidt
536 * <schmidt%sunshine.ics.uci.edu@ROME.ICS.UCI.EDU>
539 * ignint ifs cleaned by Johan Widen <mcvax!osiris.sics.se!jw@uunet.UU.NET>
543 (void) signal(SIGINT
, SIG_IGN
);
544 (void) signal(SIGQUIT
, SIG_IGN
);
547 (void) signal(SIGINT
, vffree
);
548 (void) signal(SIGQUIT
, SIG_DFL
);
552 (void) signal(SIGTSTP
, SIG_DFL
);
553 (void) signal(SIGTTIN
, SIG_DFL
);
554 (void) signal(SIGTTOU
, SIG_DFL
);
556 # endif /* BSDJOBS */
558 sigaction(SIGTERM
, &parterm
, NULL
);
560 else if (tpgrp
== -1 &&
561 (t
->t_dflg
& F_NOINTERRUPT
)) {
562 (void) signal(SIGINT
, SIG_IGN
);
563 (void) signal(SIGQUIT
, SIG_IGN
);
566 pgetty(wanttty
, pgrp
);
568 if (t
->t_dflg
& F_NOHUP
)
569 (void) signal(SIGHUP
, SIG_IGN
);
570 if (t
->t_dflg
& F_HUP
)
571 (void) signal(SIGHUP
, SIG_DFL
);
572 if (t
->t_dflg
& F_NICE
) {
573 int nval
= SIGN_EXTEND_CHAR(t
->t_nice
);
574 # if defined(HAVE_SETPRIORITY) && defined(PRIO_PROCESS)
575 if (setpriority(PRIO_PROCESS
, 0, nval
) == -1 && errno
)
576 stderror(ERR_SYSTEM
, "setpriority",
578 # else /* !HAVE_SETPRIORITY || !PRIO_PROCESS */
580 # endif /* HAVE_SETPRIORITY && PRIO_PROCESS */
583 if (t
->t_dflg
& F_VER
) {
584 tsetenv(STRSYSTYPE
, t
->t_systype
? STRbsd43
: STRsys53
);
595 * It would be better if we could wait for the whole job when we
596 * knew the last process had been started. Pwait, in fact, does
597 * wait for the whole job anyway, but this test doesn't really
598 * express our intentions.
601 if (didfds
== 0 && t
->t_dflg
& F_PIPEOUT
) {
605 if ((t
->t_dflg
& F_PIPEIN
) != 0)
607 #else /* !BACKPIPE */
608 if (didfds
== 0 && t
->t_dflg
& F_PIPEIN
) {
612 if ((t
->t_dflg
& F_PIPEOUT
) != 0)
614 #endif /* BACKPIPE */
617 sigprocmask(SIG_SETMASK
, &csigset
, NULL
);
620 if ((t
->t_dflg
& F_AMPERSAND
) == 0)
625 doio(t
, pipein
, pipeout
);
627 if (t
->t_dflg
& F_PIPEIN
) {
631 #else /* !BACKPIPE */
632 if (t
->t_dflg
& F_PIPEOUT
) {
636 #endif /* BACKPIPE */
638 * Perform a builtin function. If we are not forked, arrange for
647 int ohaderr
= haderr
;
655 if (adrof(STRprintexitvalue
)) {
656 int rv
= getn(varval(STRstatus
));
658 xprintf(CGETS(17, 2, "Exit %d\n"), rv
);
663 if (t
->t_dtyp
!= NODE_PAREN
) {
668 * For () commands must put new 0,1,2 in FSH* and recurse
670 if ((OLDSTD
= dcopy(0, FOLDSTD
)) >= 0)
671 (void)close_on_exec(OLDSTD
, 1);
672 if ((SHOUT
= dcopy(1, FSHOUT
)) >= 0) {
673 (void)close_on_exec(SHOUT
, 1);
674 isoutatty
= isatty(SHOUT
);
676 if ((SHDIAG
= dcopy(2, FSHDIAG
)) >= 0) {
677 (void)close_on_exec(SHDIAG
, 1);
678 isdiagatty
= isatty(SHDIAG
);
682 #ifndef CLOSE_ON_EXEC
685 (void) close_on_exec(FSHOUT
, 1);
686 (void) close_on_exec(FSHDIAG
, 1);
687 (void) close_on_exec(FOLDSTD
, 1);
688 #endif /* !CLOSE_ON_EXEC */
691 t
->t_dspr
->t_dflg
|= t
->t_dflg
& (F_NOINTERRUPT
| F_BACKQ
);
692 execute(t
->t_dspr
, wanttty
, NULL
, NULL
, do_glob
);
697 t
->t_dcdr
->t_dflg
|= F_PIPEIN
| (t
->t_dflg
&
698 (F_PIPEOUT
| F_AMPERSAND
| F_NOFORK
| F_NOINTERRUPT
| F_BACKQ
));
699 execute(t
->t_dcdr
, wanttty
, pv
, pipeout
, do_glob
);
700 t
->t_dcar
->t_dflg
|= F_PIPEOUT
| (t
->t_dflg
&
701 (F_PIPEIN
| F_AMPERSAND
| F_STDERR
| F_NOINTERRUPT
| F_BACKQ
));
702 execute(t
->t_dcar
, wanttty
, pipein
, pv
, do_glob
);
703 #else /* !BACKPIPE */
704 t
->t_dcar
->t_dflg
|= F_PIPEOUT
| (t
->t_dflg
&
705 (F_PIPEIN
| F_AMPERSAND
| F_STDERR
| F_NOINTERRUPT
| F_BACKQ
));
706 execute(t
->t_dcar
, wanttty
, pipein
, pv
, do_glob
);
707 t
->t_dcdr
->t_dflg
|= F_PIPEIN
| (t
->t_dflg
&
708 (F_PIPEOUT
| F_AMPERSAND
| F_NOFORK
| F_NOINTERRUPT
| F_BACKQ
));
709 execute(t
->t_dcdr
, wanttty
, pv
, pipeout
, do_glob
);
710 #endif /* BACKPIPE */
715 t
->t_dcar
->t_dflg
|= t
->t_dflg
& (F_NOINTERRUPT
| F_BACKQ
);
716 execute(t
->t_dcar
, wanttty
, NULL
, NULL
, do_glob
);
718 * In strange case of A&B make a new job after A
720 if (t
->t_dcar
->t_dflg
& F_AMPERSAND
&& t
->t_dcdr
&&
721 (t
->t_dcdr
->t_dflg
& F_AMPERSAND
) == 0)
725 t
->t_dcdr
->t_dflg
|= t
->t_dflg
&
726 (F_NOFORK
| F_NOINTERRUPT
| F_BACKQ
);
727 execute(t
->t_dcdr
, wanttty
, NULL
, NULL
, do_glob
);
734 t
->t_dcar
->t_dflg
|= t
->t_dflg
& (F_NOINTERRUPT
| F_BACKQ
);
735 execute(t
->t_dcar
, wanttty
, NULL
, NULL
, do_glob
);
736 if ((getn(varval(STRstatus
)) == 0) !=
737 (t
->t_dtyp
== NODE_AND
)) {
742 t
->t_dcdr
->t_dflg
|= t
->t_dflg
&
743 (F_NOFORK
| F_NOINTERRUPT
| F_BACKQ
);
744 execute(t
->t_dcdr
, wanttty
, NULL
, NULL
, do_glob
);
752 * Fall through for all breaks from switch
754 * If there will be no more executions of this command, flush all file
755 * descriptors. Places that turn on the F_REPEAT bit are responsible for
756 * doing donefds after the last re-execution
758 if (didfds
&& !(t
->t_dflg
& F_REPEAT
))
774 * Expand and glob the words after an i/o redirection.
775 * If more than one word is generated, then update the command vector.
777 * This is done differently in all the shells:
778 * 1. in the bourne shell and ksh globbing is not performed
779 * 2. Bash/csh say ambiguous
780 * 3. zsh does i/o to/from all the files
781 * 4. itcsh concatenates the words.
783 * I don't know what is best to do. I think that Ambiguous is better
784 * than restructuring the command vector, because the user can get
785 * unexpected results. In any case, the command vector restructuring
786 * code is present and the user can choose it by setting noambiguous
789 splicepipe(struct command
*t
, Char
*cp
)
793 if (adrof(STRnoambiguous
)) {
797 blk
[0] = Dfix1(cp
); /* expand $ */
802 pv
= globall(blk
, gflag
);
804 setname(short2str(blk
[0]));
806 stderror(ERR_NAME
| ERR_NOMATCH
);
808 if (pv
[1] != NULL
) { /* we need to fix the command vector */
809 Char
**av
= blkspl(t
->t_dcom
, &pv
[1]);
822 cleanup_push(buf
, xfree
);
823 blk
[0] = globone(buf
, G_ERROR
);
830 * Perform io redirection.
831 * We may or maynot be forked here.
834 doio(struct command
*t
, int *pipein
, int *pipeout
)
838 unsigned long flags
= t
->t_dflg
;
840 if (didfds
|| (flags
& F_REPEAT
))
842 if ((flags
& F_READ
) == 0) {/* F_READ already done */
847 * so < /dev/std{in,out,err} work
849 (void) dcopy(SHIN
, 0);
850 (void) dcopy(SHOUT
, 1);
851 (void) dcopy(SHDIAG
, 2);
852 cp
= splicepipe(t
, t
->t_dlef
);
853 tmp
= strsave(short2str(cp
));
855 cleanup_push(tmp
, xfree
);
856 if ((fd
= xopen(tmp
, O_RDONLY
|O_LARGEFILE
)) < 0)
857 stderror(ERR_SYSTEM
, tmp
, strerror(errno
));
859 /* allow input files larger than 2Gb */
861 (void) fcntl(fd
, F_SETFL
, fcntl(fd
, F_GETFL
) | O_LARGEFILE
);
862 #endif /*!WINNT_NATIVE*/
865 else if (flags
& F_PIPEIN
) {
867 TCSH_IGNORE(dup(pipein
[0]));
871 else if ((flags
& F_NOINTERRUPT
) && tpgrp
== -1) {
873 (void) xopen(_PATH_DEVNULL
, O_RDONLY
|O_LARGEFILE
);
877 TCSH_IGNORE(dup(OLDSTD
));
878 #if defined(CLOSE_ON_EXEC) && defined(CLEX_DUPS)
880 * PWP: Unlike Bezerkeley 4.3, FIONCLEX for Pyramid is preserved
881 * across dup()s, so we have to UNSET it here or else we get a
882 * command with NO stdin, stdout, or stderr at all (a bad thing
885 (void) close_on_exec(0, 0);
886 #endif /* CLOSE_ON_EXEC && CLEX_DUPS */
892 cp
= splicepipe(t
, t
->t_drit
);
893 tmp
= strsave(short2str(cp
));
895 cleanup_push(tmp
, xfree
);
897 * so > /dev/std{out,err} work
899 (void) dcopy(SHOUT
, 1);
900 (void) dcopy(SHDIAG
, 2);
901 if ((flags
& F_APPEND
) != 0) {
903 fd
= xopen(tmp
, O_WRONLY
|O_APPEND
|O_LARGEFILE
);
904 #else /* !O_APPEND */
905 fd
= xopen(tmp
, O_WRONLY
|O_LARGEFILE
);
906 (void) lseek(fd
, (off_t
) 0, L_XTND
);
907 #endif /* O_APPEND */
911 if ((flags
& F_APPEND
) == 0 || fd
== -1) {
912 if (!(flags
& F_OVERWRITE
) && adrof(STRnoclobber
)) {
913 if (flags
& F_APPEND
)
914 stderror(ERR_SYSTEM
, tmp
, strerror(errno
));
917 if ((fd
= xcreat(tmp
, 0666)) < 0)
918 stderror(ERR_SYSTEM
, tmp
, strerror(errno
));
919 /* allow input files larger than 2Gb */
921 (void) fcntl(fd
, F_SETFL
, fcntl(fd
, F_GETFL
) | O_LARGEFILE
);
922 #endif /*!WINNT_NATIVE*/
928 else if (flags
& F_PIPEOUT
) {
930 TCSH_IGNORE(dup(pipeout
[1]));
935 TCSH_IGNORE(dup(SHOUT
));
937 # if defined(CLOSE_ON_EXEC) && defined(CLEX_DUPS)
938 (void) close_on_exec(1, 0);
939 # endif /* CLOSE_ON_EXEC && CLEX_DUPS */
943 if (flags
& F_STDERR
) {
948 TCSH_IGNORE(dup(SHDIAG
));
949 is2atty
= isdiagatty
;
950 # if defined(CLOSE_ON_EXEC) && defined(CLEX_DUPS)
951 (void) close_on_exec(2, 0);
952 # endif /* CLOSE_ON_EXEC && CLEX_DUPS */
963 (void)close_on_exec(pv
[0] = dmove(pv
[0], -1), 1);
964 (void)close_on_exec(pv
[1] = dmove(pv
[1], -1), 1);
965 if (pv
[0] >= 0 && pv
[1] >= 0)
976 chkclob(const char *cp
)
980 if (stat(cp
, &stb
) < 0)
982 if (S_ISCHR(stb
.st_mode
))
984 stderror(ERR_EXISTS
, cp
);