1 /* Copyright (C) 1993,1994,1997-1999,2000,2002 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
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.
35 # include <shlib-compat.h>
40 _IO_new_fdopen (int fd
, const char *mode
)
46 struct _IO_FILE_plus fp
;
50 struct _IO_wide_data wd
;
59 read_write
= _IO_NO_WRITES
;
62 read_write
= _IO_NO_READS
;
65 posix_mode
= O_APPEND
;
66 read_write
= _IO_NO_READS
|_IO_IS_APPENDING
;
72 for (i
= 1; i
< 5; ++i
)
79 read_write
&= _IO_IS_APPENDING
;
93 fd_flags
= fcntl(fd
, F_GETFL
);
95 #define O_ACCMODE (O_RDONLY|O_WRONLY|O_RDWR)
100 if (((fd_flags
& O_ACCMODE
) == O_RDONLY
&& !(read_write
& _IO_NO_WRITES
))
101 || ((fd_flags
& O_ACCMODE
) == O_WRONLY
&& !(read_write
& _IO_NO_READS
)))
107 /* The May 93 draft of P1003.4/D14.1 (redesignated as 1003.1b)
108 [System Application Program Interface (API) Amendment 1:
109 Realtime Extensions], Rationale B.8.3.3
110 Open a Stream on a File Descriptor says:
112 Although not explicitly required by POSIX.1, a good
113 implementation of append ("a") mode would cause the
114 O_APPEND flag to be set.
116 (Historical implementations [such as Solaris2] do a one-time
119 However, we do not turn O_APPEND off if the mode is "w" (even
120 though that would seem consistent) because that would be more
121 likely to break historical programs.
123 if ((posix_mode
& O_APPEND
) && !(fd_flags
& O_APPEND
))
126 if (fcntl(fd
, F_SETFL
, fd_flags
| O_APPEND
) == -1)
132 new_f
= (struct locked_FILE
*) malloc (sizeof (struct locked_FILE
));
136 new_f
->fp
.file
._lock
= &new_f
->lock
;
138 /* Set up initially to use the `maybe_mmap' jump tables rather than using
139 __fopen_maybe_mmap to do it, because we need them in place before we
140 call _IO_file_attach or else it will allocate a buffer immediately. */
141 _IO_no_init (&new_f
->fp
.file
, 0, 0, &new_f
->wd
,
143 (use_mmap
&& (read_write
& _IO_NO_WRITES
))
144 ? &_IO_wfile_jumps_maybe_mmap
:
146 &INTUSE(_IO_wfile_jumps
));
147 _IO_JUMPS (&new_f
->fp
) =
149 (use_mmap
&& (read_write
& _IO_NO_WRITES
)) ? &_IO_file_jumps_maybe_mmap
:
151 &INTUSE(_IO_file_jumps
);
152 INTUSE(_IO_file_init
) (&new_f
->fp
);
153 #if !_IO_UNIFIED_JUMPTABLES
154 new_f
->fp
.vtable
= NULL
;
156 if (INTUSE(_IO_file_attach
) ((_IO_FILE
*) &new_f
->fp
, fd
) == NULL
)
158 INTUSE(_IO_setb
) (&new_f
->fp
.file
, NULL
, NULL
, 0);
159 INTUSE(_IO_un_link
) (&new_f
->fp
);
163 new_f
->fp
.file
._flags
&= ~_IO_DELETE_DONT_CLOSE
;
165 new_f
->fp
.file
._IO_file_flags
=
166 _IO_mask_flags (&new_f
->fp
.file
, read_write
,
167 _IO_NO_READS
+_IO_NO_WRITES
+_IO_IS_APPENDING
);
169 return &new_f
->fp
.file
;
171 INTDEF2(_IO_new_fdopen
, _IO_fdopen
)
173 strong_alias (_IO_new_fdopen
, __new_fdopen
)
174 versioned_symbol (libc
, _IO_new_fdopen
, _IO_fdopen
, GLIBC_2_1
);
175 versioned_symbol (libc
, __new_fdopen
, fdopen
, GLIBC_2_1
);