]> git.ipfire.org Git - thirdparty/glibc.git/blame - libio/iofopncook.c
Update.
[thirdparty/glibc.git] / libio / iofopncook.c
CommitLineData
77fe0b9c 1/* Copyright (C) 1993,95,97,99,2000,2002 Free Software Foundation, Inc.
41bdb6e2 2 This file is part of the GNU C Library.
40a55d20 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.
40a55d20 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
40a55d20 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 12 Lesser General Public License for more details.
40a55d20 13
41bdb6e2
AJ
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
17 02111-1307 USA.
40a55d20 18
41bdb6e2
AJ
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. */
96aa2d94
RM
27
28#include <libioP.h>
fa0bc87c 29#include <stdio.h>
96aa2d94 30#include <stdlib.h>
5d1fba6d 31#include <shlib-compat.h>
fa0bc87c
RM
32
33/* Prototyped for local functions. */
572705e4
UD
34static _IO_ssize_t _IO_cookie_read (register _IO_FILE* fp, void* buf,
35 _IO_ssize_t size);
36static _IO_ssize_t _IO_cookie_write (register _IO_FILE* fp,
37 const void* buf, _IO_ssize_t size);
38static _IO_off64_t _IO_cookie_seek (_IO_FILE *fp, _IO_off64_t offset, int dir);
39static int _IO_cookie_close (_IO_FILE* fp);
96aa2d94
RM
40
41static _IO_ssize_t
42_IO_cookie_read (fp, buf, size)
40a55d20
UD
43 _IO_FILE *fp;
44 void *buf;
96aa2d94
RM
45 _IO_ssize_t size;
46{
47 struct _IO_cookie_file *cfile = (struct _IO_cookie_file *) fp;
48
542f5e01 49 if (cfile->__io_functions.read == NULL)
96aa2d94
RM
50 return -1;
51
542f5e01 52 return cfile->__io_functions.read (cfile->__cookie, buf, size);
96aa2d94
RM
53}
54
55static _IO_ssize_t
56_IO_cookie_write (fp, buf, size)
40a55d20
UD
57 _IO_FILE *fp;
58 const void *buf;
96aa2d94
RM
59 _IO_ssize_t size;
60{
61 struct _IO_cookie_file *cfile = (struct _IO_cookie_file *) fp;
62
542f5e01 63 if (cfile->__io_functions.write == NULL)
96aa2d94
RM
64 return -1;
65
542f5e01 66 return cfile->__io_functions.write (cfile->__cookie, buf, size);
96aa2d94
RM
67}
68
d64b6ad0 69static _IO_off64_t
96aa2d94
RM
70_IO_cookie_seek (fp, offset, dir)
71 _IO_FILE *fp;
dfd2257a 72 _IO_off64_t offset;
96aa2d94
RM
73 int dir;
74{
75 struct _IO_cookie_file *cfile = (struct _IO_cookie_file *) fp;
96aa2d94 76
b4e54243 77 return ((cfile->__io_functions.seek == NULL
9658516a 78 || (cfile->__io_functions.seek (cfile->__cookie, &offset, dir)
de153e7f
UD
79 == -1)
80 || offset == (_IO_off64_t) -1)
b4e54243 81 ? _IO_pos_BAD : offset);
96aa2d94
RM
82}
83
84static int
85_IO_cookie_close (fp)
40a55d20 86 _IO_FILE *fp;
96aa2d94
RM
87{
88 struct _IO_cookie_file *cfile = (struct _IO_cookie_file *) fp;
89
542f5e01 90 if (cfile->__io_functions.close == NULL)
96aa2d94
RM
91 return 0;
92
542f5e01 93 return cfile->__io_functions.close (cfile->__cookie);
96aa2d94
RM
94}
95
96
97static struct _IO_jump_t _IO_cookie_jumps = {
98 JUMP_INIT_DUMMY,
77fe0b9c
UD
99 JUMP_INIT(finish, INTUSE(_IO_file_finish)),
100 JUMP_INIT(overflow, INTUSE(_IO_file_overflow)),
101 JUMP_INIT(underflow, INTUSE(_IO_file_underflow)),
102 JUMP_INIT(uflow, INTUSE(_IO_default_uflow)),
103 JUMP_INIT(pbackfail, INTUSE(_IO_default_pbackfail)),
104 JUMP_INIT(xsputn, INTUSE(_IO_file_xsputn)),
105 JUMP_INIT(xsgetn, INTUSE(_IO_default_xsgetn)),
106 JUMP_INIT(seekoff, INTUSE(_IO_file_seekoff)),
96aa2d94 107 JUMP_INIT(seekpos, _IO_default_seekpos),
77fe0b9c
UD
108 JUMP_INIT(setbuf, INTUSE(_IO_file_setbuf)),
109 JUMP_INIT(sync, INTUSE(_IO_file_sync)),
110 JUMP_INIT(doallocate, INTUSE(_IO_file_doallocate)),
96aa2d94
RM
111 JUMP_INIT(read, _IO_cookie_read),
112 JUMP_INIT(write, _IO_cookie_write),
113 JUMP_INIT(seek, _IO_cookie_seek),
114 JUMP_INIT(close, _IO_cookie_close),
dfd2257a
UD
115 JUMP_INIT(stat, _IO_default_stat),
116 JUMP_INIT(showmanyc, _IO_default_showmanyc),
117 JUMP_INIT(imbue, _IO_default_imbue),
96aa2d94
RM
118};
119
120
b4e54243
RM
121void
122_IO_cookie_init (struct _IO_cookie_file *cfile, int read_write,
123 void *cookie, _IO_cookie_io_functions_t io_functions)
124{
77fe0b9c 125 INTUSE(_IO_init) (&cfile->__fp.file, 0);
2ca8b1ee 126 _IO_JUMPS (&cfile->__fp) = &_IO_cookie_jumps;
b4e54243
RM
127
128 cfile->__cookie = cookie;
129 cfile->__io_functions = io_functions;
130
77fe0b9c 131 INTUSE(_IO_file_init) (&cfile->__fp);
b4e54243 132
2ca8b1ee
GM
133 cfile->__fp.file._IO_file_flags =
134 _IO_mask_flags (&cfile->__fp.file, read_write,
b4e54243
RM
135 _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING);
136
137 /* We use a negative number different from -1 for _fileno to mark that
138 this special stream is not associated with a real file, but still has
139 to be treated as such. */
2ca8b1ee 140 cfile->__fp.file._fileno = -2;
b4e54243
RM
141}
142
143
96aa2d94 144_IO_FILE *
5d1fba6d 145_IO_fopencookie (cookie, mode, io_functions)
96aa2d94
RM
146 void *cookie;
147 const char *mode;
148 _IO_cookie_io_functions_t io_functions;
149{
150 int read_write;
edf5b2d7
UD
151 struct locked_FILE
152 {
153 struct _IO_cookie_file cfile;
499e7464 154#ifdef _IO_MTSAFE_IO
edf5b2d7 155 _IO_lock_t lock;
499e7464 156#endif
edf5b2d7 157 } *new_f;
96aa2d94
RM
158
159 switch (*mode++)
160 {
161 case 'r':
162 read_write = _IO_NO_WRITES;
163 break;
164 case 'w':
165 read_write = _IO_NO_READS;
166 break;
167 case 'a':
168 read_write = _IO_NO_READS|_IO_IS_APPENDING;
169 break;
170 default:
171 return NULL;
172 }
173 if (mode[0] == '+' || (mode[0] == 'b' && mode[1] == '+'))
174 read_write &= _IO_IS_APPENDING;
175
edf5b2d7
UD
176 new_f = (struct locked_FILE *) malloc (sizeof (struct locked_FILE));
177 if (new_f == NULL)
96aa2d94 178 return NULL;
499e7464 179#ifdef _IO_MTSAFE_IO
2ca8b1ee 180 new_f->cfile.__fp.file._lock = &new_f->lock;
499e7464 181#endif
96aa2d94 182
b4e54243 183 _IO_cookie_init (&new_f->cfile, read_write, cookie, io_functions);
110215a9 184
2ca8b1ee 185 return (_IO_FILE *) &new_f->cfile.__fp;
96aa2d94 186}
5d1fba6d
AJ
187
188versioned_symbol (libc, _IO_fopencookie, fopencookie, GLIBC_2_2);
189
190#if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_2)
191
192static _IO_off64_t _IO_old_cookie_seek (_IO_FILE *fp, _IO_off64_t offset,
193 int dir);
194_IO_FILE * _IO_old_fopencookie (void *cookie, const char *mode,
195 _IO_cookie_io_functions_t io_functions);
196
197static _IO_off64_t
198_IO_old_cookie_seek (fp, offset, dir)
199 _IO_FILE *fp;
200 _IO_off64_t offset;
201 int dir;
202{
203 struct _IO_cookie_file *cfile = (struct _IO_cookie_file *) fp;
204 int (*seek) (_IO_FILE *, _IO_off_t, int);
205 int ret;
206
207 seek = (int (*)(_IO_FILE *, _IO_off_t, int)) cfile->__io_functions.seek;
208 if (seek == NULL)
209 return _IO_pos_BAD;
210
211 ret = seek (cfile->__cookie, offset, dir);
212
213 return (ret == -1) ? _IO_pos_BAD : ret;
214}
215
216static struct _IO_jump_t _IO_old_cookie_jumps = {
217 JUMP_INIT_DUMMY,
77fe0b9c
UD
218 JUMP_INIT(finish, INTUSE(_IO_file_finish)),
219 JUMP_INIT(overflow, INTUSE(_IO_file_overflow)),
220 JUMP_INIT(underflow, INTUSE(_IO_file_underflow)),
221 JUMP_INIT(uflow, INTUSE(_IO_default_uflow)),
222 JUMP_INIT(pbackfail, INTUSE(_IO_default_pbackfail)),
223 JUMP_INIT(xsputn, INTUSE(_IO_file_xsputn)),
224 JUMP_INIT(xsgetn, INTUSE(_IO_default_xsgetn)),
225 JUMP_INIT(seekoff, INTUSE(_IO_file_seekoff)),
5d1fba6d 226 JUMP_INIT(seekpos, _IO_default_seekpos),
77fe0b9c
UD
227 JUMP_INIT(setbuf, INTUSE(_IO_file_setbuf)),
228 JUMP_INIT(sync, INTUSE(_IO_file_sync)),
229 JUMP_INIT(doallocate, INTUSE(_IO_file_doallocate)),
5d1fba6d
AJ
230 JUMP_INIT(read, _IO_cookie_read),
231 JUMP_INIT(write, _IO_cookie_write),
232 JUMP_INIT(seek, _IO_old_cookie_seek),
233 JUMP_INIT(close, _IO_cookie_close),
234 JUMP_INIT(stat, _IO_default_stat),
235 JUMP_INIT(showmanyc, _IO_default_showmanyc),
236 JUMP_INIT(imbue, _IO_default_imbue),
237};
238
239_IO_FILE *
240_IO_old_fopencookie (cookie, mode, io_functions)
241 void *cookie;
242 const char *mode;
243 _IO_cookie_io_functions_t io_functions;
244{
245 _IO_FILE *ret;
246
247 ret = _IO_fopencookie (cookie, mode, io_functions);
248 if (ret != NULL)
2ca8b1ee 249 _IO_JUMPS ((struct _IO_FILE_plus *) ret) = &_IO_old_cookie_jumps;
5d1fba6d
AJ
250
251 return ret;
252}
253
254compat_symbol (libc, _IO_old_fopencookie, fopencookie, GLIBC_2_0);
255
256#endif