1 /* Copyright (C) 1993, 1997, 1998 Free Software Foundation, Inc.
2 This file is part of the GNU IO Library.
3 Written by Per Bothner <bothner@cygnus.com>.
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License as
7 published by the Free Software Foundation; either version 2, or (at
8 your option) any later version.
10 This library is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this library; see the file COPYING. If not, write to
17 the Free Software Foundation, 59 Temple Place - Suite 330, Boston,
20 As a special exception, if you link this library with files
21 compiled with a GNU compiler to produce an executable, this does
22 not cause the resulting executable to be covered by the GNU General
23 Public License. This exception does not however invalidate any
24 other reasons why the executable file might be covered by the GNU
25 General Public License. */
28 # define _POSIX_SOURCE
40 #include <sys/types.h>
45 #define _IO_fork __vfork
47 #define _IO_fork vfork /* defined in libiberty, if needed */
49 extern _IO_pid_t _IO_fork
__P ((void));
52 #endif /* _IO_HAVE_SYS_WAIT */
56 #define _IO_pipe __pipe
60 extern int _IO_pipe
__P ((int des
[2]));
65 #define _IO_dup2 __dup2
69 extern int _IO_dup2
__P ((int fd
, int fd2
));
74 #define _IO_waitpid __waitpid
76 #define _IO_waitpid waitpid
81 #define _IO_execl execl
84 #define _IO__exit _exit
89 #define _IO_close __close
91 #define _IO_close close
97 struct _IO_FILE_plus file
;
98 /* Following fields must match those in class procbuf (procbuf.h) */
100 struct _IO_proc_file
*next
;
102 typedef struct _IO_proc_file _IO_proc_file
;
104 static struct _IO_proc_file
*proc_file_chain
= NULL
;
107 _IO_new_proc_open (fp
, command
, mode
)
112 #if _IO_HAVE_SYS_WAIT
113 volatile int read_or_write
;
114 volatile int parent_end
, child_end
;
117 if (_IO_file_is_open (fp
))
119 if (_IO_pipe (pipe_fds
) < 0)
121 if (mode
[0] == 'r' && mode
[1] == '\0')
123 parent_end
= pipe_fds
[0];
124 child_end
= pipe_fds
[1];
125 read_or_write
= _IO_NO_WRITES
;
127 else if (mode
[0] == 'w' && mode
[1] == '\0')
129 parent_end
= pipe_fds
[1];
130 child_end
= pipe_fds
[0];
131 read_or_write
= _IO_NO_READS
;
135 __set_errno (EINVAL
);
138 ((_IO_proc_file
*) fp
)->pid
= child_pid
= _IO_fork ();
141 int child_std_end
= mode
[0] == 'r' ? 1 : 0;
142 _IO_close (parent_end
);
143 if (child_end
!= child_std_end
)
145 _IO_dup2 (child_end
, child_std_end
);
146 _IO_close (child_end
);
148 /* POSIX.2: "popen() shall ensure that any streams from previous
149 popen() calls that remain open in the parent process are closed
150 in the new child process." */
151 while (proc_file_chain
)
153 _IO_close (_IO_fileno ((_IO_FILE
*) proc_file_chain
));
154 proc_file_chain
= proc_file_chain
->next
;
157 _IO_execl ("/bin/sh", "sh", "-c", command
, (char *) 0);
160 _IO_close (child_end
);
163 _IO_close (parent_end
);
166 _IO_fileno (fp
) = parent_end
;
168 /* Link into proc_file_chain. */
169 ((_IO_proc_file
*) fp
)->next
= proc_file_chain
;
170 proc_file_chain
= (_IO_proc_file
*) fp
;
172 _IO_mask_flags (fp
, read_or_write
, _IO_NO_READS
|_IO_NO_WRITES
);
174 #else /* !_IO_HAVE_SYS_WAIT */
180 _IO_new_popen (command
, mode
)
186 struct _IO_proc_file fpx
;
193 new_f
= (struct locked_FILE
*) malloc (sizeof (struct locked_FILE
));
197 new_f
->fpx
.file
.file
._lock
= &new_f
->lock
;
199 fp
= &new_f
->fpx
.file
.file
;
201 _IO_JUMPS (fp
) = &_IO_proc_jumps
;
202 _IO_new_file_init (fp
);
203 #if !_IO_UNIFIED_JUMPTABLES
204 new_f
->fpx
.file
.vtable
= NULL
;
206 if (_IO_new_proc_open (fp
, command
, mode
) != NULL
)
214 _IO_new_proc_close (fp
)
217 /* This is not name-space clean. FIXME! */
218 #if _IO_HAVE_SYS_WAIT
220 _IO_proc_file
**ptr
= &proc_file_chain
;
224 /* Unlink from proc_file_chain. */
225 for ( ; *ptr
!= NULL
; ptr
= &(*ptr
)->next
)
227 if (*ptr
== (_IO_proc_file
*) fp
)
235 if (status
< 0 || _IO_close (_IO_fileno(fp
)) < 0)
237 /* POSIX.2 Rationale: "Some historical implementations either block
238 or ignore the signals SIGINT, SIGQUIT, and SIGHUP while waiting
239 for the child process to terminate. Since this behavior is not
240 described in POSIX.2, such implementations are not conforming." */
243 wait_pid
= _IO_waitpid (((_IO_proc_file
*) fp
)->pid
, &wstatus
, 0);
245 while (wait_pid
== -1 && errno
== EINTR
);
249 #else /* !_IO_HAVE_SYS_WAIT */
254 struct _IO_jump_t _IO_proc_jumps
= {
256 JUMP_INIT(finish
, _IO_new_file_finish
),
257 JUMP_INIT(overflow
, _IO_new_file_overflow
),
258 JUMP_INIT(underflow
, _IO_new_file_underflow
),
259 JUMP_INIT(uflow
, _IO_default_uflow
),
260 JUMP_INIT(pbackfail
, _IO_default_pbackfail
),
261 JUMP_INIT(xsputn
, _IO_new_file_xsputn
),
262 JUMP_INIT(xsgetn
, _IO_default_xsgetn
),
263 JUMP_INIT(seekoff
, _IO_new_file_seekoff
),
264 JUMP_INIT(seekpos
, _IO_default_seekpos
),
265 JUMP_INIT(setbuf
, _IO_new_file_setbuf
),
266 JUMP_INIT(sync
, _IO_new_file_sync
),
267 JUMP_INIT(doallocate
, _IO_file_doallocate
),
268 JUMP_INIT(read
, _IO_file_read
),
269 JUMP_INIT(write
, _IO_new_file_write
),
270 JUMP_INIT(seek
, _IO_file_seek
),
271 JUMP_INIT(close
, _IO_new_proc_close
),
272 JUMP_INIT(stat
, _IO_file_stat
),
273 JUMP_INIT(showmanyc
, _IO_default_showmanyc
),
274 JUMP_INIT(imbue
, _IO_default_imbue
)
277 #if defined PIC && DO_VERSIONING
278 strong_alias (_IO_new_popen
, __new_popen
)
279 default_symbol_version (_IO_new_popen
, _IO_popen
, GLIBC_2
.1
);
280 default_symbol_version (__new_popen
, popen
, GLIBC_2
.1
);
281 default_symbol_version (_IO_new_proc_open
, _IO_proc_open
, GLIBC_2
.1
);
282 default_symbol_version (_IO_new_proc_close
, _IO_proc_close
, GLIBC_2
.1
);
285 strong_alias (_IO_new_popen
, popen
)
288 weak_alias (_IO_new_popen
, _IO_popen
)
289 weak_alias (_IO_new_proc_open
, _IO_proc_open
)
290 weak_alias (_IO_new_proc_close
, _IO_proc_close
)