2023-04-26 20:20:43 -04:00
|
|
|
//go:build solaris
|
|
|
|
// +build solaris
|
|
|
|
|
2019-07-29 19:43:22 -04:00
|
|
|
package pty
|
|
|
|
|
|
|
|
/* based on:
|
|
|
|
http://src.illumos.org/source/xref/illumos-gate/usr/src/lib/libc/port/gen/pt.c
|
|
|
|
*/
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"os"
|
|
|
|
"strconv"
|
|
|
|
"syscall"
|
|
|
|
"unsafe"
|
|
|
|
)
|
|
|
|
|
|
|
|
func open() (pty, tty *os.File, err error) {
|
2023-04-26 20:20:43 -04:00
|
|
|
ptmxfd, err := syscall.Open("/dev/ptmx", syscall.O_RDWR|syscall.O_NOCTTY, 0)
|
2019-07-29 19:43:22 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
2023-04-26 20:20:43 -04:00
|
|
|
p := os.NewFile(uintptr(ptmxfd), "/dev/ptmx")
|
|
|
|
// In case of error after this point, make sure we close the ptmx fd.
|
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
|
|
|
_ = p.Close() // Best effort.
|
|
|
|
}
|
|
|
|
}()
|
2019-07-29 19:43:22 -04:00
|
|
|
|
|
|
|
sname, err := ptsname(p)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
2023-04-26 20:20:43 -04:00
|
|
|
if err := grantpt(p); err != nil {
|
2019-07-29 19:43:22 -04:00
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
2023-04-26 20:20:43 -04:00
|
|
|
if err := unlockpt(p); err != nil {
|
2019-07-29 19:43:22 -04:00
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
2023-04-26 20:20:43 -04:00
|
|
|
ptsfd, err := syscall.Open(sname, os.O_RDWR|syscall.O_NOCTTY, 0)
|
2019-07-29 19:43:22 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
2023-04-26 20:20:43 -04:00
|
|
|
t := os.NewFile(uintptr(ptsfd), sname)
|
2019-07-29 19:43:22 -04:00
|
|
|
|
2023-04-26 20:20:43 -04:00
|
|
|
// In case of error after this point, make sure we close the pts fd.
|
|
|
|
defer func() {
|
2019-07-29 19:43:22 -04:00
|
|
|
if err != nil {
|
2023-04-26 20:20:43 -04:00
|
|
|
_ = t.Close() // Best effort.
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
// pushing terminal driver STREAMS modules as per pts(7)
|
|
|
|
for _, mod := range []string{"ptem", "ldterm", "ttcompat"} {
|
|
|
|
if err := streamsPush(t, mod); err != nil {
|
2019-07-29 19:43:22 -04:00
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-26 20:20:43 -04:00
|
|
|
return p, t, nil
|
2019-07-29 19:43:22 -04:00
|
|
|
}
|
|
|
|
|
2023-04-26 20:20:43 -04:00
|
|
|
func ptsname(f *os.File) (string, error) {
|
2024-01-08 04:22:09 -05:00
|
|
|
dev, err := ptsdev(f)
|
2019-07-29 19:43:22 -04:00
|
|
|
if err != nil {
|
2023-04-26 20:20:43 -04:00
|
|
|
return "", err
|
2019-07-29 19:43:22 -04:00
|
|
|
}
|
2023-04-26 20:20:43 -04:00
|
|
|
fn := "/dev/pts/" + strconv.FormatInt(int64(dev), 10)
|
|
|
|
|
|
|
|
if err := syscall.Access(fn, 0); err != nil {
|
|
|
|
return "", err
|
2019-07-29 19:43:22 -04:00
|
|
|
}
|
2023-04-26 20:20:43 -04:00
|
|
|
return fn, nil
|
2019-07-29 19:43:22 -04:00
|
|
|
}
|
|
|
|
|
2023-04-26 20:20:43 -04:00
|
|
|
func unlockpt(f *os.File) error {
|
|
|
|
istr := strioctl{
|
|
|
|
icCmd: UNLKPT,
|
|
|
|
icTimeout: 0,
|
|
|
|
icLen: 0,
|
|
|
|
icDP: nil,
|
2019-07-29 19:43:22 -04:00
|
|
|
}
|
2024-01-08 04:22:09 -05:00
|
|
|
return ioctl(f, I_STR, uintptr(unsafe.Pointer(&istr)))
|
2023-04-26 20:20:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func minor(x uint64) uint64 { return x & 0377 }
|
|
|
|
|
2024-01-08 04:22:09 -05:00
|
|
|
func ptsdev(f *os.File) (uint64, error) {
|
2023-04-26 20:20:43 -04:00
|
|
|
istr := strioctl{
|
|
|
|
icCmd: ISPTM,
|
|
|
|
icTimeout: 0,
|
|
|
|
icLen: 0,
|
|
|
|
icDP: nil,
|
2019-07-29 19:43:22 -04:00
|
|
|
}
|
2023-04-26 20:20:43 -04:00
|
|
|
|
2024-01-08 04:22:09 -05:00
|
|
|
if err := ioctl(f, I_STR, uintptr(unsafe.Pointer(&istr))); err != nil {
|
2023-04-26 20:20:43 -04:00
|
|
|
return 0, err
|
|
|
|
}
|
2024-01-08 04:22:09 -05:00
|
|
|
var errors = make(chan error, 1)
|
|
|
|
var results = make(chan uint64, 1)
|
|
|
|
defer close(errors)
|
|
|
|
defer close(results)
|
|
|
|
|
|
|
|
var err error
|
|
|
|
var sc syscall.RawConn
|
|
|
|
sc, err = f.SyscallConn()
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
err = sc.Control(func(fd uintptr) {
|
|
|
|
var status syscall.Stat_t
|
|
|
|
if err := syscall.Fstat(int(fd), &status); err != nil {
|
|
|
|
results <- 0
|
|
|
|
errors <- err
|
|
|
|
}
|
|
|
|
results <- uint64(minor(status.Rdev))
|
|
|
|
errors <- nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
2023-04-26 20:20:43 -04:00
|
|
|
return 0, err
|
|
|
|
}
|
2024-01-08 04:22:09 -05:00
|
|
|
return <-results, <-errors
|
2019-07-29 19:43:22 -04:00
|
|
|
}
|
|
|
|
|
2023-04-26 20:20:43 -04:00
|
|
|
type ptOwn struct {
|
|
|
|
rUID int32
|
|
|
|
rGID int32
|
2019-07-29 19:43:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func grantpt(f *os.File) error {
|
2024-01-08 04:22:09 -05:00
|
|
|
if _, err := ptsdev(f); err != nil {
|
2023-04-26 20:20:43 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
pto := ptOwn{
|
|
|
|
rUID: int32(os.Getuid()),
|
|
|
|
// XXX should first attempt to get gid of DEFAULT_TTY_GROUP="tty"
|
|
|
|
rGID: int32(os.Getgid()),
|
|
|
|
}
|
|
|
|
istr := strioctl{
|
|
|
|
icCmd: OWNERPT,
|
|
|
|
icTimeout: 0,
|
|
|
|
icLen: int32(unsafe.Sizeof(strioctl{})),
|
|
|
|
icDP: unsafe.Pointer(&pto),
|
|
|
|
}
|
2024-01-08 04:22:09 -05:00
|
|
|
if err := ioctl(f, I_STR, uintptr(unsafe.Pointer(&istr))); err != nil {
|
2019-07-29 19:43:22 -04:00
|
|
|
return errors.New("access denied")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-04-26 20:20:43 -04:00
|
|
|
// streamsPush pushes STREAMS modules if not already done so.
|
|
|
|
func streamsPush(f *os.File, mod string) error {
|
2019-07-29 19:43:22 -04:00
|
|
|
buf := []byte(mod)
|
2023-04-26 20:20:43 -04:00
|
|
|
|
2019-07-29 19:43:22 -04:00
|
|
|
// XXX I_FIND is not returning an error when the module
|
|
|
|
// is already pushed even though truss reports a return
|
|
|
|
// value of 1. A bug in the Go Solaris syscall interface?
|
|
|
|
// XXX without this we are at risk of the issue
|
|
|
|
// https://www.illumos.org/issues/9042
|
|
|
|
// but since we are not using libc or XPG4.2, we should not be
|
|
|
|
// double-pushing modules
|
2023-04-26 20:20:43 -04:00
|
|
|
|
2024-01-08 04:22:09 -05:00
|
|
|
if err := ioctl(f, I_FIND, uintptr(unsafe.Pointer(&buf[0]))); err != nil {
|
2019-07-29 19:43:22 -04:00
|
|
|
return nil
|
|
|
|
}
|
2024-01-08 04:22:09 -05:00
|
|
|
return ioctl(f, I_PUSH, uintptr(unsafe.Pointer(&buf[0])))
|
2019-07-29 19:43:22 -04:00
|
|
|
}
|