]> git.ipfire.org Git - thirdparty/glibc.git/blame - libio/fileops.c
* Makerules (check-abi) [$(enable-check-abi) = warn]:
[thirdparty/glibc.git] / libio / fileops.c
CommitLineData
f5bf21a7 1/* Copyright (C) 1993, 1995, 1997-2002, 2003 Free Software Foundation, Inc.
41bdb6e2 2 This file is part of the GNU C Library.
40a55d20 3 Written by Per Bothner <bothner@cygnus.com>.
96aa2d94 4
41bdb6e2
AJ
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
96aa2d94 9
41bdb6e2
AJ
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
40a55d20 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 13 Lesser General Public License for more details.
96aa2d94 14
41bdb6e2
AJ
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA.
96aa2d94 19
41bdb6e2
AJ
20 As a special exception, if you link the code in this file with
21 files compiled with a GNU compiler to produce an executable,
22 that does not cause the resulting executable to be covered by
23 the GNU Lesser General Public License. This exception does not
24 however invalidate any other reasons why the executable file
25 might be covered by the GNU Lesser General Public License.
26 This exception applies to code released by its copyright holders
27 in files containing the exception. */
96aa2d94 28
96aa2d94 29
fa0bc87c
RM
30#ifndef _POSIX_SOURCE
31# define _POSIX_SOURCE
32#endif
96aa2d94 33#include "libioP.h"
129d706d 34#include <assert.h>
96aa2d94 35#include <fcntl.h>
284749da 36#include <sys/param.h>
96aa2d94
RM
37#include <sys/types.h>
38#include <sys/stat.h>
39#include <string.h>
40#include <errno.h>
c9f10034 41#include <unistd.h>
00bc5db0
UD
42#ifdef __STDC__
43#include <stdlib.h>
44#endif
4e2e9999
UD
45#if _LIBC
46# include "../wcsmbs/wcsmbsload.h"
129d706d
UD
47# include "../iconv/gconv_charset.h"
48# include "../iconv/gconv_int.h"
0bf98029 49# include <shlib-compat.h>
4e2e9999 50#endif
96aa2d94
RM
51#ifndef errno
52extern int errno;
53#endif
4547c1a4
UD
54#ifndef __set_errno
55# define __set_errno(Val) errno = (Val)
56#endif
96aa2d94 57
68dbb3a6
UD
58
59#ifdef _LIBC
61eb22d3
UD
60# define open(Name, Flags, Prot) __open (Name, Flags, Prot)
61# define close(FD) __close (FD)
61eb22d3
UD
62# define lseek(FD, Offset, Whence) __lseek (FD, Offset, Whence)
63# define read(FD, Buf, NBytes) __read (FD, Buf, NBytes)
64# define write(FD, Buf, NBytes) __write (FD, Buf, NBytes)
4483f2c0 65# define _IO_do_write _IO_new_do_write /* For macro uses. */
319d719d
UD
66#else
67# define _IO_new_do_write _IO_do_write
68# define _IO_new_file_attach _IO_file_attach
69# define _IO_new_file_close_it _IO_file_close_it
70# define _IO_new_file_finish _IO_file_finish
71# define _IO_new_file_fopen _IO_file_fopen
72# define _IO_new_file_init _IO_file_init
73# define _IO_new_file_setbuf _IO_file_setbuf
74# define _IO_new_file_sync _IO_file_sync
75# define _IO_new_file_overflow _IO_file_overflow
76# define _IO_new_file_seekoff _IO_file_seekoff
77# define _IO_new_file_underflow _IO_file_underflow
78# define _IO_new_file_write _IO_file_write
79# define _IO_new_file_xsputn _IO_file_xsputn
68dbb3a6
UD
80#endif
81
129d706d
UD
82
83#ifdef _LIBC
ab26a24a 84extern struct __gconv_trans_data __libio_translit attribute_hidden;
129d706d
UD
85#endif
86
87
96aa2d94
RM
88/* An fstream can be in at most one of put mode, get mode, or putback mode.
89 Putback mode is a variant of get mode.
90
91 In a filebuf, there is only one current position, instead of two
6d52618b 92 separate get and put pointers. In get mode, the current position
96aa2d94
RM
93 is that of gptr(); in put mode that of pptr().
94
95 The position in the buffer that corresponds to the position
a18f587d
UD
96 in external file system is normally _IO_read_end, except in putback
97 mode, when it is _IO_save_end.
96aa2d94
RM
98 If the field _fb._offset is >= 0, it gives the offset in
99 the file as a whole corresponding to eGptr(). (?)
100
101 PUT MODE:
a18f587d
UD
102 If a filebuf is in put mode, then all of _IO_read_ptr, _IO_read_end,
103 and _IO_read_base are equal to each other. These are usually equal
104 to _IO_buf_base, though not necessarily if we have switched from
105 get mode to put mode. (The reason is to maintain the invariant
106 that _IO_read_end corresponds to the external file position.)
107 _IO_write_base is non-NULL and usually equal to _IO_base_base.
108 We also have _IO_write_end == _IO_buf_end, but only in fully buffered mode.
109 The un-flushed character are those between _IO_write_base and _IO_write_ptr.
110
96aa2d94
RM
111 GET MODE:
112 If a filebuf is in get or putback mode, eback() != egptr().
113 In get mode, the unread characters are between gptr() and egptr().
114 The OS file position corresponds to that of egptr().
a18f587d 115
96aa2d94
RM
116 PUTBACK MODE:
117 Putback mode is used to remember "excess" characters that have
118 been sputbackc'd in a separate putback buffer.
119 In putback mode, the get buffer points to the special putback buffer.
120 The unread characters are the characters between gptr() and egptr()
121 in the putback buffer, as well as the area between save_gptr()
122 and save_egptr(), which point into the original reserve buffer.
123 (The pointers save_gptr() and save_egptr() are the values
124 of gptr() and egptr() at the time putback mode was entered.)
125 The OS position corresponds to that of save_egptr().
23396375 126
96aa2d94 127 LINE BUFFERED OUTPUT:
a18f587d 128 During line buffered output, _IO_write_base==base() && epptr()==base().
96aa2d94
RM
129 However, ptr() may be anywhere between base() and ebuf().
130 This forces a call to filebuf::overflow(int C) on every put.
131 If there is more space in the buffer, and C is not a '\n',
132 then C is inserted, and pptr() incremented.
23396375 133
96aa2d94
RM
134 UNBUFFERED STREAMS:
135 If a filebuf is unbuffered(), the _shortbuf[1] is used as the buffer.
136*/
137
138#define CLOSED_FILEBUF_FLAGS \
139 (_IO_IS_FILEBUF+_IO_NO_READS+_IO_NO_WRITES+_IO_TIED_PUT_GET)
140
141
142void
b259e746 143_IO_new_file_init (fp)
2ca8b1ee 144 struct _IO_FILE_plus *fp;
96aa2d94
RM
145{
146 /* POSIX.1 allows another file handle to be used to change the position
147 of our file descriptor. Hence we actually don't know the actual
148 position before we do the first fseek (and until a following fflush). */
2ca8b1ee
GM
149 fp->file._offset = _IO_pos_BAD;
150 fp->file._IO_file_flags |= CLOSED_FILEBUF_FLAGS;
96aa2d94 151
77fe0b9c 152 INTUSE(_IO_link_in) (fp);
2ca8b1ee 153 fp->file._fileno = -1;
96aa2d94 154}
77fe0b9c 155INTDEF2(_IO_new_file_init, _IO_file_init)
96aa2d94
RM
156
157int
b259e746 158_IO_new_file_close_it (fp)
40a55d20 159 _IO_FILE *fp;
96aa2d94 160{
fa0bc87c 161 int write_status, close_status;
40a55d20 162 if (!_IO_file_is_open (fp))
96aa2d94
RM
163 return EOF;
164
3384a8d6
UD
165 if ((fp->_flags & _IO_NO_WRITES) == 0
166 && (fp->_flags & _IO_CURRENTLY_PUTTING) != 0)
167 write_status = _IO_do_flush (fp);
168 else
169 write_status = 0;
96aa2d94 170
77fe0b9c 171 INTUSE(_IO_unsave_markers) (fp);
96aa2d94
RM
172
173 close_status = _IO_SYSCLOSE (fp);
174
175 /* Free buffer. */
d64b6ad0
UD
176 if (fp->_mode <= 0)
177 {
77fe0b9c 178 INTUSE(_IO_setb) (fp, NULL, NULL, 0);
d64b6ad0
UD
179 _IO_setg (fp, NULL, NULL, NULL);
180 _IO_setp (fp, NULL, NULL);
181 }
319d719d 182#if defined _LIBC || defined _GLIBCPP_USE_WCHAR_T
d64b6ad0
UD
183 else
184 {
44c4ccbc
UD
185 if (_IO_have_wbackup (fp))
186 INTUSE(_IO_free_wbackup_area) (fp);
77fe0b9c 187 INTUSE(_IO_wsetb) (fp, NULL, NULL, 0);
d64b6ad0
UD
188 _IO_wsetg (fp, NULL, NULL, NULL);
189 _IO_wsetp (fp, NULL, NULL);
190 }
319d719d 191#endif
96aa2d94 192
77fe0b9c 193 INTUSE(_IO_un_link) ((struct _IO_FILE_plus *) fp);
96aa2d94 194 fp->_flags = _IO_MAGIC|CLOSED_FILEBUF_FLAGS;
110215a9 195 fp->_fileno = -1;
bd355af0 196 fp->_offset = _IO_pos_BAD;
96aa2d94 197
fa0bc87c 198 return close_status ? close_status : write_status;
96aa2d94 199}
77fe0b9c 200INTDEF2(_IO_new_file_close_it, _IO_file_close_it)
96aa2d94
RM
201
202void
b259e746 203_IO_new_file_finish (fp, dummy)
40a55d20
UD
204 _IO_FILE *fp;
205 int dummy;
96aa2d94 206{
40a55d20 207 if (_IO_file_is_open (fp))
96aa2d94
RM
208 {
209 _IO_do_flush (fp);
210 if (!(fp->_flags & _IO_DELETE_DONT_CLOSE))
211 _IO_SYSCLOSE (fp);
212 }
77fe0b9c 213 INTUSE(_IO_default_finish) (fp, 0);
96aa2d94 214}
77fe0b9c 215INTDEF2(_IO_new_file_finish, _IO_file_finish)
96aa2d94 216
bd355af0
UD
217#if defined __GNUC__ && __GNUC__ >= 2
218__inline__
219#endif
220_IO_FILE *
221_IO_file_open (fp, filename, posix_mode, prot, read_write, is32not64)
222 _IO_FILE *fp;
223 const char *filename;
224 int posix_mode;
225 int prot;
226 int read_write;
227 int is32not64;
228{
229 int fdesc;
230#ifdef _G_OPEN64
231 fdesc = (is32not64
232 ? open (filename, posix_mode, prot)
233 : _G_OPEN64 (filename, posix_mode, prot));
234#else
235 fdesc = open (filename, posix_mode, prot);
236#endif
237 if (fdesc < 0)
238 return NULL;
239 fp->_fileno = fdesc;
240 _IO_mask_flags (fp, read_write,_IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING);
c096ab25 241 if ((read_write & _IO_IS_APPENDING) && (read_write & _IO_NO_READS))
bd355af0
UD
242 if (_IO_SEEKOFF (fp, (_IO_off64_t)0, _IO_seek_end, _IOS_INPUT|_IOS_OUTPUT)
243 == _IO_pos_BAD && errno != ESPIPE)
2c617417
UD
244 {
245 close (fdesc);
246 return NULL;
247 }
77fe0b9c 248 INTUSE(_IO_link_in) ((struct _IO_FILE_plus *) fp);
bd355af0
UD
249 return fp;
250}
ee2a5ae8 251libc_hidden_def (_IO_file_open)
bd355af0 252
96aa2d94 253_IO_FILE *
b259e746 254_IO_new_file_fopen (fp, filename, mode, is32not64)
40a55d20
UD
255 _IO_FILE *fp;
256 const char *filename;
257 const char *mode;
dfd2257a 258 int is32not64;
96aa2d94
RM
259{
260 int oflags = 0, omode;
bd355af0 261 int read_write;
96aa2d94 262 int oprot = 0666;
f38931a9 263 int i;
4e2e9999 264 _IO_FILE *result;
129d706d 265#ifdef _LIBC
4e2e9999 266 const char *cs;
129d706d 267 const char *last_recognized;
4e2e9999
UD
268#endif
269
96aa2d94
RM
270 if (_IO_file_is_open (fp))
271 return 0;
f38931a9 272 switch (*mode)
40a55d20
UD
273 {
274 case 'r':
275 omode = O_RDONLY;
276 read_write = _IO_NO_WRITES;
277 break;
278 case 'w':
279 omode = O_WRONLY;
280 oflags = O_CREAT|O_TRUNC;
281 read_write = _IO_NO_READS;
282 break;
283 case 'a':
284 omode = O_WRONLY;
285 oflags = O_CREAT|O_APPEND;
286 read_write = _IO_NO_READS|_IO_IS_APPENDING;
287 break;
288 default:
289 __set_errno (EINVAL);
290 return NULL;
291 }
129d706d
UD
292#ifdef _LIBC
293 last_recognized = mode;
294#endif
b7fc6d07 295 for (i = 1; i < 5; ++i)
40a55d20 296 {
f38931a9
UD
297 switch (*++mode)
298 {
299 case '\0':
300 break;
301 case '+':
302 omode = O_RDWR;
303 read_write &= _IO_IS_APPENDING;
129d706d
UD
304#ifdef _LIBC
305 last_recognized = mode;
306#endif
f38931a9
UD
307 continue;
308 case 'x':
309 oflags |= O_EXCL;
129d706d
UD
310#ifdef _LIBC
311 last_recognized = mode;
312#endif
f38931a9
UD
313 continue;
314 case 'b':
129d706d
UD
315#ifdef _LIBC
316 last_recognized = mode;
317#endif
b7fc6d07
UD
318 continue;
319 case 'm':
320 fp->_flags2 |= _IO_FLAGS2_MMAP;
321 continue;
f38931a9
UD
322 default:
323 /* Ignore. */
324 continue;
325 }
326 break;
40a55d20 327 }
f38931a9 328
4e2e9999
UD
329 result = _IO_file_open (fp, filename, omode|oflags, oprot, read_write,
330 is32not64);
331
332
129d706d
UD
333#ifdef _LIBC
334 if (result != NULL)
4e2e9999 335 {
129d706d
UD
336 /* Test whether the mode string specifies the conversion. */
337 cs = strstr (last_recognized + 1, ",ccs=");
338 if (cs != NULL)
339 {
340 /* Yep. Load the appropriate conversions and set the orientation
341 to wide. */
342 struct gconv_fcts fcts;
343 struct _IO_codecvt *cc;
344 char *endp = __strchrnul (cs + 5, ',');
345 char ccs[endp - (cs + 5) + 3];
346
347 *((char *) __mempcpy (ccs, cs + 5, endp - (cs + 5))) = '\0';
348 strip (ccs, ccs);
349
350 if (__wcsmbs_named_conv (&fcts, ccs[2] == '\0'
351 ? upstr (ccs, cs + 5) : ccs) != 0)
352 {
353 /* Something went wrong, we cannot load the conversion modules.
354 This means we cannot proceed since the user explicitly asked
355 for these. */
1739d268 356 (void) INTUSE(_IO_file_close_it) (fp);
129d706d
UD
357 __set_errno (EINVAL);
358 return NULL;
359 }
360
361 assert (fcts.towc_nsteps == 1);
362 assert (fcts.tomb_nsteps == 1);
363
364 fp->_wide_data->_IO_read_ptr = fp->_wide_data->_IO_read_end;
365 fp->_wide_data->_IO_write_ptr = fp->_wide_data->_IO_write_base;
366
367 /* Clear the state. We start all over again. */
368 memset (&fp->_wide_data->_IO_state, '\0', sizeof (__mbstate_t));
369 memset (&fp->_wide_data->_IO_last_state, '\0', sizeof (__mbstate_t));
370
371 cc = fp->_codecvt = &fp->_wide_data->_codecvt;
372
373 /* The functions are always the same. */
374 *cc = __libio_codecvt;
375
376 cc->__cd_in.__cd.__nsteps = fcts.towc_nsteps;
377 cc->__cd_in.__cd.__steps = fcts.towc;
378
379 cc->__cd_in.__cd.__data[0].__invocation_counter = 0;
380 cc->__cd_in.__cd.__data[0].__internal_use = 1;
381 cc->__cd_in.__cd.__data[0].__flags = __GCONV_IS_LAST;
382 cc->__cd_in.__cd.__data[0].__statep = &result->_wide_data->_IO_state;
383
384 /* XXX For now no transliteration. */
385 cc->__cd_in.__cd.__data[0].__trans = NULL;
386
387 cc->__cd_out.__cd.__nsteps = fcts.tomb_nsteps;
388 cc->__cd_out.__cd.__steps = fcts.tomb;
389
390 cc->__cd_out.__cd.__data[0].__invocation_counter = 0;
391 cc->__cd_out.__cd.__data[0].__internal_use = 1;
392 cc->__cd_out.__cd.__data[0].__flags = __GCONV_IS_LAST;
393 cc->__cd_out.__cd.__data[0].__statep =
394 &result->_wide_data->_IO_state;
395
396 /* And now the transliteration. */
397 cc->__cd_out.__cd.__data[0].__trans = &__libio_translit;
398
399 /* Set the mode now. */
400 result->_mode = 1;
401
402 /* We don't need the step data structure anymore. */
403 __gconv_release_cache (fcts.towc, fcts.towc_nsteps);
404 __gconv_release_cache (fcts.tomb, fcts.tomb_nsteps);
405 }
4e2e9999
UD
406 }
407#endif /* GNU libc */
408
409 return result;
96aa2d94 410}
77fe0b9c 411INTDEF2(_IO_new_file_fopen, _IO_file_fopen)
96aa2d94 412
40a55d20 413_IO_FILE *
b259e746 414_IO_new_file_attach (fp, fd)
40a55d20
UD
415 _IO_FILE *fp;
416 int fd;
96aa2d94 417{
40a55d20 418 if (_IO_file_is_open (fp))
96aa2d94
RM
419 return NULL;
420 fp->_fileno = fd;
421 fp->_flags &= ~(_IO_NO_READS+_IO_NO_WRITES);
422 fp->_flags |= _IO_DELETE_DONT_CLOSE;
f65fd747
UD
423 /* Get the current position of the file. */
424 /* We have to do that since that may be junk. */
bd355af0 425 fp->_offset = _IO_pos_BAD;
dfd2257a 426 if (_IO_SEEKOFF (fp, (_IO_off64_t)0, _IO_seek_cur, _IOS_INPUT|_IOS_OUTPUT)
f65fd747
UD
427 == _IO_pos_BAD && errno != ESPIPE)
428 return NULL;
96aa2d94
RM
429 return fp;
430}
77fe0b9c 431INTDEF2(_IO_new_file_attach, _IO_file_attach)
96aa2d94 432
40a55d20 433_IO_FILE *
b259e746 434_IO_new_file_setbuf (fp, p, len)
40a55d20
UD
435 _IO_FILE *fp;
436 char *p;
437 _IO_ssize_t len;
96aa2d94 438{
d64b6ad0
UD
439 if (_IO_default_setbuf (fp, p, len) == NULL)
440 return NULL;
96aa2d94 441
d64b6ad0
UD
442 fp->_IO_write_base = fp->_IO_write_ptr = fp->_IO_write_end
443 = fp->_IO_buf_base;
444 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
96aa2d94 445
d64b6ad0 446 return fp;
96aa2d94 447}
77fe0b9c 448INTDEF2(_IO_new_file_setbuf, _IO_file_setbuf)
96aa2d94 449
bff334e0
UD
450
451_IO_FILE *
452_IO_file_setbuf_mmap (fp, p, len)
453 _IO_FILE *fp;
454 char *p;
455 _IO_ssize_t len;
456{
457 _IO_FILE *result;
458
459 /* Change the function table. */
230491f0 460 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &INTUSE(_IO_file_jumps);
bff334e0
UD
461 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps;
462
463 /* And perform the normal operation. */
464 result = _IO_new_file_setbuf (fp, p, len);
465
466 /* If the call failed, restore to using mmap. */
467 if (result == NULL)
468 {
469 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &_IO_file_jumps_mmap;
470 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps_mmap;
471 }
472
473 return result;
474}
475
0720f75c
UD
476static int new_do_write __P ((_IO_FILE *, const char *, _IO_size_t));
477
96aa2d94 478/* Write TO_DO bytes from DATA to FP.
68dbb3a6 479 Then mark FP as having empty buffers. */
96aa2d94
RM
480
481int
b259e746 482_IO_new_do_write (fp, data, to_do)
40a55d20
UD
483 _IO_FILE *fp;
484 const char *data;
485 _IO_size_t to_do;
0720f75c 486{
6dd67bd5
UD
487 return (to_do == 0
488 || (_IO_size_t) new_do_write (fp, data, to_do) == to_do) ? 0 : EOF;
0720f75c 489}
77fe0b9c 490INTDEF2(_IO_new_do_write, _IO_do_write)
0720f75c
UD
491
492static
493int
494new_do_write (fp, data, to_do)
495 _IO_FILE *fp;
496 const char *data;
497 _IO_size_t to_do;
96aa2d94
RM
498{
499 _IO_size_t count;
96aa2d94
RM
500 if (fp->_flags & _IO_IS_APPENDING)
501 /* On a system without a proper O_APPEND implementation,
502 you would need to sys_seek(0, SEEK_END) here, but is
503 is not needed nor desirable for Unix- or Posix-like systems.
504 Instead, just indicate that offset (before and after) is
505 unpredictable. */
bd355af0 506 fp->_offset = _IO_pos_BAD;
96aa2d94 507 else if (fp->_IO_read_end != fp->_IO_write_base)
23396375 508 {
d64b6ad0 509 _IO_off64_t new_pos
40a55d20 510 = _IO_SYSSEEK (fp, fp->_IO_write_base - fp->_IO_read_end, 1);
96aa2d94 511 if (new_pos == _IO_pos_BAD)
0720f75c 512 return 0;
bd355af0 513 fp->_offset = new_pos;
96aa2d94
RM
514 }
515 count = _IO_SYSWRITE (fp, data, to_do);
0720f75c 516 if (fp->_cur_column && count)
77fe0b9c
UD
517 fp->_cur_column = INTUSE(_IO_adjust_column) (fp->_cur_column - 1, data,
518 count) + 1;
40a55d20 519 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
96aa2d94 520 fp->_IO_write_base = fp->_IO_write_ptr = fp->_IO_buf_base;
076bfcf6 521 fp->_IO_write_end = (fp->_mode <= 0
d64b6ad0 522 && (fp->_flags & (_IO_LINE_BUF+_IO_UNBUFFERED))
40a55d20 523 ? fp->_IO_buf_base : fp->_IO_buf_end);
0720f75c 524 return count;
96aa2d94
RM
525}
526
527int
b259e746 528_IO_new_file_underflow (fp)
40a55d20 529 _IO_FILE *fp;
96aa2d94
RM
530{
531 _IO_ssize_t count;
532#if 0
533 /* SysV does not make this test; take it out for compatibility */
534 if (fp->_flags & _IO_EOF_SEEN)
535 return (EOF);
536#endif
537
538 if (fp->_flags & _IO_NO_READS)
feb3c934 539 {
58034572 540 fp->_flags |= _IO_ERR_SEEN;
feb3c934
UD
541 __set_errno (EBADF);
542 return EOF;
543 }
96aa2d94 544 if (fp->_IO_read_ptr < fp->_IO_read_end)
40a55d20 545 return *(unsigned char *) fp->_IO_read_ptr;
96aa2d94
RM
546
547 if (fp->_IO_buf_base == NULL)
00bc5db0
UD
548 {
549 /* Maybe we already have a push back pointer. */
550 if (fp->_IO_save_base != NULL)
551 {
552 free (fp->_IO_save_base);
553 fp->_flags &= ~_IO_IN_BACKUP;
554 }
77fe0b9c 555 INTUSE(_IO_doallocbuf) (fp);
00bc5db0 556 }
96aa2d94
RM
557
558 /* Flush all line buffered files before reading. */
559 /* FIXME This can/should be moved to genops ?? */
560 if (fp->_flags & (_IO_LINE_BUF|_IO_UNBUFFERED))
3d759cb8
UD
561 {
562#if 0
77fe0b9c 563 INTUSE(_IO_flush_all_linebuffered) ();
3d759cb8
UD
564#else
565 /* We used to flush all line-buffered stream. This really isn't
566 required by any standard. My recollection is that
567 traditional Unix systems did this for stdout. stderr better
568 not be line buffered. So we do just that here
569 explicitly. --drepper */
570 _IO_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile,
571 _IO_stdout);
572 _IO_flockfile (_IO_stdout);
573
574 if ((_IO_stdout->_flags & (_IO_LINKED | _IO_NO_WRITES | _IO_LINE_BUF))
575 == (_IO_LINKED | _IO_LINE_BUF))
576 _IO_OVERFLOW (_IO_stdout, EOF);
577
578 _IO_funlockfile (_IO_stdout);
579 _IO_cleanup_region_end (0);
580#endif
581 }
96aa2d94 582
77fe0b9c 583 INTUSE(_IO_switch_to_get_mode) (fp);
96aa2d94 584
2d7da676
UD
585 /* This is very tricky. We have to adjust those
586 pointers before we call _IO_SYSREAD () since
587 we may longjump () out while waiting for
588 input. Those pointers may be screwed up. H.J. */
589 fp->_IO_read_base = fp->_IO_read_ptr = fp->_IO_buf_base;
590 fp->_IO_read_end = fp->_IO_buf_base;
591 fp->_IO_write_base = fp->_IO_write_ptr = fp->_IO_write_end
592 = fp->_IO_buf_base;
593
96aa2d94
RM
594 count = _IO_SYSREAD (fp, fp->_IO_buf_base,
595 fp->_IO_buf_end - fp->_IO_buf_base);
596 if (count <= 0)
597 {
598 if (count == 0)
599 fp->_flags |= _IO_EOF_SEEN;
600 else
601 fp->_flags |= _IO_ERR_SEEN, count = 0;
602 }
2d7da676 603 fp->_IO_read_end += count;
96aa2d94
RM
604 if (count == 0)
605 return EOF;
bd355af0
UD
606 if (fp->_offset != _IO_pos_BAD)
607 _IO_pos_adjust (fp->_offset, count);
40a55d20 608 return *(unsigned char *) fp->_IO_read_ptr;
96aa2d94 609}
77fe0b9c 610INTDEF2(_IO_new_file_underflow, _IO_file_underflow)
96aa2d94 611
acbee5f6
RM
612/* Guts of underflow callback if we mmap the file. This stats the file and
613 updates the stream state to match. In the normal case we return zero.
614 If the file is no longer eligible for mmap, its jump tables are reset to
615 the vanilla ones and we return nonzero. */
616static int
617mmap_remap_check (_IO_FILE *fp)
0469311e 618{
acbee5f6
RM
619 struct _G_stat64 st;
620
621 if (_IO_SYSSTAT (fp, &st) == 0
622 && S_ISREG (st.st_mode) && st.st_size != 0
623 /* Limit the file size to 1MB for 32-bit machines. */
624 && (sizeof (ptrdiff_t) > 4 || st.st_size < 1*1024*1024))
0469311e 625 {
acbee5f6
RM
626 const size_t pagesize = __getpagesize ();
627# define ROUNDED(x) (((x) + pagesize - 1) & ~(pagesize - 1))
628 if (ROUNDED (st.st_size) < ROUNDED (fp->_IO_buf_end
629 - fp->_IO_buf_base))
630 {
631 /* We can trim off some pages past the end of the file. */
632 (void) __munmap (fp->_IO_buf_base + ROUNDED (st.st_size),
633 ROUNDED (fp->_IO_buf_end - fp->_IO_buf_base)
634 - ROUNDED (st.st_size));
635 fp->_IO_buf_end = fp->_IO_buf_base + st.st_size;
636 }
637 else if (ROUNDED (st.st_size) > ROUNDED (fp->_IO_buf_end
638 - fp->_IO_buf_base))
639 {
640 /* The file added some pages. We need to remap it. */
641 void *p;
642#if defined __linux__ /* XXX */
643 p = __mremap (fp->_IO_buf_base, ROUNDED (fp->_IO_buf_end
644 - fp->_IO_buf_base),
645 ROUNDED (st.st_size), MREMAP_MAYMOVE);
646 if (p == MAP_FAILED)
647 {
648 (void) __munmap (fp->_IO_buf_base,
649 fp->_IO_buf_end - fp->_IO_buf_base);
650 goto punt;
651 }
652#else
653 (void) __munmap (fp->_IO_buf_base,
654 fp->_IO_buf_end - fp->_IO_buf_base);
655# ifdef _G_MMAP64
656 p = _G_MMAP64 (NULL, st.st_size, PROT_READ, MAP_SHARED,
657 fp->_fileno, 0);
658# else
659 p = __mmap (NULL, st.st_size, PROT_READ, MAP_SHARED,
660 fp->_fileno, 0);
661# endif
662 if (p == MAP_FAILED)
663 goto punt;
664#endif
665 fp->_IO_buf_base = p;
666 fp->_IO_buf_end = fp->_IO_buf_base + st.st_size;
667 }
668 else
669 {
670 /* The number of pages didn't change. */
671 fp->_IO_buf_end = fp->_IO_buf_base + st.st_size;
672 }
673# undef ROUNDED
674
675 fp->_offset -= fp->_IO_read_end - fp->_IO_read_ptr;
fc77d66a
RM
676 _IO_setg (fp, fp->_IO_buf_base,
677 fp->_offset < fp->_IO_buf_end - fp->_IO_buf_base
678 ? fp->_IO_buf_base + fp->_offset : fp->_IO_buf_end,
acbee5f6 679 fp->_IO_buf_end);
c4292489 680
fc77d66a
RM
681 /* If we are already positioned at or past the end of the file, don't
682 change the current offset. If not, seek past what we have mapped,
683 mimicking the position left by a normal underflow reading into its
684 buffer until EOF. */
685
686 if (fp->_offset < fp->_IO_buf_end - fp->_IO_buf_base)
687 {
688 if (
0469311e 689# ifdef _G_LSEEK64
fc77d66a 690 _G_LSEEK64
0469311e 691# else
fc77d66a 692 __lseek
0469311e 693# endif
fc77d66a
RM
694 (fp->_fileno, fp->_IO_buf_end - fp->_IO_buf_base, SEEK_SET)
695 != fp->_IO_buf_end - fp->_IO_buf_base)
696 fp->_flags |= _IO_ERR_SEEN;
697 else
698 fp->_offset = fp->_IO_buf_end - fp->_IO_buf_base;
0469311e 699 }
acbee5f6
RM
700
701 return 0;
702 }
703 else
704 {
705 /* Life is no longer good for mmap. Punt it. */
706 (void) __munmap (fp->_IO_buf_base,
707 fp->_IO_buf_end - fp->_IO_buf_base);
708 punt:
709 fp->_IO_buf_base = fp->_IO_buf_end = NULL;
710 _IO_setg (fp, NULL, NULL, NULL);
711 if (fp->_mode <= 0)
230491f0 712 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &INTUSE(_IO_file_jumps);
acbee5f6
RM
713 else
714 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &_IO_wfile_jumps;
715 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps;
716
717 return 1;
0469311e 718 }
acbee5f6
RM
719}
720
721/* Special callback replacing the underflow callbacks if we mmap the file. */
722int
723_IO_file_underflow_mmap (_IO_FILE *fp)
724{
725 if (fp->_IO_read_ptr < fp->_IO_read_end)
726 return *(unsigned char *) fp->_IO_read_ptr;
727
728 if (__builtin_expect (mmap_remap_check (fp), 0))
729 /* We punted to the regular file functions. */
730 return _IO_UNDERFLOW (fp);
731
732 if (fp->_IO_read_ptr < fp->_IO_read_end)
733 return *(unsigned char *) fp->_IO_read_ptr;
0469311e
UD
734
735 fp->_flags |= _IO_EOF_SEEN;
736 return EOF;
737}
738
acbee5f6
RM
739static void
740decide_maybe_mmap (_IO_FILE *fp)
741{
742 /* We use the file in read-only mode. This could mean we can
743 mmap the file and use it without any copying. But not all
744 file descriptors are for mmap-able objects and on 32-bit
745 machines we don't want to map files which are too large since
746 this would require too much virtual memory. */
747 struct _G_stat64 st;
748
749 if (_IO_SYSSTAT (fp, &st) == 0
750 && S_ISREG (st.st_mode) && st.st_size != 0
751 /* Limit the file size to 1MB for 32-bit machines. */
752 && (sizeof (ptrdiff_t) > 4 || st.st_size < 1*1024*1024)
753 /* Sanity check. */
754 && (fp->_offset == _IO_pos_BAD || fp->_offset <= st.st_size))
755 {
756 /* Try to map the file. */
757 void *p;
758
759# ifdef _G_MMAP64
760 p = _G_MMAP64 (NULL, st.st_size, PROT_READ, MAP_SHARED, fp->_fileno, 0);
761# else
762 p = __mmap (NULL, st.st_size, PROT_READ, MAP_SHARED, fp->_fileno, 0);
763# endif
764 if (p != MAP_FAILED)
765 {
766 /* OK, we managed to map the file. Set the buffer up and use a
767 special jump table with simplified underflow functions which
768 never tries to read anything from the file. */
769
770 if (
771# ifdef _G_LSEEK64
772 _G_LSEEK64
773# else
774 __lseek
775# endif
776 (fp->_fileno, st.st_size, SEEK_SET) != st.st_size)
777 {
778 (void) __munmap (p, st.st_size);
779 fp->_offset = _IO_pos_BAD;
780 }
781 else
782 {
783 INTUSE(_IO_setb) (fp, p, (char *) p + st.st_size, 0);
784
785 if (fp->_offset == _IO_pos_BAD)
786 fp->_offset = 0;
787
788 _IO_setg (fp, p, p + fp->_offset, p + st.st_size);
789 fp->_offset = st.st_size;
790
791 if (fp->_mode <= 0)
792 _IO_JUMPS ((struct _IO_FILE_plus *)fp) = &_IO_file_jumps_mmap;
793 else
794 _IO_JUMPS ((struct _IO_FILE_plus *)fp) = &_IO_wfile_jumps_mmap;
795 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps_mmap;
796
797 return;
798 }
799 }
800 }
801
802 /* We couldn't use mmap, so revert to the vanilla file operations. */
803
804 if (fp->_mode <= 0)
230491f0 805 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &INTUSE(_IO_file_jumps);
acbee5f6
RM
806 else
807 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &_IO_wfile_jumps;
808 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps;
809}
810
811int
812_IO_file_underflow_maybe_mmap (_IO_FILE *fp)
813{
814 /* This is the first read attempt. Choose mmap or vanilla operations
815 and then punt to the chosen underflow routine. */
816 decide_maybe_mmap (fp);
817 return _IO_UNDERFLOW (fp);
818}
819
820
96aa2d94 821int
b259e746 822_IO_new_file_overflow (f, ch)
40a55d20
UD
823 _IO_FILE *f;
824 int ch;
96aa2d94
RM
825{
826 if (f->_flags & _IO_NO_WRITES) /* SET ERROR */
feb3c934 827 {
c131718c 828 f->_flags |= _IO_ERR_SEEN;
feb3c934
UD
829 __set_errno (EBADF);
830 return EOF;
831 }
96aa2d94 832 /* If currently reading or no buffer allocated. */
d64b6ad0 833 if ((f->_flags & _IO_CURRENTLY_PUTTING) == 0 || f->_IO_write_base == 0)
96aa2d94
RM
834 {
835 /* Allocate a buffer if needed. */
836 if (f->_IO_write_base == 0)
837 {
77fe0b9c 838 INTUSE(_IO_doallocbuf) (f);
96aa2d94
RM
839 _IO_setg (f, f->_IO_buf_base, f->_IO_buf_base, f->_IO_buf_base);
840 }
c6645251
UD
841 /* Otherwise must be currently reading.
842 If _IO_read_ptr (and hence also _IO_read_end) is at the buffer end,
843 logically slide the buffer forwards one block (by setting the
844 read pointers to all point at the beginning of the block). This
845 makes room for subsequent output.
846 Otherwise, set the read pointers to _IO_read_end (leaving that
847 alone, so it can continue to correspond to the external position). */
848 if (f->_IO_read_ptr == f->_IO_buf_end)
849 f->_IO_read_end = f->_IO_read_ptr = f->_IO_buf_base;
96aa2d94
RM
850 f->_IO_write_ptr = f->_IO_read_ptr;
851 f->_IO_write_base = f->_IO_write_ptr;
852 f->_IO_write_end = f->_IO_buf_end;
853 f->_IO_read_base = f->_IO_read_ptr = f->_IO_read_end;
854
96aa2d94 855 f->_flags |= _IO_CURRENTLY_PUTTING;
076bfcf6 856 if (f->_mode <= 0 && f->_flags & (_IO_LINE_BUF+_IO_UNBUFFERED))
bfcd44c3 857 f->_IO_write_end = f->_IO_write_ptr;
96aa2d94
RM
858 }
859 if (ch == EOF)
4483f2c0
RM
860 return INTUSE(_IO_do_write) (f, f->_IO_write_base,
861 f->_IO_write_ptr - f->_IO_write_base);
96aa2d94 862 if (f->_IO_write_ptr == f->_IO_buf_end ) /* Buffer is really full */
40a55d20 863 if (_IO_do_flush (f) == EOF)
96aa2d94
RM
864 return EOF;
865 *f->_IO_write_ptr++ = ch;
866 if ((f->_flags & _IO_UNBUFFERED)
867 || ((f->_flags & _IO_LINE_BUF) && ch == '\n'))
4483f2c0
RM
868 if (INTUSE(_IO_do_write) (f, f->_IO_write_base,
869 f->_IO_write_ptr - f->_IO_write_base) == EOF)
96aa2d94 870 return EOF;
40a55d20 871 return (unsigned char) ch;
96aa2d94 872}
77fe0b9c 873INTDEF2(_IO_new_file_overflow, _IO_file_overflow)
96aa2d94
RM
874
875int
b259e746 876_IO_new_file_sync (fp)
40a55d20 877 _IO_FILE *fp;
96aa2d94 878{
a2bde807 879 _IO_ssize_t delta;
61eb22d3
UD
880 int retval = 0;
881
96aa2d94
RM
882 /* char* ptr = cur_ptr(); */
883 if (fp->_IO_write_ptr > fp->_IO_write_base)
884 if (_IO_do_flush(fp)) return EOF;
23396375 885 delta = fp->_IO_read_ptr - fp->_IO_read_end;
96aa2d94
RM
886 if (delta != 0)
887 {
888#ifdef TODO
40a55d20
UD
889 if (_IO_in_backup (fp))
890 delta -= eGptr () - Gbase ();
96aa2d94 891#endif
dfd2257a
UD
892 _IO_off64_t new_pos = _IO_SYSSEEK (fp, delta, 1);
893 if (new_pos != (_IO_off64_t) EOF)
96aa2d94
RM
894 fp->_IO_read_end = fp->_IO_read_ptr;
895#ifdef ESPIPE
896 else if (errno == ESPIPE)
897 ; /* Ignore error from unseekable devices. */
898#endif
899 else
61eb22d3 900 retval = EOF;
96aa2d94 901 }
61eb22d3 902 if (retval != EOF)
bd355af0 903 fp->_offset = _IO_pos_BAD;
96aa2d94
RM
904 /* FIXME: Cleanup - can this be shared? */
905 /* setg(base(), ptr, ptr); */
61eb22d3 906 return retval;
96aa2d94 907}
77fe0b9c 908INTDEF2(_IO_new_file_sync, _IO_file_sync)
96aa2d94 909
acbee5f6
RM
910static int
911_IO_file_sync_mmap (_IO_FILE *fp)
912{
913 if (fp->_IO_read_ptr != fp->_IO_read_end)
914 {
915#ifdef TODO
916 if (_IO_in_backup (fp))
917 delta -= eGptr () - Gbase ();
918#endif
919 if (
920# ifdef _G_LSEEK64
921 _G_LSEEK64
922# else
923 __lseek
924# endif
925 (fp->_fileno, fp->_IO_read_ptr - fp->_IO_buf_base, SEEK_SET)
926 != fp->_IO_read_ptr - fp->_IO_buf_base)
927 {
928 fp->_flags |= _IO_ERR_SEEN;
929 return EOF;
930 }
931 }
932 fp->_offset = fp->_IO_read_ptr - fp->_IO_buf_base;
933 fp->_IO_read_end = fp->_IO_read_ptr = fp->_IO_read_base;
934 return 0;
935}
936
937
d64b6ad0 938_IO_off64_t
b259e746 939_IO_new_file_seekoff (fp, offset, dir, mode)
40a55d20 940 _IO_FILE *fp;
dfd2257a 941 _IO_off64_t offset;
40a55d20
UD
942 int dir;
943 int mode;
96aa2d94 944{
d64b6ad0 945 _IO_off64_t result;
dfd2257a 946 _IO_off64_t delta, new_offset;
96aa2d94 947 long count;
feb3c934
UD
948 /* POSIX.1 8.2.3.7 says that after a call the fflush() the file
949 offset of the underlying file must be exact. */
950 int must_be_exact = (fp->_IO_read_base == fp->_IO_read_end
951 && fp->_IO_write_base == fp->_IO_write_ptr);
96aa2d94
RM
952
953 if (mode == 0)
954 dir = _IO_seek_cur, offset = 0; /* Don't move any pointers. */
955
956 /* Flush unwritten characters.
957 (This may do an unneeded write if we seek within the buffer.
958 But to be able to switch to reading, we would need to set
959 egptr to ptr. That can't be done in the current design,
960 which assumes file_ptr() is eGptr. Anyway, since we probably
961 end up flushing when we close(), it doesn't make much difference.)
962 FIXME: simulate mem-papped files. */
963
40a55d20 964 if (fp->_IO_write_ptr > fp->_IO_write_base || _IO_in_put_mode (fp))
77fe0b9c 965 if (INTUSE(_IO_switch_to_get_mode) (fp))
40a55d20 966 return EOF;
96aa2d94
RM
967
968 if (fp->_IO_buf_base == NULL)
969 {
00bc5db0
UD
970 /* It could be that we already have a pushback buffer. */
971 if (fp->_IO_read_base != NULL)
972 {
973 free (fp->_IO_read_base);
974 fp->_flags &= ~_IO_IN_BACKUP;
975 }
77fe0b9c 976 INTUSE(_IO_doallocbuf) (fp);
40a55d20
UD
977 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
978 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
96aa2d94
RM
979 }
980
981 switch (dir)
982 {
983 case _IO_seek_cur:
984 /* Adjust for read-ahead (bytes is buffer). */
985 offset -= fp->_IO_read_end - fp->_IO_read_ptr;
bd355af0 986 if (fp->_offset == _IO_pos_BAD)
96aa2d94
RM
987 goto dumb;
988 /* Make offset absolute, assuming current pointer is file_ptr(). */
d64b6ad0 989 offset += fp->_offset;
405550bf
UD
990 if (offset < 0)
991 {
992 __set_errno (EINVAL);
993 return EOF;
994 }
96aa2d94
RM
995
996 dir = _IO_seek_set;
997 break;
998 case _IO_seek_set:
999 break;
1000 case _IO_seek_end:
1001 {
dfd2257a 1002 struct _G_stat64 st;
40a55d20 1003 if (_IO_SYSSTAT (fp, &st) == 0 && S_ISREG (st.st_mode))
96aa2d94
RM
1004 {
1005 offset += st.st_size;
1006 dir = _IO_seek_set;
1007 }
1008 else
1009 goto dumb;
1010 }
1011 }
1012 /* At this point, dir==_IO_seek_set. */
1013
00bc5db0
UD
1014 /* If we are only interested in the current position we've found it now. */
1015 if (mode == 0)
1016 return offset;
1017
96aa2d94 1018 /* If destination is within current buffer, optimize: */
bd355af0 1019 if (fp->_offset != _IO_pos_BAD && fp->_IO_read_base != NULL
96aa2d94
RM
1020 && !_IO_in_backup (fp))
1021 {
1022 /* Offset relative to start of main get area. */
d64b6ad0
UD
1023 _IO_off64_t rel_offset = (offset - fp->_offset
1024 + (fp->_IO_read_end - fp->_IO_read_base));
96aa2d94
RM
1025 if (rel_offset >= 0)
1026 {
1027#if 0
40a55d20
UD
1028 if (_IO_in_backup (fp))
1029 _IO_switch_to_main_get_area (fp);
96aa2d94
RM
1030#endif
1031 if (rel_offset <= fp->_IO_read_end - fp->_IO_read_base)
1032 {
40a55d20
UD
1033 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base + rel_offset,
1034 fp->_IO_read_end);
1035 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
00bc5db0
UD
1036 {
1037 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
4a582094 1038 goto resync;
00bc5db0 1039 }
96aa2d94
RM
1040 }
1041#ifdef TODO
1042 /* If we have streammarkers, seek forward by reading ahead. */
40a55d20 1043 if (_IO_have_markers (fp))
96aa2d94
RM
1044 {
1045 int to_skip = rel_offset
1046 - (fp->_IO_read_ptr - fp->_IO_read_base);
40a55d20 1047 if (ignore (to_skip) != to_skip)
96aa2d94 1048 goto dumb;
00bc5db0 1049 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
4a582094 1050 goto resync;
96aa2d94
RM
1051 }
1052#endif
1053 }
1054#ifdef TODO
40a55d20 1055 if (rel_offset < 0 && rel_offset >= Bbase () - Bptr ())
96aa2d94 1056 {
40a55d20
UD
1057 if (!_IO_in_backup (fp))
1058 _IO_switch_to_backup_area (fp);
1059 gbump (fp->_IO_read_end + rel_offset - fp->_IO_read_ptr);
00bc5db0 1060 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
4a582094 1061 goto resync;
96aa2d94
RM
1062 }
1063#endif
1064 }
1065
1066#ifdef TODO
77fe0b9c 1067 INTUSE(_IO_unsave_markers) (fp);
96aa2d94
RM
1068#endif
1069
1070 if (fp->_flags & _IO_NO_READS)
1071 goto dumb;
1072
1073 /* Try to seek to a block boundary, to improve kernel page management. */
1074 new_offset = offset & ~(fp->_IO_buf_end - fp->_IO_buf_base - 1);
1075 delta = offset - new_offset;
1076 if (delta > fp->_IO_buf_end - fp->_IO_buf_base)
1077 {
1078 new_offset = offset;
1079 delta = 0;
1080 }
1081 result = _IO_SYSSEEK (fp, new_offset, 0);
1082 if (result < 0)
1083 return EOF;
1084 if (delta == 0)
1085 count = 0;
1086 else
1087 {
1088 count = _IO_SYSREAD (fp, fp->_IO_buf_base,
feb3c934
UD
1089 (must_be_exact
1090 ? delta : fp->_IO_buf_end - fp->_IO_buf_base));
96aa2d94
RM
1091 if (count < delta)
1092 {
1093 /* We weren't allowed to read, but try to seek the remainder. */
1094 offset = count == EOF ? delta : delta-count;
1095 dir = _IO_seek_cur;
1096 goto dumb;
1097 }
1098 }
40a55d20
UD
1099 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base + delta,
1100 fp->_IO_buf_base + count);
1101 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
bd355af0 1102 fp->_offset = result + count;
40a55d20 1103 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
96aa2d94
RM
1104 return offset;
1105 dumb:
1106
77fe0b9c 1107 INTUSE(_IO_unsave_markers) (fp);
96aa2d94
RM
1108 result = _IO_SYSSEEK (fp, offset, dir);
1109 if (result != EOF)
d762684b
UD
1110 {
1111 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
1112 fp->_offset = result;
1113 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
1114 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
1115 }
96aa2d94 1116 return result;
4a582094
UD
1117
1118resync:
1119 /* We need to do it since it is possible that the file offset in
1120 the kernel may be changed behind our back. It may happen when
1121 we fopen a file and then do a fork. One process may access the
1122 the file and the kernel file offset will be changed. */
1123 if (fp->_offset >= 0)
1124 _IO_SYSSEEK (fp, fp->_offset, 0);
1125
1126 return offset;
96aa2d94 1127}
77fe0b9c 1128INTDEF2(_IO_new_file_seekoff, _IO_file_seekoff)
96aa2d94 1129
284749da
UD
1130_IO_off64_t
1131_IO_file_seekoff_mmap (fp, offset, dir, mode)
1132 _IO_FILE *fp;
1133 _IO_off64_t offset;
1134 int dir;
1135 int mode;
1136{
1137 _IO_off64_t result;
1138
7e93f915
RM
1139 /* If we are only interested in the current position, calculate it and
1140 return right now. This calculation does the right thing when we are
1141 using a pushback buffer, but in the usual case has the same value as
1142 (fp->_IO_read_ptr - fp->_IO_buf_base). */
284749da 1143 if (mode == 0)
78ce5a3b 1144 return fp->_offset - (fp->_IO_read_end - fp->_IO_read_ptr);
284749da
UD
1145
1146 switch (dir)
1147 {
1148 case _IO_seek_cur:
1149 /* Adjust for read-ahead (bytes is buffer). */
1150 offset += fp->_IO_read_ptr - fp->_IO_read_base;
1151 break;
1152 case _IO_seek_set:
1153 break;
1154 case _IO_seek_end:
903b3396 1155 offset += fp->_IO_buf_end - fp->_IO_buf_base;
284749da
UD
1156 break;
1157 }
1158 /* At this point, dir==_IO_seek_set. */
1159
1160 if (offset < 0)
66bff409
UD
1161 {
1162 /* No negative offsets are valid. */
1163 __set_errno (EINVAL);
1164 return EOF;
1165 }
284749da 1166
284749da
UD
1167 result = _IO_SYSSEEK (fp, offset, 0);
1168 if (result < 0)
1169 return EOF;
1170
fc77d66a
RM
1171 if (offset > fp->_IO_buf_end - fp->_IO_buf_base)
1172 /* One can fseek arbitrarily past the end of the file
1173 and it is meaningless until one attempts to read.
1174 Leave the buffer pointers in EOF state until underflow. */
1175 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_end, fp->_IO_buf_end);
1176 else
1177 /* Adjust the read pointers to match the file position,
1178 but so the next read attempt will call underflow. */
1179 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base + offset,
1180 fp->_IO_buf_base + offset);
1181
66bff409 1182 fp->_offset = result;
284749da
UD
1183
1184 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
1185
1186 return offset;
1187}
1188
f5bf21a7
UD
1189static _IO_off64_t
1190_IO_file_seekoff_maybe_mmap (_IO_FILE *fp, _IO_off64_t offset, int dir,
1191 int mode)
acbee5f6
RM
1192{
1193 /* We only get here when we haven't tried to read anything yet.
1194 So there is nothing more useful for us to do here than just
1195 the underlying lseek call. */
1196
1197 _IO_off64_t result = _IO_SYSSEEK (fp, offset, dir);
1198 if (result < 0)
1199 return EOF;
1200
1201 fp->_offset = result;
1202 return result;
1203}
1204
96aa2d94 1205_IO_ssize_t
40a55d20
UD
1206_IO_file_read (fp, buf, size)
1207 _IO_FILE *fp;
1208 void *buf;
1209 _IO_ssize_t size;
96aa2d94 1210{
61eb22d3 1211 return read (fp->_fileno, buf, size);
96aa2d94 1212}
77fe0b9c 1213INTDEF(_IO_file_read)
96aa2d94 1214
d64b6ad0 1215_IO_off64_t
40a55d20
UD
1216_IO_file_seek (fp, offset, dir)
1217 _IO_FILE *fp;
dfd2257a 1218 _IO_off64_t offset;
40a55d20 1219 int dir;
96aa2d94 1220{
dfd2257a
UD
1221#ifdef _G_LSEEK64
1222 return _G_LSEEK64 (fp->_fileno, offset, dir);
1223#else
61eb22d3 1224 return lseek (fp->_fileno, offset, dir);
dfd2257a 1225#endif
96aa2d94 1226}
77fe0b9c 1227INTDEF(_IO_file_seek)
96aa2d94
RM
1228
1229int
40a55d20
UD
1230_IO_file_stat (fp, st)
1231 _IO_FILE *fp;
1232 void *st;
96aa2d94 1233{
279eb600 1234#ifdef _G_FSTAT64
dfd2257a
UD
1235 return _G_FSTAT64 (fp->_fileno, (struct _G_stat64 *) st);
1236#else
319d719d 1237 return fstat (fp->_fileno, (struct stat *) st);
dfd2257a 1238#endif
96aa2d94 1239}
77fe0b9c 1240INTDEF(_IO_file_stat)
96aa2d94 1241
0469311e
UD
1242int
1243_IO_file_close_mmap (fp)
1244 _IO_FILE *fp;
1245{
acbee5f6
RM
1246 /* In addition to closing the file descriptor we have to unmap the file. */
1247 (void) __munmap (fp->_IO_buf_base, fp->_IO_buf_end - fp->_IO_buf_base);
0469311e
UD
1248 fp->_IO_buf_base = fp->_IO_buf_end = NULL;
1249 return close (fp->_fileno);
1250}
1251
96aa2d94 1252int
40a55d20
UD
1253_IO_file_close (fp)
1254 _IO_FILE *fp;
96aa2d94 1255{
61eb22d3 1256 return close (fp->_fileno);
96aa2d94 1257}
77fe0b9c 1258INTDEF(_IO_file_close)
96aa2d94
RM
1259
1260_IO_ssize_t
b259e746 1261_IO_new_file_write (f, data, n)
40a55d20
UD
1262 _IO_FILE *f;
1263 const void *data;
1264 _IO_ssize_t n;
96aa2d94
RM
1265{
1266 _IO_ssize_t to_do = n;
1267 while (to_do > 0)
1268 {
61eb22d3 1269 _IO_ssize_t count = write (f->_fileno, data, to_do);
d64b6ad0 1270 if (count < 0)
96aa2d94 1271 {
39e16978
UD
1272 f->_flags |= _IO_ERR_SEEN;
1273 break;
96aa2d94
RM
1274 }
1275 to_do -= count;
40a55d20 1276 data = (void *) ((char *) data + count);
96aa2d94
RM
1277 }
1278 n -= to_do;
bd355af0
UD
1279 if (f->_offset >= 0)
1280 f->_offset += n;
96aa2d94
RM
1281 return n;
1282}
1283
1284_IO_size_t
b259e746 1285_IO_new_file_xsputn (f, data, n)
40a55d20
UD
1286 _IO_FILE *f;
1287 const void *data;
1288 _IO_size_t n;
96aa2d94 1289{
d64b6ad0 1290 register const char *s = (const char *) data;
96aa2d94
RM
1291 _IO_size_t to_do = n;
1292 int must_flush = 0;
1293 _IO_size_t count;
1294
1295 if (n <= 0)
1296 return 0;
1297 /* This is an optimized implementation.
1298 If the amount to be written straddles a block boundary
1299 (or the filebuf is unbuffered), use sys_write directly. */
1300
1301 /* First figure out how much space is available in the buffer. */
1302 count = f->_IO_write_end - f->_IO_write_ptr; /* Space available. */
1303 if ((f->_flags & _IO_LINE_BUF) && (f->_flags & _IO_CURRENTLY_PUTTING))
1304 {
1305 count = f->_IO_buf_end - f->_IO_write_ptr;
1306 if (count >= n)
40a55d20
UD
1307 {
1308 register const char *p;
96aa2d94
RM
1309 for (p = s + n; p > s; )
1310 {
40a55d20
UD
1311 if (*--p == '\n')
1312 {
1313 count = p - s + 1;
1314 must_flush = 1;
1315 break;
1316 }
96aa2d94
RM
1317 }
1318 }
1319 }
1320 /* Then fill the buffer. */
1321 if (count > 0)
1322 {
1323 if (count > to_do)
1324 count = to_do;
40a55d20
UD
1325 if (count > 20)
1326 {
86187531
UD
1327#ifdef _LIBC
1328 f->_IO_write_ptr = __mempcpy (f->_IO_write_ptr, s, count);
1329#else
40a55d20 1330 memcpy (f->_IO_write_ptr, s, count);
86187531
UD
1331 f->_IO_write_ptr += count;
1332#endif
40a55d20
UD
1333 s += count;
1334 }
96aa2d94
RM
1335 else
1336 {
1337 register char *p = f->_IO_write_ptr;
40a55d20
UD
1338 register int i = (int) count;
1339 while (--i >= 0)
1340 *p++ = *s++;
86187531 1341 f->_IO_write_ptr = p;
96aa2d94 1342 }
96aa2d94
RM
1343 to_do -= count;
1344 }
1345 if (to_do + must_flush > 0)
40a55d20 1346 {
0720f75c 1347 _IO_size_t block_size, do_write;
96aa2d94 1348 /* Next flush the (full) buffer. */
5c8d1fc0 1349 if (_IO_OVERFLOW (f, EOF) == EOF)
96aa2d94
RM
1350 return n - to_do;
1351
1352 /* Try to maintain alignment: write a whole number of blocks.
1353 dont_write is what gets left over. */
1354 block_size = f->_IO_buf_end - f->_IO_buf_base;
0720f75c
UD
1355 do_write = to_do - (block_size >= 128 ? to_do % block_size : 0);
1356
1357 if (do_write)
1358 {
1359 count = new_do_write (f, s, do_write);
1360 to_do -= count;
1361 if (count < do_write)
1362 return n - to_do;
1363 }
23396375 1364
96aa2d94
RM
1365 /* Now write out the remainder. Normally, this will fit in the
1366 buffer, but it's somewhat messier for line-buffered files,
1367 so we let _IO_default_xsputn handle the general case. */
0720f75c 1368 if (to_do)
77fe0b9c 1369 to_do -= INTUSE(_IO_default_xsputn) (f, s+do_write, to_do);
96aa2d94
RM
1370 }
1371 return n - to_do;
1372}
77fe0b9c 1373INTDEF2(_IO_new_file_xsputn, _IO_file_xsputn)
96aa2d94 1374
96aa2d94 1375_IO_size_t
40a55d20
UD
1376_IO_file_xsgetn (fp, data, n)
1377 _IO_FILE *fp;
1378 void *data;
1379 _IO_size_t n;
96aa2d94 1380{
4bca4c17
UD
1381 register _IO_size_t want, have;
1382 register _IO_ssize_t count;
96aa2d94 1383 register char *s = data;
8fe0fd03
UD
1384
1385 want = n;
1386
310f9518
UD
1387 if (fp->_IO_buf_base == NULL)
1388 {
1389 /* Maybe we already have a push back pointer. */
1390 if (fp->_IO_save_base != NULL)
1391 {
1392 free (fp->_IO_save_base);
1393 fp->_flags &= ~_IO_IN_BACKUP;
1394 }
77fe0b9c 1395 INTUSE(_IO_doallocbuf) (fp);
310f9518
UD
1396 }
1397
8fe0fd03 1398 while (want > 0)
96aa2d94 1399 {
8fe0fd03
UD
1400 have = fp->_IO_read_end - fp->_IO_read_ptr;
1401 if (want <= have)
96aa2d94 1402 {
8fe0fd03
UD
1403 memcpy (s, fp->_IO_read_ptr, want);
1404 fp->_IO_read_ptr += want;
1405 want = 0;
1406 }
1407 else
1408 {
1409 if (have > 0)
96aa2d94 1410 {
279eb600
UD
1411#ifdef _LIBC
1412 s = __mempcpy (s, fp->_IO_read_ptr, have);
1413#else
8fe0fd03 1414 memcpy (s, fp->_IO_read_ptr, have);
8fe0fd03 1415 s += have;
279eb600
UD
1416#endif
1417 want -= have;
8fe0fd03 1418 fp->_IO_read_ptr += have;
96aa2d94 1419 }
8fe0fd03
UD
1420
1421 /* Check for backup and repeat */
1422 if (_IO_in_backup (fp))
96aa2d94 1423 {
8fe0fd03
UD
1424 _IO_switch_to_main_get_area (fp);
1425 continue;
1426 }
1427
1428 /* If we now want less than a buffer, underflow and repeat
1429 the copy. Otherwise, _IO_SYSREAD directly to
1430 the user buffer. */
6dd67bd5
UD
1431 if (fp->_IO_buf_base
1432 && want < (size_t) (fp->_IO_buf_end - fp->_IO_buf_base))
8fe0fd03
UD
1433 {
1434 if (__underflow (fp) == EOF)
1435 break;
1436
1437 continue;
1438 }
1439
4bca4c17
UD
1440 /* These must be set before the sysread as we might longjmp out
1441 waiting for input. */
1442 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
1443 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
1444
279eb600
UD
1445 /* Try to maintain alignment: read a whole number of blocks. */
1446 count = want;
1447 if (fp->_IO_buf_base)
1448 {
1449 _IO_size_t block_size = fp->_IO_buf_end - fp->_IO_buf_base;
1450 if (block_size >= 128)
1451 count -= want % block_size;
1452 }
1453
1454 count = _IO_SYSREAD (fp, s, count);
96aa2d94 1455 if (count <= 0)
8fe0fd03
UD
1456 {
1457 if (count == 0)
1458 fp->_flags |= _IO_EOF_SEEN;
1459 else
1460 fp->_flags |= _IO_ERR_SEEN;
1461
1462 break;
1463 }
23396375 1464
96aa2d94 1465 s += count;
8fe0fd03 1466 want -= count;
4bca4c17
UD
1467 if (fp->_offset != _IO_pos_BAD)
1468 _IO_pos_adjust (fp->_offset, count);
96aa2d94 1469 }
96aa2d94 1470 }
8fe0fd03
UD
1471
1472 return n - want;
96aa2d94 1473}
77fe0b9c 1474INTDEF(_IO_file_xsgetn)
96aa2d94 1475
284749da
UD
1476static _IO_size_t _IO_file_xsgetn_mmap __P ((_IO_FILE *, void *, _IO_size_t));
1477static _IO_size_t
1478_IO_file_xsgetn_mmap (fp, data, n)
1479 _IO_FILE *fp;
1480 void *data;
1481 _IO_size_t n;
1482{
1483 register _IO_size_t have;
1484 char *read_ptr = fp->_IO_read_ptr;
b39d5719 1485 register char *s = (char *) data;
284749da
UD
1486
1487 have = fp->_IO_read_end - fp->_IO_read_ptr;
1488
1489 if (have < n)
1490 {
b39d5719
UD
1491 if (__builtin_expect (_IO_in_backup (fp), 0))
1492 {
1493#ifdef _LIBC
1494 s = __mempcpy (s, read_ptr, have);
1495#else
1496 memcpy (s, read_ptr, have);
1497 s += have;
1498#endif
1499 n -= have;
1500 _IO_switch_to_main_get_area (fp);
1501 read_ptr = fp->_IO_read_ptr;
1502 have = fp->_IO_read_end - fp->_IO_read_ptr;
1503 }
1504
1505 if (have < n)
1506 {
acbee5f6
RM
1507 /* Check that we are mapping all of the file, in case it grew. */
1508 if (__builtin_expect (mmap_remap_check (fp), 0))
1509 /* We punted mmap, so complete with the vanilla code. */
1510 return s - (char *) data + _IO_XSGETN (fp, data, n);
1511
1512 read_ptr = fp->_IO_read_ptr;
1513 have = fp->_IO_read_end - read_ptr;
b39d5719 1514 }
284749da
UD
1515 }
1516
c4292489
UD
1517 if (have < n)
1518 fp->_flags |= _IO_EOF_SEEN;
1519
1520 if (have != 0)
284749da
UD
1521 {
1522 have = MIN (have, n);
b39d5719
UD
1523#ifdef _LIBC
1524 s = __mempcpy (s, read_ptr, have);
1525#else
1526 memcpy (s, read_ptr, have);
1527 s += have;
1528#endif
284749da
UD
1529 fp->_IO_read_ptr = read_ptr + have;
1530 }
1531
b39d5719 1532 return s - (char *) data;
284749da
UD
1533}
1534
acbee5f6
RM
1535static _IO_size_t _IO_file_xsgetn_maybe_mmap __P ((_IO_FILE *, void *,
1536 _IO_size_t));
1537static _IO_size_t
1538_IO_file_xsgetn_maybe_mmap (fp, data, n)
1539 _IO_FILE *fp;
1540 void *data;
1541 _IO_size_t n;
1542{
1543 /* We only get here if this is the first attempt to read something.
1544 Decide which operations to use and then punt to the chosen one. */
1545
1546 decide_maybe_mmap (fp);
1547 return _IO_XSGETN (fp, data, n);
1548}
1549
94b68ee9 1550#ifdef _LIBC
4483f2c0 1551# undef _IO_do_write
94b68ee9
RM
1552versioned_symbol (libc, _IO_new_do_write, _IO_do_write, GLIBC_2_1);
1553versioned_symbol (libc, _IO_new_file_attach, _IO_file_attach, GLIBC_2_1);
1554versioned_symbol (libc, _IO_new_file_close_it, _IO_file_close_it, GLIBC_2_1);
1555versioned_symbol (libc, _IO_new_file_finish, _IO_file_finish, GLIBC_2_1);
1556versioned_symbol (libc, _IO_new_file_fopen, _IO_file_fopen, GLIBC_2_1);
1557versioned_symbol (libc, _IO_new_file_init, _IO_file_init, GLIBC_2_1);
1558versioned_symbol (libc, _IO_new_file_setbuf, _IO_file_setbuf, GLIBC_2_1);
1559versioned_symbol (libc, _IO_new_file_sync, _IO_file_sync, GLIBC_2_1);
1560versioned_symbol (libc, _IO_new_file_overflow, _IO_file_overflow, GLIBC_2_1);
1561versioned_symbol (libc, _IO_new_file_seekoff, _IO_file_seekoff, GLIBC_2_1);
1562versioned_symbol (libc, _IO_new_file_underflow, _IO_file_underflow, GLIBC_2_1);
1563versioned_symbol (libc, _IO_new_file_write, _IO_file_write, GLIBC_2_1);
1564versioned_symbol (libc, _IO_new_file_xsputn, _IO_file_xsputn, GLIBC_2_1);
1565#endif
1566
40a55d20
UD
1567struct _IO_jump_t _IO_file_jumps =
1568{
96aa2d94 1569 JUMP_INIT_DUMMY,
77fe0b9c
UD
1570 JUMP_INIT(finish, INTUSE(_IO_file_finish)),
1571 JUMP_INIT(overflow, INTUSE(_IO_file_overflow)),
1572 JUMP_INIT(underflow, INTUSE(_IO_file_underflow)),
1573 JUMP_INIT(uflow, INTUSE(_IO_default_uflow)),
1574 JUMP_INIT(pbackfail, INTUSE(_IO_default_pbackfail)),
1575 JUMP_INIT(xsputn, INTUSE(_IO_file_xsputn)),
1576 JUMP_INIT(xsgetn, INTUSE(_IO_file_xsgetn)),
b259e746 1577 JUMP_INIT(seekoff, _IO_new_file_seekoff),
96aa2d94 1578 JUMP_INIT(seekpos, _IO_default_seekpos),
b259e746
UD
1579 JUMP_INIT(setbuf, _IO_new_file_setbuf),
1580 JUMP_INIT(sync, _IO_new_file_sync),
77fe0b9c
UD
1581 JUMP_INIT(doallocate, INTUSE(_IO_file_doallocate)),
1582 JUMP_INIT(read, INTUSE(_IO_file_read)),
b259e746 1583 JUMP_INIT(write, _IO_new_file_write),
77fe0b9c
UD
1584 JUMP_INIT(seek, INTUSE(_IO_file_seek)),
1585 JUMP_INIT(close, INTUSE(_IO_file_close)),
1586 JUMP_INIT(stat, INTUSE(_IO_file_stat)),
dfd2257a 1587 JUMP_INIT(showmanyc, _IO_default_showmanyc),
0469311e
UD
1588 JUMP_INIT(imbue, _IO_default_imbue)
1589};
100351c3 1590INTVARDEF(_IO_file_jumps)
0469311e
UD
1591
1592struct _IO_jump_t _IO_file_jumps_mmap =
1593{
1594 JUMP_INIT_DUMMY,
77fe0b9c
UD
1595 JUMP_INIT(finish, INTUSE(_IO_file_finish)),
1596 JUMP_INIT(overflow, INTUSE(_IO_file_overflow)),
0469311e 1597 JUMP_INIT(underflow, _IO_file_underflow_mmap),
77fe0b9c
UD
1598 JUMP_INIT(uflow, INTUSE(_IO_default_uflow)),
1599 JUMP_INIT(pbackfail, INTUSE(_IO_default_pbackfail)),
0469311e 1600 JUMP_INIT(xsputn, _IO_new_file_xsputn),
284749da
UD
1601 JUMP_INIT(xsgetn, _IO_file_xsgetn_mmap),
1602 JUMP_INIT(seekoff, _IO_file_seekoff_mmap),
0469311e 1603 JUMP_INIT(seekpos, _IO_default_seekpos),
bff334e0 1604 JUMP_INIT(setbuf, (_IO_setbuf_t) _IO_file_setbuf_mmap),
acbee5f6 1605 JUMP_INIT(sync, _IO_file_sync_mmap),
77fe0b9c
UD
1606 JUMP_INIT(doallocate, INTUSE(_IO_file_doallocate)),
1607 JUMP_INIT(read, INTUSE(_IO_file_read)),
0469311e 1608 JUMP_INIT(write, _IO_new_file_write),
77fe0b9c 1609 JUMP_INIT(seek, INTUSE(_IO_file_seek)),
0469311e 1610 JUMP_INIT(close, _IO_file_close_mmap),
77fe0b9c 1611 JUMP_INIT(stat, INTUSE(_IO_file_stat)),
0469311e 1612 JUMP_INIT(showmanyc, _IO_default_showmanyc),
acbee5f6
RM
1613 JUMP_INIT(imbue, _IO_default_imbue)
1614};
1615
1616struct _IO_jump_t _IO_file_jumps_maybe_mmap =
1617{
1618 JUMP_INIT_DUMMY,
1619 JUMP_INIT(finish, INTUSE(_IO_file_finish)),
1620 JUMP_INIT(overflow, INTUSE(_IO_file_overflow)),
1621 JUMP_INIT(underflow, _IO_file_underflow_maybe_mmap),
1622 JUMP_INIT(uflow, INTUSE(_IO_default_uflow)),
1623 JUMP_INIT(pbackfail, INTUSE(_IO_default_pbackfail)),
1624 JUMP_INIT(xsputn, _IO_new_file_xsputn),
1625 JUMP_INIT(xsgetn, _IO_file_xsgetn_maybe_mmap),
1626 JUMP_INIT(seekoff, _IO_file_seekoff_maybe_mmap),
1627 JUMP_INIT(seekpos, _IO_default_seekpos),
1628 JUMP_INIT(setbuf, (_IO_setbuf_t) _IO_file_setbuf_mmap),
1629 JUMP_INIT(sync, _IO_new_file_sync),
1630 JUMP_INIT(doallocate, INTUSE(_IO_file_doallocate)),
1631 JUMP_INIT(read, INTUSE(_IO_file_read)),
1632 JUMP_INIT(write, _IO_new_file_write),
1633 JUMP_INIT(seek, INTUSE(_IO_file_seek)),
1634 JUMP_INIT(close, _IO_file_close),
1635 JUMP_INIT(stat, INTUSE(_IO_file_stat)),
1636 JUMP_INIT(showmanyc, _IO_default_showmanyc),
dfd2257a 1637 JUMP_INIT(imbue, _IO_default_imbue)
96aa2d94 1638};