malloc_get_state.3: tfix
[man-pages.git] / man3 / fmemopen.3
blob385fcdcc9226e15044f6062fde0a00e5fc0488fe
1 '\" t
2 .\" Copyright 2005, 2012, 2016 Michael Kerrisk <mtk.manpages@gmail.com>
3 .\"
4 .\" SPDX-License-Identifier: GPL-1.0-or-later
5 .\"
6 .TH fmemopen 3 (date) "Linux man-pages (unreleased)"
7 .SH NAME
8 fmemopen \-  open memory as stream
9 .SH LIBRARY
10 Standard C library
11 .RI ( libc ", " \-lc )
12 .SH SYNOPSIS
13 .nf
14 .B #include <stdio.h>
16 .BI "FILE *fmemopen(void " buf [. size "], size_t " size ", \
17 const char *" mode );
18 .fi
20 .RS -4
21 Feature Test Macro Requirements for glibc (see
22 .BR feature_test_macros (7)):
23 .RE
25 .BR fmemopen ():
26 .nf
27     Since glibc 2.10:
28         _POSIX_C_SOURCE >= 200809L
29     Before glibc 2.10:
30         _GNU_SOURCE
31 .fi
32 .SH DESCRIPTION
33 The
34 .BR fmemopen ()
35 function opens a stream that permits the access specified by
36 .IR mode .
37 The stream allows I/O to be performed on the string or memory buffer
38 pointed to by
39 .IR buf .
41 The
42 .I mode
43 argument specifies the semantics of I/O on the stream,
44 and is one of the following:
45 .TP
46 .I r
47 The stream is opened for reading.
48 .TP
49 .I w
50 The stream is opened for writing.
51 .TP
52 .I a
53 Append; open the stream for writing,
54 with the initial buffer position set to the first null byte.
55 .TP
56 .I r+
57 Open the stream for reading and writing.
58 .TP
59 .I w+
60 Open the stream for reading and writing.
61 The buffer contents are truncated
62 (i.e., \[aq]\e0\[aq] is placed in the first byte of the buffer).
63 .TP
64 .I a+
65 Append; open the stream for reading and writing,
66 with the initial buffer position set to the first null byte.
68 The stream maintains the notion of a current position,
69 the location where the next I/O operation will be performed.
70 The current position is implicitly updated by I/O operations.
71 It can be explicitly updated using
72 .BR fseek (3),
73 and determined using
74 .BR ftell (3).
75 In all modes other than append,
76 the initial position is set to the start of the buffer.
77 In append mode, if no null byte is found within the buffer,
78 then the initial position is
79 .IR size+1 .
82 .I buf
83 is specified as NULL, then
84 .BR fmemopen ()
85 allocates a buffer of
86 .I size
87 bytes.
88 This is useful for an application that wants to write data to
89 a temporary buffer and then read it back again.
90 The initial position is set to the start of the buffer.
91 The buffer is automatically freed when the stream is closed.
92 Note that the caller has no way to obtain a pointer to the
93 temporary buffer allocated by this call (but see
94 .BR open_memstream (3)).
97 .I buf
98 is not NULL, then it should point to a buffer of at least
99 .I size
100 bytes allocated by the caller.
102 When a stream that has been opened for writing is flushed
103 .RB ( fflush (3))
104 or closed
105 .RB ( fclose (3)),
106 a null byte is written at the end of the buffer if there is space.
107 The caller should ensure that an extra byte is available in the
108 buffer
109 (and that
110 .I size
111 counts that byte)
112 to allow for this.
114 In a stream opened for reading,
115 null bytes (\[aq]\e0\[aq]) in the buffer do not cause read
116 operations to return an end-of-file indication.
117 A read from the buffer will indicate end-of-file
118 only when the current buffer position advances
119 .I size
120 bytes past the start of the buffer.
122 Write operations take place either at the current position
123 (for modes other than append), or at the current size of the stream
124 (for append modes).
126 Attempts to write more than
127 .I size
128 bytes to the buffer result in an error.
129 By default, such errors will be visible
130 (by the absence of data) only when the
131 .I stdio
132 buffer is flushed.
133 Disabling buffering with the following call
134 may be useful to detect errors at the time of an output operation:
136 .in +4n
138 setbuf(stream, NULL);
141 .SH RETURN VALUE
142 Upon successful completion,
143 .BR fmemopen ()
144 returns a
145 .I FILE
146 pointer.
147 Otherwise, NULL is returned and
148 .I errno
149 is set to indicate the error.
150 .SH ATTRIBUTES
151 For an explanation of the terms used in this section, see
152 .BR attributes (7).
154 allbox;
155 lbx lb lb
156 l l l.
157 Interface       Attribute       Value
161 .BR fmemopen (),
162 T}      Thread safety   MT-Safe
164 .SH STANDARDS
165 POSIX.1-2008.
166 .SH HISTORY
167 glibc 1.0.x.
168 POSIX.1-2008.
170 POSIX.1-2008 specifies that \[aq]b\[aq] in
171 .I mode
172 shall be ignored.
173 However, Technical Corrigendum 1
174 .\" http://austingroupbugs.net/view.php?id=396
175 adjusts the standard to allow implementation-specific treatment for this case,
176 thus permitting the glibc treatment of \[aq]b\[aq].
178 With glibc 2.22, binary mode (see below) was removed,
179 many longstanding bugs in the implementation of
180 .BR fmemopen ()
181 were fixed, and a new versioned symbol was created for this interface.
183 .SS Binary mode
184 From glibc 2.9 to glibc 2.21, the glibc implementation of
185 .BR fmemopen ()
186 supported a "binary" mode,
187 enabled by specifying the letter \[aq]b\[aq] as the second character in
188 .IR mode .
189 In this mode,
190 writes don't implicitly add a terminating null byte, and
191 .BR fseek (3)
192 .B SEEK_END
193 is relative to the end of the buffer (i.e., the value specified by the
194 .I size
195 argument), rather than the current string length.
197 An API bug afflicted the implementation of binary mode:
198 to specify binary mode, the \[aq]b\[aq] must be the
199 .I second
200 character in
201 .IR mode .
202 Thus, for example, "wb+" has the desired effect, but "w+b" does not.
203 This is inconsistent with the treatment of
204 .\" http://sourceware.org/bugzilla/show_bug.cgi?id=12836
205 .I mode
207 .BR fopen (3).
209 Binary mode was removed in glibc 2.22; a \[aq]b\[aq] specified in
210 .I mode
211 has no effect.
212 .SH NOTES
213 There is no file descriptor associated with the file stream
214 returned by this function
215 (i.e.,
216 .BR fileno (3)
217 will return an error if called on the returned stream).
218 .SH BUGS
219 Before glibc 2.22, if
220 .I size
221 is specified as zero,
222 .BR fmemopen ()
223 fails with the error
224 .BR EINVAL .
225 .\" http://sourceware.org/bugzilla/show_bug.cgi?id=11216
226 It would be more consistent if this case successfully created
227 a stream that then returned end-of-file on the first attempt at reading;
228 since glibc 2.22, the glibc implementation provides that behavior.
230 Before glibc 2.22,
231 specifying append mode ("a" or "a+") for
232 .BR fmemopen ()
233 sets the initial buffer position to the first null byte, but
234 .\" http://sourceware.org/bugzilla/show_bug.cgi?id=13152
235 (if the current position is reset to a location other than
236 the end of the stream)
237 does not force subsequent writes to append at the end of the stream.
238 This bug is fixed in glibc 2.22.
240 Before glibc 2.22, if the
241 .I mode
242 argument to
243 .BR fmemopen ()
244 specifies append ("a" or "a+"), and the
245 .I size
246 argument does not cover a null byte in
247 .IR buf ,
248 then, according to POSIX.1-2008,
249 the initial buffer position should be set to
250 the next byte after the end of the buffer.
251 However, in this case the glibc
252 .\" http://sourceware.org/bugzilla/show_bug.cgi?id=13151
253 .BR fmemopen ()
254 sets the buffer position to \-1.
255 This bug is fixed in glibc 2.22.
257 Before glibc 2.22,
258 .\" https://sourceware.org/bugzilla/show_bug.cgi?id=14292
259 when a call to
260 .BR fseek (3)
261 with a
262 .I whence
263 value of
264 .B SEEK_END
265 was performed on a stream created by
266 .BR fmemopen (),
268 .I offset
270 .I subtracted
271 from the end-of-stream position, instead of being added.
272 This bug is fixed in glibc 2.22.
274 The glibc 2.9 addition of "binary" mode for
275 .BR fmemopen ()
276 .\" http://sourceware.org/bugzilla/show_bug.cgi?id=6544
277 silently changed the ABI: previously,
278 .BR fmemopen ()
279 ignored \[aq]b\[aq] in
280 .IR mode .
281 .SH EXAMPLES
282 The program below uses
283 .BR fmemopen ()
284 to open an input buffer, and
285 .BR open_memstream (3)
286 to open a dynamically sized output buffer.
287 The program scans its input string (taken from the program's
288 first command-line argument) reading integers,
289 and writes the squares of these integers to the output buffer.
290 An example of the output produced by this program is the following:
292 .in +4n
294 .RB "$" " ./a.out \[aq]1 23 43\[aq]"
295 size=11; ptr=1 529 1849
298 .SS Program source
300 .\" SRC BEGIN (fmemopen.c)
302 #define _GNU_SOURCE
303 #include <err.h>
304 #include <stdio.h>
305 #include <stdlib.h>
306 #include <string.h>
309 main(int argc, char *argv[])
311     FILE *out, *in;
312     int v, s;
313     size_t size;
314     char *ptr;
316     if (argc != 2) {
317         fprintf(stderr, "Usage: %s \[aq]<num>...\[aq]\en", argv[0]);
318         exit(EXIT_FAILURE);
319     }
321     in = fmemopen(argv[1], strlen(argv[1]), "r");
322     if (in == NULL)
323         err(EXIT_FAILURE, "fmemopen");
325     out = open_memstream(&ptr, &size);
326     if (out == NULL)
327         err(EXIT_FAILURE, "open_memstream");
329     for (;;) {
330         s = fscanf(in, "%d", &v);
331         if (s <= 0)
332             break;
334         s = fprintf(out, "%d ", v * v);
335         if (s == \-1)
336             err(EXIT_FAILURE, "fprintf");
337     }
339     fclose(in);
340     fclose(out);
342     printf("size=%zu; ptr=%s\en", size, ptr);
344     free(ptr);
345     exit(EXIT_SUCCESS);
348 .\" SRC END
349 .SH SEE ALSO
350 .BR fopen (3),
351 .BR fopencookie (3),
352 .BR open_memstream (3)