aboutsummaryrefslogtreecommitdiffhomepage
path: root/container/initremount.go
blob: 6df8a330962f5fb511cf8957ea4533c4181297bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package container

import (
	"encoding/gob"
	"fmt"
)

func init() { gob.Register(new(RemountOp)) }

// Remount appends an [Op] that applies [RemountOp.Flags] on container path [RemountOp.Target].
func (f *Ops) Remount(target *Absolute, flags uintptr) *Ops {
	*f = append(*f, &RemountOp{target, flags})
	return f
}

// RemountOp remounts Target with Flags.
type RemountOp struct {
	Target *Absolute
	Flags  uintptr
}

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 k.remount(toSysroot(r.Target.String()), r.Flags)
}

func (r *RemountOp) Is(op Op) bool {
	vr, ok := op.(*RemountOp)
	return ok && r.Valid() && vr.Valid() &&
		r.Target.Is(vr.Target) &&
		r.Flags == vr.Flags
}
func (*RemountOp) prefix() string   { return "remounting" }
func (r *RemountOp) String() string { return fmt.Sprintf("%q flags %#x", r.Target, r.Flags) }