/usr/share/perl5/Text/MicroMason/Safe.pm is in libtext-micromason-perl 2.21-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 | package Text::MicroMason::Safe;
use strict;
use Carp;
use Safe;
######################################################################
sub eval_sub {
my ( $self, $code ) = @_;
my $safe = $self->safe_compartment();
local $Text::MicroMason::Commands::m = $self->safe_facade();
$safe->share_from( 'Text::MicroMason::Commands' => [ '$m' ] );
$safe->reval( "my \$m = \$m; $code", 1 )
}
# $self_or_safe = $mason->safe_compartment();
sub safe_compartment {
my $self = shift;
if ( ! $self->{safe} or $self->{safe} eq '1' ) {
return Safe->new()
} elsif ( UNIVERSAL::can( $self->{safe}, 'reval' ) ) {
return $self->{safe}
} else {
$self->croak_msg("Inappropriate Safe compartment:", $self->{safe});
}
}
sub safe_facade {
my $self = shift;
our @CARP_NOT = qw(Text::MicroMason::Base);
carp("* WARNING: safe_methods is deprecated; please see the pod")
if $self->{safe_methods};
Text::MicroMason::Safe::Facade->new(
map {
my $method = $_;
$_ => sub { $self->$method( @_ ) }
}
map { ! $_ ? () : ref($_) ? @$_ : split ' ' } $self->{safe_methods}
)
}
######################################################################
package Text::MicroMason::Safe::Facade;
sub new {
my $class = shift;
bless { @_ }, $class
}
sub facade_method {
my ( $self, $method, @args ) = @_;
my $sub = $self->{$method}
or die "Can't call \$m->$method() in this compartment";
&$sub( @args )
}
sub AUTOLOAD {
my $sym = $Text::MicroMason::Safe::Facade::AUTOLOAD;
my ($package, $func) = ($sym =~ /(.*)::([^:]+)$/);
return unless ( $func =~ /^[a-z\_]+$/ );
no strict;
my $sub = *{$func} = sub { (shift)->facade_method($func, @_ ) };
goto &$sub;
}
######################################################################
1;
__END__
######################################################################
=head1 NAME
Text::MicroMason::Safe - Compile all Templates in a Safe Compartment
=head1 SYNOPSIS
Instead of using this class directly, pass its name to be mixed in:
use Text::MicroMason;
my $mason = Text::MicroMason->new( -Safe );
Use the standard compile and execute methods to parse and evaluate templates:
print $mason->compile( text=>$template )->( @%args );
print $mason->execute( text=>$template, @args );
Safe usage restricts templates from accessing your files or data:
print $mason->execute( text=>"<% qx! cat /etc/passwd ! %>" ); # dies
print $mason->execute( text=>"The time is <% time() %>." ); # dies
=head1 DESCRIPTION
This package adds support for Safe compartments to MicroMason, allowing
you to restrict the operations that a template can perform.
By default, these safe calls prevent the code in a template from performing
any system activity or accessing any of your other Perl code. Violations
may result in either compile-time or run-time errors, so make sure you
are using an eval block or the CatchErrors trait to catch exceptions.
use Text::MicroMason;
my $mason = Text::MicroMason->new( -Safe );
$result = eval { $mason->execute( text => $template ) };
B<Caution:> Although this appears to provide a significant amount of security for untrusted templates, please take this with a grain of salt. A bug in either this module or in the core Safe module could allow a clever attacker to defeat the protection. At least one bug in the Safe module has been found and fixed in years past, and there could be others.
=head2 Supported Attributes
=over 4
=item safe
Optional reference to a Safe compartment. If you do not provide this, one
is generated for you.
To enable some operations or share variables or functions with the template
code, create a Safe compartment and configure it before passing it in as
the value of the "safe" attribute:
$safe = Safe->new();
$safe->permit('time');
$safe->share('$foo');
$mason = Text::MicroMason->new( -Safe, safe => $safe );
$result = eval { $mason->execute( text => $template ) };
=item safe_methods
B<IMPORTANT NOTE:> The C<safe_methods> parameter is deprecated and will
be removed in future versions of Text::MicroMason (unless a Safe and
future-proof implementation can be found). If you use this parameter,
you will receive a warning via carp:
"* WARNING: safe_methods is deprecated; please see the pod"
This parameter works correctly with sufficiently old versions of the
Safe module (prior to the release of perl 5.12.1), but modern versions
of Safe make it impossible for a Safe compartment to run any code
outside the compartment. Even with the object shared within the Safe
compartment, there is currently no known way to call methods on it
without defining the whole class within the compartment (which isn't
safe).
If anyone has an appropriately safe solution that will allow
C<safe_methods> to work, please submit a patch to the module maintainer.
Also see t/32-safe.t for tests related to C<safe_methods> that are
currently being skipped.
The following pod is provided for legacy purposes only. It is
strongly recommended that you do not use this method. It is no longer
allowed to call methods from within a "Safe" template, because it
isn't actually safe.
A space-separated string of methods names to be supported by the Safe::Facade.
To control which Mason methods are available within the template, pass a
C<safe_methods> argument to new() followed by the method names in a
space-separated string.
For example, to allow templates to include other templates, using $m->execute
or the "<& file &>" include syntax, you would need to allow the execute
method. We'll also load the TemplateDir mixin with strict_root on to prevent
inclusion of templates from outside the current directory.
# safe_methods is DEPRECATED, please see above
$mason = Text::MicroMason->new( -Safe, safe_methods => 'execute',
-TemplateDir, strict_root => 1 );
If you're combining this with the Filters mixin, you'll also need to allow
calls to the filter method; to allow multiple methods, join their names
with spaces:
# safe_methods is DEPRECATED, please see above
$mason = Text::MicroMason->new( -Safe, safe_methods => 'execute filter',
-TemplateDir, strict_root => 1,
-Filters );
=back
=head2 Private Methods
=over 4
=item eval_sub()
Instead of the eval() used by the base class, this calls reval() on a Safe
compartment.
=item safe_compartment()
Returns the Safe compartment passed by the user or generates a new one.
=item safe_facade()
Generates an instance of the Safe::Facade equipped with only the methods
listed in the safe_methods attribute.
=back
=head2 Private Safe::Facade class
Code compiled in a Safe compartment only has access to a limited version of
the template compiler in the $m variable, and can not make changes to the
attributes of the real MicroMason object. This limited object is an instance
of the Text::MicroMason::Safe::Facade class and can only perform certain
pre-defined methods.
=over 4
=item new()
Creates a new hash-based instance mapping method names to subroutine
references.
=item facade_method()
Calls a named method by looking up the corresponding subroutine and calling
it.
=item AUTOLOAD()
Generates wrapper methods that call the facade_method() for any lowercase
method name.
=back
=head1 SEE ALSO
For an overview of this templating framework, see L<Text::MicroMason>.
This is a mixin class intended for use with L<Text::MicroMason::Base>.
For distribution, installation, support, copyright and license
information, see L<Text::MicroMason::Docs::ReadMe>.
=cut
|