1 /* Copyright (C) 2004 Manuel Novoa III <mjn3@codepoet.org>
3 * GNU Library General Public License (LGPL) version 2 or later.
5 * Dedicated to Toni. See uClibc/DEDICATION.mjn3 for details.
13 * fopen64 : filename != NULL, stream == NULL, filedes == -2
14 * fopen : filename != NULL, stream == NULL, filedes == -1
15 * freopen : filename != NULL, stream != NULL, filedes == -1
16 * fdopen : filename == NULL, stream == NULL, filedes valid
18 * fsfopen : filename != NULL, stream != NULL, filedes == -1
21 #if (O_ACCMODE != 3) || (O_RDONLY != 0) || (O_WRONLY != 1) || (O_RDWR != 2)
22 #error Assumption violated - mode constants
29 /* Internal function -- reentrant (locks open file list) */
31 FILE attribute_hidden
*_stdio_fopen(intptr_t fname_or_mode
,
32 register const char * __restrict mode
,
33 register FILE * __restrict stream
, int filedes
)
38 /* Parse the specified mode. */
40 if (*mode
!= 'r') { /* Not read... */
41 open_mode
= (O_WRONLY
| O_CREAT
| O_TRUNC
);
42 if (*mode
!= 'w') { /* Not write (create or truncate)... */
43 open_mode
= (O_WRONLY
| O_CREAT
| O_APPEND
);
44 if (*mode
!= 'a') { /* Not write (create or append)... */
46 __set_errno(EINVAL
); /* So illegal mode. */
49 assert(!(stream
->__modeflags
& __FLAG_FREEBUF
));
50 __STDIO_STREAM_FREE_FILE(stream
);
57 if ((mode
[1] == 'b')) { /* Binary mode (NO-OP currently). */
61 if (mode
[1] == '+') { /* Read and Write. */
63 open_mode
|= (O_RDONLY
| O_WRONLY
);
64 open_mode
+= (O_RDWR
- (O_RDONLY
| O_WRONLY
));
67 #if defined(__UCLIBC_HAS_FOPEN_EXCLUSIVE_MODE__) || defined(__UCLIBC_HAS_FOPEN_LARGEFILE_MODE__) || \
68 defined(__UCLIBC_HAS_FOPEN_CLOSEEXEC_MODE__)
71 # ifdef __UCLIBC_HAS_FOPEN_EXCLUSIVE_MODE__
72 if (*mode
== 'x') { /* Open exclusive (a glibc extension). */
77 # ifdef __UCLIBC_HAS_FOPEN_LARGEFILE_MODE__
78 if (*mode
== 'F') { /* Open as large file (uClibc extension). */
79 open_mode
|= O_LARGEFILE
;
83 # ifdef __UCLIBC_HAS_FOPEN_CLOSEEXEC_MODE__
84 if (*mode
== 'e') { /* Close on exec (a glibc extension). */
85 open_mode
|= O_CLOEXEC
;
93 if (!stream
) { /* Need to allocate a FILE (not freopen). */
94 if ((stream
= malloc(sizeof(FILE))) == NULL
) {
97 stream
->__modeflags
= __FLAG_FREEFILE
;
98 #ifdef __STDIO_BUFFERS
99 stream
->__bufstart
= NULL
; /* We allocate a buffer below. */
101 #ifdef __UCLIBC_HAS_THREADS__
102 /* We only initialize the mutex in the non-freopen case. */
103 /* stream->__user_locking = _stdio_user_locking; */
104 STDIO_INIT_MUTEX(stream
->__lock
);
108 if (filedes
>= 0) { /* Handle fdopen trickery. */
109 stream
->__filedes
= filedes
;
110 /* NOTE: it is insufficient to just check R/W/RW agreement.
111 * We must also check largefile compatibility if applicable.
112 * Also, if append mode is desired for fdopen but O_APPEND isn't
113 * currently set, then set it as recommended by SUSv3. However,
114 * if append mode is not specified for fdopen but O_APPEND is set,
115 * leave it set (glibc compat). */
116 i
= (open_mode
& (O_ACCMODE
|O_LARGEFILE
)) + 1;
118 /* NOTE: fopencookie needs changing if the basic check changes! */
119 if ((i
& ((int)fname_or_mode
+ 1)) != i
) /* Basic agreement? */
121 if ((open_mode
& ~(__mode_t
)fname_or_mode
) & O_APPEND
) {
122 if (fcntl(filedes
, F_SETFL
, O_APPEND
)) /* Need O_APPEND. */
125 /* For later... to reflect largefile setting in stream flags. */
126 __STDIO_WHEN_LFS( open_mode
|= (((__mode_t
) fname_or_mode
)
129 __STDIO_WHEN_LFS( if (filedes
< -1) open_mode
|= O_LARGEFILE
);
130 if ((stream
->__filedes
= open(((const char *) fname_or_mode
),
131 open_mode
, 0666)) < 0) {
136 stream
->__modeflags
&= __FLAG_FREEFILE
;
137 /* stream->__modeflags &= ~(__FLAG_READONLY|__FLAG_WRITEONLY); */
139 stream
->__modeflags
|= /* Note: Makes assumptions about flag vals! */
140 #if (O_APPEND != __FLAG_APPEND) || ((O_LARGEFILE != __FLAG_LARGEFILE) && (O_LARGEFILE != 0))
141 # if (O_APPEND != __FLAG_APPEND)
142 ((open_mode
& O_APPEND
) ? __FLAG_APPEND
: 0) |
144 (open_mode
& O_APPEND
) |
146 # if (O_LARGEFILE != __FLAG_LARGEFILE) && (O_LARGEFILE != 0)
147 ((open_mode
& O_LARGEFILE
) ? __FLAG_LARGEFILE
: 0) |
149 (open_mode
& O_LARGEFILE
) |
152 (open_mode
& (O_APPEND
|O_LARGEFILE
)) | /* i386 linux and elks */
154 ((((open_mode
& O_ACCMODE
) + 1) ^ 0x03) * __FLAG_WRITEONLY
);
156 #ifdef __STDIO_BUFFERS
157 if (stream
->__filedes
!= INT_MAX
) {
158 /* NB: fopencookie uses bogus filedes == INT_MAX,
159 * avoiding isatty() in that case.
161 i
= errno
; /* preserve errno against isatty call. */
162 if (isatty(stream
->__filedes
))
163 stream
->__modeflags
|= __FLAG_LBF
;
167 if (!stream
->__bufstart
) {
168 if ((stream
->__bufstart
= malloc(BUFSIZ
)) != NULL
) {
169 stream
->__bufend
= stream
->__bufstart
+ BUFSIZ
;
170 stream
->__modeflags
|= __FLAG_FREEBUF
;
172 # if __STDIO_BUILTIN_BUF_SIZE > 0
173 stream
->__bufstart
= stream
->__builtinbuf
;
174 stream
->__bufend
= stream
->__builtinbuf
+ sizeof(stream
->__builtinbuf
);
175 # else /* __STDIO_BUILTIN_BUF_SIZE > 0 */
176 stream
->__bufend
= stream
->__bufstart
;
177 # endif /* __STDIO_BUILTIN_BUF_SIZE > 0 */
181 __STDIO_STREAM_DISABLE_GETC(stream
);
182 __STDIO_STREAM_DISABLE_PUTC(stream
);
183 __STDIO_STREAM_INIT_BUFREAD_BUFPOS(stream
);
186 #ifdef __UCLIBC_HAS_WCHAR__
187 stream
->__ungot_width
[0] = 0;
189 #ifdef __STDIO_MBSTATE
190 __INIT_MBSTATE(&(stream
->__state
));
193 #ifdef __UCLIBC_HAS_THREADS__
194 /* Even in the freopen case, we reset the user locking flag. */
195 stream
->__user_locking
= _stdio_user_locking
;
196 /* STDIO_INIT_MUTEX(stream->__lock); */
199 #ifdef __STDIO_HAS_OPENLIST
200 #if defined(__UCLIBC_HAS_THREADS__) && defined(__STDIO_BUFFERS)
201 if (!(stream
->__modeflags
& __FLAG_FREEFILE
))
203 /* An freopen call so the file was never removed from the list. */
208 /* We have to lock the del mutex in case another thread wants to fclose()
210 __STDIO_THREADLOCK_OPENLIST_DEL
;
211 __STDIO_THREADLOCK_OPENLIST_ADD
;
212 stream
->__nextopen
= _stdio_openlist
; /* New files are inserted at */
213 _stdio_openlist
= stream
; /* the head of the list. */
214 __STDIO_THREADUNLOCK_OPENLIST_ADD
;
215 __STDIO_THREADUNLOCK_OPENLIST_DEL
;
219 __STDIO_STREAM_VALIDATE(stream
);