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