From fa2fedc9aa9d571c5907d9b71908beb9f46489fb Mon Sep 17 00:00:00 2001 From: Sapan Bhatia Date: Fri, 27 Mar 2009 20:57:48 +0000 Subject: [PATCH] Built in 'flood protection'. In a fairly unlikely scenario, a slice could bombard a vsys script by opening thousands of connections and cause some badness to happen if the script was slow. --- directfifowatcher.ml | 24 +++++++++++++++++++----- unixsocketwatcher.ml | 2 +- 2 files changed, 20 insertions(+), 6 deletions(-) diff --git a/directfifowatcher.ml b/directfifowatcher.ml index e97d7c5..dc7a985 100644 --- a/directfifowatcher.ml +++ b/directfifowatcher.ml @@ -33,10 +33,12 @@ let pidmap: (int,in_pathname * Unix.file_descr) Hashtbl.t = Hashtbl.create 1024 let move_gate fname = let tmpfname=String.concat "." [fname;"tmp"] in + (* XXX add a check *) Unix.rename fname tmpfname; tmpfname let move_ungate fname restore = + (* XXX add a check *) Unix.rename restore fname let list_check lst elt _ = @@ -119,11 +121,13 @@ let mkentry fqp abspath perm uname = (try let infname =(sprintf "%s.in" fqp) in let outfname =(sprintf "%s.out" fqp) in + (* XXX add checks *) Unix.mkfifo infname 0o666; Unix.mkfifo outfname 0o666; ( (* Make the user the owner of the pipes in a non-chroot environment *) if (!Globals.nochroot) then let pwentry = Unix.getpwnam uname in + (* XXX add checks *) Unix.chown infname pwentry.pw_uid pwentry.pw_gid; Unix.chown outfname pwentry.pw_uid pwentry.pw_gid ); @@ -143,13 +147,23 @@ let closeentry fqp = Hashtbl.remove direct_fifo_table fqp_in let sigchld_handle s = - let pid,_=Unix.waitpid [Unix.WNOHANG] 0 in - try - let fqp_in,fd_out = Hashtbl.find pidmap pid in + let rec reap_all_processes () = + let pid,_= try Unix.waitpid [Unix.WNOHANG] 0 with _ -> (-1,WEXITED(-1)) in + if (pid > 0) then begin - reopenentry fqp_in + begin + try + let fqp_in,fd_out = Hashtbl.find pidmap pid in + begin + reopenentry fqp_in + end + with _ -> () + end; + reap_all_processes () end - with _ -> () + in + reap_all_processes() + let rec add_dir_watch fqp = Dirwatcher.add_watch fqp [S_Open] direct_fifo_handler diff --git a/unixsocketwatcher.ml b/unixsocketwatcher.ml index 99fe554..7663be9 100644 --- a/unixsocketwatcher.ml +++ b/unixsocketwatcher.ml @@ -39,7 +39,7 @@ let receive_event (listening_socket_spec:fname_and_fd) (_:fname_and_fd) = |None -> logprint "Received unexpected socket event\n";() |Some (execpath, slice_name) -> begin - let child = fork () in + let child = try fork () with _ -> -1 in if (child == 0) then begin (* Child *) -- 2.43.0