blob: fd42750111d4b309107fc89068a92122aa2d2fc0 [file] [log] [blame]
Dmitry V. Levincc1e1492015-10-09 00:48:19 +00001/*
Dmitry V. Levin6e659222016-01-06 16:03:23 +00002 * Copyright (c) 2015-2016 Dmitry V. Levin <ldv@altlinux.org>
Dmitry V. Levincc1e1492015-10-09 00:48:19 +00003 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. The name of the author may not be used to endorse or promote products
14 * derived from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
Dmitry V. Levincc1e1492015-10-09 00:48:19 +000028#include <stdio.h>
29#include <stdint.h>
30#include <stdlib.h>
31#include <unistd.h>
Dmitry V. Levincc1e1492015-10-09 00:48:19 +000032#include "flock.h"
33
34#define FILE_LEN 4096
Dmitry V. Levin21547022015-12-05 00:52:01 +000035#define EINVAL_STR "-1 EINVAL (Invalid argument)"
36
Dmitry V. Levin21547022015-12-05 00:52:01 +000037#define TEST_FLOCK_EINVAL(cmd) test_flock_einval(cmd, #cmd)
Dmitry V. Levincc1e1492015-10-09 00:48:19 +000038
Dmitry V. Levin2165a352016-01-12 00:02:56 +000039#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. Levincc1e1492015-10-09 00:48:19 +000045static void
Dmitry V. Levin21547022015-12-05 00:52:01 +000046test_flock_einval(const int cmd, const char *name)
Dmitry V. Levincc1e1492015-10-09 00:48:19 +000047{
48 struct_kernel_flock fl = {
49 .l_type = F_RDLCK,
Dmitry V. Levin2165a352016-01-12 00:02:56 +000050 .l_start = (TYPEOF_FLOCK_OFF_T) 0xdefaced1facefeed,
51 .l_len = (TYPEOF_FLOCK_OFF_T) 0xdefaced2cafef00d
Dmitry V. Levincc1e1492015-10-09 00:48:19 +000052 };
Dmitry V. Levin21547022015-12-05 00:52:01 +000053 syscall(TEST_SYSCALL_NR, 0, cmd, &fl);
54 printf("%s(0, %s, {l_type=F_RDLCK, l_whence=SEEK_SET"
55 ", l_start=%jd, l_len=%jd}) = %s\n", TEST_SYSCALL_STR, name,
56 (intmax_t) fl.l_start, (intmax_t) fl.l_len, EINVAL_STR);
Dmitry V. Levincc1e1492015-10-09 00:48:19 +000057}
58
59static void
Dmitry V. Levin21547022015-12-05 00:52:01 +000060test_flock(void)
Dmitry V. Levincc1e1492015-10-09 00:48:19 +000061{
Dmitry V. Levin21547022015-12-05 00:52:01 +000062 TEST_FLOCK_EINVAL(F_SETLK);
63 TEST_FLOCK_EINVAL(F_SETLKW);
64
65 struct_kernel_flock fl = {
Dmitry V. Levincc1e1492015-10-09 00:48:19 +000066 .l_type = F_RDLCK,
Dmitry V. Levin21547022015-12-05 00:52:01 +000067 .l_len = FILE_LEN
Dmitry V. Levincc1e1492015-10-09 00:48:19 +000068 };
Dmitry V. Levin21547022015-12-05 00:52:01 +000069 int rc = syscall(TEST_SYSCALL_NR, 0, F_SETLK, &fl);
70 printf("%s(0, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET"
Dmitry V. Levincc1e1492015-10-09 00:48:19 +000071 ", l_start=0, l_len=%d}) = %s\n",
Dmitry V. Levin21547022015-12-05 00:52:01 +000072 TEST_SYSCALL_STR, FILE_LEN, rc ? EINVAL_STR : "0");
Dmitry V. Levincc1e1492015-10-09 00:48:19 +000073 if (rc)
74 return;
75
Dmitry V. Levin21547022015-12-05 00:52:01 +000076 syscall(TEST_SYSCALL_NR, 0, F_GETLK, &fl);
77 printf("%s(0, F_GETLK, {l_type=F_UNLCK, l_whence=SEEK_SET"
78 ", l_start=0, l_len=%d, l_pid=0}) = 0\n",
79 TEST_SYSCALL_STR, FILE_LEN);
Dmitry V. Levincc1e1492015-10-09 00:48:19 +000080
Dmitry V. Levin21547022015-12-05 00:52:01 +000081 syscall(TEST_SYSCALL_NR, 0, F_SETLK, &fl);
82 printf("%s(0, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET"
83 ", l_start=0, l_len=%d}) = 0\n",
84 TEST_SYSCALL_STR, FILE_LEN);
Dmitry V. Levincc1e1492015-10-09 00:48:19 +000085}
86
Dmitry V. Levin6e659222016-01-06 16:03:23 +000087static void
Dmitry V. Levin21547022015-12-05 00:52:01 +000088create_sample(void)
Dmitry V. Levincc1e1492015-10-09 00:48:19 +000089{
Dmitry V. Levin21547022015-12-05 00:52:01 +000090 char fname[] = TEST_SYSCALL_STR "_XXXXXX";
Dmitry V. Levincc1e1492015-10-09 00:48:19 +000091
92 (void) close(0);
Dmitry V. Levin6e659222016-01-06 16:03:23 +000093 if (mkstemp(fname))
94 perror_msg_and_fail("mkstemp: %s", fname);
95 if (unlink(fname))
96 perror_msg_and_fail("unlink: %s", fname);
97 if (ftruncate(0, FILE_LEN))
98 perror_msg_and_fail("ftruncate");
Dmitry V. Levincc1e1492015-10-09 00:48:19 +000099}