]> git.ipfire.org Git - thirdparty/glibc.git/blame - libio/iogetdelim.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / libio / iogetdelim.c
CommitLineData
b168057a 1/* Copyright (C) 1994-2015 Free Software Foundation, Inc.
41bdb6e2 2 This file is part of the GNU C Library.
96aa2d94 3
41bdb6e2
AJ
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
96aa2d94 8
41bdb6e2
AJ
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
40a55d20 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 12 Lesser General Public License for more details.
96aa2d94 13
41bdb6e2 14 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>.
96aa2d94 17
41bdb6e2
AJ
18 As a special exception, if you link the code in this file with
19 files compiled with a GNU compiler to produce an executable,
20 that does not cause the resulting executable to be covered by
21 the GNU Lesser General Public License. This exception does not
22 however invalidate any other reasons why the executable file
23 might be covered by the GNU Lesser General Public License.
24 This exception applies to code released by its copyright holders
25 in files containing the exception. */
96aa2d94 26
96aa2d94 27#include <stdlib.h>
96aa2d94
RM
28#include "libioP.h"
29#include <string.h>
30#include <errno.h>
60160d83 31#include <limits.h>
96aa2d94
RM
32
33/* Read up to (and including) a TERMINATOR from FP into *LINEPTR
34 (and null-terminate it). *LINEPTR is a pointer returned from malloc (or
35 NULL), pointing to *N characters of space. It is realloc'ed as
36 necessary. Returns the number of characters read (not including the
37 null terminator), or -1 on error or EOF. */
38
39_IO_ssize_t
40_IO_getdelim (lineptr, n, delimiter, fp)
41 char **lineptr;
42 _IO_size_t *n;
40a55d20
UD
43 int delimiter;
44 _IO_FILE *fp;
96aa2d94 45{
6cebdfd8 46 _IO_ssize_t result;
40a55d20 47 _IO_ssize_t cur_len = 0;
96aa2d94
RM
48 _IO_ssize_t len;
49
50 if (lineptr == NULL || n == NULL)
51 {
c4029823 52 MAYBE_SET_EINVAL;
96aa2d94
RM
53 return -1;
54 }
55 CHECK_FILE (fp, -1);
0261d33f 56 _IO_acquire_lock (fp);
7c713e28
RM
57 if (_IO_ferror_unlocked (fp))
58 {
59 result = -1;
60 goto unlock_return;
61 }
96aa2d94
RM
62
63 if (*lineptr == NULL || *n == 0)
64 {
65 *n = 120;
66 *lineptr = (char *) malloc (*n);
67 if (*lineptr == NULL)
7c713e28
RM
68 {
69 result = -1;
70 goto unlock_return;
71 }
96aa2d94
RM
72 }
73
74 len = fp->_IO_read_end - fp->_IO_read_ptr;
75 if (len <= 0)
76 {
77 if (__underflow (fp) == EOF)
7c713e28
RM
78 {
79 result = -1;
80 goto unlock_return;
81 }
96aa2d94
RM
82 len = fp->_IO_read_end - fp->_IO_read_ptr;
83 }
84
85 for (;;)
86 {
87 _IO_size_t needed;
88 char *t;
89 t = (char *) memchr ((void *) fp->_IO_read_ptr, delimiter, len);
90 if (t != NULL)
91 len = (t - fp->_IO_read_ptr) + 1;
a1ffb40e 92 if (__glibc_unlikely (len >= SSIZE_MAX - cur_len))
6cebdfd8
UD
93 {
94 __set_errno (EOVERFLOW);
95 result = -1;
96 goto unlock_return;
97 }
77a58cad 98 /* Make enough space for len+1 (for final NUL) bytes. */
96aa2d94
RM
99 needed = cur_len + len + 1;
100 if (needed > *n)
101 {
d1dddedf
UD
102 char *new_lineptr;
103
77a58cad 104 if (needed < 2 * *n)
96aa2d94 105 needed = 2 * *n; /* Be generous. */
d1dddedf
UD
106 new_lineptr = (char *) realloc (*lineptr, needed);
107 if (new_lineptr == NULL)
7c713e28
RM
108 {
109 result = -1;
110 goto unlock_return;
111 }
d1dddedf
UD
112 *lineptr = new_lineptr;
113 *n = needed;
96aa2d94
RM
114 }
115 memcpy (*lineptr + cur_len, (void *) fp->_IO_read_ptr, len);
116 fp->_IO_read_ptr += len;
117 cur_len += len;
118 if (t != NULL || __underflow (fp) == EOF)
119 break;
120 len = fp->_IO_read_end - fp->_IO_read_ptr;
121 }
77a58cad 122 (*lineptr)[cur_len] = '\0';
7c713e28
RM
123 result = cur_len;
124
125unlock_return:
0261d33f 126 _IO_release_lock (fp);
7c713e28 127 return result;
96aa2d94
RM
128}
129
ca34d7a7 130#ifdef weak_alias
96aa2d94
RM
131weak_alias (_IO_getdelim, __getdelim)
132weak_alias (_IO_getdelim, getdelim)
ca34d7a7 133#endif