ignored by import
[gcc.git] / libio / iofdopen.c
1 /*
2 Copyright (C) 1993, 1994 Free Software Foundation
3
4 This file is part of the GNU IO Library. This library is free
5 software; you can redistribute it and/or modify it under the
6 terms of the GNU General Public License as published by the
7 Free Software Foundation; either version 2, or (at your option)
8 any later version.
9
10 This 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
13 GNU General Public License for more details.
14
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 the Free
17 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 As a special exception, if you link this library with files
20 compiled with a GNU compiler to produce an executable, this does not cause
21 the resulting executable to be covered by the GNU General Public License.
22 This exception does not however invalidate any other reasons why
23 the executable file might be covered by the GNU General Public License. */
24
25 #ifdef __STDC__
26 #include <stdlib.h>
27 #endif
28 #include "libioP.h"
29 #include <fcntl.h>
30
31 #ifndef _IO_fcntl
32 #define _IO_fcntl fcntl
33 #endif
34
35 _IO_FILE *
36 DEFUN(_IO_fdopen, (fd, mode),
37 int fd AND const char *mode)
38 {
39 int read_write;
40 int posix_mode = 0;
41 struct _IO_FILE_plus *fp;
42 int fd_flags;
43
44 switch (*mode++)
45 {
46 case 'r':
47 read_write = _IO_NO_WRITES;
48 break;
49 case 'w':
50 read_write = _IO_NO_READS;
51 break;
52 case 'a':
53 posix_mode = O_APPEND;
54 read_write = _IO_NO_READS|_IO_IS_APPENDING;
55 break;
56 default:
57 #ifdef EINVAL
58 errno = EINVAL;
59 #endif
60 return NULL;
61 }
62 if (mode[0] == '+' || (mode[0] == 'b' && mode[1] == '+'))
63 read_write &= _IO_IS_APPENDING;
64 #ifdef F_GETFL
65 fd_flags = _IO_fcntl (fd, F_GETFL);
66 #ifndef O_ACCMODE
67 #define O_ACCMODE (O_RDONLY|O_WRONLY|O_RDWR)
68 #endif
69 if (fd_flags == -1
70 || ((fd_flags & O_ACCMODE) == O_RDONLY && !(read_write & _IO_NO_WRITES))
71 || ((fd_flags & O_ACCMODE) == O_WRONLY && !(read_write & _IO_NO_READS)))
72 return NULL;
73
74 /* The May 93 draft of P1003.4/D14.1 (redesignated as 1003.1b)
75 [System Application Program Interface (API) Amendment 1:
76 Realtime Extensions], Rationale B.8.3.3
77 Open a Stream on a File Descriptor says:
78
79 Although not explicitly required by POSIX.1, a good
80 implementation of append ("a") mode would cause the
81 O_APPEND flag to be set.
82
83 (Historical implementations [such as Solaris2] do a one-time
84 seek in fdopen.)
85
86 However, we do not turn O_APPEND off if the mode is "w" (even
87 though that would seem consistent) because that would be more
88 likely to break historical programs.
89 */
90 if ((posix_mode & O_APPEND) && !(fd_flags & O_APPEND))
91 {
92 #ifdef F_SETFL
93 if (_IO_fcntl (fd, F_SETFL, fd_flags | O_APPEND) == -1)
94 #endif
95 return NULL;
96 }
97 #endif
98
99 fp = (struct _IO_FILE_plus*)malloc(sizeof(struct _IO_FILE_plus));
100 if (fp == NULL)
101 return NULL;
102 _IO_init(&fp->file, 0);
103 _IO_JUMPS(&fp->file) = &_IO_file_jumps;
104 _IO_file_init(&fp->file);
105 #if !_IO_UNIFIED_JUMPTABLES
106 fp->vtable = NULL;
107 #endif
108 if (_IO_file_attach(&fp->file, fd) == NULL)
109 {
110 _IO_un_link(&fp->file);
111 free (fp);
112 return NULL;
113 }
114 fp->file._flags &= ~_IO_DELETE_DONT_CLOSE;
115
116 fp->file._IO_file_flags =
117 _IO_mask_flags(&fp->file, read_write,
118 _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING);
119
120 return (_IO_FILE*)fp;
121 }