| author | haftmann | 
| Thu, 11 Mar 2010 09:09:51 +0100 | |
| changeset 35709 | 267e15230a31 | 
| parent 35010 | d6e492cea6e4 | 
| child 37239 | 54b444874be1 | 
| permissions | -rw-r--r-- | 
| 20925 | 1 | (* Title: Pure/General/secure.ML | 
| 2 | Author: Makarius | |
| 3 | ||
| 4 | Secure critical operations. | |
| 5 | *) | |
| 6 | ||
| 7 | signature SECURE = | |
| 8 | sig | |
| 20977 | 9 | val set_secure: unit -> unit | 
| 20925 | 10 | val is_secure: unit -> bool | 
| 26080 | 11 | val deny_secure: string -> unit | 
| 31330 | 12 | val secure_mltext: unit -> unit | 
| 30672 
beaadd5af500
more systematic type use_context, with particular values ML_Parse.global_context and ML_Context.local_context;
 wenzelm parents: 
30625diff
changeset | 13 | val use_text: use_context -> int * string -> bool -> string -> unit | 
| 
beaadd5af500
more systematic type use_context, with particular values ML_Parse.global_context and ML_Context.local_context;
 wenzelm parents: 
30625diff
changeset | 14 | val use_file: use_context -> bool -> string -> unit | 
| 30625 
d53d1a16d5ee
replaced install_pp/make_pp by more general toplevel_pp based on use_text;
 wenzelm parents: 
29606diff
changeset | 15 | val toplevel_pp: string list -> string -> unit | 
| 32739 | 16 | val open_unsynchronized: unit -> unit | 
| 20925 | 17 | val commit: unit -> unit | 
| 35010 
d6e492cea6e4
renamed system/system_out to bash/bash_output -- to emphasized that this is really GNU bash, not some undefined POSIX sh;
 wenzelm parents: 
32739diff
changeset | 18 | val bash_output: string -> string * int | 
| 
d6e492cea6e4
renamed system/system_out to bash/bash_output -- to emphasized that this is really GNU bash, not some undefined POSIX sh;
 wenzelm parents: 
32739diff
changeset | 19 | val bash: string -> int | 
| 20925 | 20 | end; | 
| 21 | ||
| 22 | structure Secure: SECURE = | |
| 23 | struct | |
| 24 | ||
| 20992 | 25 | (** secure flag **) | 
| 20925 | 26 | |
| 32738 | 27 | val secure = Unsynchronized.ref false; | 
| 20925 | 28 | |
| 20977 | 29 | fun set_secure () = secure := true; | 
| 20925 | 30 | fun is_secure () = ! secure; | 
| 31 | ||
| 22567 
1565d476a9e2
removed assert/deny (avoid clash with Alice keywords and confusion due to strict evaluation);
 wenzelm parents: 
22144diff
changeset | 32 | fun deny_secure msg = if is_secure () then error msg else (); | 
| 20925 | 33 | |
| 34 | ||
| 25753 | 35 | |
| 20992 | 36 | (** critical operations **) | 
| 37 | ||
| 38 | (* ML evaluation *) | |
| 20925 | 39 | |
| 40 | fun secure_mltext () = deny_secure "Cannot evaluate ML source in secure mode"; | |
| 41 | ||
| 30672 
beaadd5af500
more systematic type use_context, with particular values ML_Parse.global_context and ML_Context.local_context;
 wenzelm parents: 
30625diff
changeset | 42 | val raw_use_text = use_text; | 
| 
beaadd5af500
more systematic type use_context, with particular values ML_Parse.global_context and ML_Context.local_context;
 wenzelm parents: 
30625diff
changeset | 43 | val raw_use_file = use_file; | 
| 
beaadd5af500
more systematic type use_context, with particular values ML_Parse.global_context and ML_Context.local_context;
 wenzelm parents: 
30625diff
changeset | 44 | val raw_toplevel_pp = toplevel_pp; | 
| 20925 | 45 | |
| 30672 
beaadd5af500
more systematic type use_context, with particular values ML_Parse.global_context and ML_Context.local_context;
 wenzelm parents: 
