xref: /freebsd/lib/libc/stdio/fgets.3 (revision 3ad12d2782d19864056a04ab3676ba008003b397)
158f0484fSRodney W. Grimes.\" Copyright (c) 1990, 1991, 1993
258f0484fSRodney W. Grimes.\"	The Regents of the University of California.  All rights reserved.
358f0484fSRodney W. Grimes.\"
458f0484fSRodney W. Grimes.\" This code is derived from software contributed to Berkeley by
558f0484fSRodney W. Grimes.\" Chris Torek and the American National Standards Committee X3,
658f0484fSRodney W. Grimes.\" on Information Processing Systems.
758f0484fSRodney W. Grimes.\"
858f0484fSRodney W. Grimes.\" Redistribution and use in source and binary forms, with or without
958f0484fSRodney W. Grimes.\" modification, are permitted provided that the following conditions
1058f0484fSRodney W. Grimes.\" are met:
1158f0484fSRodney W. Grimes.\" 1. Redistributions of source code must retain the above copyright
1258f0484fSRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer.
1358f0484fSRodney W. Grimes.\" 2. Redistributions in binary form must reproduce the above copyright
1458f0484fSRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer in the
1558f0484fSRodney W. Grimes.\"    documentation and/or other materials provided with the distribution.
16fbbd9655SWarner Losh.\" 3. Neither the name of the University nor the names of its contributors
1758f0484fSRodney W. Grimes.\"    may be used to endorse or promote products derived from this software
1858f0484fSRodney W. Grimes.\"    without specific prior written permission.
1958f0484fSRodney W. Grimes.\"
2058f0484fSRodney W. Grimes.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2158f0484fSRodney W. Grimes.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2258f0484fSRodney W. Grimes.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2358f0484fSRodney W. Grimes.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2458f0484fSRodney W. Grimes.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2558f0484fSRodney W. Grimes.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2658f0484fSRodney W. Grimes.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2758f0484fSRodney W. Grimes.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2858f0484fSRodney W. Grimes.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2958f0484fSRodney W. Grimes.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3058f0484fSRodney W. Grimes.\" SUCH DAMAGE.
3158f0484fSRodney W. Grimes.\"
3258f0484fSRodney W. Grimes.\"     @(#)fgets.3	8.1 (Berkeley) 6/4/93
337f3dea24SPeter Wemm.\" $FreeBSD$
3458f0484fSRodney W. Grimes.\"
357ad6003dSCy Schubert.Dd April 3, 2018
3658f0484fSRodney W. Grimes.Dt FGETS 3
3758f0484fSRodney W. Grimes.Os
3858f0484fSRodney W. Grimes.Sh NAME
3958f0484fSRodney W. Grimes.Nm fgets ,
407ad6003dSCy Schubert.Nm gets ,
417ad6003dSCy Schubert.Nm gets_s
4258f0484fSRodney W. Grimes.Nd get a line from a stream
4325bb73e0SAlexey Zelkin.Sh LIBRARY
4425bb73e0SAlexey Zelkin.Lb libc
4558f0484fSRodney W. Grimes.Sh SYNOPSIS
4632eef9aeSRuslan Ermilov.In stdio.h
4758f0484fSRodney W. Grimes.Ft char *
4854e4e385SMike Barcroft.Fn fgets "char * restrict str" "int size" "FILE * restrict stream"
4958f0484fSRodney W. Grimes.Ft char *
50a77546fbSCy Schubert.Fn gets_s "char *str" "rsize_t size"
51a77546fbSCy Schubert.Ft char *
5258f0484fSRodney W. Grimes.Fn gets "char *str"
5358f0484fSRodney W. Grimes.Sh DESCRIPTION
5458f0484fSRodney W. GrimesThe
5558f0484fSRodney W. Grimes.Fn fgets
5658f0484fSRodney W. Grimesfunction
5758f0484fSRodney W. Grimesreads at most one less than the number of characters specified by
58fe20c3b6SBruce Evans.Fa size
5958f0484fSRodney W. Grimesfrom the given
6058f0484fSRodney W. Grimes.Fa stream
6158f0484fSRodney W. Grimesand stores them in the string
6258f0484fSRodney W. Grimes.Fa str .
6358f0484fSRodney W. GrimesReading stops when a newline character is found,
6458f0484fSRodney W. Grimesat end-of-file or error.
6558f0484fSRodney W. GrimesThe newline, if any, is retained.
66fe20c3b6SBruce EvansIf any characters are read and there is no error, a
6758f0484fSRodney W. Grimes.Ql \e0
6858f0484fSRodney W. Grimescharacter is appended to end the string.
6958f0484fSRodney W. Grimes.Pp
7058f0484fSRodney W. GrimesThe
71a77546fbSCy Schubert.Fn gets_s
72a77546fbSCy Schubertfunction
73a77546fbSCy Schubertis equivalent to
74a77546fbSCy Schubert.Fn fgets
75a77546fbSCy Schubertwith a
76a77546fbSCy Schubert.Fa stream
77a77546fbSCy Schubertof
78a77546fbSCy Schubert.Dv stdin ,
79a77546fbSCy Schubertexcept that the newline character (if any) is not stored in the string.
80a77546fbSCy Schubert.Pp
81a77546fbSCy SchubertThe
8258f0484fSRodney W. Grimes.Fn gets
8358f0484fSRodney W. Grimesfunction
8458f0484fSRodney W. Grimesis equivalent to
8558f0484fSRodney W. Grimes.Fn fgets
8658f0484fSRodney W. Grimeswith an infinite
87fe20c3b6SBruce Evans.Fa size
8858f0484fSRodney W. Grimesand a
8958f0484fSRodney W. Grimes.Fa stream
9058f0484fSRodney W. Grimesof
91ae828962SRuslan Ermilov.Dv stdin ,
9258f0484fSRodney W. Grimesexcept that the newline character (if any) is not stored in the string.
9358f0484fSRodney W. GrimesIt is the caller's responsibility to ensure that the input line,
9458f0484fSRodney W. Grimesif any, is sufficiently short to fit in the string.
9558f0484fSRodney W. Grimes.Sh RETURN VALUES
9658f0484fSRodney W. GrimesUpon successful completion,
97a77546fbSCy Schubert.Fn fgets ,
98a77546fbSCy Schubert.Fn gets_s ,
9958f0484fSRodney W. Grimesand
10058f0484fSRodney W. Grimes.Fn gets
10158f0484fSRodney W. Grimesreturn
10258f0484fSRodney W. Grimesa pointer to the string.
103fe20c3b6SBruce EvansIf end-of-file occurs before any characters are read,
10458f0484fSRodney W. Grimesthey return
105fe20c3b6SBruce Evans.Dv NULL
1066accdce9SArchie Cobbsand the buffer contents remain unchanged.
107fe20c3b6SBruce EvansIf an error occurs,
108fe20c3b6SBruce Evansthey return
109fe20c3b6SBruce Evans.Dv NULL
1106accdce9SArchie Cobbsand the buffer contents are indeterminate.
11158f0484fSRodney W. GrimesThe
112a77546fbSCy Schubert.Fn fgets ,
113a77546fbSCy Schubert.Fn gets_s ,
11458f0484fSRodney W. Grimesand
11558f0484fSRodney W. Grimes.Fn gets
116fe20c3b6SBruce Evansfunctions
11758f0484fSRodney W. Grimesdo not distinguish between end-of-file and error, and callers must use
11858f0484fSRodney W. Grimes.Xr feof 3
11958f0484fSRodney W. Grimesand
12058f0484fSRodney W. Grimes.Xr ferror 3
12158f0484fSRodney W. Grimesto determine which occurred.
12258f0484fSRodney W. Grimes.Sh ERRORS
12303fc6303SAlexey Zelkin.Bl -tag -width Er
12458f0484fSRodney W. Grimes.It Bq Er EBADF
12558f0484fSRodney W. GrimesThe given
12658f0484fSRodney W. Grimes.Fa stream
12758f0484fSRodney W. Grimesis not a readable stream.
12858f0484fSRodney W. Grimes.El
12958f0484fSRodney W. Grimes.Pp
13058f0484fSRodney W. GrimesThe function
13158f0484fSRodney W. Grimes.Fn fgets
13258f0484fSRodney W. Grimesmay also fail and set
13358f0484fSRodney W. Grimes.Va errno
13458f0484fSRodney W. Grimesfor any of the errors specified for the routines
13558f0484fSRodney W. Grimes.Xr fflush 3 ,
13658f0484fSRodney W. Grimes.Xr fstat 2 ,
13758f0484fSRodney W. Grimes.Xr read 2 ,
13858f0484fSRodney W. Grimesor
13958f0484fSRodney W. Grimes.Xr malloc 3 .
14058f0484fSRodney W. Grimes.Pp
14158f0484fSRodney W. GrimesThe function
14258f0484fSRodney W. Grimes.Fn gets
143*3ad12d27SCy Schubertand
144*3ad12d27SCy Schubert.Fn gets_s
14558f0484fSRodney W. Grimesmay also fail and set
14658f0484fSRodney W. Grimes.Va errno
14758f0484fSRodney W. Grimesfor any of the errors specified for the routine
14858f0484fSRodney W. Grimes.Xr getchar 3 .
1490afc94c1SUlrich Spörlein.Sh SEE ALSO
1500afc94c1SUlrich Spörlein.Xr feof 3 ,
1510afc94c1SUlrich Spörlein.Xr ferror 3 ,
1520afc94c1SUlrich Spörlein.Xr fgetln 3 ,
1530afc94c1SUlrich Spörlein.Xr fgetws 3 ,
1540afc94c1SUlrich Spörlein.Xr getline 3
1550afc94c1SUlrich Spörlein.Sh STANDARDS
1560afc94c1SUlrich SpörleinThe functions
1570afc94c1SUlrich Spörlein.Fn fgets
1580afc94c1SUlrich Spörleinand
1590afc94c1SUlrich Spörlein.Fn gets
1600afc94c1SUlrich Spörleinconform to
1610afc94c1SUlrich Spörlein.St -isoC-99 .
162a77546fbSCy Schubert.Fn gets_s
163a77546fbSCy Schubertconforms to
164a77546fbSCy Schubert.St -isoC-2011
165a77546fbSCy SchubertK.3.7.4.1.
166a77546fbSCy Schubert.Fn gets
167a77546fbSCy Schuberthas been removed from
168a77546fbSCy Schubert.St -isoC-2011 .
169e125c135SChris Costello.Sh SECURITY CONSIDERATIONS
170e125c135SChris CostelloThe
171e125c135SChris Costello.Fn gets
172e125c135SChris Costellofunction cannot be used securely.
173e125c135SChris CostelloBecause of its lack of bounds checking,
1746ba681a1SChris Costelloand the inability for the calling program
1756ba681a1SChris Costelloto reliably determine the length of the next incoming line,
176e125c135SChris Costellothe use of this function enables malicious users
177e125c135SChris Costelloto arbitrarily change a running program's functionality through
178e125c135SChris Costelloa buffer overflow attack.
1796ba681a1SChris CostelloIt is strongly suggested that the
1806ba681a1SChris Costello.Fn fgets
1816ba681a1SChris Costellofunction be used in all cases.
182