| author | wenzelm | 
| Sat, 03 Jan 2015 22:04:31 +0100 | |
| changeset 59255 | db265648139c | 
| parent 58846 | 98c03412079b | 
| child 60956 | 10d463883dc2 | 
| 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 | 
| 20925 | 16 | end; | 
| 17 | ||
| 18 | structure Secure: SECURE = | |
| 19 | struct | |
| 20 | ||
| 20992 | 21 | (** secure flag **) | 
| 20925 | 22 | |
| 32738 | 23 | val secure = Unsynchronized.ref false; | 
| 20925 | 24 | |
| 20977 | 25 | fun set_secure () = secure := true; | 
| 20925 | 26 | fun is_secure () = ! secure; | 
| 27 | ||
| 22567 
1565d476a9e2
removed assert/deny (avoid clash with Alice keywords and confusion due to strict evaluation);
 wenzelm parents: 
22144diff
changeset | 28 | fun deny_secure msg = if is_secure () then error msg else (); | 
| 20925 | 29 | |
| 30 | ||
| 25753 | 31 | |
| 20992 | 32 | (** critical operations **) | 
| 33 | ||
| 20925 | 34 | fun secure_mltext () = deny_secure "Cannot evaluate ML source in secure mode"; | 
| 35 | ||
| 30672 
beaadd5af500
more systematic type use_context, with particular values ML_Parse.global_context and ML_Context.local_context;
 wenzelm parents: 
30625diff
changeset | 36 | 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 | 37 | 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 | 38 | val raw_toplevel_pp = toplevel_pp; | 
| 20925 | 39 | |
| 30672 
beaadd5af500
more systematic type use_context, with particular values ML_Parse.global_context and ML_Context.local_context;
 wenzelm parents: 
30625diff
changeset | 40 | 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 | 41 | 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 | 42 | |
| 30672 
beaadd5af500
more systematic type use_context, with particular values ML_Parse.global_context and ML_Context.local_context;
 wenzelm parents: 
30625diff
changeset | 43 | 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 | 44 | |
| 20925 | 45 | end; | 
| 46 |