summaryrefslogtreecommitdiff
path: root/usr/src/man/man3c/stdio.3c
blob: f7dce6dfa71272efc702abef0cbcc70cf0585149 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
'\" te
.\" Copyright 1989 AT&T.  Copyright (c) 2005, Sun Microsystems, Inc.  All Rights Reserved.
.\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License").  You may not use this file except in compliance with the License.
.\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.  See the License for the specific language governing permissions and limitations under the License.
.\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE.  If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
.\" Copyright 2020 Robert Mustacchi
.TH STDIO 3C "March 25, 2020"
.SH NAME
stdio, stdin, stdout, stderr \- standard buffered input/output package
.SH SYNOPSIS
.nf
#include <stdio.h>
.fi

.LP
.nf
\fBextern FILE *\fR\fIstdin\fR\fB;\fR
.fi

.LP
.nf
\fBextern FILE *\fR\fIstdout\fR\fB;\fR
.fi

.LP
.nf
\fBextern FILE *\fR\fIstderr\fR\fB;\fR
.fi

.SH DESCRIPTION
The standard I/O functions described in section 3C of this manual constitute an
efficient, user-level \fBI/O\fR buffering scheme. The in-line macros
\fBgetc()\fR and \fBputc()\fR handle characters quickly. The macros
\fBgetchar\fR(3C) and \fBputchar\fR(3C), and the higher-level routines
\fBfgetc\fR(3C), \fBfgets\fR(3C), \fBfprintf\fR(3C), \fBfputc\fR(3C),
\fBfputs\fR(3C), \fBfread\fR(3C), \fBfscanf\fR(3C), \fBfwrite\fR(3C),
\fBgets\fR(3C), \fBgetw\fR(3C), \fBprintf\fR(3C), \fBputs\fR(3C),
\fBputw\fR(3C), and \fBscanf\fR(3C) all use or act as if they use \fBgetc()\fR
and \fBputc()\fR; they can be freely intermixed.
.sp
.LP
A file with associated buffering is called a \fIstream\fR (see \fBIntro\fR(3))
and is declared to be a pointer to a defined type \fBFILE\fR. The
\fBfopen\fR(3C) function creates certain descriptive data for a stream and
returns a pointer to designate the stream in all further transactions.
Streams to memory may also be created through the \fBfmemopen\fR(3C),
\fBopen_memstream\fR(3C), and \fBopen_wmemstream\fR(3C) functions.
Normally, there are three open streams with constant pointers declared in the
\fB<stdio.h>\fR header and associated with the standard open files:
.sp
.ne 2
.na
\fB\fBstdin\fR\fR
.ad
.RS 10n
standard input file
.RE

.sp
.ne 2
.na
\fB\fBstdout\fR\fR
.ad
.RS 10n
standard output file
.RE

.sp
.ne 2
.na
\fB\fBstderr\fR\fR
.ad
.RS 10n
standard error file
.RE

.sp
.LP
The following symbolic values in <\fBunistd.h\fR> define the file descriptors
that will be associated with the C-language \fBstdin\fR, \fBstdout\fR and
\fBstderr\fR when the application is started:
.sp

.sp
.TS
l l l l
l l l l .
\fBSTDIN_FILENO\fR	Standard input value	0	\fBstdin\fR
\fBSTDOUT_FILENO\fR	Standard output value	1	\fBstdout\fR
\fBSTDERR_FILENO\fR	Standard error value	2	\fBstderr\fR
.TE

