diff options
| author | Ophestra Umiker <cat@ophivana.moe> | 2024-10-14 02:27:02 +0900 |
|---|---|---|
| committer | Ophestra Umiker <cat@ophivana.moe> | 2024-10-14 02:27:02 +0900 |
| commit | 1302bcede057538665a4eb626357409d8cb515e8 (patch) | |
| tree | c4cac4388ef7550c65cc69370175db35b79112d7 /internal/init/main.go | |
| parent | 315c9b8849ae7ad764035dc6ceddc0bc35cb0c95 (diff) | |
init: custom init process inside sandbox
Bubblewrap as init is a bit awkward and don't support a few setup actions fortify will need, such as starting/supervising nscd.
Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
Diffstat (limited to 'internal/init/main.go')
| -rw-r--r-- | internal/init/main.go | 164 |
1 files changed, 164 insertions, 0 deletions
diff --git a/internal/init/main.go b/internal/init/main.go new file mode 100644 index 00000000..074b5051 --- /dev/null +++ b/internal/init/main.go @@ -0,0 +1,164 @@ +package init0 + +import ( + "encoding/gob" + "errors" + "flag" + "fmt" + "os" + "os/exec" + "os/signal" + "path" + "strconv" + "syscall" + + "git.ophivana.moe/cat/fortify/internal/verbose" +) + +// everything beyond this point runs within pid namespace +// proceed with caution! + +func doInit(fd uintptr) { + // re-exec + if len(os.Args) > 0 && os.Args[0] != "fortify" && path.IsAbs(os.Args[0]) { + if err := syscall.Exec(os.Args[0], []string{"fortify", "init"}, os.Environ()); err != nil { + fmt.Println("fortify-init: cannot re-exec self:", err) + // continue anyway + } + } + + verbose.Prefix = "fortify-init:" + + var payload Payload + p := os.NewFile(fd, "config-stream") + if p == nil { + fmt.Println("fortify-init: invalid config descriptor") + os.Exit(1) + } + if err := gob.NewDecoder(p).Decode(&payload); err != nil { + fmt.Println("fortify-init: cannot decode init payload:", err) + os.Exit(1) + } else { + // sharing stdout with parent + // USE WITH CAUTION + verbose.Set(payload.Verbose) + + // child does not need to see this + if err = os.Unsetenv(EnvInit); err != nil { + fmt.Println("fortify-init: cannot unset", EnvInit+":", err) + // not fatal + } else { + verbose.Println("received configuration") + } + } + + // close config fd + if err := p.Close(); err != nil { + fmt.Println("fortify-init: cannot close config fd:", err) + // not fatal + } + + // die with parent + if _, _, errno := syscall.RawSyscall(syscall.SYS_PRCTL, syscall.PR_SET_PDEATHSIG, uintptr(syscall.SIGKILL), 0); errno != 0 { + fmt.Println("fortify-init: prctl(PR_SET_PDEATHSIG, SIGKILL):", errno.Error()) + os.Exit(1) + } + + cmd := exec.Command(payload.Argv0) + cmd.Stdin, cmd.Stdout, cmd.Stderr = os.Stdin, os.Stdout, os.Stderr + cmd.Args = payload.Argv + cmd.Env = os.Environ() + + // pass wayland fd + if payload.WL != -1 { + if f := os.NewFile(uintptr(payload.WL), "wayland"); f != nil { + cmd.Env = append(cmd.Env, "WAYLAND_SOCKET="+strconv.Itoa(3+len(cmd.ExtraFiles))) + cmd.ExtraFiles = append(cmd.ExtraFiles, f) + } + } + + if err := cmd.Start(); err != nil { + fmt.Printf("fortify-init: cannot start %q: %v", payload.Argv0, err) + os.Exit(1) + } + + sig := make(chan os.Signal, 2) + signal.Notify(sig, syscall.SIGINT, syscall.SIGTERM) + + type winfo struct { + wpid int + wstatus syscall.WaitStatus + } + info := make(chan winfo, 1) + done := make(chan struct{}) + + go func() { + var ( + err error + wpid = -2 + wstatus syscall.WaitStatus + ) + + // keep going until no child process is left + for wpid != -1 { + if err != nil { + break + } + + if wpid != -2 { + info <- winfo{wpid, wstatus} + } + + err = syscall.EINTR + for errors.Is(err, syscall.EINTR) { + wpid, err = syscall.Wait4(-1, &wstatus, 0, nil) + } + } + if !errors.Is(err, syscall.ECHILD) { + fmt.Println("fortify-init: unexpected wait4 response:", err) + } + + close(done) + }() + + r := 2 + for { + select { + case s := <-sig: + verbose.Println("received", s.String()) + os.Exit(0) + case w := <-info: + if w.wpid == cmd.Process.Pid { + switch { + case w.wstatus.Exited(): + r = w.wstatus.ExitStatus() + case w.wstatus.Signaled(): + r = 128 + int(w.wstatus.Signal()) + default: + r = 255 + } + } + case <-done: + os.Exit(r) + } + } +} + +// Try runs init and stops execution if FORTIFY_INIT is set. +func Try() { + if os.Getpid() != 1 { + return + } + + if args := flag.Args(); len(args) == 1 && args[0] == "init" { + if s, ok := os.LookupEnv(EnvInit); ok { + if fd, err := strconv.Atoi(s); err != nil { + fmt.Printf("fortify-init: cannot parse %q: %v", s, err) + os.Exit(1) + } else { + doInit(uintptr(fd)) + } + panic("unreachable") + } + } +} |
