home *** CD-ROM | disk | FTP | other *** search
/ isnet Internet / Isnet Internet CD.iso / prog / hiz / 09 / 09.exe / adynware.exe / perl / lib / Opcode.pm < prev    next >
Encoding:
Perl POD Document  |  1999-12-28  |  15.1 KB  |  566 lines

  1. package Opcode;
  2.  
  3. require 5.002;
  4.  
  5. use vars qw($VERSION $XS_VERSION @ISA @EXPORT_OK);
  6.  
  7. $VERSION = "1.04";
  8. $XS_VERSION = "1.02";
  9.  
  10. use strict;
  11. use Carp;
  12. use Exporter ();
  13. use DynaLoader ();
  14. @ISA = qw(Exporter DynaLoader);
  15.  
  16. BEGIN {
  17.     @EXPORT_OK = qw(
  18.     opset ops_to_opset
  19.     opset_to_ops opset_to_hex invert_opset
  20.     empty_opset full_opset
  21.     opdesc opcodes opmask define_optag
  22.     opmask_add verify_opset opdump
  23.     );
  24. }
  25.  
  26. sub opset (;@);
  27. sub opset_to_hex ($);
  28. sub opdump (;$);
  29. use subs @EXPORT_OK;
  30.  
  31. bootstrap Opcode $XS_VERSION;
  32.  
  33. _init_optags();
  34.  
  35. sub ops_to_opset { opset @_ }    # alias for old name
  36.  
  37. sub opset_to_hex ($) {
  38.     return "(invalid opset)" unless verify_opset($_[0]);
  39.     unpack("h*",$_[0]);
  40. }
  41.  
  42. sub opdump (;$) {
  43.     my $pat = shift;
  44.     foreach(opset_to_ops(full_opset)) {
  45.         my $op = sprintf "  %12s  %s\n", $_, opdesc($_);
  46.         next if defined $pat and $op !~ m/$pat/i;
  47.         print $op;
  48.     }
  49. }
  50.  
  51.  
  52.  
  53. sub _init_optags {
  54.     my(%all, %seen);
  55.     @all{opset_to_ops(full_opset)} = (); # keys only
  56.  
  57.     local($_);
  58.     local($/) = "\n=cut"; # skip to optags definition section
  59.     <DATA>;
  60.     $/ = "\n=";        # now read in 'pod section' chunks
  61.     while(<DATA>) {
  62.     next unless m/^item\s+(:\w+)/;
  63.     my $tag = $1;
  64.  
  65.     my @lines = grep { m/^\s/    } split(/\n/);
  66.     foreach (@lines) { s/--.*//  } # delete comments
  67.     my @ops   = map  { split ' ' } @lines; # get op words
  68.  
  69.     foreach(@ops) {
  70.         warn "$tag - $_ already tagged in $seen{$_}\n" if $seen{$_};
  71.         $seen{$_} = $tag;
  72.         delete $all{$_};
  73.     }
  74.     define_optag($tag, opset(@ops));
  75.     }
  76.     close(DATA);
  77.     warn "Untagged opnames: ".join(' ',keys %all)."\n" if %all;
  78. }
  79.  
  80.  
  81. 1;
  82.  
  83. __DATA__
  84.  
  85. =head1 NAME
  86.  
  87. Opcode - Disable named opcodes when compiling perl code
  88.  
  89. =head1 SYNOPSIS
  90.  
  91.   use Opcode;
  92.  
  93.  
  94. =head1 DESCRIPTION
  95.  
  96. Perl code is always compiled into an internal format before execution.
  97.  
  98. Evaluating perl code (e.g. via "eval" or "do 'file'") causes
  99. the code to be compiled into an internal format and then,
  100. provided there was no error in the compilation, executed.
  101. The internal format is based on many distinct I<opcodes>.
  102.  
  103. By default no opmask is in effect and any code can be compiled.
  104.  
  105. The Opcode module allow you to define an I<operator mask> to be in
  106. effect when perl I<next> compiles any code.  Attempting to compile code
  107. which contains a masked opcode will cause the compilation to fail
  108. with an error. The code will not be executed.
  109.  
  110. =head1 NOTE
  111.  
  112. The Opcode module is not usually used directly. See the ops pragma and
  113. Safe modules for more typical uses.
  114.  
  115. =head1 WARNING
  116.  
  117. The authors make B<no warranty>, implied or otherwise, about the
  118. suitability of this software for safety or security purposes.
  119.  
  120. The authors shall not in any case be liable for special, incidental,
  121. consequential, indirect or other similar damages arising from the use
  122. of this software.
  123.  
  124. Your mileage will vary. If in any doubt B<do not use it>.
  125.  
  126.  
  127. =head1 Operator Names and Operator Lists
  128.  
  129. The canonical list of operator names is the contents of the array
  130. op_name defined and initialised in file F<opcode.h> of the Perl
  131. source distribution (and installed into the perl library).
  132.  
  133. Each operator has both a terse name (its opname) and a more verbose or
  134. recognisable descriptive name. The opdesc function can be used to
  135. return a list of descriptions for a list of operators.
  136.  
  137. Many of the functions and methods listed below take a list of
  138. operators as parameters. Most operator lists can be made up of several
  139. types of element. Each element can be one of
  140.  
  141. =over 8
  142.  
  143. =item an operator name (opname)
  144.  
  145. Operator names are typically small lowercase words like enterloop,
  146. leaveloop, last, next, redo etc. Sometimes they are rather cryptic
  147. like gv2cv, i_ncmp and ftsvtx.
  148.  
  149. =item an operator tag name (optag)
  150.  
  151. Operator tags can be used to refer to groups (or sets) of operators.
  152. Tag names always being with a colon. The Opcode module defines several
  153. optags and the user can define others using the define_optag function.
  154.  
  155. =item a negated opname or optag
  156.  
  157. An opname or optag can be prefixed with an exclamation mark, e.g., !mkdir.
  158. Negating an opname or optag means remove the corresponding ops from the
  159. accumulated set of ops at that point.
  160.  
  161. =item an operator set (opset)
  162.  
  163. An I<opset> as a binary string of approximately 43 bytes which holds a
  164. set or zero or more operators.
  165.  
  166. The opset and opset_to_ops functions can be used to convert from
  167. a list of operators to an opset and I<vice versa>.
  168.  
  169. Wherever a list of operators can be given you can use one or more opsets.
  170. See also Manipulating Opsets below.
  171.  
  172. =back
  173.  
  174.  
  175. =head1 Opcode Functions
  176.  
  177. The Opcode package contains functions for manipulating operator names
  178. tags and sets. All are available for export by the package.
  179.  
  180. =over 8
  181.  
  182. =item opcodes
  183.  
  184. In a scalar context opcodes returns the number of opcodes in this
  185. version of perl (around 340 for perl5.002).
  186.  
  187. In a list context it returns a list of all the operator names.
  188. (Not yet implemented, use @names = opset_to_ops(full_opset).)
  189.  
  190. =item opset (OP, ...)
  191.  
  192. Returns an opset containing the listed operators.
  193.  
  194. =item opset_to_ops (OPSET)
  195.  
  196. Returns a list of operator names corresponding to those operators in
  197. the set.
  198.  
  199. =item opset_to_hex (OPSET)
  200.  
  201. Returns a string representation of an opset. Can be handy for debugging.
  202.  
  203. =item full_opset
  204.  
  205. Returns an opset which includes all operators.
  206.  
  207. =item empty_opset
  208.  
  209. Returns an opset which contains no operators.
  210.  
  211. =item invert_opset (OPSET)
  212.  
  213. Returns an opset which is the inverse set of the one supplied.
  214.  
  215. =item verify_opset (OPSET, ...)
  216.  
  217. Returns true if the supplied opset looks like a valid opset (is the
  218. right length etc) otherwise it returns false. If an optional second
  219. parameter is true then verify_opset will croak on an invalid opset
  220. instead of returning false.
  221.  
  222. Most of the other Opcode functions call verify_opset automatically
  223. and will croak if given an invalid opset.
  224.  
  225. =item define_optag (OPTAG, OPSET)
  226.  
  227. Define OPTAG as a symbolic name for OPSET. Optag names always start
  228. with a colon C<:>.
  229.  
  230. The optag name used must not be defined already (define_optag will
  231. croak if it is already defined). Optag names are global to the perl
  232. process and optag definitions cannot be altered or deleted once
  233. defined.
  234.  
  235. It is strongly recommended that applications using Opcode should use a
  236. leading capital letter on their tag names since lowercase names are
  237. reserved for use by the Opcode module. If using Opcode within a module
  238. you should prefix your tags names with the name of your module to
  239. ensure uniqueness and thus avoid clashes with other modules.
  240.  
  241. =item opmask_add (OPSET)
  242.  
  243. Adds the supplied opset to the current opmask. Note that there is
  244. currently I<no> mechanism for unmasking ops once they have been masked.
  245. This is intentional.
  246.  
  247. =item opmask
  248.  
  249. Returns an opset corresponding to the current opmask.
  250.  
  251. =item opdesc (OP, ...)
  252.  
  253. This takes a list of operator names and returns the corresponding list
  254. of operator descriptions.
  255.  
  256. =item opdump (PAT)
  257.  
  258. Dumps to STDOUT a two column list of op names and op descriptions.
  259. If an optional pattern is given then only lines which match the
  260. (case insensitive) pattern will be output.
  261.  
  262. It's designed to be used as a handy command line utility:
  263.  
  264.     perl -MOpcode=opdump -e opdump
  265.     perl -MOpcode=opdump -e 'opdump Eval'
  266.  
  267. =back
  268.  
  269. =head1 Manipulating Opsets
  270.  
  271. Opsets may be manipulated using the perl bit vector operators & (and), | (or),
  272. ^ (xor) and ~ (negate/invert).
  273.  
  274. However you should never rely on the numerical position of any opcode
  275. within the opset. In other words both sides of a bit vector operator
  276. should be opsets returned from Opcode functions.
  277.  
  278. Also, since the number of opcodes in your current version of perl might
  279. not be an exact multiple of eight, there may be unused bits in the last
  280. byte of an upset. This should not cause any problems (Opcode functions
  281. ignore those extra bits) but it does mean that using the ~ operator
  282. will typically not produce the same 'physical' opset 'string' as the
  283. invert_opset function.
  284.  
  285.  
  286. =head1 TO DO (maybe)
  287.  
  288.     $bool = opset_eq($opset1, $opset2)    true if opsets are logically eqiv
  289.  
  290.     $yes = opset_can($opset, @ops)    true if $opset has all @ops set
  291.  
  292.     @diff = opset_diff($opset1, $opset2) => ('foo', '!bar', ...)
  293.  
  294. =cut
  295.  
  296.  
  297. =head1 Predefined Opcode Tags
  298.  
  299. =over 5
  300.  
  301. =item :base_core
  302.  
  303.     null stub scalar pushmark wantarray const defined undef
  304.  
  305.     rv2sv sassign
  306.  
  307.     rv2av aassign aelem aelemfast aslice av2arylen
  308.  
  309.     rv2hv helem hslice each values keys exists delete
  310.  
  311.     preinc i_preinc predec i_predec postinc i_postinc postdec i_postdec
  312.     int hex oct abs pow multiply i_multiply divide i_divide
  313.     modulo i_modulo add i_add subtract i_subtract
  314.  
  315.     left_shift right_shift bit_and bit_xor bit_or negate i_negate
  316.     not complement
  317.  
  318.     lt i_lt gt i_gt le i_le ge i_ge eq i_eq ne i_ne ncmp i_ncmp
  319.     slt sgt sle sge seq sne scmp
  320.  
  321.     substr vec stringify study pos length index rindex ord chr
  322.  
  323.     ucfirst lcfirst uc lc quotemeta trans chop schop chomp schomp
  324.  
  325.     match split
  326.  
  327.     list lslice splice push pop shift unshift reverse
  328.  
  329.     cond_expr flip flop andassign orassign and or xor
  330.  
  331.     warn die lineseq nextstate unstack scope enter leave
  332.  
  333.     rv2cv anoncode prototype
  334.  
  335.     entersub leavesub return method -- XXX loops via recursion?
  336.  
  337.     leaveeval -- needed for Safe to operate, is safe without entereval
  338.  
  339. =item :base_mem
  340.  
  341. These memory related ops are not included in :base_core because they
  342. can easily be used to implement a resource attack (e.g., consume all
  343. available memory).
  344.  
  345.     concat repeat join range
  346.  
  347.     anonlist anonhash
  348.  
  349. Note that despite the existance of this optag a memory resource attack
  350. may still be possible using only :base_core ops.
  351.  
  352. Disabling these ops is a I<very> heavy handed way to attempt to prevent
  353. a memory resource attack. It's probable that a specific memory limit
  354. mechanism will be added to perl in the near future.
  355.  
  356. =item :base_loop
  357.  
  358. These loop ops are not included in :base_core because they can easily be
  359. used to implement a resource attack (e.g., consume all available CPU time).
  360.  
  361.     grepstart grepwhile
  362.     mapstart mapwhile
  363.     enteriter iter
  364.     enterloop leaveloop
  365.     last next redo
  366.     goto
  367.  
  368. =item :base_io
  369.  
  370. These ops enable I<filehandle> (rather than filename) based input and
  371. output. These are safe on the assumption that only pre-existing
  372. filehandles are available for use.  To create new filehandles other ops
  373. such as open would need to be enabled.
  374.  
  375.     readline rcatline getc read
  376.  
  377.     formline enterwrite leavewrite
  378.  
  379.     print sysread syswrite send recv
  380.  
  381.     eof tell seek sysseek
  382.  
  383.     readdir telldir seekdir rewinddir
  384.  
  385. =item :base_orig
  386.  
  387. These are a hotchpotch of opcodes still waiting to be considered
  388.  
  389.     gvsv gv gelem
  390.  
  391.     padsv padav padhv padany
  392.  
  393.     rv2gv refgen srefgen ref
  394.  
  395.     bless -- could be used to change ownership of objects (reblessing)
  396.  
  397.     pushre regcmaybe regcomp subst substcont
  398.  
  399.     sprintf prtf -- can core dump
  400.  
  401.     crypt
  402.  
  403.     tie untie
  404.  
  405.     dbmopen dbmclose
  406.     sselect select
  407.     pipe_op sockpair
  408.  
  409.     getppid getpgrp setpgrp getpriority setpriority localtime gmtime
  410.  
  411.     entertry leavetry -- can be used to 'hide' fatal errors
  412.  
  413. =item :base_math
  414.  
  415. These ops are not included in :base_core because of the risk of them being
  416. used to generate floating point exceptions (which would have to be caught
  417. using a $SIG{FPE} handler).
  418.  
  419.     atan2 sin cos exp log sqrt
  420.  
  421. These ops are not included in :base_core because they have an effect
  422. beyond the scope of the compartment.
  423.  
  424.     rand srand
  425.  
  426. =item :default
  427.  
  428. A handy tag name for a I<reasonable> default set of ops.  (The current ops
  429. allowed are unstable while development continues. It will change.)
  430.  
  431.     :base_core :base_mem :base_loop :base_io :base_orig
  432.  
  433. If safety matters to you (and why else would you be using the Opcode module?)
  434. then you should not rely on the definition of this, or indeed any other, optag!
  435.  
  436.  
  437. =item :filesys_read
  438.  
  439.     stat lstat readlink
  440.  
  441.     ftatime ftblk ftchr ftctime ftdir fteexec fteowned fteread
  442.     ftewrite ftfile ftis ftlink ftmtime ftpipe ftrexec ftrowned
  443.     ftrread ftsgid ftsize ftsock ftsuid fttty ftzero ftrwrite ftsvtx
  444.  
  445.     fttext ftbinary
  446.  
  447.     fileno
  448.  
  449. =item :sys_db
  450.  
  451.     ghbyname ghbyaddr ghostent shostent ehostent      -- hosts
  452.     gnbyname gnbyaddr gnetent snetent enetent         -- networks
  453.     gpbyname gpbynumber gprotoent sprotoent eprotoent -- protocols
  454.     gsbyname gsbyport gservent sservent eservent      -- services
  455.  
  456.     gpwnam gpwuid gpwent spwent epwent getlogin       -- users
  457.     ggrnam ggrgid ggrent sgrent egrent                -- groups
  458.  
  459. =item :browse
  460.  
  461. A handy tag name for a I<reasonable> default set of ops beyond the
  462. :default optag.  Like :default (and indeed all the other optags) its
  463. current definition is unstable while development continues. It will change.
  464.  
  465. The :browse tag represents the next step beyond :default. It it a
  466. superset of the :default ops and adds :filesys_read the :sys_db.
  467. The intent being that scripts can access more (possibly sensitive)
  468. information about your system but not be able to change it.
  469.  
  470.     :default :filesys_read :sys_db
  471.  
  472. =item :filesys_open
  473.  
  474.     sysopen open close
  475.     umask binmode
  476.  
  477.     open_dir closedir -- other dir ops are in :base_io
  478.  
  479. =item :filesys_write
  480.  
  481.     link unlink rename symlink truncate
  482.  
  483.     mkdir rmdir
  484.  
  485.     utime chmod chown
  486.  
  487.     fcntl -- not strictly filesys related, but possibly as dangerous?
  488.  
  489. =item :subprocess
  490.  
  491.     backtick system
  492.  
  493.     fork
  494.  
  495.     wait waitpid
  496.  
  497.     glob -- access to Cshell via <`rm *`>
  498.  
  499. =item :ownprocess
  500.  
  501.     exec exit kill
  502.  
  503.     time tms -- could be used for timing attacks (paranoid?)
  504.  
  505. =item :others
  506.  
  507. This tag holds groups of assorted specialist opcodes that don't warrant
  508. having optags defined for them.
  509.  
  510. SystemV Interprocess Communications:
  511.  
  512.     msgctl msgget msgrcv msgsnd
  513.  
  514.     semctl semget semop
  515.  
  516.     shmctl shmget shmread shmwrite
  517.  
  518. =item :still_to_be_decided
  519.  
  520.     chdir
  521.     flock ioctl
  522.  
  523.     socket getpeername ssockopt
  524.     bind connect listen accept shutdown gsockopt getsockname
  525.  
  526.     sleep alarm -- changes global timer state and signal handling
  527.     sort -- assorted problems including core dumps
  528.     tied -- can be used to access object implementing a tie
  529.     pack unpack -- can be used to create/use memory pointers
  530.  
  531.     entereval -- can be used to hide code from initial compile
  532.     require dofile 
  533.  
  534.     caller -- get info about calling environment and args
  535.  
  536.     reset
  537.  
  538.     dbstate -- perl -d version of nextstate(ment) opcode
  539.  
  540. =item :dangerous
  541.  
  542. This tag is simply a bucket for opcodes that are unlikely to be used via
  543. a tag name but need to be tagged for completness and documentation.
  544.  
  545.     syscall dump chroot
  546.  
  547.  
  548. =back
  549.  
  550. =head1 SEE ALSO
  551.  
  552. ops(3) -- perl pragma interface to Opcode module.
  553.  
  554. Safe(3) -- Opcode and namespace limited execution compartments
  555.  
  556. =head1 AUTHORS
  557.  
  558. Originally designed and implemented by Malcolm Beattie,
  559. mbeattie@sable.ox.ac.uk as part of Safe version 1.
  560.  
  561. Split out from Safe module version 1, named opcode tags and other
  562. changes added by Tim Bunce E<lt>F<Tim.Bunce@ig.co.uk>E<gt>.
  563.  
  564. =cut
  565.  
  566.