]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - tools/test/stress2/misc/msdos14.sh
contrib/tzdata: import tzdata 2021b
[FreeBSD/FreeBSD.git] / tools / test / stress2 / misc / msdos14.sh
1 #!/bin/sh
2
3 #
4 # SPDX-License-Identifier: BSD-2-Clause-FreeBSD
5 #
6 # Copyright (c) 2021 Peter Holm
7 #
8 # Redistribution and use in source and binary forms, with or without
9 # modification, are permitted provided that the following conditions
10 # are met:
11 # 1. Redistributions of source code must retain the above copyright
12 #    notice, this list of conditions and the following disclaimer.
13 # 2. Redistributions in binary form must reproduce the above copyright
14 #    notice, this list of conditions and the following disclaimer in the
15 #    documentation and/or other materials provided with the distribution.
16 #
17 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 # ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 # SUCH DAMAGE.
28 #
29
30 # Rename(2) test with msdosfs(5)
31 # Test scenario by kib@
32
33 . ../default.cfg
34 [ `id -u` -ne 0 ] && echo "Must be root!" && exit 1
35
36 [ -x /sbin/mount_msdosfs ] || exit 0
37 dir=/tmp
38 odir=`pwd`
39 cd $dir
40 cat > /tmp/msdos14.c <<EOF
41 /* $Id: rename.c,v 1.2 2021/08/22 15:35:38 kostik Exp kostik $ */
42
43 #include <sys/stat.h>
44 #include <err.h>
45 #include <fcntl.h>
46 #include <inttypes.h>
47 #include <stdint.h>
48 #include <stdio.h>
49 #include <unistd.h>
50
51 int
52 main(void)
53 {
54         struct stat sb;
55         uint64_t x;
56         int error, fd;
57         char from[64], to[64];
58
59         for (x = 0;; x++) {
60                 snprintf(from, sizeof(from), "x.%" PRIu64 ".from", x);
61                 snprintf(to, sizeof(to), "x.%" PRIu64 ".to", x);
62
63                 fd = open(from, O_CREAT | O_TRUNC | O_EXCL, 0666);
64                 if (fd == -1)
65                         err(1, "open %s", from);
66                 close(fd);
67                 error = rename(from, to);
68                 if (error == -1)
69                         err(1, "rename %s %s", from, to);
70                 error = stat(to, &sb);
71                 if (error == -1)
72                         err(1, "stat %s", to);
73                 error = unlink(to);
74                 if (error == -1)
75                         err(1, "unlink %s", to);
76         }
77 }
78
79 EOF
80 cc -o msdos14    -Wall -Wextra -O2 msdos14.c || exit 1
81 rm -f msdos14.c
82 cd $odir
83 log=/tmp/msdos14sh..log
84 mount | grep "$mntpoint" | grep -q md$mdstart && umount -f $mntpoint
85 mdconfig -l | grep -q $mdstart &&  mdconfig -d -u $mdstart
86
87 set -e
88 mdconfig -a -t swap -s 4g -u $mdstart
89 bsdlabel -w md$mdstart auto
90 newfs_msdos -b 1024 /dev/md${mdstart}$part > /dev/null
91 mount -t msdosfs /dev/md${mdstart}$part $mntpoint
92 set +e
93
94 cp /tmp/msdos14 $mntpoint
95 cd $mntpoint
96
97 (cd $odir/../testcases/swap; ./swap -t 5m -i 20 -l 100) > /dev/null &
98 sleep 2
99 timeout 5m ./msdos14
100 while pkill swap; do :; done
101 wait
102 cd $odir
103
104 while mount | grep "$mntpoint" | grep -q md$mdstart; do
105         umount $mntpoint || sleep 1
106 done
107 fsck -t msdosfs -y /dev/md${mdstart}$part > $log 2>&1
108 if egrep -q "BAD|INCONSISTENCY|MODIFIED" $log; then
109         echo "fsck issues:"
110         cat $log
111         s=1
112
113         mount -t msdosfs /dev/md${mdstart}$part $mntpoint || exit 1
114         ls -lR $mntpoint
115         umount $mntpoint
116 fi
117 mdconfig -d -u $mdstart
118 rm /tmp/msdos14 $log
119 exit $s