summaryrefslogtreecommitdiffhomepage
path: root/runsc/boot/loader.go
diff options
context:
space:
mode:
authorFabricio Voznika <fvoznika@google.com>2018-09-27 23:54:13 -0700
committerShentubot <shentubot@google.com>2018-09-27 23:55:05 -0700
commit6779bd1187e2b0f8692ab8a16d8d1681f0e674c5 (patch)
treeef9efb0d0c81a13a3c7cb582aa0c491d071d1086 /runsc/boot/loader.go
parent1166c088fc51c83af3198e25d5e774103ae976fc (diff)
Merge Loader.containerRootTGs and execProcess into a single map
It's easier to manage a single map with processes that we're interested to track. This will make the next change to clean up the map on destroy easier. PiperOrigin-RevId: 214894210 Change-Id: I099247323a0487cd0767120df47ba786fac0926d
Diffstat (limited to 'runsc/boot/loader.go')
-rw-r--r--runsc/boot/loader.go66
1 files changed, 27 insertions, 39 deletions
diff --git a/runsc/boot/loader.go b/runsc/boot/loader.go
index bd6e146fc..52c251812 100644
--- a/runsc/boot/loader.go
+++ b/runsc/boot/loader.go
@@ -104,26 +104,18 @@ type Loader struct {
// sandboxID is the ID for the whole sandbox.
sandboxID string
- // mu guards containerRootTGs and execProcesses.
+ // mu guards processes.
mu sync.Mutex
- // containerRootTGs maps container IDs to their root processes. It
- // can be used to determine which process to manipulate when clients
- // call methods on particular containers.
+ // processes maps containers root process and invocation of exec. Root
+ // processes are keyed with container ID and pid=0, while exec invocations
+ // have the corresponding pid set.
//
- // containerRootTGs is guarded by mu.
+ // processes is guardded by mu.
//
// TODO: When containers are removed via `runsc delete`,
- // containerRootTGs should be cleaned up.
- containerRootTGs map[string]*kernel.ThreadGroup
-
- // execProcesses maps each invocation of exec to the process it spawns.
- //
- // execProcesses is guardded by mu.
- //
- // TODO: When containers are removed via `runsc delete`,
- // execProcesses should be cleaned up.
- execProcesses map[execID]*kernel.ThreadGroup
+ // processes should be cleaned up.
+ processes map[execID]*kernel.ThreadGroup
}
// execID uniquely identifies a sentry process.
@@ -287,8 +279,7 @@ func New(id string, spec *specs.Spec, conf *Config, controllerFD, deviceFD int,
startSignalForwarding: startSignalForwarding,
rootProcArgs: procArgs,
sandboxID: id,
- containerRootTGs: make(map[string]*kernel.ThreadGroup),
- execProcesses: make(map[execID]*kernel.ThreadGroup),
+ processes: make(map[execID]*kernel.ThreadGroup),
}
ctrl.manager.l = l
return l, nil
@@ -425,7 +416,8 @@ func (l *Loader) run() error {
}
l.mu.Lock()
- l.containerRootTGs[l.sandboxID] = l.k.GlobalInit()
+ key := execID{cid: l.sandboxID}
+ l.processes[key] = l.k.GlobalInit()
l.mu.Unlock()
// Start signal forwarding only after an init process is created.
@@ -521,7 +513,8 @@ func (l *Loader) startContainer(k *kernel.Kernel, spec *specs.Spec, conf *Config
l.mu.Lock()
defer l.mu.Unlock()
- l.containerRootTGs[cid] = tg
+ key := execID{cid: cid}
+ l.processes[key] = tg
return nil
}
@@ -530,7 +523,8 @@ func (l *Loader) executeAsync(args *control.ExecArgs) (kernel.ThreadID, error) {
// Get the container Root Dirent from the Task, since we must run this
// process with the same Root.
l.mu.Lock()
- tg, ok := l.containerRootTGs[args.ContainerID]
+ rootKey := execID{cid: args.ContainerID}
+ tg, ok := l.processes[rootKey]
l.mu.Unlock()
if !ok {
return 0, fmt.Errorf("cannot exec in container %q: no such container", args.ContainerID)
@@ -549,13 +543,13 @@ func (l *Loader) executeAsync(args *control.ExecArgs) (kernel.ThreadID, error) {
return 0, fmt.Errorf("error executing: %+v: %v", args, err)
}
- // Insert the process into execProcesses so that we can wait on it
+ // Insert the process into processes so that we can wait on it
// later.
l.mu.Lock()
defer l.mu.Unlock()
eid := execID{cid: args.ContainerID, pid: tgid}
- l.execProcesses[eid] = tg
- log.Debugf("updated execProcesses: %v", l.execProcesses)
+ l.processes[eid] = tg
+ log.Debugf("updated processes: %v", l.processes)
return tgid, nil
}
@@ -567,12 +561,12 @@ func (l *Loader) waitContainer(cid string, waitStatus *uint32) error {
// Don't defer unlock, as doing so would make it impossible for
// multiple clients to wait on the same container.
l.mu.Lock()
- tg, ok := l.containerRootTGs[cid]
+ key := execID{cid: cid}
+ tg, ok := l.processes[key]
+ l.mu.Unlock()
if !ok {
- defer l.mu.Unlock()
- return fmt.Errorf("can't find process for container %q in %v", cid, l.containerRootTGs)
+ return fmt.Errorf("can't find process for container %q in %v", cid, l.processes)
}
- l.mu.Unlock()
// If the thread either has already exited or exits during waiting,
// consider the container exited.
@@ -590,10 +584,10 @@ func (l *Loader) waitPID(tgid kernel.ThreadID, cid string, clearStatus bool, wai
}*/
// If the process was started via runsc exec, it will have an
- // entry in l.execProcesses.
+ // entry in l.processes.
l.mu.Lock()
eid := execID{cid: cid, pid: tgid}
- tg, ok := l.execProcesses[eid]
+ tg, ok := l.processes[eid]
l.mu.Unlock()
if ok {
ws := l.wait(tg)
@@ -601,8 +595,8 @@ func (l *Loader) waitPID(tgid kernel.ThreadID, cid string, clearStatus bool, wai
if clearStatus {
// Remove tg from the cache.
l.mu.Lock()
- delete(l.execProcesses, eid)
- log.Debugf("updated execProcesses (removal): %v", l.execProcesses)
+ delete(l.processes, eid)
+ log.Debugf("updated processes (removal): %v", l.processes)
l.mu.Unlock()
}
return nil
@@ -626,13 +620,6 @@ func (l *Loader) wait(tg *kernel.ThreadGroup) uint32 {
return tg.ExitStatus().Status()
}
-func (l *Loader) setRootContainerID(cid string) {
- l.mu.Lock()
- defer l.mu.Unlock()
- l.containerRootTGs = map[string]*kernel.ThreadGroup{cid: l.k.GlobalInit()}
- l.sandboxID = cid
-}
-
// WaitForStartSignal waits for a start signal from the control server.
func (l *Loader) WaitForStartSignal() {
<-l.ctrl.manager.startChan
@@ -674,7 +661,8 @@ func newEmptyNetworkStack(conf *Config, clock tcpip.Clock) (inet.Stack, error) {
func (l *Loader) signal(cid string, signo int32, all bool) error {
l.mu.Lock()
- tg, ok := l.containerRootTGs[cid]
+ key := execID{cid: cid}
+ tg, ok := l.processes[key]
l.mu.Unlock()
if !ok {
return fmt.Errorf("failed to signal container %q: no such container", cid)