Commit | Line | Data |
---|---|---|
ea2b5ef6 | 1 | # NOTE: this file tests how large files (>2GB) work with raw system IO. |
93c29725 | 2 | # stdio: open(), tell(), seek(), print(), read() is tested in t/op/lfs.t. |
ea2b5ef6 JH |
3 | # If you modify/add tests here, remember to update also t/op/lfs.t. |
4 | ||
5 | BEGIN { | |
ea2b5ef6 | 6 | chdir 't' if -d 't'; |
20822f61 | 7 | @INC = '../lib'; |
9f8fdb7d JH |
8 | require Config; import Config; |
9 | # Don't bother if there are no quad offsets. | |
10 | if ($Config{lseeksize} < 8) { | |
6afb513c | 11 | print "1..0 # Skip: no 64-bit file offsets\n"; |
48ea9154 | 12 | exit(0); |
9f8fdb7d | 13 | } |
ca6e1c26 | 14 | require Fcntl; import Fcntl qw(/^O_/ /^SEEK_/); |
ea2b5ef6 JH |
15 | } |
16 | ||
326fd4b6 A |
17 | use strict; |
18 | our @s; | |
19 | our $fail; | |
20 | ||
93c29725 | 21 | sub zap { |
ea2b5ef6 | 22 | close(BIG); |
93c29725 JH |
23 | unlink("big"); |
24 | unlink("big1"); | |
25 | unlink("big2"); | |
26 | } | |
27 | ||
28 | sub bye { | |
29 | zap(); | |
ea2b5ef6 JH |
30 | exit(0); |
31 | } | |
32 | ||
d731b481 JH |
33 | my $explained; |
34 | ||
fcbfa962 | 35 | sub explain { |
d731b481 JH |
36 | unless ($explained++) { |
37 | print <<EOM; | |
fcbfa962 | 38 | # |
d731b481 JH |
39 | # If the lfs (large file support: large meaning larger than two |
40 | # gigabytes) tests are skipped or fail, it may mean either that your | |
41 | # process (or process group) is not allowed to write large files | |
42 | # (resource limits) or that the file system (the network filesystem?) | |
43 | # you are running the tests on doesn't let your user/group have large | |
44 | # files (quota) or the filesystem simply doesn't support large files. | |
45 | # You may even need to reconfigure your kernel. (This is all very | |
46 | # operating system and site-dependent.) | |
fcbfa962 JH |
47 | # |
48 | # Perl may still be able to support large files, once you have | |
eed7fde4 | 49 | # such a process, enough quota, and such a (file) system. |
d731b481 | 50 | # It is just that the test failed now. |
fcbfa962 JH |
51 | # |
52 | EOM | |
d731b481 JH |
53 | } |
54 | print "1..0 # Skip: @_\n" if @_; | |
fcbfa962 JH |
55 | } |
56 | ||
e0a10278 JH |
57 | print "# checking whether we have sparse files...\n"; |
58 | ||
05f8a9f5 | 59 | # Known have-nots. |
86e48eb5 RS |
60 | if ($^O eq 'MSWin32' || $^O eq 'VMS') { |
61 | print "1..0 # Skip: no sparse files in $^O\n"; | |
ea2b5ef6 JH |
62 | bye(); |
63 | } | |
64 | ||
b18f8161 JH |
65 | # Known haves that have problems running this test |
66 | # (for example because they do not support sparse files, like UNICOS) | |
67 | if ($^O eq 'unicos') { | |
86e48eb5 | 68 | print "1..0 # Skip: no sparse files in $^0, unable to test large files\n"; |
b18f8161 JH |
69 | bye(); |
70 | } | |
71 | ||
e0a10278 | 72 | # Then try heuristically to deduce whether we have sparse files. |
05f8a9f5 | 73 | |
ea2b5ef6 | 74 | # We'll start off by creating a one megabyte file which has |
05f8a9f5 JH |
75 | # only three "true" bytes. If we have sparseness, we should |
76 | # consume less blocks than one megabyte (assuming nobody has | |
77 | # one megabyte blocks...) | |
ea2b5ef6 | 78 | |
93c29725 JH |
79 | sysopen(BIG, "big1", O_WRONLY|O_CREAT|O_TRUNC) or |
80 | do { warn "sysopen big1 failed: $!\n"; bye }; | |
81 | sysseek(BIG, 1_000_000, SEEK_SET) or | |
82 | do { warn "sysseek big1 failed: $!\n"; bye }; | |
83 | syswrite(BIG, "big") or | |
84 | do { warn "syswrite big1 failed; $!\n"; bye }; | |
85 | close(BIG) or | |
86 | do { warn "close big1 failed: $!\n"; bye }; | |
ea2b5ef6 | 87 | |
93c29725 | 88 | my @s1 = stat("big1"); |
ea2b5ef6 | 89 | |
93c29725 | 90 | print "# s1 = @s1\n"; |
ea2b5ef6 | 91 | |
93c29725 JH |
92 | sysopen(BIG, "big2", O_WRONLY|O_CREAT|O_TRUNC) or |
93 | do { warn "sysopen big2 failed: $!\n"; bye }; | |
94 | sysseek(BIG, 2_000_000, SEEK_SET) or | |
95 | do { warn "sysseek big2 failed: $!\n"; bye }; | |
96 | syswrite(BIG, "big") or | |
97 | do { warn "syswrite big2 failed; $!\n"; bye }; | |
98 | close(BIG) or | |
99 | do { warn "close big2 failed: $!\n"; bye }; | |
ea2b5ef6 | 100 | |
93c29725 | 101 | my @s2 = stat("big2"); |
5cec1e3b | 102 | |
93c29725 JH |
103 | print "# s2 = @s2\n"; |
104 | ||
105 | zap(); | |
106 | ||
107 | unless ($s1[7] == 1_000_003 && $s2[7] == 2_000_003 && | |
108 | $s1[11] == $s2[11] && $s1[12] == $s2[12]) { | |
6afb513c | 109 | print "1..0 # Skip: no sparse files?\n"; |
93c29725 | 110 | bye; |
ea2b5ef6 JH |
111 | } |
112 | ||
e0a10278 JH |
113 | print "# we seem to have sparse files...\n"; |
114 | ||
ea2b5ef6 JH |
115 | # By now we better be sure that we do have sparse files: |
116 | # if we are not, the following will hog 5 gigabytes of disk. Ooops. | |
6afb513c | 117 | # This may fail by producing some signal; run in a subprocess first for safety |
ea2b5ef6 | 118 | |
eed7fde4 JH |
119 | $ENV{LC_ALL} = "C"; |
120 | ||
6afb513c MG |
121 | my $r = system '../perl', '-I../lib', '-e', <<'EOF'; |
122 | use Fcntl qw(/^O_/ /^SEEK_/); | |
123 | sysopen(BIG, "big", O_WRONLY|O_CREAT|O_TRUNC) or die $!; | |
124 | my $sysseek = sysseek(BIG, 5_000_000_000, SEEK_SET); | |
125 | my $syswrite = syswrite(BIG, "big"); | |
126 | exit 0; | |
127 | EOF | |
128 | ||
cc4466b7 | 129 | sysopen(BIG, "big", O_WRONLY|O_CREAT|O_TRUNC) or |
e0a10278 JH |
130 | do { warn "sysopen 'big' failed: $!\n"; bye }; |
131 | my $sysseek = sysseek(BIG, 5_000_000_000, SEEK_SET); | |
6afb513c MG |
132 | unless (! $r && defined $sysseek && $sysseek == 5_000_000_000) { |
133 | $sysseek = 'undef' unless defined $sysseek; | |
d731b481 JH |
134 | explain("seeking past 2GB failed: ", |
135 | $r ? 'signal '.($r & 0x7f) : "$! (sysseek returned $sysseek)"); | |
e0a10278 JH |
136 | bye(); |
137 | } | |
eed7fde4 | 138 | |
fcbfa962 | 139 | # The syswrite will fail if there are are filesize limitations (process or fs). |
e0a10278 JH |
140 | my $syswrite = syswrite(BIG, "big"); |
141 | print "# syswrite failed: $! (syswrite returned ", | |
142 | defined $syswrite ? $syswrite : 'undef', ")\n" | |
143 | unless defined $syswrite && $syswrite == 3; | |
144 | my $close = close BIG; | |
145 | print "# close failed: $!\n" unless $close; | |
eed7fde4 | 146 | unless($syswrite && $close) { |
b948423f | 147 | if ($! =~/too large/i) { |
d731b481 | 148 | explain("writing past 2GB failed: process limits?"); |
b948423f | 149 | } elsif ($! =~ /quota/i) { |
d731b481 JH |
150 | explain("filesystem quota limits?"); |
151 | } else { | |
152 | explain("error: $!"); | |
fcbfa962 | 153 | } |
eed7fde4 | 154 | bye(); |
fcbfa962 | 155 | } |
ea2b5ef6 JH |
156 | |
157 | @s = stat("big"); | |
158 | ||
159 | print "# @s\n"; | |
160 | ||
ae178db1 | 161 | unless ($s[7] == 5_000_000_003) { |
d731b481 | 162 | explain("kernel/fs not configured to use large files?"); |
ae178db1 JH |
163 | bye(); |
164 | } | |
165 | ||
05f8a9f5 | 166 | sub fail () { |
64215065 | 167 | print "not "; |
05f8a9f5 JH |
168 | $fail++; |
169 | } | |
170 | ||
326fd4b6 A |
171 | sub offset ($$) { |
172 | my ($offset_will_be, $offset_want) = @_; | |
173 | my $offset_is = eval $offset_will_be; | |
174 | unless ($offset_is == $offset_want) { | |
175 | print "# bad offset $offset_is, want $offset_want\n"; | |
176 | if (unpack("L", pack("L", $offset_want)) == $offset_is) { | |
f06a04a3 | 177 | my($offset_func) = ($offset_will_be =~ /^(\w+)/); |
326fd4b6 A |
178 | print "# 32-bit wraparound suspected in $offset_func() since\n"; |
179 | print "# $offset_want cast into 32 bits is $offset_is.\n"; | |
f06a04a3 A |
180 | } elsif ($offset_want - unpack("L", pack("L", $offset_want)) - 1 |
181 | == $offset_is){ | |
182 | my($offset_func) = ($offset_will_be =~ /^(\w+)/); | |
183 | print "# 32-bit wraparound suspected in $offset_func() since\n"; | |
184 | printf "# %s - unpack('L', pack('L', %s)) - 1 equals %s.\n", | |
185 | $offset_want, | |
186 | $offset_want, | |
187 | $offset_is; | |
188 | } | |
326fd4b6 A |
189 | fail; |
190 | } | |
191 | } | |
192 | ||
77166d51 | 193 | print "1..17\n"; |
fcbfa962 JH |
194 | |
195 | my $fail = 0; | |
196 | ||
64215065 | 197 | fail unless $s[7] == 5_000_000_003; # exercizes pp_stat |
ea2b5ef6 JH |
198 | print "ok 1\n"; |
199 | ||
64215065 | 200 | fail unless -s "big" == 5_000_000_003; # exercizes pp_ftsize |
ea2b5ef6 JH |
201 | print "ok 2\n"; |
202 | ||
77166d51 JH |
203 | fail unless -e "big"; |
204 | print "ok 3\n"; | |
205 | ||
206 | fail unless -f "big"; | |
207 | print "ok 4\n"; | |
208 | ||
ea2b5ef6 JH |
209 | sysopen(BIG, "big", O_RDONLY) or do { warn "sysopen failed: $!\n"; bye }; |
210 | ||
326fd4b6 | 211 | offset('sysseek(BIG, 4_500_000_000, SEEK_SET)', 4_500_000_000); |
77166d51 | 212 | print "ok 5\n"; |
ea2b5ef6 | 213 | |
326fd4b6 | 214 | offset('sysseek(BIG, 0, SEEK_CUR)', 4_500_000_000); |
77166d51 | 215 | print "ok 6\n"; |
ea2b5ef6 | 216 | |
326fd4b6 | 217 | offset('sysseek(BIG, 1, SEEK_CUR)', 4_500_000_001); |
77166d51 | 218 | print "ok 7\n"; |
ea2b5ef6 | 219 | |
326fd4b6 | 220 | offset('sysseek(BIG, 0, SEEK_CUR)', 4_500_000_001); |
77166d51 | 221 | print "ok 8\n"; |
ea2b5ef6 | 222 | |
326fd4b6 | 223 | offset('sysseek(BIG, -1, SEEK_CUR)', 4_500_000_000); |
77166d51 | 224 | print "ok 9\n"; |
ea2b5ef6 | 225 | |
326fd4b6 | 226 | offset('sysseek(BIG, 0, SEEK_CUR)', 4_500_000_000); |
77166d51 | 227 | print "ok 10\n"; |
ea2b5ef6 | 228 | |
326fd4b6 | 229 | offset('sysseek(BIG, -3, SEEK_END)', 5_000_000_000); |
77166d51 | 230 | print "ok 11\n"; |
ea2b5ef6 | 231 | |
326fd4b6 | 232 | offset('sysseek(BIG, 0, SEEK_CUR)', 5_000_000_000); |
77166d51 | 233 | print "ok 12\n"; |
ea2b5ef6 JH |
234 | |
235 | my $big; | |
236 | ||
05f8a9f5 | 237 | fail unless sysread(BIG, $big, 3) == 3; |
77166d51 | 238 | print "ok 13\n"; |
ea2b5ef6 | 239 | |
05f8a9f5 | 240 | fail unless $big eq "big"; |
77166d51 JH |
241 | print "ok 14\n"; |
242 | ||
243 | # 705_032_704 = (I32)5_000_000_000 | |
326fd4b6 A |
244 | # See that we don't have "big" in the 705_... spot: |
245 | # that would mean that we have a wraparound. | |
a5853b9e | 246 | fail unless sysseek(BIG, 705_032_704, SEEK_SET); |
77166d51 JH |
247 | print "ok 15\n"; |
248 | ||
249 | my $zero; | |
250 | ||
251 | fail unless read(BIG, $zero, 3) == 3; | |
252 | print "ok 16\n"; | |
253 | ||
254 | fail unless $zero eq "\0\0\0"; | |
255 | print "ok 17\n"; | |
ea2b5ef6 | 256 | |
d731b481 | 257 | explain() if $fail; |
05f8a9f5 | 258 | |
77166d51 | 259 | bye(); # does the necessary cleanup |
e9a694fc | 260 | |
290be4b1 JH |
261 | END { |
262 | unlink "big"; # be paranoid about leaving 5 gig files lying around | |
263 | } | |
264 | ||
ea2b5ef6 | 265 | # eof |