2.9
[glibc/nacl-glibc.git] / libio / fileops.c
blobcf47c915a7e77ee795d3a0228bbee97e5f4a7d5b
1 /* Copyright (C) 1993, 1995, 1997-2005, 2006, 2007, 2008
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
19 02111-1307 USA.
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. */
31 #ifndef _POSIX_SOURCE
32 # define _POSIX_SOURCE
33 #endif
34 #include "libioP.h"
35 #include <assert.h>
36 #include <fcntl.h>
37 #include <sys/param.h>
38 #include <sys/types.h>
39 #include <sys/stat.h>
40 #include <string.h>
41 #include <errno.h>
42 #include <unistd.h>
43 #ifdef __STDC__
44 #include <stdlib.h>
45 #endif
46 #if _LIBC
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>
52 #endif
53 #ifndef errno
54 extern int errno;
55 #endif
56 #ifndef __set_errno
57 # define __set_errno(Val) errno = (Val)
58 #endif
61 #ifdef _LIBC
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
68 #else
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
82 #endif
85 #ifdef _LIBC
86 extern struct __gconv_trans_data __libio_translit attribute_hidden;
87 #endif
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(). (?)
103 PUT MODE:
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.
113 GET MODE:
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().
118 PUTBACK MODE:
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.
136 UNBUFFERED STREAMS:
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)
144 void
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)
161 _IO_FILE *fp;
163 int write_status, close_status;
164 if (!_IO_file_is_open (fp))
165 return EOF;
167 if ((fp->_flags & _IO_NO_WRITES) == 0
168 && (fp->_flags & _IO_CURRENTLY_PUTTING) != 0)
169 write_status = _IO_do_flush (fp);
170 else
171 write_status = 0;
173 INTUSE(_IO_unsave_markers) (fp);
175 close_status = _IO_SYSCLOSE (fp);
177 /* Free buffer. */
178 #if defined _LIBC || defined _GLIBCPP_USE_WCHAR_T
179 if (fp->_mode > 0)
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);
187 #endif
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;
194 fp->_fileno = -1;
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)
201 void
202 _IO_new_file_finish (fp, dummy)
203 _IO_FILE *fp;
204 int dummy;
206 if (_IO_file_is_open (fp))
208 _IO_do_flush (fp);
209 if (!(fp->_flags & _IO_DELETE_DONT_CLOSE))
210 _IO_SYSCLOSE (fp);
212 INTUSE(_IO_default_finish) (fp, 0);
214 INTDEF2(_IO_new_file_finish, _IO_file_finish)
216 _IO_FILE *
217 _IO_file_open (fp, filename, posix_mode, prot, read_write, is32not64)
218 _IO_FILE *fp;
219 const char *filename;
220 int posix_mode;
221 int prot;
222 int read_write;
223 int is32not64;
225 int fdesc;
226 #ifdef _LIBC
227 if (__builtin_expect (fp->_flags2 & _IO_FLAGS2_NOTCANCEL, 0))
228 fdesc = open_not_cancel (filename,
229 posix_mode | (is32not64 ? 0 : O_LARGEFILE), prot);
230 else
231 fdesc = open (filename, posix_mode | (is32not64 ? 0 : O_LARGEFILE), prot);
232 #else
233 fdesc = open (filename, posix_mode, prot);
234 #endif
235 if (fdesc < 0)
236 return NULL;
237 fp->_fileno = fdesc;
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);
244 return NULL;
246 INTUSE(_IO_link_in) ((struct _IO_FILE_plus *) fp);
247 return fp;
249 libc_hidden_def (_IO_file_open)
251 _IO_FILE *
252 _IO_new_file_fopen (fp, filename, mode, is32not64)
253 _IO_FILE *fp;
254 const char *filename;
255 const char *mode;
256 int is32not64;
258 int oflags = 0, omode;
259 int read_write;
260 int oprot = 0666;
261 int i;
262 _IO_FILE *result;
263 #ifdef _LIBC
264 const char *cs;
265 const char *last_recognized;
266 #endif
268 if (_IO_file_is_open (fp))
269 return 0;
270 switch (*mode)
272 case 'r':
273 omode = O_RDONLY;
274 read_write = _IO_NO_WRITES;
275 break;
276 case 'w':
277 omode = O_WRONLY;
278 oflags = O_CREAT|O_TRUNC;
279 read_write = _IO_NO_READS;
280 break;
281 case 'a':
282 omode = O_WRONLY;
283 oflags = O_CREAT|O_APPEND;
284 read_write = _IO_NO_READS|_IO_IS_APPENDING;
285 break;
286 default:
287 __set_errno (EINVAL);
288 return NULL;
290 #ifdef _LIBC
291 last_recognized = mode;
292 #endif
293 for (i = 1; i < 6; ++i)
295 switch (*++mode)
297 case '\0':
298 break;
299 case '+':
300 omode = O_RDWR;
301 read_write &= _IO_IS_APPENDING;
302 #ifdef _LIBC
303 last_recognized = mode;
304 #endif
305 continue;
306 case 'x':
307 oflags |= O_EXCL;
308 #ifdef _LIBC
309 last_recognized = mode;
310 #endif
311 continue;
312 case 'b':
313 #ifdef _LIBC
314 last_recognized = mode;
315 #endif
316 continue;
317 case 'm':
318 fp->_flags2 |= _IO_FLAGS2_MMAP;
319 continue;
320 case 'c':
321 fp->_flags2 |= _IO_FLAGS2_NOTCANCEL;
322 break;
323 #ifdef O_CLOEXEC
324 case 'e':
325 oflags |= O_CLOEXEC;
326 break;
327 #endif
328 default:
329 /* Ignore. */
330 continue;
332 break;
335 result = _IO_file_open (fp, filename, omode|oflags, oprot, read_write,
336 is32not64);
339 #ifdef _LIBC
340 if (result != NULL)
342 /* Test whether the mode string specifies the conversion. */
343 cs = strstr (last_recognized + 1, ",ccs=");
344 if (cs != NULL)
346 /* Yep. Load the appropriate conversions and set the orientation
347 to wide. */
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';
354 strip (ccs, ccs);
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
361 for these. */
362 (void) INTUSE(_IO_file_close_it) (fp);
363 __set_errno (EINVAL);
364 return NULL;
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. */
409 result->_mode = 1;
412 #endif /* GNU libc */
414 return result;
416 INTDEF2(_IO_new_file_fopen, _IO_file_fopen)
418 _IO_FILE *
419 _IO_new_file_attach (fp, fd)
420 _IO_FILE *fp;
421 int fd;
423 if (_IO_file_is_open (fp))
424 return NULL;
425 fp->_fileno = fd;
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 int save_errno = errno;
432 if (_IO_SEEKOFF (fp, (_IO_off64_t)0, _IO_seek_cur, _IOS_INPUT|_IOS_OUTPUT)
433 == _IO_pos_BAD && errno != ESPIPE)
434 return NULL;
435 __set_errno (save_errno);
436 return fp;
438 INTDEF2(_IO_new_file_attach, _IO_file_attach)
440 _IO_FILE *
441 _IO_new_file_setbuf (fp, p, len)
442 _IO_FILE *fp;
443 char *p;
444 _IO_ssize_t len;
446 if (_IO_default_setbuf (fp, p, len) == NULL)
447 return NULL;
449 fp->_IO_write_base = fp->_IO_write_ptr = fp->_IO_write_end
450 = fp->_IO_buf_base;
451 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
453 return fp;
455 INTDEF2(_IO_new_file_setbuf, _IO_file_setbuf)
458 _IO_FILE *
459 _IO_file_setbuf_mmap (fp, p, len)
460 _IO_FILE *fp;
461 char *p;
462 _IO_ssize_t len;
464 _IO_FILE *result;
466 /* Change the function table. */
467 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &_IO_file_jumps;
468 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps;
470 /* And perform the normal operation. */
471 result = _IO_new_file_setbuf (fp, p, len);
473 /* If the call failed, restore to using mmap. */
474 if (result == NULL)
476 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &_IO_file_jumps_mmap;
477 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps_mmap;
480 return result;
483 static _IO_size_t new_do_write (_IO_FILE *, const char *, _IO_size_t);
485 /* Write TO_DO bytes from DATA to FP.
486 Then mark FP as having empty buffers. */
489 _IO_new_do_write (fp, data, to_do)
490 _IO_FILE *fp;
491 const char *data;
492 _IO_size_t to_do;
494 return (to_do == 0
495 || (_IO_size_t) new_do_write (fp, data, to_do) == to_do) ? 0 : EOF;
497 INTDEF2(_IO_new_do_write, _IO_do_write)
499 static
500 _IO_size_t
501 new_do_write (fp, data, to_do)
502 _IO_FILE *fp;
503 const char *data;
504 _IO_size_t to_do;
506 _IO_size_t count;
507 if (fp->_flags & _IO_IS_APPENDING)
508 /* On a system without a proper O_APPEND implementation,
509 you would need to sys_seek(0, SEEK_END) here, but is
510 is not needed nor desirable for Unix- or Posix-like systems.
511 Instead, just indicate that offset (before and after) is
512 unpredictable. */
513 fp->_offset = _IO_pos_BAD;
514 else if (fp->_IO_read_end != fp->_IO_write_base)
516 _IO_off64_t new_pos
517 = _IO_SYSSEEK (fp, fp->_IO_write_base - fp->_IO_read_end, 1);
518 if (new_pos == _IO_pos_BAD)
519 return 0;
520 fp->_offset = new_pos;
522 count = _IO_SYSWRITE (fp, data, to_do);
523 if (fp->_cur_column && count)
524 fp->_cur_column = INTUSE(_IO_adjust_column) (fp->_cur_column - 1, data,
525 count) + 1;
526 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
527 fp->_IO_write_base = fp->_IO_write_ptr = fp->_IO_buf_base;
528 fp->_IO_write_end = (fp->_mode <= 0
529 && (fp->_flags & (_IO_LINE_BUF+_IO_UNBUFFERED))
530 ? fp->_IO_buf_base : fp->_IO_buf_end);
531 return count;
535 _IO_new_file_underflow (fp)
536 _IO_FILE *fp;
538 _IO_ssize_t count;
539 #if 0
540 /* SysV does not make this test; take it out for compatibility */
541 if (fp->_flags & _IO_EOF_SEEN)
542 return (EOF);
543 #endif
545 if (fp->_flags & _IO_NO_READS)
547 fp->_flags |= _IO_ERR_SEEN;
548 __set_errno (EBADF);
549 return EOF;
551 if (fp->_IO_read_ptr < fp->_IO_read_end)
552 return *(unsigned char *) fp->_IO_read_ptr;
554 if (fp->_IO_buf_base == NULL)
556 /* Maybe we already have a push back pointer. */
557 if (fp->_IO_save_base != NULL)
559 free (fp->_IO_save_base);
560 fp->_flags &= ~_IO_IN_BACKUP;
562 INTUSE(_IO_doallocbuf) (fp);
565 /* Flush all line buffered files before reading. */
566 /* FIXME This can/should be moved to genops ?? */
567 if (fp->_flags & (_IO_LINE_BUF|_IO_UNBUFFERED))
569 #if 0
570 INTUSE(_IO_flush_all_linebuffered) ();
571 #else
572 /* We used to flush all line-buffered stream. This really isn't
573 required by any standard. My recollection is that
574 traditional Unix systems did this for stdout. stderr better
575 not be line buffered. So we do just that here
576 explicitly. --drepper */
577 _IO_acquire_lock (_IO_stdout);
579 if ((_IO_stdout->_flags & (_IO_LINKED | _IO_NO_WRITES | _IO_LINE_BUF))
580 == (_IO_LINKED | _IO_LINE_BUF))
581 _IO_OVERFLOW (_IO_stdout, EOF);
583 _IO_release_lock (_IO_stdout);
584 #endif
587 INTUSE(_IO_switch_to_get_mode) (fp);
589 /* This is very tricky. We have to adjust those
590 pointers before we call _IO_SYSREAD () since
591 we may longjump () out while waiting for
592 input. Those pointers may be screwed up. H.J. */
593 fp->_IO_read_base = fp->_IO_read_ptr = fp->_IO_buf_base;
594 fp->_IO_read_end = fp->_IO_buf_base;
595 fp->_IO_write_base = fp->_IO_write_ptr = fp->_IO_write_end
596 = fp->_IO_buf_base;
598 count = _IO_SYSREAD (fp, fp->_IO_buf_base,
599 fp->_IO_buf_end - fp->_IO_buf_base);
600 if (count <= 0)
602 if (count == 0)
603 fp->_flags |= _IO_EOF_SEEN;
604 else
605 fp->_flags |= _IO_ERR_SEEN, count = 0;
607 fp->_IO_read_end += count;
608 if (count == 0)
609 return EOF;
610 if (fp->_offset != _IO_pos_BAD)
611 _IO_pos_adjust (fp->_offset, count);
612 return *(unsigned char *) fp->_IO_read_ptr;
614 INTDEF2(_IO_new_file_underflow, _IO_file_underflow)
616 /* Guts of underflow callback if we mmap the file. This stats the file and
617 updates the stream state to match. In the normal case we return zero.
618 If the file is no longer eligible for mmap, its jump tables are reset to
619 the vanilla ones and we return nonzero. */
620 static int
621 mmap_remap_check (_IO_FILE *fp)
623 struct _G_stat64 st;
625 if (_IO_SYSSTAT (fp, &st) == 0
626 && S_ISREG (st.st_mode) && st.st_size != 0
627 /* Limit the file size to 1MB for 32-bit machines. */
628 && (sizeof (ptrdiff_t) > 4 || st.st_size < 1*1024*1024))
630 const size_t pagesize = __getpagesize ();
631 # define ROUNDED(x) (((x) + pagesize - 1) & ~(pagesize - 1))
632 if (ROUNDED (st.st_size) < ROUNDED (fp->_IO_buf_end
633 - fp->_IO_buf_base))
635 /* We can trim off some pages past the end of the file. */
636 (void) __munmap (fp->_IO_buf_base + ROUNDED (st.st_size),
637 ROUNDED (fp->_IO_buf_end - fp->_IO_buf_base)
638 - ROUNDED (st.st_size));
639 fp->_IO_buf_end = fp->_IO_buf_base + st.st_size;
641 else if (ROUNDED (st.st_size) > ROUNDED (fp->_IO_buf_end
642 - fp->_IO_buf_base))
644 /* The file added some pages. We need to remap it. */
645 void *p;
646 #ifdef _G_HAVE_MREMAP
647 p = __mremap (fp->_IO_buf_base, ROUNDED (fp->_IO_buf_end
648 - fp->_IO_buf_base),
649 ROUNDED (st.st_size), MREMAP_MAYMOVE);
650 if (p == MAP_FAILED)
652 (void) __munmap (fp->_IO_buf_base,
653 fp->_IO_buf_end - fp->_IO_buf_base);
654 goto punt;
656 #else
657 (void) __munmap (fp->_IO_buf_base,
658 fp->_IO_buf_end - fp->_IO_buf_base);
659 # ifdef _G_MMAP64
660 p = _G_MMAP64 (NULL, st.st_size, PROT_READ, MAP_SHARED,
661 fp->_fileno, 0);
662 # else
663 p = __mmap (NULL, st.st_size, PROT_READ, MAP_SHARED,
664 fp->_fileno, 0);
665 # endif
666 if (p == MAP_FAILED)
667 goto punt;
668 #endif
669 fp->_IO_buf_base = p;
670 fp->_IO_buf_end = fp->_IO_buf_base + st.st_size;
672 else
674 /* The number of pages didn't change. */
675 fp->_IO_buf_end = fp->_IO_buf_base + st.st_size;
677 # undef ROUNDED
679 fp->_offset -= fp->_IO_read_end - fp->_IO_read_ptr;
680 _IO_setg (fp, fp->_IO_buf_base,
681 fp->_offset < fp->_IO_buf_end - fp->_IO_buf_base
682 ? fp->_IO_buf_base + fp->_offset : fp->_IO_buf_end,
683 fp->_IO_buf_end);
685 /* If we are already positioned at or past the end of the file, don't
686 change the current offset. If not, seek past what we have mapped,
687 mimicking the position left by a normal underflow reading into its
688 buffer until EOF. */
690 if (fp->_offset < fp->_IO_buf_end - fp->_IO_buf_base)
692 if (
693 # ifdef _G_LSEEK64
694 _G_LSEEK64
695 # else
696 __lseek
697 # endif
698 (fp->_fileno, fp->_IO_buf_end - fp->_IO_buf_base, SEEK_SET)
699 != fp->_IO_buf_end - fp->_IO_buf_base)
700 fp->_flags |= _IO_ERR_SEEN;
701 else
702 fp->_offset = fp->_IO_buf_end - fp->_IO_buf_base;
705 return 0;
707 else
709 /* Life is no longer good for mmap. Punt it. */
710 (void) __munmap (fp->_IO_buf_base,
711 fp->_IO_buf_end - fp->_IO_buf_base);
712 punt:
713 fp->_IO_buf_base = fp->_IO_buf_end = NULL;
714 _IO_setg (fp, NULL, NULL, NULL);
715 if (fp->_mode <= 0)
716 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &_IO_file_jumps;
717 else
718 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &_IO_wfile_jumps;
719 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps;
721 return 1;
725 /* Special callback replacing the underflow callbacks if we mmap the file. */
727 _IO_file_underflow_mmap (_IO_FILE *fp)
729 if (fp->_IO_read_ptr < fp->_IO_read_end)
730 return *(unsigned char *) fp->_IO_read_ptr;
732 if (__builtin_expect (mmap_remap_check (fp), 0))
733 /* We punted to the regular file functions. */
734 return _IO_UNDERFLOW (fp);
736 if (fp->_IO_read_ptr < fp->_IO_read_end)
737 return *(unsigned char *) fp->_IO_read_ptr;
739 fp->_flags |= _IO_EOF_SEEN;
740 return EOF;
743 static void
744 decide_maybe_mmap (_IO_FILE *fp)
746 /* We use the file in read-only mode. This could mean we can
747 mmap the file and use it without any copying. But not all
748 file descriptors are for mmap-able objects and on 32-bit
749 machines we don't want to map files which are too large since
750 this would require too much virtual memory. */
751 struct _G_stat64 st;
753 if (_IO_SYSSTAT (fp, &st) == 0
754 && S_ISREG (st.st_mode) && st.st_size != 0
755 /* Limit the file size to 1MB for 32-bit machines. */
756 && (sizeof (ptrdiff_t) > 4 || st.st_size < 1*1024*1024)
757 /* Sanity check. */
758 && (fp->_offset == _IO_pos_BAD || fp->_offset <= st.st_size))
760 /* Try to map the file. */
761 void *p;
763 # ifdef _G_MMAP64
764 p = _G_MMAP64 (NULL, st.st_size, PROT_READ, MAP_SHARED, fp->_fileno, 0);
765 # else
766 p = __mmap (NULL, st.st_size, PROT_READ, MAP_SHARED, fp->_fileno, 0);
767 # endif
768 if (p != MAP_FAILED)
770 /* OK, we managed to map the file. Set the buffer up and use a
771 special jump table with simplified underflow functions which
772 never tries to read anything from the file. */
774 if (
775 # ifdef _G_LSEEK64
776 _G_LSEEK64
777 # else
778 __lseek
779 # endif
780 (fp->_fileno, st.st_size, SEEK_SET) != st.st_size)
782 (void) __munmap (p, st.st_size);
783 fp->_offset = _IO_pos_BAD;
785 else
787 INTUSE(_IO_setb) (fp, p, (char *) p + st.st_size, 0);
789 if (fp->_offset == _IO_pos_BAD)
790 fp->_offset = 0;
792 _IO_setg (fp, p, p + fp->_offset, p + st.st_size);
793 fp->_offset = st.st_size;
795 if (fp->_mode <= 0)
796 _IO_JUMPS ((struct _IO_FILE_plus *)fp) = &_IO_file_jumps_mmap;
797 else
798 _IO_JUMPS ((struct _IO_FILE_plus *)fp) = &_IO_wfile_jumps_mmap;
799 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps_mmap;
801 return;
806 /* We couldn't use mmap, so revert to the vanilla file operations. */
808 if (fp->_mode <= 0)
809 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &_IO_file_jumps;
810 else
811 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &_IO_wfile_jumps;
812 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps;
816 _IO_file_underflow_maybe_mmap (_IO_FILE *fp)
818 /* This is the first read attempt. Choose mmap or vanilla operations
819 and then punt to the chosen underflow routine. */
820 decide_maybe_mmap (fp);
821 return _IO_UNDERFLOW (fp);
826 _IO_new_file_overflow (f, ch)
827 _IO_FILE *f;
828 int ch;
830 if (f->_flags & _IO_NO_WRITES) /* SET ERROR */
832 f->_flags |= _IO_ERR_SEEN;
833 __set_errno (EBADF);
834 return EOF;
836 /* If currently reading or no buffer allocated. */
837 if ((f->_flags & _IO_CURRENTLY_PUTTING) == 0 || f->_IO_write_base == NULL)
839 /* Allocate a buffer if needed. */
840 if (f->_IO_write_base == NULL)
842 INTUSE(_IO_doallocbuf) (f);
843 _IO_setg (f, f->_IO_buf_base, f->_IO_buf_base, f->_IO_buf_base);
845 /* Otherwise must be currently reading.
846 If _IO_read_ptr (and hence also _IO_read_end) is at the buffer end,
847 logically slide the buffer forwards one block (by setting the
848 read pointers to all point at the beginning of the block). This
849 makes room for subsequent output.
850 Otherwise, set the read pointers to _IO_read_end (leaving that
851 alone, so it can continue to correspond to the external position). */
852 if (__builtin_expect (_IO_in_backup (f), 0))
854 size_t nbackup = f->_IO_read_end - f->_IO_read_ptr;
855 INTUSE(_IO_free_backup_area) (f);
856 f->_IO_read_base -= MIN (nbackup,
857 f->_IO_read_base - f->_IO_buf_base);
858 f->_IO_read_ptr = f->_IO_read_base;
861 if (f->_IO_read_ptr == f->_IO_buf_end)
862 f->_IO_read_end = f->_IO_read_ptr = f->_IO_buf_base;
863 f->_IO_write_ptr = f->_IO_read_ptr;
864 f->_IO_write_base = f->_IO_write_ptr;
865 f->_IO_write_end = f->_IO_buf_end;
866 f->_IO_read_base = f->_IO_read_ptr = f->_IO_read_end;
868 f->_flags |= _IO_CURRENTLY_PUTTING;
869 if (f->_mode <= 0 && f->_flags & (_IO_LINE_BUF+_IO_UNBUFFERED))
870 f->_IO_write_end = f->_IO_write_ptr;
872 if (ch == EOF)
873 return INTUSE(_IO_do_write) (f, f->_IO_write_base,
874 f->_IO_write_ptr - f->_IO_write_base);
875 if (f->_IO_write_ptr == f->_IO_buf_end ) /* Buffer is really full */
876 if (_IO_do_flush (f) == EOF)
877 return EOF;
878 *f->_IO_write_ptr++ = ch;
879 if ((f->_flags & _IO_UNBUFFERED)
880 || ((f->_flags & _IO_LINE_BUF) && ch == '\n'))
881 if (INTUSE(_IO_do_write) (f, f->_IO_write_base,
882 f->_IO_write_ptr - f->_IO_write_base) == EOF)
883 return EOF;
884 return (unsigned char) ch;
886 INTDEF2(_IO_new_file_overflow, _IO_file_overflow)
889 _IO_new_file_sync (fp)
890 _IO_FILE *fp;
892 _IO_ssize_t delta;
893 int retval = 0;
895 /* char* ptr = cur_ptr(); */
896 if (fp->_IO_write_ptr > fp->_IO_write_base)
897 if (_IO_do_flush(fp)) return EOF;
898 delta = fp->_IO_read_ptr - fp->_IO_read_end;
899 if (delta != 0)
901 #ifdef TODO
902 if (_IO_in_backup (fp))
903 delta -= eGptr () - Gbase ();
904 #endif
905 _IO_off64_t new_pos = _IO_SYSSEEK (fp, delta, 1);
906 if (new_pos != (_IO_off64_t) EOF)
907 fp->_IO_read_end = fp->_IO_read_ptr;
908 #ifdef ESPIPE
909 else if (errno == ESPIPE)
910 ; /* Ignore error from unseekable devices. */
911 #endif
912 else
913 retval = EOF;
915 if (retval != EOF)
916 fp->_offset = _IO_pos_BAD;
917 /* FIXME: Cleanup - can this be shared? */
918 /* setg(base(), ptr, ptr); */
919 return retval;
921 INTDEF2(_IO_new_file_sync, _IO_file_sync)
923 static int
924 _IO_file_sync_mmap (_IO_FILE *fp)
926 if (fp->_IO_read_ptr != fp->_IO_read_end)
928 #ifdef TODO
929 if (_IO_in_backup (fp))
930 delta -= eGptr () - Gbase ();
931 #endif
932 if (
933 # ifdef _G_LSEEK64
934 _G_LSEEK64
935 # else
936 __lseek
937 # endif
938 (fp->_fileno, fp->_IO_read_ptr - fp->_IO_buf_base, SEEK_SET)
939 != fp->_IO_read_ptr - fp->_IO_buf_base)
941 fp->_flags |= _IO_ERR_SEEN;
942 return EOF;
945 fp->_offset = fp->_IO_read_ptr - fp->_IO_buf_base;
946 fp->_IO_read_end = fp->_IO_read_ptr = fp->_IO_read_base;
947 return 0;
951 _IO_off64_t
952 _IO_new_file_seekoff (fp, offset, dir, mode)
953 _IO_FILE *fp;
954 _IO_off64_t offset;
955 int dir;
956 int mode;
958 _IO_off64_t result;
959 _IO_off64_t delta, new_offset;
960 long count;
961 /* POSIX.1 8.2.3.7 says that after a call the fflush() the file
962 offset of the underlying file must be exact. */
963 int must_be_exact = (fp->_IO_read_base == fp->_IO_read_end
964 && fp->_IO_write_base == fp->_IO_write_ptr);
966 if (mode == 0)
967 dir = _IO_seek_cur, offset = 0; /* Don't move any pointers. */
969 /* Flush unwritten characters.
970 (This may do an unneeded write if we seek within the buffer.
971 But to be able to switch to reading, we would need to set
972 egptr to ptr. That can't be done in the current design,
973 which assumes file_ptr() is eGptr. Anyway, since we probably
974 end up flushing when we close(), it doesn't make much difference.)
975 FIXME: simulate mem-papped files. */
977 if (fp->_IO_write_ptr > fp->_IO_write_base || _IO_in_put_mode (fp))
978 if (INTUSE(_IO_switch_to_get_mode) (fp))
979 return EOF;
981 if (fp->_IO_buf_base == NULL)
983 /* It could be that we already have a pushback buffer. */
984 if (fp->_IO_read_base != NULL)
986 free (fp->_IO_read_base);
987 fp->_flags &= ~_IO_IN_BACKUP;
989 INTUSE(_IO_doallocbuf) (fp);
990 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
991 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
994 switch (dir)
996 case _IO_seek_cur:
997 /* Adjust for read-ahead (bytes is buffer). */
998 offset -= fp->_IO_read_end - fp->_IO_read_ptr;
999 if (fp->_offset == _IO_pos_BAD)
1001 if (mode != 0)
1002 goto dumb;
1003 else
1005 result = _IO_SYSSEEK (fp, 0, dir);
1006 if (result == EOF)
1007 return result;
1009 fp->_offset = result;
1012 /* Make offset absolute, assuming current pointer is file_ptr(). */
1013 offset += fp->_offset;
1014 if (offset < 0)
1016 __set_errno (EINVAL);
1017 return EOF;
1020 dir = _IO_seek_set;
1021 break;
1022 case _IO_seek_set:
1023 break;
1024 case _IO_seek_end:
1026 struct _G_stat64 st;
1027 if (_IO_SYSSTAT (fp, &st) == 0 && S_ISREG (st.st_mode))
1029 offset += st.st_size;
1030 dir = _IO_seek_set;
1032 else
1033 goto dumb;
1036 /* At this point, dir==_IO_seek_set. */
1038 /* If we are only interested in the current position we've found it now. */
1039 if (mode == 0)
1040 return offset;
1042 /* If destination is within current buffer, optimize: */
1043 if (fp->_offset != _IO_pos_BAD && fp->_IO_read_base != NULL
1044 && !_IO_in_backup (fp))
1046 _IO_off64_t start_offset = (fp->_offset
1047 - (fp->_IO_read_end - fp->_IO_buf_base));
1048 if (offset >= start_offset && offset < fp->_offset)
1050 _IO_setg (fp, fp->_IO_buf_base,
1051 fp->_IO_buf_base + (offset - start_offset),
1052 fp->_IO_read_end);
1053 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
1055 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
1056 goto resync;
1060 if (fp->_flags & _IO_NO_READS)
1061 goto dumb;
1063 /* Try to seek to a block boundary, to improve kernel page management. */
1064 new_offset = offset & ~(fp->_IO_buf_end - fp->_IO_buf_base - 1);
1065 delta = offset - new_offset;
1066 if (delta > fp->_IO_buf_end - fp->_IO_buf_base)
1068 new_offset = offset;
1069 delta = 0;
1071 result = _IO_SYSSEEK (fp, new_offset, 0);
1072 if (result < 0)
1073 return EOF;
1074 if (delta == 0)
1075 count = 0;
1076 else
1078 count = _IO_SYSREAD (fp, fp->_IO_buf_base,
1079 (must_be_exact
1080 ? delta : fp->_IO_buf_end - fp->_IO_buf_base));
1081 if (count < delta)
1083 /* We weren't allowed to read, but try to seek the remainder. */
1084 offset = count == EOF ? delta : delta-count;
1085 dir = _IO_seek_cur;
1086 goto dumb;
1089 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base + delta,
1090 fp->_IO_buf_base + count);
1091 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
1092 fp->_offset = result + count;
1093 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
1094 return offset;
1095 dumb:
1097 INTUSE(_IO_unsave_markers) (fp);
1098 result = _IO_SYSSEEK (fp, offset, dir);
1099 if (result != EOF)
1101 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
1102 fp->_offset = result;
1103 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
1104 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
1106 return result;
1108 resync:
1109 /* We need to do it since it is possible that the file offset in
1110 the kernel may be changed behind our back. It may happen when
1111 we fopen a file and then do a fork. One process may access the
1112 the file and the kernel file offset will be changed. */
1113 if (fp->_offset >= 0)
1114 _IO_SYSSEEK (fp, fp->_offset, 0);
1116 return offset;
1118 INTDEF2(_IO_new_file_seekoff, _IO_file_seekoff)
1120 _IO_off64_t
1121 _IO_file_seekoff_mmap (fp, offset, dir, mode)
1122 _IO_FILE *fp;
1123 _IO_off64_t offset;
1124 int dir;
1125 int mode;
1127 _IO_off64_t result;
1129 /* If we are only interested in the current position, calculate it and
1130 return right now. This calculation does the right thing when we are
1131 using a pushback buffer, but in the usual case has the same value as
1132 (fp->_IO_read_ptr - fp->_IO_buf_base). */
1133 if (mode == 0)
1134 return fp->_offset - (fp->_IO_read_end - fp->_IO_read_ptr);
1136 switch (dir)
1138 case _IO_seek_cur:
1139 /* Adjust for read-ahead (bytes is buffer). */
1140 offset += fp->_IO_read_ptr - fp->_IO_read_base;
1141 break;
1142 case _IO_seek_set:
1143 break;
1144 case _IO_seek_end:
1145 offset += fp->_IO_buf_end - fp->_IO_buf_base;
1146 break;
1148 /* At this point, dir==_IO_seek_set. */
1150 if (offset < 0)
1152 /* No negative offsets are valid. */
1153 __set_errno (EINVAL);
1154 return EOF;
1157 result = _IO_SYSSEEK (fp, offset, 0);
1158 if (result < 0)
1159 return EOF;
1161 if (offset > fp->_IO_buf_end - fp->_IO_buf_base)
1162 /* One can fseek arbitrarily past the end of the file
1163 and it is meaningless until one attempts to read.
1164 Leave the buffer pointers in EOF state until underflow. */
1165 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_end, fp->_IO_buf_end);
1166 else
1167 /* Adjust the read pointers to match the file position,
1168 but so the next read attempt will call underflow. */
1169 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base + offset,
1170 fp->_IO_buf_base + offset);
1172 fp->_offset = result;
1174 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
1176 return offset;
1179 static _IO_off64_t
1180 _IO_file_seekoff_maybe_mmap (_IO_FILE *fp, _IO_off64_t offset, int dir,
1181 int mode)
1183 /* We only get here when we haven't tried to read anything yet.
1184 So there is nothing more useful for us to do here than just
1185 the underlying lseek call. */
1187 _IO_off64_t result = _IO_SYSSEEK (fp, offset, dir);
1188 if (result < 0)
1189 return EOF;
1191 fp->_offset = result;
1192 return result;
1195 _IO_ssize_t
1196 _IO_file_read (fp, buf, size)
1197 _IO_FILE *fp;
1198 void *buf;
1199 _IO_ssize_t size;
1201 return (__builtin_expect (fp->_flags2 & _IO_FLAGS2_NOTCANCEL, 0)
1202 ? read_not_cancel (fp->_fileno, buf, size)
1203 : read (fp->_fileno, buf, size));
1205 INTDEF(_IO_file_read)
1207 _IO_off64_t
1208 _IO_file_seek (fp, offset, dir)
1209 _IO_FILE *fp;
1210 _IO_off64_t offset;
1211 int dir;
1213 #ifdef _G_LSEEK64
1214 return _G_LSEEK64 (fp->_fileno, offset, dir);
1215 #else
1216 return lseek (fp->_fileno, offset, dir);
1217 #endif
1219 INTDEF(_IO_file_seek)
1222 _IO_file_stat (fp, st)
1223 _IO_FILE *fp;
1224 void *st;
1226 #ifdef _G_FSTAT64
1227 return _G_FSTAT64 (fp->_fileno, (struct _G_stat64 *) st);
1228 #else
1229 return fstat (fp->_fileno, (struct stat *) st);
1230 #endif
1232 INTDEF(_IO_file_stat)
1235 _IO_file_close_mmap (fp)
1236 _IO_FILE *fp;
1238 /* In addition to closing the file descriptor we have to unmap the file. */
1239 (void) __munmap (fp->_IO_buf_base, fp->_IO_buf_end - fp->_IO_buf_base);
1240 fp->_IO_buf_base = fp->_IO_buf_end = NULL;
1241 /* Cancelling close should be avoided if possible since it leaves an
1242 unrecoverable state behind. */
1243 return close_not_cancel (fp->_fileno);
1247 _IO_file_close (fp)
1248 _IO_FILE *fp;
1250 /* Cancelling close should be avoided if possible since it leaves an
1251 unrecoverable state behind. */
1252 return close_not_cancel (fp->_fileno);
1254 INTDEF(_IO_file_close)
1256 _IO_ssize_t
1257 _IO_new_file_write (f, data, n)
1258 _IO_FILE *f;
1259 const void *data;
1260 _IO_ssize_t n;
1262 _IO_ssize_t to_do = n;
1263 while (to_do > 0)
1265 _IO_ssize_t count = (__builtin_expect (f->_flags2
1266 & _IO_FLAGS2_NOTCANCEL, 0)
1267 ? write_not_cancel (f->_fileno, data, to_do)
1268 : write (f->_fileno, data, to_do));
1269 if (count < 0)
1271 f->_flags |= _IO_ERR_SEEN;
1272 break;
1274 to_do -= count;
1275 data = (void *) ((char *) data + count);
1277 n -= to_do;
1278 if (f->_offset >= 0)
1279 f->_offset += n;
1280 return n;
1283 _IO_size_t
1284 _IO_new_file_xsputn (f, data, n)
1285 _IO_FILE *f;
1286 const void *data;
1287 _IO_size_t n;
1289 register const char *s = (const char *) data;
1290 _IO_size_t to_do = n;
1291 int must_flush = 0;
1292 _IO_size_t count = 0;
1294 if (n <= 0)
1295 return 0;
1296 /* This is an optimized implementation.
1297 If the amount to be written straddles a block boundary
1298 (or the filebuf is unbuffered), use sys_write directly. */
1300 /* First figure out how much space is available in the buffer. */
1301 if ((f->_flags & _IO_LINE_BUF) && (f->_flags & _IO_CURRENTLY_PUTTING))
1303 count = f->_IO_buf_end - f->_IO_write_ptr;
1304 if (count >= n)
1306 register const char *p;
1307 for (p = s + n; p > s; )
1309 if (*--p == '\n')
1311 count = p - s + 1;
1312 must_flush = 1;
1313 break;
1318 else if (f->_IO_write_end > f->_IO_write_ptr)
1319 count = f->_IO_write_end - f->_IO_write_ptr; /* Space available. */
1321 /* Then fill the buffer. */
1322 if (count > 0)
1324 if (count > to_do)
1325 count = to_do;
1326 if (count > 20)
1328 #ifdef _LIBC
1329 f->_IO_write_ptr = __mempcpy (f->_IO_write_ptr, s, count);
1330 #else
1331 memcpy (f->_IO_write_ptr, s, count);
1332 f->_IO_write_ptr += count;
1333 #endif
1334 s += count;
1336 else
1338 register char *p = f->_IO_write_ptr;
1339 register int i = (int) count;
1340 while (--i >= 0)
1341 *p++ = *s++;
1342 f->_IO_write_ptr = p;
1344 to_do -= count;
1346 if (to_do + must_flush > 0)
1348 _IO_size_t block_size, do_write;
1349 /* Next flush the (full) buffer. */
1350 if (_IO_OVERFLOW (f, EOF) == EOF)
1351 /* If nothing else has to be written we must not signal the
1352 caller that everything has been written. */
1353 return to_do == 0 ? EOF : n - to_do;
1355 /* Try to maintain alignment: write a whole number of blocks.
1356 dont_write is what gets left over. */
1357 block_size = f->_IO_buf_end - f->_IO_buf_base;
1358 do_write = to_do - (block_size >= 128 ? to_do % block_size : 0);
1360 if (do_write)
1362 count = new_do_write (f, s, do_write);
1363 to_do -= count;
1364 if (count < do_write)
1365 return n - to_do;
1368 /* Now write out the remainder. Normally, this will fit in the
1369 buffer, but it's somewhat messier for line-buffered files,
1370 so we let _IO_default_xsputn handle the general case. */
1371 if (to_do)
1372 to_do -= INTUSE(_IO_default_xsputn) (f, s+do_write, to_do);
1374 return n - to_do;
1376 INTDEF2(_IO_new_file_xsputn, _IO_file_xsputn)
1378 _IO_size_t
1379 _IO_file_xsgetn (fp, data, n)
1380 _IO_FILE *fp;
1381 void *data;
1382 _IO_size_t n;
1384 register _IO_size_t want, have;
1385 register _IO_ssize_t count;
1386 register char *s = data;
1388 want = n;
1390 if (fp->_IO_buf_base == NULL)
1392 /* Maybe we already have a push back pointer. */
1393 if (fp->_IO_save_base != NULL)
1395 free (fp->_IO_save_base);
1396 fp->_flags &= ~_IO_IN_BACKUP;
1398 INTUSE(_IO_doallocbuf) (fp);
1401 while (want > 0)
1403 have = fp->_IO_read_end - fp->_IO_read_ptr;
1404 if (want <= have)
1406 memcpy (s, fp->_IO_read_ptr, want);
1407 fp->_IO_read_ptr += want;
1408 want = 0;
1410 else
1412 if (have > 0)
1414 #ifdef _LIBC
1415 s = __mempcpy (s, fp->_IO_read_ptr, have);
1416 #else
1417 memcpy (s, fp->_IO_read_ptr, have);
1418 s += have;
1419 #endif
1420 want -= have;
1421 fp->_IO_read_ptr += have;
1424 /* Check for backup and repeat */
1425 if (_IO_in_backup (fp))
1427 _IO_switch_to_main_get_area (fp);
1428 continue;
1431 /* If we now want less than a buffer, underflow and repeat
1432 the copy. Otherwise, _IO_SYSREAD directly to
1433 the user buffer. */
1434 if (fp->_IO_buf_base
1435 && want < (size_t) (fp->_IO_buf_end - fp->_IO_buf_base))
1437 if (__underflow (fp) == EOF)
1438 break;
1440 continue;
1443 /* These must be set before the sysread as we might longjmp out
1444 waiting for input. */
1445 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
1446 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
1448 /* Try to maintain alignment: read a whole number of blocks. */
1449 count = want;
1450 if (fp->_IO_buf_base)
1452 _IO_size_t block_size = fp->_IO_buf_end - fp->_IO_buf_base;
1453 if (block_size >= 128)
1454 count -= want % block_size;
1457 count = _IO_SYSREAD (fp, s, count);
1458 if (count <= 0)
1460 if (count == 0)
1461 fp->_flags |= _IO_EOF_SEEN;
1462 else
1463 fp->_flags |= _IO_ERR_SEEN;
1465 break;
1468 s += count;
1469 want -= count;
1470 if (fp->_offset != _IO_pos_BAD)
1471 _IO_pos_adjust (fp->_offset, count);
1475 return n - want;
1477 INTDEF(_IO_file_xsgetn)
1479 static _IO_size_t _IO_file_xsgetn_mmap (_IO_FILE *, void *, _IO_size_t);
1480 static _IO_size_t
1481 _IO_file_xsgetn_mmap (fp, data, n)
1482 _IO_FILE *fp;
1483 void *data;
1484 _IO_size_t n;
1486 register _IO_size_t have;
1487 char *read_ptr = fp->_IO_read_ptr;
1488 register char *s = (char *) data;
1490 have = fp->_IO_read_end - fp->_IO_read_ptr;
1492 if (have < n)
1494 if (__builtin_expect (_IO_in_backup (fp), 0))
1496 #ifdef _LIBC
1497 s = __mempcpy (s, read_ptr, have);
1498 #else
1499 memcpy (s, read_ptr, have);
1500 s += have;
1501 #endif
1502 n -= have;
1503 _IO_switch_to_main_get_area (fp);
1504 read_ptr = fp->_IO_read_ptr;
1505 have = fp->_IO_read_end - fp->_IO_read_ptr;
1508 if (have < n)
1510 /* Check that we are mapping all of the file, in case it grew. */
1511 if (__builtin_expect (mmap_remap_check (fp), 0))
1512 /* We punted mmap, so complete with the vanilla code. */
1513 return s - (char *) data + _IO_XSGETN (fp, data, n);
1515 read_ptr = fp->_IO_read_ptr;
1516 have = fp->_IO_read_end - read_ptr;
1520 if (have < n)
1521 fp->_flags |= _IO_EOF_SEEN;
1523 if (have != 0)
1525 have = MIN (have, n);
1526 #ifdef _LIBC
1527 s = __mempcpy (s, read_ptr, have);
1528 #else
1529 memcpy (s, read_ptr, have);
1530 s += have;
1531 #endif
1532 fp->_IO_read_ptr = read_ptr + have;
1535 return s - (char *) data;
1538 static _IO_size_t _IO_file_xsgetn_maybe_mmap (_IO_FILE *, void *, _IO_size_t);
1539 static _IO_size_t
1540 _IO_file_xsgetn_maybe_mmap (fp, data, n)
1541 _IO_FILE *fp;
1542 void *data;
1543 _IO_size_t n;
1545 /* We only get here if this is the first attempt to read something.
1546 Decide which operations to use and then punt to the chosen one. */
1548 decide_maybe_mmap (fp);
1549 return _IO_XSGETN (fp, data, n);
1552 #ifdef _LIBC
1553 # undef _IO_do_write
1554 # undef _IO_file_close_it
1555 versioned_symbol (libc, _IO_new_do_write, _IO_do_write, GLIBC_2_1);
1556 versioned_symbol (libc, _IO_new_file_attach, _IO_file_attach, GLIBC_2_1);
1557 versioned_symbol (libc, _IO_new_file_close_it, _IO_file_close_it, GLIBC_2_1);
1558 versioned_symbol (libc, _IO_new_file_finish, _IO_file_finish, GLIBC_2_1);
1559 versioned_symbol (libc, _IO_new_file_fopen, _IO_file_fopen, GLIBC_2_1);
1560 versioned_symbol (libc, _IO_new_file_init, _IO_file_init, GLIBC_2_1);
1561 versioned_symbol (libc, _IO_new_file_setbuf, _IO_file_setbuf, GLIBC_2_1);
1562 versioned_symbol (libc, _IO_new_file_sync, _IO_file_sync, GLIBC_2_1);
1563 versioned_symbol (libc, _IO_new_file_overflow, _IO_file_overflow, GLIBC_2_1);
1564 versioned_symbol (libc, _IO_new_file_seekoff, _IO_file_seekoff, GLIBC_2_1);
1565 versioned_symbol (libc, _IO_new_file_underflow, _IO_file_underflow, GLIBC_2_1);
1566 versioned_symbol (libc, _IO_new_file_write, _IO_file_write, GLIBC_2_1);
1567 versioned_symbol (libc, _IO_new_file_xsputn, _IO_file_xsputn, GLIBC_2_1);
1568 #endif
1570 const struct _IO_jump_t _IO_file_jumps =
1572 JUMP_INIT_DUMMY,
1573 JUMP_INIT(finish, INTUSE(_IO_file_finish)),
1574 JUMP_INIT(overflow, INTUSE(_IO_file_overflow)),
1575 JUMP_INIT(underflow, INTUSE(_IO_file_underflow)),
1576 JUMP_INIT(uflow, INTUSE(_IO_default_uflow)),
1577 JUMP_INIT(pbackfail, INTUSE(_IO_default_pbackfail)),
1578 JUMP_INIT(xsputn, INTUSE(_IO_file_xsputn)),
1579 JUMP_INIT(xsgetn, INTUSE(_IO_file_xsgetn)),
1580 JUMP_INIT(seekoff, _IO_new_file_seekoff),
1581 JUMP_INIT(seekpos, _IO_default_seekpos),
1582 JUMP_INIT(setbuf, _IO_new_file_setbuf),
1583 JUMP_INIT(sync, _IO_new_file_sync),
1584 JUMP_INIT(doallocate, INTUSE(_IO_file_doallocate)),
1585 JUMP_INIT(read, INTUSE(_IO_file_read)),
1586 JUMP_INIT(write, _IO_new_file_write),
1587 JUMP_INIT(seek, INTUSE(_IO_file_seek)),
1588 JUMP_INIT(close, INTUSE(_IO_file_close)),
1589 JUMP_INIT(stat, INTUSE(_IO_file_stat)),
1590 JUMP_INIT(showmanyc, _IO_default_showmanyc),
1591 JUMP_INIT(imbue, _IO_default_imbue)
1593 libc_hidden_data_def (_IO_file_jumps)
1595 const struct _IO_jump_t _IO_file_jumps_mmap =
1597 JUMP_INIT_DUMMY,
1598 JUMP_INIT(finish, INTUSE(_IO_file_finish)),
1599 JUMP_INIT(overflow, INTUSE(_IO_file_overflow)),
1600 JUMP_INIT(underflow, _IO_file_underflow_mmap),
1601 JUMP_INIT(uflow, INTUSE(_IO_default_uflow)),
1602 JUMP_INIT(pbackfail, INTUSE(_IO_default_pbackfail)),
1603 JUMP_INIT(xsputn, _IO_new_file_xsputn),
1604 JUMP_INIT(xsgetn, _IO_file_xsgetn_mmap),
1605 JUMP_INIT(seekoff, _IO_file_seekoff_mmap),
1606 JUMP_INIT(seekpos, _IO_default_seekpos),
1607 JUMP_INIT(setbuf, (_IO_setbuf_t) _IO_file_setbuf_mmap),
1608 JUMP_INIT(sync, _IO_file_sync_mmap),
1609 JUMP_INIT(doallocate, INTUSE(_IO_file_doallocate)),
1610 JUMP_INIT(read, INTUSE(_IO_file_read)),
1611 JUMP_INIT(write, _IO_new_file_write),
1612 JUMP_INIT(seek, INTUSE(_IO_file_seek)),
1613 JUMP_INIT(close, _IO_file_close_mmap),
1614 JUMP_INIT(stat, INTUSE(_IO_file_stat)),
1615 JUMP_INIT(showmanyc, _IO_default_showmanyc),
1616 JUMP_INIT(imbue, _IO_default_imbue)
1619 const struct _IO_jump_t _IO_file_jumps_maybe_mmap =
1621 JUMP_INIT_DUMMY,
1622 JUMP_INIT(finish, INTUSE(_IO_file_finish)),
1623 JUMP_INIT(overflow, INTUSE(_IO_file_overflow)),
1624 JUMP_INIT(underflow, _IO_file_underflow_maybe_mmap),
1625 JUMP_INIT(uflow, INTUSE(_IO_default_uflow)),
1626 JUMP_INIT(pbackfail, INTUSE(_IO_default_pbackfail)),
1627 JUMP_INIT(xsputn, _IO_new_file_xsputn),
1628 JUMP_INIT(xsgetn, _IO_file_xsgetn_maybe_mmap),
1629 JUMP_INIT(seekoff, _IO_file_seekoff_maybe_mmap),
1630 JUMP_INIT(seekpos, _IO_default_seekpos),
1631 JUMP_INIT(setbuf, (_IO_setbuf_t) _IO_file_setbuf_mmap),
1632 JUMP_INIT(sync, _IO_new_file_sync),
1633 JUMP_INIT(doallocate, INTUSE(_IO_file_doallocate)),
1634 JUMP_INIT(read, INTUSE(_IO_file_read)),
1635 JUMP_INIT(write, _IO_new_file_write),
1636 JUMP_INIT(seek, INTUSE(_IO_file_seek)),
1637 JUMP_INIT(close, _IO_file_close),
1638 JUMP_INIT(stat, INTUSE(_IO_file_stat)),
1639 JUMP_INIT(showmanyc, _IO_default_showmanyc),
1640 JUMP_INIT(imbue, _IO_default_imbue)