30625diff
changeset | 46 | fun use_text context pos verbose txt = (secure_mltext (); raw_use_text context pos verbose txt); | 
| 
beaadd5af500
more systematic type use_context, with particular values ML_Parse.global_context and ML_Context.local_context;
 wenzelm parents: 
30625diff
changeset | 47 | fun use_file context verbose name = (secure_mltext (); raw_use_file context verbose name); | 
| 23922 
707639e9497d
marked some CRITICAL sections (for multithreading);
 wenzelm parents: 
22567diff
changeset | 48 | |
| 30672 
beaadd5af500
more systematic type use_context, with particular values ML_Parse.global_context and ML_Context.local_context;
 wenzelm parents: 
30625diff
changeset | 49 | fun toplevel_pp path pp = (secure_mltext (); raw_toplevel_pp ML_Parse.global_context path pp); | 
| 30625 
d53d1a16d5ee
replaced install_pp/make_pp by more general toplevel_pp based on use_text;
 wenzelm parents: 
29606diff
changeset | 50 | |
| 32739 | 51 | |
| 52 | (* global evaluation *) | |
| 53 | ||
| 54 | val use_global = raw_use_text ML_Parse.global_context (0, "") false; | |
| 55 | ||
| 56 | fun commit () = use_global "commit();"; (*commit is dynamically bound!*) | |
| 57 | fun open_unsynchronized () = use_global "open Unsynchronized"; | |
| 20925 | 58 | |
| 20992 | 59 | |
| 60 | (* shell commands *) | |
| 61 | ||
| 62 | fun secure_shell () = deny_secure "Cannot execute shell commands in secure mode"; | |
| 63 | ||
| 35010 
d6e492cea6e4
renamed system/system_out to bash/bash_output -- to emphasized that this is really GNU bash, not some undefined POSIX sh;
 wenzelm parents: 
32739diff
changeset | 64 | val orig_bash_output = bash_output; | 
| 20992 | 65 | |
| 35010 
d6e492cea6e4
renamed system/system_out to bash/bash_output -- to emphasized that this is really GNU bash, not some undefined POSIX sh;
 wenzelm parents: 
32739diff
changeset | 66 | fun bash_output s = (secure_shell (); orig_bash_output s); | 
| 26332 | 67 | |
| 35010 
d6e492cea6e4
renamed system/system_out to bash/bash_output -- to emphasized that this is really GNU bash, not some undefined POSIX sh;
 wenzelm parents: 
32739diff
changeset | 68 | fun bash s = | 
| 
d6e492cea6e4
renamed system/system_out to bash/bash_output -- to emphasized that this is really GNU bash, not some undefined POSIX sh;
 wenzelm parents: 
32739diff
changeset | 69 | (case bash_output s of | 
| 26332 | 70 |     ("", rc) => rc
 | 
| 71 | | (out, rc) => (writeln (perhaps (try (unsuffix "\n")) out); rc)); | |
| 20992 | 72 | |
| 20925 | 73 | end; | 
| 74 | ||
| 23978 | 75 | (*override previous toplevel bindings!*) | 
| 21770 | 76 | val use_text = Secure.use_text; | 
| 77 | val use_file = Secure.use_file; | |
| 30672 
beaadd5af500
more systematic type use_context, with particular values ML_Parse.global_context and ML_Context.local_context;
 wenzelm parents: 
30625diff
changeset | 78 | fun use s = Secure.use_file ML_Parse.global_context true s | 
| 31473 | 79 | handle ERROR msg => (writeln msg; error "ML error"); | 
| 30625 
d53d1a16d5ee
replaced install_pp/make_pp by more general toplevel_pp based on use_text;
 wenzelm parents: 
29606diff
changeset | 80 | val toplevel_pp = Secure.toplevel_pp; | 
| 35010 
d6e492cea6e4
renamed system/system_out to bash/bash_output -- to emphasized that this is really GNU bash, not some undefined POSIX sh;
 wenzelm parents: 
32739diff
changeset | 81 | val bash_output = Secure.bash_output; | 
| 
d6e492cea6e4
renamed system/system_out to bash/bash_output -- to emphasized that this is really GNU bash, not some undefined POSIX sh;
 wenzelm parents: 
32739diff
changeset | 82 | val bash = Secure.bash; |