.sp
.LP
The constant \fINULL\fR designates a null pointer.
.sp
.LP
The integer-constant \fBEOF\fR is returned upon end-of-file or error by most
integer functions that deal with streams (see the individual descriptions for
details).
.sp
.LP
The integer constant \fBBUFSIZ\fR specifies the size of the buffers used by the
particular implementation.
.sp
.LP
The integer constant \fBFILENAME_MAX\fR specifies the number of bytes needed to
hold the longest pathname of a file allowed by the implementation.  If the
system does not impose a maximum limit, this value is the recommended size for
a buffer intended to hold a file's pathname.
.sp
.LP
The integer constant \fBFOPEN_MAX\fR specifies the minimum number of files that
the implementation guarantees can be open simultaneously. Note that no more
than 255 files may be opened using \fBfopen()\fR, and only file descriptors 0
through 255 can be used in a stream. This restriction only holds for the 32-bit
compilation environment. The 64-bit environment may use more streams and the use
of more than 255 may be enabled in a 32-bit environment through the use of
\fBextendedFILE\fR(5).
.sp
.LP
The functions and constants mentioned in the entries of section 3S of this
manual are declared in that header and need no further declaration. The
constants and the following "functions" are implemented as macros
(redeclaration of these names is perilous): \fBgetc()\fR, \fBgetchar()\fR,
\fBputc()\fR, \fBputchar()\fR, \fBferror\fR(3C), \fBfeof\fR(3C),
\fBclearerr\fR(3C), and \fBfileno\fR(3C). There are also function versions of
\fBgetc()\fR, \fBgetchar()\fR, \fBputc()\fR, \fBputchar()\fR, \fBferror()\fR,
\fBfeof()\fR, \fBclearerr()\fR, and \fBfileno()\fR.
.sp
.LP
Output streams, with the exception of the standard error stream \fBstderr\fR,
are by default buffered if the output refers to a file and line-buffered if the
output refers to a terminal. The standard error output stream \fBstderr\fR is
by default unbuffered, but use of \fBfreopen()\fR (see \fBfopen\fR(3C)) will
cause it to become buffered or line-buffered. When an output stream is
unbuffered, information is queued for writing on the destination file or
terminal as soon as written; when it is buffered, many characters are saved up
and written as a block. When it is line-buffered, each line of output is queued
for writing on the destination terminal as soon as the line is completed (that
is, as soon as a new-line character is written or terminal input is requested).
The \fBsetbuf()\fR or \fBsetvbuf()\fR functions (both described on the
\fBsetbuf\fR(3C) manual page) may be used to change the stream's buffering
strategy.
.SS "Interactions of Other FILE-Type C Functions"
A single open file description can be accessed both through streams and through
file descriptors.  Either a file descriptor or a stream will be called a
\fIhandle\fR on the open file description to which it refers; an open file
description may have several handles.
.sp
.LP
Handles can be created or destroyed by user action without affecting the
underlying open file description.  Some of the ways to create them include
\fBfcntl\fR(2), \fBdup\fR(2), \fBfdopen\fR(3C), \fBfileno\fR(3C) and
\fBfork\fR(2) (which duplicates existing ones into new processes). They can be
destroyed by at least \fBfclose\fR(3C) and \fBclose\fR(2), and by the
\fBexec\fR functions (see \fBexec\fR(2)), which close some file descriptors and
destroy streams.
.sp
.LP
A file descriptor that is never used in an operation and could affect the file
offset (for example \fBread\fR(2), \fBwrite\fR(2), or \fBlseek\fR(2)) is not
considered a handle in this discussion, but could give rise to one (as a
consequence of  \fBfdopen()\fR, \fBdup()\fR, or \fBfork()\fR, for example).
This exception does include the file descriptor underlying a stream, whether
created with  \fBfopen()\fR or \fBfdopen()\fR, as long as it is not used
directly by the application to affect the file offset.  (The \fBread()\fR and
\fBwrite()\fR functions implicitly affect the file offset;  \fBlseek()\fR
explicitly affects it.)
.sp
.LP
If two or more handles are used, and any one of them is a stream, their actions
shall be coordinated as described below.  If this is not done, the result is
undefined.
.sp
.LP
A handle that is a stream is considered to be closed when either an
\fBfclose()\fR or \fBfreopen\fR(3C) is executed on it (the result of
\fBfreopen()\fR is a new stream for this discussion, which cannot be a handle
on the same open file description as its previous value) or when the process
owning that stream terminates the \fBexit\fR(2) or \fBabort\fR(3C). A file
descriptor is closed by \fBclose()\fR, \fB_exit()\fR (see \fBexit\fR(2)), or by
one of the \fBexec\fR functions when \fBFD_CLOEXEC\fR is set on that file
descriptor.
.sp
.LP
For a handle to become the active handle, the actions below must be performed
between the last other user of the first handle (the current active handle) and
the first other user of the second handle (the future active handle). The
second handle then becomes the active handle. All activity by the application
affecting the file offset on the first handle shall be suspended until it again
becomes the active handle. (If a stream function has as an underlying function
that affects the file offset, the stream function will be considered to affect
the file offset.  The underlying functions are described below.)
.sp
.LP
The handles need not be in the same process for these rules to apply. Note that
after a \fBfork()\fR, two handles exist where one existed before.  The
application shall assure that, if both handles will ever be accessed, that they
will both be in a state where the other could become the active handle first.
The application shall prepare for a \fBfork()\fR exactly as if it were a change
of active handle.  (If the only action performed by one of the processes is one
of the \fBexec\fR functions or \fB_exit()\fR, the handle is never accessed in
that process.)
.RS +4
.TP
1.
For the first handle, the first applicable condition below shall apply.
After the actions required below are taken, the handle may be closed if it is
still open.
.RS +4
.TP
a.
If it is a file descriptor, no action is required.
.RE
.RS +4
.TP
b.
If the only further action to be performed on any handle to this open file
description is to close it, no action need be taken.
.RE
.RS +4
.TP
c.
If it is a stream that is unbuffered, no action need be taken.
.RE
.RS +4
.TP
d.
If it is a stream that is line-buffered and the last character written to
the stream was a newline (that is, as if a \fBputc('\en')\fR was the most
recent operation on that stream), no action need be taken.
.RE
.RS +4
.TP
e.
If it is a stream that is open for writing or append (but not also open for
reading), either an \fBfflush\fR(3C) shall occur or the stream shall be closed.
.RE
.RS +4
.TP
f.
If the stream is open for reading and it is at the end of the file (
\fBfeof\fR(3C) is true), no action need be taken.
.RE
.RS +4
.TP
g.
If the stream is open with a mode that allows reading and the underlying
open file description refers to a device that is capable of seeking, either an
\fBfflush()\fR shall occur or the stream shall be closed.
.RE
.RS +4
.TP
h.
Otherwise, the result is undefined.
.RE
.RE
.RS +4
.TP
2.
For the second handle: if any previous active handle has called a function
that explicitly changed the file offset, except as required above for the first
handle, the application shall perform an \fBlseek()\fR or an \fBfseek\fR(3C)
(as appropriate to the type of the handle) to an appropriate location.
.RE
.RS +4
.TP
3.
If the active handle ceases to be accessible before the requirements on the
first handle above have been met, the state of the open file description
becomes undefined.  This might occur, for example, during a  \fBfork()\fR or an
\fB_exit()\fR.
.RE
.RS +4
.TP
4.
The \fBexec\fR functions shall be considered to make inaccessible all
streams that are open at the time they are called, independent of what streams
or file descriptors may be available to the new process image.
.RE
.RS +4
.TP
5.
Implementation shall assure that an application, even one consisting of
several processes, shall yield correct results (no data is lost or duplicated
when writing, all data is written in order, except as requested by seeks) when
the rules above are followed, regardless of the sequence of handles used.  If
the rules above are not followed, the result is unspecified. When these rules
are followed, it is implementation defined whether, and under what conditions,
all input is seen exactly once.
.RE
.SS "Use of stdio in Multithreaded Applications"
All the \fBstdio\fR functions are safe unless they have the \fB_unlocked\fR
suffix.  Each \fBFILE\fR pointer has its own lock to guarantee that only one
thread can access it. In the case that output needs to be synchronized, the
lock for the \fBFILE\fR pointer can be acquired before performing a series of
\fBstdio\fR operations.  For example:
.sp
.in +2
.nf
FILE iop;
flockfile(iop);
fprintf(iop, "hello ");
fprintf(iop, "world);
fputc(iop, 'a');
funlockfile(iop);
.fi
.in -2

.sp
.LP
will print everything out together, blocking other threads that might want to
write to the same file between calls to \fBfprintf()\fR.
.sp
.LP
An unlocked interface is available in case performace is an issue.  For
example:
.sp
.in +2
.nf
flockfile(iop);
while (!feof(iop)) {
        *c++ = getc_unlocked(iop);
}
funlockfile(iop);
.fi
.in -2

.SH RETURN VALUES
Invalid stream pointers usually cause grave disorder, possibly including
program termination. Individual function descriptions describe the possible
error conditions.
.SH SEE ALSO
\fBclose\fR(2), \fBlseek\fR(2), \fBopen\fR(2), \fBpipe\fR(2), \fBread\fR(2),
\fBwrite\fR(2), \fBctermid\fR(3C), \fBcuserid\fR(3C), \fBfclose\fR(3C),
\fBferror\fR(3C), \fBfmemopen\fR(3C), \fBfopen\fR(3C), \fBfread\fR(3C),
\fBfseek\fR(3C), \fBflockfile\fR(3C), \fBgetc\fR(3C), \fBgets\fR(3C),
\fBopen_memstream(3C)\fR, \fBopen_wmemstream(3C(\fR, \fBpopen\fR(3C),
\fBprintf\fR(3C), \fBputc\fR(3C), \fBputs\fR(3C), \fBscanf\fR(3C),
\fBsetbuf\fR(3C), \fBsystem\fR(3C), \fBtmpfile\fR(3C), \fBtmpnam\fR(3C),
\fBungetc\fR(3C)