X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=directfifowatcher.ml;h=dc7a9854ac9b043b9c7f1319d91e3899a0e77fb6;hb=fa2fedc9aa9d571c5907d9b71908beb9f46489fb;hp=2e1e60a0b372b63996f76198a8c94bdf194ef460;hpb=39cd5ff0d06a1162c399ec09e12719813d6d64e4;p=vsys.git diff --git a/directfifowatcher.ml b/directfifowatcher.ml index 2e1e60a..dc7a985 100644 --- a/directfifowatcher.ml +++ b/directfifowatcher.ml @@ -26,16 +26,32 @@ type directory = string type base_pathname = string type slice_name = string - let direct_fifo_table: (in_pathname,(directory*base_pathname*slice_name*Unix.file_descr) option) Hashtbl.t = Hashtbl.create 1024 let pidmap: (int,in_pathname * Unix.file_descr) Hashtbl.t = Hashtbl.create 1024 -let rec list_check lst elt = - match lst with - | [] -> false - | car::cdr -> if (car==elt) then true else list_check cdr elt +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 _ = + let rec list_check_rec lst = + match lst with + | [] -> false + | car::cdr -> + if (car==elt) then + true + else + list_check_rec cdr + in + list_check_rec lst let openentry_int fifoin = let fdin = @@ -46,8 +62,9 @@ let openentry_int fifoin = (** Open entry safely, by first masking out the file to be opened *) let openentry_safe root_dir fqp_in backend_spec = - Dirwatcher.mask_watch fqp_in; - let fd_in = openentry_int fqp_in in + let restore = move_gate fqp_in in + let fd_in = openentry_int restore in + move_ungate fqp_in restore; let (fqp,slice_name) = backend_spec in Hashtbl.replace direct_fifo_table fqp_in (Some(root_dir,fqp,slice_name,fd_in)) @@ -68,15 +85,16 @@ let connect_file fqp_in = Hashtbl.find direct_fifo_table fqp_in with _ -> None in match entry_info with | Some(_,execpath,slice_name,fifo_fdin) -> - (*fprintf logfd "Executing %s for slice %s\n" execpath - * slice_name;flush logfd;*) begin let len = String.length fqp_in in let fqp = String.sub fqp_in 0 (len-3) in let fqp_out = String.concat "." [fqp;"out"] in let fifo_fdout = try openfile fqp_out [O_WRONLY;O_NONBLOCK] 0o777 with - _->logprint "%s Output pipe not open, using stdout in place of %s\n" slice_name fqp_out;stdout + _-> (* The client is opening the descriptor too fast *) + sleep 1;try openfile fqp_out [O_WRONLY;O_NONBLOCK] 0o777 with + _-> + logprint "%s Output pipe not open, using stdout in place of %s\n" slice_name fqp_out;stdout in ignore(sigprocmask SIG_BLOCK [Sys.sigchld]); ( @@ -103,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 ); @@ -127,23 +147,32 @@ 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 and direct_fifo_handler wd dirname evlist fname = let is_event = list_check evlist in - if (is_event Open) then + if (is_event Open Attrib) then let fqp_in = String.concat "/" [dirname;fname] in - connect_file fqp_in + connect_file fqp_in let del_dir_watch fqp = ()