1 /* Copyright (C) 1993, 1995, 1997-2005, 2006, 2007
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Written by Per Bothner <bothner@cygnus.com>.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21 As a special exception, if you link the code in this file with
22 files compiled with a GNU compiler to produce an executable,
23 that does not cause the resulting executable to be covered by
24 the GNU Lesser General Public License. This exception does not
25 however invalidate any other reasons why the executable file
26 might be covered by the GNU Lesser General Public License.
27 This exception applies to code released by its copyright holders
28 in files containing the exception. */
32 # define _POSIX_SOURCE
37 #include <sys/param.h>
38 #include <sys/types.h>
47 # include "../wcsmbs/wcsmbsload.h"
48 # include "../iconv/gconv_charset.h"
49 # include "../iconv/gconv_int.h"
50 # include <shlib-compat.h>
51 # include <not-cancel.h>
57 # define __set_errno(Val) errno = (Val)
62 # define open(Name, Flags, Prot) __open (Name, Flags, Prot)
63 # define lseek(FD, Offset, Whence) __lseek (FD, Offset, Whence)
64 # define read(FD, Buf, NBytes) __read (FD, Buf, NBytes)
65 # define write(FD, Buf, NBytes) __write (FD, Buf, NBytes)
66 # define _IO_do_write _IO_new_do_write /* For macro uses. */
67 # define _IO_file_close_it _IO_new_file_close_it
69 # define _IO_new_do_write _IO_do_write
70 # define _IO_new_file_attach _IO_file_attach
71 # define _IO_new_file_close_it _IO_file_close_it
72 # define _IO_new_file_finish _IO_file_finish
73 # define _IO_new_file_fopen _IO_file_fopen
74 # define _IO_new_file_init _IO_file_init
75 # define _IO_new_file_setbuf _IO_file_setbuf
76 # define _IO_new_file_sync _IO_file_sync
77 # define _IO_new_file_overflow _IO_file_overflow
78 # define _IO_new_file_seekoff _IO_file_seekoff
79 # define _IO_new_file_underflow _IO_file_underflow
80 # define _IO_new_file_write _IO_file_write
81 # define _IO_new_file_xsputn _IO_file_xsputn
86 extern struct __gconv_trans_data __libio_translit attribute_hidden
;
90 /* An fstream can be in at most one of put mode, get mode, or putback mode.
91 Putback mode is a variant of get mode.
93 In a filebuf, there is only one current position, instead of two
94 separate get and put pointers. In get mode, the current position
95 is that of gptr(); in put mode that of pptr().
97 The position in the buffer that corresponds to the position
98 in external file system is normally _IO_read_end, except in putback
99 mode, when it is _IO_save_end.
100 If the field _fb._offset is >= 0, it gives the offset in
101 the file as a whole corresponding to eGptr(). (?)
104 If a filebuf is in put mode, then all of _IO_read_ptr, _IO_read_end,
105 and _IO_read_base are equal to each other. These are usually equal
106 to _IO_buf_base, though not necessarily if we have switched from
107 get mode to put mode. (The reason is to maintain the invariant
108 that _IO_read_end corresponds to the external file position.)
109 _IO_write_base is non-NULL and usually equal to _IO_base_base.
110 We also have _IO_write_end == _IO_buf_end, but only in fully buffered mode.
111 The un-flushed character are those between _IO_write_base and _IO_write_ptr.
114 If a filebuf is in get or putback mode, eback() != egptr().
115 In get mode, the unread characters are between gptr() and egptr().
116 The OS file position corresponds to that of egptr().
119 Putback mode is used to remember "excess" characters that have
120 been sputbackc'd in a separate putback buffer.
121 In putback mode, the get buffer points to the special putback buffer.
122 The unread characters are the characters between gptr() and egptr()
123 in the putback buffer, as well as the area between save_gptr()
124 and save_egptr(), which point into the original reserve buffer.
125 (The pointers save_gptr() and save_egptr() are the values
126 of gptr() and egptr() at the time putback mode was entered.)
127 The OS position corresponds to that of save_egptr().
129 LINE BUFFERED OUTPUT:
130 During line buffered output, _IO_write_base==base() && epptr()==base().
131 However, ptr() may be anywhere between base() and ebuf().
132 This forces a call to filebuf::overflow(int C) on every put.
133 If there is more space in the buffer, and C is not a '\n',
134 then C is inserted, and pptr() incremented.
137 If a filebuf is unbuffered(), the _shortbuf[1] is used as the buffer.
140 #define CLOSED_FILEBUF_FLAGS \
141 (_IO_IS_FILEBUF+_IO_NO_READS+_IO_NO_WRITES+_IO_TIED_PUT_GET)
145 _IO_new_file_init (fp
)
146 struct _IO_FILE_plus
*fp
;
148 /* POSIX.1 allows another file handle to be used to change the position
149 of our file descriptor. Hence we actually don't know the actual
150 position before we do the first fseek (and until a following fflush). */
151 fp
->file
._offset
= _IO_pos_BAD
;
152 fp
->file
._IO_file_flags
|= CLOSED_FILEBUF_FLAGS
;
154 INTUSE(_IO_link_in
) (fp
);
155 fp
->file
._fileno
= -1;
157 INTDEF2(_IO_new_file_init
, _IO_file_init
)
160 _IO_new_file_close_it (fp
)
163 int write_status
, close_status
;
164 if (!_IO_file_is_open (fp
))
167 if ((fp
->_flags
& _IO_NO_WRITES
) == 0
168 && (fp
->_flags
& _IO_CURRENTLY_PUTTING
) != 0)
169 write_status
= _IO_do_flush (fp
);
173 INTUSE(_IO_unsave_markers
) (fp
);
175 close_status
= _IO_SYSCLOSE (fp
);
178 #if defined _LIBC || defined _GLIBCPP_USE_WCHAR_T
181 if (_IO_have_wbackup (fp
))
182 INTUSE(_IO_free_wbackup_area
) (fp
);
183 INTUSE(_IO_wsetb
) (fp
, NULL
, NULL
, 0);
184 _IO_wsetg (fp
, NULL
, NULL
, NULL
);
185 _IO_wsetp (fp
, NULL
, NULL
);
188 INTUSE(_IO_setb
) (fp
, NULL
, NULL
, 0);
189 _IO_setg (fp
, NULL
, NULL
, NULL
);
190 _IO_setp (fp
, NULL
, NULL
);
192 INTUSE(_IO_un_link
) ((struct _IO_FILE_plus
*) fp
);
193 fp
->_flags
= _IO_MAGIC
|CLOSED_FILEBUF_FLAGS
;
195 fp
->_offset
= _IO_pos_BAD
;
197 return close_status
? close_status
: write_status
;
199 INTDEF2(_IO_new_file_close_it
, _IO_file_close_it
)
202 _IO_new_file_finish (fp
, dummy
)
206 if (_IO_file_is_open (fp
))
209 if (!(fp
->_flags
& _IO_DELETE_DONT_CLOSE
))
212 INTUSE(_IO_default_finish
) (fp
, 0);
214 INTDEF2(_IO_new_file_finish
, _IO_file_finish
)
217 _IO_file_open (fp
, filename
, posix_mode
, prot
, read_write
, is32not64
)
219 const char *filename
;
227 if (__builtin_expect (fp
->_flags2
& _IO_FLAGS2_NOTCANCEL
, 0))
228 fdesc
= open_not_cancel (filename
,
229 posix_mode
| (is32not64
? 0 : O_LARGEFILE
), prot
);
231 fdesc
= open (filename
, posix_mode
| (is32not64
? 0 : O_LARGEFILE
), prot
);
233 fdesc
= open (filename
, posix_mode
, prot
);
238 _IO_mask_flags (fp
, read_write
,_IO_NO_READS
+_IO_NO_WRITES
+_IO_IS_APPENDING
);
239 if ((read_write
& _IO_IS_APPENDING
) && (read_write
& _IO_NO_READS
))
240 if (_IO_SEEKOFF (fp
, (_IO_off64_t
)0, _IO_seek_end
, _IOS_INPUT
|_IOS_OUTPUT
)
241 == _IO_pos_BAD
&& errno
!= ESPIPE
)
243 close_not_cancel (fdesc
);
246 INTUSE(_IO_link_in
) ((struct _IO_FILE_plus
*) fp
);
249 libc_hidden_def (_IO_file_open
)
252 _IO_new_file_fopen (fp
, filename
, mode
, is32not64
)
254 const char *filename
;
258 int oflags
= 0, omode
;
265 const char *last_recognized
;
268 if (_IO_file_is_open (fp
))
274 read_write
= _IO_NO_WRITES
;
278 oflags
= O_CREAT
|O_TRUNC
;
279 read_write
= _IO_NO_READS
;
283 oflags
= O_CREAT
|O_APPEND
;
284 read_write
= _IO_NO_READS
|_IO_IS_APPENDING
;
287 __set_errno (EINVAL
);
291 last_recognized
= mode
;
293 for (i
= 1; i
< 6; ++i
)
301 read_write
&= _IO_IS_APPENDING
;
303 last_recognized
= mode
;
309 last_recognized
= mode
;
314 last_recognized
= mode
;
318 fp
->_flags2
|= _IO_FLAGS2_MMAP
;
321 fp
->_flags2
|= _IO_FLAGS2_NOTCANCEL
;
335 result
= _IO_file_open (fp
, filename
, omode
|oflags
, oprot
, read_write
,
342 /* Test whether the mode string specifies the conversion. */
343 cs
= strstr (last_recognized
+ 1, ",ccs=");
346 /* Yep. Load the appropriate conversions and set the orientation
348 struct gconv_fcts fcts
;
349 struct _IO_codecvt
*cc
;
350 char *endp
= __strchrnul (cs
+ 5, ',');
351 char ccs
[endp
- (cs
+ 5) + 3];
353 *((char *) __mempcpy (ccs
, cs
+ 5, endp
- (cs
+ 5))) = '\0';
356 if (__wcsmbs_named_conv (&fcts
, ccs
[2] == '\0'
357 ? upstr (ccs
, cs
+ 5) : ccs
) != 0)
359 /* Something went wrong, we cannot load the conversion modules.
360 This means we cannot proceed since the user explicitly asked
362 (void) INTUSE(_IO_file_close_it
) (fp
);
363 __set_errno (EINVAL
);
367 assert (fcts
.towc_nsteps
== 1);
368 assert (fcts
.tomb_nsteps
== 1);
370 fp
->_wide_data
->_IO_read_ptr
= fp
->_wide_data
->_IO_read_end
;
371 fp
->_wide_data
->_IO_write_ptr
= fp
->_wide_data
->_IO_write_base
;
373 /* Clear the state. We start all over again. */
374 memset (&fp
->_wide_data
->_IO_state
, '\0', sizeof (__mbstate_t
));
375 memset (&fp
->_wide_data
->_IO_last_state
, '\0', sizeof (__mbstate_t
));
377 cc
= fp
->_codecvt
= &fp
->_wide_data
->_codecvt
;
379 /* The functions are always the same. */
380 *cc
= __libio_codecvt
;
382 cc
->__cd_in
.__cd
.__nsteps
= fcts
.towc_nsteps
;
383 cc
->__cd_in
.__cd
.__steps
= fcts
.towc
;
385 cc
->__cd_in
.__cd
.__data
[0].__invocation_counter
= 0;
386 cc
->__cd_in
.__cd
.__data
[0].__internal_use
= 1;
387 cc
->__cd_in
.__cd
.__data
[0].__flags
= __GCONV_IS_LAST
;
388 cc
->__cd_in
.__cd
.__data
[0].__statep
= &result
->_wide_data
->_IO_state
;
390 /* XXX For now no transliteration. */
391 cc
->__cd_in
.__cd
.__data
[0].__trans
= NULL
;
393 cc
->__cd_out
.__cd
.__nsteps
= fcts
.tomb_nsteps
;
394 cc
->__cd_out
.__cd
.__steps
= fcts
.tomb
;
396 cc
->__cd_out
.__cd
.__data
[0].__invocation_counter
= 0;
397 cc
->__cd_out
.__cd
.__data
[0].__internal_use
= 1;
398 cc
->__cd_out
.__cd
.__data
[0].__flags
= __GCONV_IS_LAST
;
399 cc
->__cd_out
.__cd
.__data
[0].__statep
=
400 &result
->_wide_data
->_IO_state
;
402 /* And now the transliteration. */
403 cc
->__cd_out
.__cd
.__data
[0].__trans
= &__libio_translit
;
405 /* From now on use the wide character callback functions. */
406 ((struct _IO_FILE_plus
*) fp
)->vtable
= fp
->_wide_data
->_wide_vtable
;
408 /* Set the mode now. */
412 #endif /* GNU libc */
416 INTDEF2(_IO_new_file_fopen
, _IO_file_fopen
)
419 _IO_new_file_attach (fp
, fd
)
423 if (_IO_file_is_open (fp
))
426 fp
->_flags
&= ~(_IO_NO_READS
+_IO_NO_WRITES
);
427 fp
->_flags
|= _IO_DELETE_DONT_CLOSE
;
428 /* Get the current position of the file. */
429 /* We have to do that since that may be junk. */
430 fp
->_offset
= _IO_pos_BAD
;
431 if (_IO_SEEKOFF (fp
, (_IO_off64_t
)0, _IO_seek_cur
, _IOS_INPUT
|_IOS_OUTPUT
)
432 == _IO_pos_BAD
&& errno
!= ESPIPE
)
436 INTDEF2(_IO_new_file_attach
, _IO_file_attach
)
439 _IO_new_file_setbuf (fp
, p
, len
)
444 if (_IO_default_setbuf (fp
, p
, len
) == NULL
)
447 fp
->_IO_write_base
= fp
->_IO_write_ptr
= fp
->_IO_write_end
449 _IO_setg (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
453 INTDEF2(_IO_new_file_setbuf
, _IO_file_setbuf
)
457 _IO_file_setbuf_mmap (fp
, p
, len
)
464 /* Change the function table. */
465 _IO_JUMPS ((struct _IO_FILE_plus
*) fp
) = &_IO_file_jumps
;
466 fp
->_wide_data
->_wide_vtable
= &_IO_wfile_jumps
;
468 /* And perform the normal operation. */
469 result
= _IO_new_file_setbuf (fp
, p
, len
);
471 /* If the call failed, restore to using mmap. */
474 _IO_JUMPS ((struct _IO_FILE_plus
*) fp
) = &_IO_file_jumps_mmap
;
475 fp
->_wide_data
->_wide_vtable
= &_IO_wfile_jumps_mmap
;
481 static _IO_size_t
new_do_write (_IO_FILE
*, const char *, _IO_size_t
);
483 /* Write TO_DO bytes from DATA to FP.
484 Then mark FP as having empty buffers. */
487 _IO_new_do_write (fp
, data
, to_do
)
493 || (_IO_size_t
) new_do_write (fp
, data
, to_do
) == to_do
) ? 0 : EOF
;
495 INTDEF2(_IO_new_do_write
, _IO_do_write
)
499 new_do_write (fp
, data
, to_do
)
505 if (fp
->_flags
& _IO_IS_APPENDING
)
506 /* On a system without a proper O_APPEND implementation,
507 you would need to sys_seek(0, SEEK_END) here, but is
508 is not needed nor desirable for Unix- or Posix-like systems.
509 Instead, just indicate that offset (before and after) is
511 fp
->_offset
= _IO_pos_BAD
;
512 else if (fp
->_IO_read_end
!= fp
->_IO_write_base
)
515 = _IO_SYSSEEK (fp
, fp
->_IO_write_base
- fp
->_IO_read_end
, 1);
516 if (new_pos
== _IO_pos_BAD
)
518 fp
->_offset
= new_pos
;
520 count
= _IO_SYSWRITE (fp
, data
, to_do
);
521 if (fp
->_cur_column
&& count
)
522 fp
->_cur_column
= INTUSE(_IO_adjust_column
) (fp
->_cur_column
- 1, data
,
524 _IO_setg (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
525 fp
->_IO_write_base
= fp
->_IO_write_ptr
= fp
->_IO_buf_base
;
526 fp
->_IO_write_end
= (fp
->_mode
<= 0
527 && (fp
->_flags
& (_IO_LINE_BUF
+_IO_UNBUFFERED
))
528 ? fp
->_IO_buf_base
: fp
->_IO_buf_end
);
533 _IO_new_file_underflow (fp
)
538 /* SysV does not make this test; take it out for compatibility */
539 if (fp
->_flags
& _IO_EOF_SEEN
)
543 if (fp
->_flags
& _IO_NO_READS
)
545 fp
->_flags
|= _IO_ERR_SEEN
;
549 if (fp
->_IO_read_ptr
< fp
->_IO_read_end
)
550 return *(unsigned char *) fp
->_IO_read_ptr
;
552 if (fp
->_IO_buf_base
== NULL
)
554 /* Maybe we already have a push back pointer. */
555 if (fp
->_IO_save_base
!= NULL
)
557 free (fp
->_IO_save_base
);
558 fp
->_flags
&= ~_IO_IN_BACKUP
;
560 INTUSE(_IO_doallocbuf
) (fp
);
563 /* Flush all line buffered files before reading. */
564 /* FIXME This can/should be moved to genops ?? */
565 if (fp
->_flags
& (_IO_LINE_BUF
|_IO_UNBUFFERED
))
568 INTUSE(_IO_flush_all_linebuffered
) ();
570 /* We used to flush all line-buffered stream. This really isn't
571 required by any standard. My recollection is that
572 traditional Unix systems did this for stdout. stderr better
573 not be line buffered. So we do just that here
574 explicitly. --drepper */
575 _IO_acquire_lock (_IO_stdout
);
577 if ((_IO_stdout
->_flags
& (_IO_LINKED
| _IO_NO_WRITES
| _IO_LINE_BUF
))
578 == (_IO_LINKED
| _IO_LINE_BUF
))
579 _IO_OVERFLOW (_IO_stdout
, EOF
);
581 _IO_release_lock (_IO_stdout
);
585 INTUSE(_IO_switch_to_get_mode
) (fp
);
587 /* This is very tricky. We have to adjust those
588 pointers before we call _IO_SYSREAD () since
589 we may longjump () out while waiting for
590 input. Those pointers may be screwed up. H.J. */
591 fp
->_IO_read_base
= fp
->_IO_read_ptr
= fp
->_IO_buf_base
;
592 fp
->_IO_read_end
= fp
->_IO_buf_base
;
593 fp
->_IO_write_base
= fp
->_IO_write_ptr
= fp
->_IO_write_end
596 count
= _IO_SYSREAD (fp
, fp
->_IO_buf_base
,
597 fp
->_IO_buf_end
- fp
->_IO_buf_base
);
601 fp
->_flags
|= _IO_EOF_SEEN
;
603 fp
->_flags
|= _IO_ERR_SEEN
, count
= 0;
605 fp
->_IO_read_end
+= count
;
608 if (fp
->_offset
!= _IO_pos_BAD
)
609 _IO_pos_adjust (fp
->_offset
, count
);
610 return *(unsigned char *) fp
->_IO_read_ptr
;
612 INTDEF2(_IO_new_file_underflow
, _IO_file_underflow
)
614 /* Guts of underflow callback if we mmap the file. This stats the file and
615 updates the stream state to match. In the normal case we return zero.
616 If the file is no longer eligible for mmap, its jump tables are reset to
617 the vanilla ones and we return nonzero. */
619 mmap_remap_check (_IO_FILE
*fp
)
623 if (_IO_SYSSTAT (fp
, &st
) == 0
624 && S_ISREG (st
.st_mode
) && st
.st_size
!= 0
625 /* Limit the file size to 1MB for 32-bit machines. */
626 && (sizeof (ptrdiff_t) > 4 || st
.st_size
< 1*1024*1024))
628 const size_t pagesize
= __getpagesize ();
629 # define ROUNDED(x) (((x) + pagesize - 1) & ~(pagesize - 1))
630 if (ROUNDED (st
.st_size
) < ROUNDED (fp
->_IO_buf_end
633 /* We can trim off some pages past the end of the file. */
634 (void) __munmap (fp
->_IO_buf_base
+ ROUNDED (st
.st_size
),
635 ROUNDED (fp
->_IO_buf_end
- fp
->_IO_buf_base
)
636 - ROUNDED (st
.st_size
));
637 fp
->_IO_buf_end
= fp
->_IO_buf_base
+ st
.st_size
;
639 else if (ROUNDED (st
.st_size
) > ROUNDED (fp
->_IO_buf_end
642 /* The file added some pages. We need to remap it. */
644 #ifdef _G_HAVE_MREMAP
645 p
= __mremap (fp
->_IO_buf_base
, ROUNDED (fp
->_IO_buf_end
647 ROUNDED (st
.st_size
), MREMAP_MAYMOVE
);
650 (void) __munmap (fp
->_IO_buf_base
,
651 fp
->_IO_buf_end
- fp
->_IO_buf_base
);
655 (void) __munmap (fp
->_IO_buf_base
,
656 fp
->_IO_buf_end
- fp
->_IO_buf_base
);
658 p
= _G_MMAP64 (NULL
, st
.st_size
, PROT_READ
, MAP_SHARED
,
661 p
= __mmap (NULL
, st
.st_size
, PROT_READ
, MAP_SHARED
,
667 fp
->_IO_buf_base
= p
;
668 fp
->_IO_buf_end
= fp
->_IO_buf_base
+ st
.st_size
;
672 /* The number of pages didn't change. */
673 fp
->_IO_buf_end
= fp
->_IO_buf_base
+ st
.st_size
;
677 fp
->_offset
-= fp
->_IO_read_end
- fp
->_IO_read_ptr
;
678 _IO_setg (fp
, fp
->_IO_buf_base
,
679 fp
->_offset
< fp
->_IO_buf_end
- fp
->_IO_buf_base
680 ? fp
->_IO_buf_base
+ fp
->_offset
: fp
->_IO_buf_end
,
683 /* If we are already positioned at or past the end of the file, don't
684 change the current offset. If not, seek past what we have mapped,
685 mimicking the position left by a normal underflow reading into its
688 if (fp
->_offset
< fp
->_IO_buf_end
- fp
->_IO_buf_base
)
696 (fp
->_fileno
, fp
->_IO_buf_end
- fp
->_IO_buf_base
, SEEK_SET
)
697 != fp
->_IO_buf_end
- fp
->_IO_buf_base
)
698 fp
->_flags
|= _IO_ERR_SEEN
;
700 fp
->_offset
= fp
->_IO_buf_end
- fp
->_IO_buf_base
;
707 /* Life is no longer good for mmap. Punt it. */
708 (void) __munmap (fp
->_IO_buf_base
,
709 fp
->_IO_buf_end
- fp
->_IO_buf_base
);
711 fp
->_IO_buf_base
= fp
->_IO_buf_end
= NULL
;
712 _IO_setg (fp
, NULL
, NULL
, NULL
);
714 _IO_JUMPS ((struct _IO_FILE_plus
*) fp
) = &_IO_file_jumps
;
716 _IO_JUMPS ((struct _IO_FILE_plus
*) fp
) = &_IO_wfile_jumps
;
717 fp
->_wide_data
->_wide_vtable
= &_IO_wfile_jumps
;
723 /* Special callback replacing the underflow callbacks if we mmap the file. */
725 _IO_file_underflow_mmap (_IO_FILE
*fp
)
727 if (fp
->_IO_read_ptr
< fp
->_IO_read_end
)
728 return *(unsigned char *) fp
->_IO_read_ptr
;
730 if (__builtin_expect (mmap_remap_check (fp
), 0))
731 /* We punted to the regular file functions. */
732 return _IO_UNDERFLOW (fp
);
734 if (fp
->_IO_read_ptr
< fp
->_IO_read_end
)
735 return *(unsigned char *) fp
->_IO_read_ptr
;
737 fp
->_flags
|= _IO_EOF_SEEN
;
742 decide_maybe_mmap (_IO_FILE
*fp
)
744 /* We use the file in read-only mode. This could mean we can
745 mmap the file and use it without any copying. But not all
746 file descriptors are for mmap-able objects and on 32-bit
747 machines we don't want to map files which are too large since
748 this would require too much virtual memory. */
751 if (_IO_SYSSTAT (fp
, &st
) == 0
752 && S_ISREG (st
.st_mode
) && st
.st_size
!= 0
753 /* Limit the file size to 1MB for 32-bit machines. */
754 && (sizeof (ptrdiff_t) > 4 || st
.st_size
< 1*1024*1024)
756 && (fp
->_offset
== _IO_pos_BAD
|| fp
->_offset
<= st
.st_size
))
758 /* Try to map the file. */
762 p
= _G_MMAP64 (NULL
, st
.st_size
, PROT_READ
, MAP_SHARED
, fp
->_fileno
, 0);
764 p
= __mmap (NULL
, st
.st_size
, PROT_READ
, MAP_SHARED
, fp
->_fileno
, 0);
768 /* OK, we managed to map the file. Set the buffer up and use a
769 special jump table with simplified underflow functions which
770 never tries to read anything from the file. */
778 (fp
->_fileno
, st
.st_size
, SEEK_SET
) != st
.st_size
)
780 (void) __munmap (p
, st
.st_size
);
781 fp
->_offset
= _IO_pos_BAD
;
785 INTUSE(_IO_setb
) (fp
, p
, (char *) p
+ st
.st_size
, 0);
787 if (fp
->_offset
== _IO_pos_BAD
)
790 _IO_setg (fp
, p
, p
+ fp
->_offset
, p
+ st
.st_size
);
791 fp
->_offset
= st
.st_size
;
794 _IO_JUMPS ((struct _IO_FILE_plus
*)fp
) = &_IO_file_jumps_mmap
;
796 _IO_JUMPS ((struct _IO_FILE_plus
*)fp
) = &_IO_wfile_jumps_mmap
;
797 fp
->_wide_data
->_wide_vtable
= &_IO_wfile_jumps_mmap
;
804 /* We couldn't use mmap, so revert to the vanilla file operations. */
807 _IO_JUMPS ((struct _IO_FILE_plus
*) fp
) = &_IO_file_jumps
;
809 _IO_JUMPS ((struct _IO_FILE_plus
*) fp
) = &_IO_wfile_jumps
;
810 fp
->_wide_data
->_wide_vtable
= &_IO_wfile_jumps
;
814 _IO_file_underflow_maybe_mmap (_IO_FILE
*fp
)
816 /* This is the first read attempt. Choose mmap or vanilla operations
817 and then punt to the chosen underflow routine. */
818 decide_maybe_mmap (fp
);
819 return _IO_UNDERFLOW (fp
);
824 _IO_new_file_overflow (f
, ch
)
828 if (f
->_flags
& _IO_NO_WRITES
) /* SET ERROR */
830 f
->_flags
|= _IO_ERR_SEEN
;
834 /* If currently reading or no buffer allocated. */
835 if ((f
->_flags
& _IO_CURRENTLY_PUTTING
) == 0 || f
->_IO_write_base
== NULL
)
837 /* Allocate a buffer if needed. */
838 if (f
->_IO_write_base
== NULL
)
840 INTUSE(_IO_doallocbuf
) (f
);
841 _IO_setg (f
, f
->_IO_buf_base
, f
->_IO_buf_base
, f
->_IO_buf_base
);
843 /* Otherwise must be currently reading.
844 If _IO_read_ptr (and hence also _IO_read_end) is at the buffer end,
845 logically slide the buffer forwards one block (by setting the
846 read pointers to all point at the beginning of the block). This
847 makes room for subsequent output.
848 Otherwise, set the read pointers to _IO_read_end (leaving that
849 alone, so it can continue to correspond to the external position). */
850 if (__builtin_expect (_IO_in_backup (f
), 0))
852 size_t nbackup
= f
->_IO_read_end
- f
->_IO_read_ptr
;
853 INTUSE(_IO_free_backup_area
) (f
);
854 f
->_IO_read_base
-= MIN (nbackup
,
855 f
->_IO_read_base
- f
->_IO_buf_base
);
856 f
->_IO_read_ptr
= f
->_IO_read_base
;
859 if (f
->_IO_read_ptr
== f
->_IO_buf_end
)
860 f
->_IO_read_end
= f
->_IO_read_ptr
= f
->_IO_buf_base
;
861 f
->_IO_write_ptr
= f
->_IO_read_ptr
;
862 f
->_IO_write_base
= f
->_IO_write_ptr
;
863 f
->_IO_write_end
= f
->_IO_buf_end
;
864 f
->_IO_read_base
= f
->_IO_read_ptr
= f
->_IO_read_end
;
866 f
->_flags
|= _IO_CURRENTLY_PUTTING
;
867 if (f
->_mode
<= 0 && f
->_flags
& (_IO_LINE_BUF
+_IO_UNBUFFERED
))
868 f
->_IO_write_end
= f
->_IO_write_ptr
;
871 return INTUSE(_IO_do_write
) (f
, f
->_IO_write_base
,
872 f
->_IO_write_ptr
- f
->_IO_write_base
);
873 if (f
->_IO_write_ptr
== f
->_IO_buf_end
) /* Buffer is really full */
874 if (_IO_do_flush (f
) == EOF
)
876 *f
->_IO_write_ptr
++ = ch
;
877 if ((f
->_flags
& _IO_UNBUFFERED
)
878 || ((f
->_flags
& _IO_LINE_BUF
) && ch
== '\n'))
879 if (INTUSE(_IO_do_write
) (f
, f
->_IO_write_base
,
880 f
->_IO_write_ptr
- f
->_IO_write_base
) == EOF
)
882 return (unsigned char) ch
;
884 INTDEF2(_IO_new_file_overflow
, _IO_file_overflow
)
887 _IO_new_file_sync (fp
)
893 /* char* ptr = cur_ptr(); */
894 if (fp
->_IO_write_ptr
> fp
->_IO_write_base
)
895 if (_IO_do_flush(fp
)) return EOF
;
896 delta
= fp
->_IO_read_ptr
- fp
->_IO_read_end
;
900 if (_IO_in_backup (fp
))
901 delta
-= eGptr () - Gbase ();
903 _IO_off64_t new_pos
= _IO_SYSSEEK (fp
, delta
, 1);
904 if (new_pos
!= (_IO_off64_t
) EOF
)
905 fp
->_IO_read_end
= fp
->_IO_read_ptr
;
907 else if (errno
== ESPIPE
)
908 ; /* Ignore error from unseekable devices. */
914 fp
->_offset
= _IO_pos_BAD
;
915 /* FIXME: Cleanup - can this be shared? */
916 /* setg(base(), ptr, ptr); */
919 INTDEF2(_IO_new_file_sync
, _IO_file_sync
)
922 _IO_file_sync_mmap (_IO_FILE
*fp
)
924 if (fp
->_IO_read_ptr
!= fp
->_IO_read_end
)
927 if (_IO_in_backup (fp
))
928 delta
-= eGptr () - Gbase ();
936 (fp
->_fileno
, fp
->_IO_read_ptr
- fp
->_IO_buf_base
, SEEK_SET
)
937 != fp
->_IO_read_ptr
- fp
->_IO_buf_base
)
939 fp
->_flags
|= _IO_ERR_SEEN
;
943 fp
->_offset
= fp
->_IO_read_ptr
- fp
->_IO_buf_base
;
944 fp
->_IO_read_end
= fp
->_IO_read_ptr
= fp
->_IO_read_base
;
950 _IO_new_file_seekoff (fp
, offset
, dir
, mode
)
957 _IO_off64_t delta
, new_offset
;
959 /* POSIX.1 8.2.3.7 says that after a call the fflush() the file
960 offset of the underlying file must be exact. */
961 int must_be_exact
= (fp
->_IO_read_base
== fp
->_IO_read_end
962 && fp
->_IO_write_base
== fp
->_IO_write_ptr
);
965 dir
= _IO_seek_cur
, offset
= 0; /* Don't move any pointers. */
967 /* Flush unwritten characters.
968 (This may do an unneeded write if we seek within the buffer.
969 But to be able to switch to reading, we would need to set
970 egptr to ptr. That can't be done in the current design,
971 which assumes file_ptr() is eGptr. Anyway, since we probably
972 end up flushing when we close(), it doesn't make much difference.)
973 FIXME: simulate mem-papped files. */
975 if (fp
->_IO_write_ptr
> fp
->_IO_write_base
|| _IO_in_put_mode (fp
))
976 if (INTUSE(_IO_switch_to_get_mode
) (fp
))
979 if (fp
->_IO_buf_base
== NULL
)
981 /* It could be that we already have a pushback buffer. */
982 if (fp
->_IO_read_base
!= NULL
)
984 free (fp
->_IO_read_base
);
985 fp
->_flags
&= ~_IO_IN_BACKUP
;
987 INTUSE(_IO_doallocbuf
) (fp
);
988 _IO_setp (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
989 _IO_setg (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
995 /* Adjust for read-ahead (bytes is buffer). */
996 offset
-= fp
->_IO_read_end
- fp
->_IO_read_ptr
;
997 if (fp
->_offset
== _IO_pos_BAD
)
1003 result
= _IO_SYSSEEK (fp
, 0, dir
);
1007 fp
->_offset
= result
;
1010 /* Make offset absolute, assuming current pointer is file_ptr(). */
1011 offset
+= fp
->_offset
;
1014 __set_errno (EINVAL
);
1024 struct _G_stat64 st
;
1025 if (_IO_SYSSTAT (fp
, &st
) == 0 && S_ISREG (st
.st_mode
))
1027 offset
+= st
.st_size
;
1034 /* At this point, dir==_IO_seek_set. */
1036 /* If we are only interested in the current position we've found it now. */
1040 /* If destination is within current buffer, optimize: */
1041 if (fp
->_offset
!= _IO_pos_BAD
&& fp
->_IO_read_base
!= NULL
1042 && !_IO_in_backup (fp
))
1044 _IO_off64_t start_offset
= (fp
->_offset
1045 - (fp
->_IO_read_end
- fp
->_IO_buf_base
));
1046 if (offset
>= start_offset
&& offset
< fp
->_offset
)
1048 _IO_setg (fp
, fp
->_IO_buf_base
,
1049 fp
->_IO_buf_base
+ (offset
- start_offset
),
1051 _IO_setp (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
1053 _IO_mask_flags (fp
, 0, _IO_EOF_SEEN
);
1058 if (fp
->_flags
& _IO_NO_READS
)
1061 /* Try to seek to a block boundary, to improve kernel page management. */
1062 new_offset
= offset
& ~(fp
->_IO_buf_end
- fp
->_IO_buf_base
- 1);
1063 delta
= offset
- new_offset
;
1064 if (delta
> fp
->_IO_buf_end
- fp
->_IO_buf_base
)
1066 new_offset
= offset
;
1069 result
= _IO_SYSSEEK (fp
, new_offset
, 0);
1076 count
= _IO_SYSREAD (fp
, fp
->_IO_buf_base
,
1078 ? delta
: fp
->_IO_buf_end
- fp
->_IO_buf_base
));
1081 /* We weren't allowed to read, but try to seek the remainder. */
1082 offset
= count
== EOF
? delta
: delta
-count
;
1087 _IO_setg (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
+ delta
,
1088 fp
->_IO_buf_base
+ count
);
1089 _IO_setp (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
1090 fp
->_offset
= result
+ count
;
1091 _IO_mask_flags (fp
, 0, _IO_EOF_SEEN
);
1095 INTUSE(_IO_unsave_markers
) (fp
);
1096 result
= _IO_SYSSEEK (fp
, offset
, dir
);
1099 _IO_mask_flags (fp
, 0, _IO_EOF_SEEN
);
1100 fp
->_offset
= result
;
1101 _IO_setg (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
1102 _IO_setp (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
1107 /* We need to do it since it is possible that the file offset in
1108 the kernel may be changed behind our back. It may happen when
1109 we fopen a file and then do a fork. One process may access the
1110 the file and the kernel file offset will be changed. */
1111 if (fp
->_offset
>= 0)
1112 _IO_SYSSEEK (fp
, fp
->_offset
, 0);
1116 INTDEF2(_IO_new_file_seekoff
, _IO_file_seekoff
)
1119 _IO_file_seekoff_mmap (fp
, offset
, dir
, mode
)
1127 /* If we are only interested in the current position, calculate it and
1128 return right now. This calculation does the right thing when we are
1129 using a pushback buffer, but in the usual case has the same value as
1130 (fp->_IO_read_ptr - fp->_IO_buf_base). */
1132 return fp
->_offset
- (fp
->_IO_read_end
- fp
->_IO_read_ptr
);
1137 /* Adjust for read-ahead (bytes is buffer). */
1138 offset
+= fp
->_IO_read_ptr
- fp
->_IO_read_base
;
1143 offset
+= fp
->_IO_buf_end
- fp
->_IO_buf_base
;
1146 /* At this point, dir==_IO_seek_set. */
1150 /* No negative offsets are valid. */
1151 __set_errno (EINVAL
);
1155 result
= _IO_SYSSEEK (fp
, offset
, 0);
1159 if (offset
> fp
->_IO_buf_end
- fp
->_IO_buf_base
)
1160 /* One can fseek arbitrarily past the end of the file
1161 and it is meaningless until one attempts to read.
1162 Leave the buffer pointers in EOF state until underflow. */
1163 _IO_setg (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_end
, fp
->_IO_buf_end
);
1165 /* Adjust the read pointers to match the file position,
1166 but so the next read attempt will call underflow. */
1167 _IO_setg (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
+ offset
,
1168 fp
->_IO_buf_base
+ offset
);
1170 fp
->_offset
= result
;
1172 _IO_mask_flags (fp
, 0, _IO_EOF_SEEN
);
1178 _IO_file_seekoff_maybe_mmap (_IO_FILE
*fp
, _IO_off64_t offset
, int dir
,
1181 /* We only get here when we haven't tried to read anything yet.
1182 So there is nothing more useful for us to do here than just
1183 the underlying lseek call. */
1185 _IO_off64_t result
= _IO_SYSSEEK (fp
, offset
, dir
);
1189 fp
->_offset
= result
;
1194 _IO_file_read (fp
, buf
, size
)
1199 return (__builtin_expect (fp
->_flags2
& _IO_FLAGS2_NOTCANCEL
, 0)
1200 ? read_not_cancel (fp
->_fileno
, buf
, size
)
1201 : read (fp
->_fileno
, buf
, size
));
1203 INTDEF(_IO_file_read
)
1206 _IO_file_seek (fp
, offset
, dir
)
1212 return _G_LSEEK64 (fp
->_fileno
, offset
, dir
);
1214 return lseek (fp
->_fileno
, offset
, dir
);
1217 INTDEF(_IO_file_seek
)
1220 _IO_file_stat (fp
, st
)
1225 return _G_FSTAT64 (fp
->_fileno
, (struct _G_stat64
*) st
);
1227 return fstat (fp
->_fileno
, (struct stat
*) st
);
1230 INTDEF(_IO_file_stat
)
1233 _IO_file_close_mmap (fp
)
1236 /* In addition to closing the file descriptor we have to unmap the file. */
1237 (void) __munmap (fp
->_IO_buf_base
, fp
->_IO_buf_end
- fp
->_IO_buf_base
);
1238 fp
->_IO_buf_base
= fp
->_IO_buf_end
= NULL
;
1239 /* Cancelling close should be avoided if possible since it leaves an
1240 unrecoverable state behind. */
1241 return close_not_cancel (fp
->_fileno
);
1248 /* Cancelling close should be avoided if possible since it leaves an
1249 unrecoverable state behind. */
1250 return close_not_cancel (fp
->_fileno
);
1252 INTDEF(_IO_file_close
)
1255 _IO_new_file_write (f
, data
, n
)
1260 _IO_ssize_t to_do
= n
;
1263 _IO_ssize_t count
= (__builtin_expect (f
->_flags2
1264 & _IO_FLAGS2_NOTCANCEL
, 0)
1265 ? write_not_cancel (f
->_fileno
, data
, to_do
)
1266 : write (f
->_fileno
, data
, to_do
));
1269 f
->_flags
|= _IO_ERR_SEEN
;
1273 data
= (void *) ((char *) data
+ count
);
1276 if (f
->_offset
>= 0)
1282 _IO_new_file_xsputn (f
, data
, n
)
1287 register const char *s
= (const char *) data
;
1288 _IO_size_t to_do
= n
;
1290 _IO_size_t count
= 0;
1294 /* This is an optimized implementation.
1295 If the amount to be written straddles a block boundary
1296 (or the filebuf is unbuffered), use sys_write directly. */
1298 /* First figure out how much space is available in the buffer. */
1299 if ((f
->_flags
& _IO_LINE_BUF
) && (f
->_flags
& _IO_CURRENTLY_PUTTING
))
1301 count
= f
->_IO_buf_end
- f
->_IO_write_ptr
;
1304 register const char *p
;
1305 for (p
= s
+ n
; p
> s
; )
1316 else if (f
->_IO_write_end
> f
->_IO_write_ptr
)
1317 count
= f
->_IO_write_end
- f
->_IO_write_ptr
; /* Space available. */
1319 /* Then fill the buffer. */
1327 f
->_IO_write_ptr
= __mempcpy (f
->_IO_write_ptr
, s
, count
);
1329 memcpy (f
->_IO_write_ptr
, s
, count
);
1330 f
->_IO_write_ptr
+= count
;
1336 register char *p
= f
->_IO_write_ptr
;
1337 register int i
= (int) count
;
1340 f
->_IO_write_ptr
= p
;
1344 if (to_do
+ must_flush
> 0)
1346 _IO_size_t block_size
, do_write
;
1347 /* Next flush the (full) buffer. */
1348 if (_IO_OVERFLOW (f
, EOF
) == EOF
)
1349 /* If nothing else has to be written we must not signal the
1350 caller that everything has been written. */
1351 return to_do
== 0 ? EOF
: n
- to_do
;
1353 /* Try to maintain alignment: write a whole number of blocks.
1354 dont_write is what gets left over. */
1355 block_size
= f
->_IO_buf_end
- f
->_IO_buf_base
;
1356 do_write
= to_do
- (block_size
>= 128 ? to_do
% block_size
: 0);
1360 count
= new_do_write (f
, s
, do_write
);
1362 if (count
< do_write
)
1366 /* Now write out the remainder. Normally, this will fit in the
1367 buffer, but it's somewhat messier for line-buffered files,
1368 so we let _IO_default_xsputn handle the general case. */
1370 to_do
-= INTUSE(_IO_default_xsputn
) (f
, s
+do_write
, to_do
);
1374 INTDEF2(_IO_new_file_xsputn
, _IO_file_xsputn
)
1377 _IO_file_xsgetn (fp
, data
, n
)
1382 register _IO_size_t want
, have
;
1383 register _IO_ssize_t count
;
1384 register char *s
= data
;
1388 if (fp
->_IO_buf_base
== NULL
)
1390 /* Maybe we already have a push back pointer. */
1391 if (fp
->_IO_save_base
!= NULL
)
1393 free (fp
->_IO_save_base
);
1394 fp
->_flags
&= ~_IO_IN_BACKUP
;
1396 INTUSE(_IO_doallocbuf
) (fp
);
1401 have
= fp
->_IO_read_end
- fp
->_IO_read_ptr
;
1404 memcpy (s
, fp
->_IO_read_ptr
, want
);
1405 fp
->_IO_read_ptr
+= want
;
1413 s
= __mempcpy (s
, fp
->_IO_read_ptr
, have
);
1415 memcpy (s
, fp
->_IO_read_ptr
, have
);
1419 fp
->_IO_read_ptr
+= have
;
1422 /* Check for backup and repeat */
1423 if (_IO_in_backup (fp
))
1425 _IO_switch_to_main_get_area (fp
);
1429 /* If we now want less than a buffer, underflow and repeat
1430 the copy. Otherwise, _IO_SYSREAD directly to
1432 if (fp
->_IO_buf_base
1433 && want
< (size_t) (fp
->_IO_buf_end
- fp
->_IO_buf_base
))
1435 if (__underflow (fp
) == EOF
)
1441 /* These must be set before the sysread as we might longjmp out
1442 waiting for input. */
1443 _IO_setg (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
1444 _IO_setp (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
1446 /* Try to maintain alignment: read a whole number of blocks. */
1448 if (fp
->_IO_buf_base
)
1450 _IO_size_t block_size
= fp
->_IO_buf_end
- fp
->_IO_buf_base
;
1451 if (block_size
>= 128)
1452 count
-= want
% block_size
;
1455 count
= _IO_SYSREAD (fp
, s
, count
);
1459 fp
->_flags
|= _IO_EOF_SEEN
;
1461 fp
->_flags
|= _IO_ERR_SEEN
;
1468 if (fp
->_offset
!= _IO_pos_BAD
)
1469 _IO_pos_adjust (fp
->_offset
, count
);
1475 INTDEF(_IO_file_xsgetn
)
1477 static _IO_size_t
_IO_file_xsgetn_mmap (_IO_FILE
*, void *, _IO_size_t
);
1479 _IO_file_xsgetn_mmap (fp
, data
, n
)
1484 register _IO_size_t have
;
1485 char *read_ptr
= fp
->_IO_read_ptr
;
1486 register char *s
= (char *) data
;
1488 have
= fp
->_IO_read_end
- fp
->_IO_read_ptr
;
1492 if (__builtin_expect (_IO_in_backup (fp
), 0))
1495 s
= __mempcpy (s
, read_ptr
, have
);
1497 memcpy (s
, read_ptr
, have
);
1501 _IO_switch_to_main_get_area (fp
);
1502 read_ptr
= fp
->_IO_read_ptr
;
1503 have
= fp
->_IO_read_end
- fp
->_IO_read_ptr
;
1508 /* Check that we are mapping all of the file, in case it grew. */
1509 if (__builtin_expect (mmap_remap_check (fp
), 0))
1510 /* We punted mmap, so complete with the vanilla code. */
1511 return s
- (char *) data
+ _IO_XSGETN (fp
, data
, n
);
1513 read_ptr
= fp
->_IO_read_ptr
;
1514 have
= fp
->_IO_read_end
- read_ptr
;
1519 fp
->_flags
|= _IO_EOF_SEEN
;
1523 have
= MIN (have
, n
);
1525 s
= __mempcpy (s
, read_ptr
, have
);
1527 memcpy (s
, read_ptr
, have
);
1530 fp
->_IO_read_ptr
= read_ptr
+ have
;
1533 return s
- (char *) data
;
1536 static _IO_size_t
_IO_file_xsgetn_maybe_mmap (_IO_FILE
*, void *, _IO_size_t
);
1538 _IO_file_xsgetn_maybe_mmap (fp
, data
, n
)
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. */
1546 decide_maybe_mmap (fp
);
1547 return _IO_XSGETN (fp
, data
, n
);
1551 # undef _IO_do_write
1552 # undef _IO_file_close_it
1553 versioned_symbol (libc
, _IO_new_do_write
, _IO_do_write
, GLIBC_2_1
);
1554 versioned_symbol (libc
, _IO_new_file_attach
, _IO_file_attach
, GLIBC_2_1
);
1555 versioned_symbol (libc
, _IO_new_file_close_it
, _IO_file_close_it
, GLIBC_2_1
);
1556 versioned_symbol (libc
, _IO_new_file_finish
, _IO_file_finish
, GLIBC_2_1
);
1557 versioned_symbol (libc
, _IO_new_file_fopen
, _IO_file_fopen
, GLIBC_2_1
);
1558 versioned_symbol (libc
, _IO_new_file_init
, _IO_file_init
, GLIBC_2_1
);
1559 versioned_symbol (libc
, _IO_new_file_setbuf
, _IO_file_setbuf
, GLIBC_2_1
);
1560 versioned_symbol (libc
, _IO_new_file_sync
, _IO_file_sync
, GLIBC_2_1
);
1561 versioned_symbol (libc
, _IO_new_file_overflow
, _IO_file_overflow
, GLIBC_2_1
);
1562 versioned_symbol (libc
, _IO_new_file_seekoff
, _IO_file_seekoff
, GLIBC_2_1
);
1563 versioned_symbol (libc
, _IO_new_file_underflow
, _IO_file_underflow
, GLIBC_2_1
);
1564 versioned_symbol (libc
, _IO_new_file_write
, _IO_file_write
, GLIBC_2_1
);
1565 versioned_symbol (libc
, _IO_new_file_xsputn
, _IO_file_xsputn
, GLIBC_2_1
);
1568 const struct _IO_jump_t _IO_file_jumps
=
1571 JUMP_INIT(finish
, INTUSE(_IO_file_finish
)),
1572 JUMP_INIT(overflow
, INTUSE(_IO_file_overflow
)),
1573 JUMP_INIT(underflow
, INTUSE(_IO_file_underflow
)),
1574 JUMP_INIT(uflow
, INTUSE(_IO_default_uflow
)),
1575 JUMP_INIT(pbackfail
, INTUSE(_IO_default_pbackfail
)),
1576 JUMP_INIT(xsputn
, INTUSE(_IO_file_xsputn
)),
1577 JUMP_INIT(xsgetn
, INTUSE(_IO_file_xsgetn
)),
1578 JUMP_INIT(seekoff
, _IO_new_file_seekoff
),
1579 JUMP_INIT(seekpos
, _IO_default_seekpos
),
1580 JUMP_INIT(setbuf
, _IO_new_file_setbuf
),
1581 JUMP_INIT(sync
, _IO_new_file_sync
),
1582 JUMP_INIT(doallocate
, INTUSE(_IO_file_doallocate
)),
1583 JUMP_INIT(read
, INTUSE(_IO_file_read
)),
1584 JUMP_INIT(write
, _IO_new_file_write
),
1585 JUMP_INIT(seek
, INTUSE(_IO_file_seek
)),
1586 JUMP_INIT(close
, INTUSE(_IO_file_close
)),
1587 JUMP_INIT(stat
, INTUSE(_IO_file_stat
)),
1588 JUMP_INIT(showmanyc
, _IO_default_showmanyc
),
1589 JUMP_INIT(imbue
, _IO_default_imbue
)
1591 libc_hidden_data_def (_IO_file_jumps
)
1593 const struct _IO_jump_t _IO_file_jumps_mmap
=
1596 JUMP_INIT(finish
, INTUSE(_IO_file_finish
)),
1597 JUMP_INIT(overflow
, INTUSE(_IO_file_overflow
)),
1598 JUMP_INIT(underflow
, _IO_file_underflow_mmap
),
1599 JUMP_INIT(uflow
, INTUSE(_IO_default_uflow
)),
1600 JUMP_INIT(pbackfail
, INTUSE(_IO_default_pbackfail
)),
1601 JUMP_INIT(xsputn
, _IO_new_file_xsputn
),
1602 JUMP_INIT(xsgetn
, _IO_file_xsgetn_mmap
),
1603 JUMP_INIT(seekoff
, _IO_file_seekoff_mmap
),
1604 JUMP_INIT(seekpos
, _IO_default_seekpos
),
1605 JUMP_INIT(setbuf
, (_IO_setbuf_t
) _IO_file_setbuf_mmap
),
1606 JUMP_INIT(sync
, _IO_file_sync_mmap
),
1607 JUMP_INIT(doallocate
, INTUSE(_IO_file_doallocate
)),
1608 JUMP_INIT(read
, INTUSE(_IO_file_read
)),
1609 JUMP_INIT(write
, _IO_new_file_write
),
1610 JUMP_INIT(seek
, INTUSE(_IO_file_seek
)),
1611 JUMP_INIT(close
, _IO_file_close_mmap
),
1612 JUMP_INIT(stat
, INTUSE(_IO_file_stat
)),
1613 JUMP_INIT(showmanyc
, _IO_default_showmanyc
),
1614 JUMP_INIT(imbue
, _IO_default_imbue
)
1617 const struct _IO_jump_t _IO_file_jumps_maybe_mmap
=
1620 JUMP_INIT(finish
, INTUSE(_IO_file_finish
)),
1621 JUMP_INIT(overflow
, INTUSE(_IO_file_overflow
)),
1622 JUMP_INIT(underflow
, _IO_file_underflow_maybe_mmap
),
1623 JUMP_INIT(uflow
, INTUSE(_IO_default_uflow
)),
1624 JUMP_INIT(pbackfail
, INTUSE(_IO_default_pbackfail
)),
1625 JUMP_INIT(xsputn
, _IO_new_file_xsputn
),
1626 JUMP_INIT(xsgetn
, _IO_file_xsgetn_maybe_mmap
),
1627 JUMP_INIT(seekoff
, _IO_file_seekoff_maybe_mmap
),
1628 JUMP_INIT(seekpos
, _IO_default_seekpos
),
1629 JUMP_INIT(setbuf
, (_IO_setbuf_t
) _IO_file_setbuf_mmap
),
1630 JUMP_INIT(sync
, _IO_new_file_sync
),
1631 JUMP_INIT(doallocate
, INTUSE(_IO_file_doallocate
)),
1632 JUMP_INIT(read
, INTUSE(_IO_file_read
)),
1633 JUMP_INIT(write
, _IO_new_file_write
),
1634 JUMP_INIT(seek
, INTUSE(_IO_file_seek
)),
1635 JUMP_INIT(close
, _IO_file_close
),
1636 JUMP_INIT(stat
, INTUSE(_IO_file_stat
)),
1637 JUMP_INIT(showmanyc
, _IO_default_showmanyc
),
1638 JUMP_INIT(imbue
, _IO_default_imbue
)