Let's not leak.
[p5sagit/p5-mst-13.2.git] / ext / POSIX / t / taint.t
CommitLineData
0e247040 1#!./perl -Tw
2
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = '../lib';
6 require Config; import Config;
7 if ($^O ne 'VMS' and $Config{'extensions'} !~ /\bPOSIX\b/) {
8 print "1..0\n";
9 exit 0;
10 }
11}
12
64087619 13use Test::More tests => 7;
0e247040 14use Scalar::Util qw/tainted/;
0e247040 15
16
17use POSIX qw(fcntl_h open read mkfifo);
18use strict ;
19
20$| = 1;
21
22my $buffer;
23my @buffer;
24my $testfd;
25
26# Sources of taint:
27# The empty tainted value, for tainting strings
28
29my $TAINT = substr($^X, 0, 0);
30
31eval { mkfifo($TAINT. "TEST", 0) };
64087619 32like($@, qr/^Insecure dependency/, 'mkfifo with tainted data');
0e247040 33
34eval { $testfd = open($TAINT. "TEST", O_WRONLY, 0) };
64087619 35like($@, qr/^Insecure dependency/, 'open with tainted data');
0e247040 36
37eval { $testfd = open("TEST", O_RDONLY, 0) };
64087619 38is($@, "", 'open with untainted data');
0e247040 39
40read($testfd, $buffer, 2) if $testfd > 2;
41is( $buffer, "#!", ' read' );
42ok(tainted($buffer), ' scalar tainted');
0e247040 43
64087619 44TODO: {
45 local $TODO = "POSIX::read won't taint an array element";
46
47 read($testfd, $buffer[1], 2) if $testfd > 2;
48
49 is( $buffer[1], "./", ' read' );
50 ok(tainted($buffer[1]), ' array element tainted');
51}