@@ -120,6 +120,7 @@ tests = \
tst-memstream2 \
tst-memstream3 \
tst-memstream4 \
+ tst-memstream5 \
tst-mmap-eofsync \
tst-mmap-fflushsync \
tst-mmap-offend \
@@ -738,10 +738,14 @@ extern size_t __IO_obstack_xsputn (FILE *fp, const void *data, size_t n)
attribute_hidden;
/* Jumptable functions for open_{w}memstream. */
-extern int _IO_mem_sync (FILE* fp) __THROW attribute_hidden;
-extern void _IO_mem_finish (FILE* fp, int) __THROW attribute_hidden;
-extern int _IO_wmem_sync (FILE* fp) __THROW attribute_hidden;
-extern void _IO_wmem_finish (FILE* fp, int) __THROW attribute_hidden;
+extern int _IO_mem_sync (FILE *fp) __THROW attribute_hidden;
+extern void _IO_mem_finish (FILE *fp, int) __THROW attribute_hidden;
+extern FILE *_IO_mem_setbuf (FILE *fp, char *buf, ssize_t size)
+ __THROW attribute_hidden;
+extern int _IO_wmem_sync (FILE *fp) __THROW attribute_hidden;
+extern void _IO_wmem_finish (FILE *fp, int) __THROW attribute_hidden;
+extern FILE *_IO_wmem_setbuf (FILE *fp, char *buf, ssize_t size)
+ __THROW attribute_hidden;
/* Other strfile functions */
struct _IO_strfile_;
@@ -112,3 +112,12 @@ _IO_mem_finish (FILE *fp, int dummy)
_IO_str_finish (fp, 0);
}
+
+FILE *
+_IO_mem_setbuf (FILE *fp, char *p, ssize_t len)
+{
+ /* memstream manage a growable buffer internally. */
+ (void) p;
+ (void) len;
+ return fp;
+}
new file mode 100644
@@ -0,0 +1,54 @@
+/* Test for open_memstream BZ #34019.
+ Copyright (C) 2026 Free Software Foundation, Inc.
+ This file is part of the GNU C Library.
+
+ The GNU C Library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ The GNU C Library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with the GNU C Library; if not, see
+ <https://www.gnu.org/licenses/>. */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <wchar.h>
+#include <support/check.h>
+
+static int
+do_test (void)
+{
+ /* Narrow: setbuf must not replace the internal growable buffer. */
+ char *buf = NULL;
+ size_t len = 0;
+ FILE *fp = open_memstream (&buf, &len);
+ setbuf (fp, NULL);
+ TEST_COMPARE (fputc ('A', fp), 'A');
+ TEST_COMPARE (fclose (fp), 0);
+ TEST_COMPARE (len, 1);
+ TEST_COMPARE_STRING (buf, "A");
+ free (buf);
+
+ /* Wide: same crash via _IO_wstr_overflow. */
+ wchar_t *wbuf = NULL;
+ size_t wlen = 0;
+ FILE *wfp = open_wmemstream (&wbuf, &wlen);
+ TEST_VERIFY_EXIT (wfp != NULL);
+ setbuf (wfp, NULL);
+ TEST_COMPARE (fputwc (L'A', wfp), L'A');
+ TEST_COMPARE (fclose (wfp), 0);
+ TEST_COMPARE (wlen, 1);
+ TEST_VERIFY (wbuf != NULL);
+ TEST_VERIFY (wbuf[0] == L'A' && wbuf[1] == L'\0');
+ free (wbuf);
+
+ return 0;
+}
+
+#include <support/test-driver.c>
@@ -77,9 +77,11 @@
# pragma weak _IO_cookie_write
# pragma weak _IO_mem_finish
+# pragma weak _IO_mem_setbuf
# pragma weak _IO_mem_sync
# pragma weak _IO_wmem_finish
+# pragma weak _IO_wmem_setbuf
# pragma weak _IO_wmem_sync
# pragma weak __printf_buffer_as_file_overflow
@@ -334,7 +336,7 @@ const struct _IO_jump_t __io_vtables[] attribute_relro =
JUMP_INIT (xsgetn, _IO_default_xsgetn),
JUMP_INIT (seekoff, _IO_str_seekoff),
JUMP_INIT (seekpos, _IO_default_seekpos),
- JUMP_INIT (setbuf, _IO_default_setbuf),
+ JUMP_INIT (setbuf, _IO_mem_setbuf),
JUMP_INIT (sync, _IO_mem_sync),
JUMP_INIT (doallocate, _IO_default_doallocate),
JUMP_INIT (read, _IO_default_read),
@@ -357,7 +359,7 @@ const struct _IO_jump_t __io_vtables[] attribute_relro =
JUMP_INIT (xsgetn, _IO_wdefault_xsgetn),
JUMP_INIT (seekoff, _IO_wstr_seekoff),
JUMP_INIT (seekpos, _IO_default_seekpos),
- JUMP_INIT (setbuf, _IO_default_setbuf),
+ JUMP_INIT (setbuf, _IO_wmem_setbuf),
JUMP_INIT (sync, _IO_wmem_sync),
JUMP_INIT (doallocate, _IO_wdefault_doallocate),
JUMP_INIT (read, _IO_default_read),
@@ -117,3 +117,13 @@ _IO_wmem_finish (FILE *fp, int dummy)
_IO_wstr_finish (fp, 0);
}
+
+
+FILE *
+_IO_wmem_setbuf (FILE *fp, char *p, ssize_t len)
+{
+ /* wmemstreams manage a growable buffer internally. */
+ (void) p;
+ (void) len;
+ return fp;
+}