This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Try to fix largefileness so that it "works" without a quad IV.
[perl5.git] / t / lib / syslfs.t
1 # NOTE: this file tests how large files (>2GB) work with raw system IO.
2 # open(), tell(), seek(), print(), read() are tested in t/op/lfs.t.
3 # If you modify/add tests here, remember to update also t/op/lfs.t.
4
5 BEGIN {
6         chdir 't' if -d 't';
7         unshift @INC, '../lib';
8         require Config; import Config;
9         # Don't bother if there are no quad offsets.
10         if ($Config{lseeksize} < 8) {
11                 print "1..0\n# no 64-bit file offsets\n";
12                 exit(0);
13         }
14         require Fcntl; import Fcntl;
15 }
16
17 sub bye {
18     close(BIG);
19     unlink "big";
20     exit(0);
21 }
22
23 sub explain {
24     print <<EOM;
25 #
26 # If the lfs (large file support: large meaning larger than two gigabytes)
27 # tests are skipped or fail, it may mean either that your process
28 # (or process group) is not allowed to write large files (resource
29 # limits) or that the file system you are running the tests on doesn't
30 # let your user/group have large files (quota) or the filesystem simply
31 # doesn't support large files.  You may even need to reconfigure your kernel.
32 # (This is all very operating system and site-dependent.)
33 #
34 # Perl may still be able to support large files, once you have
35 # such a process, enough quota, and such a (file) system.
36 #
37 EOM
38 }
39
40 print "# checking whether we have sparse files...\n";
41
42 # Known have-nots.
43 if ($^O eq 'win32' || $^O eq 'vms') {
44     print "1..0\n# no sparse files (because this is $^O) \n";
45     bye();
46 }
47
48 # Known haves that have problems running this test
49 # (for example because they do not support sparse files, like UNICOS)
50 if ($^O eq 'unicos') {
51     print "1..0\n# large files known to work but unable to test them here ($^O)\n";
52     bye();
53 }
54
55 # Then try heuristically to deduce whether we have sparse files.
56
57 # We'll start off by creating a one megabyte file which has
58 # only three "true" bytes.  If we have sparseness, we should
59 # consume less blocks than one megabyte (assuming nobody has
60 # one megabyte blocks...)
61
62 sysopen(BIG, "big", O_WRONLY|O_CREAT|O_TRUNC) or
63         do { warn "sysopen failed: $!\n"; bye };
64 sysseek(BIG, 1_000_000, SEEK_SET);
65 syswrite(BIG, "big");
66 close(BIG);
67
68 my @s;
69
70 @s = stat("big");
71
72 print "# @s\n";
73
74 my $BLOCKSIZE = $s[11] || 512;
75
76 unless (@s == 13 &&
77         $s[7] == 1_000_003 &&
78         defined $s[12] &&
79         $BLOCKSIZE * $s[12] < 1_000_003) {
80     print "1..0\n# no sparse files?\n";
81     bye();
82 }
83
84 print "# we seem to have sparse files...\n";
85
86 # By now we better be sure that we do have sparse files:
87 # if we are not, the following will hog 5 gigabytes of disk.  Ooops.
88
89 $ENV{LC_ALL} = "C";
90
91 sysopen(BIG, "big", O_WRONLY|O_CREAT|O_TRUNC) or
92         do { warn "sysopen 'big' failed: $!\n"; bye };
93 my $sysseek = sysseek(BIG, 5_000_000_000, SEEK_SET);
94 unless (defined $sysseek && $sysseek == 5_000_000_000) {
95     print "1..0\n# seeking past 2GB failed: $! (sysseek returned ",
96           defined $sysseek ? $sysseek : 'undef', ")\n";
97     explain();
98     bye();
99 }
100
101 # The syswrite will fail if there are are filesize limitations (process or fs).
102 my $syswrite = syswrite(BIG, "big");
103 print "# syswrite failed: $! (syswrite returned ",
104       defined $syswrite ? $syswrite : 'undef', ")\n"
105     unless defined $syswrite && $syswrite == 3;
106 my $close     = close BIG;
107 print "# close failed: $!\n" unless $close;
108 unless($syswrite && $close) {
109     if ($! =~/too large/i) {
110         print "1..0\n# writing past 2GB failed: process limits?\n";
111     } elsif ($! =~ /quota/i) {
112         print "1..0\n# filesystem quota limits?\n";
113     }
114     explain();
115     bye();
116 }
117
118 @s = stat("big");
119
120 print "# @s\n";
121
122 unless ($s[7] == 5_000_000_003) {
123     print "1..0\n# not configured to use large files?\n";
124     explain();
125     bye();
126 }
127
128 sub fail () {
129     print "not ";
130     $fail++;
131 }
132
133 print "1..17\n";
134
135 my $fail = 0;
136
137 fail unless $s[7] == 5_000_000_003;     # exercizes pp_stat
138 print "ok 1\n";
139
140 fail unless -s "big" == 5_000_000_003;  # exercizes pp_ftsize
141 print "ok 2\n";
142
143 fail unless -e "big";
144 print "ok 3\n";
145
146 fail unless -f "big";
147 print "ok 4\n";
148
149 sysopen(BIG, "big", O_RDONLY) or do { warn "sysopen failed: $!\n"; bye };
150
151 fail unless sysseek(BIG, 4_500_000_000, SEEK_SET) == 4_500_000_000;
152 print "ok 5\n";
153
154 fail unless sysseek(BIG, 0, SEEK_CUR) == 4_500_000_000;
155 print "ok 6\n";
156
157 fail unless sysseek(BIG, 1, SEEK_CUR) == 4_500_000_001;
158 print "ok 7\n";
159
160 fail unless sysseek(BIG, 0, SEEK_CUR) == 4_500_000_001;
161 print "ok 8\n";
162
163 fail unless sysseek(BIG, -1, SEEK_CUR) == 4_500_000_000;
164 print "ok 9\n";
165
166 fail unless sysseek(BIG, 0, SEEK_CUR) == 4_500_000_000;
167 print "ok 10\n";
168
169 fail unless sysseek(BIG, -3, SEEK_END) == 5_000_000_000;
170 print "ok 11\n";
171
172 fail unless sysseek(BIG, 0, SEEK_CUR) == 5_000_000_000;
173 print "ok 12\n";
174
175 my $big;
176
177 fail unless sysread(BIG, $big, 3) == 3;
178 print "ok 13\n";
179
180 fail unless $big eq "big";
181 print "ok 14\n";
182
183 # 705_032_704 = (I32)5_000_000_000
184 fail unless seek(BIG, 705_032_704, $SEEK_SET);
185 print "ok 15\n";
186
187 my $zero;
188
189 fail unless read(BIG, $zero, 3) == 3;
190 print "ok 16\n";
191
192 fail unless $zero eq "\0\0\0";
193 print "ok 17\n";
194
195 explain if $fail;
196
197 bye(); # does the necessary cleanup
198
199 END {
200    unlink "big"; # be paranoid about leaving 5 gig files lying around
201 }
202
203 # eof