1 /* Copyright (C) 1993-2017 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, see
16 <http://www.gnu.org/licenses/>.
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. */
30 #include <shlib-compat.h>
32 /* Prototyped for local functions. */
33 static _IO_ssize_t
_IO_cookie_read (_IO_FILE
* fp
, void* buf
,
35 static _IO_ssize_t
_IO_cookie_write (_IO_FILE
* fp
,
36 const void* buf
, _IO_ssize_t size
);
37 static _IO_off64_t
_IO_cookie_seek (_IO_FILE
*fp
, _IO_off64_t offset
, int dir
);
38 static _IO_off64_t
_IO_cookie_seekoff (_IO_FILE
*fp
, _IO_off64_t offset
,
40 static int _IO_cookie_close (_IO_FILE
* fp
);
43 _IO_cookie_read (_IO_FILE
*fp
, void *buf
, _IO_ssize_t size
)
45 struct _IO_cookie_file
*cfile
= (struct _IO_cookie_file
*) fp
;
46 cookie_read_function_t
*read_cb
= cfile
->__io_functions
.read
;
48 PTR_DEMANGLE (read_cb
);
54 return read_cb (cfile
->__cookie
, buf
, size
);
58 _IO_cookie_write (_IO_FILE
*fp
, const void *buf
, _IO_ssize_t size
)
60 struct _IO_cookie_file
*cfile
= (struct _IO_cookie_file
*) fp
;
61 cookie_write_function_t
*write_cb
= cfile
->__io_functions
.write
;
63 PTR_DEMANGLE (write_cb
);
68 fp
->_flags
|= _IO_ERR_SEEN
;
72 _IO_ssize_t n
= write_cb (cfile
->__cookie
, buf
, size
);
74 fp
->_flags
|= _IO_ERR_SEEN
;
80 _IO_cookie_seek (_IO_FILE
*fp
, _IO_off64_t offset
, int dir
)
82 struct _IO_cookie_file
*cfile
= (struct _IO_cookie_file
*) fp
;
83 cookie_seek_function_t
*seek_cb
= cfile
->__io_functions
.seek
;
85 PTR_DEMANGLE (seek_cb
);
88 return ((seek_cb
== NULL
89 || (seek_cb (cfile
->__cookie
, &offset
, dir
)
91 || offset
== (_IO_off64_t
) -1)
92 ? _IO_pos_BAD
: offset
);
96 _IO_cookie_close (_IO_FILE
*fp
)
98 struct _IO_cookie_file
*cfile
= (struct _IO_cookie_file
*) fp
;
99 cookie_close_function_t
*close_cb
= cfile
->__io_functions
.close
;
101 PTR_DEMANGLE (close_cb
);
104 if (close_cb
== NULL
)
107 return close_cb (cfile
->__cookie
);
112 _IO_cookie_seekoff (_IO_FILE
*fp
, _IO_off64_t offset
, int dir
, int mode
)
114 /* We must force the fileops code to always use seek to determine
116 fp
->_offset
= _IO_pos_BAD
;
117 return _IO_file_seekoff (fp
, offset
, dir
, mode
);
121 static const struct _IO_jump_t _IO_cookie_jumps libio_vtable
= {
123 JUMP_INIT(finish
, _IO_file_finish
),
124 JUMP_INIT(overflow
, _IO_file_overflow
),
125 JUMP_INIT(underflow
, _IO_file_underflow
),
126 JUMP_INIT(uflow
, _IO_default_uflow
),
127 JUMP_INIT(pbackfail
, _IO_default_pbackfail
),
128 JUMP_INIT(xsputn
, _IO_file_xsputn
),
129 JUMP_INIT(xsgetn
, _IO_default_xsgetn
),
130 JUMP_INIT(seekoff
, _IO_cookie_seekoff
),
131 JUMP_INIT(seekpos
, _IO_default_seekpos
),
132 JUMP_INIT(setbuf
, _IO_file_setbuf
),
133 JUMP_INIT(sync
, _IO_file_sync
),
134 JUMP_INIT(doallocate
, _IO_file_doallocate
),
135 JUMP_INIT(read
, _IO_cookie_read
),
136 JUMP_INIT(write
, _IO_cookie_write
),
137 JUMP_INIT(seek
, _IO_cookie_seek
),
138 JUMP_INIT(close
, _IO_cookie_close
),
139 JUMP_INIT(stat
, _IO_default_stat
),
140 JUMP_INIT(showmanyc
, _IO_default_showmanyc
),
141 JUMP_INIT(imbue
, _IO_default_imbue
),
145 /* Copy the callbacks from SOURCE to *TARGET, with pointer
148 set_callbacks (_IO_cookie_io_functions_t
*target
,
149 _IO_cookie_io_functions_t source
)
152 PTR_MANGLE (source
.read
);
153 PTR_MANGLE (source
.write
);
154 PTR_MANGLE (source
.seek
);
155 PTR_MANGLE (source
.close
);
161 _IO_cookie_init (struct _IO_cookie_file
*cfile
, int read_write
,
162 void *cookie
, _IO_cookie_io_functions_t io_functions
)
164 _IO_init_internal (&cfile
->__fp
.file
, 0);
165 _IO_JUMPS (&cfile
->__fp
) = &_IO_cookie_jumps
;
167 cfile
->__cookie
= cookie
;
168 set_callbacks (&cfile
->__io_functions
, io_functions
);
170 _IO_new_file_init_internal (&cfile
->__fp
);
172 _IO_mask_flags (&cfile
->__fp
.file
, read_write
,
173 _IO_NO_READS
+_IO_NO_WRITES
+_IO_IS_APPENDING
);
175 /* We use a negative number different from -1 for _fileno to mark that
176 this special stream is not associated with a real file, but still has
177 to be treated as such. */
178 cfile
->__fp
.file
._fileno
= -2;
183 _IO_fopencookie (void *cookie
, const char *mode
,
184 _IO_cookie_io_functions_t io_functions
)
189 struct _IO_cookie_file cfile
;
198 read_write
= _IO_NO_WRITES
;
201 read_write
= _IO_NO_READS
;
204 read_write
= _IO_NO_READS
|_IO_IS_APPENDING
;
207 __set_errno (EINVAL
);
210 if (mode
[0] == '+' || (mode
[0] == 'b' && mode
[1] == '+'))
211 read_write
&= _IO_IS_APPENDING
;
213 new_f
= (struct locked_FILE
*) malloc (sizeof (struct locked_FILE
));
217 new_f
->cfile
.__fp
.file
._lock
= &new_f
->lock
;
220 _IO_cookie_init (&new_f
->cfile
, read_write
, cookie
, io_functions
);
222 return (_IO_FILE
*) &new_f
->cfile
.__fp
;
225 versioned_symbol (libc
, _IO_fopencookie
, fopencookie
, GLIBC_2_2
);
227 #if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_2)
229 static _IO_off64_t
_IO_old_cookie_seek (_IO_FILE
*fp
, _IO_off64_t offset
,
231 _IO_FILE
* _IO_old_fopencookie (void *cookie
, const char *mode
,
232 _IO_cookie_io_functions_t io_functions
);
235 attribute_compat_text_section
236 _IO_old_cookie_seek (_IO_FILE
*fp
, _IO_off64_t offset
, int dir
)
238 struct _IO_cookie_file
*cfile
= (struct _IO_cookie_file
*) fp
;
239 int (*seek_cb
) (_IO_FILE
*, _IO_off_t
, int)
240 = (int (*) (_IO_FILE
*, _IO_off_t
, int)) cfile
->__io_functions
.seek
;;
242 PTR_DEMANGLE (seek_cb
);
248 int ret
= seek_cb (cfile
->__cookie
, offset
, dir
);
250 return (ret
== -1) ? _IO_pos_BAD
: ret
;
253 static const struct _IO_jump_t _IO_old_cookie_jumps libio_vtable
= {
255 JUMP_INIT(finish
, _IO_file_finish
),
256 JUMP_INIT(overflow
, _IO_file_overflow
),
257 JUMP_INIT(underflow
, _IO_file_underflow
),
258 JUMP_INIT(uflow
, _IO_default_uflow
),
259 JUMP_INIT(pbackfail
, _IO_default_pbackfail
),
260 JUMP_INIT(xsputn
, _IO_file_xsputn
),
261 JUMP_INIT(xsgetn
, _IO_default_xsgetn
),
262 JUMP_INIT(seekoff
, _IO_cookie_seekoff
),
263 JUMP_INIT(seekpos
, _IO_default_seekpos
),
264 JUMP_INIT(setbuf
, _IO_file_setbuf
),
265 JUMP_INIT(sync
, _IO_file_sync
),
266 JUMP_INIT(doallocate
, _IO_file_doallocate
),
267 JUMP_INIT(read
, _IO_cookie_read
),
268 JUMP_INIT(write
, _IO_cookie_write
),
269 JUMP_INIT(seek
, _IO_old_cookie_seek
),
270 JUMP_INIT(close
, _IO_cookie_close
),
271 JUMP_INIT(stat
, _IO_default_stat
),
272 JUMP_INIT(showmanyc
, _IO_default_showmanyc
),
273 JUMP_INIT(imbue
, _IO_default_imbue
),
277 attribute_compat_text_section
278 _IO_old_fopencookie (void *cookie
, const char *mode
,
279 _IO_cookie_io_functions_t io_functions
)
283 ret
= _IO_fopencookie (cookie
, mode
, io_functions
);
285 _IO_JUMPS_FILE_plus (ret
) = &_IO_old_cookie_jumps
;
290 compat_symbol (libc
, _IO_old_fopencookie
, fopencookie
, GLIBC_2_0
);