*** empty log message ***
[glibc.git] / libio / fileops.c
blobd7be49e43b32761b0f644f6607b1cff1bc70dc84
1 /* Copyright (C) 1993, 1995, 1997-2002, 2003 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
18 02111-1307 USA.
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. */
30 #ifndef _POSIX_SOURCE
31 # define _POSIX_SOURCE
32 #endif
33 #include "libioP.h"
34 #include <assert.h>
35 #include <fcntl.h>
36 #include <sys/param.h>
37 #include <sys/types.h>
38 #include <sys/stat.h>
39 #include <string.h>
40 #include <errno.h>
41 #include <unistd.h>
42 #ifdef __STDC__
43 #include <stdlib.h>
44 #endif
45 #if _LIBC
46 # include "../wcsmbs/wcsmbsload.h"
47 # include "../iconv/gconv_charset.h"
48 # include "../iconv/gconv_int.h"
49 # include <shlib-compat.h>
50 #endif
51 #ifndef errno
52 extern int errno;
53 #endif
54 #ifndef __set_errno
55 # define __set_errno(Val) errno = (Val)
56 #endif
59 #ifdef _LIBC
60 # define open(Name, Flags, Prot) __open (Name, Flags, Prot)
61 # define close(FD) __close (FD)
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 #else
67 # define _IO_new_do_write _IO_do_write
68 # define _IO_new_file_attach _IO_file_attach
69 # define _IO_new_file_close_it _IO_file_close_it
70 # define _IO_new_file_finish _IO_file_finish
71 # define _IO_new_file_fopen _IO_file_fopen
72 # define _IO_new_file_init _IO_file_init
73 # define _IO_new_file_setbuf _IO_file_setbuf
74 # define _IO_new_file_sync _IO_file_sync
75 # define _IO_new_file_overflow _IO_file_overflow
76 # define _IO_new_file_seekoff _IO_file_seekoff
77 # define _IO_new_file_underflow _IO_file_underflow
78 # define _IO_new_file_write _IO_file_write
79 # define _IO_new_file_xsputn _IO_file_xsputn
80 #endif
83 #ifdef _LIBC
84 extern struct __gconv_trans_data __libio_translit attribute_hidden;
85 #endif
88 /* An fstream can be in at most one of put mode, get mode, or putback mode.
89 Putback mode is a variant of get mode.
91 In a filebuf, there is only one current position, instead of two
92 separate get and put pointers. In get mode, the current position
93 is that of gptr(); in put mode that of pptr().
95 The position in the buffer that corresponds to the position
96 in external file system is normally _IO_read_end, except in putback
97 mode, when it is _IO_save_end.
98 If the field _fb._offset is >= 0, it gives the offset in
99 the file as a whole corresponding to eGptr(). (?)
101 PUT MODE:
102 If a filebuf is in put mode, then all of _IO_read_ptr, _IO_read_end,
103 and _IO_read_base are equal to each other. These are usually equal
104 to _IO_buf_base, though not necessarily if we have switched from
105 get mode to put mode. (The reason is to maintain the invariant
106 that _IO_read_end corresponds to the external file position.)
107 _IO_write_base is non-NULL and usually equal to _IO_base_base.
108 We also have _IO_write_end == _IO_buf_end, but only in fully buffered mode.
109 The un-flushed character are those between _IO_write_base and _IO_write_ptr.
111 GET MODE:
112 If a filebuf is in get or putback mode, eback() != egptr().
113 In get mode, the unread characters are between gptr() and egptr().
114 The OS file position corresponds to that of egptr().
116 PUTBACK MODE:
117 Putback mode is used to remember "excess" characters that have
118 been sputbackc'd in a separate putback buffer.
119 In putback mode, the get buffer points to the special putback buffer.
120 The unread characters are the characters between gptr() and egptr()
121 in the putback buffer, as well as the area between save_gptr()
122 and save_egptr(), which point into the original reserve buffer.
123 (The pointers save_gptr() and save_egptr() are the values
124 of gptr() and egptr() at the time putback mode was entered.)
125 The OS position corresponds to that of save_egptr().
127 LINE BUFFERED OUTPUT:
128 During line buffered output, _IO_write_base==base() && epptr()==base().
129 However, ptr() may be anywhere between base() and ebuf().
130 This forces a call to filebuf::overflow(int C) on every put.
131 If there is more space in the buffer, and C is not a '\n',
132 then C is inserted, and pptr() incremented.
134 UNBUFFERED STREAMS:
135 If a filebuf is unbuffered(), the _shortbuf[1] is used as the buffer.
138 #define CLOSED_FILEBUF_FLAGS \
139 (_IO_IS_FILEBUF+_IO_NO_READS+_IO_NO_WRITES+_IO_TIED_PUT_GET)
142 void
143 _IO_new_file_init (fp)
144 struct _IO_FILE_plus *fp;
146 /* POSIX.1 allows another file handle to be used to change the position
147 of our file descriptor. Hence we actually don't know the actual
148 position before we do the first fseek (and until a following fflush). */
149 fp->file._offset = _IO_pos_BAD;
150 fp->file._IO_file_flags |= CLOSED_FILEBUF_FLAGS;
152 INTUSE(_IO_link_in) (fp);
153 fp->file._fileno = -1;
155 INTDEF2(_IO_new_file_init, _IO_file_init)
158 _IO_new_file_close_it (fp)
159 _IO_FILE *fp;
161 int write_status, close_status;
162 if (!_IO_file_is_open (fp))
163 return EOF;
165 if ((fp->_flags & _IO_NO_WRITES) == 0
166 && (fp->_flags & _IO_CURRENTLY_PUTTING) != 0)
167 write_status = _IO_do_flush (fp);
168 else
169 write_status = 0;
171 INTUSE(_IO_unsave_markers) (fp);
173 close_status = _IO_SYSCLOSE (fp);
175 /* Free buffer. */
176 if (fp->_mode <= 0)
178 INTUSE(_IO_setb) (fp, NULL, NULL, 0);
179 _IO_setg (fp, NULL, NULL, NULL);
180 _IO_setp (fp, NULL, NULL);
182 #if defined _LIBC || defined _GLIBCPP_USE_WCHAR_T
183 else
185 if (_IO_have_wbackup (fp))
186 INTUSE(_IO_free_wbackup_area) (fp);
187 INTUSE(_IO_wsetb) (fp, NULL, NULL, 0);
188 _IO_wsetg (fp, NULL, NULL, NULL);
189 _IO_wsetp (fp, NULL, NULL);
191 #endif
193 INTUSE(_IO_un_link) ((struct _IO_FILE_plus *) fp);
194 fp->_flags = _IO_MAGIC|CLOSED_FILEBUF_FLAGS;
195 fp->_fileno = -1;
196 fp->_offset = _IO_pos_BAD;
198 return close_status ? close_status : write_status;
200 INTDEF2(_IO_new_file_close_it, _IO_file_close_it)
202 void
203 _IO_new_file_finish (fp, dummy)
204 _IO_FILE *fp;
205 int dummy;
207 if (_IO_file_is_open (fp))
209 _IO_do_flush (fp);
210 if (!(fp->_flags & _IO_DELETE_DONT_CLOSE))
211 _IO_SYSCLOSE (fp);
213 INTUSE(_IO_default_finish) (fp, 0);
215 INTDEF2(_IO_new_file_finish, _IO_file_finish)
217 #if defined __GNUC__ && __GNUC__ >= 2
218 __inline__
219 #endif
220 _IO_FILE *
221 _IO_file_open (fp, filename, posix_mode, prot, read_write, is32not64)
222 _IO_FILE *fp;
223 const char *filename;
224 int posix_mode;
225 int prot;
226 int read_write;
227 int is32not64;
229 int fdesc;
230 #ifdef _G_OPEN64
231 fdesc = (is32not64
232 ? open (filename, posix_mode, prot)
233 : _G_OPEN64 (filename, posix_mode, prot));
234 #else
235 fdesc = open (filename, posix_mode, prot);
236 #endif
237 if (fdesc < 0)
238 return NULL;
239 fp->_fileno = fdesc;
240 _IO_mask_flags (fp, read_write,_IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING);
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 (fdesc);
246 return NULL;
248 INTUSE(_IO_link_in) ((struct _IO_FILE_plus *) fp);
249 return fp;
251 libc_hidden_def (_IO_file_open)
253 _IO_FILE *
254 _IO_new_file_fopen (fp, filename, mode, is32not64)
255 _IO_FILE *fp;
256 const char *filename;
257 const char *mode;
258 int is32not64;
260 int oflags = 0, omode;
261 int read_write;
262 int oprot = 0666;
263 int i;
264 _IO_FILE *result;
265 #ifdef _LIBC
266 const char *cs;
267 const char *last_recognized;
268 #endif
270 if (_IO_file_is_open (fp))
271 return 0;
272 switch (*mode)
274 case 'r':
275 omode = O_RDONLY;
276 read_write = _IO_NO_WRITES;
277 break;
278 case 'w':
279 omode = O_WRONLY;
280 oflags = O_CREAT|O_TRUNC;
281 read_write = _IO_NO_READS;
282 break;
283 case 'a':
284 omode = O_WRONLY;
285 oflags = O_CREAT|O_APPEND;
286 read_write = _IO_NO_READS|_IO_IS_APPENDING;
287 break;
288 default:
289 __set_errno (EINVAL);
290 return NULL;
292 #ifdef _LIBC
293 last_recognized = mode;
294 #endif
295 for (i = 1; i < 5; ++i)
297 switch (*++mode)
299 case '\0':
300 break;
301 case '+':
302 omode = O_RDWR;
303 read_write &= _IO_IS_APPENDING;
304 #ifdef _LIBC
305 last_recognized = mode;
306 #endif
307 continue;
308 case 'x':
309 oflags |= O_EXCL;
310 #ifdef _LIBC
311 last_recognized = mode;
312 #endif
313 continue;
314 case 'b':
315 #ifdef _LIBC
316 last_recognized = mode;
317 #endif
318 continue;
319 case 'm':
320 fp->_flags2 |= _IO_FLAGS2_MMAP;
321 continue;
322 default:
323 /* Ignore. */
324 continue;
326 break;
329 result = _IO_file_open (fp, filename, omode|oflags, oprot, read_write,
330 is32not64);
333 #ifdef _LIBC
334 if (result != NULL)
336 /* Test whether the mode string specifies the conversion. */
337 cs = strstr (last_recognized + 1, ",ccs=");
338 if (cs != NULL)
340 /* Yep. Load the appropriate conversions and set the orientation
341 to wide. */
342 struct gconv_fcts fcts;
343 struct _IO_codecvt *cc;
344 char *endp = __strchrnul (cs + 5, ',');
345 char ccs[endp - (cs + 5) + 3];
347 *((char *) __mempcpy (ccs, cs + 5, endp - (cs + 5))) = '\0';
348 strip (ccs, ccs);
350 if (__wcsmbs_named_conv (&fcts, ccs[2] == '\0'
351 ? upstr (ccs, cs + 5) : ccs) != 0)
353 /* Something went wrong, we cannot load the conversion modules.
354 This means we cannot proceed since the user explicitly asked
355 for these. */
356 (void) INTUSE(_IO_file_close_it) (fp);
357 __set_errno (EINVAL);
358 return NULL;
361 assert (fcts.towc_nsteps == 1);
362 assert (fcts.tomb_nsteps == 1);
364 fp->_wide_data->_IO_read_ptr = fp->_wide_data->_IO_read_end;
365 fp->_wide_data->_IO_write_ptr = fp->_wide_data->_IO_write_base;
367 /* Clear the state. We start all over again. */
368 memset (&fp->_wide_data->_IO_state, '\0', sizeof (__mbstate_t));
369 memset (&fp->_wide_data->_IO_last_state, '\0', sizeof (__mbstate_t));
371 cc = fp->_codecvt = &fp->_wide_data->_codecvt;
373 /* The functions are always the same. */
374 *cc = __libio_codecvt;
376 cc->__cd_in.__cd.__nsteps = fcts.towc_nsteps;
377 cc->__cd_in.__cd.__steps = fcts.towc;
379 cc->__cd_in.__cd.__data[0].__invocation_counter = 0;
380 cc->__cd_in.__cd.__data[0].__internal_use = 1;
381 cc->__cd_in.__cd.__data[0].__flags = __GCONV_IS_LAST;
382 cc->__cd_in.__cd.__data[0].__statep = &result->_wide_data->_IO_state;
384 /* XXX For now no transliteration. */
385 cc->__cd_in.__cd.__data[0].__trans = NULL;
387 cc->__cd_out.__cd.__nsteps = fcts.tomb_nsteps;
388 cc->__cd_out.__cd.__steps = fcts.tomb;
390 cc->__cd_out.__cd.__data[0].__invocation_counter = 0;
391 cc->__cd_out.__cd.__data[0].__internal_use = 1;
392 cc->__cd_out.__cd.__data[0].__flags = __GCONV_IS_LAST;
393 cc->__cd_out.__cd.__data[0].__statep =
394 &result->_wide_data->_IO_state;
396 /* And now the transliteration. */
397 cc->__cd_out.__cd.__data[0].__trans = &__libio_translit;
399 /* Set the mode now. */
400 result->_mode = 1;
402 /* We don't need the step data structure anymore. */
403 __gconv_release_cache (fcts.towc, fcts.towc_nsteps);
404 __gconv_release_cache (fcts.tomb, fcts.tomb_nsteps);
407 #endif /* GNU libc */
409 return result;
411 INTDEF2(_IO_new_file_fopen, _IO_file_fopen)
413 _IO_FILE *
414 _IO_new_file_attach (fp, fd)
415 _IO_FILE *fp;
416 int fd;
418 if (_IO_file_is_open (fp))
419 return NULL;
420 fp->_fileno = fd;
421 fp->_flags &= ~(_IO_NO_READS+_IO_NO_WRITES);
422 fp->_flags |= _IO_DELETE_DONT_CLOSE;
423 /* Get the current position of the file. */
424 /* We have to do that since that may be junk. */
425 fp->_offset = _IO_pos_BAD;
426 if (_IO_SEEKOFF (fp, (_IO_off64_t)0, _IO_seek_cur, _IOS_INPUT|_IOS_OUTPUT)
427 == _IO_pos_BAD && errno != ESPIPE)
428 return NULL;
429 return fp;
431 INTDEF2(_IO_new_file_attach, _IO_file_attach)
433 _IO_FILE *
434 _IO_new_file_setbuf (fp, p, len)
435 _IO_FILE *fp;
436 char *p;
437 _IO_ssize_t len;
439 if (_IO_default_setbuf (fp, p, len) == NULL)
440 return NULL;
442 fp->_IO_write_base = fp->_IO_write_ptr = fp->_IO_write_end
443 = fp->_IO_buf_base;
444 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
446 return fp;
448 INTDEF2(_IO_new_file_setbuf, _IO_file_setbuf)
451 _IO_FILE *
452 _IO_file_setbuf_mmap (fp, p, len)
453 _IO_FILE *fp;
454 char *p;
455 _IO_ssize_t len;
457 _IO_FILE *result;
459 /* Change the function table. */
460 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &INTUSE(_IO_file_jumps);
461 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps;
463 /* And perform the normal operation. */
464 result = _IO_new_file_setbuf (fp, p, len);
466 /* If the call failed, restore to using mmap. */
467 if (result == NULL)
469 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &_IO_file_jumps_mmap;
470 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps_mmap;
473 return result;
476 static int new_do_write __P ((_IO_FILE *, const char *, _IO_size_t));
478 /* Write TO_DO bytes from DATA to FP.
479 Then mark FP as having empty buffers. */
482 _IO_new_do_write (fp, data, to_do)
483 _IO_FILE *fp;
484 const char *data;
485 _IO_size_t to_do;
487 return (to_do == 0
488 || (_IO_size_t) new_do_write (fp, data, to_do) == to_do) ? 0 : EOF;
490 INTDEF2(_IO_new_do_write, _IO_do_write)
492 static
494 new_do_write (fp, data, to_do)
495 _IO_FILE *fp;
496 const char *data;
497 _IO_size_t to_do;
499 _IO_size_t count;
500 if (fp->_flags & _IO_IS_APPENDING)
501 /* On a system without a proper O_APPEND implementation,
502 you would need to sys_seek(0, SEEK_END) here, but is
503 is not needed nor desirable for Unix- or Posix-like systems.
504 Instead, just indicate that offset (before and after) is
505 unpredictable. */
506 fp->_offset = _IO_pos_BAD;
507 else if (fp->_IO_read_end != fp->_IO_write_base)
509 _IO_off64_t new_pos
510 = _IO_SYSSEEK (fp, fp->_IO_write_base - fp->_IO_read_end, 1);
511 if (new_pos == _IO_pos_BAD)
512 return 0;
513 fp->_offset = new_pos;
515 count = _IO_SYSWRITE (fp, data, to_do);
516 if (fp->_cur_column && count)
517 fp->_cur_column = INTUSE(_IO_adjust_column) (fp->_cur_column - 1, data,
518 count) + 1;
519 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
520 fp->_IO_write_base = fp->_IO_write_ptr = fp->_IO_buf_base;
521 fp->_IO_write_end = (fp->_mode <= 0
522 && (fp->_flags & (_IO_LINE_BUF+_IO_UNBUFFERED))
523 ? fp->_IO_buf_base : fp->_IO_buf_end);
524 return count;
528 _IO_new_file_underflow (fp)
529 _IO_FILE *fp;
531 _IO_ssize_t count;
532 #if 0
533 /* SysV does not make this test; take it out for compatibility */
534 if (fp->_flags & _IO_EOF_SEEN)
535 return (EOF);
536 #endif
538 if (fp->_flags & _IO_NO_READS)
540 fp->_flags |= _IO_ERR_SEEN;
541 __set_errno (EBADF);
542 return EOF;
544 if (fp->_IO_read_ptr < fp->_IO_read_end)
545 return *(unsigned char *) fp->_IO_read_ptr;
547 if (fp->_IO_buf_base == NULL)
549 /* Maybe we already have a push back pointer. */
550 if (fp->_IO_save_base != NULL)
552 free (fp->_IO_save_base);
553 fp->_flags &= ~_IO_IN_BACKUP;
555 INTUSE(_IO_doallocbuf) (fp);
558 /* Flush all line buffered files before reading. */
559 /* FIXME This can/should be moved to genops ?? */
560 if (fp->_flags & (_IO_LINE_BUF|_IO_UNBUFFERED))
562 #if 0
563 INTUSE(_IO_flush_all_linebuffered) ();
564 #else
565 /* We used to flush all line-buffered stream. This really isn't
566 required by any standard. My recollection is that
567 traditional Unix systems did this for stdout. stderr better
568 not be line buffered. So we do just that here
569 explicitly. --drepper */
570 _IO_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile,
571 _IO_stdout);
572 _IO_flockfile (_IO_stdout);
574 if ((_IO_stdout->_flags & (_IO_LINKED | _IO_NO_WRITES | _IO_LINE_BUF))
575 == (_IO_LINKED | _IO_LINE_BUF))
576 _IO_OVERFLOW (_IO_stdout, EOF);
578 _IO_funlockfile (_IO_stdout);
579 _IO_cleanup_region_end (0);
580 #endif
583 INTUSE(_IO_switch_to_get_mode) (fp);
585 /* This is very tricky. We have to adjust those
586 pointers before we call _IO_SYSREAD () since
587 we may longjump () out while waiting for
588 input. Those pointers may be screwed up. H.J. */
589 fp->_IO_read_base = fp->_IO_read_ptr = fp->_IO_buf_base;
590 fp->_IO_read_end = fp->_IO_buf_base;
591 fp->_IO_write_base = fp->_IO_write_ptr = fp->_IO_write_end
592 = fp->_IO_buf_base;
594 count = _IO_SYSREAD (fp, fp->_IO_buf_base,
595 fp->_IO_buf_end - fp->_IO_buf_base);
596 if (count <= 0)
598 if (count == 0)
599 fp->_flags |= _IO_EOF_SEEN;
600 else
601 fp->_flags |= _IO_ERR_SEEN, count = 0;
603 fp->_IO_read_end += count;
604 if (count == 0)
605 return EOF;
606 if (fp->_offset != _IO_pos_BAD)
607 _IO_pos_adjust (fp->_offset, count);
608 return *(unsigned char *) fp->_IO_read_ptr;
610 INTDEF2(_IO_new_file_underflow, _IO_file_underflow)
612 /* Guts of underflow callback if we mmap the file. This stats the file and
613 updates the stream state to match. In the normal case we return zero.
614 If the file is no longer eligible for mmap, its jump tables are reset to
615 the vanilla ones and we return nonzero. */
616 static int
617 mmap_remap_check (_IO_FILE *fp)
619 struct _G_stat64 st;
621 if (_IO_SYSSTAT (fp, &st) == 0
622 && S_ISREG (st.st_mode) && st.st_size != 0
623 /* Limit the file size to 1MB for 32-bit machines. */
624 && (sizeof (ptrdiff_t) > 4 || st.st_size < 1*1024*1024))
626 const size_t pagesize = __getpagesize ();
627 # define ROUNDED(x) (((x) + pagesize - 1) & ~(pagesize - 1))
628 if (ROUNDED (st.st_size) < ROUNDED (fp->_IO_buf_end
629 - fp->_IO_buf_base))
631 /* We can trim off some pages past the end of the file. */
632 (void) __munmap (fp->_IO_buf_base + ROUNDED (st.st_size),
633 ROUNDED (fp->_IO_buf_end - fp->_IO_buf_base)
634 - ROUNDED (st.st_size));
635 fp->_IO_buf_end = fp->_IO_buf_base + st.st_size;
637 else if (ROUNDED (st.st_size) > ROUNDED (fp->_IO_buf_end
638 - fp->_IO_buf_base))
640 /* The file added some pages. We need to remap it. */
641 void *p;
642 #if defined __linux__ /* XXX */
643 p = __mremap (fp->_IO_buf_base, ROUNDED (fp->_IO_buf_end
644 - fp->_IO_buf_base),
645 ROUNDED (st.st_size), MREMAP_MAYMOVE);
646 if (p == MAP_FAILED)
648 (void) __munmap (fp->_IO_buf_base,
649 fp->_IO_buf_end - fp->_IO_buf_base);
650 goto punt;
652 #else
653 (void) __munmap (fp->_IO_buf_base,
654 fp->_IO_buf_end - fp->_IO_buf_base);
655 # ifdef _G_MMAP64
656 p = _G_MMAP64 (NULL, st.st_size, PROT_READ, MAP_SHARED,
657 fp->_fileno, 0);
658 # else
659 p = __mmap (NULL, st.st_size, PROT_READ, MAP_SHARED,
660 fp->_fileno, 0);
661 # endif
662 if (p == MAP_FAILED)
663 goto punt;
664 #endif
665 fp->_IO_buf_base = p;
666 fp->_IO_buf_end = fp->_IO_buf_base + st.st_size;
668 else
670 /* The number of pages didn't change. */
671 fp->_IO_buf_end = fp->_IO_buf_base + st.st_size;
673 # undef ROUNDED
675 fp->_offset -= fp->_IO_read_end - fp->_IO_read_ptr;
676 _IO_setg (fp, fp->_IO_buf_base,
677 fp->_offset < fp->_IO_buf_end - fp->_IO_buf_base
678 ? fp->_IO_buf_base + fp->_offset : fp->_IO_buf_end,
679 fp->_IO_buf_end);
681 /* If we are already positioned at or past the end of the file, don't
682 change the current offset. If not, seek past what we have mapped,
683 mimicking the position left by a normal underflow reading into its
684 buffer until EOF. */
686 if (fp->_offset < fp->_IO_buf_end - fp->_IO_buf_base)
688 if (
689 # ifdef _G_LSEEK64
690 _G_LSEEK64
691 # else
692 __lseek
693 # endif
694 (fp->_fileno, fp->_IO_buf_end - fp->_IO_buf_base, SEEK_SET)
695 != fp->_IO_buf_end - fp->_IO_buf_base)
696 fp->_flags |= _IO_ERR_SEEN;
697 else
698 fp->_offset = fp->_IO_buf_end - fp->_IO_buf_base;
701 return 0;
703 else
705 /* Life is no longer good for mmap. Punt it. */
706 (void) __munmap (fp->_IO_buf_base,
707 fp->_IO_buf_end - fp->_IO_buf_base);
708 punt:
709 fp->_IO_buf_base = fp->_IO_buf_end = NULL;
710 _IO_setg (fp, NULL, NULL, NULL);
711 if (fp->_mode <= 0)
712 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &INTUSE(_IO_file_jumps);
713 else
714 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &_IO_wfile_jumps;
715 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps;
717 return 1;
721 /* Special callback replacing the underflow callbacks if we mmap the file. */
723 _IO_file_underflow_mmap (_IO_FILE *fp)
725 if (fp->_IO_read_ptr < fp->_IO_read_end)
726 return *(unsigned char *) fp->_IO_read_ptr;
728 if (__builtin_expect (mmap_remap_check (fp), 0))
729 /* We punted to the regular file functions. */
730 return _IO_UNDERFLOW (fp);
732 if (fp->_IO_read_ptr < fp->_IO_read_end)
733 return *(unsigned char *) fp->_IO_read_ptr;
735 fp->_flags |= _IO_EOF_SEEN;
736 return EOF;
739 static void
740 decide_maybe_mmap (_IO_FILE *fp)
742 /* We use the file in read-only mode. This could mean we can
743 mmap the file and use it without any copying. But not all
744 file descriptors are for mmap-able objects and on 32-bit
745 machines we don't want to map files which are too large since
746 this would require too much virtual memory. */
747 struct _G_stat64 st;
749 if (_IO_SYSSTAT (fp, &st) == 0
750 && S_ISREG (st.st_mode) && st.st_size != 0
751 /* Limit the file size to 1MB for 32-bit machines. */
752 && (sizeof (ptrdiff_t) > 4 || st.st_size < 1*1024*1024)
753 /* Sanity check. */
754 && (fp->_offset == _IO_pos_BAD || fp->_offset <= st.st_size))
756 /* Try to map the file. */
757 void *p;
759 # ifdef _G_MMAP64
760 p = _G_MMAP64 (NULL, st.st_size, PROT_READ, MAP_SHARED, fp->_fileno, 0);
761 # else
762 p = __mmap (NULL, st.st_size, PROT_READ, MAP_SHARED, fp->_fileno, 0);
763 # endif
764 if (p != MAP_FAILED)
766 /* OK, we managed to map the file. Set the buffer up and use a
767 special jump table with simplified underflow functions which
768 never tries to read anything from the file. */
770 if (
771 # ifdef _G_LSEEK64
772 _G_LSEEK64
773 # else
774 __lseek
775 # endif
776 (fp->_fileno, st.st_size, SEEK_SET) != st.st_size)
778 (void) __munmap (p, st.st_size);
779 fp->_offset = _IO_pos_BAD;
781 else
783 INTUSE(_IO_setb) (fp, p, (char *) p + st.st_size, 0);
785 if (fp->_offset == _IO_pos_BAD)
786 fp->_offset = 0;
788 _IO_setg (fp, p, p + fp->_offset, p + st.st_size);
789 fp->_offset = st.st_size;
791 if (fp->_mode <= 0)
792 _IO_JUMPS ((struct _IO_FILE_plus *)fp) = &_IO_file_jumps_mmap;
793 else
794 _IO_JUMPS ((struct _IO_FILE_plus *)fp) = &_IO_wfile_jumps_mmap;
795 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps_mmap;
797 return;
802 /* We couldn't use mmap, so revert to the vanilla file operations. */
804 if (fp->_mode <= 0)
805 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &INTUSE(_IO_file_jumps);
806 else
807 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &_IO_wfile_jumps;
808 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps;
812 _IO_file_underflow_maybe_mmap (_IO_FILE *fp)
814 /* This is the first read attempt. Choose mmap or vanilla operations
815 and then punt to the chosen underflow routine. */
816 decide_maybe_mmap (fp);
817 return _IO_UNDERFLOW (fp);
822 _IO_new_file_overflow (f, ch)
823 _IO_FILE *f;
824 int ch;
826 if (f->_flags & _IO_NO_WRITES) /* SET ERROR */
828 f->_flags |= _IO_ERR_SEEN;
829 __set_errno (EBADF);
830 return EOF;
832 /* If currently reading or no buffer allocated. */
833 if ((f->_flags & _IO_CURRENTLY_PUTTING) == 0 || f->_IO_write_base == 0)
835 /* Allocate a buffer if needed. */
836 if (f->_IO_write_base == 0)
838 INTUSE(_IO_doallocbuf) (f);
839 _IO_setg (f, f->_IO_buf_base, f->_IO_buf_base, f->_IO_buf_base);
841 /* Otherwise must be currently reading.
842 If _IO_read_ptr (and hence also _IO_read_end) is at the buffer end,
843 logically slide the buffer forwards one block (by setting the
844 read pointers to all point at the beginning of the block). This
845 makes room for subsequent output.
846 Otherwise, set the read pointers to _IO_read_end (leaving that
847 alone, so it can continue to correspond to the external position). */
848 if (f->_IO_read_ptr == f->_IO_buf_end)
849 f->_IO_read_end = f->_IO_read_ptr = f->_IO_buf_base;
850 f->_IO_write_ptr = f->_IO_read_ptr;
851 f->_IO_write_base = f->_IO_write_ptr;
852 f->_IO_write_end = f->_IO_buf_end;
853 f->_IO_read_base = f->_IO_read_ptr = f->_IO_read_end;
855 f->_flags |= _IO_CURRENTLY_PUTTING;
856 if (f->_mode <= 0 && f->_flags & (_IO_LINE_BUF+_IO_UNBUFFERED))
857 f->_IO_write_end = f->_IO_write_ptr;
859 if (ch == EOF)
860 return INTUSE(_IO_do_write) (f, f->_IO_write_base,
861 f->_IO_write_ptr - f->_IO_write_base);
862 if (f->_IO_write_ptr == f->_IO_buf_end ) /* Buffer is really full */
863 if (_IO_do_flush (f) == EOF)
864 return EOF;
865 *f->_IO_write_ptr++ = ch;
866 if ((f->_flags & _IO_UNBUFFERED)
867 || ((f->_flags & _IO_LINE_BUF) && ch == '\n'))
868 if (INTUSE(_IO_do_write) (f, f->_IO_write_base,
869 f->_IO_write_ptr - f->_IO_write_base) == EOF)
870 return EOF;
871 return (unsigned char) ch;
873 INTDEF2(_IO_new_file_overflow, _IO_file_overflow)
876 _IO_new_file_sync (fp)
877 _IO_FILE *fp;
879 _IO_ssize_t delta;
880 int retval = 0;
882 /* char* ptr = cur_ptr(); */
883 if (fp->_IO_write_ptr > fp->_IO_write_base)
884 if (_IO_do_flush(fp)) return EOF;
885 delta = fp->_IO_read_ptr - fp->_IO_read_end;
886 if (delta != 0)
888 #ifdef TODO
889 if (_IO_in_backup (fp))
890 delta -= eGptr () - Gbase ();
891 #endif
892 _IO_off64_t new_pos = _IO_SYSSEEK (fp, delta, 1);
893 if (new_pos != (_IO_off64_t) EOF)
894 fp->_IO_read_end = fp->_IO_read_ptr;
895 #ifdef ESPIPE
896 else if (errno == ESPIPE)
897 ; /* Ignore error from unseekable devices. */
898 #endif
899 else
900 retval = EOF;
902 if (retval != EOF)
903 fp->_offset = _IO_pos_BAD;
904 /* FIXME: Cleanup - can this be shared? */
905 /* setg(base(), ptr, ptr); */
906 return retval;
908 INTDEF2(_IO_new_file_sync, _IO_file_sync)
910 static int
911 _IO_file_sync_mmap (_IO_FILE *fp)
913 if (fp->_IO_read_ptr != fp->_IO_read_end)
915 #ifdef TODO
916 if (_IO_in_backup (fp))
917 delta -= eGptr () - Gbase ();
918 #endif
919 if (
920 # ifdef _G_LSEEK64
921 _G_LSEEK64
922 # else
923 __lseek
924 # endif
925 (fp->_fileno, fp->_IO_read_ptr - fp->_IO_buf_base, SEEK_SET)
926 != fp->_IO_read_ptr - fp->_IO_buf_base)
928 fp->_flags |= _IO_ERR_SEEN;
929 return EOF;
932 fp->_offset = fp->_IO_read_ptr - fp->_IO_buf_base;
933 fp->_IO_read_end = fp->_IO_read_ptr = fp->_IO_read_base;
934 return 0;
938 _IO_off64_t
939 _IO_new_file_seekoff (fp, offset, dir, mode)
940 _IO_FILE *fp;
941 _IO_off64_t offset;
942 int dir;
943 int mode;
945 _IO_off64_t result;
946 _IO_off64_t delta, new_offset;
947 long count;
948 /* POSIX.1 8.2.3.7 says that after a call the fflush() the file
949 offset of the underlying file must be exact. */
950 int must_be_exact = (fp->_IO_read_base == fp->_IO_read_end
951 && fp->_IO_write_base == fp->_IO_write_ptr);
953 if (mode == 0)
954 dir = _IO_seek_cur, offset = 0; /* Don't move any pointers. */
956 /* Flush unwritten characters.
957 (This may do an unneeded write if we seek within the buffer.
958 But to be able to switch to reading, we would need to set
959 egptr to ptr. That can't be done in the current design,
960 which assumes file_ptr() is eGptr. Anyway, since we probably
961 end up flushing when we close(), it doesn't make much difference.)
962 FIXME: simulate mem-papped files. */
964 if (fp->_IO_write_ptr > fp->_IO_write_base || _IO_in_put_mode (fp))
965 if (INTUSE(_IO_switch_to_get_mode) (fp))
966 return EOF;
968 if (fp->_IO_buf_base == NULL)
970 /* It could be that we already have a pushback buffer. */
971 if (fp->_IO_read_base != NULL)
973 free (fp->_IO_read_base);
974 fp->_flags &= ~_IO_IN_BACKUP;
976 INTUSE(_IO_doallocbuf) (fp);
977 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
978 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
981 switch (dir)
983 case _IO_seek_cur:
984 /* Adjust for read-ahead (bytes is buffer). */
985 offset -= fp->_IO_read_end - fp->_IO_read_ptr;
986 if (fp->_offset == _IO_pos_BAD)
987 goto dumb;
988 /* Make offset absolute, assuming current pointer is file_ptr(). */
989 offset += fp->_offset;
990 if (offset < 0)
992 __set_errno (EINVAL);
993 return EOF;
996 dir = _IO_seek_set;
997 break;
998 case _IO_seek_set:
999 break;
1000 case _IO_seek_end:
1002 struct _G_stat64 st;
1003 if (_IO_SYSSTAT (fp, &st) == 0 && S_ISREG (st.st_mode))
1005 offset += st.st_size;
1006 dir = _IO_seek_set;
1008 else
1009 goto dumb;
1012 /* At this point, dir==_IO_seek_set. */
1014 /* If we are only interested in the current position we've found it now. */
1015 if (mode == 0)
1016 return offset;
1018 /* If destination is within current buffer, optimize: */
1019 if (fp->_offset != _IO_pos_BAD && fp->_IO_read_base != NULL
1020 && !_IO_in_backup (fp))
1022 /* Offset relative to start of main get area. */
1023 _IO_off64_t rel_offset = (offset - fp->_offset
1024 + (fp->_IO_read_end - fp->_IO_read_base));
1025 if (rel_offset >= 0)
1027 #if 0
1028 if (_IO_in_backup (fp))
1029 _IO_switch_to_main_get_area (fp);
1030 #endif
1031 if (rel_offset <= fp->_IO_read_end - fp->_IO_read_base)
1033 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base + rel_offset,
1034 fp->_IO_read_end);
1035 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
1037 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
1038 goto resync;
1041 #ifdef TODO
1042 /* If we have streammarkers, seek forward by reading ahead. */
1043 if (_IO_have_markers (fp))
1045 int to_skip = rel_offset
1046 - (fp->_IO_read_ptr - fp->_IO_read_base);
1047 if (ignore (to_skip) != to_skip)
1048 goto dumb;
1049 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
1050 goto resync;
1052 #endif
1054 #ifdef TODO
1055 if (rel_offset < 0 && rel_offset >= Bbase () - Bptr ())
1057 if (!_IO_in_backup (fp))
1058 _IO_switch_to_backup_area (fp);
1059 gbump (fp->_IO_read_end + rel_offset - fp->_IO_read_ptr);
1060 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
1061 goto resync;
1063 #endif
1066 #ifdef TODO
1067 INTUSE(_IO_unsave_markers) (fp);
1068 #endif
1070 if (fp->_flags & _IO_NO_READS)
1071 goto dumb;
1073 /* Try to seek to a block boundary, to improve kernel page management. */
1074 new_offset = offset & ~(fp->_IO_buf_end - fp->_IO_buf_base - 1);
1075 delta = offset - new_offset;
1076 if (delta > fp->_IO_buf_end - fp->_IO_buf_base)
1078 new_offset = offset;
1079 delta = 0;
1081 result = _IO_SYSSEEK (fp, new_offset, 0);
1082 if (result < 0)
1083 return EOF;
1084 if (delta == 0)
1085 count = 0;
1086 else
1088 count = _IO_SYSREAD (fp, fp->_IO_buf_base,
1089 (must_be_exact
1090 ? delta : fp->_IO_buf_end - fp->_IO_buf_base));
1091 if (count < delta)
1093 /* We weren't allowed to read, but try to seek the remainder. */
1094 offset = count == EOF ? delta : delta-count;
1095 dir = _IO_seek_cur;
1096 goto dumb;
1099 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base + delta,
1100 fp->_IO_buf_base + count);
1101 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
1102 fp->_offset = result + count;
1103 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
1104 return offset;
1105 dumb:
1107 INTUSE(_IO_unsave_markers) (fp);
1108 result = _IO_SYSSEEK (fp, offset, dir);
1109 if (result != EOF)
1111 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
1112 fp->_offset = result;
1113 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
1114 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
1116 return result;
1118 resync:
1119 /* We need to do it since it is possible that the file offset in
1120 the kernel may be changed behind our back. It may happen when
1121 we fopen a file and then do a fork. One process may access the
1122 the file and the kernel file offset will be changed. */
1123 if (fp->_offset >= 0)
1124 _IO_SYSSEEK (fp, fp->_offset, 0);
1126 return offset;
1128 INTDEF2(_IO_new_file_seekoff, _IO_file_seekoff)
1130 _IO_off64_t
1131 _IO_file_seekoff_mmap (fp, offset, dir, mode)
1132 _IO_FILE *fp;
1133 _IO_off64_t offset;
1134 int dir;
1135 int mode;
1137 _IO_off64_t result;
1139 /* If we are only interested in the current position, calculate it and
1140 return right now. This calculation does the right thing when we are
1141 using a pushback buffer, but in the usual case has the same value as
1142 (fp->_IO_read_ptr - fp->_IO_buf_base). */
1143 if (mode == 0)
1144 return fp->_offset - (fp->_IO_read_end - fp->_IO_read_ptr);
1146 switch (dir)
1148 case _IO_seek_cur:
1149 /* Adjust for read-ahead (bytes is buffer). */
1150 offset += fp->_IO_read_ptr - fp->_IO_read_base;
1151 break;
1152 case _IO_seek_set:
1153 break;
1154 case _IO_seek_end:
1155 offset += fp->_IO_buf_end - fp->_IO_buf_base;
1156 break;
1158 /* At this point, dir==_IO_seek_set. */
1160 if (offset < 0)
1162 /* No negative offsets are valid. */
1163 __set_errno (EINVAL);
1164 return EOF;
1167 result = _IO_SYSSEEK (fp, offset, 0);
1168 if (result < 0)
1169 return EOF;
1171 if (offset > fp->_IO_buf_end - fp->_IO_buf_base)
1172 /* One can fseek arbitrarily past the end of the file
1173 and it is meaningless until one attempts to read.
1174 Leave the buffer pointers in EOF state until underflow. */
1175 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_end, fp->_IO_buf_end);
1176 else
1177 /* Adjust the read pointers to match the file position,
1178 but so the next read attempt will call underflow. */
1179 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base + offset,
1180 fp->_IO_buf_base + offset);
1182 fp->_offset = result;
1184 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
1186 return offset;
1189 static _IO_off64_t
1190 _IO_file_seekoff_maybe_mmap (_IO_FILE *fp, _IO_off64_t offset, int dir,
1191 int mode)
1193 /* We only get here when we haven't tried to read anything yet.
1194 So there is nothing more useful for us to do here than just
1195 the underlying lseek call. */
1197 _IO_off64_t result = _IO_SYSSEEK (fp, offset, dir);
1198 if (result < 0)
1199 return EOF;
1201 fp->_offset = result;
1202 return result;
1205 _IO_ssize_t
1206 _IO_file_read (fp, buf, size)
1207 _IO_FILE *fp;
1208 void *buf;
1209 _IO_ssize_t size;
1211 return read (fp->_fileno, buf, size);
1213 INTDEF(_IO_file_read)
1215 _IO_off64_t
1216 _IO_file_seek (fp, offset, dir)
1217 _IO_FILE *fp;
1218 _IO_off64_t offset;
1219 int dir;
1221 #ifdef _G_LSEEK64
1222 return _G_LSEEK64 (fp->_fileno, offset, dir);
1223 #else
1224 return lseek (fp->_fileno, offset, dir);
1225 #endif
1227 INTDEF(_IO_file_seek)
1230 _IO_file_stat (fp, st)
1231 _IO_FILE *fp;
1232 void *st;
1234 #ifdef _G_FSTAT64
1235 return _G_FSTAT64 (fp->_fileno, (struct _G_stat64 *) st);
1236 #else
1237 return fstat (fp->_fileno, (struct stat *) st);
1238 #endif
1240 INTDEF(_IO_file_stat)
1243 _IO_file_close_mmap (fp)
1244 _IO_FILE *fp;
1246 /* In addition to closing the file descriptor we have to unmap the file. */
1247 (void) __munmap (fp->_IO_buf_base, fp->_IO_buf_end - fp->_IO_buf_base);
1248 fp->_IO_buf_base = fp->_IO_buf_end = NULL;
1249 return close (fp->_fileno);
1253 _IO_file_close (fp)
1254 _IO_FILE *fp;
1256 return close (fp->_fileno);
1258 INTDEF(_IO_file_close)
1260 _IO_ssize_t
1261 _IO_new_file_write (f, data, n)
1262 _IO_FILE *f;
1263 const void *data;
1264 _IO_ssize_t n;
1266 _IO_ssize_t to_do = n;
1267 while (to_do > 0)
1269 _IO_ssize_t count = write (f->_fileno, data, to_do);
1270 if (count < 0)
1272 f->_flags |= _IO_ERR_SEEN;
1273 break;
1275 to_do -= count;
1276 data = (void *) ((char *) data + count);
1278 n -= to_do;
1279 if (f->_offset >= 0)
1280 f->_offset += n;
1281 return n;
1284 _IO_size_t
1285 _IO_new_file_xsputn (f, data, n)
1286 _IO_FILE *f;
1287 const void *data;
1288 _IO_size_t n;
1290 register const char *s = (const char *) data;
1291 _IO_size_t to_do = n;
1292 int must_flush = 0;
1293 _IO_size_t count;
1295 if (n <= 0)
1296 return 0;
1297 /* This is an optimized implementation.
1298 If the amount to be written straddles a block boundary
1299 (or the filebuf is unbuffered), use sys_write directly. */
1301 /* First figure out how much space is available in the buffer. */
1302 count = f->_IO_write_end - f->_IO_write_ptr; /* Space available. */
1303 if ((f->_flags & _IO_LINE_BUF) && (f->_flags & _IO_CURRENTLY_PUTTING))
1305 count = f->_IO_buf_end - f->_IO_write_ptr;
1306 if (count >= n)
1308 register const char *p;
1309 for (p = s + n; p > s; )
1311 if (*--p == '\n')
1313 count = p - s + 1;
1314 must_flush = 1;
1315 break;
1320 /* Then fill the buffer. */
1321 if (count > 0)
1323 if (count > to_do)
1324 count = to_do;
1325 if (count > 20)
1327 #ifdef _LIBC
1328 f->_IO_write_ptr = __mempcpy (f->_IO_write_ptr, s, count);
1329 #else
1330 memcpy (f->_IO_write_ptr, s, count);
1331 f->_IO_write_ptr += count;
1332 #endif
1333 s += count;
1335 else
1337 register char *p = f->_IO_write_ptr;
1338 register int i = (int) count;
1339 while (--i >= 0)
1340 *p++ = *s++;
1341 f->_IO_write_ptr = p;
1343 to_do -= count;
1345 if (to_do + must_flush > 0)
1347 _IO_size_t block_size, do_write;
1348 /* Next flush the (full) buffer. */
1349 if (_IO_OVERFLOW (f, EOF) == EOF)
1350 return n - to_do;
1352 /* Try to maintain alignment: write a whole number of blocks.
1353 dont_write is what gets left over. */
1354 block_size = f->_IO_buf_end - f->_IO_buf_base;
1355 do_write = to_do - (block_size >= 128 ? to_do % block_size : 0);
1357 if (do_write)
1359 count = new_do_write (f, s, do_write);
1360 to_do -= count;
1361 if (count < do_write)
1362 return n - to_do;
1365 /* Now write out the remainder. Normally, this will fit in the
1366 buffer, but it's somewhat messier for line-buffered files,
1367 so we let _IO_default_xsputn handle the general case. */
1368 if (to_do)
1369 to_do -= INTUSE(_IO_default_xsputn) (f, s+do_write, to_do);
1371 return n - to_do;
1373 INTDEF2(_IO_new_file_xsputn, _IO_file_xsputn)
1375 _IO_size_t
1376 _IO_file_xsgetn (fp, data, n)
1377 _IO_FILE *fp;
1378 void *data;
1379 _IO_size_t n;
1381 register _IO_size_t want, have;
1382 register _IO_ssize_t count;
1383 register char *s = data;
1385 want = n;
1387 if (fp->_IO_buf_base == NULL)
1389 /* Maybe we already have a push back pointer. */
1390 if (fp->_IO_save_base != NULL)
1392 free (fp->_IO_save_base);
1393 fp->_flags &= ~_IO_IN_BACKUP;
1395 INTUSE(_IO_doallocbuf) (fp);
1398 while (want > 0)
1400 have = fp->_IO_read_end - fp->_IO_read_ptr;
1401 if (want <= have)
1403 memcpy (s, fp->_IO_read_ptr, want);
1404 fp->_IO_read_ptr += want;
1405 want = 0;
1407 else
1409 if (have > 0)
1411 #ifdef _LIBC
1412 s = __mempcpy (s, fp->_IO_read_ptr, have);
1413 #else
1414 memcpy (s, fp->_IO_read_ptr, have);
1415 s += have;
1416 #endif
1417 want -= have;
1418 fp->_IO_read_ptr += have;
1421 /* Check for backup and repeat */
1422 if (_IO_in_backup (fp))
1424 _IO_switch_to_main_get_area (fp);
1425 continue;
1428 /* If we now want less than a buffer, underflow and repeat
1429 the copy. Otherwise, _IO_SYSREAD directly to
1430 the user buffer. */
1431 if (fp->_IO_buf_base
1432 && want < (size_t) (fp->_IO_buf_end - fp->_IO_buf_base))
1434 if (__underflow (fp) == EOF)
1435 break;
1437 continue;
1440 /* These must be set before the sysread as we might longjmp out
1441 waiting for input. */
1442 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
1443 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
1445 /* Try to maintain alignment: read a whole number of blocks. */
1446 count = want;
1447 if (fp->_IO_buf_base)
1449 _IO_size_t block_size = fp->_IO_buf_end - fp->_IO_buf_base;
1450 if (block_size >= 128)
1451 count -= want % block_size;
1454 count = _IO_SYSREAD (fp, s, count);
1455 if (count <= 0)
1457 if (count == 0)
1458 fp->_flags |= _IO_EOF_SEEN;
1459 else
1460 fp->_flags |= _IO_ERR_SEEN;
1462 break;
1465 s += count;
1466 want -= count;
1467 if (fp->_offset != _IO_pos_BAD)
1468 _IO_pos_adjust (fp->_offset, count);
1472 return n - want;
1474 INTDEF(_IO_file_xsgetn)
1476 static _IO_size_t _IO_file_xsgetn_mmap __P ((_IO_FILE *, void *, _IO_size_t));
1477 static _IO_size_t
1478 _IO_file_xsgetn_mmap (fp, data, n)
1479 _IO_FILE *fp;
1480 void *data;
1481 _IO_size_t n;
1483 register _IO_size_t have;
1484 char *read_ptr = fp->_IO_read_ptr;
1485 register char *s = (char *) data;
1487 have = fp->_IO_read_end - fp->_IO_read_ptr;
1489 if (have < n)
1491 if (__builtin_expect (_IO_in_backup (fp), 0))
1493 #ifdef _LIBC
1494 s = __mempcpy (s, read_ptr, have);
1495 #else
1496 memcpy (s, read_ptr, have);
1497 s += have;
1498 #endif
1499 n -= have;
1500 _IO_switch_to_main_get_area (fp);
1501 read_ptr = fp->_IO_read_ptr;
1502 have = fp->_IO_read_end - fp->_IO_read_ptr;
1505 if (have < n)
1507 /* Check that we are mapping all of the file, in case it grew. */
1508 if (__builtin_expect (mmap_remap_check (fp), 0))
1509 /* We punted mmap, so complete with the vanilla code. */
1510 return s - (char *) data + _IO_XSGETN (fp, data, n);
1512 read_ptr = fp->_IO_read_ptr;
1513 have = fp->_IO_read_end - read_ptr;
1517 if (have < n)
1518 fp->_flags |= _IO_EOF_SEEN;
1520 if (have != 0)
1522 have = MIN (have, n);
1523 #ifdef _LIBC
1524 s = __mempcpy (s, read_ptr, have);
1525 #else
1526 memcpy (s, read_ptr, have);
1527 s += have;
1528 #endif
1529 fp->_IO_read_ptr = read_ptr + have;
1532 return s - (char *) data;
1535 static _IO_size_t _IO_file_xsgetn_maybe_mmap __P ((_IO_FILE *, void *,
1536 _IO_size_t));
1537 static _IO_size_t
1538 _IO_file_xsgetn_maybe_mmap (fp, data, n)
1539 _IO_FILE *fp;
1540 void *data;
1541 _IO_size_t 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);
1550 #ifdef _LIBC
1551 # undef _IO_do_write
1552 versioned_symbol (libc, _IO_new_do_write, _IO_do_write, GLIBC_2_1);
1553 versioned_symbol (libc, _IO_new_file_attach, _IO_file_attach, GLIBC_2_1);
1554 versioned_symbol (libc, _IO_new_file_close_it, _IO_file_close_it, GLIBC_2_1);
1555 versioned_symbol (libc, _IO_new_file_finish, _IO_file_finish, GLIBC_2_1);
1556 versioned_symbol (libc, _IO_new_file_fopen, _IO_file_fopen, GLIBC_2_1);
1557 versioned_symbol (libc, _IO_new_file_init, _IO_file_init, GLIBC_2_1);
1558 versioned_symbol (libc, _IO_new_file_setbuf, _IO_file_setbuf, GLIBC_2_1);
1559 versioned_symbol (libc, _IO_new_file_sync, _IO_file_sync, GLIBC_2_1);
1560 versioned_symbol (libc, _IO_new_file_overflow, _IO_file_overflow, GLIBC_2_1);
1561 versioned_symbol (libc, _IO_new_file_seekoff, _IO_file_seekoff, GLIBC_2_1);
1562 versioned_symbol (libc, _IO_new_file_underflow, _IO_file_underflow, GLIBC_2_1);
1563 versioned_symbol (libc, _IO_new_file_write, _IO_file_write, GLIBC_2_1);
1564 versioned_symbol (libc, _IO_new_file_xsputn, _IO_file_xsputn, GLIBC_2_1);
1565 #endif
1567 struct _IO_jump_t _IO_file_jumps =
1569 JUMP_INIT_DUMMY,
1570 JUMP_INIT(finish, INTUSE(_IO_file_finish)),
1571 JUMP_INIT(overflow, INTUSE(_IO_file_overflow)),
1572 JUMP_INIT(underflow, INTUSE(_IO_file_underflow)),
1573 JUMP_INIT(uflow, INTUSE(_IO_default_uflow)),
1574 JUMP_INIT(pbackfail, INTUSE(_IO_default_pbackfail)),
1575 JUMP_INIT(xsputn, INTUSE(_IO_file_xsputn)),
1576 JUMP_INIT(xsgetn, INTUSE(_IO_file_xsgetn)),
1577 JUMP_INIT(seekoff, _IO_new_file_seekoff),
1578 JUMP_INIT(seekpos, _IO_default_seekpos),
1579 JUMP_INIT(setbuf, _IO_new_file_setbuf),
1580 JUMP_INIT(sync, _IO_new_file_sync),
1581 JUMP_INIT(doallocate, INTUSE(_IO_file_doallocate)),
1582 JUMP_INIT(read, INTUSE(_IO_file_read)),
1583 JUMP_INIT(write, _IO_new_file_write),
1584 JUMP_INIT(seek, INTUSE(_IO_file_seek)),
1585 JUMP_INIT(close, INTUSE(_IO_file_close)),
1586 JUMP_INIT(stat, INTUSE(_IO_file_stat)),
1587 JUMP_INIT(showmanyc, _IO_default_showmanyc),
1588 JUMP_INIT(imbue, _IO_default_imbue)
1590 INTVARDEF(_IO_file_jumps)
1592 struct _IO_jump_t _IO_file_jumps_mmap =
1594 JUMP_INIT_DUMMY,
1595 JUMP_INIT(finish, INTUSE(_IO_file_finish)),
1596 JUMP_INIT(overflow, INTUSE(_IO_file_overflow)),
1597 JUMP_INIT(underflow, _IO_file_underflow_mmap),
1598 JUMP_INIT(uflow, INTUSE(_IO_default_uflow)),
1599 JUMP_INIT(pbackfail, INTUSE(_IO_default_pbackfail)),
1600 JUMP_INIT(xsputn, _IO_new_file_xsputn),
1601 JUMP_INIT(xsgetn, _IO_file_xsgetn_mmap),
1602 JUMP_INIT(seekoff, _IO_file_seekoff_mmap),
1603 JUMP_INIT(seekpos, _IO_default_seekpos),
1604 JUMP_INIT(setbuf, (_IO_setbuf_t) _IO_file_setbuf_mmap),
1605 JUMP_INIT(sync, _IO_file_sync_mmap),
1606 JUMP_INIT(doallocate, INTUSE(_IO_file_doallocate)),
1607 JUMP_INIT(read, INTUSE(_IO_file_read)),
1608 JUMP_INIT(write, _IO_new_file_write),
1609 JUMP_INIT(seek, INTUSE(_IO_file_seek)),
1610 JUMP_INIT(close, _IO_file_close_mmap),
1611 JUMP_INIT(stat, INTUSE(_IO_file_stat)),
1612 JUMP_INIT(showmanyc, _IO_default_showmanyc),
1613 JUMP_INIT(imbue, _IO_default_imbue)
1616 struct _IO_jump_t _IO_file_jumps_maybe_mmap =
1618 JUMP_INIT_DUMMY,
1619 JUMP_INIT(finish, INTUSE(_IO_file_finish)),
1620 JUMP_INIT(overflow, INTUSE(_IO_file_overflow)),
1621 JUMP_INIT(underflow, _IO_file_underflow_maybe_mmap),
1622 JUMP_INIT(uflow, INTUSE(_IO_default_uflow)),
1623 JUMP_INIT(pbackfail, INTUSE(_IO_default_pbackfail)),
1624 JUMP_INIT(xsputn, _IO_new_file_xsputn),
1625 JUMP_INIT(xsgetn, _IO_file_xsgetn_maybe_mmap),
1626 JUMP_INIT(seekoff, _IO_file_seekoff_maybe_mmap),
1627 JUMP_INIT(seekpos, _IO_default_seekpos),
1628 JUMP_INIT(setbuf, (_IO_setbuf_t) _IO_file_setbuf_mmap),
1629 JUMP_INIT(sync, _IO_new_file_sync),
1630 JUMP_INIT(doallocate, INTUSE(_IO_file_doallocate)),
1631 JUMP_INIT(read, INTUSE(_IO_file_read)),
1632 JUMP_INIT(write, _IO_new_file_write),
1633 JUMP_INIT(seek, INTUSE(_IO_file_seek)),
1634 JUMP_INIT(close, _IO_file_close),
1635 JUMP_INIT(stat, INTUSE(_IO_file_stat)),
1636 JUMP_INIT(showmanyc, _IO_default_showmanyc),
1637 JUMP_INIT(imbue, _IO_default_imbue)