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.
8 # Don't bother if there are no quad offsets.
9 require Config; import Config;
10 if ($Config{lseeksize} < 8) {
11 print "1..0 # Skip: no 64-bit file offsets\n";
36 unless ($explained++) {
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.)
48 # Perl may still be able to support large files, once you have
49 # such a process, enough quota, and such a (file) system.
50 # It is just that the test failed now.
54 print "1..0 # Skip: @_\n" if @_;
57 print "# checking whether we have sparse files...\n";
60 if ($^O eq 'MSWin32' || $^O eq 'VMS') {
61 print "1..0 # Skip: no sparse files in $^O\n";
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') {
68 print "1..0 # Skip: no sparse files in $^0, unable to test large files\n";
72 # Then try to heuristically deduce whether we have sparse files.
74 # Let's not depend on Fcntl or any other extension.
76 my ($SEEK_SET, $SEEK_CUR, $SEEK_END) = (0, 1, 2);
78 # We'll start off by creating a one megabyte file which has
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...)
84 do { warn "open big1 failed: $!\n"; bye };
86 do { warn "binmode big1 failed: $!\n"; bye };
87 seek(BIG, 1_000_000, $SEEK_SET) or
88 do { warn "seek big1 failed: $!\n"; bye };
90 do { warn "print big1 failed: $!\n"; bye };
92 do { warn "close big1 failed: $!\n"; bye };
94 my @s1 = stat("big1");
99 do { warn "open big2 failed: $!\n"; bye };
101 do { warn "binmode big2 failed: $!\n"; bye };
102 seek(BIG, 2_000_000, $SEEK_SET) or
103 do { warn "seek big2 failed; $!\n"; bye };
105 do { warn "print big2 failed; $!\n"; bye };
107 do { warn "close big2 failed; $!\n"; bye };
109 my @s2 = stat("big2");
111 print "# s2 = @s2\n";
115 unless ($s1[7] == 1_000_003 && $s2[7] == 2_000_003 &&
116 $s1[11] == $s2[11] && $s1[12] == $s2[12]) {
117 print "1..0 # Skip: no sparse files?\n";
121 print "# we seem to have sparse files...\n";
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.
125 # This may fail by producing some signal; run in a subprocess first for safety
129 my $r = system '../perl', '-e', <<'EOF';
131 seek(BIG, 5_000_000_000, 0);
136 open(BIG, ">big") or do { warn "open failed: $!\n"; bye };
138 if ($r or not seek(BIG, 5_000_000_000, $SEEK_SET)) {
139 my $err = $r ? 'signal '.($r & 0x7f) : $!;
140 explain("seeking past 2GB failed: $err");
144 # Either the print or (more likely, thanks to buffering) the close will
145 # fail if there are are filesize limitations (process or fs).
146 my $print = print BIG "big";
147 print "# print failed: $!\n" unless $print;
148 my $close = close BIG;
149 print "# close failed: $!\n" unless $close;
150 unless ($print && $close) {
151 if ($! =~/too large/i) {
152 explain("writing past 2GB failed: process limits?");
153 } elsif ($! =~ /quota/i) {
154 explain("filesystem quota limits?");
156 explain("error: $!");
165 unless ($s[7] == 5_000_000_003) {
166 explain("kernel/fs not configured to use large files?");
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";
180 my ($offset_func) = ($offset_will_be =~ /^(\w+)/);
181 if (unpack("L", pack("L", $offset_want)) == $offset_is) {
182 print "# 32-bit wraparound suspected in $offset_func() since\n";
183 print "# $offset_want cast into 32 bits equals $offset_is.\n";
184 } elsif ($offset_want - unpack("L", pack("L", $offset_want)) - 1
186 print "# 32-bit wraparound suspected in $offset_func() since\n";
187 printf "# %s - unpack('L', pack('L', %s)) - 1 equals %s.\n",
200 fail unless $s[7] == 5_000_000_003; # exercizes pp_stat
203 fail unless -s "big" == 5_000_000_003; # exercizes pp_ftsize
206 fail unless -e "big";
209 fail unless -f "big";
212 open(BIG, "big") or do { warn "open failed: $!\n"; bye };
215 fail unless seek(BIG, 4_500_000_000, $SEEK_SET);
218 offset('tell(BIG)', 4_500_000_000);
221 fail unless seek(BIG, 1, $SEEK_CUR);
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.
227 offset('tell(BIG)', 4_500_000_001);
230 fail unless seek(BIG, -1, $SEEK_CUR);
233 offset('tell(BIG)', 4_500_000_000);
236 fail unless seek(BIG, -3, $SEEK_END);
239 offset('tell(BIG)', 5_000_000_000);
244 fail unless read(BIG, $big, 3) == 3;
247 fail unless $big eq "big";
250 # 705_032_704 = (I32)5_000_000_000
251 # See that we don't have "big" in the 705_... spot:
252 # that would mean that we have a wraparound.
253 fail unless seek(BIG, 705_032_704, $SEEK_SET);
258 fail unless read(BIG, $zero, 3) == 3;
261 fail unless $zero eq "\0\0\0";
266 bye(); # does the necessary cleanup
269 unlink "big"; # be paranoid about leaving 5 gig files lying around