PowerPC: remove wrong roundl implementation for PowerPC64
[glibc.git] / libio / fileops.c
blob2e7bc8dad9ad6ddffc7ad2d7ac86559636a720da
1 /* Copyright (C) 1993-2014 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, see
17 <http://www.gnu.org/licenses/>.
19 As a special exception, if you link the code in this file with
20 files compiled with a GNU compiler to produce an executable,
21 that does not cause the resulting executable to be covered by
22 the GNU Lesser General Public License. This exception does not
23 however invalidate any other reasons why the executable file
24 might be covered by the GNU Lesser General Public License.
25 This exception applies to code released by its copyright holders
26 in files containing the exception. */
29 #ifndef _POSIX_SOURCE
30 # define _POSIX_SOURCE
31 #endif
32 #include "libioP.h"
33 #include <assert.h>
34 #include <fcntl.h>
35 #include <sys/param.h>
36 #include <sys/types.h>
37 #include <sys/stat.h>
38 #include <string.h>
39 #include <errno.h>
40 #include <unistd.h>
41 #include <stdlib.h>
42 #if _LIBC
43 # include "../wcsmbs/wcsmbsload.h"
44 # include "../iconv/gconv_charset.h"
45 # include "../iconv/gconv_int.h"
46 # include <shlib-compat.h>
47 # include <not-cancel.h>
48 # include <kernel-features.h>
49 #endif
50 #ifndef errno
51 extern int errno;
52 #endif
53 #ifndef __set_errno
54 # define __set_errno(Val) errno = (Val)
55 #endif
58 #ifdef _LIBC
59 # define open(Name, Flags, Prot) __open (Name, Flags, Prot)
60 # define lseek(FD, Offset, Whence) __lseek (FD, Offset, Whence)
61 # define read(FD, Buf, NBytes) __read (FD, Buf, NBytes)
62 # define write(FD, Buf, NBytes) __write (FD, Buf, NBytes)
63 #else
64 # define _IO_new_do_write _IO_do_write
65 # define _IO_new_file_attach _IO_file_attach
66 # define _IO_new_file_close_it _IO_file_close_it
67 # define _IO_new_file_finish _IO_file_finish
68 # define _IO_new_file_fopen _IO_file_fopen
69 # define _IO_new_file_init _IO_file_init
70 # define _IO_new_file_setbuf _IO_file_setbuf
71 # define _IO_new_file_sync _IO_file_sync
72 # define _IO_new_file_overflow _IO_file_overflow
73 # define _IO_new_file_seekoff _IO_file_seekoff
74 # define _IO_new_file_underflow _IO_file_underflow
75 # define _IO_new_file_write _IO_file_write
76 # define _IO_new_file_xsputn _IO_file_xsputn
77 #endif
80 #ifdef _LIBC
81 extern struct __gconv_trans_data __libio_translit attribute_hidden;
82 #endif
85 /* An fstream can be in at most one of put mode, get mode, or putback mode.
86 Putback mode is a variant of get mode.
88 In a filebuf, there is only one current position, instead of two
89 separate get and put pointers. In get mode, the current position
90 is that of gptr(); in put mode that of pptr().
92 The position in the buffer that corresponds to the position
93 in external file system is normally _IO_read_end, except in putback
94 mode, when it is _IO_save_end.
95 If the field _fb._offset is >= 0, it gives the offset in
96 the file as a whole corresponding to eGptr(). (?)
98 PUT MODE:
99 If a filebuf is in put mode, then all of _IO_read_ptr, _IO_read_end,
100 and _IO_read_base are equal to each other. These are usually equal
101 to _IO_buf_base, though not necessarily if we have switched from
102 get mode to put mode. (The reason is to maintain the invariant
103 that _IO_read_end corresponds to the external file position.)
104 _IO_write_base is non-NULL and usually equal to _IO_buf_base.
105 We also have _IO_write_end == _IO_buf_end, but only in fully buffered mode.
106 The un-flushed character are those between _IO_write_base and _IO_write_ptr.
108 GET MODE:
109 If a filebuf is in get or putback mode, eback() != egptr().
110 In get mode, the unread characters are between gptr() and egptr().
111 The OS file position corresponds to that of egptr().
113 PUTBACK MODE:
114 Putback mode is used to remember "excess" characters that have
115 been sputbackc'd in a separate putback buffer.
116 In putback mode, the get buffer points to the special putback buffer.
117 The unread characters are the characters between gptr() and egptr()
118 in the putback buffer, as well as the area between save_gptr()
119 and save_egptr(), which point into the original reserve buffer.
120 (The pointers save_gptr() and save_egptr() are the values
121 of gptr() and egptr() at the time putback mode was entered.)
122 The OS position corresponds to that of save_egptr().
124 LINE BUFFERED OUTPUT:
125 During line buffered output, _IO_write_base==base() && epptr()==base().
126 However, ptr() may be anywhere between base() and ebuf().
127 This forces a call to filebuf::overflow(int C) on every put.
128 If there is more space in the buffer, and C is not a '\n',
129 then C is inserted, and pptr() incremented.
131 UNBUFFERED STREAMS:
132 If a filebuf is unbuffered(), the _shortbuf[1] is used as the buffer.
135 #define CLOSED_FILEBUF_FLAGS \
136 (_IO_IS_FILEBUF+_IO_NO_READS+_IO_NO_WRITES+_IO_TIED_PUT_GET)
139 void
140 _IO_new_file_init (fp)
141 struct _IO_FILE_plus *fp;
143 /* POSIX.1 allows another file handle to be used to change the position
144 of our file descriptor. Hence we actually don't know the actual
145 position before we do the first fseek (and until a following fflush). */
146 fp->file._offset = _IO_pos_BAD;
147 fp->file._IO_file_flags |= CLOSED_FILEBUF_FLAGS;
149 _IO_link_in (fp);
150 fp->file._fileno = -1;
152 libc_hidden_ver (_IO_new_file_init, _IO_file_init)
155 _IO_new_file_close_it (fp)
156 _IO_FILE *fp;
158 int write_status;
159 if (!_IO_file_is_open (fp))
160 return EOF;
162 if ((fp->_flags & _IO_NO_WRITES) == 0
163 && (fp->_flags & _IO_CURRENTLY_PUTTING) != 0)
164 write_status = _IO_do_flush (fp);
165 else
166 write_status = 0;
168 _IO_unsave_markers (fp);
170 int close_status = ((fp->_flags2 & _IO_FLAGS2_NOCLOSE) == 0
171 ? _IO_SYSCLOSE (fp) : 0);
173 /* Free buffer. */
174 #if defined _LIBC || defined _GLIBCPP_USE_WCHAR_T
175 if (fp->_mode > 0)
177 if (_IO_have_wbackup (fp))
178 _IO_free_wbackup_area (fp);
179 _IO_wsetb (fp, NULL, NULL, 0);
180 _IO_wsetg (fp, NULL, NULL, NULL);
181 _IO_wsetp (fp, NULL, NULL);
183 #endif
184 _IO_setb (fp, NULL, NULL, 0);
185 _IO_setg (fp, NULL, NULL, NULL);
186 _IO_setp (fp, NULL, NULL);
188 _IO_un_link ((struct _IO_FILE_plus *) fp);
189 fp->_flags = _IO_MAGIC|CLOSED_FILEBUF_FLAGS;
190 fp->_fileno = -1;
191 fp->_offset = _IO_pos_BAD;
193 return close_status ? close_status : write_status;
195 libc_hidden_ver (_IO_new_file_close_it, _IO_file_close_it)
197 void
198 _IO_new_file_finish (fp, dummy)
199 _IO_FILE *fp;
200 int dummy;
202 if (_IO_file_is_open (fp))
204 _IO_do_flush (fp);
205 if (!(fp->_flags & _IO_DELETE_DONT_CLOSE))
206 _IO_SYSCLOSE (fp);
208 _IO_default_finish (fp, 0);
210 libc_hidden_ver (_IO_new_file_finish, _IO_file_finish)
212 _IO_FILE *
213 _IO_file_open (fp, filename, posix_mode, prot, read_write, is32not64)
214 _IO_FILE *fp;
215 const char *filename;
216 int posix_mode;
217 int prot;
218 int read_write;
219 int is32not64;
221 int fdesc;
222 #ifdef _LIBC
223 if (__glibc_unlikely (fp->_flags2 & _IO_FLAGS2_NOTCANCEL))
224 fdesc = open_not_cancel (filename,
225 posix_mode | (is32not64 ? 0 : O_LARGEFILE), prot);
226 else
227 fdesc = open (filename, posix_mode | (is32not64 ? 0 : O_LARGEFILE), prot);
228 #else
229 fdesc = open (filename, posix_mode, prot);
230 #endif
231 if (fdesc < 0)
232 return NULL;
233 fp->_fileno = fdesc;
234 _IO_mask_flags (fp, read_write,_IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING);
235 if ((read_write & _IO_IS_APPENDING) && (read_write & _IO_NO_READS))
236 if (_IO_SEEKOFF (fp, (_IO_off64_t)0, _IO_seek_end, _IOS_INPUT|_IOS_OUTPUT)
237 == _IO_pos_BAD && errno != ESPIPE)
239 close_not_cancel (fdesc);
240 return NULL;
242 _IO_link_in ((struct _IO_FILE_plus *) fp);
243 return fp;
245 libc_hidden_def (_IO_file_open)
247 _IO_FILE *
248 _IO_new_file_fopen (fp, filename, mode, is32not64)
249 _IO_FILE *fp;
250 const char *filename;
251 const char *mode;
252 int is32not64;
254 int oflags = 0, omode;
255 int read_write;
256 int oprot = 0666;
257 int i;
258 _IO_FILE *result;
259 #ifdef _LIBC
260 const char *cs;
261 const char *last_recognized;
262 #endif
264 if (_IO_file_is_open (fp))
265 return 0;
266 switch (*mode)
268 case 'r':
269 omode = O_RDONLY;
270 read_write = _IO_NO_WRITES;
271 break;
272 case 'w':
273 omode = O_WRONLY;
274 oflags = O_CREAT|O_TRUNC;
275 read_write = _IO_NO_READS;
276 break;
277 case 'a':
278 omode = O_WRONLY;
279 oflags = O_CREAT|O_APPEND;
280 read_write = _IO_NO_READS|_IO_IS_APPENDING;
281 break;
282 default:
283 __set_errno (EINVAL);
284 return NULL;
286 #ifdef _LIBC
287 last_recognized = mode;
288 #endif
289 for (i = 1; i < 7; ++i)
291 switch (*++mode)
293 case '\0':
294 break;
295 case '+':
296 omode = O_RDWR;
297 read_write &= _IO_IS_APPENDING;
298 #ifdef _LIBC
299 last_recognized = mode;
300 #endif
301 continue;
302 case 'x':
303 oflags |= O_EXCL;
304 #ifdef _LIBC
305 last_recognized = mode;
306 #endif
307 continue;
308 case 'b':
309 #ifdef _LIBC
310 last_recognized = mode;
311 #endif
312 continue;
313 case 'm':
314 fp->_flags2 |= _IO_FLAGS2_MMAP;
315 continue;
316 case 'c':
317 fp->_flags2 |= _IO_FLAGS2_NOTCANCEL;
318 continue;
319 case 'e':
320 #ifdef O_CLOEXEC
321 oflags |= O_CLOEXEC;
322 #endif
323 fp->_flags2 |= _IO_FLAGS2_CLOEXEC;
324 continue;
325 default:
326 /* Ignore. */
327 continue;
329 break;
332 result = _IO_file_open (fp, filename, omode|oflags, oprot, read_write,
333 is32not64);
335 if (result != NULL)
337 #ifndef __ASSUME_O_CLOEXEC
338 if ((fp->_flags2 & _IO_FLAGS2_CLOEXEC) != 0 && __have_o_cloexec <= 0)
340 int fd = _IO_fileno (fp);
341 if (__have_o_cloexec == 0)
343 int flags = __fcntl (fd, F_GETFD);
344 __have_o_cloexec = (flags & FD_CLOEXEC) == 0 ? -1 : 1;
346 if (__have_o_cloexec < 0)
347 __fcntl (fd, F_SETFD, FD_CLOEXEC);
349 #endif
351 /* Test whether the mode string specifies the conversion. */
352 cs = strstr (last_recognized + 1, ",ccs=");
353 if (cs != NULL)
355 /* Yep. Load the appropriate conversions and set the orientation
356 to wide. */
357 struct gconv_fcts fcts;
358 struct _IO_codecvt *cc;
359 char *endp = __strchrnul (cs + 5, ',');
360 char ccs[endp - (cs + 5) + 3];
362 *((char *) __mempcpy (ccs, cs + 5, endp - (cs + 5))) = '\0';
363 strip (ccs, ccs);
365 if (__wcsmbs_named_conv (&fcts, ccs[2] == '\0'
366 ? upstr (ccs, cs + 5) : ccs) != 0)
368 /* Something went wrong, we cannot load the conversion modules.
369 This means we cannot proceed since the user explicitly asked
370 for these. */
371 (void) _IO_file_close_it (fp);
372 __set_errno (EINVAL);
373 return NULL;
376 assert (fcts.towc_nsteps == 1);
377 assert (fcts.tomb_nsteps == 1);
379 fp->_wide_data->_IO_read_ptr = fp->_wide_data->_IO_read_end;
380 fp->_wide_data->_IO_write_ptr = fp->_wide_data->_IO_write_base;
382 /* Clear the state. We start all over again. */
383 memset (&fp->_wide_data->_IO_state, '\0', sizeof (__mbstate_t));
384 memset (&fp->_wide_data->_IO_last_state, '\0', sizeof (__mbstate_t));
386 cc = fp->_codecvt = &fp->_wide_data->_codecvt;
388 /* The functions are always the same. */
389 *cc = __libio_codecvt;
391 cc->__cd_in.__cd.__nsteps = fcts.towc_nsteps;
392 cc->__cd_in.__cd.__steps = fcts.towc;
394 cc->__cd_in.__cd.__data[0].__invocation_counter = 0;
395 cc->__cd_in.__cd.__data[0].__internal_use = 1;
396 cc->__cd_in.__cd.__data[0].__flags = __GCONV_IS_LAST;
397 cc->__cd_in.__cd.__data[0].__statep = &result->_wide_data->_IO_state;
399 /* XXX For now no transliteration. */
400 cc->__cd_in.__cd.__data[0].__trans = NULL;
402 cc->__cd_out.__cd.__nsteps = fcts.tomb_nsteps;
403 cc->__cd_out.__cd.__steps = fcts.tomb;
405 cc->__cd_out.__cd.__data[0].__invocation_counter = 0;
406 cc->__cd_out.__cd.__data[0].__internal_use = 1;
407 cc->__cd_out.__cd.__data[0].__flags = __GCONV_IS_LAST;
408 cc->__cd_out.__cd.__data[0].__statep =
409 &result->_wide_data->_IO_state;
411 /* And now the transliteration. */
412 cc->__cd_out.__cd.__data[0].__trans = &__libio_translit;
414 /* From now on use the wide character callback functions. */
415 ((struct _IO_FILE_plus *) fp)->vtable = fp->_wide_data->_wide_vtable;
417 /* Set the mode now. */
418 result->_mode = 1;
422 return result;
424 libc_hidden_ver (_IO_new_file_fopen, _IO_file_fopen)
426 _IO_FILE *
427 _IO_new_file_attach (fp, fd)
428 _IO_FILE *fp;
429 int fd;
431 if (_IO_file_is_open (fp))
432 return NULL;
433 fp->_fileno = fd;
434 fp->_flags &= ~(_IO_NO_READS+_IO_NO_WRITES);
435 fp->_flags |= _IO_DELETE_DONT_CLOSE;
436 /* Get the current position of the file. */
437 /* We have to do that since that may be junk. */
438 fp->_offset = _IO_pos_BAD;
439 int save_errno = errno;
440 if (_IO_SEEKOFF (fp, (_IO_off64_t)0, _IO_seek_cur, _IOS_INPUT|_IOS_OUTPUT)
441 == _IO_pos_BAD && errno != ESPIPE)
442 return NULL;
443 __set_errno (save_errno);
444 return fp;
446 libc_hidden_ver (_IO_new_file_attach, _IO_file_attach)
448 _IO_FILE *
449 _IO_new_file_setbuf (fp, p, len)
450 _IO_FILE *fp;
451 char *p;
452 _IO_ssize_t len;
454 if (_IO_default_setbuf (fp, p, len) == NULL)
455 return NULL;
457 fp->_IO_write_base = fp->_IO_write_ptr = fp->_IO_write_end
458 = fp->_IO_buf_base;
459 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
461 return fp;
463 libc_hidden_ver (_IO_new_file_setbuf, _IO_file_setbuf)
466 _IO_FILE *
467 _IO_file_setbuf_mmap (fp, p, len)
468 _IO_FILE *fp;
469 char *p;
470 _IO_ssize_t len;
472 _IO_FILE *result;
474 /* Change the function table. */
475 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &_IO_file_jumps;
476 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps;
478 /* And perform the normal operation. */
479 result = _IO_new_file_setbuf (fp, p, len);
481 /* If the call failed, restore to using mmap. */
482 if (result == NULL)
484 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &_IO_file_jumps_mmap;
485 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps_mmap;
488 return result;
491 static _IO_size_t new_do_write (_IO_FILE *, const char *, _IO_size_t);
493 /* Write TO_DO bytes from DATA to FP.
494 Then mark FP as having empty buffers. */
497 _IO_new_do_write (fp, data, to_do)
498 _IO_FILE *fp;
499 const char *data;
500 _IO_size_t to_do;
502 return (to_do == 0
503 || (_IO_size_t) new_do_write (fp, data, to_do) == to_do) ? 0 : EOF;
505 libc_hidden_ver (_IO_new_do_write, _IO_do_write)
507 static
508 _IO_size_t
509 new_do_write (fp, data, to_do)
510 _IO_FILE *fp;
511 const char *data;
512 _IO_size_t to_do;
514 _IO_size_t count;
515 if (fp->_flags & _IO_IS_APPENDING)
516 /* On a system without a proper O_APPEND implementation,
517 you would need to sys_seek(0, SEEK_END) here, but is
518 not needed nor desirable for Unix- or Posix-like systems.
519 Instead, just indicate that offset (before and after) is
520 unpredictable. */
521 fp->_offset = _IO_pos_BAD;
522 else if (fp->_IO_read_end != fp->_IO_write_base)
524 _IO_off64_t new_pos
525 = _IO_SYSSEEK (fp, fp->_IO_write_base - fp->_IO_read_end, 1);
526 if (new_pos == _IO_pos_BAD)
527 return 0;
528 fp->_offset = new_pos;
530 count = _IO_SYSWRITE (fp, data, to_do);
531 if (fp->_cur_column && count)
532 fp->_cur_column = _IO_adjust_column (fp->_cur_column - 1, data, count) + 1;
533 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
534 fp->_IO_write_base = fp->_IO_write_ptr = fp->_IO_buf_base;
535 fp->_IO_write_end = (fp->_mode <= 0
536 && (fp->_flags & (_IO_LINE_BUF+_IO_UNBUFFERED))
537 ? fp->_IO_buf_base : fp->_IO_buf_end);
538 return count;
542 _IO_new_file_underflow (fp)
543 _IO_FILE *fp;
545 _IO_ssize_t count;
546 #if 0
547 /* SysV does not make this test; take it out for compatibility */
548 if (fp->_flags & _IO_EOF_SEEN)
549 return (EOF);
550 #endif
552 if (fp->_flags & _IO_NO_READS)
554 fp->_flags |= _IO_ERR_SEEN;
555 __set_errno (EBADF);
556 return EOF;
558 if (fp->_IO_read_ptr < fp->_IO_read_end)
559 return *(unsigned char *) fp->_IO_read_ptr;
561 if (fp->_IO_buf_base == NULL)
563 /* Maybe we already have a push back pointer. */
564 if (fp->_IO_save_base != NULL)
566 free (fp->_IO_save_base);
567 fp->_flags &= ~_IO_IN_BACKUP;
569 _IO_doallocbuf (fp);
572 /* Flush all line buffered files before reading. */
573 /* FIXME This can/should be moved to genops ?? */
574 if (fp->_flags & (_IO_LINE_BUF|_IO_UNBUFFERED))
576 #if 0
577 _IO_flush_all_linebuffered ();
578 #else
579 /* We used to flush all line-buffered stream. This really isn't
580 required by any standard. My recollection is that
581 traditional Unix systems did this for stdout. stderr better
582 not be line buffered. So we do just that here
583 explicitly. --drepper */
584 _IO_acquire_lock (_IO_stdout);
586 if ((_IO_stdout->_flags & (_IO_LINKED | _IO_NO_WRITES | _IO_LINE_BUF))
587 == (_IO_LINKED | _IO_LINE_BUF))
588 _IO_OVERFLOW (_IO_stdout, EOF);
590 _IO_release_lock (_IO_stdout);
591 #endif
594 _IO_switch_to_get_mode (fp);
596 /* This is very tricky. We have to adjust those
597 pointers before we call _IO_SYSREAD () since
598 we may longjump () out while waiting for
599 input. Those pointers may be screwed up. H.J. */
600 fp->_IO_read_base = fp->_IO_read_ptr = fp->_IO_buf_base;
601 fp->_IO_read_end = fp->_IO_buf_base;
602 fp->_IO_write_base = fp->_IO_write_ptr = fp->_IO_write_end
603 = fp->_IO_buf_base;
605 count = _IO_SYSREAD (fp, fp->_IO_buf_base,
606 fp->_IO_buf_end - fp->_IO_buf_base);
607 if (count <= 0)
609 if (count == 0)
610 fp->_flags |= _IO_EOF_SEEN;
611 else
612 fp->_flags |= _IO_ERR_SEEN, count = 0;
614 fp->_IO_read_end += count;
615 if (count == 0)
616 return EOF;
617 if (fp->_offset != _IO_pos_BAD)
618 _IO_pos_adjust (fp->_offset, count);
619 return *(unsigned char *) fp->_IO_read_ptr;
621 libc_hidden_ver (_IO_new_file_underflow, _IO_file_underflow)
623 /* Guts of underflow callback if we mmap the file. This stats the file and
624 updates the stream state to match. In the normal case we return zero.
625 If the file is no longer eligible for mmap, its jump tables are reset to
626 the vanilla ones and we return nonzero. */
627 static int
628 mmap_remap_check (_IO_FILE *fp)
630 struct stat64 st;
632 if (_IO_SYSSTAT (fp, &st) == 0
633 && S_ISREG (st.st_mode) && st.st_size != 0
634 /* Limit the file size to 1MB for 32-bit machines. */
635 && (sizeof (ptrdiff_t) > 4 || st.st_size < 1*1024*1024))
637 const size_t pagesize = __getpagesize ();
638 # define ROUNDED(x) (((x) + pagesize - 1) & ~(pagesize - 1))
639 if (ROUNDED (st.st_size) < ROUNDED (fp->_IO_buf_end
640 - fp->_IO_buf_base))
642 /* We can trim off some pages past the end of the file. */
643 (void) __munmap (fp->_IO_buf_base + ROUNDED (st.st_size),
644 ROUNDED (fp->_IO_buf_end - fp->_IO_buf_base)
645 - ROUNDED (st.st_size));
646 fp->_IO_buf_end = fp->_IO_buf_base + st.st_size;
648 else if (ROUNDED (st.st_size) > ROUNDED (fp->_IO_buf_end
649 - fp->_IO_buf_base))
651 /* The file added some pages. We need to remap it. */
652 void *p;
653 #ifdef _G_HAVE_MREMAP
654 p = __mremap (fp->_IO_buf_base, ROUNDED (fp->_IO_buf_end
655 - fp->_IO_buf_base),
656 ROUNDED (st.st_size), MREMAP_MAYMOVE);
657 if (p == MAP_FAILED)
659 (void) __munmap (fp->_IO_buf_base,
660 fp->_IO_buf_end - fp->_IO_buf_base);
661 goto punt;
663 #else
664 (void) __munmap (fp->_IO_buf_base,
665 fp->_IO_buf_end - fp->_IO_buf_base);
666 p = __mmap64 (NULL, st.st_size, PROT_READ, MAP_SHARED,
667 fp->_fileno, 0);
668 if (p == MAP_FAILED)
669 goto punt;
670 #endif
671 fp->_IO_buf_base = p;
672 fp->_IO_buf_end = fp->_IO_buf_base + st.st_size;
674 else
676 /* The number of pages didn't change. */
677 fp->_IO_buf_end = fp->_IO_buf_base + st.st_size;
679 # undef ROUNDED
681 fp->_offset -= fp->_IO_read_end - fp->_IO_read_ptr;
682 _IO_setg (fp, fp->_IO_buf_base,
683 fp->_offset < fp->_IO_buf_end - fp->_IO_buf_base
684 ? fp->_IO_buf_base + fp->_offset : fp->_IO_buf_end,
685 fp->_IO_buf_end);
687 /* If we are already positioned at or past the end of the file, don't
688 change the current offset. If not, seek past what we have mapped,
689 mimicking the position left by a normal underflow reading into its
690 buffer until EOF. */
692 if (fp->_offset < fp->_IO_buf_end - fp->_IO_buf_base)
694 if (__lseek64 (fp->_fileno, fp->_IO_buf_end - fp->_IO_buf_base,
695 SEEK_SET)
696 != fp->_IO_buf_end - fp->_IO_buf_base)
697 fp->_flags |= _IO_ERR_SEEN;
698 else
699 fp->_offset = fp->_IO_buf_end - fp->_IO_buf_base;
702 return 0;
704 else
706 /* Life is no longer good for mmap. Punt it. */
707 (void) __munmap (fp->_IO_buf_base,
708 fp->_IO_buf_end - fp->_IO_buf_base);
709 punt:
710 fp->_IO_buf_base = fp->_IO_buf_end = NULL;
711 _IO_setg (fp, NULL, NULL, NULL);
712 if (fp->_mode <= 0)
713 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &_IO_file_jumps;
714 else
715 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &_IO_wfile_jumps;
716 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps;
718 return 1;
722 /* Special callback replacing the underflow callbacks if we mmap the file. */
724 _IO_file_underflow_mmap (_IO_FILE *fp)
726 if (fp->_IO_read_ptr < fp->_IO_read_end)
727 return *(unsigned char *) fp->_IO_read_ptr;
729 if (__glibc_unlikely (mmap_remap_check (fp)))
730 /* We punted to the regular file functions. */
731 return _IO_UNDERFLOW (fp);
733 if (fp->_IO_read_ptr < fp->_IO_read_end)
734 return *(unsigned char *) fp->_IO_read_ptr;
736 fp->_flags |= _IO_EOF_SEEN;
737 return EOF;
740 static void
741 decide_maybe_mmap (_IO_FILE *fp)
743 /* We use the file in read-only mode. This could mean we can
744 mmap the file and use it without any copying. But not all
745 file descriptors are for mmap-able objects and on 32-bit
746 machines we don't want to map files which are too large since
747 this would require too much virtual memory. */
748 struct stat64 st;
750 if (_IO_SYSSTAT (fp, &st) == 0
751 && S_ISREG (st.st_mode) && st.st_size != 0
752 /* Limit the file size to 1MB for 32-bit machines. */
753 && (sizeof (ptrdiff_t) > 4 || st.st_size < 1*1024*1024)
754 /* Sanity check. */
755 && (fp->_offset == _IO_pos_BAD || fp->_offset <= st.st_size))
757 /* Try to map the file. */
758 void *p;
760 p = __mmap64 (NULL, st.st_size, PROT_READ, MAP_SHARED, fp->_fileno, 0);
761 if (p != MAP_FAILED)
763 /* OK, we managed to map the file. Set the buffer up and use a
764 special jump table with simplified underflow functions which
765 never tries to read anything from the file. */
767 if (__lseek64 (fp->_fileno, st.st_size, SEEK_SET) != st.st_size)
769 (void) __munmap (p, st.st_size);
770 fp->_offset = _IO_pos_BAD;
772 else
774 _IO_setb (fp, p, (char *) p + st.st_size, 0);
776 if (fp->_offset == _IO_pos_BAD)
777 fp->_offset = 0;
779 _IO_setg (fp, p, p + fp->_offset, p + st.st_size);
780 fp->_offset = st.st_size;
782 if (fp->_mode <= 0)
783 _IO_JUMPS ((struct _IO_FILE_plus *)fp) = &_IO_file_jumps_mmap;
784 else
785 _IO_JUMPS ((struct _IO_FILE_plus *)fp) = &_IO_wfile_jumps_mmap;
786 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps_mmap;
788 return;
793 /* We couldn't use mmap, so revert to the vanilla file operations. */
795 if (fp->_mode <= 0)
796 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &_IO_file_jumps;
797 else
798 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &_IO_wfile_jumps;
799 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps;
803 _IO_file_underflow_maybe_mmap (_IO_FILE *fp)
805 /* This is the first read attempt. Choose mmap or vanilla operations
806 and then punt to the chosen underflow routine. */
807 decide_maybe_mmap (fp);
808 return _IO_UNDERFLOW (fp);
813 _IO_new_file_overflow (f, ch)
814 _IO_FILE *f;
815 int ch;
817 if (f->_flags & _IO_NO_WRITES) /* SET ERROR */
819 f->_flags |= _IO_ERR_SEEN;
820 __set_errno (EBADF);
821 return EOF;
823 /* If currently reading or no buffer allocated. */
824 if ((f->_flags & _IO_CURRENTLY_PUTTING) == 0 || f->_IO_write_base == NULL)
826 /* Allocate a buffer if needed. */
827 if (f->_IO_write_base == NULL)
829 _IO_doallocbuf (f);
830 _IO_setg (f, f->_IO_buf_base, f->_IO_buf_base, f->_IO_buf_base);
832 /* Otherwise must be currently reading.
833 If _IO_read_ptr (and hence also _IO_read_end) is at the buffer end,
834 logically slide the buffer forwards one block (by setting the
835 read pointers to all point at the beginning of the block). This
836 makes room for subsequent output.
837 Otherwise, set the read pointers to _IO_read_end (leaving that
838 alone, so it can continue to correspond to the external position). */
839 if (__glibc_unlikely (_IO_in_backup (f)))
841 size_t nbackup = f->_IO_read_end - f->_IO_read_ptr;
842 _IO_free_backup_area (f);
843 f->_IO_read_base -= MIN (nbackup,
844 f->_IO_read_base - f->_IO_buf_base);
845 f->_IO_read_ptr = f->_IO_read_base;
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 _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 (_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 libc_hidden_ver (_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 libc_hidden_ver (_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 (__lseek64 (fp->_fileno, fp->_IO_read_ptr - fp->_IO_buf_base,
920 SEEK_SET)
921 != fp->_IO_read_ptr - fp->_IO_buf_base)
923 fp->_flags |= _IO_ERR_SEEN;
924 return EOF;
927 fp->_offset = fp->_IO_read_ptr - fp->_IO_buf_base;
928 fp->_IO_read_end = fp->_IO_read_ptr = fp->_IO_read_base;
929 return 0;
932 /* Get the current file offset using a system call. This is the safest method
933 to get the current file offset, since we are sure that we get the current
934 state of the file. Before the stream handle is activated (by using fread,
935 fwrite, etc.), an application may alter the state of the file descriptor
936 underlying it by calling read/write/lseek on it. Using a cached offset at
937 this point will result in returning the incorrect value. Same is the case
938 when one switches from reading in a+ mode to writing, where the buffer has
939 not been flushed - the cached offset would reflect the reading position
940 while the actual write position would be at the end of the file.
942 do_ftell and do_ftell_wide may resort to using the cached offset in some
943 special cases instead of calling get_file_offset, but those cases should be
944 thoroughly described. */
945 _IO_off64_t
946 get_file_offset (_IO_FILE *fp)
948 if ((fp->_flags & _IO_IS_APPENDING) == _IO_IS_APPENDING)
950 struct stat64 st;
951 bool ret = (_IO_SYSSTAT (fp, &st) == 0 && S_ISREG (st.st_mode));
952 if (ret)
953 return st.st_size;
954 else
955 return EOF;
957 else
958 return _IO_SYSSEEK (fp, 0, _IO_seek_cur);
962 /* ftell{,o} implementation. Don't modify any state of the file pointer while
963 we try to get the current state of the stream. */
964 static _IO_off64_t
965 do_ftell (_IO_FILE *fp)
967 _IO_off64_t result = 0;
968 bool use_cached_offset = false;
970 /* No point looking at unflushed data if we haven't allocated buffers
971 yet. */
972 if (fp->_IO_buf_base != NULL)
974 bool was_writing = (fp->_IO_write_ptr > fp->_IO_write_base
975 || _IO_in_put_mode (fp));
977 /* Adjust for unflushed data. */
978 if (!was_writing)
979 result -= fp->_IO_read_end - fp->_IO_read_ptr;
980 else
981 result += fp->_IO_write_ptr - fp->_IO_read_end;
983 /* It is safe to use the cached offset when available if there is
984 unbuffered data (indicating that the file handle is active) and the
985 handle is not for a file open in a+ mode. The latter condition is
986 because there could be a scenario where there is a switch from read
987 mode to write mode using an fseek to an arbitrary position. In this
988 case, there would be unbuffered data due to be appended to the end of
989 the file, but the offset may not necessarily be the end of the
990 file. It is fine to use the cached offset when the a+ stream is in
991 read mode though, since the offset is maintained correctly in that
992 case. Note that this is not a comprehensive set of cases when the
993 offset is reliable. The offset may be reliable even in some cases
994 where there is no unflushed input and the handle is active, but it's
995 just that we don't have a way to identify that condition reliably. */
996 use_cached_offset = (result != 0 && fp->_offset != _IO_pos_BAD
997 && ((fp->_flags & (_IO_IS_APPENDING | _IO_NO_READS))
998 == (_IO_IS_APPENDING | _IO_NO_READS)
999 && was_writing));
1002 if (use_cached_offset)
1003 result += fp->_offset;
1004 else
1005 result += get_file_offset (fp);
1007 if (result == EOF)
1008 return result;
1010 if (result < 0)
1012 __set_errno (EINVAL);
1013 return EOF;
1016 return result;
1020 _IO_off64_t
1021 _IO_new_file_seekoff (fp, offset, dir, mode)
1022 _IO_FILE *fp;
1023 _IO_off64_t offset;
1024 int dir;
1025 int mode;
1027 _IO_off64_t result;
1028 _IO_off64_t delta, new_offset;
1029 long count;
1031 /* Short-circuit into a separate function. We don't want to mix any
1032 functionality and we don't want to touch anything inside the FILE
1033 object. */
1034 if (mode == 0)
1035 return do_ftell (fp);
1037 /* POSIX.1 8.2.3.7 says that after a call the fflush() the file
1038 offset of the underlying file must be exact. */
1039 int must_be_exact = (fp->_IO_read_base == fp->_IO_read_end
1040 && fp->_IO_write_base == fp->_IO_write_ptr);
1042 bool was_writing = (fp->_IO_write_ptr > fp->_IO_write_base
1043 || _IO_in_put_mode (fp));
1045 /* Flush unwritten characters.
1046 (This may do an unneeded write if we seek within the buffer.
1047 But to be able to switch to reading, we would need to set
1048 egptr to pptr. That can't be done in the current design,
1049 which assumes file_ptr() is eGptr. Anyway, since we probably
1050 end up flushing when we close(), it doesn't make much difference.)
1051 FIXME: simulate mem-mapped files. */
1052 if (was_writing && _IO_switch_to_get_mode (fp))
1053 return EOF;
1055 if (fp->_IO_buf_base == NULL)
1057 /* It could be that we already have a pushback buffer. */
1058 if (fp->_IO_read_base != NULL)
1060 free (fp->_IO_read_base);
1061 fp->_flags &= ~_IO_IN_BACKUP;
1063 _IO_doallocbuf (fp);
1064 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
1065 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
1068 switch (dir)
1070 case _IO_seek_cur:
1071 /* Adjust for read-ahead (bytes is buffer). */
1072 offset -= fp->_IO_read_end - fp->_IO_read_ptr;
1074 if (fp->_offset == _IO_pos_BAD)
1075 goto dumb;
1076 /* Make offset absolute, assuming current pointer is file_ptr(). */
1077 offset += fp->_offset;
1078 if (offset < 0)
1080 __set_errno (EINVAL);
1081 return EOF;
1084 dir = _IO_seek_set;
1085 break;
1086 case _IO_seek_set:
1087 break;
1088 case _IO_seek_end:
1090 struct stat64 st;
1091 if (_IO_SYSSTAT (fp, &st) == 0 && S_ISREG (st.st_mode))
1093 offset += st.st_size;
1094 dir = _IO_seek_set;
1096 else
1097 goto dumb;
1100 /* At this point, dir==_IO_seek_set. */
1102 /* If destination is within current buffer, optimize: */
1103 if (fp->_offset != _IO_pos_BAD && fp->_IO_read_base != NULL
1104 && !_IO_in_backup (fp))
1106 _IO_off64_t start_offset = (fp->_offset
1107 - (fp->_IO_read_end - fp->_IO_buf_base));
1108 if (offset >= start_offset && offset < fp->_offset)
1110 _IO_setg (fp, fp->_IO_buf_base,
1111 fp->_IO_buf_base + (offset - start_offset),
1112 fp->_IO_read_end);
1113 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
1115 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
1116 goto resync;
1120 if (fp->_flags & _IO_NO_READS)
1121 goto dumb;
1123 /* Try to seek to a block boundary, to improve kernel page management. */
1124 new_offset = offset & ~(fp->_IO_buf_end - fp->_IO_buf_base - 1);
1125 delta = offset - new_offset;
1126 if (delta > fp->_IO_buf_end - fp->_IO_buf_base)
1128 new_offset = offset;
1129 delta = 0;
1131 result = _IO_SYSSEEK (fp, new_offset, 0);
1132 if (result < 0)
1133 return EOF;
1134 if (delta == 0)
1135 count = 0;
1136 else
1138 count = _IO_SYSREAD (fp, fp->_IO_buf_base,
1139 (must_be_exact
1140 ? delta : fp->_IO_buf_end - fp->_IO_buf_base));
1141 if (count < delta)
1143 /* We weren't allowed to read, but try to seek the remainder. */
1144 offset = count == EOF ? delta : delta-count;
1145 dir = _IO_seek_cur;
1146 goto dumb;
1149 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base + delta,
1150 fp->_IO_buf_base + count);
1151 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
1152 fp->_offset = result + count;
1153 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
1154 return offset;
1155 dumb:
1157 _IO_unsave_markers (fp);
1158 result = _IO_SYSSEEK (fp, offset, dir);
1159 if (result != EOF)
1161 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
1162 fp->_offset = result;
1163 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
1164 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
1166 return result;
1168 resync:
1169 /* We need to do it since it is possible that the file offset in
1170 the kernel may be changed behind our back. It may happen when
1171 we fopen a file and then do a fork. One process may access the
1172 file and the kernel file offset will be changed. */
1173 if (fp->_offset >= 0)
1174 _IO_SYSSEEK (fp, fp->_offset, 0);
1176 return offset;
1178 libc_hidden_ver (_IO_new_file_seekoff, _IO_file_seekoff)
1180 _IO_off64_t
1181 _IO_file_seekoff_mmap (fp, offset, dir, mode)
1182 _IO_FILE *fp;
1183 _IO_off64_t offset;
1184 int dir;
1185 int mode;
1187 _IO_off64_t result;
1189 /* If we are only interested in the current position, calculate it and
1190 return right now. This calculation does the right thing when we are
1191 using a pushback buffer, but in the usual case has the same value as
1192 (fp->_IO_read_ptr - fp->_IO_buf_base). */
1193 if (mode == 0)
1194 return fp->_offset - (fp->_IO_read_end - fp->_IO_read_ptr);
1196 switch (dir)
1198 case _IO_seek_cur:
1199 /* Adjust for read-ahead (bytes is buffer). */
1200 offset += fp->_IO_read_ptr - fp->_IO_read_base;
1201 break;
1202 case _IO_seek_set:
1203 break;
1204 case _IO_seek_end:
1205 offset += fp->_IO_buf_end - fp->_IO_buf_base;
1206 break;
1208 /* At this point, dir==_IO_seek_set. */
1210 if (offset < 0)
1212 /* No negative offsets are valid. */
1213 __set_errno (EINVAL);
1214 return EOF;
1217 result = _IO_SYSSEEK (fp, offset, 0);
1218 if (result < 0)
1219 return EOF;
1221 if (offset > fp->_IO_buf_end - fp->_IO_buf_base)
1222 /* One can fseek arbitrarily past the end of the file
1223 and it is meaningless until one attempts to read.
1224 Leave the buffer pointers in EOF state until underflow. */
1225 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_end, fp->_IO_buf_end);
1226 else
1227 /* Adjust the read pointers to match the file position,
1228 but so the next read attempt will call underflow. */
1229 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base + offset,
1230 fp->_IO_buf_base + offset);
1232 fp->_offset = result;
1234 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
1236 return offset;
1239 static _IO_off64_t
1240 _IO_file_seekoff_maybe_mmap (_IO_FILE *fp, _IO_off64_t offset, int dir,
1241 int mode)
1243 /* We only get here when we haven't tried to read anything yet.
1244 So there is nothing more useful for us to do here than just
1245 the underlying lseek call. */
1247 _IO_off64_t result = _IO_SYSSEEK (fp, offset, dir);
1248 if (result < 0)
1249 return EOF;
1251 fp->_offset = result;
1252 return result;
1255 _IO_ssize_t
1256 _IO_file_read (fp, buf, size)
1257 _IO_FILE *fp;
1258 void *buf;
1259 _IO_ssize_t size;
1261 return (__builtin_expect (fp->_flags2 & _IO_FLAGS2_NOTCANCEL, 0)
1262 ? read_not_cancel (fp->_fileno, buf, size)
1263 : read (fp->_fileno, buf, size));
1265 libc_hidden_def (_IO_file_read)
1267 _IO_off64_t
1268 _IO_file_seek (fp, offset, dir)
1269 _IO_FILE *fp;
1270 _IO_off64_t offset;
1271 int dir;
1273 return __lseek64 (fp->_fileno, offset, dir);
1275 libc_hidden_def (_IO_file_seek)
1278 _IO_file_stat (fp, st)
1279 _IO_FILE *fp;
1280 void *st;
1282 return __fxstat64 (_STAT_VER, fp->_fileno, (struct stat64 *) st);
1284 libc_hidden_def (_IO_file_stat)
1287 _IO_file_close_mmap (fp)
1288 _IO_FILE *fp;
1290 /* In addition to closing the file descriptor we have to unmap the file. */
1291 (void) __munmap (fp->_IO_buf_base, fp->_IO_buf_end - fp->_IO_buf_base);
1292 fp->_IO_buf_base = fp->_IO_buf_end = NULL;
1293 /* Cancelling close should be avoided if possible since it leaves an
1294 unrecoverable state behind. */
1295 return close_not_cancel (fp->_fileno);
1299 _IO_file_close (fp)
1300 _IO_FILE *fp;
1302 /* Cancelling close should be avoided if possible since it leaves an
1303 unrecoverable state behind. */
1304 return close_not_cancel (fp->_fileno);
1306 libc_hidden_def (_IO_file_close)
1308 _IO_ssize_t
1309 _IO_new_file_write (f, data, n)
1310 _IO_FILE *f;
1311 const void *data;
1312 _IO_ssize_t n;
1314 _IO_ssize_t to_do = n;
1315 while (to_do > 0)
1317 _IO_ssize_t count = (__builtin_expect (f->_flags2
1318 & _IO_FLAGS2_NOTCANCEL, 0)
1319 ? write_not_cancel (f->_fileno, data, to_do)
1320 : write (f->_fileno, data, to_do));
1321 if (count < 0)
1323 f->_flags |= _IO_ERR_SEEN;
1324 break;
1326 to_do -= count;
1327 data = (void *) ((char *) data + count);
1329 n -= to_do;
1330 if (f->_offset >= 0)
1331 f->_offset += n;
1332 return n;
1335 _IO_size_t
1336 _IO_new_file_xsputn (f, data, n)
1337 _IO_FILE *f;
1338 const void *data;
1339 _IO_size_t n;
1341 const char *s = (const char *) data;
1342 _IO_size_t to_do = n;
1343 int must_flush = 0;
1344 _IO_size_t count = 0;
1346 if (n <= 0)
1347 return 0;
1348 /* This is an optimized implementation.
1349 If the amount to be written straddles a block boundary
1350 (or the filebuf is unbuffered), use sys_write directly. */
1352 /* First figure out how much space is available in the buffer. */
1353 if ((f->_flags & _IO_LINE_BUF) && (f->_flags & _IO_CURRENTLY_PUTTING))
1355 count = f->_IO_buf_end - f->_IO_write_ptr;
1356 if (count >= n)
1358 const char *p;
1359 for (p = s + n; p > s; )
1361 if (*--p == '\n')
1363 count = p - s + 1;
1364 must_flush = 1;
1365 break;
1370 else if (f->_IO_write_end > f->_IO_write_ptr)
1371 count = f->_IO_write_end - f->_IO_write_ptr; /* Space available. */
1373 /* Then fill the buffer. */
1374 if (count > 0)
1376 if (count > to_do)
1377 count = to_do;
1378 #ifdef _LIBC
1379 f->_IO_write_ptr = __mempcpy (f->_IO_write_ptr, s, count);
1380 #else
1381 memcpy (f->_IO_write_ptr, s, count);
1382 f->_IO_write_ptr += count;
1383 #endif
1384 s += count;
1385 to_do -= count;
1387 if (to_do + must_flush > 0)
1389 _IO_size_t block_size, do_write;
1390 /* Next flush the (full) buffer. */
1391 if (_IO_OVERFLOW (f, EOF) == EOF)
1392 /* If nothing else has to be written we must not signal the
1393 caller that everything has been written. */
1394 return to_do == 0 ? EOF : n - to_do;
1396 /* Try to maintain alignment: write a whole number of blocks. */
1397 block_size = f->_IO_buf_end - f->_IO_buf_base;
1398 do_write = to_do - (block_size >= 128 ? to_do % block_size : 0);
1400 if (do_write)
1402 count = new_do_write (f, s, do_write);
1403 to_do -= count;
1404 if (count < do_write)
1405 return n - to_do;
1408 /* Now write out the remainder. Normally, this will fit in the
1409 buffer, but it's somewhat messier for line-buffered files,
1410 so we let _IO_default_xsputn handle the general case. */
1411 if (to_do)
1412 to_do -= _IO_default_xsputn (f, s+do_write, to_do);
1414 return n - to_do;
1416 libc_hidden_ver (_IO_new_file_xsputn, _IO_file_xsputn)
1418 _IO_size_t
1419 _IO_file_xsgetn (fp, data, n)
1420 _IO_FILE *fp;
1421 void *data;
1422 _IO_size_t n;
1424 _IO_size_t want, have;
1425 _IO_ssize_t count;
1426 char *s = data;
1428 want = n;
1430 if (fp->_IO_buf_base == NULL)
1432 /* Maybe we already have a push back pointer. */
1433 if (fp->_IO_save_base != NULL)
1435 free (fp->_IO_save_base);
1436 fp->_flags &= ~_IO_IN_BACKUP;
1438 _IO_doallocbuf (fp);
1441 while (want > 0)
1443 have = fp->_IO_read_end - fp->_IO_read_ptr;
1444 if (want <= have)
1446 memcpy (s, fp->_IO_read_ptr, want);
1447 fp->_IO_read_ptr += want;
1448 want = 0;
1450 else
1452 if (have > 0)
1454 #ifdef _LIBC
1455 s = __mempcpy (s, fp->_IO_read_ptr, have);
1456 #else
1457 memcpy (s, fp->_IO_read_ptr, have);
1458 s += have;
1459 #endif
1460 want -= have;
1461 fp->_IO_read_ptr += have;
1464 /* Check for backup and repeat */
1465 if (_IO_in_backup (fp))
1467 _IO_switch_to_main_get_area (fp);
1468 continue;
1471 /* If we now want less than a buffer, underflow and repeat
1472 the copy. Otherwise, _IO_SYSREAD directly to
1473 the user buffer. */
1474 if (fp->_IO_buf_base
1475 && want < (size_t) (fp->_IO_buf_end - fp->_IO_buf_base))
1477 if (__underflow (fp) == EOF)
1478 break;
1480 continue;
1483 /* These must be set before the sysread as we might longjmp out
1484 waiting for input. */
1485 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
1486 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
1488 /* Try to maintain alignment: read a whole number of blocks. */
1489 count = want;
1490 if (fp->_IO_buf_base)
1492 _IO_size_t block_size = fp->_IO_buf_end - fp->_IO_buf_base;
1493 if (block_size >= 128)
1494 count -= want % block_size;
1497 count = _IO_SYSREAD (fp, s, count);
1498 if (count <= 0)
1500 if (count == 0)
1501 fp->_flags |= _IO_EOF_SEEN;
1502 else
1503 fp->_flags |= _IO_ERR_SEEN;
1505 break;
1508 s += count;
1509 want -= count;
1510 if (fp->_offset != _IO_pos_BAD)
1511 _IO_pos_adjust (fp->_offset, count);
1515 return n - want;
1517 libc_hidden_def (_IO_file_xsgetn)
1519 static _IO_size_t _IO_file_xsgetn_mmap (_IO_FILE *, void *, _IO_size_t);
1520 static _IO_size_t
1521 _IO_file_xsgetn_mmap (fp, data, n)
1522 _IO_FILE *fp;
1523 void *data;
1524 _IO_size_t n;
1526 _IO_size_t have;
1527 char *read_ptr = fp->_IO_read_ptr;
1528 char *s = (char *) data;
1530 have = fp->_IO_read_end - fp->_IO_read_ptr;
1532 if (have < n)
1534 if (__glibc_unlikely (_IO_in_backup (fp)))
1536 #ifdef _LIBC
1537 s = __mempcpy (s, read_ptr, have);
1538 #else
1539 memcpy (s, read_ptr, have);
1540 s += have;
1541 #endif
1542 n -= have;
1543 _IO_switch_to_main_get_area (fp);
1544 read_ptr = fp->_IO_read_ptr;
1545 have = fp->_IO_read_end - fp->_IO_read_ptr;
1548 if (have < n)
1550 /* Check that we are mapping all of the file, in case it grew. */
1551 if (__glibc_unlikely (mmap_remap_check (fp)))
1552 /* We punted mmap, so complete with the vanilla code. */
1553 return s - (char *) data + _IO_XSGETN (fp, data, n);
1555 read_ptr = fp->_IO_read_ptr;
1556 have = fp->_IO_read_end - read_ptr;
1560 if (have < n)
1561 fp->_flags |= _IO_EOF_SEEN;
1563 if (have != 0)
1565 have = MIN (have, n);
1566 #ifdef _LIBC
1567 s = __mempcpy (s, read_ptr, have);
1568 #else
1569 memcpy (s, read_ptr, have);
1570 s += have;
1571 #endif
1572 fp->_IO_read_ptr = read_ptr + have;
1575 return s - (char *) data;
1578 static _IO_size_t _IO_file_xsgetn_maybe_mmap (_IO_FILE *, void *, _IO_size_t);
1579 static _IO_size_t
1580 _IO_file_xsgetn_maybe_mmap (fp, data, n)
1581 _IO_FILE *fp;
1582 void *data;
1583 _IO_size_t n;
1585 /* We only get here if this is the first attempt to read something.
1586 Decide which operations to use and then punt to the chosen one. */
1588 decide_maybe_mmap (fp);
1589 return _IO_XSGETN (fp, data, n);
1592 #ifdef _LIBC
1593 versioned_symbol (libc, _IO_new_do_write, _IO_do_write, GLIBC_2_1);
1594 versioned_symbol (libc, _IO_new_file_attach, _IO_file_attach, GLIBC_2_1);
1595 versioned_symbol (libc, _IO_new_file_close_it, _IO_file_close_it, GLIBC_2_1);
1596 versioned_symbol (libc, _IO_new_file_finish, _IO_file_finish, GLIBC_2_1);
1597 versioned_symbol (libc, _IO_new_file_fopen, _IO_file_fopen, GLIBC_2_1);
1598 versioned_symbol (libc, _IO_new_file_init, _IO_file_init, GLIBC_2_1);
1599 versioned_symbol (libc, _IO_new_file_setbuf, _IO_file_setbuf, GLIBC_2_1);
1600 versioned_symbol (libc, _IO_new_file_sync, _IO_file_sync, GLIBC_2_1);
1601 versioned_symbol (libc, _IO_new_file_overflow, _IO_file_overflow, GLIBC_2_1);
1602 versioned_symbol (libc, _IO_new_file_seekoff, _IO_file_seekoff, GLIBC_2_1);
1603 versioned_symbol (libc, _IO_new_file_underflow, _IO_file_underflow, GLIBC_2_1);
1604 versioned_symbol (libc, _IO_new_file_write, _IO_file_write, GLIBC_2_1);
1605 versioned_symbol (libc, _IO_new_file_xsputn, _IO_file_xsputn, GLIBC_2_1);
1606 #endif
1608 const struct _IO_jump_t _IO_file_jumps =
1610 JUMP_INIT_DUMMY,
1611 JUMP_INIT(finish, _IO_file_finish),
1612 JUMP_INIT(overflow, _IO_file_overflow),
1613 JUMP_INIT(underflow, _IO_file_underflow),
1614 JUMP_INIT(uflow, _IO_default_uflow),
1615 JUMP_INIT(pbackfail, _IO_default_pbackfail),
1616 JUMP_INIT(xsputn, _IO_file_xsputn),
1617 JUMP_INIT(xsgetn, _IO_file_xsgetn),
1618 JUMP_INIT(seekoff, _IO_new_file_seekoff),
1619 JUMP_INIT(seekpos, _IO_default_seekpos),
1620 JUMP_INIT(setbuf, _IO_new_file_setbuf),
1621 JUMP_INIT(sync, _IO_new_file_sync),
1622 JUMP_INIT(doallocate, _IO_file_doallocate),
1623 JUMP_INIT(read, _IO_file_read),
1624 JUMP_INIT(write, _IO_new_file_write),
1625 JUMP_INIT(seek, _IO_file_seek),
1626 JUMP_INIT(close, _IO_file_close),
1627 JUMP_INIT(stat, _IO_file_stat),
1628 JUMP_INIT(showmanyc, _IO_default_showmanyc),
1629 JUMP_INIT(imbue, _IO_default_imbue)
1631 libc_hidden_data_def (_IO_file_jumps)
1633 const struct _IO_jump_t _IO_file_jumps_mmap =
1635 JUMP_INIT_DUMMY,
1636 JUMP_INIT(finish, _IO_file_finish),
1637 JUMP_INIT(overflow, _IO_file_overflow),
1638 JUMP_INIT(underflow, _IO_file_underflow_mmap),
1639 JUMP_INIT(uflow, _IO_default_uflow),
1640 JUMP_INIT(pbackfail, _IO_default_pbackfail),
1641 JUMP_INIT(xsputn, _IO_new_file_xsputn),
1642 JUMP_INIT(xsgetn, _IO_file_xsgetn_mmap),
1643 JUMP_INIT(seekoff, _IO_file_seekoff_mmap),
1644 JUMP_INIT(seekpos, _IO_default_seekpos),
1645 JUMP_INIT(setbuf, (_IO_setbuf_t) _IO_file_setbuf_mmap),
1646 JUMP_INIT(sync, _IO_file_sync_mmap),
1647 JUMP_INIT(doallocate, _IO_file_doallocate),
1648 JUMP_INIT(read, _IO_file_read),
1649 JUMP_INIT(write, _IO_new_file_write),
1650 JUMP_INIT(seek, _IO_file_seek),
1651 JUMP_INIT(close, _IO_file_close_mmap),
1652 JUMP_INIT(stat, _IO_file_stat),
1653 JUMP_INIT(showmanyc, _IO_default_showmanyc),
1654 JUMP_INIT(imbue, _IO_default_imbue)
1657 const struct _IO_jump_t _IO_file_jumps_maybe_mmap =
1659 JUMP_INIT_DUMMY,
1660 JUMP_INIT(finish, _IO_file_finish),
1661 JUMP_INIT(overflow, _IO_file_overflow),
1662 JUMP_INIT(underflow, _IO_file_underflow_maybe_mmap),
1663 JUMP_INIT(uflow, _IO_default_uflow),
1664 JUMP_INIT(pbackfail, _IO_default_pbackfail),
1665 JUMP_INIT(xsputn, _IO_new_file_xsputn),
1666 JUMP_INIT(xsgetn, _IO_file_xsgetn_maybe_mmap),
1667 JUMP_INIT(seekoff, _IO_file_seekoff_maybe_mmap),
1668 JUMP_INIT(seekpos, _IO_default_seekpos),
1669 JUMP_INIT(setbuf, (_IO_setbuf_t) _IO_file_setbuf_mmap),
1670 JUMP_INIT(sync, _IO_new_file_sync),
1671 JUMP_INIT(doallocate, _IO_file_doallocate),
1672 JUMP_INIT(read, _IO_file_read),
1673 JUMP_INIT(write, _IO_new_file_write),
1674 JUMP_INIT(seek, _IO_file_seek),
1675 JUMP_INIT(close, _IO_file_close),
1676 JUMP_INIT(stat, _IO_file_stat),
1677 JUMP_INIT(showmanyc, _IO_default_showmanyc),
1678 JUMP_INIT(imbue, _IO_default_imbue)