1 /* Copyright (C) 1998-2017 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Written by Per Bothner <bothner@cygnus.com>.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>.
19 As a special exception, if you link the code in this file with
20 files compiled with a GNU compiler to produce an executable,
21 that does not cause the resulting executable to be covered by
22 the GNU Lesser General Public License. This exception does not
23 however invalidate any other reasons why the executable file
24 might be covered by the GNU Lesser General Public License.
25 This exception applies to code released by its copyright holders
26 in files containing the exception. */
28 #define _IO_USE_OLD_IO_FILE
30 # define _POSIX_SOURCE
39 #include <sys/types.h>
44 #define _IO_fork __fork
46 #define _IO_fork fork /* defined in libiberty, if needed */
48 extern _IO_pid_t
_IO_fork (void) __THROW
;
51 #include <shlib-compat.h>
52 #if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1)
56 #define _IO_pipe __pipe
60 extern int _IO_pipe (int des
[2]) __THROW
;
65 #define _IO_dup2 __dup2
69 extern int _IO_dup2 (int fd
, int fd2
) __THROW
;
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_complete_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
*old_proc_file_chain
;
107 static _IO_lock_t proc_file_chain_lock
= _IO_lock_initializer
;
110 unlock (void *not_used
)
112 _IO_lock_unlock (proc_file_chain_lock
);
117 attribute_compat_text_section
118 _IO_old_proc_open (_IO_FILE
*fp
, const char *command
, const char *mode
)
120 volatile int read_or_write
;
121 volatile int parent_end
, child_end
;
124 if (_IO_file_is_open (fp
))
126 if (_IO_pipe (pipe_fds
) < 0)
128 if (mode
[0] == 'r' && mode
[1] == '\0')
130 parent_end
= pipe_fds
[0];
131 child_end
= pipe_fds
[1];
132 read_or_write
= _IO_NO_WRITES
;
134 else if (mode
[0] == 'w' && mode
[1] == '\0')
136 parent_end
= pipe_fds
[1];
137 child_end
= pipe_fds
[0];
138 read_or_write
= _IO_NO_READS
;
142 _IO_close (pipe_fds
[0]);
143 _IO_close (pipe_fds
[1]);
144 __set_errno (EINVAL
);
147 ((_IO_proc_file
*) fp
)->pid
= child_pid
= _IO_fork ();
150 int child_std_end
= mode
[0] == 'r' ? 1 : 0;
151 struct _IO_proc_file
*p
;
153 _IO_close (parent_end
);
154 if (child_end
!= child_std_end
)
156 _IO_dup2 (child_end
, child_std_end
);
157 _IO_close (child_end
);
159 /* POSIX.2: "popen() shall ensure that any streams from previous
160 popen() calls that remain open in the parent process are closed
161 in the new child process." */
162 for (p
= old_proc_file_chain
; p
; p
= p
->next
)
163 _IO_close (_IO_fileno ((_IO_FILE
*) p
));
165 _IO_execl ("/bin/sh", "sh", "-c", command
, (char *) 0);
168 _IO_close (child_end
);
171 _IO_close (parent_end
);
174 _IO_fileno (fp
) = parent_end
;
176 /* Link into old_proc_file_chain. */
178 _IO_cleanup_region_start_noarg (unlock
);
179 _IO_lock_lock (proc_file_chain_lock
);
181 ((_IO_proc_file
*) fp
)->next
= old_proc_file_chain
;
182 old_proc_file_chain
= (_IO_proc_file
*) fp
;
184 _IO_lock_unlock (proc_file_chain_lock
);
185 _IO_cleanup_region_end (0);
188 _IO_mask_flags (fp
, read_or_write
, _IO_NO_READS
|_IO_NO_WRITES
);
193 attribute_compat_text_section
194 _IO_old_popen (const char *command
, const char *mode
)
198 struct _IO_proc_file fpx
;
205 new_f
= (struct locked_FILE
*) malloc (sizeof (struct locked_FILE
));
209 new_f
->fpx
.file
.file
._file
._lock
= &new_f
->lock
;
211 fp
= &new_f
->fpx
.file
.file
._file
;
212 _IO_old_init (fp
, 0);
213 _IO_JUMPS_FILE_plus (&new_f
->fpx
.file
) = &_IO_old_proc_jumps
;
214 _IO_old_file_init_internal ((struct _IO_FILE_plus
*) &new_f
->fpx
.file
);
215 #if !_IO_UNIFIED_JUMPTABLES
216 new_f
->fpx
.file
.vtable
= NULL
;
218 if (_IO_old_proc_open (fp
, command
, mode
) != NULL
)
220 _IO_un_link ((struct _IO_FILE_plus
*) &new_f
->fpx
.file
);
226 attribute_compat_text_section
227 _IO_old_proc_close (_IO_FILE
*fp
)
229 /* This is not name-space clean. FIXME! */
231 _IO_proc_file
**ptr
= &old_proc_file_chain
;
235 /* Unlink from old_proc_file_chain. */
237 _IO_cleanup_region_start_noarg (unlock
);
238 _IO_lock_lock (proc_file_chain_lock
);
240 for ( ; *ptr
!= NULL
; ptr
= &(*ptr
)->next
)
242 if (*ptr
== (_IO_proc_file
*) fp
)
250 _IO_lock_unlock (proc_file_chain_lock
);
251 _IO_cleanup_region_end (0);
254 if (status
< 0 || _IO_close (_IO_fileno(fp
)) < 0)
256 /* POSIX.2 Rationale: "Some historical implementations either block
257 or ignore the signals SIGINT, SIGQUIT, and SIGHUP while waiting
258 for the child process to terminate. Since this behavior is not
259 described in POSIX.2, such implementations are not conforming." */
262 wait_pid
= _IO_waitpid (((_IO_proc_file
*) fp
)->pid
, &wstatus
, 0);
264 while (wait_pid
== -1 && errno
== EINTR
);
270 const struct _IO_jump_t _IO_old_proc_jumps libio_vtable
= {
272 JUMP_INIT(finish
, _IO_old_file_finish
),
273 JUMP_INIT(overflow
, _IO_old_file_overflow
),
274 JUMP_INIT(underflow
, _IO_old_file_underflow
),
275 JUMP_INIT(uflow
, _IO_default_uflow
),
276 JUMP_INIT(pbackfail
, _IO_default_pbackfail
),
277 JUMP_INIT(xsputn
, _IO_old_file_xsputn
),
278 JUMP_INIT(xsgetn
, _IO_default_xsgetn
),
279 JUMP_INIT(seekoff
, _IO_old_file_seekoff
),
280 JUMP_INIT(seekpos
, _IO_default_seekpos
),
281 JUMP_INIT(setbuf
, _IO_old_file_setbuf
),
282 JUMP_INIT(sync
, _IO_old_file_sync
),
283 JUMP_INIT(doallocate
, _IO_file_doallocate
),
284 JUMP_INIT(read
, _IO_file_read
),
285 JUMP_INIT(write
, _IO_old_file_write
),
286 JUMP_INIT(seek
, _IO_file_seek
),
287 JUMP_INIT(close
, _IO_old_proc_close
),
288 JUMP_INIT(stat
, _IO_file_stat
),
289 JUMP_INIT(showmanyc
, _IO_default_showmanyc
),
290 JUMP_INIT(imbue
, _IO_default_imbue
)
293 strong_alias (_IO_old_popen
, __old_popen
)
294 compat_symbol (libc
, _IO_old_popen
, _IO_popen
, GLIBC_2_0
);
295 compat_symbol (libc
, __old_popen
, popen
, GLIBC_2_0
);
296 compat_symbol (libc
, _IO_old_proc_open
, _IO_proc_open
, GLIBC_2_0
);
297 compat_symbol (libc
, _IO_old_proc_close
, _IO_proc_close
, GLIBC_2_0
);