1 /* Copyright (C) 1993, 1995, 1997-2003, 2004 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Written by Per Bothner <bothner@cygnus.com>.
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.
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
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
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
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. */
31 # define _POSIX_SOURCE
36 #include <sys/param.h>
37 #include <sys/types.h>
46 # include "../wcsmbs/wcsmbsload.h"
47 # include "../iconv/gconv_charset.h"
48 # include "../iconv/gconv_int.h"
49 # include <shlib-compat.h>
50 # include <not-cancel.h>
56 # define __set_errno(Val) errno = (Val)
61 # define open(Name, Flags, Prot) __open (Name, Flags, Prot)
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)
65 # define _IO_do_write _IO_new_do_write /* For macro uses. */
66 # define _IO_file_close_it _IO_new_file_close_it
68 # define _IO_new_do_write _IO_do_write
69 # define _IO_new_file_attach _IO_file_attach
70 # define _IO_new_file_close_it _IO_file_close_it
71 # define _IO_new_file_finish _IO_file_finish
72 # define _IO_new_file_fopen _IO_file_fopen
73 # define _IO_new_file_init _IO_file_init
74 # define _IO_new_file_setbuf _IO_file_setbuf
75 # define _IO_new_file_sync _IO_file_sync
76 # define _IO_new_file_overflow _IO_file_overflow
77 # define _IO_new_file_seekoff _IO_file_seekoff
78 # define _IO_new_file_underflow _IO_file_underflow
79 # define _IO_new_file_write _IO_file_write
80 # define _IO_new_file_xsputn _IO_file_xsputn
85 extern struct __gconv_trans_data __libio_translit attribute_hidden
;
89 /* An fstream can be in at most one of put mode, get mode, or putback mode.
90 Putback mode is a variant of get mode.
92 In a filebuf, there is only one current position, instead of two
93 separate get and put pointers. In get mode, the current position
94 is that of gptr(); in put mode that of pptr().
96 The position in the buffer that corresponds to the position
97 in external file system is normally _IO_read_end, except in putback
98 mode, when it is _IO_save_end.
99 If the field _fb._offset is >= 0, it gives the offset in
100 the file as a whole corresponding to eGptr(). (?)
103 If a filebuf is in put mode, then all of _IO_read_ptr, _IO_read_end,
104 and _IO_read_base are equal to each other. These are usually equal
105 to _IO_buf_base, though not necessarily if we have switched from
106 get mode to put mode. (The reason is to maintain the invariant
107 that _IO_read_end corresponds to the external file position.)
108 _IO_write_base is non-NULL and usually equal to _IO_base_base.
109 We also have _IO_write_end == _IO_buf_end, but only in fully buffered mode.
110 The un-flushed character are those between _IO_write_base and _IO_write_ptr.
113 If a filebuf is in get or putback mode, eback() != egptr().
114 In get mode, the unread characters are between gptr() and egptr().
115 The OS file position corresponds to that of egptr().
118 Putback mode is used to remember "excess" characters that have
119 been sputbackc'd in a separate putback buffer.
120 In putback mode, the get buffer points to the special putback buffer.
121 The unread characters are the characters between gptr() and egptr()
122 in the putback buffer, as well as the area between save_gptr()
123 and save_egptr(), which point into the original reserve buffer.
124 (The pointers save_gptr() and save_egptr() are the values
125 of gptr() and egptr() at the time putback mode was entered.)
126 The OS position corresponds to that of save_egptr().
128 LINE BUFFERED OUTPUT:
129 During line buffered output, _IO_write_base==base() && epptr()==base().
130 However, ptr() may be anywhere between base() and ebuf().
131 This forces a call to filebuf::overflow(int C) on every put.
132 If there is more space in the buffer, and C is not a '\n',
133 then C is inserted, and pptr() incremented.
136 If a filebuf is unbuffered(), the _shortbuf[1] is used as the buffer.
139 #define CLOSED_FILEBUF_FLAGS \
140 (_IO_IS_FILEBUF+_IO_NO_READS+_IO_NO_WRITES+_IO_TIED_PUT_GET)
144 _IO_new_file_init (fp
)
145 struct _IO_FILE_plus
*fp
;
147 /* POSIX.1 allows another file handle to be used to change the position
148 of our file descriptor. Hence we actually don't know the actual
149 position before we do the first fseek (and until a following fflush). */
150 fp
->file
._offset
= _IO_pos_BAD
;
151 fp
->file
._IO_file_flags
|= CLOSED_FILEBUF_FLAGS
;
153 INTUSE(_IO_link_in
) (fp
);
154 fp
->file
._fileno
= -1;
156 INTDEF2(_IO_new_file_init
, _IO_file_init
)
159 _IO_new_file_close_it (fp
)
162 int write_status
, close_status
;
163 if (!_IO_file_is_open (fp
))
166 if ((fp
->_flags
& _IO_NO_WRITES
) == 0
167 && (fp
->_flags
& _IO_CURRENTLY_PUTTING
) != 0)
168 write_status
= _IO_do_flush (fp
);
172 INTUSE(_IO_unsave_markers
) (fp
);
174 close_status
= _IO_SYSCLOSE (fp
);
179 INTUSE(_IO_setb
) (fp
, NULL
, NULL
, 0);
180 _IO_setg (fp
, NULL
, NULL
, NULL
);
181 _IO_setp (fp
, NULL
, NULL
);
183 #if defined _LIBC || defined _GLIBCPP_USE_WCHAR_T
186 if (_IO_have_wbackup (fp
))
187 INTUSE(_IO_free_wbackup_area
) (fp
);
188 INTUSE(_IO_wsetb
) (fp
, NULL
, NULL
, 0);
189 _IO_wsetg (fp
, NULL
, NULL
, NULL
);
190 _IO_wsetp (fp
, NULL
, NULL
);
194 INTUSE(_IO_un_link
) ((struct _IO_FILE_plus
*) fp
);
195 fp
->_flags
= _IO_MAGIC
|CLOSED_FILEBUF_FLAGS
;
197 fp
->_offset
= _IO_pos_BAD
;
199 return close_status
? close_status
: write_status
;
201 INTDEF2(_IO_new_file_close_it
, _IO_file_close_it
)
204 _IO_new_file_finish (fp
, dummy
)
208 if (_IO_file_is_open (fp
))
211 if (!(fp
->_flags
& _IO_DELETE_DONT_CLOSE
))
214 INTUSE(_IO_default_finish
) (fp
, 0);
216 INTDEF2(_IO_new_file_finish
, _IO_file_finish
)
219 _IO_file_open (fp
, filename
, posix_mode
, prot
, read_write
, is32not64
)
221 const char *filename
;
229 if (__builtin_expect (fp
->_flags2
& _IO_FLAGS2_NOTCANCEL
, 0))
230 fdesc
= open_not_cancel (filename
,
231 posix_mode
| (is32not64
? 0 : O_LARGEFILE
), prot
);
233 fdesc
= open (filename
, posix_mode
| (is32not64
? 0 : O_LARGEFILE
), prot
);
235 fdesc
= open (filename
, posix_mode
, prot
);
240 _IO_mask_flags (fp
, read_write
,_IO_NO_READS
+_IO_NO_WRITES
+_IO_IS_APPENDING
);
241 if ((read_write
& _IO_IS_APPENDING
) && (read_write
& _IO_NO_READS
))
242 if (_IO_SEEKOFF (fp
, (_IO_off64_t
)0, _IO_seek_end
, _IOS_INPUT
|_IOS_OUTPUT
)
243 == _IO_pos_BAD
&& errno
!= ESPIPE
)
245 close_not_cancel (fdesc
);
248 INTUSE(_IO_link_in
) ((struct _IO_FILE_plus
*) fp
);
251 libc_hidden_def (_IO_file_open
)
254 _IO_new_file_fopen (fp
, filename
, mode
, is32not64
)
256 const char *filename
;
260 int oflags
= 0, omode
;
267 const char *last_recognized
;
270 if (_IO_file_is_open (fp
))
276 read_write
= _IO_NO_WRITES
;
280 oflags
= O_CREAT
|O_TRUNC
;
281 read_write
= _IO_NO_READS
;
285 oflags
= O_CREAT
|O_APPEND
;
286 read_write
= _IO_NO_READS
|_IO_IS_APPENDING
;
289 __set_errno (EINVAL
);
293 last_recognized
= mode
;
295 for (i
= 1; i
< 6; ++i
)
303 read_write
&= _IO_IS_APPENDING
;
305 last_recognized
= mode
;
311 last_recognized
= mode
;
316 last_recognized
= mode
;
320 fp
->_flags2
|= _IO_FLAGS2_MMAP
;
323 fp
->_flags2
|= _IO_FLAGS2_NOTCANCEL
;
332 result
= _IO_file_open (fp
, filename
, omode
|oflags
, oprot
, read_write
,
339 /* Test whether the mode string specifies the conversion. */
340 cs
= strstr (last_recognized
+ 1, ",ccs=");
343 /* Yep. Load the appropriate conversions and set the orientation
345 struct gconv_fcts fcts
;
346 struct _IO_codecvt
*cc
;
347 char *endp
= __strchrnul (cs
+ 5, ',');
348 char ccs
[endp
- (cs
+ 5) + 3];
350 *((char *) __mempcpy (ccs
, cs
+ 5, endp
- (cs
+ 5))) = '\0';
353 if (__wcsmbs_named_conv (&fcts
, ccs
[2] == '\0'
354 ? upstr (ccs
, cs
+ 5) : ccs
) != 0)
356 /* Something went wrong, we cannot load the conversion modules.
357 This means we cannot proceed since the user explicitly asked
359 (void) INTUSE(_IO_file_close_it
) (fp
);
360 __set_errno (EINVAL
);
364 assert (fcts
.towc_nsteps
== 1);
365 assert (fcts
.tomb_nsteps
== 1);
367 fp
->_wide_data
->_IO_read_ptr
= fp
->_wide_data
->_IO_read_end
;
368 fp
->_wide_data
->_IO_write_ptr
= fp
->_wide_data
->_IO_write_base
;
370 /* Clear the state. We start all over again. */
371 memset (&fp
->_wide_data
->_IO_state
, '\0', sizeof (__mbstate_t
));
372 memset (&fp
->_wide_data
->_IO_last_state
, '\0', sizeof (__mbstate_t
));
374 cc
= fp
->_codecvt
= &fp
->_wide_data
->_codecvt
;
376 /* The functions are always the same. */
377 *cc
= __libio_codecvt
;
379 cc
->__cd_in
.__cd
.__nsteps
= fcts
.towc_nsteps
;
380 cc
->__cd_in
.__cd
.__steps
= fcts
.towc
;
382 cc
->__cd_in
.__cd
.__data
[0].__invocation_counter
= 0;
383 cc
->__cd_in
.__cd
.__data
[0].__internal_use
= 1;
384 cc
->__cd_in
.__cd
.__data
[0].__flags
= __GCONV_IS_LAST
;
385 cc
->__cd_in
.__cd
.__data
[0].__statep
= &result
->_wide_data
->_IO_state
;
387 /* XXX For now no transliteration. */
388 cc
->__cd_in
.__cd
.__data
[0].__trans
= NULL
;
390 cc
->__cd_out
.__cd
.__nsteps
= fcts
.tomb_nsteps
;
391 cc
->__cd_out
.__cd
.__steps
= fcts
.tomb
;
393 cc
->__cd_out
.__cd
.__data
[0].__invocation_counter
= 0;
394 cc
->__cd_out
.__cd
.__data
[0].__internal_use
= 1;
395 cc
->__cd_out
.__cd
.__data
[0].__flags
= __GCONV_IS_LAST
;
396 cc
->__cd_out
.__cd
.__data
[0].__statep
=
397 &result
->_wide_data
->_IO_state
;
399 /* And now the transliteration. */
400 cc
->__cd_out
.__cd
.__data
[0].__trans
= &__libio_translit
;
402 /* Set the mode now. */
406 #endif /* GNU libc */
410 INTDEF2(_IO_new_file_fopen
, _IO_file_fopen
)
413 _IO_new_file_attach (fp
, fd
)
417 if (_IO_file_is_open (fp
))
420 fp
->_flags
&= ~(_IO_NO_READS
+_IO_NO_WRITES
);
421 fp
->_flags
|= _IO_DELETE_DONT_CLOSE
;
422 /* Get the current position of the file. */
423 /* We have to do that since that may be junk. */
424 fp
->_offset
= _IO_pos_BAD
;
425 if (_IO_SEEKOFF (fp
, (_IO_off64_t
)0, _IO_seek_cur
, _IOS_INPUT
|_IOS_OUTPUT
)
426 == _IO_pos_BAD
&& errno
!= ESPIPE
)
430 INTDEF2(_IO_new_file_attach
, _IO_file_attach
)
433 _IO_new_file_setbuf (fp
, p
, len
)
438 if (_IO_default_setbuf (fp
, p
, len
) == NULL
)
441 fp
->_IO_write_base
= fp
->_IO_write_ptr
= fp
->_IO_write_end
443 _IO_setg (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
447 INTDEF2(_IO_new_file_setbuf
, _IO_file_setbuf
)
451 _IO_file_setbuf_mmap (fp
, p
, len
)
458 /* Change the function table. */
459 _IO_JUMPS ((struct _IO_FILE_plus
*) fp
) = &_IO_file_jumps
;
460 fp
->_wide_data
->_wide_vtable
= &_IO_wfile_jumps
;
462 /* And perform the normal operation. */
463 result
= _IO_new_file_setbuf (fp
, p
, len
);
465 /* If the call failed, restore to using mmap. */
468 _IO_JUMPS ((struct _IO_FILE_plus
*) fp
) = &_IO_file_jumps_mmap
;
469 fp
->_wide_data
->_wide_vtable
= &_IO_wfile_jumps_mmap
;
475 static _IO_size_t new_do_write
__P ((_IO_FILE
*, const char *, _IO_size_t
));
477 /* Write TO_DO bytes from DATA to FP.
478 Then mark FP as having empty buffers. */
481 _IO_new_do_write (fp
, data
, to_do
)
487 || (_IO_size_t
) new_do_write (fp
, data
, to_do
) == to_do
) ? 0 : EOF
;
489 INTDEF2(_IO_new_do_write
, _IO_do_write
)
493 new_do_write (fp
, data
, to_do
)
499 if (fp
->_flags
& _IO_IS_APPENDING
)
500 /* On a system without a proper O_APPEND implementation,
501 you would need to sys_seek(0, SEEK_END) here, but is
502 is not needed nor desirable for Unix- or Posix-like systems.
503 Instead, just indicate that offset (before and after) is
505 fp
->_offset
= _IO_pos_BAD
;
506 else if (fp
->_IO_read_end
!= fp
->_IO_write_base
)
509 = _IO_SYSSEEK (fp
, fp
->_IO_write_base
- fp
->_IO_read_end
, 1);
510 if (new_pos
== _IO_pos_BAD
)
512 fp
->_offset
= new_pos
;
514 count
= _IO_SYSWRITE (fp
, data
, to_do
);
515 if (fp
->_cur_column
&& count
)
516 fp
->_cur_column
= INTUSE(_IO_adjust_column
) (fp
->_cur_column
- 1, data
,
518 _IO_setg (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
519 fp
->_IO_write_base
= fp
->_IO_write_ptr
= fp
->_IO_buf_base
;
520 fp
->_IO_write_end
= (fp
->_mode
<= 0
521 && (fp
->_flags
& (_IO_LINE_BUF
+_IO_UNBUFFERED
))
522 ? fp
->_IO_buf_base
: fp
->_IO_buf_end
);
527 _IO_new_file_underflow (fp
)
532 /* SysV does not make this test; take it out for compatibility */
533 if (fp
->_flags
& _IO_EOF_SEEN
)
537 if (fp
->_flags
& _IO_NO_READS
)
539 fp
->_flags
|= _IO_ERR_SEEN
;
543 if (fp
->_IO_read_ptr
< fp
->_IO_read_end
)
544 return *(unsigned char *) fp
->_IO_read_ptr
;
546 if (fp
->_IO_buf_base
== NULL
)
548 /* Maybe we already have a push back pointer. */
549 if (fp
->_IO_save_base
!= NULL
)
551 free (fp
->_IO_save_base
);
552 fp
->_flags
&= ~_IO_IN_BACKUP
;
554 INTUSE(_IO_doallocbuf
) (fp
);
557 /* Flush all line buffered files before reading. */
558 /* FIXME This can/should be moved to genops ?? */
559 if (fp
->_flags
& (_IO_LINE_BUF
|_IO_UNBUFFERED
))
562 INTUSE(_IO_flush_all_linebuffered
) ();
564 /* We used to flush all line-buffered stream. This really isn't
565 required by any standard. My recollection is that
566 traditional Unix systems did this for stdout. stderr better
567 not be line buffered. So we do just that here
568 explicitly. --drepper */
569 _IO_acquire_lock (_IO_stdout
);
571 if ((_IO_stdout
->_flags
& (_IO_LINKED
| _IO_NO_WRITES
| _IO_LINE_BUF
))
572 == (_IO_LINKED
| _IO_LINE_BUF
))
573 _IO_OVERFLOW (_IO_stdout
, EOF
);
575 _IO_release_lock (_IO_stdout
);
579 INTUSE(_IO_switch_to_get_mode
) (fp
);
581 /* This is very tricky. We have to adjust those
582 pointers before we call _IO_SYSREAD () since
583 we may longjump () out while waiting for
584 input. Those pointers may be screwed up. H.J. */
585 fp
->_IO_read_base
= fp
->_IO_read_ptr
= fp
->_IO_buf_base
;
586 fp
->_IO_read_end
= fp
->_IO_buf_base
;
587 fp
->_IO_write_base
= fp
->_IO_write_ptr
= fp
->_IO_write_end
590 count
= _IO_SYSREAD (fp
, fp
->_IO_buf_base
,
591 fp
->_IO_buf_end
- fp
->_IO_buf_base
);
595 fp
->_flags
|= _IO_EOF_SEEN
;
597 fp
->_flags
|= _IO_ERR_SEEN
, count
= 0;
599 fp
->_IO_read_end
+= count
;
602 if (fp
->_offset
!= _IO_pos_BAD
)
603 _IO_pos_adjust (fp
->_offset
, count
);
604 return *(unsigned char *) fp
->_IO_read_ptr
;
606 INTDEF2(_IO_new_file_underflow
, _IO_file_underflow
)
608 /* Guts of underflow callback if we mmap the file. This stats the file and
609 updates the stream state to match. In the normal case we return zero.
610 If the file is no longer eligible for mmap, its jump tables are reset to
611 the vanilla ones and we return nonzero. */
613 mmap_remap_check (_IO_FILE
*fp
)
617 if (_IO_SYSSTAT (fp
, &st
) == 0
618 && S_ISREG (st
.st_mode
) && st
.st_size
!= 0
619 /* Limit the file size to 1MB for 32-bit machines. */
620 && (sizeof (ptrdiff_t) > 4 || st
.st_size
< 1*1024*1024))
622 const size_t pagesize
= __getpagesize ();
623 # define ROUNDED(x) (((x) + pagesize - 1) & ~(pagesize - 1))
624 if (ROUNDED (st
.st_size
) < ROUNDED (fp
->_IO_buf_end
627 /* We can trim off some pages past the end of the file. */
628 (void) __munmap (fp
->_IO_buf_base
+ ROUNDED (st
.st_size
),
629 ROUNDED (fp
->_IO_buf_end
- fp
->_IO_buf_base
)
630 - ROUNDED (st
.st_size
));
631 fp
->_IO_buf_end
= fp
->_IO_buf_base
+ st
.st_size
;
633 else if (ROUNDED (st
.st_size
) > ROUNDED (fp
->_IO_buf_end
636 /* The file added some pages. We need to remap it. */
638 #if defined __linux__ /* XXX */
639 p
= __mremap (fp
->_IO_buf_base
, ROUNDED (fp
->_IO_buf_end
641 ROUNDED (st
.st_size
), MREMAP_MAYMOVE
);
644 (void) __munmap (fp
->_IO_buf_base
,
645 fp
->_IO_buf_end
- fp
->_IO_buf_base
);
649 (void) __munmap (fp
->_IO_buf_base
,
650 fp
->_IO_buf_end
- fp
->_IO_buf_base
);
652 p
= _G_MMAP64 (NULL
, st
.st_size
, PROT_READ
, MAP_SHARED
,
655 p
= __mmap (NULL
, st
.st_size
, PROT_READ
, MAP_SHARED
,
661 fp
->_IO_buf_base
= p
;
662 fp
->_IO_buf_end
= fp
->_IO_buf_base
+ st
.st_size
;
666 /* The number of pages didn't change. */
667 fp
->_IO_buf_end
= fp
->_IO_buf_base
+ st
.st_size
;
671 fp
->_offset
-= fp
->_IO_read_end
- fp
->_IO_read_ptr
;
672 _IO_setg (fp
, fp
->_IO_buf_base
,
673 fp
->_offset
< fp
->_IO_buf_end
- fp
->_IO_buf_base
674 ? fp
->_IO_buf_base
+ fp
->_offset
: fp
->_IO_buf_end
,
677 /* If we are already positioned at or past the end of the file, don't
678 change the current offset. If not, seek past what we have mapped,
679 mimicking the position left by a normal underflow reading into its
682 if (fp
->_offset
< fp
->_IO_buf_end
- fp
->_IO_buf_base
)
690 (fp
->_fileno
, fp
->_IO_buf_end
- fp
->_IO_buf_base
, SEEK_SET
)
691 != fp
->_IO_buf_end
- fp
->_IO_buf_base
)
692 fp
->_flags
|= _IO_ERR_SEEN
;
694 fp
->_offset
= fp
->_IO_buf_end
- fp
->_IO_buf_base
;
701 /* Life is no longer good for mmap. Punt it. */
702 (void) __munmap (fp
->_IO_buf_base
,
703 fp
->_IO_buf_end
- fp
->_IO_buf_base
);
705 fp
->_IO_buf_base
= fp
->_IO_buf_end
= NULL
;
706 _IO_setg (fp
, NULL
, NULL
, NULL
);
708 _IO_JUMPS ((struct _IO_FILE_plus
*) fp
) = &_IO_file_jumps
;
710 _IO_JUMPS ((struct _IO_FILE_plus
*) fp
) = &_IO_wfile_jumps
;
711 fp
->_wide_data
->_wide_vtable
= &_IO_wfile_jumps
;
717 /* Special callback replacing the underflow callbacks if we mmap the file. */
719 _IO_file_underflow_mmap (_IO_FILE
*fp
)
721 if (fp
->_IO_read_ptr
< fp
->_IO_read_end
)
722 return *(unsigned char *) fp
->_IO_read_ptr
;
724 if (__builtin_expect (mmap_remap_check (fp
), 0))
725 /* We punted to the regular file functions. */
726 return _IO_UNDERFLOW (fp
);
728 if (fp
->_IO_read_ptr
< fp
->_IO_read_end
)
729 return *(unsigned char *) fp
->_IO_read_ptr
;
731 fp
->_flags
|= _IO_EOF_SEEN
;
736 decide_maybe_mmap (_IO_FILE
*fp
)
738 /* We use the file in read-only mode. This could mean we can
739 mmap the file and use it without any copying. But not all
740 file descriptors are for mmap-able objects and on 32-bit
741 machines we don't want to map files which are too large since
742 this would require too much virtual memory. */
745 if (_IO_SYSSTAT (fp
, &st
) == 0
746 && S_ISREG (st
.st_mode
) && st
.st_size
!= 0
747 /* Limit the file size to 1MB for 32-bit machines. */
748 && (sizeof (ptrdiff_t) > 4 || st
.st_size
< 1*1024*1024)
750 && (fp
->_offset
== _IO_pos_BAD
|| fp
->_offset
<= st
.st_size
))
752 /* Try to map the file. */
756 p
= _G_MMAP64 (NULL
, st
.st_size
, PROT_READ
, MAP_SHARED
, fp
->_fileno
, 0);
758 p
= __mmap (NULL
, st
.st_size
, PROT_READ
, MAP_SHARED
, fp
->_fileno
, 0);
762 /* OK, we managed to map the file. Set the buffer up and use a
763 special jump table with simplified underflow functions which
764 never tries to read anything from the file. */
772 (fp
->_fileno
, st
.st_size
, SEEK_SET
) != st
.st_size
)
774 (void) __munmap (p
, st
.st_size
);
775 fp
->_offset
= _IO_pos_BAD
;
779 INTUSE(_IO_setb
) (fp
, p
, (char *) p
+ st
.st_size
, 0);
781 if (fp
->_offset
== _IO_pos_BAD
)
784 _IO_setg (fp
, p
, p
+ fp
->_offset
, p
+ st
.st_size
);
785 fp
->_offset
= st
.st_size
;
788 _IO_JUMPS ((struct _IO_FILE_plus
*)fp
) = &_IO_file_jumps_mmap
;
790 _IO_JUMPS ((struct _IO_FILE_plus
*)fp
) = &_IO_wfile_jumps_mmap
;
791 fp
->_wide_data
->_wide_vtable
= &_IO_wfile_jumps_mmap
;
798 /* We couldn't use mmap, so revert to the vanilla file operations. */
801 _IO_JUMPS ((struct _IO_FILE_plus
*) fp
) = &_IO_file_jumps
;
803 _IO_JUMPS ((struct _IO_FILE_plus
*) fp
) = &_IO_wfile_jumps
;
804 fp
->_wide_data
->_wide_vtable
= &_IO_wfile_jumps
;
808 _IO_file_underflow_maybe_mmap (_IO_FILE
*fp
)
810 /* This is the first read attempt. Choose mmap or vanilla operations
811 and then punt to the chosen underflow routine. */
812 decide_maybe_mmap (fp
);
813 return _IO_UNDERFLOW (fp
);
818 _IO_new_file_overflow (f
, ch
)
822 if (f
->_flags
& _IO_NO_WRITES
) /* SET ERROR */
824 f
->_flags
|= _IO_ERR_SEEN
;
828 /* If currently reading or no buffer allocated. */
829 if ((f
->_flags
& _IO_CURRENTLY_PUTTING
) == 0 || f
->_IO_write_base
== 0)
831 /* Allocate a buffer if needed. */
832 if (f
->_IO_write_base
== 0)
834 INTUSE(_IO_doallocbuf
) (f
);
835 _IO_setg (f
, f
->_IO_buf_base
, f
->_IO_buf_base
, f
->_IO_buf_base
);
837 /* Otherwise must be currently reading.
838 If _IO_read_ptr (and hence also _IO_read_end) is at the buffer end,
839 logically slide the buffer forwards one block (by setting the
840 read pointers to all point at the beginning of the block). This
841 makes room for subsequent output.
842 Otherwise, set the read pointers to _IO_read_end (leaving that
843 alone, so it can continue to correspond to the external position). */
844 if (__builtin_expect (_IO_in_backup (f
), 0))
846 size_t nbackup
= f
->_IO_read_end
- f
->_IO_read_ptr
;
847 INTUSE(_IO_free_backup_area
) (f
);
848 f
->_IO_read_base
-= MIN (nbackup
,
849 f
->_IO_read_base
- f
->_IO_buf_base
);
850 f
->_IO_read_ptr
= f
->_IO_read_base
;
853 if (f
->_IO_read_ptr
== f
->_IO_buf_end
)
854 f
->_IO_read_end
= f
->_IO_read_ptr
= f
->_IO_buf_base
;
855 f
->_IO_write_ptr
= f
->_IO_read_ptr
;
856 f
->_IO_write_base
= f
->_IO_write_ptr
;
857 f
->_IO_write_end
= f
->_IO_buf_end
;
858 f
->_IO_read_base
= f
->_IO_read_ptr
= f
->_IO_read_end
;
860 f
->_flags
|= _IO_CURRENTLY_PUTTING
;
861 if (f
->_mode
<= 0 && f
->_flags
& (_IO_LINE_BUF
+_IO_UNBUFFERED
))
862 f
->_IO_write_end
= f
->_IO_write_ptr
;
865 return INTUSE(_IO_do_write
) (f
, f
->_IO_write_base
,
866 f
->_IO_write_ptr
- f
->_IO_write_base
);
867 if (f
->_IO_write_ptr
== f
->_IO_buf_end
) /* Buffer is really full */
868 if (_IO_do_flush (f
) == EOF
)
870 *f
->_IO_write_ptr
++ = ch
;
871 if ((f
->_flags
& _IO_UNBUFFERED
)
872 || ((f
->_flags
& _IO_LINE_BUF
) && ch
== '\n'))
873 if (INTUSE(_IO_do_write
) (f
, f
->_IO_write_base
,
874 f
->_IO_write_ptr
- f
->_IO_write_base
) == EOF
)
876 return (unsigned char) ch
;
878 INTDEF2(_IO_new_file_overflow
, _IO_file_overflow
)
881 _IO_new_file_sync (fp
)
887 /* char* ptr = cur_ptr(); */
888 if (fp
->_IO_write_ptr
> fp
->_IO_write_base
)
889 if (_IO_do_flush(fp
)) return EOF
;
890 delta
= fp
->_IO_read_ptr
- fp
->_IO_read_end
;
894 if (_IO_in_backup (fp
))
895 delta
-= eGptr () - Gbase ();
897 _IO_off64_t new_pos
= _IO_SYSSEEK (fp
, delta
, 1);
898 if (new_pos
!= (_IO_off64_t
) EOF
)
899 fp
->_IO_read_end
= fp
->_IO_read_ptr
;
901 else if (errno
== ESPIPE
)
902 ; /* Ignore error from unseekable devices. */
908 fp
->_offset
= _IO_pos_BAD
;
909 /* FIXME: Cleanup - can this be shared? */
910 /* setg(base(), ptr, ptr); */
913 INTDEF2(_IO_new_file_sync
, _IO_file_sync
)
916 _IO_file_sync_mmap (_IO_FILE
*fp
)
918 if (fp
->_IO_read_ptr
!= fp
->_IO_read_end
)
921 if (_IO_in_backup (fp
))
922 delta
-= eGptr () - Gbase ();
930 (fp
->_fileno
, fp
->_IO_read_ptr
- fp
->_IO_buf_base
, SEEK_SET
)
931 != fp
->_IO_read_ptr
- fp
->_IO_buf_base
)
933 fp
->_flags
|= _IO_ERR_SEEN
;
937 fp
->_offset
= fp
->_IO_read_ptr
- fp
->_IO_buf_base
;
938 fp
->_IO_read_end
= fp
->_IO_read_ptr
= fp
->_IO_read_base
;
944 _IO_new_file_seekoff (fp
, offset
, dir
, mode
)
951 _IO_off64_t delta
, new_offset
;
953 /* POSIX.1 8.2.3.7 says that after a call the fflush() the file
954 offset of the underlying file must be exact. */
955 int must_be_exact
= (fp
->_IO_read_base
== fp
->_IO_read_end
956 && fp
->_IO_write_base
== fp
->_IO_write_ptr
);
959 dir
= _IO_seek_cur
, offset
= 0; /* Don't move any pointers. */
961 /* Flush unwritten characters.
962 (This may do an unneeded write if we seek within the buffer.
963 But to be able to switch to reading, we would need to set
964 egptr to ptr. That can't be done in the current design,
965 which assumes file_ptr() is eGptr. Anyway, since we probably
966 end up flushing when we close(), it doesn't make much difference.)
967 FIXME: simulate mem-papped files. */
969 if (fp
->_IO_write_ptr
> fp
->_IO_write_base
|| _IO_in_put_mode (fp
))
970 if (INTUSE(_IO_switch_to_get_mode
) (fp
))
973 if (fp
->_IO_buf_base
== NULL
)
975 /* It could be that we already have a pushback buffer. */
976 if (fp
->_IO_read_base
!= NULL
)
978 free (fp
->_IO_read_base
);
979 fp
->_flags
&= ~_IO_IN_BACKUP
;
981 INTUSE(_IO_doallocbuf
) (fp
);
982 _IO_setp (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
983 _IO_setg (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
989 /* Adjust for read-ahead (bytes is buffer). */
990 offset
-= fp
->_IO_read_end
- fp
->_IO_read_ptr
;
991 if (fp
->_offset
== _IO_pos_BAD
)
993 /* Make offset absolute, assuming current pointer is file_ptr(). */
994 offset
+= fp
->_offset
;
997 __set_errno (EINVAL
);
1007 struct _G_stat64 st
;
1008 if (_IO_SYSSTAT (fp
, &st
) == 0 && S_ISREG (st
.st_mode
))
1010 offset
+= st
.st_size
;
1017 /* At this point, dir==_IO_seek_set. */
1019 /* If we are only interested in the current position we've found it now. */
1023 /* If destination is within current buffer, optimize: */
1024 if (fp
->_offset
!= _IO_pos_BAD
&& fp
->_IO_read_base
!= NULL
1025 && !_IO_in_backup (fp
))
1027 /* Offset relative to start of main get area. */
1028 _IO_off64_t rel_offset
= (offset
- fp
->_offset
1029 + (fp
->_IO_read_end
- fp
->_IO_read_base
));
1030 if (rel_offset
>= 0)
1033 if (_IO_in_backup (fp
))
1034 _IO_switch_to_main_get_area (fp
);
1036 if (rel_offset
<= fp
->_IO_read_end
- fp
->_IO_read_base
)
1038 _IO_setg (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
+ rel_offset
,
1040 _IO_setp (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
1042 _IO_mask_flags (fp
, 0, _IO_EOF_SEEN
);
1047 /* If we have streammarkers, seek forward by reading ahead. */
1048 if (_IO_have_markers (fp
))
1050 int to_skip
= rel_offset
1051 - (fp
->_IO_read_ptr
- fp
->_IO_read_base
);
1052 if (ignore (to_skip
) != to_skip
)
1054 _IO_mask_flags (fp
, 0, _IO_EOF_SEEN
);
1060 if (rel_offset
< 0 && rel_offset
>= Bbase () - Bptr ())
1062 if (!_IO_in_backup (fp
))
1063 _IO_switch_to_backup_area (fp
);
1064 gbump (fp
->_IO_read_end
+ rel_offset
- fp
->_IO_read_ptr
);
1065 _IO_mask_flags (fp
, 0, _IO_EOF_SEEN
);
1072 INTUSE(_IO_unsave_markers
) (fp
);
1075 if (fp
->_flags
& _IO_NO_READS
)
1078 /* Try to seek to a block boundary, to improve kernel page management. */
1079 new_offset
= offset
& ~(fp
->_IO_buf_end
- fp
->_IO_buf_base
- 1);
1080 delta
= offset
- new_offset
;
1081 if (delta
> fp
->_IO_buf_end
- fp
->_IO_buf_base
)
1083 new_offset
= offset
;
1086 result
= _IO_SYSSEEK (fp
, new_offset
, 0);
1093 count
= _IO_SYSREAD (fp
, fp
->_IO_buf_base
,
1095 ? delta
: fp
->_IO_buf_end
- fp
->_IO_buf_base
));
1098 /* We weren't allowed to read, but try to seek the remainder. */
1099 offset
= count
== EOF
? delta
: delta
-count
;
1104 _IO_setg (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
+ delta
,
1105 fp
->_IO_buf_base
+ count
);
1106 _IO_setp (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
1107 fp
->_offset
= result
+ count
;
1108 _IO_mask_flags (fp
, 0, _IO_EOF_SEEN
);
1112 INTUSE(_IO_unsave_markers
) (fp
);
1113 result
= _IO_SYSSEEK (fp
, offset
, dir
);
1116 _IO_mask_flags (fp
, 0, _IO_EOF_SEEN
);
1117 fp
->_offset
= result
;
1118 _IO_setg (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
1119 _IO_setp (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
1124 /* We need to do it since it is possible that the file offset in
1125 the kernel may be changed behind our back. It may happen when
1126 we fopen a file and then do a fork. One process may access the
1127 the file and the kernel file offset will be changed. */
1128 if (fp
->_offset
>= 0)
1129 _IO_SYSSEEK (fp
, fp
->_offset
, 0);
1133 INTDEF2(_IO_new_file_seekoff
, _IO_file_seekoff
)
1136 _IO_file_seekoff_mmap (fp
, offset
, dir
, mode
)
1144 /* If we are only interested in the current position, calculate it and
1145 return right now. This calculation does the right thing when we are
1146 using a pushback buffer, but in the usual case has the same value as
1147 (fp->_IO_read_ptr - fp->_IO_buf_base). */
1149 return fp
->_offset
- (fp
->_IO_read_end
- fp
->_IO_read_ptr
);
1154 /* Adjust for read-ahead (bytes is buffer). */
1155 offset
+= fp
->_IO_read_ptr
- fp
->_IO_read_base
;
1160 offset
+= fp
->_IO_buf_end
- fp
->_IO_buf_base
;
1163 /* At this point, dir==_IO_seek_set. */
1167 /* No negative offsets are valid. */
1168 __set_errno (EINVAL
);
1172 result
= _IO_SYSSEEK (fp
, offset
, 0);
1176 if (offset
> fp
->_IO_buf_end
- fp
->_IO_buf_base
)
1177 /* One can fseek arbitrarily past the end of the file
1178 and it is meaningless until one attempts to read.
1179 Leave the buffer pointers in EOF state until underflow. */
1180 _IO_setg (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_end
, fp
->_IO_buf_end
);
1182 /* Adjust the read pointers to match the file position,
1183 but so the next read attempt will call underflow. */
1184 _IO_setg (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
+ offset
,
1185 fp
->_IO_buf_base
+ offset
);
1187 fp
->_offset
= result
;
1189 _IO_mask_flags (fp
, 0, _IO_EOF_SEEN
);
1195 _IO_file_seekoff_maybe_mmap (_IO_FILE
*fp
, _IO_off64_t offset
, int dir
,
1198 /* We only get here when we haven't tried to read anything yet.
1199 So there is nothing more useful for us to do here than just
1200 the underlying lseek call. */
1202 _IO_off64_t result
= _IO_SYSSEEK (fp
, offset
, dir
);
1206 fp
->_offset
= result
;
1211 _IO_file_read (fp
, buf
, size
)
1216 return (__builtin_expect (fp
->_flags2
& _IO_FLAGS2_NOTCANCEL
, 0)
1217 ? read_not_cancel (fp
->_fileno
, buf
, size
)
1218 : read (fp
->_fileno
, buf
, size
));
1220 INTDEF(_IO_file_read
)
1223 _IO_file_seek (fp
, offset
, dir
)
1229 return _G_LSEEK64 (fp
->_fileno
, offset
, dir
);
1231 return lseek (fp
->_fileno
, offset
, dir
);
1234 INTDEF(_IO_file_seek
)
1237 _IO_file_stat (fp
, st
)
1242 return _G_FSTAT64 (fp
->_fileno
, (struct _G_stat64
*) st
);
1244 return fstat (fp
->_fileno
, (struct stat
*) st
);
1247 INTDEF(_IO_file_stat
)
1250 _IO_file_close_mmap (fp
)
1253 /* In addition to closing the file descriptor we have to unmap the file. */
1254 (void) __munmap (fp
->_IO_buf_base
, fp
->_IO_buf_end
- fp
->_IO_buf_base
);
1255 fp
->_IO_buf_base
= fp
->_IO_buf_end
= NULL
;
1256 /* Cancelling close should be avoided if possible since it leaves an
1257 unrecoverable state behind. */
1258 return close_not_cancel (fp
->_fileno
);
1265 /* Cancelling close should be avoided if possible since it leaves an
1266 unrecoverable state behind. */
1267 return close_not_cancel (fp
->_fileno
);
1269 INTDEF(_IO_file_close
)
1272 _IO_new_file_write (f
, data
, n
)
1277 _IO_ssize_t to_do
= n
;
1280 _IO_ssize_t count
= (__builtin_expect (f
->_flags2
1281 & _IO_FLAGS2_NOTCANCEL
, 0)
1282 ? write_not_cancel (f
->_fileno
, data
, to_do
)
1283 : write (f
->_fileno
, data
, to_do
));
1286 f
->_flags
|= _IO_ERR_SEEN
;
1290 data
= (void *) ((char *) data
+ count
);
1293 if (f
->_offset
>= 0)
1299 _IO_new_file_xsputn (f
, data
, n
)
1304 register const char *s
= (const char *) data
;
1305 _IO_size_t to_do
= n
;
1311 /* This is an optimized implementation.
1312 If the amount to be written straddles a block boundary
1313 (or the filebuf is unbuffered), use sys_write directly. */
1315 /* First figure out how much space is available in the buffer. */
1316 count
= f
->_IO_write_end
- f
->_IO_write_ptr
; /* Space available. */
1317 if ((f
->_flags
& _IO_LINE_BUF
) && (f
->_flags
& _IO_CURRENTLY_PUTTING
))
1319 count
= f
->_IO_buf_end
- f
->_IO_write_ptr
;
1322 register const char *p
;
1323 for (p
= s
+ n
; p
> s
; )
1334 /* Then fill the buffer. */
1342 f
->_IO_write_ptr
= __mempcpy (f
->_IO_write_ptr
, s
, count
);
1344 memcpy (f
->_IO_write_ptr
, s
, count
);
1345 f
->_IO_write_ptr
+= count
;
1351 register char *p
= f
->_IO_write_ptr
;
1352 register int i
= (int) count
;
1355 f
->_IO_write_ptr
= p
;
1359 if (to_do
+ must_flush
> 0)
1361 _IO_size_t block_size
, do_write
;
1362 /* Next flush the (full) buffer. */
1363 if (_IO_OVERFLOW (f
, EOF
) == EOF
)
1366 /* Try to maintain alignment: write a whole number of blocks.
1367 dont_write is what gets left over. */
1368 block_size
= f
->_IO_buf_end
- f
->_IO_buf_base
;
1369 do_write
= to_do
- (block_size
>= 128 ? to_do
% block_size
: 0);
1373 count
= new_do_write (f
, s
, do_write
);
1375 if (count
< do_write
)
1379 /* Now write out the remainder. Normally, this will fit in the
1380 buffer, but it's somewhat messier for line-buffered files,
1381 so we let _IO_default_xsputn handle the general case. */
1383 to_do
-= INTUSE(_IO_default_xsputn
) (f
, s
+do_write
, to_do
);
1387 INTDEF2(_IO_new_file_xsputn
, _IO_file_xsputn
)
1390 _IO_file_xsgetn (fp
, data
, n
)
1395 register _IO_size_t want
, have
;
1396 register _IO_ssize_t count
;
1397 register char *s
= data
;
1401 if (fp
->_IO_buf_base
== NULL
)
1403 /* Maybe we already have a push back pointer. */
1404 if (fp
->_IO_save_base
!= NULL
)
1406 free (fp
->_IO_save_base
);
1407 fp
->_flags
&= ~_IO_IN_BACKUP
;
1409 INTUSE(_IO_doallocbuf
) (fp
);
1414 have
= fp
->_IO_read_end
- fp
->_IO_read_ptr
;
1417 memcpy (s
, fp
->_IO_read_ptr
, want
);
1418 fp
->_IO_read_ptr
+= want
;
1426 s
= __mempcpy (s
, fp
->_IO_read_ptr
, have
);
1428 memcpy (s
, fp
->_IO_read_ptr
, have
);
1432 fp
->_IO_read_ptr
+= have
;
1435 /* Check for backup and repeat */
1436 if (_IO_in_backup (fp
))
1438 _IO_switch_to_main_get_area (fp
);
1442 /* If we now want less than a buffer, underflow and repeat
1443 the copy. Otherwise, _IO_SYSREAD directly to
1445 if (fp
->_IO_buf_base
1446 && want
< (size_t) (fp
->_IO_buf_end
- fp
->_IO_buf_base
))
1448 if (__underflow (fp
) == EOF
)
1454 /* These must be set before the sysread as we might longjmp out
1455 waiting for input. */
1456 _IO_setg (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
1457 _IO_setp (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
1459 /* Try to maintain alignment: read a whole number of blocks. */
1461 if (fp
->_IO_buf_base
)
1463 _IO_size_t block_size
= fp
->_IO_buf_end
- fp
->_IO_buf_base
;
1464 if (block_size
>= 128)
1465 count
-= want
% block_size
;
1468 count
= _IO_SYSREAD (fp
, s
, count
);
1472 fp
->_flags
|= _IO_EOF_SEEN
;
1474 fp
->_flags
|= _IO_ERR_SEEN
;
1481 if (fp
->_offset
!= _IO_pos_BAD
)
1482 _IO_pos_adjust (fp
->_offset
, count
);
1488 INTDEF(_IO_file_xsgetn
)
1490 static _IO_size_t _IO_file_xsgetn_mmap
__P ((_IO_FILE
*, void *, _IO_size_t
));
1492 _IO_file_xsgetn_mmap (fp
, data
, n
)
1497 register _IO_size_t have
;
1498 char *read_ptr
= fp
->_IO_read_ptr
;
1499 register char *s
= (char *) data
;
1501 have
= fp
->_IO_read_end
- fp
->_IO_read_ptr
;
1505 if (__builtin_expect (_IO_in_backup (fp
), 0))
1508 s
= __mempcpy (s
, read_ptr
, have
);
1510 memcpy (s
, read_ptr
, have
);
1514 _IO_switch_to_main_get_area (fp
);
1515 read_ptr
= fp
->_IO_read_ptr
;
1516 have
= fp
->_IO_read_end
- fp
->_IO_read_ptr
;
1521 /* Check that we are mapping all of the file, in case it grew. */
1522 if (__builtin_expect (mmap_remap_check (fp
), 0))
1523 /* We punted mmap, so complete with the vanilla code. */
1524 return s
- (char *) data
+ _IO_XSGETN (fp
, data
, n
);
1526 read_ptr
= fp
->_IO_read_ptr
;
1527 have
= fp
->_IO_read_end
- read_ptr
;
1532 fp
->_flags
|= _IO_EOF_SEEN
;
1536 have
= MIN (have
, n
);
1538 s
= __mempcpy (s
, read_ptr
, have
);
1540 memcpy (s
, read_ptr
, have
);
1543 fp
->_IO_read_ptr
= read_ptr
+ have
;
1546 return s
- (char *) data
;
1549 static _IO_size_t _IO_file_xsgetn_maybe_mmap
__P ((_IO_FILE
*, void *,
1552 _IO_file_xsgetn_maybe_mmap (fp
, data
, n
)
1557 /* We only get here if this is the first attempt to read something.
1558 Decide which operations to use and then punt to the chosen one. */
1560 decide_maybe_mmap (fp
);
1561 return _IO_XSGETN (fp
, data
, n
);
1565 # undef _IO_do_write
1566 # undef _IO_file_close_it
1567 versioned_symbol (libc
, _IO_new_do_write
, _IO_do_write
, GLIBC_2_1
);
1568 versioned_symbol (libc
, _IO_new_file_attach
, _IO_file_attach
, GLIBC_2_1
);
1569 versioned_symbol (libc
, _IO_new_file_close_it
, _IO_file_close_it
, GLIBC_2_1
);
1570 versioned_symbol (libc
, _IO_new_file_finish
, _IO_file_finish
, GLIBC_2_1
);
1571 versioned_symbol (libc
, _IO_new_file_fopen
, _IO_file_fopen
, GLIBC_2_1
);
1572 versioned_symbol (libc
, _IO_new_file_init
, _IO_file_init
, GLIBC_2_1
);
1573 versioned_symbol (libc
, _IO_new_file_setbuf
, _IO_file_setbuf
, GLIBC_2_1
);
1574 versioned_symbol (libc
, _IO_new_file_sync
, _IO_file_sync
, GLIBC_2_1
);
1575 versioned_symbol (libc
, _IO_new_file_overflow
, _IO_file_overflow
, GLIBC_2_1
);
1576 versioned_symbol (libc
, _IO_new_file_seekoff
, _IO_file_seekoff
, GLIBC_2_1
);
1577 versioned_symbol (libc
, _IO_new_file_underflow
, _IO_file_underflow
, GLIBC_2_1
);
1578 versioned_symbol (libc
, _IO_new_file_write
, _IO_file_write
, GLIBC_2_1
);
1579 versioned_symbol (libc
, _IO_new_file_xsputn
, _IO_file_xsputn
, GLIBC_2_1
);
1582 const struct _IO_jump_t _IO_file_jumps
=
1585 JUMP_INIT(finish
, INTUSE(_IO_file_finish
)),
1586 JUMP_INIT(overflow
, INTUSE(_IO_file_overflow
)),
1587 JUMP_INIT(underflow
, INTUSE(_IO_file_underflow
)),
1588 JUMP_INIT(uflow
, INTUSE(_IO_default_uflow
)),
1589 JUMP_INIT(pbackfail
, INTUSE(_IO_default_pbackfail
)),
1590 JUMP_INIT(xsputn
, INTUSE(_IO_file_xsputn
)),
1591 JUMP_INIT(xsgetn
, INTUSE(_IO_file_xsgetn
)),
1592 JUMP_INIT(seekoff
, _IO_new_file_seekoff
),
1593 JUMP_INIT(seekpos
, _IO_default_seekpos
),
1594 JUMP_INIT(setbuf
, _IO_new_file_setbuf
),
1595 JUMP_INIT(sync
, _IO_new_file_sync
),
1596 JUMP_INIT(doallocate
, INTUSE(_IO_file_doallocate
)),
1597 JUMP_INIT(read
, INTUSE(_IO_file_read
)),
1598 JUMP_INIT(write
, _IO_new_file_write
),
1599 JUMP_INIT(seek
, INTUSE(_IO_file_seek
)),
1600 JUMP_INIT(close
, INTUSE(_IO_file_close
)),
1601 JUMP_INIT(stat
, INTUSE(_IO_file_stat
)),
1602 JUMP_INIT(showmanyc
, _IO_default_showmanyc
),
1603 JUMP_INIT(imbue
, _IO_default_imbue
)
1605 libc_hidden_data_def (_IO_file_jumps
)
1607 const struct _IO_jump_t _IO_file_jumps_mmap
=
1610 JUMP_INIT(finish
, INTUSE(_IO_file_finish
)),
1611 JUMP_INIT(overflow
, INTUSE(_IO_file_overflow
)),
1612 JUMP_INIT(underflow
, _IO_file_underflow_mmap
),
1613 JUMP_INIT(uflow
, INTUSE(_IO_default_uflow
)),
1614 JUMP_INIT(pbackfail
, INTUSE(_IO_default_pbackfail
)),
1615 JUMP_INIT(xsputn
, _IO_new_file_xsputn
),
1616 JUMP_INIT(xsgetn
, _IO_file_xsgetn_mmap
),
1617 JUMP_INIT(seekoff
, _IO_file_seekoff_mmap
),
1618 JUMP_INIT(seekpos
, _IO_default_seekpos
),
1619 JUMP_INIT(setbuf
, (_IO_setbuf_t
) _IO_file_setbuf_mmap
),
1620 JUMP_INIT(sync
, _IO_file_sync_mmap
),
1621 JUMP_INIT(doallocate
, INTUSE(_IO_file_doallocate
)),
1622 JUMP_INIT(read
, INTUSE(_IO_file_read
)),
1623 JUMP_INIT(write
, _IO_new_file_write
),
1624 JUMP_INIT(seek
, INTUSE(_IO_file_seek
)),
1625 JUMP_INIT(close
, _IO_file_close_mmap
),
1626 JUMP_INIT(stat
, INTUSE(_IO_file_stat
)),
1627 JUMP_INIT(showmanyc
, _IO_default_showmanyc
),
1628 JUMP_INIT(imbue
, _IO_default_imbue
)
1631 const struct _IO_jump_t _IO_file_jumps_maybe_mmap
=
1634 JUMP_INIT(finish
, INTUSE(_IO_file_finish
)),
1635 JUMP_INIT(overflow
, INTUSE(_IO_file_overflow
)),
1636 JUMP_INIT(underflow
, _IO_file_underflow_maybe_mmap
),
1637 JUMP_INIT(uflow
, INTUSE(_IO_default_uflow
)),
1638 JUMP_INIT(pbackfail
, INTUSE(_IO_default_pbackfail
)),
1639 JUMP_INIT(xsputn
, _IO_new_file_xsputn
),
1640 JUMP_INIT(xsgetn
, _IO_file_xsgetn_maybe_mmap
),
1641 JUMP_INIT(seekoff
, _IO_file_seekoff_maybe_mmap
),
1642 JUMP_INIT(seekpos
, _IO_default_seekpos
),
1643 JUMP_INIT(setbuf
, (_IO_setbuf_t
) _IO_file_setbuf_mmap
),
1644 JUMP_INIT(sync
, _IO_new_file_sync
),
1645 JUMP_INIT(doallocate
, INTUSE(_IO_file_doallocate
)),
1646 JUMP_INIT(read
, INTUSE(_IO_file_read
)),
1647 JUMP_INIT(write
, _IO_new_file_write
),
1648 JUMP_INIT(seek
, INTUSE(_IO_file_seek
)),
1649 JUMP_INIT(close
, _IO_file_close
),
1650 JUMP_INIT(stat
, INTUSE(_IO_file_stat
)),
1651 JUMP_INIT(showmanyc
, _IO_default_showmanyc
),
1652 JUMP_INIT(imbue
, _IO_default_imbue
)