Still trying to fix KyoungSoo's bug
[vsys.git] / directfifowatcher.ml
1 (** directfifowatcher.ml: Routines to handle non-persistent scripts *)
2 (* Semantics:
3  *      - The 'out' descriptor must be opened first
4  *      - As soon as the backend script dies, the connection to the entry is
5  *      closed.
6  *      - To avoid user-inflicted pain, all entries are opened at the time
7  *      that they are created. Reopening these entries is a little complicated
8  *      but nevertheless sound:
9  *              * When a script dies, its fd is reopened
10  *              * If a script fails to execute, its fd is closed and reopened to
11  *              beat a race that can happen when the user closes the connection
12  *              before the script can be launched.
13  *)
14
15 open Inotify
16 open Unix
17 open Globals
18 open Dirwatcher
19 open Printf
20 open Splice
21
22 let close_if_open fd = (try (ignore(close fd);) with _ -> ())
23
24 type in_pathname = string
25 type directory = string
26 type base_pathname = string
27 type slice_name = string
28
29
30 let direct_fifo_table: (in_pathname,(directory*base_pathname*slice_name*Unix.file_descr) option) Hashtbl.t = 
31   Hashtbl.create 1024
32
33 let pidmap: (int,in_pathname * Unix.file_descr) Hashtbl.t = Hashtbl.create 1024
34
35 let rec list_check lst elt =
36   match lst with
37     | [] -> false
38     | car::cdr -> if (car==elt) then true else list_check cdr elt
39
40 let openentry_int fifoin =
41   let fdin =
42     try openfile fifoin [O_RDONLY;O_NONBLOCK] 0o777 with 
43         e->logprint "Error opening and connecting FIFO: %s,%o\n" fifoin 0o777;raise e
44   in
45     fdin
46
47 (** Open entry safely, by first masking out the file to be opened *)
48 let openentry_safe root_dir fqp_in backend_spec =
49   Dirwatcher.mask_watch fqp_in;
50   let fd_in = openentry_int fqp_in in
51     let (fqp,slice_name) = backend_spec in
52       Hashtbl.replace direct_fifo_table fqp_in (Some(root_dir,fqp,slice_name,fd_in))
53
54 let openentry root_dir fqp backend_spec =
55   () (*
56   let fqp_in = String.concat "." [fqp;"in"] in
57     openentry_safe root_dir fqp_in backend_spec*)
58
59 let reopenentry fifoin =
60   ()
61     (*
62   let entry = try Hashtbl.find direct_fifo_table fifoin with _ -> None in
63     match entry with
64       | Some(dir, fqp,slice_name,fd) -> close_if_open fd;openentry_safe dir fifoin (fqp,slice_name)
65       | None -> ()*)
66
67 (* vsys is activated when a client opens an in file *)
68 let connect_file fqp_in =
69   (* Do we care about this file? *)
70   let entry_info = try
71     Hashtbl.find direct_fifo_table fqp_in with _ -> None in
72     match entry_info with
73       | Some(_,execpath,slice_name,fifo_fdin) ->
74           begin
75             let len = String.length fqp_in in
76             let fqp = String.sub fqp_in 0 (len-3) in
77             let fqp_out = String.concat "." [fqp;"out"] in
78             let fifo_fdout =
79               try openfile fqp_out [O_WRONLY;O_NONBLOCK] 0o777 with
80                   _->logprint "%s Output pipe not open, using stdout in place of %s\n" slice_name fqp_out;stdout
81             in
82               ignore(sigprocmask SIG_BLOCK [Sys.sigchld]);
83               (
84                 clear_nonblock fifo_fdin;
85                 let pid=try Some(create_process execpath [|execpath;slice_name|] fifo_fdin fifo_fdout fifo_fdout) with e -> None in
86                   match pid with 
87                     | Some(pid) ->
88                         if (fifo_fdout <> stdout) then close_if_open fifo_fdout;
89                         Hashtbl.add pidmap pid (fqp_in,fifo_fdout)
90                     | None ->logprint "Error executing service: %s\n" execpath;reopenentry fqp_in
91               );
92               ignore(sigprocmask SIG_UNBLOCK [Sys.sigchld]);
93           end
94       | None -> ()
95
96
97 (** Make a pair of fifo entries *)
98 let mkentry fqp abspath perm uname = 
99   logprint "Making entry %s->%s\n" fqp abspath;
100   let fifoin=sprintf "%s.in" fqp in
101   let fifoout=sprintf "%s.out" fqp in
102     (try Unix.unlink fifoin with _ -> ());
103     (try Unix.unlink fifoout with _ -> ());
104     (try 
105        let infname =(sprintf "%s.in" fqp) in
106        let outfname =(sprintf "%s.out" fqp) in
107          Unix.mkfifo infname 0o666;
108          Unix.mkfifo outfname 0o666;
109          ( (* Make the user the owner of the pipes in a non-chroot environment *)
110            if (!Globals.nochroot) then
111              let pwentry = Unix.getpwnam uname in
112                Unix.chown infname pwentry.pw_uid pwentry.pw_gid; 
113                Unix.chown outfname pwentry.pw_uid pwentry.pw_gid
114          );
115          Success
116      with 
117          e->logprint "Error creating FIFO: %s->%s. May be something wrong at the frontend.\n" fqp fifoout;Failed)
118
119
120 (** Close fifos that just got removed *)
121 let closeentry fqp =
122   let fqp_in = String.concat "." [fqp;"in"] in
123   let entry = try Hashtbl.find direct_fifo_table fqp_in with Not_found -> None in
124     match entry with
125       | None -> ()
126       | Some(_,_,_,fd) -> 
127           close_if_open fd;
128           Hashtbl.remove direct_fifo_table fqp_in
129
130 let sigchld_handle s =
131   let pid,_=Unix.waitpid [Unix.WNOHANG] 0 in
132     try
133       let fqp_in,fd_out = Hashtbl.find pidmap pid in
134         begin
135           reopenentry fqp_in
136         end
137     with _ -> ()
138
139 let rec add_dir_watch fqp =
140   Dirwatcher.add_watch fqp [S_Open] direct_fifo_handler
141 and
142     direct_fifo_handler wd dirname evlist fname =
143   let is_event = list_check evlist in
144     if (is_event Open) then 
145       let fqp_in = String.concat "/" [dirname;fname] in
146           connect_file fqp_in
147
148 let del_dir_watch fqp =
149   ()
150
151 let initialize () =
152   Sys.set_signal Sys.sigchld (Sys.Signal_handle sigchld_handle)