diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-11-05 02:47:43 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-11-05 02:47:43 +0900 |
| commit | c1399f5030abde76728ba7982a7a22fd49e75359 (patch) | |
| tree | 06e2a2ce11dbd7536150fd57824e406f101d50d9 /internal/outcome | |
| parent | 9ac63aac0cb025d1de195dbc57d0c89ebd1d7cc5 (diff) | |
std: rename from comp
Seccomp lookup tables are going to be relocated here, and PNR constants.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/outcome')
| -rw-r--r-- | internal/outcome/main_test.go | 56 | ||||
| -rw-r--r-- | internal/outcome/shim.go | 4 | ||||
| -rw-r--r-- | internal/outcome/shim_test.go | 16 | ||||
| -rw-r--r-- | internal/outcome/spcontainer.go | 12 | ||||
| -rw-r--r-- | internal/outcome/spcontainer_test.go | 14 | ||||
| -rw-r--r-- | internal/outcome/spruntime.go | 4 | ||||
| -rw-r--r-- | internal/outcome/spruntime_test.go | 10 | ||||
| -rw-r--r-- | internal/outcome/sptmpdir.go | 4 | ||||
| -rw-r--r-- | internal/outcome/sptmpdir_test.go | 4 |
9 files changed, 62 insertions, 62 deletions
diff --git a/internal/outcome/main_test.go b/internal/outcome/main_test.go index ea9c872c..861478d1 100644 --- a/internal/outcome/main_test.go +++ b/internal/outcome/main_test.go @@ -17,9 +17,9 @@ import ( "hakurei.app/container" "hakurei.app/container/check" - "hakurei.app/container/comp" "hakurei.app/container/fhs" "hakurei.app/container/seccomp" + "hakurei.app/container/std" "hakurei.app/hst" "hakurei.app/message" "hakurei.app/system" @@ -136,19 +136,19 @@ func TestOutcomeMain(t *testing.T) { Ops: new(container.Ops). // resolveRoot - Root(m("/var/lib/hakurei/base/org.debian"), comp.BindWritable). + Root(m("/var/lib/hakurei/base/org.debian"), std.BindWritable). // spParamsOp Proc(fhs.AbsProc). Tmpfs(hst.AbsPrivateTmp, 1<<12, 0755). - Bind(fhs.AbsDev, fhs.AbsDev, comp.BindWritable|comp.BindDevice). + Bind(fhs.AbsDev, fhs.AbsDev, std.BindWritable|std.BindDevice). Tmpfs(fhs.AbsDev.Append("shm"), 0, 01777). // spRuntimeOp Tmpfs(fhs.AbsRunUser, 1<<12, 0755). - Bind(m("/tmp/hakurei.0/runtime/9"), m("/run/user/1971"), comp.BindWritable). + Bind(m("/tmp/hakurei.0/runtime/9"), m("/run/user/1971"), std.BindWritable). // spTmpdirOp - Bind(m("/tmp/hakurei.0/tmpdir/9"), fhs.AbsTmp, comp.BindWritable). + Bind(m("/tmp/hakurei.0/tmpdir/9"), fhs.AbsTmp, std.BindWritable). // spAccountOp Place(m("/etc/passwd"), []byte("chronos:x:1971:100:Hakurei:/data/data/org.chromium.Chromium:/run/current-system/sw/bin/zsh\n")). @@ -176,9 +176,9 @@ func TestOutcomeMain(t *testing.T) { Link(m("/run/opengl-driver"), "/run/opengl-driver", true). Bind(fhs.AbsVarLib.Append("hakurei/u0/org.chromium.Chromium"), m("/data/data/org.chromium.Chromium"), - comp.BindWritable|comp.BindEnsure). + std.BindWritable|std.BindEnsure). Bind(fhs.AbsDev.Append("dri"), fhs.AbsDev.Append("dri"), - comp.BindOptional|comp.BindWritable|comp.BindDevice). + std.BindOptional|std.BindWritable|std.BindDevice). Remount(fhs.AbsRoot, syscall.MS_RDONLY), }}, @@ -239,24 +239,24 @@ func TestOutcomeMain(t *testing.T) { "XDG_SESSION_TYPE=tty", }, Ops: new(container.Ops). - Root(m("/"), comp.BindWritable). + Root(m("/"), std.BindWritable). Proc(m("/proc/")). Tmpfs(hst.AbsPrivateTmp, 4096, 0755). DevWritable(m("/dev/"), true). Tmpfs(m("/dev/shm"), 0, 01777). Tmpfs(m("/run/user/"), 4096, 0755). - Bind(m("/tmp/hakurei.0/runtime/0"), m("/run/user/65534"), comp.BindWritable). - Bind(m("/tmp/hakurei.0/tmpdir/0"), m("/tmp/"), comp.BindWritable). + Bind(m("/tmp/hakurei.0/runtime/0"), m("/run/user/65534"), std.BindWritable). + Bind(m("/tmp/hakurei.0/tmpdir/0"), m("/tmp/"), std.BindWritable). Place(m("/etc/passwd"), []byte("chronos:x:65534:65534:Hakurei:/home/chronos:/run/current-system/sw/bin/zsh\n")). Place(m("/etc/group"), []byte("hakurei:x:65534:\n")). - Bind(m("/dev/kvm"), m("/dev/kvm"), comp.BindWritable|comp.BindDevice|comp.BindOptional). + Bind(m("/dev/kvm"), m("/dev/kvm"), std.BindWritable|std.BindDevice|std.BindOptional). Etc(m("/etc/"), "4a450b6596d7bc15bd01780eb9a607ac"). Tmpfs(m("/run/user/1971"), 8192, 0755). Tmpfs(m("/run/nscd"), 8192, 0755). Tmpfs(m("/run/dbus"), 8192, 0755). Remount(m("/dev/"), syscall.MS_RDONLY). Remount(m("/"), syscall.MS_RDONLY), - SeccompPresets: comp.PresetExt | comp.PresetDenyDevel, + SeccompPresets: std.PresetExt | std.PresetDenyDevel, HostNet: true, HostAbstract: true, RetainSession: true, @@ -408,14 +408,14 @@ func TestOutcomeMain(t *testing.T) { "XDG_SESSION_TYPE=wayland", }, Ops: new(container.Ops). - Root(m("/"), comp.BindWritable). + Root(m("/"), std.BindWritable). Proc(m("/proc/")). Tmpfs(hst.AbsPrivateTmp, 4096, 0755). DevWritable(m("/dev/"), true). Tmpfs(m("/dev/shm"), 0, 01777). Tmpfs(m("/run/user/"), 4096, 0755). - Bind(m("/tmp/hakurei.0/runtime/9"), m("/run/user/65534"), comp.BindWritable). - Bind(m("/tmp/hakurei.0/tmpdir/9"), m("/tmp/"), comp.BindWritable). + Bind(m("/tmp/hakurei.0/runtime/9"), m("/run/user/65534"), std.BindWritable). + Bind(m("/tmp/hakurei.0/tmpdir/9"), m("/tmp/"), std.BindWritable). Place(m("/etc/passwd"), []byte("chronos:x:65534:65534:Hakurei:/home/chronos:/run/current-system/sw/bin/zsh\n")). Place(m("/etc/group"), []byte("hakurei:x:65534:\n")). Bind(m("/tmp/hakurei.0/ebf083d1b175911782d413369b64ce7c/wayland"), m("/run/user/65534/wayland-0"), 0). @@ -423,15 +423,15 @@ func TestOutcomeMain(t *testing.T) { Place(m(hst.PrivateTmp+"/pulse-cookie"), bytes.Repeat([]byte{0}, pulseCookieSizeMax)). Bind(m("/tmp/hakurei.0/ebf083d1b175911782d413369b64ce7c/bus"), m("/run/user/65534/bus"), 0). Bind(m("/tmp/hakurei.0/ebf083d1b175911782d413369b64ce7c/system_bus_socket"), m("/var/run/dbus/system_bus_socket"), 0). - Bind(m("/dev/dri"), m("/dev/dri"), comp.BindWritable|comp.BindDevice|comp.BindOptional). - Bind(m("/dev/kvm"), m("/dev/kvm"), comp.BindWritable|comp.BindDevice|comp.BindOptional). + Bind(m("/dev/dri"), m("/dev/dri"), std.BindWritable|std.BindDevice|std.BindOptional). + Bind(m("/dev/kvm"), m("/dev/kvm"), std.BindWritable|std.BindDevice|std.BindOptional). Etc(m("/etc/"), "ebf083d1b175911782d413369b64ce7c"). Tmpfs(m("/run/user/1971"), 8192, 0755). Tmpfs(m("/run/nscd"), 8192, 0755). Tmpfs(m("/run/dbus"), 8192, 0755). Remount(m("/dev/"), syscall.MS_RDONLY). Remount(m("/"), syscall.MS_RDONLY), - SeccompPresets: comp.PresetExt | comp.PresetDenyDevel, + SeccompPresets: std.PresetExt | std.PresetDenyDevel, HostNet: true, HostAbstract: true, RetainSession: true, @@ -560,8 +560,8 @@ func TestOutcomeMain(t *testing.T) { DevWritable(m("/dev/"), true). Tmpfs(m("/dev/shm"), 0, 01777). Tmpfs(m("/run/user/"), 4096, 0755). - Bind(m("/tmp/hakurei.0/runtime/1"), m("/run/user/1971"), comp.BindWritable). - Bind(m("/tmp/hakurei.0/tmpdir/1"), m("/tmp/"), comp.BindWritable). + Bind(m("/tmp/hakurei.0/runtime/1"), m("/run/user/1971"), std.BindWritable). + Bind(m("/tmp/hakurei.0/tmpdir/1"), m("/tmp/"), std.BindWritable). Place(m("/etc/passwd"), []byte("u0_a1:x:1971:100:Hakurei:/var/lib/persist/module/hakurei/0/1:/run/current-system/sw/bin/zsh\n")). Place(m("/etc/group"), []byte("hakurei:x:100:\n")). Bind(m("/run/user/1971/wayland-0"), m("/run/user/1971/wayland-0"), 0). @@ -573,18 +573,18 @@ func TestOutcomeMain(t *testing.T) { Bind(m("/usr/bin/"), m("/usr/bin/"), 0). Bind(m("/nix/store"), m("/nix/store"), 0). Bind(m("/run/current-system"), m("/run/current-system"), 0). - Bind(m("/sys/block"), m("/sys/block"), comp.BindOptional). - Bind(m("/sys/bus"), m("/sys/bus"), comp.BindOptional). - Bind(m("/sys/class"), m("/sys/class"), comp.BindOptional). - Bind(m("/sys/dev"), m("/sys/dev"), comp.BindOptional). - Bind(m("/sys/devices"), m("/sys/devices"), comp.BindOptional). + Bind(m("/sys/block"), m("/sys/block"), std.BindOptional). + Bind(m("/sys/bus"), m("/sys/bus"), std.BindOptional). + Bind(m("/sys/class"), m("/sys/class"), std.BindOptional). + Bind(m("/sys/dev"), m("/sys/dev"), std.BindOptional). + Bind(m("/sys/devices"), m("/sys/devices"), std.BindOptional). Bind(m("/run/opengl-driver"), m("/run/opengl-driver"), 0). - Bind(m("/dev/dri"), m("/dev/dri"), comp.BindDevice|comp.BindWritable|comp.BindOptional). + Bind(m("/dev/dri"), m("/dev/dri"), std.BindDevice|std.BindWritable|std.BindOptional). Etc(m("/etc/"), "8e2c76b066dabe574cf073bdb46eb5c1"). - Bind(m("/var/lib/persist/module/hakurei/0/1"), m("/var/lib/persist/module/hakurei/0/1"), comp.BindWritable|comp.BindEnsure). + Bind(m("/var/lib/persist/module/hakurei/0/1"), m("/var/lib/persist/module/hakurei/0/1"), std.BindWritable|std.BindEnsure). Remount(m("/dev/"), syscall.MS_RDONLY). Remount(m("/"), syscall.MS_RDONLY), - SeccompPresets: comp.PresetExt | comp.PresetDenyTTY | comp.PresetDenyDevel, + SeccompPresets: std.PresetExt | std.PresetDenyTTY | std.PresetDenyDevel, HostNet: true, ForwardCancel: true, }}, diff --git a/internal/outcome/shim.go b/internal/outcome/shim.go index 48ff756f..bde79be3 100644 --- a/internal/outcome/shim.go +++ b/internal/outcome/shim.go @@ -14,8 +14,8 @@ import ( "time" "hakurei.app/container" - "hakurei.app/container/comp" "hakurei.app/container/seccomp" + "hakurei.app/container/std" "hakurei.app/hst" "hakurei.app/message" ) @@ -233,7 +233,7 @@ func shimEntrypoint(k syscallDispatcher) { } if err := k.seccompLoad( - seccomp.Preset(comp.PresetStrict, seccomp.AllowMultiarch), + seccomp.Preset(std.PresetStrict, seccomp.AllowMultiarch), seccomp.AllowMultiarch, ); err != nil { k.fatalf("cannot load syscall filter: %v", err) diff --git a/internal/outcome/shim_test.go b/internal/outcome/shim_test.go index ad0fce6c..c18e1f96 100644 --- a/internal/outcome/shim_test.go +++ b/internal/outcome/shim_test.go @@ -10,9 +10,9 @@ import ( "testing" "hakurei.app/container" - "hakurei.app/container/comp" "hakurei.app/container/fhs" "hakurei.app/container/seccomp" + "hakurei.app/container/std" "hakurei.app/container/stub" "hakurei.app/hst" "hakurei.app/internal/env" @@ -20,7 +20,7 @@ import ( func TestShimEntrypoint(t *testing.T) { t.Parallel() - shimPreset := seccomp.Preset(comp.PresetStrict, seccomp.AllowMultiarch) + shimPreset := seccomp.Preset(std.PresetStrict, seccomp.AllowMultiarch) templateParams := &container.Params{ Dir: m("/data/data/org.chromium.Chromium"), Env: []string{ @@ -61,19 +61,19 @@ func TestShimEntrypoint(t *testing.T) { Ops: new(container.Ops). // resolveRoot - Root(m("/var/lib/hakurei/base/org.debian"), comp.BindWritable). + Root(m("/var/lib/hakurei/base/org.debian"), std.BindWritable). // spParamsOp Proc(fhs.AbsProc). Tmpfs(hst.AbsPrivateTmp, 1<<12, 0755). - Bind(fhs.AbsDev, fhs.AbsDev, comp.BindWritable|comp.BindDevice). + Bind(fhs.AbsDev, fhs.AbsDev, std.BindWritable|std.BindDevice). Tmpfs(fhs.AbsDev.Append("shm"), 0, 01777). // spRuntimeOp Tmpfs(fhs.AbsRunUser, 1<<12, 0755). - Bind(m("/tmp/hakurei.10/runtime/9999"), m("/run/user/1000"), comp.BindWritable). + Bind(m("/tmp/hakurei.10/runtime/9999"), m("/run/user/1000"), std.BindWritable). // spTmpdirOp - Bind(m("/tmp/hakurei.10/tmpdir/9999"), fhs.AbsTmp, comp.BindWritable). + Bind(m("/tmp/hakurei.10/tmpdir/9999"), fhs.AbsTmp, std.BindWritable). // spAccountOp Place(m("/etc/passwd"), []byte("chronos:x:1000:100:Hakurei:/data/data/org.chromium.Chromium:/run/current-system/sw/bin/zsh\n")). @@ -101,9 +101,9 @@ func TestShimEntrypoint(t *testing.T) { Link(m("/run/opengl-driver"), "/run/opengl-driver", true). Bind(fhs.AbsVarLib.Append("hakurei/u0/org.chromium.Chromium"), m("/data/data/org.chromium.Chromium"), - comp.BindWritable|comp.BindEnsure). + std.BindWritable|std.BindEnsure). Bind(fhs.AbsDev.Append("dri"), fhs.AbsDev.Append("dri"), - comp.BindOptional|comp.BindWritable|comp.BindDevice). + std.BindOptional|std.BindWritable|std.BindDevice). Remount(fhs.AbsRoot, syscall.MS_RDONLY), } diff --git a/internal/outcome/spcontainer.go b/internal/outcome/spcontainer.go index 13808ca1..a9eed191 100644 --- a/internal/outcome/spcontainer.go +++ b/internal/outcome/spcontainer.go @@ -12,9 +12,9 @@ import ( "hakurei.app/container" "hakurei.app/container/check" - "hakurei.app/container/comp" "hakurei.app/container/fhs" "hakurei.app/container/seccomp" + "hakurei.app/container/std" "hakurei.app/hst" "hakurei.app/internal/validate" "hakurei.app/message" @@ -76,16 +76,16 @@ func (s *spParamsOp) toContainer(state *outcomeStateParams) error { } if state.Container.Flags&hst.FSeccompCompat == 0 { - state.params.SeccompPresets |= comp.PresetExt + state.params.SeccompPresets |= std.PresetExt } if state.Container.Flags&hst.FDevel == 0 { - state.params.SeccompPresets |= comp.PresetDenyDevel + state.params.SeccompPresets |= std.PresetDenyDevel } if state.Container.Flags&hst.FUserns == 0 { - state.params.SeccompPresets |= comp.PresetDenyNS + state.params.SeccompPresets |= std.PresetDenyNS } if state.Container.Flags&hst.FTty == 0 { - state.params.SeccompPresets |= comp.PresetDenyTTY + state.params.SeccompPresets |= std.PresetDenyTTY } if state.Container.Flags&hst.FMapRealUID != 0 { @@ -113,7 +113,7 @@ func (s *spParamsOp) toContainer(state *outcomeStateParams) error { if state.Container.Flags&hst.FDevice == 0 { state.params.DevWritable(fhs.AbsDev, true) } else { - state.params.Bind(fhs.AbsDev, fhs.AbsDev, comp.BindWritable|comp.BindDevice) + state.params.Bind(fhs.AbsDev, fhs.AbsDev, std.BindWritable|std.BindDevice) } // /dev is mounted readonly later on, this prevents /dev/shm from going readonly with it state.params.Tmpfs(fhs.AbsDev.Append("shm"), 0, 01777) diff --git a/internal/outcome/spcontainer_test.go b/internal/outcome/spcontainer_test.go index 3b003054..9a567e27 100644 --- a/internal/outcome/spcontainer_test.go +++ b/internal/outcome/spcontainer_test.go @@ -9,9 +9,9 @@ import ( "hakurei.app/container" "hakurei.app/container/check" - "hakurei.app/container/comp" "hakurei.app/container/fhs" "hakurei.app/container/seccomp" + "hakurei.app/container/std" "hakurei.app/container/stub" "hakurei.app/hst" "hakurei.app/system" @@ -65,11 +65,11 @@ func TestSpParamsOp(t *testing.T) { HostAbstract: true, Path: config.Container.Path, Args: []string{config.Container.Path.String()}, - SeccompPresets: comp.PresetExt | comp.PresetDenyDevel | comp.PresetDenyNS | comp.PresetDenyTTY, + SeccompPresets: std.PresetExt | std.PresetDenyDevel | std.PresetDenyNS | std.PresetDenyTTY, Uid: 1000, Gid: 100, Ops: new(container.Ops). - Root(m("/var/lib/hakurei/base/org.debian"), comp.BindWritable). + Root(m("/var/lib/hakurei/base/org.debian"), std.BindWritable). Proc(fhs.AbsProc).Tmpfs(hst.AbsPrivateTmp, 1<<12, 0755). DevWritable(fhs.AbsDev, true). Tmpfs(fhs.AbsDev.Append("shm"), 0, 01777), @@ -107,9 +107,9 @@ func TestSpParamsOp(t *testing.T) { Uid: 1000, Gid: 100, Ops: new(container.Ops). - Root(m("/var/lib/hakurei/base/org.debian"), comp.BindWritable). + Root(m("/var/lib/hakurei/base/org.debian"), std.BindWritable). Proc(fhs.AbsProc).Tmpfs(hst.AbsPrivateTmp, 1<<12, 0755). - Bind(fhs.AbsDev, fhs.AbsDev, comp.BindWritable|comp.BindDevice). + Bind(fhs.AbsDev, fhs.AbsDev, std.BindWritable|std.BindDevice). Tmpfs(fhs.AbsDev.Append("shm"), 0, 01777), }, paramsWantEnv(config, map[string]string{ "TERM": "xterm", @@ -425,8 +425,8 @@ func TestSpFilesystemOp(t *testing.T) { Bind( fhs.AbsVarLib.Append("hakurei/u0/org.chromium.Chromium"), check.MustAbs("/data/data/org.chromium.Chromium"), - comp.BindWritable|comp.BindEnsure). - Bind(fhs.AbsDev.Append("dri"), fhs.AbsDev.Append("dri"), comp.BindDevice|comp.BindWritable|comp.BindOptional). + std.BindWritable|std.BindEnsure). + Bind(fhs.AbsDev.Append("dri"), fhs.AbsDev.Append("dri"), std.BindDevice|std.BindWritable|std.BindOptional). Remount(fhs.AbsRoot, syscall.MS_RDONLY), }, nil, nil}, }) diff --git a/internal/outcome/spruntime.go b/internal/outcome/spruntime.go index b458826a..cccc77ee 100644 --- a/internal/outcome/spruntime.go +++ b/internal/outcome/spruntime.go @@ -4,8 +4,8 @@ import ( "encoding/gob" "hakurei.app/container/check" - "hakurei.app/container/comp" "hakurei.app/container/fhs" + "hakurei.app/container/std" "hakurei.app/hst" "hakurei.app/system" "hakurei.app/system/acl" @@ -111,7 +111,7 @@ func (s *spRuntimeOp) toContainer(state *outcomeStateParams) error { state.params.Tmpfs(fhs.AbsRunUser, 1<<12, 0755) if state.Container.Flags&hst.FShareRuntime != 0 { _, runtimeDirInst := s.commonPaths(state.outcomeState) - state.params.Bind(runtimeDirInst, state.runtimeDir, comp.BindWritable) + state.params.Bind(runtimeDirInst, state.runtimeDir, std.BindWritable) } else { state.params.Mkdir(state.runtimeDir, 0700) } diff --git a/internal/outcome/spruntime_test.go b/internal/outcome/spruntime_test.go index 00056eda..76215843 100644 --- a/internal/outcome/spruntime_test.go +++ b/internal/outcome/spruntime_test.go @@ -4,8 +4,8 @@ import ( "testing" "hakurei.app/container" - "hakurei.app/container/comp" "hakurei.app/container/fhs" + "hakurei.app/container/std" "hakurei.app/container/stub" "hakurei.app/hst" "hakurei.app/system" @@ -41,7 +41,7 @@ func TestSpRuntimeOp(t *testing.T) { }, &container.Params{ Ops: new(container.Ops). Tmpfs(fhs.AbsRunUser, 1<<12, 0755). - Bind(m("/proc/nonexistent/tmp/hakurei.0/runtime/9"), m("/run/user/1000"), comp.BindWritable), + Bind(m("/proc/nonexistent/tmp/hakurei.0/runtime/9"), m("/run/user/1000"), std.BindWritable), }, paramsWantEnv(config, map[string]string{ "XDG_RUNTIME_DIR": "/run/user/1000", "XDG_SESSION_CLASS": "user", @@ -68,7 +68,7 @@ func TestSpRuntimeOp(t *testing.T) { }, &container.Params{ Ops: new(container.Ops). Tmpfs(fhs.AbsRunUser, 1<<12, 0755). - Bind(m("/proc/nonexistent/tmp/hakurei.0/runtime/9"), m("/run/user/1000"), comp.BindWritable), + Bind(m("/proc/nonexistent/tmp/hakurei.0/runtime/9"), m("/run/user/1000"), std.BindWritable), }, paramsWantEnv(config, map[string]string{ "XDG_RUNTIME_DIR": "/run/user/1000", "XDG_SESSION_CLASS": "user", @@ -95,7 +95,7 @@ func TestSpRuntimeOp(t *testing.T) { }, &container.Params{ Ops: new(container.Ops). Tmpfs(fhs.AbsRunUser, 1<<12, 0755). - Bind(m("/proc/nonexistent/tmp/hakurei.0/runtime/9"), m("/run/user/1000"), comp.BindWritable), + Bind(m("/proc/nonexistent/tmp/hakurei.0/runtime/9"), m("/run/user/1000"), std.BindWritable), }, paramsWantEnv(config, map[string]string{ "XDG_RUNTIME_DIR": "/run/user/1000", "XDG_SESSION_CLASS": "user", @@ -118,7 +118,7 @@ func TestSpRuntimeOp(t *testing.T) { }, &container.Params{ Ops: new(container.Ops). Tmpfs(fhs.AbsRunUser, 1<<12, 0755). - Bind(m("/proc/nonexistent/tmp/hakurei.0/runtime/9"), m("/run/user/1000"), comp.BindWritable), + Bind(m("/proc/nonexistent/tmp/hakurei.0/runtime/9"), m("/run/user/1000"), std.BindWritable), }, paramsWantEnv(config, map[string]string{ "XDG_RUNTIME_DIR": "/run/user/1000", "XDG_SESSION_CLASS": "user", diff --git a/internal/outcome/sptmpdir.go b/internal/outcome/sptmpdir.go index 4776dad7..013ceecb 100644 --- a/internal/outcome/sptmpdir.go +++ b/internal/outcome/sptmpdir.go @@ -4,8 +4,8 @@ import ( "encoding/gob" "hakurei.app/container/check" - "hakurei.app/container/comp" "hakurei.app/container/fhs" + "hakurei.app/container/std" "hakurei.app/hst" "hakurei.app/system" "hakurei.app/system/acl" @@ -30,7 +30,7 @@ func (s spTmpdirOp) toSystem(state *outcomeStateSys) error { func (s spTmpdirOp) toContainer(state *outcomeStateParams) error { if state.Container.Flags&hst.FShareTmpdir != 0 { _, tmpdirInst := s.commonPaths(state.outcomeState) - state.params.Bind(tmpdirInst, fhs.AbsTmp, comp.BindWritable) + state.params.Bind(tmpdirInst, fhs.AbsTmp, std.BindWritable) } else { state.params.Tmpfs(fhs.AbsTmp, 0, 01777) } diff --git a/internal/outcome/sptmpdir_test.go b/internal/outcome/sptmpdir_test.go index afa641f6..a7d87b51 100644 --- a/internal/outcome/sptmpdir_test.go +++ b/internal/outcome/sptmpdir_test.go @@ -4,8 +4,8 @@ import ( "testing" "hakurei.app/container" - "hakurei.app/container/comp" "hakurei.app/container/fhs" + "hakurei.app/container/std" "hakurei.app/container/stub" "hakurei.app/hst" "hakurei.app/system" @@ -28,7 +28,7 @@ func TestSpTmpdirOp(t *testing.T) { // this op configures the container state and does not make calls during toContainer }, &container.Params{ Ops: new(container.Ops). - Bind(m("/proc/nonexistent/tmp/hakurei.0/tmpdir/9"), fhs.AbsTmp, comp.BindWritable), + Bind(m("/proc/nonexistent/tmp/hakurei.0/tmpdir/9"), fhs.AbsTmp, std.BindWritable), }, nil, nil}, }) } |
