2 * Copyright (c) 1988 The Regents of the University of California.
5 * This code is derived from software written by Ken Arnold and
6 * published in UNIX Review, Vol. 6, No. 8.
8 * Redistribution and use in source and binary forms are permitted
9 * provided that the above copyright notice and this paragraph are
10 * duplicated in all such forms and that any documentation,
11 * advertising materials, and other materials related to such
12 * distribution and use acknowledge that the software was developed
13 * by the University of California, Berkeley. The name of the
14 * University may not be used to endorse or promote products derived
15 * from this software without specific prior written permission.
16 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
18 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
22 /* this came out of the ftpd sources; it's been modified to avoid the
23 * globbing stuff since we don't need it. also execvp instead of execv.
27 static char rcsid
[] = "$Id: popen.c,v 1.1 1994/01/05 20:40:15 jtc Exp $";
28 static char sccsid
[] = "@(#)popen.c 5.7 (Berkeley) 2/14/89";
33 #include <sys/signal.h>
36 #define WANT_GLOBBING 0
39 * Special version of popen which avoids call to shell. This insures noone
40 * may create a pipe to a hidden program as a side effect of a list or dir
47 cron_popen(program
, type
)
52 int argc
, pdes
[2], pid
;
58 extern char **glob(), **copyblk();
61 if (*type
!= 'r' && *type
!= 'w' || type
[1])
65 if ((fds
= getdtablesize()) <= 0)
67 if ((pids
= (int *)malloc((u_int
)(fds
* sizeof(int)))) == NULL
)
69 bzero((char *)pids
, fds
* sizeof(int));
74 /* break up string into pieces */
75 for (argc
= 0, cp
= program
;; cp
= NULL
)
76 if (!(argv
[argc
++] = strtok(cp
, " \t\n")))
82 for (gargc
= argc
= 1; argv
[argc
]; argc
++) {
83 if (!(pop
= glob(argv
[argc
]))) { /* globbing failed */
88 argv
[argc
] = (char *)pop
; /* save to free later */
89 while (*pop
&& gargc
< 1000)
90 gargv
[gargc
++] = *pop
++;
96 switch(pid
= vfork()) {
106 dup2(pdes
[1], 2); /* stderr, too! */
107 (void)close(pdes
[1]);
109 (void)close(pdes
[0]);
113 (void)close(pdes
[0]);
115 (void)close(pdes
[1]);
118 execvp(gargv
[0], gargv
);
120 execvp(argv
[0], argv
);
124 /* parent; assume fdopen can't fail... */
126 iop
= fdopen(pdes
[0], type
);
127 (void)close(pdes
[1]);
129 iop
= fdopen(pdes
[1], type
);
130 (void)close(pdes
[0]);
132 pids
[fileno(iop
)] = pid
;
136 for (argc
= 1; argv
[argc
] != NULL
; argc
++) {
137 /* blkfree((char **)argv[argc]); */
138 free((char *)argv
[argc
]);
154 * pclose returns -1 if stream is not associated with a
155 * `popened' command, or, if already `pclosed'.
157 if (pids
== 0 || pids
[fdes
= fileno(iop
)] == 0)
160 omask
= sigblock(sigmask(SIGINT
)|sigmask(SIGQUIT
)|sigmask(SIGHUP
));
161 while ((pid
= wait(&stat_loc
)) != pids
[fdes
] && pid
!= -1)
163 (void)sigsetmask(omask
);
165 return (pid
== -1 ? -1 : WEXITSTATUS(stat_loc
));