(public_cALLOc): Check for overflow on multiplication.
[glibc.git] / libio / fileops.c
blob29412968dbaaf3fe62e2628ca00f10c3f0850eca
1 /* Copyright (C) 1993, 1995, 1997-2001, 2002 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 #else
66 # define _IO_new_do_write _IO_do_write
67 # define _IO_new_file_attach _IO_file_attach
68 # define _IO_new_file_close_it _IO_file_close_it
69 # define _IO_new_file_finish _IO_file_finish
70 # define _IO_new_file_fopen _IO_file_fopen
71 # define _IO_new_file_init _IO_file_init
72 # define _IO_new_file_setbuf _IO_file_setbuf
73 # define _IO_new_file_sync _IO_file_sync
74 # define _IO_new_file_overflow _IO_file_overflow
75 # define _IO_new_file_seekoff _IO_file_seekoff
76 # define _IO_new_file_underflow _IO_file_underflow
77 # define _IO_new_file_write _IO_file_write
78 # define _IO_new_file_xsputn _IO_file_xsputn
79 #endif
82 #ifdef _LIBC
83 extern struct __gconv_trans_data __libio_translit attribute_hidden;
84 #endif
87 /* An fstream can be in at most one of put mode, get mode, or putback mode.
88 Putback mode is a variant of get mode.
90 In a filebuf, there is only one current position, instead of two
91 separate get and put pointers. In get mode, the current position
92 is that of gptr(); in put mode that of pptr().
94 The position in the buffer that corresponds to the position
95 in external file system is normally _IO_read_end, except in putback
96 mode, when it is _IO_save_end.
97 If the field _fb._offset is >= 0, it gives the offset in
98 the file as a whole corresponding to eGptr(). (?)
100 PUT MODE:
101 If a filebuf is in put mode, then all of _IO_read_ptr, _IO_read_end,
102 and _IO_read_base are equal to each other. These are usually equal
103 to _IO_buf_base, though not necessarily if we have switched from
104 get mode to put mode. (The reason is to maintain the invariant
105 that _IO_read_end corresponds to the external file position.)
106 _IO_write_base is non-NULL and usually equal to _IO_base_base.
107 We also have _IO_write_end == _IO_buf_end, but only in fully buffered mode.
108 The un-flushed character are those between _IO_write_base and _IO_write_ptr.
110 GET MODE:
111 If a filebuf is in get or putback mode, eback() != egptr().
112 In get mode, the unread characters are between gptr() and egptr().
113 The OS file position corresponds to that of egptr().
115 PUTBACK MODE:
116 Putback mode is used to remember "excess" characters that have
117 been sputbackc'd in a separate putback buffer.
118 In putback mode, the get buffer points to the special putback buffer.
119 The unread characters are the characters between gptr() and egptr()
120 in the putback buffer, as well as the area between save_gptr()
121 and save_egptr(), which point into the original reserve buffer.
122 (The pointers save_gptr() and save_egptr() are the values
123 of gptr() and egptr() at the time putback mode was entered.)
124 The OS position corresponds to that of save_egptr().
126 LINE BUFFERED OUTPUT:
127 During line buffered output, _IO_write_base==base() && epptr()==base().
128 However, ptr() may be anywhere between base() and ebuf().
129 This forces a call to filebuf::overflow(int C) on every put.
130 If there is more space in the buffer, and C is not a '\n',
131 then C is inserted, and pptr() incremented.
133 UNBUFFERED STREAMS:
134 If a filebuf is unbuffered(), the _shortbuf[1] is used as the buffer.
137 #define CLOSED_FILEBUF_FLAGS \
138 (_IO_IS_FILEBUF+_IO_NO_READS+_IO_NO_WRITES+_IO_TIED_PUT_GET)
141 void
142 _IO_new_file_init (fp)
143 struct _IO_FILE_plus *fp;
145 /* POSIX.1 allows another file handle to be used to change the position
146 of our file descriptor. Hence we actually don't know the actual
147 position before we do the first fseek (and until a following fflush). */
148 fp->file._offset = _IO_pos_BAD;
149 fp->file._IO_file_flags |= CLOSED_FILEBUF_FLAGS;
151 INTUSE(_IO_link_in) (fp);
152 fp->file._fileno = -1;
154 INTDEF2(_IO_new_file_init, _IO_file_init)
157 _IO_new_file_close_it (fp)
158 _IO_FILE *fp;
160 int write_status, close_status;
161 if (!_IO_file_is_open (fp))
162 return EOF;
164 if ((fp->_flags & _IO_NO_WRITES) == 0
165 && (fp->_flags & _IO_CURRENTLY_PUTTING) != 0)
166 write_status = _IO_do_flush (fp);
167 else
168 write_status = 0;
170 INTUSE(_IO_unsave_markers) (fp);
172 close_status = _IO_SYSCLOSE (fp);
174 /* Free buffer. */
175 if (fp->_mode <= 0)
177 INTUSE(_IO_setb) (fp, NULL, NULL, 0);
178 _IO_setg (fp, NULL, NULL, NULL);
179 _IO_setp (fp, NULL, NULL);
181 #if defined _LIBC || defined _GLIBCPP_USE_WCHAR_T
182 else
184 if (_IO_have_wbackup (fp))
185 INTUSE(_IO_free_wbackup_area) (fp);
186 INTUSE(_IO_wsetb) (fp, NULL, NULL, 0);
187 _IO_wsetg (fp, NULL, NULL, NULL);
188 _IO_wsetp (fp, NULL, NULL);
190 #endif
192 INTUSE(_IO_un_link) ((struct _IO_FILE_plus *) fp);
193 fp->_flags = _IO_MAGIC|CLOSED_FILEBUF_FLAGS;
194 fp->_fileno = -1;
195 fp->_offset = _IO_pos_BAD;
197 return close_status ? close_status : write_status;
199 INTDEF2(_IO_new_file_close_it, _IO_file_close_it)
201 void
202 _IO_new_file_finish (fp, dummy)
203 _IO_FILE *fp;
204 int dummy;
206 if (_IO_file_is_open (fp))
208 _IO_do_flush (fp);
209 if (!(fp->_flags & _IO_DELETE_DONT_CLOSE))
210 _IO_SYSCLOSE (fp);
212 INTUSE(_IO_default_finish) (fp, 0);
214 INTDEF2(_IO_new_file_finish, _IO_file_finish)
216 #if defined __GNUC__ && __GNUC__ >= 2
217 __inline__
218 #endif
219 _IO_FILE *
220 _IO_file_open (fp, filename, posix_mode, prot, read_write, is32not64)
221 _IO_FILE *fp;
222 const char *filename;
223 int posix_mode;
224 int prot;
225 int read_write;
226 int is32not64;
228 int fdesc;
229 #ifdef _G_OPEN64
230 fdesc = (is32not64
231 ? open (filename, posix_mode, prot)
232 : _G_OPEN64 (filename, posix_mode, prot));
233 #else
234 fdesc = open (filename, posix_mode, prot);
235 #endif
236 if (fdesc < 0)
237 return NULL;
238 fp->_fileno = fdesc;
239 _IO_mask_flags (fp, read_write,_IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING);
240 if (read_write & _IO_IS_APPENDING)
241 if (_IO_SEEKOFF (fp, (_IO_off64_t)0, _IO_seek_end, _IOS_INPUT|_IOS_OUTPUT)
242 == _IO_pos_BAD && errno != ESPIPE)
244 close (fdesc);
245 return NULL;
247 INTUSE(_IO_link_in) ((struct _IO_FILE_plus *) fp);
248 return fp;
251 _IO_FILE *
252 _IO_new_file_fopen (fp, filename, mode, is32not64)
253 _IO_FILE *fp;
254 const char *filename;
255 const char *mode;
256 int is32not64;
258 int oflags = 0, omode;
259 int read_write;
260 int oprot = 0666;
261 int i;
262 _IO_FILE *result;
263 #ifdef _LIBC
264 const char *cs;
265 const char *last_recognized;
266 #endif
268 if (_IO_file_is_open (fp))
269 return 0;
270 switch (*mode)
272 case 'r':
273 omode = O_RDONLY;
274 read_write = _IO_NO_WRITES;
275 break;
276 case 'w':
277 omode = O_WRONLY;
278 oflags = O_CREAT|O_TRUNC;
279 read_write = _IO_NO_READS;
280 break;
281 case 'a':
282 omode = O_WRONLY;
283 oflags = O_CREAT|O_APPEND;
284 read_write = _IO_NO_READS|_IO_IS_APPENDING;
285 break;
286 default:
287 __set_errno (EINVAL);
288 return NULL;
290 #ifdef _LIBC
291 last_recognized = mode;
292 #endif
293 for (i = 1; i < 4; ++i)
295 switch (*++mode)
297 case '\0':
298 break;
299 case '+':
300 omode = O_RDWR;
301 read_write &= _IO_IS_APPENDING;
302 #ifdef _LIBC
303 last_recognized = mode;
304 #endif
305 continue;
306 case 'x':
307 oflags |= O_EXCL;
308 #ifdef _LIBC
309 last_recognized = mode;
310 #endif
311 continue;
312 case 'b':
313 #ifdef _LIBC
314 last_recognized = mode;
315 #endif
316 default:
317 /* Ignore. */
318 continue;
320 break;
323 result = _IO_file_open (fp, filename, omode|oflags, oprot, read_write,
324 is32not64);
327 #ifdef _LIBC
328 if (result != NULL)
330 /* Test whether the mode string specifies the conversion. */
331 cs = strstr (last_recognized + 1, ",ccs=");
332 if (cs != NULL)
334 /* Yep. Load the appropriate conversions and set the orientation
335 to wide. */
336 struct gconv_fcts fcts;
337 struct _IO_codecvt *cc;
338 char *endp = __strchrnul (cs + 5, ',');
339 char ccs[endp - (cs + 5) + 3];
341 *((char *) __mempcpy (ccs, cs + 5, endp - (cs + 5))) = '\0';
342 strip (ccs, ccs);
344 if (__wcsmbs_named_conv (&fcts, ccs[2] == '\0'
345 ? upstr (ccs, cs + 5) : ccs) != 0)
347 /* Something went wrong, we cannot load the conversion modules.
348 This means we cannot proceed since the user explicitly asked
349 for these. */
350 __set_errno (EINVAL);
351 return NULL;
354 assert (fcts.towc_nsteps == 1);
355 assert (fcts.tomb_nsteps == 1);
357 fp->_wide_data->_IO_read_ptr = fp->_wide_data->_IO_read_end;
358 fp->_wide_data->_IO_write_ptr = fp->_wide_data->_IO_write_base;
360 /* Clear the state. We start all over again. */
361 memset (&fp->_wide_data->_IO_state, '\0', sizeof (__mbstate_t));
362 memset (&fp->_wide_data->_IO_last_state, '\0', sizeof (__mbstate_t));
364 cc = fp->_codecvt = &fp->_wide_data->_codecvt;
366 /* The functions are always the same. */
367 *cc = __libio_codecvt;
369 cc->__cd_in.__cd.__nsteps = fcts.towc_nsteps;
370 cc->__cd_in.__cd.__steps = fcts.towc;
372 cc->__cd_in.__cd.__data[0].__invocation_counter = 0;
373 cc->__cd_in.__cd.__data[0].__internal_use = 1;
374 cc->__cd_in.__cd.__data[0].__flags = __GCONV_IS_LAST;
375 cc->__cd_in.__cd.__data[0].__statep = &result->_wide_data->_IO_state;
377 /* XXX For now no transliteration. */
378 cc->__cd_in.__cd.__data[0].__trans = NULL;
380 cc->__cd_out.__cd.__nsteps = fcts.tomb_nsteps;
381 cc->__cd_out.__cd.__steps = fcts.tomb;
383 cc->__cd_out.__cd.__data[0].__invocation_counter = 0;
384 cc->__cd_out.__cd.__data[0].__internal_use = 1;
385 cc->__cd_out.__cd.__data[0].__flags = __GCONV_IS_LAST;
386 cc->__cd_out.__cd.__data[0].__statep =
387 &result->_wide_data->_IO_state;
389 /* And now the transliteration. */
390 cc->__cd_out.__cd.__data[0].__trans = &__libio_translit;
392 /* Set the mode now. */
393 result->_mode = 1;
395 /* We don't need the step data structure anymore. */
396 __gconv_release_cache (fcts.towc, fcts.towc_nsteps);
397 __gconv_release_cache (fcts.tomb, fcts.tomb_nsteps);
400 #endif /* GNU libc */
402 return result;
404 INTDEF2(_IO_new_file_fopen, _IO_file_fopen)
406 _IO_FILE *
407 _IO_new_file_attach (fp, fd)
408 _IO_FILE *fp;
409 int fd;
411 if (_IO_file_is_open (fp))
412 return NULL;
413 fp->_fileno = fd;
414 fp->_flags &= ~(_IO_NO_READS+_IO_NO_WRITES);
415 fp->_flags |= _IO_DELETE_DONT_CLOSE;
416 /* Get the current position of the file. */
417 /* We have to do that since that may be junk. */
418 fp->_offset = _IO_pos_BAD;
419 if (_IO_SEEKOFF (fp, (_IO_off64_t)0, _IO_seek_cur, _IOS_INPUT|_IOS_OUTPUT)
420 == _IO_pos_BAD && errno != ESPIPE)
421 return NULL;
422 return fp;
424 INTDEF2(_IO_new_file_attach, _IO_file_attach)
426 _IO_FILE *
427 _IO_new_file_setbuf (fp, p, len)
428 _IO_FILE *fp;
429 char *p;
430 _IO_ssize_t len;
432 if (_IO_default_setbuf (fp, p, len) == NULL)
433 return NULL;
435 fp->_IO_write_base = fp->_IO_write_ptr = fp->_IO_write_end
436 = fp->_IO_buf_base;
437 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
439 return fp;
441 INTDEF2(_IO_new_file_setbuf, _IO_file_setbuf)
444 _IO_FILE *
445 _IO_file_setbuf_mmap (fp, p, len)
446 _IO_FILE *fp;
447 char *p;
448 _IO_ssize_t len;
450 _IO_FILE *result;
452 /* Change the function table. */
453 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &_IO_file_jumps;
454 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps;
456 /* And perform the normal operation. */
457 result = _IO_new_file_setbuf (fp, p, len);
459 /* If the call failed, restore to using mmap. */
460 if (result == NULL)
462 _IO_JUMPS ((struct _IO_FILE_plus *) fp) = &_IO_file_jumps_mmap;
463 fp->_wide_data->_wide_vtable = &_IO_wfile_jumps_mmap;
466 return result;
469 static int new_do_write __P ((_IO_FILE *, const char *, _IO_size_t));
471 /* Write TO_DO bytes from DATA to FP.
472 Then mark FP as having empty buffers. */
475 _IO_new_do_write (fp, data, to_do)
476 _IO_FILE *fp;
477 const char *data;
478 _IO_size_t to_do;
480 return (to_do == 0 || new_do_write (fp, data, to_do) == to_do) ? 0 : EOF;
482 INTDEF2(_IO_new_do_write, _IO_do_write)
484 static
486 new_do_write (fp, data, to_do)
487 _IO_FILE *fp;
488 const char *data;
489 _IO_size_t to_do;
491 _IO_size_t count;
492 if (fp->_flags & _IO_IS_APPENDING)
493 /* On a system without a proper O_APPEND implementation,
494 you would need to sys_seek(0, SEEK_END) here, but is
495 is not needed nor desirable for Unix- or Posix-like systems.
496 Instead, just indicate that offset (before and after) is
497 unpredictable. */
498 fp->_offset = _IO_pos_BAD;
499 else if (fp->_IO_read_end != fp->_IO_write_base)
501 _IO_off64_t new_pos
502 = _IO_SYSSEEK (fp, fp->_IO_write_base - fp->_IO_read_end, 1);
503 if (new_pos == _IO_pos_BAD)
504 return 0;
505 fp->_offset = new_pos;
507 count = _IO_SYSWRITE (fp, data, to_do);
508 if (fp->_cur_column && count)
509 fp->_cur_column = INTUSE(_IO_adjust_column) (fp->_cur_column - 1, data,
510 count) + 1;
511 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
512 fp->_IO_write_base = fp->_IO_write_ptr = fp->_IO_buf_base;
513 fp->_IO_write_end = (fp->_mode <= 0
514 && (fp->_flags & (_IO_LINE_BUF+_IO_UNBUFFERED))
515 ? fp->_IO_buf_base : fp->_IO_buf_end);
516 return count;
520 _IO_new_file_underflow (fp)
521 _IO_FILE *fp;
523 _IO_ssize_t count;
524 #if 0
525 /* SysV does not make this test; take it out for compatibility */
526 if (fp->_flags & _IO_EOF_SEEN)
527 return (EOF);
528 #endif
530 if (fp->_flags & _IO_NO_READS)
532 fp->_flags |= _IO_ERR_SEEN;
533 __set_errno (EBADF);
534 return EOF;
536 if (fp->_IO_read_ptr < fp->_IO_read_end)
537 return *(unsigned char *) fp->_IO_read_ptr;
539 if (fp->_IO_buf_base == NULL)
541 /* Maybe we already have a push back pointer. */
542 if (fp->_IO_save_base != NULL)
544 free (fp->_IO_save_base);
545 fp->_flags &= ~_IO_IN_BACKUP;
547 INTUSE(_IO_doallocbuf) (fp);
550 /* Flush all line buffered files before reading. */
551 /* FIXME This can/should be moved to genops ?? */
552 if (fp->_flags & (_IO_LINE_BUF|_IO_UNBUFFERED))
554 #if 0
555 INTUSE(_IO_flush_all_linebuffered) ();
556 #else
557 /* We used to flush all line-buffered stream. This really isn't
558 required by any standard. My recollection is that
559 traditional Unix systems did this for stdout. stderr better
560 not be line buffered. So we do just that here
561 explicitly. --drepper */
562 _IO_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile,
563 _IO_stdout);
564 _IO_flockfile (_IO_stdout);
566 if ((_IO_stdout->_flags & (_IO_LINKED | _IO_NO_WRITES | _IO_LINE_BUF))
567 == (_IO_LINKED | _IO_LINE_BUF))
568 _IO_OVERFLOW (_IO_stdout, EOF);
570 _IO_funlockfile (_IO_stdout);
571 _IO_cleanup_region_end (0);
572 #endif
575 INTUSE(_IO_switch_to_get_mode) (fp);
577 /* This is very tricky. We have to adjust those
578 pointers before we call _IO_SYSREAD () since
579 we may longjump () out while waiting for
580 input. Those pointers may be screwed up. H.J. */
581 fp->_IO_read_base = fp->_IO_read_ptr = fp->_IO_buf_base;
582 fp->_IO_read_end = fp->_IO_buf_base;
583 fp->_IO_write_base = fp->_IO_write_ptr = fp->_IO_write_end
584 = fp->_IO_buf_base;
586 count = _IO_SYSREAD (fp, fp->_IO_buf_base,
587 fp->_IO_buf_end - fp->_IO_buf_base);
588 if (count <= 0)
590 if (count == 0)
591 fp->_flags |= _IO_EOF_SEEN;
592 else
593 fp->_flags |= _IO_ERR_SEEN, count = 0;
595 fp->_IO_read_end += count;
596 if (count == 0)
597 return EOF;
598 if (fp->_offset != _IO_pos_BAD)
599 _IO_pos_adjust (fp->_offset, count);
600 return *(unsigned char *) fp->_IO_read_ptr;
602 INTDEF2(_IO_new_file_underflow, _IO_file_underflow)
604 /* Special callback replacing the underflow callbacks if we mmap the
605 file. */
607 _IO_file_underflow_mmap (_IO_FILE *fp)
609 if (fp->_IO_read_end < fp->_IO_buf_end)
611 /* A stupid requirement in POSIX says that the first read on a
612 stream must update the atime. Just read a single byte. We
613 don't have to worry about repositioning the file descriptor
614 since the following seek defines its position anyway. */
615 char ignore[1];
616 read (fp->_fileno, ignore, 1);
618 if (
619 # ifdef _G_LSEEK64
620 _G_LSEEK64 (fp->_fileno, fp->_IO_buf_end - fp->_IO_buf_base,
621 SEEK_SET)
622 # else
623 __lseek (fp->_fileno, fp->_IO_buf_end - fp->_IO_buf_base, SEEK_SET)
624 # endif
625 != fp->_IO_buf_end - fp->_IO_buf_base)
627 fp->_flags |= _IO_ERR_SEEN;
628 return EOF;
631 fp->_offset = fp->_IO_buf_end - fp->_IO_buf_base;
632 fp->_IO_read_end = fp->_IO_buf_end;
633 return *(unsigned char *) fp->_IO_read_ptr;
636 fp->_flags |= _IO_EOF_SEEN;
637 return EOF;
641 _IO_new_file_overflow (f, ch)
642 _IO_FILE *f;
643 int ch;
645 if (f->_flags & _IO_NO_WRITES) /* SET ERROR */
647 f->_flags |= _IO_ERR_SEEN;
648 __set_errno (EBADF);
649 return EOF;
651 /* If currently reading or no buffer allocated. */
652 if ((f->_flags & _IO_CURRENTLY_PUTTING) == 0 || f->_IO_write_base == 0)
654 /* Allocate a buffer if needed. */
655 if (f->_IO_write_base == 0)
657 INTUSE(_IO_doallocbuf) (f);
658 _IO_setg (f, f->_IO_buf_base, f->_IO_buf_base, f->_IO_buf_base);
660 /* Otherwise must be currently reading.
661 If _IO_read_ptr (and hence also _IO_read_end) is at the buffer end,
662 logically slide the buffer forwards one block (by setting the
663 read pointers to all point at the beginning of the block). This
664 makes room for subsequent output.
665 Otherwise, set the read pointers to _IO_read_end (leaving that
666 alone, so it can continue to correspond to the external position). */
667 if (f->_IO_read_ptr == f->_IO_buf_end)
668 f->_IO_read_end = f->_IO_read_ptr = f->_IO_buf_base;
669 f->_IO_write_ptr = f->_IO_read_ptr;
670 f->_IO_write_base = f->_IO_write_ptr;
671 f->_IO_write_end = f->_IO_buf_end;
672 f->_IO_read_base = f->_IO_read_ptr = f->_IO_read_end;
674 f->_flags |= _IO_CURRENTLY_PUTTING;
675 if (f->_mode <= 0 && f->_flags & (_IO_LINE_BUF+_IO_UNBUFFERED))
676 f->_IO_write_end = f->_IO_write_ptr;
678 if (ch == EOF)
679 return _IO_new_do_write(f, f->_IO_write_base,
680 f->_IO_write_ptr - f->_IO_write_base);
681 if (f->_IO_write_ptr == f->_IO_buf_end ) /* Buffer is really full */
682 if (_IO_do_flush (f) == EOF)
683 return EOF;
684 *f->_IO_write_ptr++ = ch;
685 if ((f->_flags & _IO_UNBUFFERED)
686 || ((f->_flags & _IO_LINE_BUF) && ch == '\n'))
687 if (_IO_new_do_write(f, f->_IO_write_base,
688 f->_IO_write_ptr - f->_IO_write_base) == EOF)
689 return EOF;
690 return (unsigned char) ch;
692 INTDEF2(_IO_new_file_overflow, _IO_file_overflow)
695 _IO_new_file_sync (fp)
696 _IO_FILE *fp;
698 _IO_ssize_t delta;
699 int retval = 0;
701 /* char* ptr = cur_ptr(); */
702 if (fp->_IO_write_ptr > fp->_IO_write_base)
703 if (_IO_do_flush(fp)) return EOF;
704 delta = fp->_IO_read_ptr - fp->_IO_read_end;
705 if (delta != 0)
707 #ifdef TODO
708 if (_IO_in_backup (fp))
709 delta -= eGptr () - Gbase ();
710 #endif
711 _IO_off64_t new_pos = _IO_SYSSEEK (fp, delta, 1);
712 if (new_pos != (_IO_off64_t) EOF)
713 fp->_IO_read_end = fp->_IO_read_ptr;
714 #ifdef ESPIPE
715 else if (errno == ESPIPE)
716 ; /* Ignore error from unseekable devices. */
717 #endif
718 else
719 retval = EOF;
721 if (retval != EOF)
722 fp->_offset = _IO_pos_BAD;
723 /* FIXME: Cleanup - can this be shared? */
724 /* setg(base(), ptr, ptr); */
725 return retval;
727 INTDEF2(_IO_new_file_sync, _IO_file_sync)
729 _IO_off64_t
730 _IO_new_file_seekoff (fp, offset, dir, mode)
731 _IO_FILE *fp;
732 _IO_off64_t offset;
733 int dir;
734 int mode;
736 _IO_off64_t result;
737 _IO_off64_t delta, new_offset;
738 long count;
739 /* POSIX.1 8.2.3.7 says that after a call the fflush() the file
740 offset of the underlying file must be exact. */
741 int must_be_exact = (fp->_IO_read_base == fp->_IO_read_end
742 && fp->_IO_write_base == fp->_IO_write_ptr);
744 if (mode == 0)
745 dir = _IO_seek_cur, offset = 0; /* Don't move any pointers. */
747 /* Flush unwritten characters.
748 (This may do an unneeded write if we seek within the buffer.
749 But to be able to switch to reading, we would need to set
750 egptr to ptr. That can't be done in the current design,
751 which assumes file_ptr() is eGptr. Anyway, since we probably
752 end up flushing when we close(), it doesn't make much difference.)
753 FIXME: simulate mem-papped files. */
755 if (fp->_IO_write_ptr > fp->_IO_write_base || _IO_in_put_mode (fp))
756 if (INTUSE(_IO_switch_to_get_mode) (fp))
757 return EOF;
759 if (fp->_IO_buf_base == NULL)
761 /* It could be that we already have a pushback buffer. */
762 if (fp->_IO_read_base != NULL)
764 free (fp->_IO_read_base);
765 fp->_flags &= ~_IO_IN_BACKUP;
767 INTUSE(_IO_doallocbuf) (fp);
768 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
769 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
772 switch (dir)
774 case _IO_seek_cur:
775 /* Adjust for read-ahead (bytes is buffer). */
776 offset -= fp->_IO_read_end - fp->_IO_read_ptr;
777 if (fp->_offset == _IO_pos_BAD)
778 goto dumb;
779 /* Make offset absolute, assuming current pointer is file_ptr(). */
780 offset += fp->_offset;
781 if (offset < 0)
783 __set_errno (EINVAL);
784 return EOF;
787 dir = _IO_seek_set;
788 break;
789 case _IO_seek_set:
790 break;
791 case _IO_seek_end:
793 struct _G_stat64 st;
794 if (_IO_SYSSTAT (fp, &st) == 0 && S_ISREG (st.st_mode))
796 offset += st.st_size;
797 dir = _IO_seek_set;
799 else
800 goto dumb;
803 /* At this point, dir==_IO_seek_set. */
805 /* If we are only interested in the current position we've found it now. */
806 if (mode == 0)
807 return offset;
809 /* If destination is within current buffer, optimize: */
810 if (fp->_offset != _IO_pos_BAD && fp->_IO_read_base != NULL
811 && !_IO_in_backup (fp))
813 /* Offset relative to start of main get area. */
814 _IO_off64_t rel_offset = (offset - fp->_offset
815 + (fp->_IO_read_end - fp->_IO_read_base));
816 if (rel_offset >= 0)
818 #if 0
819 if (_IO_in_backup (fp))
820 _IO_switch_to_main_get_area (fp);
821 #endif
822 if (rel_offset <= fp->_IO_read_end - fp->_IO_read_base)
824 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base + rel_offset,
825 fp->_IO_read_end);
826 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
828 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
829 goto resync;
832 #ifdef TODO
833 /* If we have streammarkers, seek forward by reading ahead. */
834 if (_IO_have_markers (fp))
836 int to_skip = rel_offset
837 - (fp->_IO_read_ptr - fp->_IO_read_base);
838 if (ignore (to_skip) != to_skip)
839 goto dumb;
840 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
841 goto resync;
843 #endif
845 #ifdef TODO
846 if (rel_offset < 0 && rel_offset >= Bbase () - Bptr ())
848 if (!_IO_in_backup (fp))
849 _IO_switch_to_backup_area (fp);
850 gbump (fp->_IO_read_end + rel_offset - fp->_IO_read_ptr);
851 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
852 goto resync;
854 #endif
857 #ifdef TODO
858 INTUSE(_IO_unsave_markers) (fp);
859 #endif
861 if (fp->_flags & _IO_NO_READS)
862 goto dumb;
864 /* Try to seek to a block boundary, to improve kernel page management. */
865 new_offset = offset & ~(fp->_IO_buf_end - fp->_IO_buf_base - 1);
866 delta = offset - new_offset;
867 if (delta > fp->_IO_buf_end - fp->_IO_buf_base)
869 new_offset = offset;
870 delta = 0;
872 result = _IO_SYSSEEK (fp, new_offset, 0);
873 if (result < 0)
874 return EOF;
875 if (delta == 0)
876 count = 0;
877 else
879 count = _IO_SYSREAD (fp, fp->_IO_buf_base,
880 (must_be_exact
881 ? delta : fp->_IO_buf_end - fp->_IO_buf_base));
882 if (count < delta)
884 /* We weren't allowed to read, but try to seek the remainder. */
885 offset = count == EOF ? delta : delta-count;
886 dir = _IO_seek_cur;
887 goto dumb;
890 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base + delta,
891 fp->_IO_buf_base + count);
892 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
893 fp->_offset = result + count;
894 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
895 return offset;
896 dumb:
898 INTUSE(_IO_unsave_markers) (fp);
899 result = _IO_SYSSEEK (fp, offset, dir);
900 if (result != EOF)
902 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
903 fp->_offset = result;
904 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
905 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
907 return result;
909 resync:
910 /* We need to do it since it is possible that the file offset in
911 the kernel may be changed behind our back. It may happen when
912 we fopen a file and then do a fork. One process may access the
913 the file and the kernel file offset will be changed. */
914 if (fp->_offset >= 0)
915 _IO_SYSSEEK (fp, fp->_offset, 0);
917 return offset;
919 INTDEF2(_IO_new_file_seekoff, _IO_file_seekoff)
921 _IO_off64_t
922 _IO_file_seekoff_mmap (fp, offset, dir, mode)
923 _IO_FILE *fp;
924 _IO_off64_t offset;
925 int dir;
926 int mode;
928 _IO_off64_t result;
930 /* If we are only interested in the current position, calculate it and
931 return right now. This calculation does the right thing when we are
932 using a pushback buffer, but in the usual case has the same value as
933 (fp->_IO_read_ptr - fp->_IO_buf_base). */
934 if (mode == 0)
935 return fp->_offset - (fp->_IO_read_end - fp->_IO_read_ptr);
937 switch (dir)
939 case _IO_seek_cur:
940 /* Adjust for read-ahead (bytes is buffer). */
941 offset += fp->_IO_read_ptr - fp->_IO_read_base;
942 break;
943 case _IO_seek_set:
944 break;
945 case _IO_seek_end:
946 offset += fp->_IO_buf_end - fp->_IO_buf_base;
947 break;
949 /* At this point, dir==_IO_seek_set. */
951 if (offset < 0)
953 /* No negative offsets are valid. */
954 __set_errno (EINVAL);
955 return EOF;
958 result = _IO_SYSSEEK (fp, offset, 0);
959 if (result < 0)
960 return EOF;
962 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base + offset,
963 fp->_IO_buf_base + offset);
964 fp->_offset = result;
966 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
968 return offset;
971 _IO_ssize_t
972 _IO_file_read (fp, buf, size)
973 _IO_FILE *fp;
974 void *buf;
975 _IO_ssize_t size;
977 return read (fp->_fileno, buf, size);
979 INTDEF(_IO_file_read)
981 _IO_off64_t
982 _IO_file_seek (fp, offset, dir)
983 _IO_FILE *fp;
984 _IO_off64_t offset;
985 int dir;
987 #ifdef _G_LSEEK64
988 return _G_LSEEK64 (fp->_fileno, offset, dir);
989 #else
990 return lseek (fp->_fileno, offset, dir);
991 #endif
993 INTDEF(_IO_file_seek)
996 _IO_file_stat (fp, st)
997 _IO_FILE *fp;
998 void *st;
1000 #ifdef _G_FSTAT64
1001 return _G_FSTAT64 (fp->_fileno, (struct _G_stat64 *) st);
1002 #else
1003 return fstat (fp->_fileno, (struct stat *) st);
1004 #endif
1006 INTDEF(_IO_file_stat)
1009 _IO_file_close_mmap (fp)
1010 _IO_FILE *fp;
1012 /* In addition to closing the file descriptor we have to unmap the
1013 file. */
1014 (void) munmap (fp->_IO_buf_base, fp->_IO_buf_end - fp->_IO_buf_base);
1015 fp->_IO_buf_base = fp->_IO_buf_end = NULL;
1016 return close (fp->_fileno);
1020 _IO_file_close (fp)
1021 _IO_FILE *fp;
1023 return close (fp->_fileno);
1025 INTDEF(_IO_file_close)
1027 _IO_ssize_t
1028 _IO_new_file_write (f, data, n)
1029 _IO_FILE *f;
1030 const void *data;
1031 _IO_ssize_t n;
1033 _IO_ssize_t to_do = n;
1034 while (to_do > 0)
1036 _IO_ssize_t count = write (f->_fileno, data, to_do);
1037 if (count < 0)
1039 f->_flags |= _IO_ERR_SEEN;
1040 break;
1042 to_do -= count;
1043 data = (void *) ((char *) data + count);
1045 n -= to_do;
1046 if (f->_offset >= 0)
1047 f->_offset += n;
1048 return n;
1051 _IO_size_t
1052 _IO_new_file_xsputn (f, data, n)
1053 _IO_FILE *f;
1054 const void *data;
1055 _IO_size_t n;
1057 register const char *s = (const char *) data;
1058 _IO_size_t to_do = n;
1059 int must_flush = 0;
1060 _IO_size_t count;
1062 if (n <= 0)
1063 return 0;
1064 /* This is an optimized implementation.
1065 If the amount to be written straddles a block boundary
1066 (or the filebuf is unbuffered), use sys_write directly. */
1068 /* First figure out how much space is available in the buffer. */
1069 count = f->_IO_write_end - f->_IO_write_ptr; /* Space available. */
1070 if ((f->_flags & _IO_LINE_BUF) && (f->_flags & _IO_CURRENTLY_PUTTING))
1072 count = f->_IO_buf_end - f->_IO_write_ptr;
1073 if (count >= n)
1075 register const char *p;
1076 for (p = s + n; p > s; )
1078 if (*--p == '\n')
1080 count = p - s + 1;
1081 must_flush = 1;
1082 break;
1087 /* Then fill the buffer. */
1088 if (count > 0)
1090 if (count > to_do)
1091 count = to_do;
1092 if (count > 20)
1094 #ifdef _LIBC
1095 f->_IO_write_ptr = __mempcpy (f->_IO_write_ptr, s, count);
1096 #else
1097 memcpy (f->_IO_write_ptr, s, count);
1098 f->_IO_write_ptr += count;
1099 #endif
1100 s += count;
1102 else
1104 register char *p = f->_IO_write_ptr;
1105 register int i = (int) count;
1106 while (--i >= 0)
1107 *p++ = *s++;
1108 f->_IO_write_ptr = p;
1110 to_do -= count;
1112 if (to_do + must_flush > 0)
1114 _IO_size_t block_size, do_write;
1115 /* Next flush the (full) buffer. */
1116 if (_IO_OVERFLOW (f, EOF) == EOF)
1117 return n - to_do;
1119 /* Try to maintain alignment: write a whole number of blocks.
1120 dont_write is what gets left over. */
1121 block_size = f->_IO_buf_end - f->_IO_buf_base;
1122 do_write = to_do - (block_size >= 128 ? to_do % block_size : 0);
1124 if (do_write)
1126 count = new_do_write (f, s, do_write);
1127 to_do -= count;
1128 if (count < do_write)
1129 return n - to_do;
1132 /* Now write out the remainder. Normally, this will fit in the
1133 buffer, but it's somewhat messier for line-buffered files,
1134 so we let _IO_default_xsputn handle the general case. */
1135 if (to_do)
1136 to_do -= INTUSE(_IO_default_xsputn) (f, s+do_write, to_do);
1138 return n - to_do;
1140 INTDEF2(_IO_new_file_xsputn, _IO_file_xsputn)
1142 _IO_size_t
1143 _IO_file_xsgetn (fp, data, n)
1144 _IO_FILE *fp;
1145 void *data;
1146 _IO_size_t n;
1148 register _IO_size_t want, have;
1149 register _IO_ssize_t count;
1150 register char *s = data;
1152 want = n;
1154 if (fp->_IO_buf_base == NULL)
1156 /* Maybe we already have a push back pointer. */
1157 if (fp->_IO_save_base != NULL)
1159 free (fp->_IO_save_base);
1160 fp->_flags &= ~_IO_IN_BACKUP;
1162 INTUSE(_IO_doallocbuf) (fp);
1165 while (want > 0)
1167 have = fp->_IO_read_end - fp->_IO_read_ptr;
1168 if (want <= have)
1170 memcpy (s, fp->_IO_read_ptr, want);
1171 fp->_IO_read_ptr += want;
1172 want = 0;
1174 else
1176 if (have > 0)
1178 #ifdef _LIBC
1179 s = __mempcpy (s, fp->_IO_read_ptr, have);
1180 #else
1181 memcpy (s, fp->_IO_read_ptr, have);
1182 s += have;
1183 #endif
1184 want -= have;
1185 fp->_IO_read_ptr += have;
1188 /* Check for backup and repeat */
1189 if (_IO_in_backup (fp))
1191 _IO_switch_to_main_get_area (fp);
1192 continue;
1195 /* If we now want less than a buffer, underflow and repeat
1196 the copy. Otherwise, _IO_SYSREAD directly to
1197 the user buffer. */
1198 if (fp->_IO_buf_base && want < fp->_IO_buf_end - fp->_IO_buf_base)
1200 if (__underflow (fp) == EOF)
1201 break;
1203 continue;
1206 /* These must be set before the sysread as we might longjmp out
1207 waiting for input. */
1208 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
1209 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
1211 /* Try to maintain alignment: read a whole number of blocks. */
1212 count = want;
1213 if (fp->_IO_buf_base)
1215 _IO_size_t block_size = fp->_IO_buf_end - fp->_IO_buf_base;
1216 if (block_size >= 128)
1217 count -= want % block_size;
1220 count = _IO_SYSREAD (fp, s, count);
1221 if (count <= 0)
1223 if (count == 0)
1224 fp->_flags |= _IO_EOF_SEEN;
1225 else
1226 fp->_flags |= _IO_ERR_SEEN;
1228 break;
1231 s += count;
1232 want -= count;
1233 if (fp->_offset != _IO_pos_BAD)
1234 _IO_pos_adjust (fp->_offset, count);
1238 return n - want;
1240 INTDEF(_IO_file_xsgetn)
1242 static _IO_size_t _IO_file_xsgetn_mmap __P ((_IO_FILE *, void *, _IO_size_t));
1243 static _IO_size_t
1244 _IO_file_xsgetn_mmap (fp, data, n)
1245 _IO_FILE *fp;
1246 void *data;
1247 _IO_size_t n;
1249 register _IO_size_t have;
1250 char *read_ptr = fp->_IO_read_ptr;
1251 register char *s = (char *) data;
1253 have = fp->_IO_read_end - fp->_IO_read_ptr;
1255 if (have < n)
1257 if (__builtin_expect (_IO_in_backup (fp), 0))
1259 #ifdef _LIBC
1260 s = __mempcpy (s, read_ptr, have);
1261 #else
1262 memcpy (s, read_ptr, have);
1263 s += have;
1264 #endif
1265 n -= have;
1266 _IO_switch_to_main_get_area (fp);
1267 read_ptr = fp->_IO_read_ptr;
1268 have = fp->_IO_read_end - fp->_IO_read_ptr;
1271 if (have < n)
1273 /* Maybe the read buffer is not yet fully set up. */
1274 fp->_IO_read_ptr = fp->_IO_read_end;
1275 if (fp->_IO_read_end < fp->_IO_buf_end
1276 && _IO_file_underflow_mmap (fp) != EOF)
1277 have = fp->_IO_read_end - read_ptr;
1281 if (have < n)
1282 fp->_flags |= _IO_EOF_SEEN;
1284 if (have != 0)
1286 have = MIN (have, n);
1287 #ifdef _LIBC
1288 s = __mempcpy (s, read_ptr, have);
1289 #else
1290 memcpy (s, read_ptr, have);
1291 s += have;
1292 #endif
1293 fp->_IO_read_ptr = read_ptr + have;
1296 return s - (char *) data;
1299 struct _IO_jump_t _IO_file_jumps =
1301 JUMP_INIT_DUMMY,
1302 JUMP_INIT(finish, INTUSE(_IO_file_finish)),
1303 JUMP_INIT(overflow, INTUSE(_IO_file_overflow)),
1304 JUMP_INIT(underflow, INTUSE(_IO_file_underflow)),
1305 JUMP_INIT(uflow, INTUSE(_IO_default_uflow)),
1306 JUMP_INIT(pbackfail, INTUSE(_IO_default_pbackfail)),
1307 JUMP_INIT(xsputn, INTUSE(_IO_file_xsputn)),
1308 JUMP_INIT(xsgetn, INTUSE(_IO_file_xsgetn)),
1309 JUMP_INIT(seekoff, _IO_new_file_seekoff),
1310 JUMP_INIT(seekpos, _IO_default_seekpos),
1311 JUMP_INIT(setbuf, _IO_new_file_setbuf),
1312 JUMP_INIT(sync, _IO_new_file_sync),
1313 JUMP_INIT(doallocate, INTUSE(_IO_file_doallocate)),
1314 JUMP_INIT(read, INTUSE(_IO_file_read)),
1315 JUMP_INIT(write, _IO_new_file_write),
1316 JUMP_INIT(seek, INTUSE(_IO_file_seek)),
1317 JUMP_INIT(close, INTUSE(_IO_file_close)),
1318 JUMP_INIT(stat, INTUSE(_IO_file_stat)),
1319 JUMP_INIT(showmanyc, _IO_default_showmanyc),
1320 JUMP_INIT(imbue, _IO_default_imbue)
1322 INTVARDEF(_IO_file_jumps)
1324 struct _IO_jump_t _IO_file_jumps_mmap =
1326 JUMP_INIT_DUMMY,
1327 JUMP_INIT(finish, INTUSE(_IO_file_finish)),
1328 JUMP_INIT(overflow, INTUSE(_IO_file_overflow)),
1329 JUMP_INIT(underflow, _IO_file_underflow_mmap),
1330 JUMP_INIT(uflow, INTUSE(_IO_default_uflow)),
1331 JUMP_INIT(pbackfail, INTUSE(_IO_default_pbackfail)),
1332 JUMP_INIT(xsputn, _IO_new_file_xsputn),
1333 JUMP_INIT(xsgetn, _IO_file_xsgetn_mmap),
1334 JUMP_INIT(seekoff, _IO_file_seekoff_mmap),
1335 JUMP_INIT(seekpos, _IO_default_seekpos),
1336 JUMP_INIT(setbuf, (_IO_setbuf_t) _IO_file_setbuf_mmap),
1337 JUMP_INIT(sync, _IO_new_file_sync),
1338 JUMP_INIT(doallocate, INTUSE(_IO_file_doallocate)),
1339 JUMP_INIT(read, INTUSE(_IO_file_read)),
1340 JUMP_INIT(write, _IO_new_file_write),
1341 JUMP_INIT(seek, INTUSE(_IO_file_seek)),
1342 JUMP_INIT(close, _IO_file_close_mmap),
1343 JUMP_INIT(stat, INTUSE(_IO_file_stat)),
1344 JUMP_INIT(showmanyc, _IO_default_showmanyc),
1345 JUMP_INIT(imbue, _IO_default_imbue)
1348 #ifdef _LIBC
1349 versioned_symbol (libc, _IO_new_do_write, _IO_do_write, GLIBC_2_1);
1350 versioned_symbol (libc, _IO_new_file_attach, _IO_file_attach, GLIBC_2_1);
1351 versioned_symbol (libc, _IO_new_file_close_it, _IO_file_close_it, GLIBC_2_1);
1352 versioned_symbol (libc, _IO_new_file_finish, _IO_file_finish, GLIBC_2_1);
1353 versioned_symbol (libc, _IO_new_file_fopen, _IO_file_fopen, GLIBC_2_1);
1354 versioned_symbol (libc, _IO_new_file_init, _IO_file_init, GLIBC_2_1);
1355 versioned_symbol (libc, _IO_new_file_setbuf, _IO_file_setbuf, GLIBC_2_1);
1356 versioned_symbol (libc, _IO_new_file_sync, _IO_file_sync, GLIBC_2_1);
1357 versioned_symbol (libc, _IO_new_file_overflow, _IO_file_overflow, GLIBC_2_1);
1358 versioned_symbol (libc, _IO_new_file_seekoff, _IO_file_seekoff, GLIBC_2_1);
1359 versioned_symbol (libc, _IO_new_file_underflow, _IO_file_underflow, GLIBC_2_1);
1360 versioned_symbol (libc, _IO_new_file_write, _IO_file_write, GLIBC_2_1);
1361 versioned_symbol (libc, _IO_new_file_xsputn, _IO_file_xsputn, GLIBC_2_1);
1362 #endif