aboutsummaryrefslogtreecommitdiffhomepage
path: root/container/initremount.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-08-21 21:59:07 +0900
committerOphestra <cat@gensokyo.uk>2025-08-22 19:27:31 +0900
commit09d284498109b847da0da1e2c5f883268a7f2d46 (patch)
tree3784dee4b4e4ec97a95cb222c70d05463ae640ef /container/initremount.go
parentd500d6e55917e12a3f98b39cf0d29b6c96de9667 (diff)
container/init: wrap syscall helper functions
This allows tests to stub all kernel behaviour, enabling measurement of all function call arguments and error injection. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'container/initremount.go')
-rw-r--r--container/initremount.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/container/initremount.go b/container/initremount.go
index 74bea097..af58c740 100644
--- a/container/initremount.go
+++ b/container/initremount.go
@@ -19,10 +19,10 @@ type RemountOp struct {
Flags uintptr
}
-func (r *RemountOp) Valid() bool { return r != nil && r.Target != nil }
-func (*RemountOp) early(*setupState) error { return nil }
-func (r *RemountOp) apply(*setupState) error {
- return wrapErrSuffix(hostProc.remount(toSysroot(r.Target.String()), r.Flags),
+func (r *RemountOp) Valid() bool { return r != nil && r.Target != nil }
+func (*RemountOp) early(*setupState, syscallDispatcher) error { return nil }
+func (r *RemountOp) apply(_ *setupState, k syscallDispatcher) error {
+ return wrapErrSuffix(k.remount(toSysroot(r.Target.String()), r.Flags),
fmt.Sprintf("cannot remount %q:", r.Target))
}