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