mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-06 05:10:05 +00:00
1ce8aaaedb
* locale/xlocale.c (_nl_C_locobj): Update initializer. * locale/global-locale.c (_nl_global_locale): Likewise. * locale/duplocale.c (__duplocale): strdup __names elements. * locale/freelocale.c (__freelocale): Free __names elements. * locale/localename.c (_nl_current_names): Variable removed. (__current_locale_name): Use _NL_CURRENT_LOCALE->__names instead. * locale/localeinfo.h (_nl_current_names): Removed decl. * locale/setlocale.c: Use _nl_global_locale->__names in place of _nl_current_names throughout. * locale/setlocale.c (setlocale): strdup -> __strdup (not ISO C). * sysdeps/gnu/errlist-compat.awk: Emit link_warnings for sys_errlist and sys_nerr in the output file. * sunrpc/Makefile (rpcgen-cmd): Pass CPP in rpcgen's environment. * scripts/cpp: Just use the environment variable. * libio/tst-mmap-setvbuf.c (main): Use 'm' fopen flag. * libio/tst-mmap-offend.c (do_test): Likewise. * libio/tst-mmap-fflushsync.c (do_test): Likewise. * libio/tst-mmap-eofsync.c (do_test): Likewise. * libio/tst-mmap2-eofsync.c (do_test): Likewise.
87 lines
1.7 KiB
C
87 lines
1.7 KiB
C
/* Test case for bug with mmap stdio read past end of file. */
|
|
|
|
#include <stdio.h>
|
|
#include <error.h>
|
|
#include <errno.h>
|
|
|
|
static void do_prepare (void);
|
|
#define PREPARE(argc, argv) do_prepare ()
|
|
static int do_test (void);
|
|
#define TEST_FUNCTION do_test ()
|
|
#include <test-skeleton.c>
|
|
|
|
static char *temp_file;
|
|
|
|
static const char text1[] = "hello\n";
|
|
|
|
static void
|
|
do_prepare (void)
|
|
{
|
|
int temp_fd = create_temp_file ("tst-mmap-offend.", &temp_file);
|
|
if (temp_fd == -1)
|
|
error (1, errno, "cannot create temporary file");
|
|
else
|
|
{
|
|
ssize_t cc = write (temp_fd, text1, sizeof text1 - 1);
|
|
if (cc != sizeof text1 - 1)
|
|
error (1, errno, "cannot write to temporary file");
|
|
}
|
|
close (temp_fd);
|
|
}
|
|
|
|
static int
|
|
do_test (void)
|
|
{
|
|
unsigned char buffer[8192];
|
|
int result = 0;
|
|
FILE *f = fopen (temp_file, "rm");
|
|
size_t cc;
|
|
|
|
if (f == NULL)
|
|
{
|
|
perror (temp_file);
|
|
return 1;
|
|
}
|
|
|
|
cc = fread (buffer, 1, sizeof (buffer), f);
|
|
printf ("fread %zu: \"%.*s\"\n", cc, (int) cc, buffer);
|
|
if (cc != sizeof text1 - 1)
|
|
{
|
|
perror ("fread");
|
|
result = 1;
|
|
}
|
|
|
|
if (fseek (f, 2048, SEEK_SET) != 0)
|
|
{
|
|
perror ("fseek off end");
|
|
result = 1;
|
|
}
|
|
|
|
if (fread (buffer, 1, sizeof (buffer), f) != 0
|
|
|| ferror (f) || !feof (f))
|
|
{
|
|
printf ("after fread error %d eof %d\n",
|
|
ferror (f), feof (f));
|
|
result = 1;
|
|
}
|
|
|
|
printf ("ftell %ld\n", ftell (f));
|
|
|
|
if (fseek (f, 0, SEEK_SET) != 0)
|
|
{
|
|
perror ("fseek rewind");
|
|
result = 1;
|
|
}
|
|
|
|
cc = fread (buffer, 1, sizeof (buffer), f);
|
|
printf ("fread after rewind %zu: \"%.*s\"\n", cc, (int) cc, buffer);
|
|
if (cc != sizeof text1 - 1)
|
|
{
|
|
perror ("fread after rewind");
|
|
result = 1;
|
|
}
|
|
|
|
fclose (f);
|
|
return result;
|
|
}
|