hppa: Fix ChangeLog format issues.
[glibc.git] / libio / iogetdelim.c
blobbf4b0f776a7af3ad6dfc8db7c3a47551f58ab55f
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. */
28 #include <stdlib.h>
29 #include "libioP.h"
30 #include <string.h>
31 #include <errno.h>
32 #include <limits.h>
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. */
40 _IO_ssize_t
41 _IO_getdelim (lineptr, n, delimiter, fp)
42 char **lineptr;
43 _IO_size_t *n;
44 int delimiter;
45 _IO_FILE *fp;
47 _IO_ssize_t result;
48 _IO_ssize_t cur_len = 0;
49 _IO_ssize_t len;
51 if (lineptr == NULL || n == NULL)
53 MAYBE_SET_EINVAL;
54 return -1;
56 CHECK_FILE (fp, -1);
57 _IO_acquire_lock (fp);
58 if (_IO_ferror_unlocked (fp))
60 result = -1;
61 goto unlock_return;
64 if (*lineptr == NULL || *n == 0)
66 *n = 120;
67 *lineptr = (char *) malloc (*n);
68 if (*lineptr == NULL)
70 result = -1;
71 goto unlock_return;
75 len = fp->_IO_read_end - fp->_IO_read_ptr;
76 if (len <= 0)
78 if (__underflow (fp) == EOF)
80 result = -1;
81 goto unlock_return;
83 len = fp->_IO_read_end - fp->_IO_read_ptr;
86 for (;;)
88 _IO_size_t needed;
89 char *t;
90 t = (char *) memchr ((void *) fp->_IO_read_ptr, delimiter, len);
91 if (t != NULL)
92 len = (t - fp->_IO_read_ptr) + 1;
93 if (__builtin_expect (len >= SSIZE_MAX - cur_len, 0))
95 __set_errno (EOVERFLOW);
96 result = -1;
97 goto unlock_return;
99 /* Make enough space for len+1 (for final NUL) bytes. */
100 needed = cur_len + len + 1;
101 if (needed > *n)
103 char *new_lineptr;
105 if (needed < 2 * *n)
106 needed = 2 * *n; /* Be generous. */
107 new_lineptr = (char *) realloc (*lineptr, needed);
108 if (new_lineptr == NULL)
110 result = -1;
111 goto unlock_return;
113 *lineptr = new_lineptr;
114 *n = needed;
116 memcpy (*lineptr + cur_len, (void *) fp->_IO_read_ptr, len);
117 fp->_IO_read_ptr += len;
118 cur_len += len;
119 if (t != NULL || __underflow (fp) == EOF)
120 break;
121 len = fp->_IO_read_end - fp->_IO_read_ptr;
123 (*lineptr)[cur_len] = '\0';
124 result = cur_len;
126 unlock_return:
127 _IO_release_lock (fp);
128 return result;
131 #ifdef weak_alias
132 weak_alias (_IO_getdelim, __getdelim)
133 weak_alias (_IO_getdelim, getdelim)
134 #endif