2018-11-21 11:41:05 +00:00
|
|
|
/* Test POSIX lock on an open file (lockf).
|
2023-01-06 21:08:04 +00:00
|
|
|
Copyright (C) 2019-2023 Free Software Foundation, Inc.
|
2018-11-21 11:41:05 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
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
|
|
|
along with this program; if not, see <https://www.gnu.org/licenses/>.
|
2018-11-21 11:41:05 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <support/temp_file.h>
|
|
|
|
#include <support/capture_subprocess.h>
|
|
|
|
#include <support/check.h>
|
|
|
|
|
2023-05-24 19:24:19 +00:00
|
|
|
#ifndef TST_LOCKFD
|
|
|
|
# define TST_LOCKFD "tst-lockfd."
|
|
|
|
#endif
|
|
|
|
#ifndef LOCKF
|
|
|
|
# define LOCKF lockf
|
|
|
|
#endif
|
|
|
|
#ifndef LOCKF64
|
|
|
|
# define LOCKF64 lockf64
|
|
|
|
#endif
|
|
|
|
|
2018-11-21 11:41:05 +00:00
|
|
|
static char *temp_filename;
|
|
|
|
static int temp_fd;
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_prepare (int argc, char **argv)
|
|
|
|
{
|
2023-05-24 19:24:19 +00:00
|
|
|
temp_fd = create_temp_file (TST_LOCKFD, &temp_filename);
|
2018-11-21 11:41:05 +00:00
|
|
|
TEST_VERIFY_EXIT (temp_fd != -1);
|
|
|
|
}
|
|
|
|
#define PREPARE do_prepare
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_test_child_lockf (void *closure)
|
|
|
|
{
|
|
|
|
/* Check if parent has [0, 1024) locked. */
|
|
|
|
TEST_COMPARE (lseek (temp_fd, 0, SEEK_SET), 0);
|
2023-05-24 19:24:19 +00:00
|
|
|
TEST_COMPARE (LOCKF (temp_fd, F_TLOCK, 1024), -1);
|
2018-11-21 11:41:05 +00:00
|
|
|
TEST_COMPARE (errno, EAGAIN);
|
2023-05-24 19:24:19 +00:00
|
|
|
TEST_COMPARE (LOCKF (temp_fd, F_TEST, 1024), -1);
|
2018-11-21 11:41:05 +00:00
|
|
|
TEST_COMPARE (errno, EACCES);
|
|
|
|
/* Also Check if parent has last 1024 bytes locked. */
|
|
|
|
TEST_COMPARE (lseek (temp_fd, INT32_MAX-1024, SEEK_SET), INT32_MAX-1024);
|
2023-05-24 19:24:19 +00:00
|
|
|
TEST_COMPARE (LOCKF (temp_fd, F_TEST, 1024), -1);
|
2018-11-21 11:41:05 +00:00
|
|
|
|
|
|
|
/* And try to lock [1024, 2048). */
|
|
|
|
TEST_COMPARE (lseek (temp_fd, 1024, SEEK_SET), 1024);
|
2023-05-24 19:24:19 +00:00
|
|
|
TEST_COMPARE (LOCKF (temp_fd, F_LOCK, 1024), 0);
|
2018-11-21 11:41:05 +00:00
|
|
|
|
|
|
|
/* Check if non-LFS interface cap access to 32-bif off_t. */
|
|
|
|
TEST_COMPARE (lseek64 (temp_fd, (off64_t)INT32_MAX, SEEK_SET),
|
|
|
|
(off64_t)INT32_MAX);
|
2023-05-24 19:24:19 +00:00
|
|
|
TEST_COMPARE (LOCKF64 (temp_fd, F_TEST, 1024), 0);
|
2018-11-21 11:41:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_test_child_lockf64 (void *closure)
|
|
|
|
{
|
|
|
|
/* Check if parent has [0, 1024) locked. */
|
|
|
|
TEST_COMPARE (lseek64 (temp_fd, 0, SEEK_SET), 0);
|
2023-05-24 19:24:19 +00:00
|
|
|
TEST_COMPARE (LOCKF64 (temp_fd, F_TLOCK, 1024), -1);
|
2018-11-21 11:41:05 +00:00
|
|
|
TEST_COMPARE (errno, EAGAIN);
|
2023-05-24 19:24:19 +00:00
|
|
|
TEST_COMPARE (LOCKF64 (temp_fd, F_TEST, 1024), -1);
|
2018-11-21 11:41:05 +00:00
|
|
|
TEST_COMPARE (errno, EACCES);
|
|
|
|
/* Also Check if parent has last 1024 bytes locked. */
|
|
|
|
TEST_COMPARE (lseek64 (temp_fd, INT32_MAX-1024, SEEK_SET), INT32_MAX-1024);
|
2023-05-24 19:24:19 +00:00
|
|
|
TEST_COMPARE (LOCKF64 (temp_fd, F_TEST, 1024), -1);
|
2018-11-21 11:41:05 +00:00
|
|
|
|
|
|
|
/* And try to lock [1024, 2048). */
|
|
|
|
TEST_COMPARE (lseek64 (temp_fd, 1024, SEEK_SET), 1024);
|
2023-05-24 19:24:19 +00:00
|
|
|
TEST_COMPARE (LOCKF64 (temp_fd, F_LOCK, 1024), 0);
|
2018-11-21 11:41:05 +00:00
|
|
|
|
|
|
|
/* And also [INT32_MAX, INT32_MAX+1024). */
|
|
|
|
{
|
|
|
|
off64_t off = (off64_t)INT32_MAX;
|
|
|
|
TEST_COMPARE (lseek64 (temp_fd, off, SEEK_SET), off);
|
2023-05-24 19:24:19 +00:00
|
|
|
TEST_COMPARE (LOCKF64 (temp_fd, F_LOCK, 1024), 0);
|
2018-11-21 11:41:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if [INT32_MAX+1024, INT64_MAX) is locked. */
|
|
|
|
{
|
|
|
|
off64_t off = (off64_t)INT32_MAX+1024;
|
|
|
|
TEST_COMPARE (lseek64 (temp_fd, off, SEEK_SET), off);
|
2023-05-24 19:24:19 +00:00
|
|
|
TEST_COMPARE (LOCKF64 (temp_fd, F_TLOCK, 1024), -1);
|
2018-11-21 11:41:05 +00:00
|
|
|
TEST_COMPARE (errno, EAGAIN);
|
2023-05-24 19:24:19 +00:00
|
|
|
TEST_COMPARE (LOCKF64 (temp_fd, F_TEST, 1024), -1);
|
2018-11-21 11:41:05 +00:00
|
|
|
TEST_COMPARE (errno, EACCES);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
do_test (void)
|
|
|
|
{
|
|
|
|
/* Basic tests to check if a lock can be obtained and checked. */
|
2023-05-24 19:24:19 +00:00
|
|
|
TEST_COMPARE (LOCKF (temp_fd, F_LOCK, 1024), 0);
|
|
|
|
TEST_COMPARE (LOCKF (temp_fd, F_LOCK, INT32_MAX), 0);
|
|
|
|
TEST_COMPARE (LOCKF (temp_fd, F_TLOCK, 1024), 0);
|
|
|
|
TEST_COMPARE (LOCKF (temp_fd, F_TEST, 1024), 0);
|
2018-11-21 11:41:05 +00:00
|
|
|
TEST_COMPARE (lseek (temp_fd, 1024, SEEK_SET), 1024);
|
2023-05-24 19:24:19 +00:00
|
|
|
TEST_COMPARE (LOCKF (temp_fd, F_ULOCK, 1024), 0);
|
2018-11-21 11:41:05 +00:00
|
|
|
/* Parent process should have ([0, 1024), [2048, INT32_MAX)) ranges locked. */
|
|
|
|
|
|
|
|
{
|
|
|
|
struct support_capture_subprocess result;
|
|
|
|
result = support_capture_subprocess (do_test_child_lockf, NULL);
|
2023-05-24 19:24:19 +00:00
|
|
|
support_capture_subprocess_check (&result, "LOCKF", 0, sc_allow_none);
|
2018-11-21 11:41:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (sizeof (off_t) != sizeof (off64_t))
|
|
|
|
{
|
|
|
|
/* Check if previously locked regions with LFS symbol. */
|
|
|
|
TEST_COMPARE (lseek (temp_fd, 0, SEEK_SET), 0);
|
2023-05-24 19:24:19 +00:00
|
|
|
TEST_COMPARE (LOCKF64 (temp_fd, F_LOCK, 1024), 0);
|
|
|
|
TEST_COMPARE (LOCKF64 (temp_fd, F_TLOCK, 1024), 0);
|
|
|
|
TEST_COMPARE (LOCKF64 (temp_fd, F_TEST, 1024), 0);
|
2018-11-21 11:41:05 +00:00
|
|
|
/* Lock region [INT32_MAX+1024, INT64_MAX). */
|
|
|
|
off64_t off = (off64_t)INT32_MAX + 1024;
|
|
|
|
TEST_COMPARE (lseek64 (temp_fd, off, SEEK_SET), off);
|
2023-05-24 19:24:19 +00:00
|
|
|
TEST_COMPARE (LOCKF64 (temp_fd, F_LOCK, 1024), 0);
|
2018-11-21 11:41:05 +00:00
|
|
|
/* Parent process should have ([0, 1024), [2048, INT32_MAX),
|
|
|
|
[INT32_MAX+1024, INT64_MAX)) ranges locked. */
|
|
|
|
|
|
|
|
{
|
|
|
|
struct support_capture_subprocess result;
|
|
|
|
result = support_capture_subprocess (do_test_child_lockf64, NULL);
|
2023-05-24 19:24:19 +00:00
|
|
|
support_capture_subprocess_check (&result, "LOCKF", 0, sc_allow_none);
|
2018-11-21 11:41:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#include <support/test-driver.c>
|