This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Propagate calling context for do '...'
[perl5.git] / t / op / lfs.t
CommitLineData
ea2b5ef6
JH
1# NOTE: this file tests how large files (>2GB) work with perlio (stdio/sfio).
2# sysopen(), sysseek(), syswrite(), sysread() are tested in t/lib/syslfs.t.
3# If you modify/add tests here, remember to update also t/lib/syslfs.t.
4
817e2dcb 5BEGIN {
ea2b5ef6 6 chdir 't' if -d 't';
20822f61 7 @INC = '../lib';
9f8fdb7d
JH
8 # Don't bother if there are no quad offsets.
9 require Config; import Config;
10 if ($Config{lseeksize} < 8) {
6afb513c 11 print "1..0 # Skip: no 64-bit file offsets\n";
48ea9154 12 exit(0);
9f8fdb7d 13 }
817e2dcb
JH
14}
15
326fd4b6 16use strict;
52ece81a 17
326fd4b6
A
18our @s;
19our $fail;
20
93c29725 21sub zap {
6da84e39 22 close(BIG);
93c29725
JH
23 unlink("big");
24 unlink("big1");
25 unlink("big2");
26}
27
28sub bye {
29 zap();
6da84e39
JH
30 exit(0);
31}
32
d731b481
JH
33my $explained;
34
fcbfa962 35sub 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#
52EOM
d731b481
JH
53 }
54 print "1..0 # Skip: @_\n" if @_;
fcbfa962
JH
55}
56
e0a10278
JH
57print "# checking whether we have sparse files...\n";
58
05f8a9f5 59# Known have-nots.
86e48eb5
RS
60if ($^O eq 'MSWin32' || $^O eq 'VMS') {
61 print "1..0 # Skip: no sparse files in $^O\n";
6da84e39
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)
67if ($^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 to heuristically deduce whether we have sparse files.
05f8a9f5 73
64215065
JH
74# Let's not depend on Fcntl or any other extension.
75
ea2b5ef6 76my ($SEEK_SET, $SEEK_CUR, $SEEK_END) = (0, 1, 2);
6da84e39 77
ea2b5ef6 78# We'll start off by creating a one megabyte file which has
05f8a9f5
JH
79# only three "true" bytes. If we have sparseness, we should
80# consume less blocks than one megabyte (assuming nobody has
81# one megabyte blocks...)
817e2dcb 82
93c29725
JH
83open(BIG, ">big1") or
84 do { warn "open big1 failed: $!\n"; bye };
85binmode(BIG) or
86 do { warn "binmode big1 failed: $!\n"; bye };
87seek(BIG, 1_000_000, $SEEK_SET) or
88 do { warn "seek big1 failed: $!\n"; bye };
89print BIG "big" or
90 do { warn "print big1 failed: $!\n"; bye };
91close(BIG) or
92 do { warn "close big1 failed: $!\n"; bye };
93
94my @s1 = stat("big1");
95
96print "# s1 = @s1\n";
97
98open(BIG, ">big2") or
99 do { warn "open big2 failed: $!\n"; bye };
100binmode(BIG) or
101 do { warn "binmode big2 failed: $!\n"; bye };
102seek(BIG, 2_000_000, $SEEK_SET) or
103 do { warn "seek big2 failed; $!\n"; bye };
104print BIG "big" or
105 do { warn "print big2 failed; $!\n"; bye };
106close(BIG) or
107 do { warn "close big2 failed; $!\n"; bye };
108
109my @s2 = stat("big2");
110
111print "# s2 = @s2\n";
112
113zap();
114
115unless ($s1[7] == 1_000_003 && $s2[7] == 2_000_003 &&
116 $s1[11] == $s2[11] && $s1[12] == $s2[12]) {
6afb513c 117 print "1..0 # Skip: no sparse files?\n";
93c29725 118 bye;
817e2dcb
JH
119}
120
e0a10278
JH
121print "# we seem to have sparse files...\n";
122
817e2dcb
JH
123# By now we better be sure that we do have sparse files:
124# if we are not, the following will hog 5 gigabytes of disk. Ooops.
6afb513c 125# This may fail by producing some signal; run in a subprocess first for safety
817e2dcb 126
eed7fde4
JH
127$ENV{LC_ALL} = "C";
128
6afb513c
MG
129my $r = system '../perl', '-e', <<'EOF';
130open(BIG, ">big");
131seek(BIG, 5_000_000_000, 0);
132print BIG "big";
133exit 0;
134EOF
135
ea2b5ef6 136open(BIG, ">big") or do { warn "open failed: $!\n"; bye };
817e2dcb 137binmode BIG;
6afb513c
MG
138if ($r or not seek(BIG, 5_000_000_000, $SEEK_SET)) {
139 my $err = $r ? 'signal '.($r & 0x7f) : $!;
d731b481 140 explain("seeking past 2GB failed: $err");
e0a10278
JH
141 bye();
142}
eed7fde4 143
fcbfa962
JH
144# Either the print or (more likely, thanks to buffering) the close will
145# fail if there are are filesize limitations (process or fs).
146my $print = print BIG "big";
e0a10278
JH
147print "# print failed: $!\n" unless $print;
148my $close = close BIG;
149print "# close failed: $!\n" unless $close;
fcbfa962 150unless ($print && $close) {
b948423f 151 if ($! =~/too large/i) {
d731b481 152 explain("writing past 2GB failed: process limits?");
b948423f 153 } elsif ($! =~ /quota/i) {
d731b481
JH
154 explain("filesystem quota limits?");
155 } else {
156 explain("error: $!");
fcbfa962
JH
157 }
158 bye();
159}
817e2dcb
JH
160
161@s = stat("big");
162
ea2b5ef6
JH
163print "# @s\n";
164
ae178db1 165unless ($s[7] == 5_000_000_003) {
d731b481 166 explain("kernel/fs not configured to use large files?");
ae178db1
JH
167 bye();
168}
169
05f8a9f5 170sub fail () {
64215065 171 print "not ";
05f8a9f5
JH
172 $fail++;
173}
174
326fd4b6
A
175sub offset ($$) {
176 my ($offset_will_be, $offset_want) = @_;
177 my $offset_is = eval $offset_will_be;
178 unless ($offset_is == $offset_want) {
179 print "# bad offset $offset_is, want $offset_want\n";
52ece81a 180 my ($offset_func) = ($offset_will_be =~ /^(\w+)/);
326fd4b6 181 if (unpack("L", pack("L", $offset_want)) == $offset_is) {
326fd4b6 182 print "# 32-bit wraparound suspected in $offset_func() since\n";
52ece81a 183 print "# $offset_want cast into 32 bits equals $offset_is.\n";
f06a04a3 184 } elsif ($offset_want - unpack("L", pack("L", $offset_want)) - 1
52ece81a 185 == $offset_is) {
f06a04a3
A
186 print "# 32-bit wraparound suspected in $offset_func() since\n";
187 printf "# %s - unpack('L', pack('L', %s)) - 1 equals %s.\n",
188 $offset_want,
189 $offset_want,
190 $offset_is;
191 }
326fd4b6
A
192 fail;
193 }
194}
195
77166d51 196print "1..17\n";
fcbfa962 197
52ece81a 198$fail = 0;
fcbfa962 199
64215065 200fail unless $s[7] == 5_000_000_003; # exercizes pp_stat
817e2dcb
JH
201print "ok 1\n";
202
64215065 203fail unless -s "big" == 5_000_000_003; # exercizes pp_ftsize
817e2dcb
JH
204print "ok 2\n";
205
77166d51
JH
206fail unless -e "big";
207print "ok 3\n";
208
209fail unless -f "big";
210print "ok 4\n";
211
ea2b5ef6 212open(BIG, "big") or do { warn "open failed: $!\n"; bye };
817e2dcb
JH
213binmode BIG;
214
77166d51
JH
215fail unless seek(BIG, 4_500_000_000, $SEEK_SET);
216print "ok 5\n";
817e2dcb 217
326fd4b6 218offset('tell(BIG)', 4_500_000_000);
77166d51 219print "ok 6\n";
817e2dcb 220
77166d51
JH
221fail unless seek(BIG, 1, $SEEK_CUR);
222print "ok 7\n";
817e2dcb 223
326fd4b6
A
224# If you get 205_032_705 from here it means that
225# your tell() is returning 32-bit values since (I32)4_500_000_001
226# is exactly 205_032_705.
227offset('tell(BIG)', 4_500_000_001);
77166d51 228print "ok 8\n";
817e2dcb 229
77166d51
JH
230fail unless seek(BIG, -1, $SEEK_CUR);
231print "ok 9\n";
817e2dcb 232
326fd4b6 233offset('tell(BIG)', 4_500_000_000);
77166d51 234print "ok 10\n";
817e2dcb 235
77166d51
JH
236fail unless seek(BIG, -3, $SEEK_END);
237print "ok 11\n";
817e2dcb 238
326fd4b6 239offset('tell(BIG)', 5_000_000_000);
77166d51 240print "ok 12\n";
817e2dcb
JH
241
242my $big;
243
05f8a9f5 244fail unless read(BIG, $big, 3) == 3;
77166d51 245print "ok 13\n";
817e2dcb 246
05f8a9f5 247fail unless $big eq "big";
77166d51
JH
248print "ok 14\n";
249
250# 705_032_704 = (I32)5_000_000_000
326fd4b6
A
251# See that we don't have "big" in the 705_... spot:
252# that would mean that we have a wraparound.
77166d51
JH
253fail unless seek(BIG, 705_032_704, $SEEK_SET);
254print "ok 15\n";
255
256my $zero;
257
258fail unless read(BIG, $zero, 3) == 3;
259print "ok 16\n";
260
261fail unless $zero eq "\0\0\0";
262print "ok 17\n";
817e2dcb 263
d731b481 264explain() if $fail;
05f8a9f5 265
77166d51 266bye(); # does the necessary cleanup
e9a694fc 267
290be4b1
JH
268END {
269 unlink "big"; # be paranoid about leaving 5 gig files lying around
270}
271
6da84e39 272# eof