aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--helper/bwrap/arg.go2
-rw-r--r--helper/bwrap/builder.go22
-rw-r--r--helper/bwrap/seccomp.go2
-rw-r--r--helper/bwrap/sequential.go46
4 files changed, 28 insertions, 44 deletions
diff --git a/helper/bwrap/arg.go b/helper/bwrap/arg.go
index f2012cd1..6d79a8b2 100644
--- a/helper/bwrap/arg.go
+++ b/helper/bwrap/arg.go
@@ -30,7 +30,7 @@ func (c *Config) Args(syncFd *os.File, extraFiles *proc.ExtraFilesPre, files *[]
c.stringArgs(),
c.pairArgs(),
c.seccompArgs(),
- newFile(positionalArgs[SyncFd], syncFd),
+ newFile(SyncFd.String(), syncFd),
}
builders = slices.Grow(builders, len(c.Filesystem)+1)
diff --git a/helper/bwrap/builder.go b/helper/bwrap/builder.go
index 0fa3e6b5..312295d6 100644
--- a/helper/bwrap/builder.go
+++ b/helper/bwrap/builder.go
@@ -39,23 +39,23 @@ func (c *Config) Bind(src, dest string, opts ...bool) *Config {
if dev {
if try {
- c.Filesystem = append(c.Filesystem, &pairF{DevBindTry.Unwrap(), src, dest})
+ c.Filesystem = append(c.Filesystem, &pairF{DevBindTry.String(), src, dest})
} else {
- c.Filesystem = append(c.Filesystem, &pairF{DevBind.Unwrap(), src, dest})
+ c.Filesystem = append(c.Filesystem, &pairF{DevBind.String(), src, dest})
}
return c
} else if write {
if try {
- c.Filesystem = append(c.Filesystem, &pairF{BindTry.Unwrap(), src, dest})
+ c.Filesystem = append(c.Filesystem, &pairF{BindTry.String(), src, dest})
} else {
- c.Filesystem = append(c.Filesystem, &pairF{Bind.Unwrap(), src, dest})
+ c.Filesystem = append(c.Filesystem, &pairF{Bind.String(), src, dest})
}
return c
} else {
if try {
- c.Filesystem = append(c.Filesystem, &pairF{ROBindTry.Unwrap(), src, dest})
+ c.Filesystem = append(c.Filesystem, &pairF{ROBindTry.String(), src, dest})
} else {
- c.Filesystem = append(c.Filesystem, &pairF{ROBind.Unwrap(), src, dest})
+ c.Filesystem = append(c.Filesystem, &pairF{ROBind.String(), src, dest})
}
return c
}
@@ -64,35 +64,35 @@ func (c *Config) Bind(src, dest string, opts ...bool) *Config {
// Dir create dir in sandbox
// (--dir DEST)
func (c *Config) Dir(dest string) *Config {
- c.Filesystem = append(c.Filesystem, &stringF{Dir.Unwrap(), dest})
+ c.Filesystem = append(c.Filesystem, &stringF{Dir.String(), dest})
return c
}
// RemountRO remount path as readonly; does not recursively remount
// (--remount-ro DEST)
func (c *Config) RemountRO(dest string) *Config {
- c.Filesystem = append(c.Filesystem, &stringF{RemountRO.Unwrap(), dest})
+ c.Filesystem = append(c.Filesystem, &stringF{RemountRO.String(), dest})
return c
}
// Procfs mount new procfs in sandbox
// (--proc DEST)
func (c *Config) Procfs(dest string) *Config {
- c.Filesystem = append(c.Filesystem, &stringF{Procfs.Unwrap(), dest})
+ c.Filesystem = append(c.Filesystem, &stringF{Procfs.String(), dest})
return c
}
// DevTmpfs mount new dev in sandbox
// (--dev DEST)
func (c *Config) DevTmpfs(dest string) *Config {
- c.Filesystem = append(c.Filesystem, &stringF{DevTmpfs.Unwrap(), dest})
+ c.Filesystem = append(c.Filesystem, &stringF{DevTmpfs.String(), dest})
return c
}
// Mqueue mount new mqueue in sandbox
// (--mqueue DEST)
func (c *Config) Mqueue(dest string) *Config {
- c.Filesystem = append(c.Filesystem, &stringF{Mqueue.Unwrap(), dest})
+ c.Filesystem = append(c.Filesystem, &stringF{Mqueue.String(), dest})
return c
}
diff --git a/helper/bwrap/seccomp.go b/helper/bwrap/seccomp.go
index 1173a76c..f74015fd 100644
--- a/helper/bwrap/seccomp.go
+++ b/helper/bwrap/seccomp.go
@@ -81,5 +81,5 @@ func (s *seccompBuilder) Append(args *[]string) {
return
}
- *args = append(*args, positionalArgs[Seccomp], strconv.Itoa(int(s.Fd())))
+ *args = append(*args, Seccomp.String(), strconv.Itoa(int(s.Fd())))
}
diff --git a/helper/bwrap/sequential.go b/helper/bwrap/sequential.go
index 1776c235..fb97e651 100644
--- a/helper/bwrap/sequential.go
+++ b/helper/bwrap/sequential.go
@@ -14,9 +14,7 @@ func init() {
type PositionalArg int
-func (p PositionalArg) Unwrap() string {
- return positionalArgs[p]
-}
+func (p PositionalArg) String() string { return positionalArgs[p] }
const (
Tmpfs PositionalArg = iota
@@ -87,9 +85,7 @@ type PermConfig[T FSBuilder] struct {
Inner T `json:"path"`
}
-func (p *PermConfig[T]) Path() string {
- return p.Inner.Path()
-}
+func (p *PermConfig[T]) Path() string { return p.Inner.Path() }
func (p *PermConfig[T]) Len() int {
if p.Mode != nil {
@@ -101,7 +97,7 @@ func (p *PermConfig[T]) Len() int {
func (p *PermConfig[T]) Append(args *[]string) {
if p.Mode != nil {
- *args = append(*args, Perms.Unwrap(), strconv.FormatInt(int64(*p.Mode), 8))
+ *args = append(*args, Perms.String(), strconv.FormatInt(int64(*p.Mode), 8))
}
p.Inner.Append(args)
}
@@ -115,9 +111,7 @@ type TmpfsConfig struct {
Dir string `json:"dir"`
}
-func (t *TmpfsConfig) Path() string {
- return t.Dir
-}
+func (t *TmpfsConfig) Path() string { return t.Dir }
func (t *TmpfsConfig) Len() int {
if t.Size > 0 {
@@ -129,9 +123,9 @@ func (t *TmpfsConfig) Len() int {
func (t *TmpfsConfig) Append(args *[]string) {
if t.Size > 0 {
- *args = append(*args, Size.Unwrap(), strconv.Itoa(t.Size))
+ *args = append(*args, Size.String(), strconv.Itoa(t.Size))
}
- *args = append(*args, Tmpfs.Unwrap(), t.Dir)
+ *args = append(*args, Tmpfs.String(), t.Dir)
}
type OverlayConfig struct {
@@ -164,9 +158,7 @@ type OverlayConfig struct {
Dest string `json:"dest"`
}
-func (o *OverlayConfig) Path() string {
- return o.Dest
-}
+func (o *OverlayConfig) Path() string { return o.Dest }
func (o *OverlayConfig) Len() int {
// (--tmp-overlay DEST) or (--ro-overlay DEST)
@@ -182,20 +174,20 @@ func (o *OverlayConfig) Len() int {
func (o *OverlayConfig) Append(args *[]string) {
// --overlay-src SRC
for _, src := range o.Src {
- *args = append(*args, OverlaySrc.Unwrap(), src)
+ *args = append(*args, OverlaySrc.String(), src)
}
if o.Persist != nil {
if o.Persist[0] != "" && o.Persist[1] != "" {
// --overlay RWSRC WORKDIR
- *args = append(*args, Overlay.Unwrap(), o.Persist[0], o.Persist[1])
+ *args = append(*args, Overlay.String(), o.Persist[0], o.Persist[1])
} else {
// --ro-overlay
- *args = append(*args, ROOverlay.Unwrap())
+ *args = append(*args, ROOverlay.String())
}
} else {
// --tmp-overlay
- *args = append(*args, TmpOverlay.Unwrap())
+ *args = append(*args, TmpOverlay.String())
}
// DEST
@@ -204,17 +196,9 @@ func (o *OverlayConfig) Append(args *[]string) {
type SymlinkConfig [2]string
-func (s SymlinkConfig) Path() string {
- return s[1]
-}
-
-func (s SymlinkConfig) Len() int {
- return 3
-}
-
-func (s SymlinkConfig) Append(args *[]string) {
- *args = append(*args, Symlink.Unwrap(), s[0], s[1])
-}
+func (s SymlinkConfig) Path() string { return s[1] }
+func (s SymlinkConfig) Len() int { return 3 }
+func (s SymlinkConfig) Append(args *[]string) { *args = append(*args, Symlink.String(), s[0], s[1]) }
type ChmodConfig map[string]os.FileMode
@@ -224,6 +208,6 @@ func (c ChmodConfig) Len() int {
func (c ChmodConfig) Append(args *[]string) {
for path, mode := range c {
- *args = append(*args, Chmod.Unwrap(), strconv.FormatInt(int64(mode), 8), path)
+ *args = append(*args, Chmod.String(), strconv.FormatInt(int64(mode), 8), path)
}
}