2020-04-23 17:32:59 -07:00
|
|
|
// 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 devpts
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"gvisor.dev/gvisor/pkg/abi/linux"
|
2024-10-02 16:15:21 -07:00
|
|
|
"gvisor.dev/gvisor/pkg/context"
|
|
|
|
|
"gvisor.dev/gvisor/pkg/errors/linuxerr"
|
2020-04-23 17:32:59 -07:00
|
|
|
"gvisor.dev/gvisor/pkg/sentry/kernel"
|
2024-10-02 16:15:21 -07:00
|
|
|
"gvisor.dev/gvisor/pkg/sentry/vfs"
|
2020-04-23 17:32:59 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// Terminal is a pseudoterminal.
|
|
|
|
|
//
|
2024-10-02 16:15:21 -07:00
|
|
|
// Terminal implements kernel.TTYOperations.
|
|
|
|
|
//
|
2020-04-23 17:32:59 -07:00
|
|
|
// +stateify savable
|
|
|
|
|
type Terminal struct {
|
|
|
|
|
// n is the terminal index. It is immutable.
|
|
|
|
|
n uint32
|
|
|
|
|
|
|
|
|
|
// ld is the line discipline of the terminal. It is immutable.
|
|
|
|
|
ld *lineDiscipline
|
|
|
|
|
|
2024-10-02 16:15:21 -07:00
|
|
|
// root is the rootInode for this devpts mount. It is immutable.
|
|
|
|
|
root *rootInode
|
|
|
|
|
|
2020-04-23 17:32:59 -07:00
|
|
|
// masterKTTY contains the controlling process of the master end of
|
|
|
|
|
// this terminal. This field is immutable.
|
|
|
|
|
masterKTTY *kernel.TTY
|
|
|
|
|
|
2020-09-01 14:41:54 -07:00
|
|
|
// replicaKTTY contains the controlling process of the replica end of this
|
2020-04-23 17:32:59 -07:00
|
|
|
// terminal. This field is immutable.
|
2020-09-01 14:41:54 -07:00
|
|
|
replicaKTTY *kernel.TTY
|
2020-04-23 17:32:59 -07:00
|
|
|
}
|
|
|
|
|
|
2024-10-02 16:15:21 -07:00
|
|
|
var _ kernel.TTYOperations = (*Terminal)(nil)
|
2023-02-22 22:32:34 +01:00
|
|
|
|
2024-10-02 16:15:21 -07:00
|
|
|
// Open implements kernel.TTYOperations.Open.
|
|
|
|
|
func (t *Terminal) Open(ctx context.Context, mnt *vfs.Mount, vfsd *vfs.Dentry, opts vfs.OpenOptions) (*vfs.FileDescription, error) {
|
|
|
|
|
tsk := kernel.TaskFromContext(ctx)
|
|
|
|
|
if tsk == nil {
|
|
|
|
|
return nil, linuxerr.EIO
|
|
|
|
|
}
|
|
|
|
|
t.root.mu.Lock()
|
|
|
|
|
ri, ok := t.root.replicas[t.replicaKTTY.Index()]
|
|
|
|
|
t.root.mu.Unlock()
|
|
|
|
|
if !ok {
|
|
|
|
|
return nil, linuxerr.EIO
|
|
|
|
|
}
|
|
|
|
|
fd := &replicaFileDescription{
|
|
|
|
|
inode: ri,
|
|
|
|
|
}
|
|
|
|
|
fd.LockFD.Init(&ri.locks)
|
|
|
|
|
if err := fd.vfsfd.Init(fd, opts.Flags, mnt, vfsd, &vfs.FileDescriptionOptions{}); err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
if opts.Flags&linux.O_NOCTTY == 0 {
|
|
|
|
|
// Opening a replica sets the process' controlling TTY when
|
|
|
|
|
// possible. An error indicates it cannot be set, and is
|
|
|
|
|
// ignored silently. See Linux tty_open().
|
2024-10-03 11:23:05 -07:00
|
|
|
_ = tsk.ThreadGroup().SetControllingTTY(ctx, t.replicaKTTY, false /* steal */, fd.vfsfd.IsReadable())
|
2024-10-02 16:15:21 -07:00
|
|
|
}
|
|
|
|
|
ri.t.ld.replicaOpen()
|
|
|
|
|
return &fd.vfsfd, nil
|
2020-04-23 17:32:59 -07:00
|
|
|
}
|