4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
22 /* Copyright (c) 1988 AT&T */
23 /* All Rights Reserved */
27 * Copyright (c) 1999 by Sun Microsystems, Inc.
28 * All rights reserved.
31 #pragma ident "%Z%%M% %I% %E% SMI"
34 #include <sys/types.h>
40 #include "global.h" /* pid_t, SIGTYPE, shell, and basename() */
42 #define tst(a, b) (*mode == 'r'? (b) : (a))
46 static pid_t popen_pid
[20];
47 static SIGTYPE (*tstat
)();
50 mypopen(char *cmd
, char *mode
)
59 myside
= tst(p
[WTR
], p
[RDR
]);
60 yourside
= tst(p
[RDR
], p
[WTR
]);
61 if ((pid
= fork()) > 0) {
62 tstat
= signal(SIGTSTP
, SIG_DFL
);
63 } else if (pid
== 0) {
64 /* myside and yourside reverse roles in child */
67 /* close all pipes from other popen's */
68 for (poptr
= popen_pid
; poptr
< popen_pid
+20; poptr
++) {
70 (void) close(poptr
- popen_pid
);
75 (void) fcntl(yourside
, F_DUPFD
, stdio
);
76 (void) close(yourside
);
77 (void) execlp(shell
, basename(shell
), "-c", cmd
, 0);
82 popen_pid
[myside
] = pid
;
83 (void) close(yourside
);
84 return (fdopen(myside
, mode
));
93 SIGTYPE (*hstat
)(), (*istat
)(), (*qstat
)();
97 istat
= signal(SIGINT
, SIG_IGN
);
98 qstat
= signal(SIGQUIT
, SIG_IGN
);
99 hstat
= signal(SIGHUP
, SIG_IGN
);
100 while ((r
= wait(&status
)) != popen_pid
[f
] && r
!= -1) {
104 (void) signal(SIGINT
, istat
);
105 (void) signal(SIGQUIT
, qstat
);
106 (void) signal(SIGHUP
, hstat
);
107 (void) signal(SIGTSTP
, tstat
);
108 /* mark this pipe closed */