1 /* Fmemopen implementation.
2 Copyright (C) 2000-2023 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
20 * fmemopen() - "my" version of a string stream
21 * Hanno Mueller, kontakt@hanno.de
24 * I needed fmemopen() for an application that I currently work on,
25 * but couldn't find it in libio. The following snippet of code is an
26 * attempt to implement what glibc's documentation describes.
30 * I already see some potential problems:
32 * - I never used the "original" fmemopen(). I am sure that "my"
33 * fmemopen() behaves differently than the original version.
35 * - The documentation doesn't say whether a string stream allows
36 * seeks. I checked the old fmemopen implementation in glibc's stdio
37 * directory, wasn't quite able to see what is going on in that
38 * source, but as far as I understand there was no seek there. For
39 * my application, I needed fseek() and ftell(), so it's here.
41 * - "append" mode and fseek(p, SEEK_END) have two different ideas
42 * about the "end" of the stream.
44 * As described in the documentation, when opening the file in
45 * "append" mode, the position pointer will be set to the first null
46 * character of the string buffer (yet the buffer may already
47 * contain more data). For fseek(), the last byte of the buffer is
48 * used as the end of the stream.
50 * - It is unclear to me what the documentation tries to say when it
51 * explains what happens when you use fmemopen with a NULL
54 * Quote: "fmemopen [then] allocates an array SIZE bytes long. This
55 * is really only useful if you are going to write things to the
56 * buffer and then read them back in again."
58 * What does that mean if the original fmemopen() did not allow
59 * seeking? How do you read what you just wrote without seeking back
60 * to the beginning of the stream?
62 * - I think there should be a second version of fmemopen() that does
63 * not add null characters for each write. (At least in my
64 * application, I am not actually using strings but binary data and
65 * so I don't need the stream to add null characters on its own.)
70 #if SHLIB_COMPAT (libc, GLIBC_2_2, GLIBC_2_22)
77 #include <sys/types.h>
80 typedef struct fmemopen_cookie_struct fmemopen_cookie_t
;
81 struct fmemopen_cookie_struct
93 fmemopen_read (void *cookie
, char *b
, size_t s
)
97 c
= (fmemopen_cookie_t
*) cookie
;
99 if (c
->pos
+ s
> c
->size
)
101 if ((size_t) c
->pos
== c
->size
)
103 s
= c
->size
- c
->pos
;
106 memcpy (b
, &(c
->buffer
[c
->pos
]), s
);
109 if ((size_t) c
->pos
> c
->maxpos
)
117 fmemopen_write (void *cookie
, const char *b
, size_t s
)
119 fmemopen_cookie_t
*c
;
122 c
= (fmemopen_cookie_t
*) cookie
;
124 addnullc
= c
->binmode
== 0 && (s
== 0 || b
[s
- 1] != '\0');
126 if (c
->pos
+ s
+ addnullc
> c
->size
)
128 if ((size_t) (c
->pos
+ addnullc
) >= c
->size
)
130 __set_errno (ENOSPC
);
133 s
= c
->size
- c
->pos
- addnullc
;
136 memcpy (&(c
->buffer
[c
->pos
]), b
, s
);
139 if ((size_t) c
->pos
> c
->maxpos
)
143 c
->buffer
[c
->maxpos
] = '\0';
151 fmemopen_seek (void *cookie
, off64_t
*p
, int w
)
154 fmemopen_cookie_t
*c
;
156 c
= (fmemopen_cookie_t
*) cookie
;
169 np
= (c
->binmode
? c
->size
: c
->maxpos
) - *p
;
176 if (np
< 0 || (size_t) np
> c
->size
)
186 fmemopen_close (void *cookie
)
188 fmemopen_cookie_t
*c
;
190 c
= (fmemopen_cookie_t
*) cookie
;
201 __old_fmemopen (void *buf
, size_t len
, const char *mode
)
203 cookie_io_functions_t iof
;
204 fmemopen_cookie_t
*c
;
207 if (__glibc_unlikely (len
== 0))
210 __set_errno (EINVAL
);
214 c
= (fmemopen_cookie_t
*) malloc (sizeof (fmemopen_cookie_t
));
218 c
->mybuffer
= (buf
== NULL
);
222 c
->buffer
= (char *) malloc (len
);
223 if (c
->buffer
== NULL
)
233 if (__glibc_unlikely ((uintptr_t) len
> -(uintptr_t) buf
))
244 c
->maxpos
= strnlen (c
->buffer
, len
);
254 c
->binmode
= mode
[0] != '\0' && mode
[1] == 'b';
256 iof
.read
= fmemopen_read
;
257 iof
.write
= fmemopen_write
;
258 iof
.seek
= fmemopen_seek
;
259 iof
.close
= fmemopen_close
;
261 result
= _IO_fopencookie (c
, mode
, iof
);
262 if (__glibc_unlikely (result
== NULL
))
272 compat_symbol (libc
, __old_fmemopen
, fmemopen
, GLIBC_2_2
);