diff options
| author | Ophestra Umiker <cat@ophivana.moe> | 2024-10-11 01:55:33 +0900 |
|---|---|---|
| committer | Ophestra Umiker <cat@ophivana.moe> | 2024-10-11 01:55:33 +0900 |
| commit | b86fa6b4c91a2bf331ae4a50a5aa14b668efc4e6 (patch) | |
| tree | 2865bdf5b60f20199adb5a74bca0fa13b68ea315 /internal/shim/main.go | |
| parent | 6eb712aec73b6679fe7e2f60e7d1a6607af0ad4a (diff) | |
shim: new shim implementation
This implementation of shim accepts configuration as a gob stream over a unix socket, with support for mediating access to wayland via WAYLAND_SOCKET fd. All configuration is now included in the payload, and child is started inside bwrap configured with supplied bwrap.Config.
Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
Diffstat (limited to 'internal/shim/main.go')
| -rw-r--r-- | internal/shim/main.go | 188 |
1 files changed, 188 insertions, 0 deletions
diff --git a/internal/shim/main.go b/internal/shim/main.go new file mode 100644 index 00000000..618f466d --- /dev/null +++ b/internal/shim/main.go @@ -0,0 +1,188 @@ +package shim + +import ( + "encoding/gob" + "errors" + "fmt" + "net" + "os" + "strconv" + "strings" + "syscall" + + "git.ophivana.moe/cat/fortify/helper" + "git.ophivana.moe/cat/fortify/helper/bwrap" + "git.ophivana.moe/cat/fortify/internal/verbose" +) + +// everything beyond this point runs as target user +// proceed with caution! + +func shim(socket string) { + verbose.Prefix = "fortify-shim:" + + // dial setup socket + var conn *net.UnixConn + if c, err := net.DialUnix("unix", nil, &net.UnixAddr{Name: socket, Net: "unix"}); err != nil { + fmt.Println("fortify-shim: cannot dial setup socket:", err) + os.Exit(1) + } else { + conn = c + } + + // decode payload gob stream + var payload Payload + if err := gob.NewDecoder(conn).Decode(&payload); err != nil { + fmt.Println("fortify-shim: cannot decode shim payload:", err) + os.Exit(1) + } else { + // sharing stdout with parent + // USE WITH CAUTION + verbose.Set(payload.Verbose) + } + + // receive wayland fd over socket + wfd := -1 + if payload.WL { + if fd, err := receiveWLfd(conn); err != nil { + fmt.Println("fortify-shim: cannot receive wayland fd:", err) + os.Exit(1) + } else { + wfd = fd + } + } + + // close setup socket + if err := conn.Close(); err != nil { + fmt.Println("fortify-shim: cannot close setup socket:", err) + // not fatal + } + + // resolve argv0 + var ( + argv0 string + argv = payload.Argv + ) + if len(argv) > 0 { + // looked up from $PATH by parent + argv0 = payload.Exec[1] + } else { + // no argv, look up shell instead + var ok bool + if argv0, ok = os.LookupEnv("SHELL"); !ok { + fmt.Println("fortify-shim: no command was specified and $SHELL was unset") + os.Exit(1) + } + + argv = []string{argv0} + } + + _ = conn.Close() + + conf := payload.Bwrap + if conf == nil { + verbose.Println("sandbox configuration not supplied, PROCEED WITH CAUTION") + conf = &bwrap.Config{ + Net: true, + UserNS: true, + Clearenv: true, + Procfs: []string{"/proc"}, + DevTmpfs: []string{"/dev"}, + Mqueue: []string{"/dev/mqueue"}, + DieWithParent: true, + } + + if d, err := os.ReadDir("/"); err != nil { + fmt.Println("fortify-shim: cannot readdir '/':", err) + } else { + conf.Bind = make([][2]string, 0, len(d)) + for _, ent := range d { + name := ent.Name() + switch name { + case "proc": + case "dev": + default: + p := "/" + name + conf.Bind = append(conf.Bind, [2]string{p, p}) + } + } + } + } + if conf.SetEnv == nil { + conf.SetEnv = make(map[string]string, len(payload.Env)) + } + + var extraFiles []*os.File + + // set environment passed by parent + for _, s := range payload.Env { + kv := strings.SplitN(s, "=", 2) + if len(kv) != 2 { + fmt.Println("fortify-shim: invalid environment string:", s) + } else { + conf.SetEnv[kv[0]] = kv[1] + } + } + + // pass wayland fd + if wfd != -1 { + if f := os.NewFile(uintptr(wfd), "wayland"); f != nil { + conf.SetEnv["WAYLAND_SOCKET"] = strconv.Itoa(3 + len(extraFiles)) + extraFiles = append(extraFiles, f) + } + } + + helper.BubblewrapName = payload.Exec[0] // resolved bwrap path by parent + if b, err := helper.NewBwrap(conf, nil, argv0, func(_, _ int) []string { return argv[1:] }); err != nil { + fmt.Println("fortify-shim: malformed sandbox config:", err) + os.Exit(1) + } else { + cmd := b.Unwrap() + cmd.Stdin, cmd.Stdout, cmd.Stderr = os.Stdin, os.Stdout, os.Stderr + cmd.ExtraFiles = extraFiles + + if verbose.Get() { + verbose.Println("bwrap args:", conf.Args()) + } + + // run and pass through exit code + if err = b.Start(); err != nil { + fmt.Println("fortify-shim: cannot start target process:", err) + os.Exit(1) + } else if err = b.Wait(); err != nil { + verbose.Println("wait:", err) + } + if b.Unwrap().ProcessState != nil { + os.Exit(b.Unwrap().ProcessState.ExitCode()) + } else { + os.Exit(127) + } + } +} + +func receiveWLfd(conn *net.UnixConn) (int, error) { + oob := make([]byte, syscall.CmsgSpace(4)) // single fd + + if _, oobn, _, _, err := conn.ReadMsgUnix(nil, oob); err != nil { + return -1, err + } else if len(oob) != oobn { + return -1, errors.New("invalid message length") + } + + var msg syscall.SocketControlMessage + if messages, err := syscall.ParseSocketControlMessage(oob); err != nil { + return -1, err + } else if len(messages) != 1 { + return -1, errors.New("unexpected message count") + } else { + msg = messages[0] + } + + if fds, err := syscall.ParseUnixRights(&msg); err != nil { + return -1, err + } else if len(fds) != 1 { + return -1, errors.New("unexpected fd count") + } else { + return fds[0], nil + } +} |
