aboutsummaryrefslogtreecommitdiff
path: root/testcases/network/nfs/nfslock01/nfslock01.sh
blob: 01d59ce8561e938b1e5c7cd22ccfff50396722b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (c) Linux Test Project, 2002-2023
# Copyright (c) 2016-2018 Oracle and/or its affiliates. All Rights Reserved.
# Copyright (c) International Business Machines  Corp., 2001
#
#  PURPOSE:
#           Two processes open FLOCK_IDATA file simultaneously
#           each one locks odd and even lines of the file simultaneously
#           and fill them with '0's and '1's. After they find eof, the
#           datafiles are compared.

TST_SETUP="do_setup"
TST_TESTFUNC="do_test"

NCHARS=${NCHARS:-64}
NLINES=${NLINES:-16384}

generate_file()
{
	local file="$1"
	local nchars="$2"
	local nlines="$3"
	local val="$4"
	local exp_size="$((nchars*nlines))"
	local size

	ROD nfs_flock_dgen $file $nchars $nlines $val

	size="$(wc -c $file | awk '{print $1}')"
	if [ $size -ne $exp_size ]; then
		tst_brk TBROK "could not create '$file' (size: $size, expected: $exp_size)"
	fi
}

do_setup()
{
	if ! tst_is_int $NCHARS || [ $NCHARS -lt 1 ]; then
		tst_res TBROK "NCHARS must be > 0"
	fi

	if ! tst_is_int $NLINES || [ $NLINES -lt 1 ]; then
		tst_res TBROK "NLINES must be > 0"
	fi

	nfs_setup

	tst_res TINFO "creating test files (chars: $NCHARS, lines: $NLINES)"

	generate_file flock_data $NCHARS $NLINES 0
	generate_file flock_odata $NCHARS $NLINES 1
}

do_test()
{
	tst_res TINFO "Testing locking"

	ROD cp flock_data flock_idata

	tst_res TINFO "locking 'flock_idata' file and writing data"

	nfs_flock 0 flock_idata $NCHARS $NLINES &
	local pids=$!
	nfs_flock 1 flock_idata $NCHARS $NLINES &
	pids="$pids $!"

	tst_res TINFO "waiting for pids: $pids"
	for p in $pids; do
		wait $p
		if [ $? -ne 0 ]; then
			tst_brk TFAIL "nfs_lock process failed"
		else
			tst_res TINFO "$p completed"
		fi
	done

	diff flock_odata flock_idata
	if [ $? -ne 0 ]; then
		tst_res TFAIL "content is different"
	else
		tst_res TPASS "content is the same"
	fi
}

. nfs_lib.sh
tst_run