mirror of
https://github.com/octoleo/restic.git
synced 2024-11-15 17:47:21 +00:00
backend: Use IoctlSetPointerInt for tcsetpgrp
This function casts its argument to int32 before passing it to the system call, so that big-endian CPUs read the lower rather than the upper 32 bits of the pid. This also gets rid of the last import of "unsafe" in the Unix build. I changed syscall to x/sys/unix while I was at it, to remove one more import line. The constants and types there are aliases for their syscall counterparts.
This commit is contained in:
parent
ddbc0c1b37
commit
51dc80be5b
@ -7,21 +7,17 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"os/signal"
|
"os/signal"
|
||||||
"syscall"
|
|
||||||
"unsafe"
|
|
||||||
|
|
||||||
"github.com/restic/restic/internal/debug"
|
"github.com/restic/restic/internal/debug"
|
||||||
"github.com/restic/restic/internal/errors"
|
"github.com/restic/restic/internal/errors"
|
||||||
|
|
||||||
|
"golang.org/x/sys/unix"
|
||||||
)
|
)
|
||||||
|
|
||||||
func tcsetpgrp(fd int, pid int) error {
|
func tcsetpgrp(fd int, pid int) error {
|
||||||
_, _, errno := syscall.RawSyscall(syscall.SYS_IOCTL, uintptr(fd),
|
// IoctlSetPointerInt silently casts to int32 internally,
|
||||||
uintptr(syscall.TIOCSPGRP), uintptr(unsafe.Pointer(&pid)))
|
// so this assumes pid fits in 31 bits.
|
||||||
if errno == 0 {
|
return unix.IoctlSetPointerInt(fd, unix.TIOCSPGRP, pid)
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
return errno
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func startForeground(cmd *exec.Cmd) (bg func() error, err error) {
|
func startForeground(cmd *exec.Cmd) (bg func() error, err error) {
|
||||||
@ -35,11 +31,11 @@ func startForeground(cmd *exec.Cmd) (bg func() error, err error) {
|
|||||||
return bg, cmd.Start()
|
return bg, cmd.Start()
|
||||||
}
|
}
|
||||||
|
|
||||||
signal.Ignore(syscall.SIGTTIN)
|
signal.Ignore(unix.SIGTTIN)
|
||||||
signal.Ignore(syscall.SIGTTOU)
|
signal.Ignore(unix.SIGTTOU)
|
||||||
|
|
||||||
// run the command in its own process group
|
// run the command in its own process group
|
||||||
cmd.SysProcAttr = &syscall.SysProcAttr{
|
cmd.SysProcAttr = &unix.SysProcAttr{
|
||||||
Setpgid: true,
|
Setpgid: true,
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -51,7 +47,7 @@ func startForeground(cmd *exec.Cmd) (bg func() error, err error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// move the command's process group into the foreground
|
// move the command's process group into the foreground
|
||||||
prev := syscall.Getpgrp()
|
prev := unix.Getpgrp()
|
||||||
err = tcsetpgrp(int(tty.Fd()), cmd.Process.Pid)
|
err = tcsetpgrp(int(tty.Fd()), cmd.Process.Pid)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
_ = tty.Close()
|
_ = tty.Close()
|
||||||
@ -59,8 +55,8 @@ func startForeground(cmd *exec.Cmd) (bg func() error, err error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bg = func() error {
|
bg = func() error {
|
||||||
signal.Reset(syscall.SIGTTIN)
|
signal.Reset(unix.SIGTTIN)
|
||||||
signal.Reset(syscall.SIGTTOU)
|
signal.Reset(unix.SIGTTOU)
|
||||||
|
|
||||||
// reset the foreground process group
|
// reset the foreground process group
|
||||||
err = tcsetpgrp(int(tty.Fd()), prev)
|
err = tcsetpgrp(int(tty.Fd()), prev)
|
||||||
|
Loading…
Reference in New Issue
Block a user