xref: /freebsd/lib/libc/stdio/fgets.3 (revision a77546fbb3a791e372a0f1e423082ebdb74db336)
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.\"
359ff418daSEitan Adler.Dd May 5, 2012
3658f0484fSRodney W. Grimes.Dt FGETS 3
3758f0484fSRodney W. Grimes.Os
3858f0484fSRodney W. Grimes.Sh NAME
3958f0484fSRodney W. Grimes.Nm fgets ,
4058f0484fSRodney W. Grimes.Nm gets
4158f0484fSRodney W. Grimes.Nd get a line from a stream
4225bb73e0SAlexey Zelkin.Sh LIBRARY
4325bb73e0SAlexey Zelkin.Lb libc
4458f0484fSRodney W. Grimes.Sh SYNOPSIS
4532eef9aeSRuslan Ermilov.In stdio.h
4658f0484fSRodney W. Grimes.Ft char *
4754e4e385SMike Barcroft.Fn fgets "char * restrict str" "int size" "FILE * restrict stream"
4858f0484fSRodney W. Grimes.Ft char *
49*a77546fbSCy Schubert.Fn gets_s "char *str" "rsize_t size"
50*a77546fbSCy Schubert.Ft char *
5158f0484fSRodney W. Grimes.Fn gets "char *str"
5258f0484fSRodney W. Grimes.Sh DESCRIPTION
5358f0484fSRodney W. GrimesThe
5458f0484fSRodney W. Grimes.Fn fgets
5558f0484fSRodney W. Grimesfunction
5658f0484fSRodney W. Grimesreads at most one less than the number of characters specified by
57fe20c3b6SBruce Evans.Fa size
5858f0484fSRodney W. Grimesfrom the given
5958f0484fSRodney W. Grimes.Fa stream
6058f0484fSRodney W. Grimesand stores them in the string
6158f0484fSRodney W. Grimes.Fa str .
6258f0484fSRodney W. GrimesReading stops when a newline character is found,
6358f0484fSRodney W. Grimesat end-of-file or error.
6458f0484fSRodney W. GrimesThe newline, if any, is retained.
65fe20c3b6SBruce EvansIf any characters are read and there is no error, a
6658f0484fSRodney W. Grimes.Ql \e0
6758f0484fSRodney W. Grimescharacter is appended to end the string.
6858f0484fSRodney W. Grimes.Pp
6958f0484fSRodney W. GrimesThe
70*a77546fbSCy Schubert.Fn gets_s
71*a77546fbSCy Schubertfunction
72*a77546fbSCy Schubertis equivalent to
73*a77546fbSCy Schubert.Fn fgets
74*a77546fbSCy Schubertwith a
75*a77546fbSCy Schubert.Fa stream
76*a77546fbSCy Schubertof
77*a77546fbSCy Schubert.Dv stdin ,
78*a77546fbSCy Schubertexcept that the newline character (if any) is not stored in the string.
79*a77546fbSCy Schubert.Pp
80*a77546fbSCy SchubertThe
8158f0484fSRodney W. Grimes.Fn gets
8258f0484fSRodney W. Grimesfunction
8358f0484fSRodney W. Grimesis equivalent to
8458f0484fSRodney W. Grimes.Fn fgets
8558f0484fSRodney W. Grimeswith an infinite
86fe20c3b6SBruce Evans.Fa size
8758f0484fSRodney W. Grimesand a
8858f0484fSRodney W. Grimes.Fa stream
8958f0484fSRodney W. Grimesof
90ae828962SRuslan Ermilov.Dv stdin ,
9158f0484fSRodney W. Grimesexcept that the newline character (if any) is not stored in the string.
9258f0484fSRodney W. GrimesIt is the caller's responsibility to ensure that the input line,
9358f0484fSRodney W. Grimesif any, is sufficiently short to fit in the string.
9458f0484fSRodney W. Grimes.Sh RETURN VALUES
9558f0484fSRodney W. GrimesUpon successful completion,
96*a77546fbSCy Schubert.Fn fgets ,
97*a77546fbSCy Schubert.Fn gets_s ,
9858f0484fSRodney W. Grimesand
9958f0484fSRodney W. Grimes.Fn gets
10058f0484fSRodney W. Grimesreturn
10158f0484fSRodney W. Grimesa pointer to the string.
102fe20c3b6SBruce EvansIf end-of-file occurs before any characters are read,
10358f0484fSRodney W. Grimesthey return
104fe20c3b6SBruce Evans.Dv NULL
1056accdce9SArchie Cobbsand the buffer contents remain unchanged.
106fe20c3b6SBruce EvansIf an error occurs,
107fe20c3b6SBruce Evansthey return
108fe20c3b6SBruce Evans.Dv NULL
1096accdce9SArchie Cobbsand the buffer contents are indeterminate.
11058f0484fSRodney W. GrimesThe
111*a77546fbSCy Schubert.Fn fgets ,
112*a77546fbSCy Schubert.Fn gets_s ,
11358f0484fSRodney W. Grimesand
11458f0484fSRodney W. Grimes.Fn gets
115fe20c3b6SBruce Evansfunctions
11658f0484fSRodney W. Grimesdo not distinguish between end-of-file and error, and callers must use
11758f0484fSRodney W. Grimes.Xr feof 3
11858f0484fSRodney W. Grimesand
11958f0484fSRodney W. Grimes.Xr ferror 3
12058f0484fSRodney W. Grimesto determine which occurred.
12158f0484fSRodney W. Grimes.Sh ERRORS
12203fc6303SAlexey Zelkin.Bl -tag -width Er
12358f0484fSRodney W. Grimes.It Bq Er EBADF
12458f0484fSRodney W. GrimesThe given
12558f0484fSRodney W. Grimes.Fa stream
12658f0484fSRodney W. Grimesis not a readable stream.
12758f0484fSRodney W. Grimes.El
12858f0484fSRodney W. Grimes.Pp
12958f0484fSRodney W. GrimesThe function
13058f0484fSRodney W. Grimes.Fn fgets
13158f0484fSRodney W. Grimesmay also fail and set
13258f0484fSRodney W. Grimes.Va errno
13358f0484fSRodney W. Grimesfor any of the errors specified for the routines
13458f0484fSRodney W. Grimes.Xr fflush 3 ,
13558f0484fSRodney W. Grimes.Xr fstat 2 ,
13658f0484fSRodney W. Grimes.Xr read 2 ,
13758f0484fSRodney W. Grimesor
13858f0484fSRodney W. Grimes.Xr malloc 3 .
13958f0484fSRodney W. Grimes.Pp
14058f0484fSRodney W. GrimesThe function
14158f0484fSRodney W. Grimes.Fn gets
14258f0484fSRodney W. Grimesmay also fail and set
14358f0484fSRodney W. Grimes.Va errno
14458f0484fSRodney W. Grimesfor any of the errors specified for the routine
14558f0484fSRodney W. Grimes.Xr getchar 3 .
1460afc94c1SUlrich Spörlein.Sh SEE ALSO
1470afc94c1SUlrich Spörlein.Xr feof 3 ,
1480afc94c1SUlrich Spörlein.Xr ferror 3 ,
1490afc94c1SUlrich Spörlein.Xr fgetln 3 ,
1500afc94c1SUlrich Spörlein.Xr fgetws 3 ,
1510afc94c1SUlrich Spörlein.Xr getline 3
1520afc94c1SUlrich Spörlein.Sh STANDARDS
1530afc94c1SUlrich SpörleinThe functions
1540afc94c1SUlrich Spörlein.Fn fgets
1550afc94c1SUlrich Spörleinand
1560afc94c1SUlrich Spörlein.Fn gets
1570afc94c1SUlrich Spörleinconform to
1580afc94c1SUlrich Spörlein.St -isoC-99 .
159*a77546fbSCy Schubert.Fn gets_s
160*a77546fbSCy Schubertconforms to
161*a77546fbSCy Schubert.St -isoC-2011
162*a77546fbSCy SchubertK.3.7.4.1.
163*a77546fbSCy Schubert.Fn gets
164*a77546fbSCy Schuberthas been removed from
165*a77546fbSCy Schubert.St -isoC-2011 .
166e125c135SChris Costello.Sh SECURITY CONSIDERATIONS
167e125c135SChris CostelloThe
168e125c135SChris Costello.Fn gets
169e125c135SChris Costellofunction cannot be used securely.
170e125c135SChris CostelloBecause of its lack of bounds checking,
1716ba681a1SChris Costelloand the inability for the calling program
1726ba681a1SChris Costelloto reliably determine the length of the next incoming line,
173e125c135SChris Costellothe use of this function enables malicious users
174e125c135SChris Costelloto arbitrarily change a running program's functionality through
175e125c135SChris Costelloa buffer overflow attack.
1766ba681a1SChris CostelloIt is strongly suggested that the
1776ba681a1SChris Costello.Fn fgets
1786ba681a1SChris Costellofunction be used in all cases.
179