Hi,
In Inline.pm we have the following subroutine which gets called whenever the Config option 'UNTAINT' is set:
#=====================================================================
+=========
# Blindly untaint tainted fields in Inline object.
#=====================================================================
+=========
sub env_untaint {
my $o = shift;
for (keys %ENV) {
($ENV{$_}) = $ENV{$_} =~ /(.*)/;
}
my $delim = $^O eq 'MSWin32' ? ';' : ':';
$ENV{PATH} = join $delim, grep {not /^\./ and -d $_ and
not ((stat($_))[2] & 0022)
} split $delim, $ENV{PATH};
map {($_) = /(.*)/} @INC;
}
And that works quite well on linux, untainting $ENV{PATH} and leaving it intact. But on windows it clobbers $ENV{PATH}, leaving it empty.
The culprit is the
not ((stat($_))[2] & 0022) condition. On linux, where
stat($_))[2] is 16877 for all of the folders in my path,
((stat($_))[2] & 0022) is false. But on windows
stat($_))[2] is 16895 for all of the folders in my path, and
((stat($_))[2] & 0022) is true.
If I simply remove that condition for windows, everything is fine. But is that the correct thing to do ? Why has that condition been put in there, and what's the correct windows form it should take ?
Cheers,
Rob
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.