2019-01-01 00:11:28 +00:00
|
|
|
/* Copyright (C) 2011-2019 Free Software Foundation, Inc.
|
2011-02-17 06:21:08 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by Ryan S. Arnold <rsa@us.ibm.com>, 2011.
|
|
|
|
|
|
|
|
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
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2011-02-17 06:21:08 +00:00
|
|
|
|
|
|
|
#include <fcntl.h>
|
2017-02-16 22:31:42 +00:00
|
|
|
#include <limits.h>
|
2011-02-17 06:21:08 +00:00
|
|
|
#include <paths.h>
|
|
|
|
#include <stdio.h>
|
2017-02-16 22:31:42 +00:00
|
|
|
#include <stdint.h>
|
2011-02-17 06:21:08 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
|
|
|
|
|
|
|
|
/* The purpose of this test is to verify that the INTERNAL_[V]SYSCALL_NCS
|
|
|
|
macros on 64-bit platforms don't cast the return type to (int) which would
|
|
|
|
erroneously sign extend the return value should the high bit of the bottom
|
|
|
|
half of the word be '1'. */
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
/* Used to test the non power-of-2 code path. */
|
|
|
|
#undef IOV_MAX
|
|
|
|
#define IOV_MAX 1000
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* writev() should report that it has written EXPECTED number of bytes. */
|
|
|
|
#define EXPECTED ((size_t) INT32_MAX + 1)
|
|
|
|
|
|
|
|
static int
|
|
|
|
do_test (void)
|
|
|
|
{
|
|
|
|
struct iovec iv[IOV_MAX];
|
|
|
|
/* POSIX doesn't guarantee that IOV_MAX is pow of 2 but we're optimistic. */
|
|
|
|
size_t bufsz = EXPECTED / IOV_MAX;
|
|
|
|
size_t bufrem = EXPECTED % IOV_MAX;
|
|
|
|
|
|
|
|
/* If there's a remainder then IOV_MAX probably isn't a power of 2 and we
|
|
|
|
need to make bufsz bigger so that the last iovec, iv[IOV_MAX-1], is free
|
|
|
|
for the remainder. */
|
|
|
|
if (bufrem)
|
|
|
|
{
|
|
|
|
bufsz = bufsz + 1;
|
|
|
|
bufrem = EXPECTED - (bufsz * (IOV_MAX - 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We writev to /dev/null since we're just testing writev's return value. */
|
|
|
|
int fd = open (_PATH_DEVNULL, O_WRONLY);
|
|
|
|
if (fd == -1)
|
|
|
|
{
|
|
|
|
printf ("Unable to open /dev/null for writing.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
iv[0].iov_base = malloc (bufsz);
|
|
|
|
if (iv[0].iov_base == NULL)
|
|
|
|
{
|
|
|
|
printf ("malloc (%zu) failed.\n", bufsz);
|
|
|
|
close (fd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
iv[0].iov_len = bufsz;
|
|
|
|
|
|
|
|
/* We optimistically presume that there isn't a remainder and set all iovec
|
|
|
|
instances to the same base and len as the first instance. */
|
|
|
|
for (int i = 1; i < IOV_MAX; i++)
|
|
|
|
{
|
|
|
|
/* We don't care what the data is so reuse the allocation from iv[0]; */
|
|
|
|
iv[i].iov_base = iv[0].iov_base;
|
|
|
|
iv[i].iov_len = iv[0].iov_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If there is a remainder then we correct the last iov_len. */
|
|
|
|
if (bufrem)
|
|
|
|
iv[IOV_MAX - 1].iov_len = bufrem;
|
|
|
|
|
|
|
|
/* Write junk to /dev/null with the writev syscall in order to get a return
|
|
|
|
of INT32_MAX+1 bytes to verify that the INTERNAL_SYSCALL wrappers aren't
|
|
|
|
mangling the result if the signbit of a 32-bit number is set. */
|
|
|
|
ssize_t ret = writev (fd, iv, IOV_MAX);
|
|
|
|
|
|
|
|
free (iv[0].iov_base);
|
|
|
|
close (fd);
|
|
|
|
|
|
|
|
if (ret != (ssize_t) EXPECTED)
|
|
|
|
{
|
2011-06-24 18:59:17 +00:00
|
|
|
#ifdef ARTIFICIAL_LIMIT
|
|
|
|
if (ret != (ssize_t) ARTIFICIAL_LIMIT)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
printf ("writev() return value: %zd != EXPECTED: %zd\n",
|
|
|
|
ret, EXPECTED);
|
|
|
|
return 1;
|
|
|
|
}
|
2011-02-17 06:21:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define TEST_FUNCTION do_test ()
|
|
|
|
#include "../test-skeleton.c"
|