glibc/io/test-lfs.c

242 lines
5.7 KiB
C
Raw Normal View History

2000-06-30 11:55:04 +02:00
/* Some basic tests for LFS.
Copyright (C) 2000-2017 Free Software Foundation, Inc.
This file is part of the GNU C Library.
2000-06-30 11:55:04 +02:00
Contributed by Andreas Jaeger <aj@suse.de>, 2000.
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.
2000-06-30 11:55:04 +02:00
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.
2000-06-30 11:55:04 +02:00
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
<http://www.gnu.org/licenses/>. */
2000-06-30 11:55:04 +02:00
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <error.h>
#include <errno.h>
#include <sys/resource.h>
2000-06-30 11:55:04 +02:00
/* Prototype for our test function. */
extern void do_prepare (int argc, char *argv[]);
extern int do_test (int argc, char *argv[]);
/* We have a preparation function. */
#define PREPARE do_prepare
/* We might need a bit longer timeout. */
#define TIMEOUT 20 /* sec */
/* This defines the `main' function and some more. */
#include <test-skeleton.c>
/* These are for the temporary file we generate. */
char *name;
int fd;
/* 2^31 = 2GB. */
#define TWO_GB 2147483648LL
void
do_prepare (int argc, char *argv[])
{
size_t name_len;
struct rlimit64 rlim;
2000-06-30 11:55:04 +02:00
name_len = strlen (test_dir);
name = xmalloc (name_len + sizeof ("/lfsXXXXXX"));
2000-06-30 11:55:04 +02:00
mempcpy (mempcpy (name, test_dir, name_len),
"/lfsXXXXXX", sizeof ("/lfsXXXXXX"));
/* Open our test file. */
fd = mkstemp64 (name);
if (fd == -1)
2000-06-30 11:55:04 +02:00
{
if (errno == ENOSYS)
{
/* Fail silently. */
error (0, 0, "open64 is not supported");
exit (EXIT_SUCCESS);
}
else
error (EXIT_FAILURE, errno, "cannot create temporary file");
2000-06-30 11:55:04 +02:00
}
add_temp_file (name);
2000-06-30 11:55:04 +02:00
if (getrlimit64 (RLIMIT_FSIZE, &rlim) != 0)
{
error (0, errno, "cannot get resource limit");
exit (0);
}
if (rlim.rlim_cur < TWO_GB + 200)
{
rlim.rlim_cur = TWO_GB + 200;
if (setrlimit64 (RLIMIT_FSIZE, &rlim) != 0)
{
error (0, errno, "cannot reset file size limits");
exit (0);
}
}
2000-06-30 11:55:04 +02:00
}
static void
test_ftello (void)
{
FILE *f;
int ret;
off64_t pos;
f = fopen64 (name, "w");
ret = fseeko64 (f, TWO_GB+100, SEEK_SET);
if (ret == -1 && errno == ENOSYS)
{
error (0, 0, "fseeko64 is not supported.");
exit (EXIT_SUCCESS);
}
if (ret == -1 && errno == EINVAL)
{
error (0, 0, "LFS seems not to be supported");
exit (EXIT_SUCCESS);
}
if (ret == -1)
{
error (0, errno, "fseeko64 failed with error");
exit (EXIT_FAILURE);
}
ret = fwrite ("Hello", 1, 5, f);
if (ret == -1 && errno == EFBIG)
{
error (0, errno, "LFS seems not to be supported");
exit (EXIT_SUCCESS);
}
if (ret == -1 && errno == ENOSPC)
{
error (0, 0, "Not enough space to write file.");
exit (EXIT_SUCCESS);
}
if (ret != 5)
error (EXIT_FAILURE, errno, "Cannot write test string to large file");
pos = ftello64 (f);
if (pos != TWO_GB+105)
{
error (0, 0, "ftello64 gives wrong result.");
exit (EXIT_FAILURE);
}
fclose (f);
}
2000-06-30 11:55:04 +02:00
int
do_test (int argc, char *argv[])
{
int ret, fd2;
2000-06-30 11:55:04 +02:00
struct stat64 statbuf;
ret = lseek64 (fd, TWO_GB+100, SEEK_SET);
if (ret == -1 && errno == ENOSYS)
{
error (0, 0, "lseek64 is not supported.");
2000-06-30 11:55:04 +02:00
exit (EXIT_SUCCESS);
}
if (ret == -1 && errno == EINVAL)
{
error (0, 0, "LFS seems not to be supported.");
exit (EXIT_SUCCESS);
}
if (ret == -1)
{
error (0, errno, "lseek64 failed with error");
exit (EXIT_FAILURE);
}
Fix MIPS n32 lseek, lseek64 (bug 21019). The lseek consolidation broke lseek64 for MIPS n32, so resulting in io/test-lfs failing with an incorrect return from ftello64. This configuration uses the lseek syscall with a 64-bit return value; as the C syscall macros return long, they cannot be used in this case and so an assembly implementation is needed; accordingly, this patch adds lseek64 back to syscalls.list for this configuration. lseek was also broken, truncating the result without checking for overflow. lseek however was already broken before the consolidation; it aliased lseek64 so would return an out-of-range value, resulting in architecturally undefined behavior in the caller if it tried to use a non-sign-extended value with a 32-bit instruction. This patch adds a custom lseek implementation in C for n32, which calls __lseek64 to get the 64-bit value then checks for overflow. Because the prior lseek breakage did not show in test results, and the lseek64 breakage showed only indirectly through tests of ftello64, test coverage was clearly inadequate. This patch extends io/test-lfs.c to test the lseek64 return value (at a point where it has already seeked over 2GB into a file), and then to test the lseek return value (with the latter's expectations depending on whether off_t is smaller than off64_t). Tested for mips64 n32. Also tested test-lfs for x86_64 and x86, where as expected it passes. [BZ #21019] * sysdeps/unix/sysv/linux/mips/mips64/n32/syscalls.list (lseek64): New syscall entry. * sysdeps/unix/sysv/linux/mips/mips64/n32/lseek.c: New file. * io/test-lfs.c (do_test): Test offset returned from lseek64 and lseek.
2017-01-03 00:09:25 +01:00
off64_t offset64 = lseek64 (fd, 0, SEEK_CUR);
if (offset64 != TWO_GB + 100)
{
error (0, 0, "lseek64 did not return expected offset");
exit (EXIT_FAILURE);
}
off_t offset = lseek (fd, 0, SEEK_CUR);
if (sizeof (off_t) < sizeof (off64_t))
{
if (offset != -1 || errno != EOVERFLOW)
{
error (0, 0, "lseek did not fail with EOVERFLOW");
exit (EXIT_FAILURE);
}
}
else
if (offset != TWO_GB + 100)
{
error (0, 0, "lseek did not return expected offset");
exit (EXIT_FAILURE);
}
2000-06-30 11:55:04 +02:00
ret = write (fd, "Hello", 5);
if (ret == -1 && errno == EFBIG)
{
error (0, 0, "LFS seems not to be supported.");
exit (EXIT_SUCCESS);
}
if (ret == -1 && errno == ENOSPC)
2000-06-30 11:55:04 +02:00
{
error (0, 0, "Not enough space to write file.");
2000-06-30 11:55:04 +02:00
exit (EXIT_SUCCESS);
}
2000-06-30 11:55:04 +02:00
if (ret != 5)
error (EXIT_FAILURE, errno, "cannot write test string to large file");
ret = close (fd);
if (ret == -1)
error (EXIT_FAILURE, errno, "error closing file");
ret = stat64 (name, &statbuf);
if (ret == -1 && (errno == ENOSYS || errno == EOVERFLOW))
error (0, 0, "stat64 is not supported.");
2000-06-30 11:55:04 +02:00
else if (ret == -1)
error (EXIT_FAILURE, errno, "cannot stat file `%s'", name);
else if (statbuf.st_size != (TWO_GB + 100 + 5))
2000-06-30 11:55:04 +02:00
error (EXIT_FAILURE, 0, "stat reported size %lld instead of %lld.",
(long long int) statbuf.st_size, (TWO_GB + 100 + 5));
2000-06-30 11:55:04 +02:00
fd2 = openat64 (AT_FDCWD, name, O_RDWR);
if (fd2 == -1)
{
if (errno == ENOSYS)
{
/* Silently ignore this test. */
error (0, 0, "openat64 is not supported");
}
else
error (EXIT_FAILURE, errno, "openat64 failed to open big file");
}
else
{
ret = close (fd2);
if (ret == -1)
error (EXIT_FAILURE, errno, "error closing file");
}
test_ftello ();
2000-06-30 11:55:04 +02:00
return 0;
}