]> git.ipfire.org Git - thirdparty/glibc.git/blame - libio/oldiofdopen.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / libio / oldiofdopen.c
CommitLineData
f7a9f785 1/* Copyright (C) 1993-2016 Free Software Foundation, Inc.
41bdb6e2 2 This file is part of the GNU C Library.
bd355af0 3
41bdb6e2
AJ
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.
bd355af0 8
41bdb6e2
AJ
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
bd355af0 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 12 Lesser General Public License for more details.
bd355af0 13
41bdb6e2 14 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>.
bd355af0 17
41bdb6e2
AJ
18 As a special exception, if you link the code in this file with
19 files compiled with a GNU compiler to produce an executable,
20 that does not cause the resulting executable to be covered by
21 the GNU Lesser General Public License. This exception does not
22 however invalidate any other reasons why the executable file
23 might be covered by the GNU Lesser General Public License.
24 This exception applies to code released by its copyright holders
25 in files containing the exception. */
bd355af0 26
16710d58
RM
27#include <shlib-compat.h>
28#if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1)
29
bd355af0 30#define _IO_USE_OLD_IO_FILE
c8a89e7d 31#include <stdlib.h>
bd355af0
UD
32#include "libioP.h"
33#include <fcntl.h>
34
35#ifndef _IO_fcntl
c0b50509 36# define _IO_fcntl __fcntl
bd355af0
UD
37#endif
38
39_IO_FILE *
4a381a81 40attribute_compat_text_section
9d46370c 41_IO_old_fdopen (int fd, const char *mode)
bd355af0
UD
42{
43 int read_write;
44 int posix_mode = 0;
45 struct locked_FILE
46 {
7ea11363 47 struct _IO_FILE_complete_plus fp;
bd355af0
UD
48#ifdef _IO_MTSAFE_IO
49 _IO_lock_t lock;
50#endif
51 } *new_f;
52 int fd_flags;
53
54 switch (*mode++)
55 {
56 case 'r':
57 read_write = _IO_NO_WRITES;
58 break;
59 case 'w':
60 read_write = _IO_NO_READS;
61 break;
62 case 'a':
63 posix_mode = O_APPEND;
64 read_write = _IO_NO_READS|_IO_IS_APPENDING;
65 break;
66 default:
67 MAYBE_SET_EINVAL;
68 return NULL;
69 }
70 if (mode[0] == '+' || (mode[0] == 'b' && mode[1] == '+'))
71 read_write &= _IO_IS_APPENDING;
72#ifdef F_GETFL
73 fd_flags = _IO_fcntl (fd, F_GETFL);
74#ifndef O_ACCMODE
75#define O_ACCMODE (O_RDONLY|O_WRONLY|O_RDWR)
76#endif
77 if (fd_flags == -1
78 || ((fd_flags & O_ACCMODE) == O_RDONLY && !(read_write & _IO_NO_WRITES))
79 || ((fd_flags & O_ACCMODE) == O_WRONLY && !(read_write & _IO_NO_READS)))
80 return NULL;
81
82 /* The May 93 draft of P1003.4/D14.1 (redesignated as 1003.1b)
83 [System Application Program Interface (API) Amendment 1:
84 Realtime Extensions], Rationale B.8.3.3
85 Open a Stream on a File Descriptor says:
86
87 Although not explicitly required by POSIX.1, a good
88 implementation of append ("a") mode would cause the
89 O_APPEND flag to be set.
90
91 (Historical implementations [such as Solaris2] do a one-time
92 seek in fdopen.)
93
94 However, we do not turn O_APPEND off if the mode is "w" (even
95 though that would seem consistent) because that would be more
96 likely to break historical programs.
97 */
98 if ((posix_mode & O_APPEND) && !(fd_flags & O_APPEND))
99 {
100#ifdef F_SETFL
101 if (_IO_fcntl (fd, F_SETFL, fd_flags | O_APPEND) == -1)
102#endif
103 return NULL;
104 }
105#endif
106
107 new_f = (struct locked_FILE *) malloc (sizeof (struct locked_FILE));
108 if (new_f == NULL)
109 return NULL;
110#ifdef _IO_MTSAFE_IO
7ea11363 111 new_f->fp.file._file._lock = &new_f->lock;
bd355af0 112#endif
7ea11363 113 _IO_old_init (&new_f->fp.file._file, 0);
e69dcccb 114 _IO_JUMPS_FILE_plus (&new_f->fp) = &_IO_old_file_jumps;
7ea11363 115 _IO_old_file_init ((struct _IO_FILE_plus *) &new_f->fp);
bd355af0
UD
116#if !_IO_UNIFIED_JUMPTABLES
117 new_f->fp.vtable = NULL;
118#endif
7ea11363 119 if (_IO_old_file_attach (&new_f->fp.file._file, fd) == NULL)
bd355af0 120 {
d18ea0c5 121 _IO_un_link ((struct _IO_FILE_plus *) &new_f->fp);
bd355af0
UD
122 free (new_f);
123 return NULL;
124 }
7ea11363 125 new_f->fp.file._file._flags &= ~_IO_DELETE_DONT_CLOSE;
bd355af0 126
817328ee
AS
127 _IO_mask_flags (&new_f->fp.file._file, read_write,
128 _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING);
bd355af0 129
2ca8b1ee 130 return (_IO_FILE *) &new_f->fp;
bd355af0
UD
131}
132
133strong_alias (_IO_old_fdopen, __old_fdopen)
16710d58
RM
134compat_symbol (libc, _IO_old_fdopen, _IO_fdopen, GLIBC_2_0);
135compat_symbol (libc, __old_fdopen, fdopen, GLIBC_2_0);
136
137#endif