]> git.ipfire.org Git - thirdparty/glibc.git/blame - libio/iogetdelim.c
Fix doc quoting problems with Texinfo 5
[thirdparty/glibc.git] / libio / iogetdelim.c
CommitLineData
f7a9f785 1/* Copyright (C) 1994-2016 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
9d46370c 40_IO_getdelim (char **lineptr, _IO_size_t *n, int delimiter, _IO_FILE *fp)
96aa2d94 41{
6cebdfd8 42 _IO_ssize_t result;
40a55d20 43 _IO_ssize_t cur_len = 0;
96aa2d94
RM
44 _IO_ssize_t len;
45
46 if (lineptr == NULL || n == NULL)
47 {
c4029823 48 MAYBE_SET_EINVAL;
96aa2d94
RM
49 return -1;
50 }
51 CHECK_FILE (fp, -1);
0261d33f 52 _IO_acquire_lock (fp);
7c713e28
RM
53 if (_IO_ferror_unlocked (fp))
54 {
55 result = -1;
56 goto unlock_return;
57 }
96aa2d94
RM
58
59 if (*lineptr == NULL || *n == 0)
60 {
61 *n = 120;
62 *lineptr = (char *) malloc (*n);
63 if (*lineptr == NULL)
7c713e28
RM
64 {
65 result = -1;
66 goto unlock_return;
67 }
96aa2d94
RM
68 }
69
70 len = fp->_IO_read_end - fp->_IO_read_ptr;
71 if (len <= 0)
72 {
73 if (__underflow (fp) == EOF)
7c713e28
RM
74 {
75 result = -1;
76 goto unlock_return;
77 }
96aa2d94
RM
78 len = fp->_IO_read_end - fp->_IO_read_ptr;
79 }
80
81 for (;;)
82 {
83 _IO_size_t needed;
84 char *t;
85 t = (char *) memchr ((void *) fp->_IO_read_ptr, delimiter, len);
86 if (t != NULL)
87 len = (t - fp->_IO_read_ptr) + 1;
a1ffb40e 88 if (__glibc_unlikely (len >= SSIZE_MAX - cur_len))
6cebdfd8
UD
89 {
90 __set_errno (EOVERFLOW);
91 result = -1;
92 goto unlock_return;
93 }
77a58cad 94 /* Make enough space for len+1 (for final NUL) bytes. */
96aa2d94
RM
95 needed = cur_len + len + 1;
96 if (needed > *n)
97 {
d1dddedf
UD
98 char *new_lineptr;
99
77a58cad 100 if (needed < 2 * *n)
96aa2d94 101 needed = 2 * *n; /* Be generous. */
d1dddedf
UD
102 new_lineptr = (char *) realloc (*lineptr, needed);
103 if (new_lineptr == NULL)
7c713e28
RM
104 {
105 result = -1;
106 goto unlock_return;
107 }
d1dddedf
UD
108 *lineptr = new_lineptr;
109 *n = needed;
96aa2d94
RM
110 }
111 memcpy (*lineptr + cur_len, (void *) fp->_IO_read_ptr, len);
112 fp->_IO_read_ptr += len;
113 cur_len += len;
114 if (t != NULL || __underflow (fp) == EOF)
115 break;
116 len = fp->_IO_read_end - fp->_IO_read_ptr;
117 }
77a58cad 118 (*lineptr)[cur_len] = '\0';
7c713e28
RM
119 result = cur_len;
120
121unlock_return:
0261d33f 122 _IO_release_lock (fp);
7c713e28 123 return result;
96aa2d94
RM
124}
125
ca34d7a7 126#ifdef weak_alias
96aa2d94
RM
127weak_alias (_IO_getdelim, __getdelim)
128weak_alias (_IO_getdelim, getdelim)
ca34d7a7 129#endif