Add 'whenjobs --whisper' which lets you set variables "quietly".
[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_file (); `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. *)
294 and reload_file () =
295   let file = sprintf "%s/jobs.cmo" !jobsdir in
296
297   (* As we are reloading the file, we want to create a new state
298    * that has no jobs, but has all the variables from the previous
299    * state.
300    *)
301   let s = Whenstate.copy_variables !state Whenstate.empty in
302   Whenfile.init s;
303
304   let s =
305     try
306       Dynlink.loadfile file;
307       let s = Whenfile.get_state () in
308       Syslog.notice "loaded %d job(s) from %s" (Whenstate.nr_jobs s) file;
309       s
310     with
311     | Dynlink.Error err ->
312       let err = Dynlink.error_message err in
313       Syslog.error "error loading jobs: %s" err;
314       failwith err
315     | exn ->
316       failwith (Printexc.to_string exn) in
317
318   let s = Whenstate.copy_prev_state !state s in
319   state := s;
320
321   (* Re-evaluate all when jobs. *)
322   let jobs = Whenstate.get_whenjobs !state in
323   let jobnames, state' = reevaluate_whenjobs ~onload:true !state jobs in
324   let state' = run_whenjobs state' jobnames in
325   state := state';
326
327   (* Schedule the next every job to run. *)
328   schedule_next_everyjob ()
329
330 (* Re-evaluate each when-statement job, in a loop until we reach
331  * a fixpoint.  Return the list of job names that should run and
332  * the updated state.
333  *)
334 and reevaluate_whenjobs ?onload state jobs =
335   let rec loop (set, state) jobs =
336     let set', state' =
337       List.fold_left (
338         fun (set, state) job ->
339           let r, state' =
340             try Whenstate.evaluate_whenjob ?onload state job
341             with Invalid_argument err | Failure err ->
342               Syslog.error "error evaluating job %s (at %s): %s"
343                 job.job_name (Camlp4.PreCast.Ast.Loc.to_string job.job_loc) err;
344               false, state in
345
346           if !debug then
347             Syslog.notice "evaluate %s -> %b\n" job.job_name r;
348
349           (if r then StringSet.add job.job_name set else set), state'
350       ) (set, state) jobs in
351     (* reached a fixpoint? *)
352     if StringSet.compare set set' <> 0 then
353       loop (set', state') jobs
354     else
355       (set', state')
356   in
357   let set, state = loop (StringSet.empty, state) jobs in
358   let jobnames = StringSet.elements set in
359
360   (* Ensure the jobs always run in predictable (name) order. *)
361   let jobnames = List.sort compare_jobnames jobnames in
362   jobnames, state
363
364 and run_whenjobs state jobnames =
365   (* Run the jobs. *)
366   let jobs = List.map (Whenstate.get_job state) jobnames in
367   List.fold_left run_job state jobs
368
369 (* Schedule the next every-statement job to run, if there is one.  We
370  * look at the every jobs, work out the time that each must run at,
371  * pick the job(s) which must run soonest, and schedule a timer to run
372  * them.  When the timer fires, it runs those jobs, then calls this
373  * function again.
374  *)
375 and schedule_next_everyjob () =
376   let t = time () in
377
378   (* Get only everyjobs. *)
379   let jobs = Whenstate.get_everyjobs !state in
380   let jobs = List.map (
381     function
382     | { job_cond = Every_job period } as job -> (job, period)
383     | { job_cond = When_job _ } -> assert false
384   ) jobs in
385
386   (* Map everyjob to next time it must run. *)
387   let jobs = List.map (
388     fun (job, period) ->
389       let t' = next_periodexpr t period in
390       assert (t' > t); (* serious bug in next_periodexpr if false *)
391       job, t'
392   ) jobs in
393
394   (* Sort, soonest first. *)
395   let jobs = List.sort (fun (_,a) (_,b) -> compare a b) jobs in
396
397   if !debug then (
398     List.iter (
399       fun (job, t) ->
400         Syslog.notice "%s: next scheduled run at %s"
401           job.job_name (string_of_time_t t)
402     ) jobs
403   );
404
405   (* Pick the job(s) which run soonest. *)
406   let rec pick = function
407     | [] -> 0., []
408     | [j, t] -> t, [j]
409     | (j1, t) :: (j2, t') :: _ when t < t' -> t, [j1]
410     | (j1, t) :: (((j2, t') :: _) as rest) -> t, (j1 :: snd (pick rest))
411   in
412   let t, jobs = pick jobs in
413
414   if t > 0. then (
415     if jobs <> [] then (
416       (* Ensure the jobs always run in predictable (name) order. *)
417       let jobs =
418         List.sort (fun {job_name = a} {job_name = b} -> compare_jobnames a b)
419           jobs in
420
421       if !debug then
422         Syslog.notice "scheduling job(s) %s to run at %s"
423           (String.concat ", " (List.map (fun { job_name = name } -> name) jobs))
424           (string_of_time_t t);
425
426       (* Schedule them to run at time t. *)
427       let g = new_timer_group () in
428       let t_diff = t -. Unix.time () in
429       let t_diff = if t_diff < 0. then 0. else t_diff in
430       let run_jobs () =
431         delete_timer_group ();          (* Delete the timer. *)
432         let state' = List.fold_left run_job !state jobs in
433         state := state';
434         schedule_next_everyjob ()
435       in
436       Unixqueue.weak_once esys g t_diff run_jobs;
437     )
438   )
439
440 and new_timer_group () =
441   delete_timer_group ();
442   let g = Unixqueue.new_group esys in
443   timer_group := Some g;
444   g
445
446 and delete_timer_group () =
447   match !timer_group with
448   | None -> ()
449   | Some g ->
450     Unixqueue.clear esys g;
451     timer_group := None
452
453 and run_job state job =
454   (* Increment JOBSERIAL. *)
455   let serial, state =
456     match Whenstate.get_variable state "JOBSERIAL" with
457     | T_int serial ->
458       let serial = succ_big_int serial in
459       let state' = Whenstate.set_variable state "JOBSERIAL" (T_int serial) in
460       serial, state'
461     | _ -> assert false in
462
463   (* Call the pre-condition script.  Note this may decide not to run
464    * the job by returning false.
465    *)
466   let pre_condition () =
467     match job.job_pre with
468     | None -> true
469     | Some pre ->
470       let rs = ref [] in
471       IntMap.iter (
472         fun pid (job, _, serial, start_time) ->
473           let r = { pirun_job_name = job.job_name;
474                     pirun_serial = serial;
475                     pirun_start_time = start_time;
476                     pirun_pid = pid } in
477           rs := r :: !rs
478       ) !runningmap;
479       let preinfo = {
480         pi_job_name = job.job_name;
481         pi_serial = serial;
482         pi_variables = Whenstate.get_variables state;
483         pi_running = !rs;
484       } in
485       pre preinfo
486   in
487   if pre_condition () then (
488     Syslog.notice "running %s (JOBSERIAL=%s)"
489       job.job_name (string_of_big_int serial);
490
491     (* Create a temporary directory.  The current directory of the job
492      * will be in this directory.  The directory is removed when the
493      * child process exits.
494      *)
495     let dir = tmpdir () in
496
497     let pid = fork () in
498     if pid = 0 then ( (* child process running the job *)
499       chdir dir;
500
501       (* Set environment variables corresponding to each variable. *)
502       List.iter
503         (fun (name, value) -> putenv name (string_of_variable value))
504         (Whenstate.get_variables state);
505
506       (* Set the $JOBNAME environment variable. *)
507       putenv "JOBNAME" job.job_name;
508
509       (* Create a temporary file containing the shell script fragment. *)
510       let script = dir // "script.sh" in
511       let chan = open_out script in
512       fprintf chan "set -e\n"; (* So that jobs exit on error. *)
513       output_string chan job.job_script.sh_script;
514       close_out chan;
515       chmod script 0o700;
516
517       let shell = try getenv "SHELL" with Not_found -> "/bin/sh" in
518
519       (* Set output to file. *)
520       let output = dir // "output.txt" in
521       let fd = openfile output [O_WRONLY; O_CREAT; O_TRUNC; O_NOCTTY] 0o600 in
522       dup2 fd stdout;
523       dup2 fd stderr;
524       close fd;
525
526       (* Execute the shell script. *)
527       (try execvp shell [| shell; "-c"; script |];
528        with Unix_error (err, fn, _) ->
529          Syslog.error "%s failed: %s: %s" fn script (error_message err)
530       );
531       _exit 1
532     );
533
534     (* Remember this PID, the job and the temporary directory, so we
535      * can clean up when the child exits.
536      *)
537     runningmap := IntMap.add pid (job, dir, serial, time ()) !runningmap;
538     serialmap := BigIntMap.add serial pid !serialmap;
539
540     state
541   )
542   else (
543     Syslog.notice "not running %s (JOBSERIAL=%s) because pre() condition returned false"
544       job.job_name (string_of_big_int serial);
545
546     state
547   )
548
549 and tmpdir () =
550   let chan = open_in "/dev/urandom" in
551   let data = String.create 16 in
552   really_input chan data 0 (String.length data);
553   close_in chan;
554   let data = Digest.to_hex (Digest.string data) in
555   let dir = Filename.temp_dir_name // sprintf "whenjobs%s" data in
556   mkdir dir 0o700;
557   dir
558
559 (* This is called when a job (child process) exits. *)
560 and handle_sigchld _ =
561   try
562     let pid, status = waitpid [WNOHANG] 0 in
563     if pid > 0 then (
564       (* Look up the PID in the running jobs map. *)
565       let job, dir, serial, time = IntMap.find pid !runningmap in
566       runningmap := IntMap.remove pid !runningmap;
567       serialmap := BigIntMap.remove serial !serialmap;
568       post_job job dir serial time status
569     )
570   with Unix_error _ | Not_found -> ()
571
572 and post_job job dir serial time status =
573   (* If there is a post function, run it. *)
574   (match job.job_post with
575   | None -> ()
576   | Some post ->
577     let code =
578       match status with
579       | WEXITED c -> c
580       | WSIGNALED s | WSTOPPED s -> 1 in
581     let result = {
582       res_job_name = job.job_name;
583       res_serial = serial;
584       res_code = code;
585       res_tmpdir = dir;
586       res_output = dir // "output.txt";
587       res_start_time = time
588     } in
589     try post result
590     with
591     | Failure msg ->
592       Syslog.error "job %s post function failed: %s" job.job_name msg
593     | exn ->
594       Syslog.error "job %s post function exception: %s"
595         job.job_name (Printexc.to_string exn)
596   );
597
598   (* This should be safe because the path cannot contain shell metachars. *)
599   let cmd = sprintf "rm -rf '%s'" dir in
600   ignore (Sys.command cmd)
601
602 (* Intelligent comparison of job names. *)
603 and compare_jobnames name1 name2 =
604   try
605     let len1 = String.length name1
606     and len2 = String.length name2 in
607     if len1 > 4 && len2 > 4 &&
608       String.sub name1 0 4 = "job$" && String.sub name2 0 4 = "job$"
609     then (
610       let i1 = int_of_string (String.sub name1 4 (len1-4)) in
611       let i2 = int_of_string (String.sub name2 4 (len2-4)) in
612       compare i1 i2
613     )
614     else raise Not_found
615   with _ ->
616     compare name1 name2
617
618 let main_loop () =
619   Unixqueue.run esys