1 /* Copyright (C) 1994,1996-1998,2001,2003,2005,2012
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
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. */
34 /* Read up to (and including) a TERMINATOR from FP into *LINEPTR
35 (and null-terminate it). *LINEPTR is a pointer returned from malloc (or
36 NULL), pointing to *N characters of space. It is realloc'ed as
37 necessary. Returns the number of characters read (not including the
38 null terminator), or -1 on error or EOF. */
41 _IO_getdelim (lineptr
, n
, delimiter
, fp
)
48 _IO_ssize_t cur_len
= 0;
51 if (lineptr
== NULL
|| n
== NULL
)
57 _IO_acquire_lock (fp
);
58 if (_IO_ferror_unlocked (fp
))
64 if (*lineptr
== NULL
|| *n
== 0)
67 *lineptr
= (char *) malloc (*n
);
75 len
= fp
->_IO_read_end
- fp
->_IO_read_ptr
;
78 if (__underflow (fp
) == EOF
)
83 len
= fp
->_IO_read_end
- fp
->_IO_read_ptr
;
90 t
= (char *) memchr ((void *) fp
->_IO_read_ptr
, delimiter
, len
);
92 len
= (t
- fp
->_IO_read_ptr
) + 1;
93 if (__builtin_expect (len
>= SSIZE_MAX
- cur_len
, 0))
95 __set_errno (EOVERFLOW
);
99 /* Make enough space for len+1 (for final NUL) bytes. */
100 needed
= cur_len
+ len
+ 1;
106 needed
= 2 * *n
; /* Be generous. */
107 new_lineptr
= (char *) realloc (*lineptr
, needed
);
108 if (new_lineptr
== NULL
)
113 *lineptr
= new_lineptr
;
116 memcpy (*lineptr
+ cur_len
, (void *) fp
->_IO_read_ptr
, len
);
117 fp
->_IO_read_ptr
+= len
;
119 if (t
!= NULL
|| __underflow (fp
) == EOF
)
121 len
= fp
->_IO_read_end
- fp
->_IO_read_ptr
;
123 (*lineptr
)[cur_len
] = '\0';
127 _IO_release_lock (fp
);
132 weak_alias (_IO_getdelim
, __getdelim
)
133 weak_alias (_IO_getdelim
, getdelim
)