home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 December / PCWorld_2000-12_cd.bin / Komunikace / Comanche / comanche.exe / lib / tcl8.0 / safe.tcl < prev    next >
Text File  |  1999-02-24  |  27KB  |  888 lines

  1. # safe.tcl --
  2. #
  3. # This file provide a safe loading/sourcing mechanism for safe interpreters.
  4. # It implements a virtual path mecanism to hide the real pathnames from the
  5. # slave. It runs in a master interpreter and sets up data structure and
  6. # aliases that will be invoked when used from a slave interpreter.
  7. # See the safe.n man page for details.
  8. #
  9. # Copyright (c) 1996-1997 Sun Microsystems, Inc.
  10. #
  11. # See the file "license.terms" for information on usage and redistribution
  12. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  13. #
  14. # RCS: @(#) $Id: safe.tcl,v 1.4 1998/11/11 02:39:31 welch Exp $
  15.  
  16. #
  17. # The implementation is based on namespaces. These naming conventions
  18. # are followed:
  19. # Private procs starts with uppercase.
  20. # Public  procs are exported and starts with lowercase
  21. #
  22.  
  23. # Needed utilities package
  24. package require opt 0.2;
  25.  
  26. # Create the safe namespace
  27. namespace eval ::safe {
  28.  
  29.     # Exported API:
  30.     namespace export interpCreate interpInit interpConfigure interpDelete \
  31.         interpAddToAccessPath interpFindInAccessPath \
  32.         setLogCmd ;
  33.  
  34.     ####
  35.     #
  36.     # Setup the arguments parsing
  37.     #
  38.     ####
  39.  
  40.     # Share the descriptions
  41.     set temp [::tcl::OptKeyRegister {
  42.     {-accessPath -list {} "access path for the slave"}
  43.     {-noStatics "prevent loading of statically linked pkgs"}
  44.     {-statics true "loading of statically linked pkgs"}
  45.     {-nestedLoadOk "allow nested loading"}
  46.     {-nested false "nested loading"}
  47.     {-deleteHook -script {} "delete hook"}
  48.     }]
  49.  
  50.     # create case (slave is optional)
  51.     ::tcl::OptKeyRegister {
  52.     {?slave? -name {} "name of the slave (optional)"}
  53.     } ::safe::interpCreate ;
  54.     # adding the flags sub programs to the command program
  55.     # (relying on Opt's internal implementation details)
  56.     lappend ::tcl::OptDesc(::safe::interpCreate) $::tcl::OptDesc($temp);
  57.  
  58.     # init and configure (slave is needed)
  59.     ::tcl::OptKeyRegister {
  60.     {slave -name {} "name of the slave"}
  61.     } ::safe::interpIC;
  62.     # adding the flags sub programs to the command program
  63.     # (relying on Opt's internal implementation details)
  64.     lappend ::tcl::OptDesc(::safe::interpIC) $::tcl::OptDesc($temp);
  65.     # temp not needed anymore
  66.     ::tcl::OptKeyDelete $temp;
  67.  
  68.  
  69.     # Helper function to resolve the dual way of specifying staticsok
  70.     # (either by -noStatics or -statics 0)
  71.     proc InterpStatics {} {
  72.     foreach v {Args statics noStatics} {
  73.         upvar $v $v
  74.     }
  75.     set flag [::tcl::OptProcArgGiven -noStatics];
  76.     if {$flag && ($noStatics == $statics) 
  77.               && ([::tcl::OptProcArgGiven -statics])} {
  78.         return -code error\
  79.             "conflicting values given for -statics and -noStatics";
  80.     }
  81.     if {$flag} {
  82.         return [expr {!$noStatics}];
  83.     } else {
  84.         return $statics
  85.     }
  86.     }
  87.  
  88.     # Helper function to resolve the dual way of specifying nested loading
  89.     # (either by -nestedLoadOk or -nested 1)
  90.     proc InterpNested {} {
  91.     foreach v {Args nested nestedLoadOk} {
  92.         upvar $v $v
  93.     }
  94.     set flag [::tcl::OptProcArgGiven -nestedLoadOk];
  95.     # note that the test here is the opposite of the "InterpStatics"
  96.     # one (it is not -noNested... because of the wanted default value)
  97.     if {$flag && ($nestedLoadOk != $nested) 
  98.               && ([::tcl::OptProcArgGiven -nested])} {
  99.         return -code error\
  100.             "conflicting values given for -nested and -nestedLoadOk";
  101.     }
  102.     if {$flag} {
  103.         # another difference with "InterpStatics"
  104.         return $nestedLoadOk
  105.     } else {
  106.         return $nested
  107.     }
  108.     }
  109.  
  110.     ####
  111.     #
  112.     #  API entry points that needs argument parsing :
  113.     #
  114.     ####
  115.  
  116.  
  117.     # Interface/entry point function and front end for "Create"
  118.     proc interpCreate {args} {
  119.     set Args [::tcl::OptKeyParse ::safe::interpCreate $args]
  120.     InterpCreate $slave $accessPath \
  121.         [InterpStatics] [InterpNested] $deleteHook;
  122.     }
  123.  
  124.     proc interpInit {args} {
  125.     set Args [::tcl::OptKeyParse ::safe::interpIC $args]
  126.     if {![::interp exists $slave]} {
  127.         return -code error \
  128.             "\"$slave\" is not an interpreter";
  129.     }
  130.     InterpInit $slave $accessPath \
  131.         [InterpStatics] [InterpNested] $deleteHook;
  132.     }
  133.  
  134.     proc CheckInterp {slave} {
  135.     if {![IsInterp $slave]} {
  136.         return -code error \
  137.             "\"$slave\" is not an interpreter managed by ::safe::" ;
  138.     }
  139.     }
  140.  
  141.     # Interface/entry point function and front end for "Configure"
  142.     # This code is awfully pedestrian because it would need
  143.     # more coupling and support between the way we store the
  144.     # configuration values in safe::interp's and the Opt package
  145.     # Obviously we would like an OptConfigure
  146.     # to avoid duplicating all this code everywhere. -> TODO
  147.     # (the app should share or access easily the program/value
  148.     #  stored by opt)
  149.     # This is even more complicated by the boolean flags with no values
  150.     # that we had the bad idea to support for the sake of user simplicity
  151.     # in create/init but which makes life hard in configure...
  152.     # So this will be hopefully written and some integrated with opt1.0
  153.     # (hopefully for tcl8.1 ?)
  154.     proc interpConfigure {args} {
  155.     switch [llength $args] {
  156.         1 {
  157.         # If we have exactly 1 argument
  158.         # the semantic is to return all the current configuration
  159.         # We still call OptKeyParse though we know that "slave"
  160.         # is our given argument because it also checks
  161.         # for the "-help" option.
  162.         set Args [::tcl::OptKeyParse ::safe::interpIC $args];
  163.         CheckInterp $slave;
  164.         set res {}
  165.         lappend res [list -accessPath [Set [PathListName $slave]]]
  166.         lappend res [list -statics    [Set [StaticsOkName $slave]]]
  167.         lappend res [list -nested     [Set [NestedOkName $slave]]]
  168.         lappend res [list -deleteHook [Set [DeleteHookName $slave]]]
  169.         join $res
  170.         }
  171.         2 {
  172.         # If we have exactly 2 arguments
  173.         # the semantic is a "configure get"
  174.         ::tcl::Lassign $args slave arg;
  175.         # get the flag sub program (we 'know' about Opt's internal
  176.         # representation of data)
  177.         set desc [lindex [::tcl::OptKeyGetDesc ::safe::interpIC] 2]
  178.         set hits [::tcl::OptHits desc $arg];
  179.                 if {$hits > 1} {
  180.                     return -code error [::tcl::OptAmbigous $desc $arg]
  181.                 } elseif {$hits == 0} {
  182.                     return -code error [::tcl::OptFlagUsage $desc $arg]
  183.                 }
  184.         CheckInterp $slave;
  185.         set item [::tcl::OptCurDesc $desc];
  186.         set name [::tcl::OptName $item];
  187.         switch -exact -- $name {
  188.             -accessPath {
  189.             return [list -accessPath [Set [PathListName $slave]]]
  190.             }
  191.             -statics {
  192.             return [list -statics    [Set [StaticsOkName $slave]]]
  193.             }
  194.             -nested {
  195.             return [list -nested     [Set [NestedOkName $slave]]]
  196.             }
  197.             -deleteHook {
  198.             return [list -deleteHook [Set [DeleteHookName $slave]]]
  199.             }
  200.             -noStatics {
  201.             # it is most probably a set in fact
  202.             # but we would need then to jump to the set part
  203.             # and it is not *sure* that it is a set action
  204.             # that the user want, so force it to use the
  205.             # unambigous -statics ?value? instead:
  206.             return -code error\
  207.                 "ambigous query (get or set -noStatics ?)\
  208.                 use -statics instead";
  209.             }
  210.             -nestedLoadOk {
  211.             return -code error\
  212.                 "ambigous query (get or set -nestedLoadOk ?)\
  213.                 use -nested instead";
  214.             }
  215.             default {
  216.             return -code error "unknown flag $name (bug)";
  217.             }
  218.         }
  219.         }
  220.         default {
  221.         # Otherwise we want to parse the arguments like init and create
  222.         # did
  223.         set Args [::tcl::OptKeyParse ::safe::interpIC $args];
  224.         CheckInterp $slave;
  225.         # Get the current (and not the default) values of
  226.         # whatever has not been given:
  227.         if {![::tcl::OptProcArgGiven -accessPath]} {
  228.             set doreset 1
  229.             set accessPath [Set [PathListName $slave]]
  230.         } else {
  231.             set doreset 0
  232.         }
  233.         if {    (![::tcl::OptProcArgGiven -statics]) 
  234.                      && (![::tcl::OptProcArgGiven -noStatics]) } {
  235.             set statics    [Set [StaticsOkName $slave]]
  236.         } else {
  237.             set statics    [InterpStatics]
  238.         }
  239.         if {    ([::tcl::OptProcArgGiven -nested]) 
  240.                      || ([::tcl::OptProcArgGiven -nestedLoadOk]) } {
  241.             set nested     [InterpNested]
  242.         } else {
  243.             set nested     [Set [NestedOkName $slave]]
  244.         }
  245.         if {![::tcl::OptProcArgGiven -deleteHook]} {
  246.             set deleteHook [Set [DeleteHookName $slave]]
  247.         }
  248.         # we can now reconfigure :
  249.         InterpSetConfig $slave $accessPath \
  250.             $statics $nested $deleteHook;
  251.         # auto_reset the slave (to completly synch the new access_path)
  252.         if {$doreset} {
  253.             if {[catch {::interp eval $slave {auto_reset}} msg]} {
  254.             Log $slave "auto_reset failed: $msg";
  255.             } else {
  256.             Log $slave "successful auto_reset" NOTICE;
  257.             }
  258.         }
  259.         }
  260.     }
  261.     }
  262.  
  263.  
  264.     ####
  265.     #
  266.     #  Functions that actually implements the exported APIs
  267.     #
  268.     ####
  269.  
  270.  
  271.     #
  272.     # safe::InterpCreate : doing the real job
  273.     #
  274.     # This procedure creates a safe slave and initializes it with the
  275.     # safe base aliases.
  276.     # NB: slave name must be simple alphanumeric string, no spaces,
  277.     # no (), no {},...  {because the state array is stored as part of the name}
  278.     #
  279.     # Returns the slave name.
  280.     #
  281.     # Optional Arguments : 
  282.     # + slave name : if empty, generated name will be used
  283.     # + access_path: path list controlling where load/source can occur,
  284.     #                if empty: the master auto_path will be used.
  285.     # + staticsok  : flag, if 0 :no static package can be loaded (load {} Xxx)
  286.     #                      if 1 :static packages are ok.
  287.     # + nestedok: flag, if 0 :no loading to sub-sub interps (load xx xx sub)
  288.     #                      if 1 : multiple levels are ok.
  289.     
  290.     # use the full name and no indent so auto_mkIndex can find us
  291.     proc ::safe::InterpCreate {
  292.     slave 
  293.     access_path
  294.     staticsok
  295.     nestedok
  296.     deletehook
  297.     } {
  298.     # Create the slave.
  299.     if {[string compare "" $slave]} {
  300.         ::interp create -safe $slave;
  301.     } else {
  302.         # empty argument: generate slave name
  303.         set slave [::interp create -safe];
  304.     }
  305.     Log $slave "Created" NOTICE;
  306.  
  307.     # Initialize it. (returns slave name)
  308.     InterpInit $slave $access_path $staticsok $nestedok $deletehook;
  309.     }
  310.  
  311.  
  312.     #
  313.     # InterpSetConfig (was setAccessPath) :
  314.     #    Sets up slave virtual auto_path and corresponding structure
  315.     #    within the master. Also sets the tcl_library in the slave
  316.     #    to be the first directory in the path.
  317.     #    Nb: If you change the path after the slave has been initialized
  318.     #    you probably need to call "auto_reset" in the slave in order that it
  319.     #    gets the right auto_index() array values.
  320.  
  321.     proc ::safe::InterpSetConfig {slave access_path staticsok\
  322.         nestedok deletehook} {
  323.  
  324.     # determine and store the access path if empty
  325.     if {[string match "" $access_path]} {
  326.         set access_path [uplevel #0 set auto_path];
  327.         # Make sure that tcl_library is in auto_path
  328.         # and at the first position (needed by setAccessPath)
  329.         set where [lsearch -exact $access_path [info library]];
  330.         if {$where == -1} {
  331.         # not found, add it.
  332.         set access_path [concat [list [info library]] $access_path];
  333.         Log $slave "tcl_library was not in auto_path,\
  334.             added it to slave's access_path" NOTICE;
  335.         } elseif {$where != 0} {
  336.         # not first, move it first
  337.         set access_path [concat [list [info library]]\
  338.             [lreplace $access_path $where $where]];
  339.         Log $slave "tcl_libray was not in first in auto_path,\
  340.             moved it to front of slave's access_path" NOTICE;
  341.         
  342.         }
  343.  
  344.         # Add 1st level sub dirs (will searched by auto loading from tcl
  345.         # code in the slave using glob and thus fail, so we add them
  346.         # here so by default it works the same).
  347.         set access_path [AddSubDirs $access_path];
  348.     }
  349.  
  350.     Log $slave "Setting accessPath=($access_path) staticsok=$staticsok\
  351.         nestedok=$nestedok deletehook=($deletehook)" NOTICE;
  352.  
  353.     # clear old autopath if it existed
  354.     set nname [PathNumberName $slave];
  355.     if {[Exists $nname]} {
  356.         set n [Set $nname];
  357.         for {set i 0} {$i<$n} {incr i} {
  358.         Unset [PathToken $i $slave];
  359.         }
  360.     }
  361.  
  362.     # build new one
  363.     set slave_auto_path {}
  364.     set i 0;
  365.     foreach dir $access_path {
  366.         Set [PathToken $i $slave] $dir;
  367.         lappend slave_auto_path "\$[PathToken $i]";
  368.         incr i;
  369.     }
  370.     Set $nname $i;
  371.     Set [PathListName $slave] $access_path;
  372.     Set [VirtualPathListName $slave] $slave_auto_path;
  373.  
  374.     Set [StaticsOkName $slave] $staticsok
  375.     Set [NestedOkName $slave] $nestedok
  376.     Set [DeleteHookName $slave] $deletehook
  377.  
  378.     SyncAccessPath $slave;
  379.     }
  380.  
  381.     #
  382.     #
  383.     # FindInAccessPath:
  384.     #    Search for a real directory and returns its virtual Id
  385.     #    (including the "$")
  386. proc ::safe::interpFindInAccessPath {slave path} {
  387.     set access_path [GetAccessPath $slave];
  388.     set where [lsearch -exact $access_path $path];
  389.     if {$where == -1} {
  390.         return -code error "$path not found in access path $access_path";
  391.     }
  392.     return "\$[PathToken $where]";
  393.     }
  394.  
  395.     #
  396.     # addToAccessPath:
  397.     #    add (if needed) a real directory to access path
  398.     #    and return its virtual token (including the "$").
  399. proc ::safe::interpAddToAccessPath {slave path} {
  400.     # first check if the directory is already in there
  401.     if {![catch {interpFindInAccessPath $slave $path} res]} {
  402.         return $res;
  403.     }
  404.     # new one, add it:
  405.     set nname [PathNumberName $slave];
  406.     set n [Set $nname];
  407.     Set [PathToken $n $slave] $path;
  408.  
  409.     set token "\$[PathToken $n]";
  410.  
  411.     Lappend [VirtualPathListName $slave] $token;
  412.     Lappend [PathListName $slave] $path;
  413.     Set $nname [expr {$n+1}];
  414.  
  415.     SyncAccessPath $slave;
  416.  
  417.     return $token;
  418.     }
  419.  
  420.     # This procedure applies the initializations to an already existing
  421.     # interpreter. It is useful when you want to install the safe base
  422.     # aliases into a preexisting safe interpreter.
  423.     proc ::safe::InterpInit {
  424.     slave 
  425.     access_path
  426.     staticsok
  427.     nestedok
  428.     deletehook
  429.     } {
  430.  
  431.     # Configure will generate an access_path when access_path is
  432.     # empty.
  433.     InterpSetConfig $slave $access_path $staticsok $nestedok $deletehook;
  434.  
  435.     # These aliases let the slave load files to define new commands
  436.  
  437.     # NB we need to add [namespace current], aliases are always
  438.     # absolute paths.
  439.     ::interp alias $slave source {} [namespace current]::AliasSource $slave
  440.     ::interp alias $slave load {} [namespace current]::AliasLoad $slave
  441.  
  442.     # This alias lets the slave have access to a subset of the 'file'
  443.     # command functionality.
  444.  
  445.     AliasSubset $slave file file dir.* join root.* ext.* tail \
  446.         path.* split
  447.  
  448.     # This alias interposes on the 'exit' command and cleanly terminates
  449.     # the slave.
  450.  
  451.     ::interp alias $slave exit {} [namespace current]::interpDelete $slave
  452.  
  453.     # The allowed slave variables already have been set
  454.     # by Tcl_MakeSafe(3)
  455.  
  456.  
  457.     # Source init.tcl into the slave, to get auto_load and other
  458.     # procedures defined:
  459.  
  460.     # We don't try to use the -rsrc on the mac because it would get
  461.     # confusing if you would want to customize init.tcl
  462.     # for a given set of safe slaves, on all the platforms
  463.     # you just need to give a specific access_path and
  464.     # the mac should be no exception. As there is no
  465.     # obvious full "safe ressources" design nor implementation
  466.     # for the mac, safe interps there will just don't
  467.     # have that ability. (A specific app can still reenable
  468.     # that using custom aliases if they want to).
  469.     # It would also make the security analysis and the Safe Tcl security
  470.     # model platform dependant and thus more error prone.
  471.  
  472.     if {[catch {::interp eval $slave\
  473.         {source [file join $tcl_library init.tcl]}}\
  474.         msg]} {
  475.         Log $slave "can't source init.tcl ($msg)";
  476.         error "can't source init.tcl into slave $slave ($msg)"
  477.     }
  478.  
  479.     return $slave
  480.     }
  481.  
  482.  
  483.     # Add (only if needed, avoid duplicates) 1 level of
  484.     # sub directories to an existing path list.
  485.     # Also removes non directories from the returned list.
  486.     proc AddSubDirs {pathList} {
  487.     set res {}
  488.     foreach dir $pathList {
  489.         if {[file isdirectory $dir]} {
  490.         # check that we don't have it yet as a children
  491.         # of a previous dir
  492.         if {[lsearch -exact $res $dir]<0} {
  493.             lappend res $dir;
  494.         }
  495.         foreach sub [glob -nocomplain -- [file join $dir *]] {
  496.             if {    ([file isdirectory $sub])
  497.                  && ([lsearch -exact $res $sub]<0) } {
  498.             # new sub dir, add it !
  499.                     lappend res $sub;
  500.                 }
  501.         }
  502.         }
  503.     }
  504.     return $res;
  505.     }
  506.  
  507.     # This procedure deletes a safe slave managed by Safe Tcl and
  508.     # cleans up associated state:
  509.  
  510. proc ::safe::interpDelete {slave} {
  511.  
  512.         Log $slave "About to delete" NOTICE;
  513.  
  514.     # If the slave has a cleanup hook registered, call it.
  515.     # check the existance because we might be called to delete an interp
  516.     # which has not been registered with us at all
  517.     set hookname [DeleteHookName $slave];
  518.     if {[Exists $hookname]} {
  519.         set hook [Set $hookname];
  520.         if {![::tcl::Lempty $hook]} {
  521.         # remove the hook now, otherwise if the hook
  522.         # calls us somehow, we'll loop
  523.         Unset $hookname;
  524.         if {[catch {eval $hook [list $slave]} err]} {
  525.             Log $slave "Delete hook error ($err)";
  526.         }
  527.         }
  528.     }
  529.  
  530.     # Discard the global array of state associated with the slave, and
  531.     # delete the interpreter.
  532.  
  533.     set statename [InterpStateName $slave];
  534.     if {[Exists $statename]} {
  535.         Unset $statename;
  536.     }
  537.  
  538.     # if we have been called twice, the interp might have been deleted
  539.     # already
  540.     if {[::interp exists $slave]} {
  541.         ::interp delete $slave;
  542.         Log $slave "Deleted" NOTICE;
  543.     }
  544.  
  545.     return
  546.     }
  547.  
  548.     # Set (or get) the loging mecanism 
  549.  
  550. proc ::safe::setLogCmd {args} {
  551.     variable Log;
  552.     if {[llength $args] == 0} {
  553.     return $Log;
  554.     } else {
  555.     if {[llength $args] == 1} {
  556.         set Log [lindex $args 0];
  557.     } else {
  558.         set Log $args
  559.     }
  560.     }
  561. }
  562.  
  563.     # internal variable
  564.     variable Log {}
  565.  
  566.     # ------------------- END OF PUBLIC METHODS ------------
  567.  
  568.  
  569.     #
  570.     # sets the slave auto_path to the master recorded value.
  571.     # also sets tcl_library to the first token of the virtual path.
  572.     #
  573.     proc SyncAccessPath {slave} {
  574.     set slave_auto_path [Set [VirtualPathListName $slave]];
  575.     ::interp eval $slave [list set auto_path $slave_auto_path];
  576.     Log $slave \
  577.         "auto_path in $slave has been set to $slave_auto_path"\
  578.         NOTICE;
  579.     ::interp eval $slave [list set tcl_library [lindex $slave_auto_path 0]];
  580.     }
  581.  
  582.     # base name for storing all the slave states
  583.     # the array variable name for slave foo is thus "Sfoo"
  584.     # and for sub slave {foo bar} "Sfoo bar" (spaces are handled
  585.     # ok everywhere (or should))
  586.     # We add the S prefix to avoid that a slave interp called "Log"
  587.     # would smash our "Log" variable.
  588.     proc InterpStateName {slave} {
  589.     return "S$slave";
  590.     }
  591.  
  592.     # Check that the given slave is "one of us"
  593.     proc IsInterp {slave} {
  594.     expr {    ([Exists [InterpStateName $slave]]) 
  595.            && ([::interp exists $slave])}
  596.     }
  597.  
  598.     # returns the virtual token for directory number N
  599.     # if the slave argument is given, 
  600.     # it will return the corresponding master global variable name
  601.     proc PathToken {n {slave ""}} {
  602.     if {[string compare "" $slave]} {
  603.         return "[InterpStateName $slave](access_path,$n)";
  604.     } else {
  605.         # We need to have a ":" in the token string so
  606.         # [file join] on the mac won't turn it into a relative
  607.         # path.
  608.         return "p(:$n:)";
  609.     }
  610.     }
  611.     # returns the variable name of the complete path list
  612.     proc PathListName {slave} {
  613.     return "[InterpStateName $slave](access_path)";
  614.     }
  615.     # returns the variable name of the complete path list
  616.     proc VirtualPathListName {slave} {
  617.     return "[InterpStateName $slave](access_path_slave)";
  618.     }
  619.     # returns the variable name of the number of items
  620.     proc PathNumberName {slave} {
  621.     return "[InterpStateName $slave](access_path,n)";
  622.     }
  623.     # returns the staticsok flag var name
  624.     proc StaticsOkName {slave} {
  625.     return "[InterpStateName $slave](staticsok)";
  626.     }
  627.     # returns the nestedok flag var name
  628.     proc NestedOkName {slave} {
  629.     return "[InterpStateName $slave](nestedok)";
  630.     }
  631.     # Run some code at the namespace toplevel
  632.     proc Toplevel {args} {
  633.     namespace eval [namespace current] $args;
  634.     }
  635.     # set/get values
  636.     proc Set {args} {
  637.     eval Toplevel set $args;
  638.     }
  639.     # lappend on toplevel vars
  640.     proc Lappend {args} {
  641.     eval Toplevel lappend $args;
  642.     }
  643.     # unset a var/token (currently just an global level eval)
  644.     proc Unset {args} {
  645.     eval Toplevel unset $args;
  646.     }
  647.     # test existance 
  648.     proc Exists {varname} {
  649.     Toplevel info exists $varname;
  650.     }
  651.     # short cut for access path getting
  652.     proc GetAccessPath {slave} {
  653.     Set [PathListName $slave]
  654.     }
  655.     # short cut for statics ok flag getting
  656.     proc StaticsOk {slave} {
  657.     Set [StaticsOkName $slave]
  658.     }
  659.     # short cut for getting the multiples interps sub loading ok flag
  660.     proc NestedOk {slave} {
  661.     Set [NestedOkName $slave]
  662.     }
  663.     # interp deletion storing hook name
  664.     proc DeleteHookName {slave} {
  665.     return [InterpStateName $slave](cleanupHook)
  666.     }
  667.  
  668.     #
  669.     # translate virtual path into real path
  670.     #
  671.     proc TranslatePath {slave path} {
  672.     # somehow strip the namespaces 'functionality' out (the danger
  673.     # is that we would strip valid macintosh "../" queries... :
  674.     if {[regexp {(::)|(\.\.)} $path]} {
  675.         error "invalid characters in path $path";
  676.     }
  677.     set n [expr {[Set [PathNumberName $slave]]-1}];
  678.     for {} {$n>=0} {incr n -1} {
  679.         # fill the token virtual names with their real value
  680.         set [PathToken $n] [Set [PathToken $n $slave]];
  681.     }
  682.     # replaces the token by their value
  683.     subst -nobackslashes -nocommands $path;
  684.     }
  685.  
  686.  
  687.     # Log eventually log an error
  688.     # to enable error logging, set Log to {puts stderr} for instance
  689.     proc Log {slave msg {type ERROR}} {
  690.     variable Log;
  691.     if {[info exists Log] && [llength $Log]} {
  692.         eval $Log [list "$type for slave $slave : $msg"];
  693.     }
  694.     }
  695.  
  696.     
  697.     # file name control (limit access to files/ressources that should be
  698.     # a valid tcl source file)
  699.     proc CheckFileName {slave file} {
  700.     # limit what can be sourced to .tcl
  701.     # and forbid files with more than 1 dot and
  702.     # longer than 14 chars
  703.     set ftail [file tail $file];
  704.     if {[string length $ftail]>14} {
  705.         error "$ftail: filename too long";
  706.     }
  707.     if {[regexp {\..*\.} $ftail]} {
  708.         error "$ftail: more than one dot is forbidden";
  709.     }
  710.     if {[string compare $ftail "tclIndex"] && \
  711.         [string compare [string tolower [file extension $ftail]]\
  712.         ".tcl"]} {
  713.         error "$ftail: must be a *.tcl or tclIndex";
  714.     }
  715.  
  716.     if {![file exists $file]} {
  717.         # don't tell the file path
  718.         error "no such file or directory";
  719.     }
  720.  
  721.     if {![file readable $file]} {
  722.         # don't tell the file path
  723.         error "not readable";
  724.     }
  725.  
  726.     }
  727.  
  728.  
  729.     # AliasSource is the target of the "source" alias in safe interpreters.
  730.  
  731.     proc AliasSource {slave args} {
  732.  
  733.     set argc [llength $args];
  734.     # Allow only "source filename"
  735.     # (and not mac specific -rsrc for instance - see comment in ::init
  736.     # for current rationale)
  737.     if {$argc != 1} {
  738.         set msg "wrong # args: should be \"source fileName\""
  739.         Log $slave "$msg ($args)";
  740.         return -code error $msg;
  741.     }
  742.     set file [lindex $args 0]
  743.     
  744.     # get the real path from the virtual one.
  745.     if {[catch {set file [TranslatePath $slave $file]} msg]} {
  746.         Log $slave $msg;
  747.         return -code error "permission denied"
  748.     }
  749.     
  750.     # check that the path is in the access path of that slave
  751.     if {[catch {FileInAccessPath $slave $file} msg]} {
  752.         Log $slave $msg;
  753.         return -code error "permission denied"
  754.     }
  755.  
  756.     # do the checks on the filename :
  757.     if {[catch {CheckFileName $slave $file} msg]} {
  758.         Log $slave "$file:$msg";
  759.         return -code error $msg;
  760.     }
  761.  
  762.     # passed all the tests , lets source it:
  763.     if {[catch {::interp invokehidden $slave source $file} msg]} {
  764.         Log $slave $msg;
  765.         return -code error "script error";
  766.     }
  767.     return $msg
  768.     }
  769.  
  770.     # AliasLoad is the target of the "load" alias in safe interpreters.
  771.  
  772.     proc AliasLoad {slave file args} {
  773.  
  774.     set argc [llength $args];
  775.     if {$argc > 2} {
  776.         set msg "load error: too many arguments";
  777.         Log $slave "$msg ($argc) {$file $args}";
  778.         return -code error $msg;
  779.     }
  780.  
  781.     # package name (can be empty if file is not).
  782.     set package [lindex $args 0];
  783.  
  784.     # Determine where to load. load use a relative interp path
  785.     # and {} means self, so we can directly and safely use passed arg.
  786.     set target [lindex $args 1];
  787.     if {[string length $target]} {
  788.         # we will try to load into a sub sub interp
  789.         # check that we want to authorize that.
  790.         if {![NestedOk $slave]} {
  791.         Log $slave "loading to a sub interp (nestedok)\
  792.             disabled (trying to load $package to $target)";
  793.         return -code error "permission denied (nested load)";
  794.         }
  795.         
  796.     }
  797.  
  798.     # Determine what kind of load is requested
  799.     if {[string length $file] == 0} {
  800.         # static package loading
  801.         if {[string length $package] == 0} {
  802.         set msg "load error: empty filename and no package name";
  803.         Log $slave $msg;
  804.         return -code error $msg;
  805.         }
  806.         if {![StaticsOk $slave]} {
  807.         Log $slave "static packages loading disabled\
  808.             (trying to load $package to $target)";
  809.         return -code error "permission denied (static package)";
  810.         }
  811.     } else {
  812.         # file loading
  813.  
  814.         # get the real path from the virtual one.
  815.         if {[catch {set file [TranslatePath $slave $file]} msg]} {
  816.         Log $slave $msg;
  817.         return -code error "permission denied"
  818.         }
  819.  
  820.         # check the translated path
  821.         if {[catch {FileInAccessPath $slave $file} msg]} {
  822.         Log $slave $msg;
  823.         return -code error "permission denied (path)"
  824.         }
  825.     }
  826.  
  827.     if {[catch {::interp invokehidden\
  828.         $slave load $file $package $target} msg]} {
  829.         Log $slave $msg;
  830.         return -code error $msg
  831.     }
  832.  
  833.     return $msg
  834.     }
  835.  
  836.     # FileInAccessPath raises an error if the file is not found in
  837.     # the list of directories contained in the (master side recorded) slave's
  838.     # access path.
  839.  
  840.     # the security here relies on "file dirname" answering the proper
  841.     # result.... needs checking ?
  842.     proc FileInAccessPath {slave file} {
  843.  
  844.     set access_path [GetAccessPath $slave];
  845.  
  846.     if {[file isdirectory $file]} {
  847.         error "\"$file\": is a directory"
  848.     }
  849.     set parent [file dirname $file]
  850.     if {[lsearch -exact $access_path $parent] == -1} {
  851.         error "\"$file\": not in access_path";
  852.     }
  853.     }
  854.  
  855.     # This procedure enables access from a safe interpreter to only a subset of
  856.     # the subcommands of a command:
  857.  
  858.     proc Subset {slave command okpat args} {
  859.     set subcommand [lindex $args 0]
  860.     if {[regexp $okpat $subcommand]} {
  861.         return [eval {$command $subcommand} [lrange $args 1 end]]
  862.     }
  863.     set msg "not allowed to invoke subcommand $subcommand of $command";
  864.     Log $slave $msg;
  865.     error $msg;
  866.     }
  867.  
  868.     # This procedure installs an alias in a slave that invokes "safesubset"
  869.     # in the master to execute allowed subcommands. It precomputes the pattern
  870.     # of allowed subcommands; you can use wildcards in the pattern if you wish
  871.     # to allow subcommand abbreviation.
  872.     #
  873.     # Syntax is: AliasSubset slave alias target subcommand1 subcommand2...
  874.  
  875.     proc AliasSubset {slave alias target args} {
  876.     set pat ^(; set sep ""
  877.     foreach sub $args {
  878.         append pat $sep$sub
  879.         set sep |
  880.     }
  881.     append pat )\$
  882.     ::interp alias $slave $alias {}\
  883.         [namespace current]::Subset $slave $target $pat
  884.     }
  885.  
  886. }
  887.