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