Version 0.7.0.
[whenjobs.git] / daemon / daemon.ml
1 (* whenjobs
2  * Copyright (C) 2012 Red Hat Inc.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  *)
18
19 open Whenutils
20 open Whenexpr
21
22 open Big_int
23 open Unix
24 open Printf
25
26 (* See [exit.c]. *)
27 external _exit : int -> 'a = "whenjobs__exit"
28
29 (* $HOME/.whenjobs *)
30 let jobsdir = ref ""
31
32 (* The state. *)
33 let state = ref Whenstate.empty
34
35 (* Jobs that are running: a map of PID -> (job, tmpdir, serial, start_time).
36  * Note that the job may no longer exist *OR* it may have been renamed,
37  * eg. if the jobs file was reloaded.
38  *)
39 let runningmap = ref IntMap.empty
40
41 (* Serial numbers of running jobs.  Map of serial -> PID (in runningmap). *)
42 let serialmap = ref BigIntMap.empty
43
44 (* Was debugging requested on the command line? *)
45 let debug = ref false
46
47 (* The server. *)
48 let server = ref None
49
50 let esys = Unixqueue.standard_event_system ()
51
52 (* The timer.  It's convenient to have this as a global variable
53  * because (a) there should only be one timer (which fires when the
54  * soonest every-job becomes ready), and (b) it's complicated to track
55  * that timer and avoid it getting double-scheduled (eg.  when we
56  * reload the jobs file) without having a global variable.
57  *)
58 let timer_group = ref None
59
60 let rec init j d =
61   jobsdir := j;
62   debug := d;
63
64   Whenlock.create_lock !jobsdir;
65
66   (* Remove old socket if it exists. *)
67   let addr = sprintf "%s/socket" !jobsdir in
68   (try unlink addr with Unix_error _ -> ());
69
70   (* Create the Unix domain socket server. *)
71   server := Some (
72     Whenproto_srv.When.V1.create_server
73       ~proc_reload_file
74       ~proc_set_variable
75       ~proc_get_variable
76       ~proc_get_variable_names
77       ~proc_exit_daemon
78       ~proc_get_jobs
79       ~proc_cancel_job
80       ~proc_start_job
81       ~proc_get_job
82       ~proc_set_variables
83       ~proc_get_job_names
84       ~proc_test_variables
85       ~proc_ping_daemon
86       ~proc_whisper_variables
87       (Rpc_server.Unix addr)
88       Rpc.Tcp (* not TCP, this is the same as SOCK_STREAM *)
89       Rpc.Socket
90       esys
91   );
92
93   (* Handle SIGCHLD to clean up jobs. *)
94   Sys.set_signal Sys.sigchld (Sys.Signal_handle handle_sigchld);
95
96   (* Initialize the variables. *)
97   state := Whenstate.set_variable !state "JOBSERIAL" (T_int zero_big_int)
98
99 and proc_reload_file () =
100   if !debug then Syslog.notice "remote call: reload_file";
101
102   try reload_files (); `ok
103   with Failure err -> `error err
104
105 and proc_set_variable (name, value) =
106   if !debug then Syslog.notice "remote call: set_variable %s" name;
107
108   try
109     check_valid_variable_name name;
110
111     let value = variable_of_rpc value in
112     state := Whenstate.set_variable !state name value;
113
114     (* Which jobs need to be re-evaluated? *)
115     let jobs = Whenstate.get_dependencies !state [name] in
116     let jobnames, state' = reevaluate_whenjobs !state jobs in
117     let state' = run_whenjobs state' jobnames in
118     state := state';
119
120     `ok
121   with
122     Failure msg -> `error msg
123
124 and proc_get_variable name =
125   if !debug then Syslog.notice "remote call: get_variable %s" name;
126
127   rpc_of_variable (Whenstate.get_variable !state name)
128
129 and proc_get_variable_names () =
130   if !debug then Syslog.notice "remote call: get_variable_names";
131
132   let vars = Whenstate.get_variable_names !state in
133
134   (* Return variable names as a sorted array. *)
135   let vars = Array.of_list vars in
136   Array.sort compare vars;
137   vars
138
139 and proc_exit_daemon () =
140   if !debug then Syslog.notice "remote call: exit_daemon";
141
142   match !server with
143   | None ->
144     `error "exit_daemon: no server handle"
145   | Some s ->
146     Rpc_server.stop_server ~graceful:true s;
147     server := None;
148     `ok
149
150 and proc_get_jobs () =
151   let running = Array.of_list (IntMap.values !runningmap) in
152   Array.map (
153     fun (job, dir, serial, start_time) ->
154       { Whenproto_aux.job_name = job.job_name;
155         job_serial = string_of_big_int serial;
156         job_tmpdir = dir; job_start_time = Int64.of_float start_time }
157   ) running
158
159 and proc_cancel_job serial =
160   try
161     let serial = big_int_of_string serial in
162     let pid = BigIntMap.find serial !serialmap in
163     kill pid 15;
164     `ok
165   with
166   | Not_found -> `error "job not found"
167   | exn -> `error (Printexc.to_string exn)
168
169 and proc_start_job jobname =
170   try
171     let job = Whenstate.get_job !state jobname in
172     let state' = run_job !state job in
173     state := state';
174     `ok
175   with
176   | Not_found -> `error "job not found"
177   | exn -> `error (Printexc.to_string exn)
178
179 and proc_get_job serial =
180   try
181     let serial = big_int_of_string serial in
182     let pid = BigIntMap.find serial !serialmap in
183     let job, dir, serial, start_time = IntMap.find pid !runningmap in
184     { Whenproto_aux.job_name = job.job_name;
185       job_serial = string_of_big_int serial;
186       job_tmpdir = dir; job_start_time = Int64.of_float start_time }
187   with
188   | Not_found -> failwith "job not found"
189   | exn -> failwith (Printexc.to_string exn)
190
191 and proc_set_variables vars =
192   try
193     let vars = Array.map (
194       fun { Whenproto_aux.sv_name = name; sv_value = value } ->
195         name, variable_of_rpc value
196     ) vars in
197     let vars = Array.to_list vars in
198
199     if !debug then
200       Syslog.notice "remote call: set_variables (%s)"
201         (String.concat " "
202            (List.map (
203              fun (name, value) ->
204                sprintf "%s=%s" name (string_of_variable value)
205             ) vars));
206
207     List.iter (fun (name, _) -> check_valid_variable_name name) vars;
208
209     (* Update all the variables atomically. *)
210     let s = List.fold_left (
211       fun s (name, value) -> Whenstate.set_variable s name value
212     ) !state vars in
213     state := s;
214
215     (* Which jobs need to be re-evaluated? *)
216     let jobs = Whenstate.get_dependencies !state (List.map fst vars) in
217     let jobnames, state' = reevaluate_whenjobs !state jobs in
218     let state' = run_whenjobs state' jobnames in
219     state := state';
220
221     `ok
222   with
223     Failure msg -> `error msg
224
225 and proc_get_job_names () =
226   Array.of_list (Whenstate.get_job_names !state)
227
228 and proc_test_variables vars =
229   (* This is the same as proc_set_variables, except that it doesn't
230    * update the state, it just returns the jobs that *would* run if
231    * these variables were set to these values.
232    *)
233   let vars = Array.map (
234     fun { Whenproto_aux.sv_name = name; sv_value = value } ->
235       name, variable_of_rpc value
236   ) vars in
237   let vars = Array.to_list vars in
238
239   if !debug then
240     Syslog.notice "remote call: test_variables (%s)"
241       (String.concat " "
242          (List.map (
243            fun (name, value) ->
244              sprintf "%s=%s" name (string_of_variable value)
245           ) vars));
246
247   List.iter (fun (name, _) -> check_valid_variable_name name) vars;
248
249   (* Update all the variables atomically. *)
250   let state = List.fold_left (
251     fun s (name, value) -> Whenstate.set_variable s name value
252   ) !state vars in
253
254   (* Which jobs WOULD be re-evaluated? *)
255   let jobs = Whenstate.get_dependencies state (List.map fst vars) in
256   let jobnames, _ = reevaluate_whenjobs state jobs in
257
258   (* Return the names. *)
259   Array.of_list jobnames
260
261 and proc_ping_daemon () = `ok
262
263 and proc_whisper_variables vars =
264   try
265     let vars = Array.map (
266       fun { Whenproto_aux.sv_name = name; sv_value = value } ->
267         name, variable_of_rpc value
268     ) vars in
269     let vars = Array.to_list vars in
270
271     if !debug then
272       Syslog.notice "remote call: whisper_variables (%s)"
273         (String.concat " "
274            (List.map (
275              fun (name, value) ->
276                sprintf "%s=%s" name (string_of_variable value)
277             ) vars));
278
279     List.iter (fun (name, _) -> check_valid_variable_name name) vars;
280
281     (* Update all the variables atomically. *)
282     let s = List.fold_left (
283       fun s (name, value) -> Whenstate.set_variable s name value
284     ) !state vars in
285     state := s;
286
287     (* .. but don't reevaluate or run jobs. *)
288
289     `ok
290   with
291     Failure msg -> `error msg
292
293 (* Reload the jobs file(s). *)
294 and reload_files () =
295   (* Get dir/*.cmo *)
296   let dir = !jobsdir in
297   let files = Array.to_list (Sys.readdir dir) in
298   let files = List.filter (
299     fun file ->
300       let n = String.length file in
301       n >= 5 && String.sub file (n-4) 4 = ".cmo"
302   ) files in
303   let files = List.map (fun file -> dir // file) files in
304   let files = List.sort compare files in
305
306   (* As we are reloading the file, we want to create a new state
307    * that has no jobs, but has all the variables from the previous
308    * state.
309    *)
310   let s = Whenstate.copy_variables !state Whenstate.empty in
311   Whenfile.init s;
312
313   let s =
314     try
315       List.iter Dynlink.loadfile files;
316       let s = Whenfile.get_state () in
317       Syslog.notice "loaded %d job(s) from %d file(s)"
318         (Whenstate.nr_jobs s) (List.length files);
319       s
320     with
321     | Dynlink.Error err ->
322       let err = Dynlink.error_message err in
323       Syslog.error "error loading jobs: %s" err;
324       failwith err
325     | exn ->
326       failwith (Printexc.to_string exn) in
327
328   let s = Whenstate.copy_prev_state !state s in
329   state := s;
330
331   (* Re-evaluate all when jobs. *)
332   let jobs = Whenstate.get_whenjobs !state in
333   let jobnames, state' = reevaluate_whenjobs ~onload:true !state jobs in
334   let state' = run_whenjobs state' jobnames in
335   state := state';
336
337   (* Schedule the next every job to run. *)
338   schedule_next_everyjob ()
339
340 (* Re-evaluate each when-statement job, in a loop until we reach
341  * a fixpoint.  Return the list of job names that should run and
342  * the updated state.
343  *)
344 and reevaluate_whenjobs ?onload state jobs =
345   let rec loop (set, state) jobs =
346     let set', state' =
347       List.fold_left (
348         fun (set, state) job ->
349           let r, state' =
350             try Whenstate.evaluate_whenjob ?onload state job
351             with Invalid_argument err | Failure err ->
352               Syslog.error "error evaluating job %s (at %s): %s"
353                 job.job_name (Camlp4.PreCast.Ast.Loc.to_string job.job_loc) err;
354               false, state in
355
356           if !debug then
357             Syslog.notice "evaluate %s -> %b\n" job.job_name r;
358
359           (if r then StringSet.add job.job_name set else set), state'
360       ) (set, state) jobs in
361     (* reached a fixpoint? *)
362     if StringSet.compare set set' <> 0 then
363       loop (set', state') jobs
364     else
365       (set', state')
366   in
367   let set, state = loop (StringSet.empty, state) jobs in
368   let jobnames = StringSet.elements set in
369
370   (* Ensure the jobs always run in predictable (name) order. *)
371   let jobnames = List.sort compare_jobnames jobnames in
372   jobnames, state
373
374 and run_whenjobs state jobnames =
375   (* Run the jobs. *)
376   let jobs = List.map (Whenstate.get_job state) jobnames in
377   List.fold_left run_job state jobs
378
379 (* Schedule the next every-statement job to run, if there is one.  We
380  * look at the every jobs, work out the time that each must run at,
381  * pick the job(s) which must run soonest, and schedule a timer to run
382  * them.  When the timer fires, it runs those jobs, then calls this
383  * function again.
384  *)
385 and schedule_next_everyjob () =
386   let t = time () in
387
388   (* Get only everyjobs. *)
389   let jobs = Whenstate.get_everyjobs !state in
390   let jobs = List.map (
391     function
392     | { job_cond = Every_job period } as job -> (job, period)
393     | { job_cond = When_job _ } -> assert false
394   ) jobs in
395
396   (* Map everyjob to next time it must run. *)
397   let jobs = List.map (
398     fun (job, period) ->
399       let t' = next_periodexpr t period in
400       assert (t' > t); (* serious bug in next_periodexpr if false *)
401       job, t'
402   ) jobs in
403
404   (* Sort, soonest first. *)
405   let jobs = List.sort (fun (_,a) (_,b) -> compare a b) jobs in
406
407   if !debug then (
408     List.iter (
409       fun (job, t) ->
410         Syslog.notice "%s: next scheduled run at %s"
411           job.job_name (string_of_time_t t)
412     ) jobs
413   );
414
415   (* Pick the job(s) which run soonest. *)
416   let rec pick = function
417     | [] -> 0., []
418     | [j, t] -> t, [j]
419     | (j1, t) :: (j2, t') :: _ when t < t' -> t, [j1]
420     | (j1, t) :: (((j2, t') :: _) as rest) -> t, (j1 :: snd (pick rest))
421   in
422   let t, jobs = pick jobs in
423
424   if t > 0. then (
425     if jobs <> [] then (
426       (* Ensure the jobs always run in predictable (name) order. *)
427       let jobs =
428         List.sort (fun {job_name = a} {job_name = b} -> compare_jobnames a b)
429           jobs in
430
431       if !debug then
432         Syslog.notice "scheduling job(s) %s to run at %s"
433           (String.concat ", " (List.map (fun { job_name = name } -> name) jobs))
434           (string_of_time_t t);
435
436       (* Schedule them to run at time t. *)
437       let g = new_timer_group () in
438       let t_diff = t -. Unix.time () in
439       let t_diff = if t_diff < 0. then 0. else t_diff in
440       let run_jobs () =
441         delete_timer_group ();          (* Delete the timer. *)
442         let state' = List.fold_left run_job !state jobs in
443         state := state';
444         schedule_next_everyjob ()
445       in
446       Unixqueue.weak_once esys g t_diff run_jobs;
447     )
448   )
449
450 and new_timer_group () =
451   delete_timer_group ();
452   let g = Unixqueue.new_group esys in
453   timer_group := Some g;
454   g
455
456 and delete_timer_group () =
457   match !timer_group with
458   | None -> ()
459   | Some g ->
460     Unixqueue.clear esys g;
461     timer_group := None
462
463 and run_job state job =
464   (* Increment JOBSERIAL. *)
465   let serial, state =
466     match Whenstate.get_variable state "JOBSERIAL" with
467     | T_int serial ->
468       let serial = succ_big_int serial in
469       let state' = Whenstate.set_variable state "JOBSERIAL" (T_int serial) in
470       serial, state'
471     | _ -> assert false in
472
473   (* Call the pre-condition script.  Note this may decide not to run
474    * the job by returning false.
475    *)
476   let pre_condition () =
477     match job.job_pre with
478     | None -> true
479     | Some pre ->
480       let rs = ref [] in
481       IntMap.iter (
482         fun pid (job, _, serial, start_time) ->
483           let r = { pirun_job_name = job.job_name;
484                     pirun_serial = serial;
485                     pirun_start_time = start_time;
486                     pirun_pid = pid } in
487           rs := r :: !rs
488       ) !runningmap;
489       let preinfo = {
490         pi_job_name = job.job_name;
491         pi_serial = serial;
492         pi_variables = Whenstate.get_variables state;
493         pi_running = !rs;
494       } in
495       pre preinfo
496   in
497   if pre_condition () then (
498     Syslog.notice "running %s (JOBSERIAL=%s)"
499       job.job_name (string_of_big_int serial);
500
501     (* Create a temporary directory.  The current directory of the job
502      * will be in this directory.  The directory is removed when the
503      * child process exits.
504      *)
505     let dir = tmpdir () in
506
507     let pid = fork () in
508     if pid = 0 then ( (* child process running the job *)
509       chdir dir;
510
511       (* Set environment variables corresponding to each variable. *)
512       List.iter
513         (fun (name, value) -> putenv name (string_of_variable value))
514         (Whenstate.get_variables state);
515
516       (* Set the $JOBNAME environment variable. *)
517       putenv "JOBNAME" job.job_name;
518
519       (* Create a temporary file containing the shell script fragment. *)
520       let script = dir // "script.sh" in
521       let chan = open_out script in
522       fprintf chan "set -e\n"; (* So that jobs exit on error. *)
523       output_string chan job.job_script.sh_script;
524       close_out chan;
525       chmod script 0o700;
526
527       let shell = try getenv "SHELL" with Not_found -> "/bin/sh" in
528
529       (* Set output to file. *)
530       let output = dir // "output.txt" in
531       let fd = openfile output [O_WRONLY; O_CREAT; O_TRUNC; O_NOCTTY] 0o600 in
532       dup2 fd stdout;
533       dup2 fd stderr;
534       close fd;
535
536       (* Execute the shell script. *)
537       (try execvp shell [| shell; "-c"; script |];
538        with Unix_error (err, fn, _) ->
539          Syslog.error "%s failed: %s: %s" fn script (error_message err)
540       );
541       _exit 1
542     );
543
544     (* Remember this PID, the job and the temporary directory, so we
545      * can clean up when the child exits.
546      *)
547     runningmap := IntMap.add pid (job, dir, serial, time ()) !runningmap;
548     serialmap := BigIntMap.add serial pid !serialmap;
549
550     state
551   )
552   else (
553     Syslog.notice "not running %s (JOBSERIAL=%s) because pre() condition returned false"
554       job.job_name (string_of_big_int serial);
555
556     state
557   )
558
559 and tmpdir () =
560   let chan = open_in "/dev/urandom" in
561   let data = String.create 16 in
562   really_input chan data 0 (String.length data);
563   close_in chan;
564   let data = Digest.to_hex (Digest.string data) in
565   let dir = Filename.temp_dir_name // sprintf "whenjobs%s" data in
566   mkdir dir 0o700;
567   dir
568
569 (* This is called when a job (child process) exits. *)
570 and handle_sigchld _ =
571   try
572     let pid, status = waitpid [WNOHANG] 0 in
573     if pid > 0 then (
574       (* Look up the PID in the running jobs map. *)
575       let job, dir, serial, time = IntMap.find pid !runningmap in
576       runningmap := IntMap.remove pid !runningmap;
577       serialmap := BigIntMap.remove serial !serialmap;
578       post_job job dir serial time status
579     )
580   with Unix_error _ | Not_found -> ()
581
582 and post_job job dir serial time status =
583   (* If there is a post function, run it. *)
584   (match job.job_post with
585   | None -> ()
586   | Some post ->
587     let code =
588       match status with
589       | WEXITED c -> c
590       | WSIGNALED s | WSTOPPED s -> 1 in
591     let result = {
592       res_job_name = job.job_name;
593       res_serial = serial;
594       res_code = code;
595       res_tmpdir = dir;
596       res_output = dir // "output.txt";
597       res_start_time = time
598     } in
599     try post result
600     with
601     | Failure msg ->
602       Syslog.error "job %s post function failed: %s" job.job_name msg
603     | exn ->
604       Syslog.error "job %s post function exception: %s"
605         job.job_name (Printexc.to_string exn)
606   );
607
608   (* This should be safe because the path cannot contain shell metachars. *)
609   let cmd = sprintf "rm -rf '%s'" dir in
610   ignore (Sys.command cmd)
611
612 (* Intelligent comparison of job names. *)
613 and compare_jobnames name1 name2 =
614   try
615     let len1 = String.length name1
616     and len2 = String.length name2 in
617     if len1 > 4 && len2 > 4 &&
618       String.sub name1 0 4 = "job$" && String.sub name2 0 4 = "job$"
619     then (
620       let i1 = int_of_string (String.sub name1 4 (len1-4)) in
621       let i2 = int_of_string (String.sub name2 4 (len2-4)) in
622       compare i1 i2
623     )
624     else raise Not_found
625   with _ ->
626     compare name1 name2
627
628 let main_loop () =
629   Unixqueue.run esys