Dmitry V. Levin | cc1e149 | 2015-10-09 00:48:19 +0000 | [diff] [blame] | 1 | /* |
Dmitry V. Levin | 6e65922 | 2016-01-06 16:03:23 +0000 | [diff] [blame] | 2 | * Copyright (c) 2015-2016 Dmitry V. Levin <ldv@altlinux.org> |
Elliott Hughes | 39bac05 | 2017-05-25 16:56:11 -0700 | [diff] [blame^] | 3 | * Copyright (c) 2015-2017 The strace developers. |
Dmitry V. Levin | cc1e149 | 2015-10-09 00:48:19 +0000 | [diff] [blame] | 4 | * All rights reserved. |
| 5 | * |
| 6 | * Redistribution and use in source and binary forms, with or without |
| 7 | * modification, are permitted provided that the following conditions |
| 8 | * are met: |
| 9 | * 1. Redistributions of source code must retain the above copyright |
| 10 | * notice, this list of conditions and the following disclaimer. |
| 11 | * 2. Redistributions in binary form must reproduce the above copyright |
| 12 | * notice, this list of conditions and the following disclaimer in the |
| 13 | * documentation and/or other materials provided with the distribution. |
| 14 | * 3. The name of the author may not be used to endorse or promote products |
| 15 | * derived from this software without specific prior written permission. |
| 16 | * |
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | */ |
| 28 | |
Dmitry V. Levin | cc1e149 | 2015-10-09 00:48:19 +0000 | [diff] [blame] | 29 | #include <stdio.h> |
| 30 | #include <stdint.h> |
| 31 | #include <stdlib.h> |
| 32 | #include <unistd.h> |
Dmitry V. Levin | cc1e149 | 2015-10-09 00:48:19 +0000 | [diff] [blame] | 33 | #include "flock.h" |
| 34 | |
| 35 | #define FILE_LEN 4096 |
Dmitry V. Levin | 2154702 | 2015-12-05 00:52:01 +0000 | [diff] [blame] | 36 | |
Dmitry V. Levin | 2154702 | 2015-12-05 00:52:01 +0000 | [diff] [blame] | 37 | #define TEST_FLOCK_EINVAL(cmd) test_flock_einval(cmd, #cmd) |
Dmitry V. Levin | cc1e149 | 2015-10-09 00:48:19 +0000 | [diff] [blame] | 38 | |
Dmitry V. Levin | 2165a35 | 2016-01-12 00:02:56 +0000 | [diff] [blame] | 39 | #ifdef HAVE_TYPEOF |
| 40 | # define TYPEOF_FLOCK_OFF_T typeof(((struct_kernel_flock *) NULL)->l_len) |
| 41 | #else |
| 42 | # define TYPEOF_FLOCK_OFF_T off_t |
| 43 | #endif |
| 44 | |
Dmitry V. Levin | 7708659 | 2016-05-16 21:01:43 +0000 | [diff] [blame] | 45 | static long |
| 46 | invoke_test_syscall(const unsigned int cmd, void *const p) |
| 47 | { |
Elliott Hughes | 39bac05 | 2017-05-25 16:56:11 -0700 | [diff] [blame^] | 48 | const kernel_ulong_t fd = F8ILL_KULONG_MASK; |
| 49 | const kernel_ulong_t op = F8ILL_KULONG_MASK | cmd; |
Dmitry V. Levin | 7708659 | 2016-05-16 21:01:43 +0000 | [diff] [blame] | 50 | |
Elliott Hughes | 39bac05 | 2017-05-25 16:56:11 -0700 | [diff] [blame^] | 51 | return syscall(TEST_SYSCALL_NR, fd, op, (unsigned long) p); |
Dmitry V. Levin | 7708659 | 2016-05-16 21:01:43 +0000 | [diff] [blame] | 52 | } |
| 53 | |
Dmitry V. Levin | cc1e149 | 2015-10-09 00:48:19 +0000 | [diff] [blame] | 54 | static void |
Dmitry V. Levin | 2154702 | 2015-12-05 00:52:01 +0000 | [diff] [blame] | 55 | test_flock_einval(const int cmd, const char *name) |
Dmitry V. Levin | cc1e149 | 2015-10-09 00:48:19 +0000 | [diff] [blame] | 56 | { |
| 57 | struct_kernel_flock fl = { |
| 58 | .l_type = F_RDLCK, |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 59 | .l_start = (TYPEOF_FLOCK_OFF_T) 0xdefaced1facefeedULL, |
| 60 | .l_len = (TYPEOF_FLOCK_OFF_T) 0xdefaced2cafef00dULL |
Dmitry V. Levin | cc1e149 | 2015-10-09 00:48:19 +0000 | [diff] [blame] | 61 | }; |
Elliott Hughes | 39bac05 | 2017-05-25 16:56:11 -0700 | [diff] [blame^] | 62 | long rc = invoke_test_syscall(cmd, &fl); |
Dmitry V. Levin | 2154702 | 2015-12-05 00:52:01 +0000 | [diff] [blame] | 63 | printf("%s(0, %s, {l_type=F_RDLCK, l_whence=SEEK_SET" |
| 64 | ", l_start=%jd, l_len=%jd}) = %s\n", TEST_SYSCALL_STR, name, |
Elliott Hughes | 39bac05 | 2017-05-25 16:56:11 -0700 | [diff] [blame^] | 65 | (intmax_t) fl.l_start, (intmax_t) fl.l_len, sprintrc(rc)); |
Dmitry V. Levin | cc1e149 | 2015-10-09 00:48:19 +0000 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | static void |
Dmitry V. Levin | 2154702 | 2015-12-05 00:52:01 +0000 | [diff] [blame] | 69 | test_flock(void) |
Dmitry V. Levin | cc1e149 | 2015-10-09 00:48:19 +0000 | [diff] [blame] | 70 | { |
Dmitry V. Levin | 2154702 | 2015-12-05 00:52:01 +0000 | [diff] [blame] | 71 | TEST_FLOCK_EINVAL(F_SETLK); |
| 72 | TEST_FLOCK_EINVAL(F_SETLKW); |
| 73 | |
| 74 | struct_kernel_flock fl = { |
Dmitry V. Levin | cc1e149 | 2015-10-09 00:48:19 +0000 | [diff] [blame] | 75 | .l_type = F_RDLCK, |
Dmitry V. Levin | 2154702 | 2015-12-05 00:52:01 +0000 | [diff] [blame] | 76 | .l_len = FILE_LEN |
Dmitry V. Levin | cc1e149 | 2015-10-09 00:48:19 +0000 | [diff] [blame] | 77 | }; |
Dmitry V. Levin | 7708659 | 2016-05-16 21:01:43 +0000 | [diff] [blame] | 78 | long rc = invoke_test_syscall(F_SETLK, &fl); |
Dmitry V. Levin | 2154702 | 2015-12-05 00:52:01 +0000 | [diff] [blame] | 79 | printf("%s(0, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET" |
Dmitry V. Levin | cc1e149 | 2015-10-09 00:48:19 +0000 | [diff] [blame] | 80 | ", l_start=0, l_len=%d}) = %s\n", |
Elliott Hughes | 39bac05 | 2017-05-25 16:56:11 -0700 | [diff] [blame^] | 81 | TEST_SYSCALL_STR, FILE_LEN, sprintrc(rc)); |
Dmitry V. Levin | cc1e149 | 2015-10-09 00:48:19 +0000 | [diff] [blame] | 82 | if (rc) |
| 83 | return; |
| 84 | |
Dmitry V. Levin | 7708659 | 2016-05-16 21:01:43 +0000 | [diff] [blame] | 85 | invoke_test_syscall(F_GETLK, &fl); |
Dmitry V. Levin | 2154702 | 2015-12-05 00:52:01 +0000 | [diff] [blame] | 86 | printf("%s(0, F_GETLK, {l_type=F_UNLCK, l_whence=SEEK_SET" |
| 87 | ", l_start=0, l_len=%d, l_pid=0}) = 0\n", |
| 88 | TEST_SYSCALL_STR, FILE_LEN); |
Dmitry V. Levin | cc1e149 | 2015-10-09 00:48:19 +0000 | [diff] [blame] | 89 | |
Dmitry V. Levin | 7708659 | 2016-05-16 21:01:43 +0000 | [diff] [blame] | 90 | invoke_test_syscall(F_SETLK, &fl); |
Dmitry V. Levin | 2154702 | 2015-12-05 00:52:01 +0000 | [diff] [blame] | 91 | printf("%s(0, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET" |
| 92 | ", l_start=0, l_len=%d}) = 0\n", |
| 93 | TEST_SYSCALL_STR, FILE_LEN); |
Dmitry V. Levin | cc1e149 | 2015-10-09 00:48:19 +0000 | [diff] [blame] | 94 | } |
| 95 | |
Dmitry V. Levin | 6e65922 | 2016-01-06 16:03:23 +0000 | [diff] [blame] | 96 | static void |
Dmitry V. Levin | 2154702 | 2015-12-05 00:52:01 +0000 | [diff] [blame] | 97 | create_sample(void) |
Dmitry V. Levin | cc1e149 | 2015-10-09 00:48:19 +0000 | [diff] [blame] | 98 | { |
Dmitry V. Levin | 2154702 | 2015-12-05 00:52:01 +0000 | [diff] [blame] | 99 | char fname[] = TEST_SYSCALL_STR "_XXXXXX"; |
Dmitry V. Levin | cc1e149 | 2015-10-09 00:48:19 +0000 | [diff] [blame] | 100 | |
| 101 | (void) close(0); |
Dmitry V. Levin | 6e65922 | 2016-01-06 16:03:23 +0000 | [diff] [blame] | 102 | if (mkstemp(fname)) |
| 103 | perror_msg_and_fail("mkstemp: %s", fname); |
| 104 | if (unlink(fname)) |
| 105 | perror_msg_and_fail("unlink: %s", fname); |
| 106 | if (ftruncate(0, FILE_LEN)) |
| 107 | perror_msg_and_fail("ftruncate"); |
Dmitry V. Levin | cc1e149 | 2015-10-09 00:48:19 +0000 | [diff] [blame] | 108 | } |