Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix luv signals (issue #400) #412

Merged
merged 1 commit into from
Jan 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 32 additions & 2 deletions lib_eio_luv/eio_luv.ml
Original file line number Diff line number Diff line change
Expand Up @@ -1186,7 +1186,7 @@ let rec wakeup ~async ~io_queued run_q =
Luv.Async.send async |> or_raise
| None -> ()

let rec run : type a. (_ -> a) -> a = fun main ->
let rec run2 : type a. (_ -> a) -> a = fun main ->
let loop = Luv.Loop.init () |> or_raise in
let run_q = Lf_queue.create () in
let io_queued = ref false in
Expand All @@ -1198,7 +1198,7 @@ let rec run : type a. (_ -> a) -> a = fun main ->
Luv.Loop.stop loop
) |> or_raise in
let st = { loop; async; run_q; fd_map = Fd_map.empty } in
let stdenv = stdenv ~run_event_loop:run in
let stdenv = stdenv ~run_event_loop:run2 in
let rec fork ~new_fiber:fiber fn =
Ctf.note_switch (Fiber_context.tid fiber);
let open Effect.Deep in
Expand Down Expand Up @@ -1304,3 +1304,33 @@ let rec run : type a. (_ -> a) -> a = fun main ->
| `Done v -> v
| `Ex (ex, bt) -> Printexc.raise_with_backtrace ex bt
| `Running -> failwith "Deadlock detected: no events scheduled but main function hasn't returned"

let start_signal_thread () =
let all = List.init 64 (fun x -> x) in
let omask = Thread.sigmask SIG_SETMASK all in
let inp, outp = Unix.pipe ~cloexec:true () in
let tid =
Thread.create
(fun () ->
Thread.sigmask SIG_SETMASK [] |> ignore;
let bytes = Bytes.create 1 in
let rec loop () =
match Unix.read inp bytes 0 1 with
| exception Unix.Unix_error (Unix.EINTR, _, _) -> loop ()
| 0 -> Unix.close inp
| _ -> failwith "signal pipe didn't return EOF or EINTR"
in
loop ()
) ()
in
tid, omask, outp

let stop_signal_thread (tid, omask, outp) =
Unix.close outp;
Thread.join tid;
Unix.sigprocmask SIG_SETMASK omask |> ignore

let run main =
let sigctx = start_signal_thread () in
Fun.protect (fun () -> run2 main)
~finally:(fun () -> stop_signal_thread sigctx)
39 changes: 39 additions & 0 deletions tests/signal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Setting up the environment

```ocaml
# #require "eio_main";;
# open Eio.Std;;
```

# Test cases

Prove we can catch sigint:
```ocaml
# Eio_main.run @@ fun _stdenv ->
let interrupted = Eio.Condition.create () in
let old = Sys.signal Sys.sigint
(Signal_handle (fun num -> if num = Sys.sigint then Eio.Condition.broadcast interrupted))
in
Fiber.both
(fun () ->
Eio.Condition.await_no_mutex interrupted;
traceln "interrupted!";
)
(fun () ->
let ppid = Unix.getpid () in
match Unix.fork () with
| 0 ->
Unix.kill ppid Sys.sigint;
Unix._exit 0
| child_pid ->
let wait () =
let pid, status = Unix.waitpid [] child_pid in
assert (pid = child_pid);
assert (status = (Unix.WEXITED 0))
in
try wait () with Unix.Unix_error (Unix.EINTR, _, _) -> wait ()
);
Sys.set_signal Sys.sigint old;;
+interrupted!
- : unit = ()
```