Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: Dangerous diamonds!

by diotalevi (Canon)
on May 22, 2003 at 15:27 UTC ( [id://260108]=note: print w/replies, xml ) Need Help??


in reply to Dangerous diamonds!

This is a short scratch list of easily implementable ideas for defending against readline(*ARGV). The ultimate form would be a module which when loaded subsequently "fixes" everything else. I'm imagining it could be used like perl -MSafeARGV -ne '...'. This "fix" should have no effect any future fixing of this behaviour in the actual codebase.

Idea #0

die("Unsafe readline(*ARGV)") when readline(*ARGV) is detected:

$ perl -MO=Concise -e 'print <>' 7 <@> leave[t1] vKP/REFC ->(end) 1 <0> enter ->2 2 <;> nextstate(main 1 -e:1) v ->3 6 <@> print vK ->7 3 <0> pushmark s ->4 5 <1> readline[t1] lK/1 ->6 4 <$> gv(*ARGV) s ->5 *ARGV

Idea #1

Override readline() and pass the filenames to sysopen() instead. Or detect GvNAME for the passed in filehandle and die("Unsafe readline(*ARGV)") if *ARGV is detected.

package SafeReadline; require Exporter; @ISA = 'Exporter'; @EXPORT = 'readline'; sub import { my $pkg = shift; return unless @_; my $sym = shift; $pkg->export("CORE::GLOBAL", $sym, @_); } sub readline { ... }

Idea #2

Alter the optree so that to get the effect of overriding readline() without actually doing that. This would get around the nullifying effects of multiple readline() overriding modules. Ok, this is harder, would require some tuits, and leaves anything less than 5.8.0 out in the cold (B::Generate is only for 5.8.0 and above).


Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://260108]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (2)
As of 2024-04-26 03:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found