Updated to fedora-glibc-20050627T0850
[glibc.git] / glibc-compat / oldiopopen.c
blob13b5d16c83c3e084a78b9cdd1f013fab45802c2b
1 /* Copyright (C) 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,
18 MA 02111-1307, USA.
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. */
27 #define _IO_USE_OLD_IO_FILE
28 #ifndef _POSIX_SOURCE
29 # define _POSIX_SOURCE
30 #endif
31 #include "libioP.h"
32 #if _IO_HAVE_SYS_WAIT
33 #include <signal.h>
34 #include <unistd.h>
35 #ifdef __STDC__
36 #include <stdlib.h>
37 #endif
38 #ifdef _LIBC
39 # include <unistd.h>
40 #endif
41 #include <sys/types.h>
42 #include <sys/wait.h>
44 #ifndef _IO_fork
45 #ifdef _LIBC
46 #define _IO_fork __vfork
47 #else
48 #define _IO_fork vfork /* defined in libiberty, if needed */
49 #endif
50 extern _IO_pid_t _IO_fork (void);
51 #endif
53 #endif /* _IO_HAVE_SYS_WAIT */
55 #ifndef _IO_pipe
56 #ifdef _LIBC
57 #define _IO_pipe __pipe
58 #else
59 #define _IO_pipe pipe
60 #endif
61 extern int _IO_pipe (int des[2]);
62 #endif
64 #ifndef _IO_dup2
65 #ifdef _LIBC
66 #define _IO_dup2 __dup2
67 #else
68 #define _IO_dup2 dup2
69 #endif
70 extern int _IO_dup2 (int fd, int fd2);
71 #endif
73 #ifndef _IO_waitpid
74 #ifdef _LIBC
75 #define _IO_waitpid __waitpid
76 #else
77 #define _IO_waitpid waitpid
78 #endif
79 #endif
81 #ifndef _IO_execl
82 #define _IO_execl execl
83 #endif
84 #ifndef _IO__exit
85 #define _IO__exit _exit
86 #endif
88 #ifndef _IO_close
89 #ifdef _LIBC
90 #define _IO_close __close
91 #else
92 #define _IO_close close
93 #endif
94 #endif
96 struct _IO_proc_file
98 struct _IO_FILE_plus file;
99 /* Following fields must match those in class procbuf (procbuf.h) */
100 _IO_pid_t pid;
101 struct _IO_proc_file *next;
103 typedef struct _IO_proc_file _IO_proc_file;
105 static struct _IO_proc_file *old_proc_file_chain = NULL;
107 _IO_FILE *
108 _IO_old_proc_open (fp, command, mode)
109 _IO_FILE *fp;
110 const char *command;
111 const char *mode;
113 #if _IO_HAVE_SYS_WAIT
114 volatile int read_or_write;
115 volatile int parent_end, child_end;
116 int pipe_fds[2];
117 _IO_pid_t child_pid;
118 if (_IO_file_is_open (fp))
119 return NULL;
120 if (_IO_pipe (pipe_fds) < 0)
121 return NULL;
122 if (mode[0] == 'r' && mode[1] == '\0')
124 parent_end = pipe_fds[0];
125 child_end = pipe_fds[1];
126 read_or_write = _IO_NO_WRITES;
128 else if (mode[0] == 'w' && mode[1] == '\0')
130 parent_end = pipe_fds[1];
131 child_end = pipe_fds[0];
132 read_or_write = _IO_NO_READS;
134 else
136 __set_errno (EINVAL);
137 return NULL;
139 ((_IO_proc_file *) fp)->pid = child_pid = _IO_fork ();
140 if (child_pid == 0)
142 int child_std_end = mode[0] == 'r' ? 1 : 0;
143 _IO_close (parent_end);
144 if (child_end != child_std_end)
146 _IO_dup2 (child_end, child_std_end);
147 _IO_close (child_end);
149 /* POSIX.2: "popen() shall ensure that any streams from previous
150 popen() calls that remain open in the parent process are closed
151 in the new child process." */
152 while (old_proc_file_chain)
154 _IO_close (_IO_fileno ((_IO_FILE *) old_proc_file_chain));
155 old_proc_file_chain = old_proc_file_chain->next;
158 _IO_execl ("/bin/sh", "sh", "-c", command, (char *) 0);
159 _IO__exit (127);
161 _IO_close (child_end);
162 if (child_pid < 0)
164 _IO_close (parent_end);
165 return NULL;
167 _IO_fileno (fp) = parent_end;
169 /* Link into old_proc_file_chain. */
170 ((_IO_proc_file *) fp)->next = old_proc_file_chain;
171 old_proc_file_chain = (_IO_proc_file *) fp;
173 _IO_mask_flags (fp, read_or_write, _IO_NO_READS|_IO_NO_WRITES);
174 return fp;
175 #else /* !_IO_HAVE_SYS_WAIT */
176 return NULL;
177 #endif
180 _IO_FILE *
181 _IO_old_popen (command, mode)
182 const char *command;
183 const char *mode;
185 struct locked_FILE
187 struct _IO_proc_file fpx;
188 #ifdef _IO_MTSAFE_IO
189 _IO_lock_t lock;
190 #endif
191 } *new_f;
192 _IO_FILE *fp;
194 new_f = (struct locked_FILE *) malloc (sizeof (struct locked_FILE));
195 if (new_f == NULL)
196 return NULL;
197 #ifdef _IO_MTSAFE_IO
198 new_f->fpx.file.file._lock = &new_f->lock;
199 #endif
200 fp = &new_f->fpx.file.file;
201 _IO_init (fp, 0);
202 _IO_JUMPS (fp) = &_IO_old_proc_jumps;
203 _IO_old_file_init (fp);
204 #if !_IO_UNIFIED_JUMPTABLES
205 new_f->fpx.file.vtable = NULL;
206 #endif
207 if (_IO_old_proc_open (fp, command, mode) != NULL)
208 return fp;
209 _IO_un_link (fp);
210 free (new_f);
211 return NULL;
215 _IO_old_proc_close (fp)
216 _IO_FILE *fp;
218 /* This is not name-space clean. FIXME! */
219 #if _IO_HAVE_SYS_WAIT
220 int wstatus;
221 _IO_proc_file **ptr = &old_proc_file_chain;
222 _IO_pid_t wait_pid;
223 int status = -1;
225 /* Unlink from old_proc_file_chain. */
226 for ( ; *ptr != NULL; ptr = &(*ptr)->next)
228 if (*ptr == (_IO_proc_file *) fp)
230 *ptr = (*ptr)->next;
231 status = 0;
232 break;
236 if (status < 0 || _IO_close (_IO_fileno(fp)) < 0)
237 return -1;
238 /* POSIX.2 Rationale: "Some historical implementations either block
239 or ignore the signals SIGINT, SIGQUIT, and SIGHUP while waiting
240 for the child process to terminate. Since this behavior is not
241 described in POSIX.2, such implementations are not conforming." */
244 wait_pid = _IO_waitpid (((_IO_proc_file *) fp)->pid, &wstatus, 0);
246 while (wait_pid == -1 && errno == EINTR);
247 if (wait_pid == -1)
248 return -1;
249 return wstatus;
250 #else /* !_IO_HAVE_SYS_WAIT */
251 return -1;
252 #endif
255 struct _IO_jump_t _IO_old_proc_jumps = {
256 JUMP_INIT_DUMMY,
257 JUMP_INIT(finish, _IO_old_file_finish),
258 JUMP_INIT(overflow, _IO_old_file_overflow),
259 JUMP_INIT(underflow, _IO_old_file_underflow),
260 JUMP_INIT(uflow, _IO_default_uflow),
261 JUMP_INIT(pbackfail, _IO_default_pbackfail),
262 JUMP_INIT(xsputn, _IO_old_file_xsputn),
263 JUMP_INIT(xsgetn, _IO_default_xsgetn),
264 JUMP_INIT(seekoff, _IO_old_file_seekoff),
265 JUMP_INIT(seekpos, _IO_default_seekpos),
266 JUMP_INIT(setbuf, _IO_old_file_setbuf),
267 JUMP_INIT(sync, _IO_old_file_sync),
268 JUMP_INIT(doallocate, _IO_file_doallocate),
269 JUMP_INIT(read, _IO_file_read),
270 JUMP_INIT(write, _IO_old_file_write),
271 JUMP_INIT(seek, _IO_file_seek),
272 JUMP_INIT(close, _IO_old_proc_close),
273 JUMP_INIT(stat, _IO_file_stat),
274 JUMP_INIT(showmanyc, _IO_default_showmanyc),
275 JUMP_INIT(imbue, _IO_default_imbue)
278 #ifdef SHARED
279 strong_alias (_IO_old_popen, __old_popen)
280 symbol_version (_IO_old_popen, _IO_popen, GLIBC_2.0);
281 symbol_version (__old_popen, popen, GLIBC_2.0);
282 symbol_version (_IO_old_proc_open, _IO_proc_open, GLIBC_2.0);
283 symbol_version (_IO_old_proc_close, _IO_proc_close, GLIBC_2.0);
284 #else
285 strong_alias (_IO_old_popen, _IO_popen);
286 strong_alias (__old_popen, popen);
287 strong_alias (_IO_old_proc_open, _IO_proc_open);
288 strong_alias (_IO_old_proc_close, _IO_proc_close);
289 #endif