Files
Nicolas Lacasse f9b1ce2f7d Clean up tty.CheckChange and call it in SetForegroundProcessGroup.
Previously, CheckChange (corresponding to Linux's tty/tty_check_change()) was
only used the host TTY implementation, not the devpts implementation.

Furthermore, ThreadGroup.SetForegroundProcessGroup() duplicated some of the
logic in CheckChange, notably sending SIGTTOU to background tasks. This means
that, for host TTYs, we could send SIGTTOU multiple times. In some
circumstances, this leads the ioctl returning ERESTARTSYS in an infinite loop.

PiperOrigin-RevId: 735934036
2025-03-11 16:46:55 -07:00

666 lines
22 KiB
Go

// Copyright 2018 The gVisor Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package kernel
import (
"sync/atomic"
"gvisor.dev/gvisor/pkg/abi/linux"
"gvisor.dev/gvisor/pkg/atomicbitops"
"gvisor.dev/gvisor/pkg/context"
"gvisor.dev/gvisor/pkg/errors/linuxerr"
"gvisor.dev/gvisor/pkg/sentry/kernel/auth"
"gvisor.dev/gvisor/pkg/sentry/ktime"
"gvisor.dev/gvisor/pkg/sentry/limits"
"gvisor.dev/gvisor/pkg/sentry/usage"
"gvisor.dev/gvisor/pkg/sync"
)
// A ThreadGroup is a logical grouping of tasks that has widespread
// significance to other kernel features (e.g. signal handling). ("Thread
// groups" are usually called "processes" in userspace documentation.)
//
// ThreadGroup is a superset of Linux's struct signal_struct.
//
// +stateify savable
type ThreadGroup struct {
threadGroupNode
// signalHandlers is the set of signal handlers used by every task in this
// thread group. (signalHandlers may also be shared with other thread
// groups.)
//
// signalHandlers.mu (hereafter "the signal mutex") protects state related
// to signal handling, as well as state that usually needs to be atomic
// with signal handling, for all ThreadGroups and Tasks using
// signalHandlers. (This is analogous to Linux's use of struct
// sighand_struct::siglock.)
//
// The signalHandlers pointer is only mutated during execve
// (Task.finishExec), which occurs with TaskSet.mu and (the previous)
// signalHandlers.mu locked. Consequently:
//
// - Completing an execve requires that all other tasks in the thread group
// have exited, so task goroutines for non-exiting tasks in the thread
// group can read signalHandlers without a race condition.
//
// - If TaskSet.mu is locked (for reading or writing), any goroutine may
// read signalHandlers without a race condition.
//
// - If it is impossible for a task in the thread group to be completing an
// execve for another reason, any goroutine may read signalHandlers without
// a race condition.
//
// - Otherwise, ThreadGroup.signalLock() should be used to non-racily lock
// signalHandlers.mu; it also returns the locked signalHandlers.
signalHandlers *SignalHandlers
// pendingSignals is the set of pending signals that may be handled by any
// task in this thread group.
//
// pendingSignals is protected by the signal mutex.
pendingSignals pendingSignals
// If groupStopDequeued is true, a task in the thread group has dequeued a
// stop signal, but has not yet initiated the group stop.
//
// groupStopDequeued is analogous to Linux's JOBCTL_STOP_DEQUEUED.
//
// groupStopDequeued is protected by the signal mutex.
groupStopDequeued bool
// groupStopSignal is the signal that caused a group stop to be initiated.
//
// groupStopSignal is protected by the signal mutex.
groupStopSignal linux.Signal
// groupStopPendingCount is the number of active tasks in the thread group
// for which Task.groupStopPending is set.
//
// groupStopPendingCount is analogous to Linux's
// signal_struct::group_stop_count.
//
// groupStopPendingCount is protected by the signal mutex.
groupStopPendingCount int
// If groupStopComplete is true, groupStopPendingCount transitioned from
// non-zero to zero without an intervening SIGCONT.
//
// groupStopComplete is analogous to Linux's SIGNAL_STOP_STOPPED.
//
// groupStopComplete is protected by the signal mutex.
groupStopComplete bool
// If groupStopWaitable is true, the thread group is indicating a waitable
// group stop event (as defined by EventChildGroupStop).
//
// Linux represents the analogous state as SIGNAL_STOP_STOPPED being set
// and group_exit_code being non-zero.
//
// groupStopWaitable is protected by the signal mutex.
groupStopWaitable bool
// If groupContNotify is true, then a SIGCONT has recently ended a group
// stop on this thread group, and the first task to observe it should
// notify its parent. groupContInterrupted is true iff SIGCONT ended an
// incomplete group stop. If groupContNotify is false, groupContInterrupted is
// meaningless.
//
// Analogues in Linux:
//
// - groupContNotify && groupContInterrupted is represented by
// SIGNAL_CLD_STOPPED.
//
// - groupContNotify && !groupContInterrupted is represented by
// SIGNAL_CLD_CONTINUED.
//
// - !groupContNotify is represented by neither flag being set.
//
// groupContNotify and groupContInterrupted are protected by the signal
// mutex.
groupContNotify bool
groupContInterrupted bool
// If groupContWaitable is true, the thread group is indicating a waitable
// continue event (as defined by EventGroupContinue).
//
// groupContWaitable is analogous to Linux's SIGNAL_STOP_CONTINUED.
//
// groupContWaitable is protected by the signal mutex.
groupContWaitable bool
// exiting is true if all tasks in the ThreadGroup should exit. exiting is
// analogous to Linux's SIGNAL_GROUP_EXIT.
//
// exiting is protected by the signal mutex. exiting can only transition
// from false to true.
exiting bool
// exitStatus is the thread group's exit status.
//
// While exiting is false, exitStatus is protected by the signal mutex.
// When exiting becomes true, exitStatus becomes immutable.
exitStatus linux.WaitStatus
// terminationSignal is the signal that this thread group's leader will
// send to its parent when it exits.
//
// terminationSignal is protected by the TaskSet mutex.
terminationSignal linux.Signal
// liveGoroutines is the number of non-exited task goroutines in the thread
// group.
//
// liveGoroutines is not saved; it is reset as task goroutines are
// restarted by Task.Start.
liveGoroutines sync.WaitGroup `state:"nosave"`
timerMu threadGroupTimerMutex `state:"nosave"`
// ITIMER_* timers:
itimerRealTimer *ktime.SampledTimer
itimerRealListener itimerRealListener
itimerVirtTimer ktime.SyntheticTimer
itimerVirtListener itimerVirtListener
itimerProfTimer ktime.SyntheticTimer
itimerProfListener itimerProfListener
// RLIMIT_CPU timers:
rlimitCPUSoftTimer ktime.SyntheticTimer
rlimitCPUSoftListener rlimitCPUSoftListener
rlimitCPUHardTimer ktime.SyntheticTimer
rlimitCPUHardListener rlimitCPUHardListener
// timers is the thread group's POSIX interval timers. nextTimerID is the
// TimerID at which allocation should begin searching for an unused ID.
//
// timers and nextTimerID are protected by timerMu.
timers map[linux.TimerID]*IntervalTimer
nextTimerID linux.TimerID
// appCPUClockLast is the last task to have incremented appCPUClock or set
// a timer dependent on appCPUClock.
appCPUClockLast atomic.Pointer[Task] `state:".(*Task)"`
// appCPUClock is the sum of Task.appCPUClock for all past and present
// tasks in the thread group.
appCPUClock ktime.SyntheticClock
// appSysCPUClockLast is the last task to have incremented appSysCPUClock
// or set a timer dependent on appSysCPUClock.
appSysCPUClockLast atomic.Pointer[Task] `state:".(*Task)"`
// appSysCPUClock is the sum of Task.appSysCPUClock for all past and
// present tasks in the thread group.
appSysCPUClock ktime.SyntheticClock
// yieldCount is the sum of Task.yieldCount for all past and present tasks
// in the thread group.
yieldCount atomicbitops.Uint64
// childCPUStats is the CPU usage of all joined descendants of this thread
// group. childCPUStats is protected by the TaskSet mutex.
childCPUStats usage.CPUStats
// ioUsage is the I/O usage for all exited tasks in the thread group.
// The ioUsage pointer is immutable.
ioUsage *usage.IO
// maxRSS is the historical maximum resident set size of the thread group, updated when:
//
// - A task in the thread group exits, since after all tasks have
// exited the MemoryManager is no longer reachable.
//
// - The thread group completes an execve, since this changes
// MemoryManagers.
//
// maxRSS is protected by the TaskSet mutex.
maxRSS uint64
// childMaxRSS is the maximum resident set size in bytes of all joined
// descendants of this thread group.
//
// childMaxRSS is protected by the TaskSet mutex.
childMaxRSS uint64
// Resource limits for this ThreadGroup. The limits pointer is immutable.
limits *limits.LimitSet
// processGroup is the processGroup for this thread group.
//
// processGroup is protected by the TaskSet mutex.
processGroup *ProcessGroup
// execed indicates an exec has occurred since creation. This will be
// set by finishExec, and new TheadGroups will have this field cleared.
// When execed is set, the processGroup may no longer be changed.
//
// execed is protected by the TaskSet mutex.
execed bool
// oldRSeqCritical is the thread group's old rseq critical region.
oldRSeqCritical atomic.Pointer[OldRSeqCriticalRegion] `state:".(*OldRSeqCriticalRegion)"`
// tty is the thread group's controlling terminal. If nil, there is no
// controlling terminal.
//
// tty is protected by the signal mutex.
tty *TTY
// oomScoreAdj is the thread group's OOM score adjustment. This is
// currently not used but is maintained for consistency.
// TODO(gvisor.dev/issue/1967)
oomScoreAdj atomicbitops.Int32
// isChildSubreaper and hasChildSubreaper correspond to Linux's
// signal_struct::is_child_subreaper and has_child_subreaper.
//
// Both fields are protected by the TaskSet mutex.
//
// Quoting from signal.h:
// "PR_SET_CHILD_SUBREAPER marks a process, like a service manager, to
// re-parent orphan (double-forking) child processes to this process
// instead of 'init'. The service manager is able to receive SIGCHLD
// signals and is able to investigate the process until it calls
// wait(). All children of this process will inherit a flag if they
// should look for a child_subreaper process at exit"
isChildSubreaper bool
hasChildSubreaper bool
}
// NewThreadGroup returns a new, empty thread group in PID namespace pidns. The
// thread group leader will send its parent terminationSignal when it exits.
// The new thread group isn't visible to the system until a task has been
// created inside of it by a successful call to TaskSet.NewTask.
func (k *Kernel) NewThreadGroup(pidns *PIDNamespace, sh *SignalHandlers, terminationSignal linux.Signal, limits *limits.LimitSet) *ThreadGroup {
tg := &ThreadGroup{
threadGroupNode: threadGroupNode{
pidns: pidns,
},
signalHandlers: sh,
terminationSignal: terminationSignal,
timers: make(map[linux.TimerID]*IntervalTimer),
ioUsage: &usage.IO{},
limits: limits,
}
tg.itimerRealTimer = ktime.NewSampledTimer(k.timekeeper.monotonicClock, &tg.itimerRealListener)
tg.itimerRealListener.tg = tg
tg.itimerVirtTimer.Init(&tg.appCPUClock, &tg.itimerVirtListener)
tg.itimerVirtListener.tg = tg
tg.itimerProfTimer.Init(&tg.appSysCPUClock, &tg.itimerProfListener)
tg.itimerProfListener.tg = tg
tg.rlimitCPUSoftTimer.Init(&tg.appSysCPUClock, &tg.rlimitCPUSoftListener)
tg.rlimitCPUSoftListener.tg = tg
tg.rlimitCPUHardTimer.Init(&tg.appSysCPUClock, &tg.rlimitCPUHardListener)
tg.rlimitCPUHardListener.tg = tg
tg.oldRSeqCritical.Store(&OldRSeqCriticalRegion{})
return tg
}
// signalLock atomically locks tg.SignalHandlers().mu and returns the
// SignalHandlers.
func (tg *ThreadGroup) signalLock() *SignalHandlers {
sh := tg.SignalHandlers()
for {
sh.mu.Lock()
sh2 := tg.SignalHandlers()
if sh == sh2 {
return sh
}
sh.mu.Unlock()
sh = sh2
}
}
// Limits returns tg's limits.
func (tg *ThreadGroup) Limits() *limits.LimitSet {
return tg.limits
}
// Release releases the thread group's resources.
func (tg *ThreadGroup) Release(ctx context.Context) {
// Timers must be destroyed without holding the TaskSet or signal mutexes
// since timers send signals with Timer.mu locked.
tg.itimerRealTimer.Destroy()
tg.itimerVirtTimer.Destroy()
tg.itimerProfTimer.Destroy()
tg.rlimitCPUSoftTimer.Destroy()
tg.rlimitCPUHardTimer.Destroy()
var its []*IntervalTimer
tg.signalHandlers.mu.Lock()
for _, it := range tg.timers {
its = append(its, it)
}
clear(tg.timers) // nil maps can't be saved
// Disassociate from the tty if we have one.
var tty *TTY
if tg.tty != nil {
// Can't lock tty.mu due to lock ordering.
tty = tg.tty
}
tg.signalHandlers.mu.Unlock()
if tty != nil {
tty.mu.Lock()
tg.signalHandlers.mu.Lock()
tg.tty = nil
if tty.tg == tg {
tty.tg = nil
}
tg.signalHandlers.mu.Unlock()
tty.mu.Unlock()
}
for _, it := range its {
it.DestroyTimer()
}
}
// forEachChildThreadGroupLocked indicates over all child ThreadGroups.
//
// Precondition: TaskSet.mu must be held.
func (tg *ThreadGroup) forEachChildThreadGroupLocked(fn func(*ThreadGroup)) {
tg.walkDescendantThreadGroupsLocked(func(child *ThreadGroup) bool {
fn(child)
// Don't recurse below the immediate children.
return false
})
}
// walkDescendantThreadGroupsLocked recursively walks all descendent
// ThreadGroups and executes the visitor function. If visitor returns false for
// a given ThreadGroup, then that ThreadGroups descendants are excluded from
// further iteration.
//
// This corresponds to Linux's walk_process_tree.
//
// Precondition: TaskSet.mu must be held.
func (tg *ThreadGroup) walkDescendantThreadGroupsLocked(visitor func(*ThreadGroup) bool) {
for t := tg.tasks.Front(); t != nil; t = t.Next() {
for child := range t.children {
if child == child.tg.leader {
if !visitor(child.tg) {
// Don't recurse below child.
continue
}
child.tg.walkDescendantThreadGroupsLocked(visitor)
}
}
}
}
// TTY returns the thread group's controlling terminal. If nil, there is no
// controlling terminal.
func (tg *ThreadGroup) TTY() *TTY {
sh := tg.signalLock()
defer sh.mu.Unlock()
return tg.tty
}
// SetControllingTTY sets tty as the controlling terminal of tg.
func (tg *ThreadGroup) SetControllingTTY(ctx context.Context, tty *TTY, steal bool, isReadable bool) error {
tty.mu.Lock()
defer tty.mu.Unlock()
// We might be asked to set the controlling terminal of multiple
// processes, so we lock both the TaskSet and SignalHandlers.
tg.pidns.owner.mu.Lock()
defer tg.pidns.owner.mu.Unlock()
tg.signalHandlers.mu.Lock()
defer tg.signalHandlers.mu.Unlock()
// "The calling process must be a session leader and not have a
// controlling terminal already." - tty_ioctl(4)
if tg.processGroup.session.leader != tg {
return linuxerr.EINVAL
}
if tg.tty == tty {
return nil
}
creds := auth.CredentialsFromContext(ctx)
hasAdmin := creds.HasCapabilityIn(linux.CAP_SYS_ADMIN, creds.UserNamespace.Root())
// "If this terminal is already the controlling terminal of a different
// session group, then the ioctl fails with EPERM, unless the caller
// has the CAP_SYS_ADMIN capability and arg equals 1, in which case the
// terminal is stolen, and all processes that had it as controlling
// terminal lose it." - tty_ioctl(4)
if tty.tg != nil && tg.processGroup.session != tty.tg.processGroup.session {
// Stealing requires CAP_SYS_ADMIN in the root user namespace.
if !hasAdmin || !steal {
return linuxerr.EPERM
}
// Steal the TTY away. Unlike TIOCNOTTY, don't send signals.
for othertg := range tg.pidns.owner.Root.tgids {
// This won't deadlock by locking tg.signalHandlers
// because at this point:
// - We only lock signalHandlers if it's in the same
// session as the tty's controlling thread group.
// - We know that the calling thread group is not in
// the same session as the tty's controlling thread
// group.
if othertg.processGroup.session == tty.tg.processGroup.session {
othertg.signalHandlers.mu.NestedLock(signalHandlersLockTg)
othertg.tty = nil
othertg.signalHandlers.mu.NestedUnlock(signalHandlersLockTg)
}
}
}
if !isReadable && !hasAdmin {
return linuxerr.EPERM
}
// Set the controlling terminal and foreground process group.
tg.tty = tty
tg.processGroup.session.foreground = tg.processGroup
// Set this as the controlling process of the terminal.
tty.tg = tg
return nil
}
// ReleaseControllingTTY gives up tty as the controlling tty of tg.
func (tg *ThreadGroup) ReleaseControllingTTY(tty *TTY) error {
tty.mu.Lock()
defer tty.mu.Unlock()
// We might be asked to set the controlling terminal of multiple
// processes, so we lock both the TaskSet and SignalHandlers.
tg.pidns.owner.mu.RLock()
defer tg.pidns.owner.mu.RUnlock()
// Just below, we may re-lock signalHandlers in order to send signals.
// Thus we can't defer Unlock here.
tg.signalHandlers.mu.Lock()
if tg.tty == nil || tg.tty != tty {
tg.signalHandlers.mu.Unlock()
return linuxerr.ENOTTY
}
// "If the process was session leader, then send SIGHUP and SIGCONT to
// the foreground process group and all processes in the current
// session lose their controlling terminal." - tty_ioctl(4)
// Remove tty as the controlling tty for each process in the session,
// then send them SIGHUP and SIGCONT.
// If we're not the session leader, we don't have to do much.
if tty.tg != tg {
tg.tty = nil
tg.signalHandlers.mu.Unlock()
return nil
}
tg.signalHandlers.mu.Unlock()
// We're the session leader. SIGHUP and SIGCONT the foreground process
// group and remove all controlling terminals in the session.
var lastErr error
for othertg := range tg.pidns.owner.Root.tgids {
if othertg.processGroup.session == tg.processGroup.session {
othertg.signalHandlers.mu.Lock()
othertg.tty = nil
if othertg.processGroup == tg.processGroup.session.foreground {
if err := othertg.leader.sendSignalLocked(&linux.SignalInfo{Signo: int32(linux.SIGHUP)}, true /* group */); err != nil {
lastErr = err
}
if err := othertg.leader.sendSignalLocked(&linux.SignalInfo{Signo: int32(linux.SIGCONT)}, true /* group */); err != nil {
lastErr = err
}
}
othertg.signalHandlers.mu.Unlock()
}
}
return lastErr
}
// ForegroundProcessGroup returns the foreground process group of the thread
// group.
func (tg *ThreadGroup) ForegroundProcessGroup(tty *TTY) (*ProcessGroup, error) {
tty.mu.Lock()
defer tty.mu.Unlock()
tg.pidns.owner.mu.RLock()
defer tg.pidns.owner.mu.RUnlock()
tg.signalHandlers.mu.Lock()
defer tg.signalHandlers.mu.Unlock()
// fd must refer to the controlling terminal of the calling process.
// See tcgetpgrp(3)
if tg.tty != tty {
return nil, linuxerr.ENOTTY
}
return tg.processGroup.session.foreground, nil
}
// ForegroundProcessGroupID returns the foreground process group ID of the
// thread group.
func (tg *ThreadGroup) ForegroundProcessGroupID(tty *TTY) (ProcessGroupID, error) {
pg, err := tg.ForegroundProcessGroup(tty)
if err != nil {
return 0, err
}
return pg.id, nil
}
// SetForegroundProcessGroupID sets the foreground process group of tty to
// pgid. It corresponds to Linux's drivers/tty/tty_io.c:tiocspgrp().
func (tg *ThreadGroup) SetForegroundProcessGroupID(ctx context.Context, tty *TTY, pgid ProcessGroupID) error {
// First check that the change is allowed.
if err := tty.CheckChange(ctx, linux.SIGTTOU); err != nil {
// tiocspgrp() converts -EIO from tty_check_change() to
// -ENOTTY.
if linuxerr.Equals(linuxerr.EIO, err) {
return linuxerr.ENOTTY
}
return err
}
tty.mu.Lock()
defer tty.mu.Unlock()
tg.pidns.owner.mu.Lock()
defer tg.pidns.owner.mu.Unlock()
tg.signalHandlers.mu.Lock()
defer tg.signalHandlers.mu.Unlock()
// tty must be the controlling terminal.
if tg.tty != tty {
return linuxerr.ENOTTY
}
// Calling task's process group must be in the TTY session.
if tty.tg == nil || tty.tg.processGroup.session != tg.processGroup.session {
return linuxerr.ENOTTY
}
// pgid must be positive.
if pgid < 0 {
return linuxerr.EINVAL
}
// pg must not be empty. Empty process groups are removed from their
// pid namespaces.
pg, ok := tg.pidns.processGroups[pgid]
if !ok {
return linuxerr.ESRCH
}
// pg must be part of this process's session.
if tg.processGroup.session != pg.session {
return linuxerr.EPERM
}
tg.processGroup.session.foreground = pg
return nil
}
// SetChildSubreaper marks this ThreadGroup sets the isChildSubreaper field on
// this ThreadGroup, and marks all child ThreadGroups as having a subreaper.
// Recursion stops if we find another subreaper process, which is either a
// ThreadGroup with isChildSubreaper bit set, or a ThreadGroup with PID=1
// inside a PID namespace.
func (tg *ThreadGroup) SetChildSubreaper(isSubreaper bool) {
ts := tg.TaskSet()
ts.mu.Lock()
defer ts.mu.Unlock()
tg.isChildSubreaper = isSubreaper
tg.walkDescendantThreadGroupsLocked(func(child *ThreadGroup) bool {
// Is this child PID 1 in its PID namespace, or already a
// subreaper?
if child.isInitInLocked(child.PIDNamespace()) || child.isChildSubreaper {
// Don't set hasChildSubreaper, and don't recurse.
return false
}
child.hasChildSubreaper = isSubreaper
return true // Recurse.
})
}
// IsChildSubreaper returns whether this ThreadGroup is a child subreaper.
func (tg *ThreadGroup) IsChildSubreaper() bool {
ts := tg.TaskSet()
ts.mu.RLock()
defer ts.mu.RUnlock()
return tg.isChildSubreaper
}
// IsInitIn returns whether this ThreadGroup has TID 1 int the given
// PIDNamespace.
func (tg *ThreadGroup) IsInitIn(pidns *PIDNamespace) bool {
ts := tg.TaskSet()
ts.mu.RLock()
defer ts.mu.RUnlock()
return tg.isInitInLocked(pidns)
}
// isInitInLocked returns whether this ThreadGroup has TID 1 in the given
// PIDNamespace.
//
// Preconditions: TaskSet.mu must be locked.
func (tg *ThreadGroup) isInitInLocked(pidns *PIDNamespace) bool {
return pidns.tgids[tg] == initTID
}
// Execed returns whether this ThreadGroup has execed since creation.
func (tg *ThreadGroup) Execed() bool {
ts := tg.TaskSet()
ts.mu.RLock()
defer ts.mu.RUnlock()
return tg.execed
}