2010-12-03 05:34:57 +01:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// Fork, exec, wait, etc.
|
|
|
|
|
|
|
|
package syscall
|
|
|
|
|
2011-10-23 21:04:37 +02:00
|
|
|
import (
|
|
|
|
"sync"
|
|
|
|
"unsafe"
|
|
|
|
)
|
|
|
|
|
|
|
|
//sysnb raw_fork() (pid Pid_t, errno int)
|
|
|
|
//fork() Pid_t
|
|
|
|
|
|
|
|
//sysnb raw_setsid() (errno int)
|
|
|
|
//setsid() Pid_t
|
|
|
|
|
|
|
|
//sysnb raw_chroot(path *byte) (errno int)
|
|
|
|
//chroot(path *byte) int
|
|
|
|
|
|
|
|
//sysnb raw_chdir(path *byte) (errno int)
|
|
|
|
//chdir(path *byte) int
|
|
|
|
|
|
|
|
//sysnb raw_fcntl(fd int, cmd int, arg int) (val int, errno int)
|
|
|
|
//fcntl(fd int, cmd int, arg int) int
|
|
|
|
|
|
|
|
//sysnb raw_close(fd int) (errno int)
|
|
|
|
//close(fd int) int
|
|
|
|
|
|
|
|
//sysnb raw_ioctl(fd int, cmd int, val int) (rval int, errno int)
|
|
|
|
//ioctl(fd int, cmd int, val int) int
|
|
|
|
|
|
|
|
//sysnb raw_execve(argv0 *byte, argv **byte, envv **byte) (errno int)
|
|
|
|
//execve(argv0 *byte, argv **byte, envv **byte) int
|
|
|
|
|
|
|
|
//sysnb raw_read(fd int, p *byte, np int) (n int, errno int)
|
|
|
|
//read(fd int, buf *byte, count Size_t) Ssize_t
|
|
|
|
|
|
|
|
//sysnb raw_write(fd int, buf *byte, count int) int
|
|
|
|
//write(fd int, buf *byte, count Size_t) Ssize_t
|
|
|
|
|
|
|
|
//sysnb raw_exit(status int)
|
|
|
|
//_exit(status int)
|
|
|
|
|
|
|
|
// Lock synchronizing creation of new file descriptors with fork.
|
|
|
|
//
|
|
|
|
// We want the child in a fork/exec sequence to inherit only the
|
|
|
|
// file descriptors we intend. To do that, we mark all file
|
|
|
|
// descriptors close-on-exec and then, in the child, explicitly
|
|
|
|
// unmark the ones we want the exec'ed program to keep.
|
|
|
|
// Unix doesn't make this easy: there is, in general, no way to
|
|
|
|
// allocate a new file descriptor close-on-exec. Instead you
|
|
|
|
// have to allocate the descriptor and then mark it close-on-exec.
|
|
|
|
// If a fork happens between those two events, the child's exec
|
|
|
|
// will inherit an unwanted file descriptor.
|
|
|
|
//
|
|
|
|
// This lock solves that race: the create new fd/mark close-on-exec
|
|
|
|
// operation is done holding ForkLock for reading, and the fork itself
|
|
|
|
// is done holding ForkLock for writing. At least, that's the idea.
|
|
|
|
// There are some complications.
|
|
|
|
//
|
|
|
|
// Some system calls that create new file descriptors can block
|
|
|
|
// for arbitrarily long times: open on a hung NFS server or named
|
|
|
|
// pipe, accept on a socket, and so on. We can't reasonably grab
|
|
|
|
// the lock across those operations.
|
|
|
|
//
|
|
|
|
// It is worse to inherit some file descriptors than others.
|
|
|
|
// If a non-malicious child accidentally inherits an open ordinary file,
|
|
|
|
// that's not a big deal. On the other hand, if a long-lived child
|
|
|
|
// accidentally inherits the write end of a pipe, then the reader
|
|
|
|
// of that pipe will not see EOF until that child exits, potentially
|
|
|
|
// causing the parent program to hang. This is a common problem
|
|
|
|
// in threaded C programs that use popen.
|
|
|
|
//
|
|
|
|
// Luckily, the file descriptors that are most important not to
|
|
|
|
// inherit are not the ones that can take an arbitrarily long time
|
|
|
|
// to create: pipe returns instantly, and the net package uses
|
|
|
|
// non-blocking I/O to accept on a listening socket.
|
|
|
|
// The rules for which file descriptor-creating operations use the
|
|
|
|
// ForkLock are as follows:
|
|
|
|
//
|
|
|
|
// 1) Pipe. Does not block. Use the ForkLock.
|
|
|
|
// 2) Socket. Does not block. Use the ForkLock.
|
|
|
|
// 3) Accept. If using non-blocking mode, use the ForkLock.
|
|
|
|
// Otherwise, live with the race.
|
2011-10-27 01:57:58 +02:00
|
|
|
// 4) Open. Can block. Use O_CLOEXEC if available (GNU/Linux).
|
2011-10-23 21:04:37 +02:00
|
|
|
// Otherwise, live with the race.
|
|
|
|
// 5) Dup. Does not block. Use the ForkLock.
|
2011-10-27 01:57:58 +02:00
|
|
|
// On GNU/Linux, could use fcntl F_DUPFD_CLOEXEC
|
2011-10-23 21:04:37 +02:00
|
|
|
// instead of the ForkLock, but only for dup(fd, -1).
|
|
|
|
|
|
|
|
var ForkLock sync.RWMutex
|
|
|
|
|
|
|
|
// Convert array of string to array
|
|
|
|
// of NUL-terminated byte pointer.
|
|
|
|
func StringSlicePtr(ss []string) []*byte {
|
|
|
|
bb := make([]*byte, len(ss)+1)
|
|
|
|
for i := 0; i < len(ss); i++ {
|
|
|
|
bb[i] = StringBytePtr(ss[i])
|
|
|
|
}
|
|
|
|
bb[len(ss)] = nil
|
|
|
|
return bb
|
|
|
|
}
|
|
|
|
|
|
|
|
func CloseOnExec(fd int) { fcntl(fd, F_SETFD, FD_CLOEXEC) }
|
|
|
|
|
|
|
|
func SetNonblock(fd int, nonblocking bool) (errno int) {
|
|
|
|
flag, err := fcntl(fd, F_GETFL, 0)
|
|
|
|
if err != 0 {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if nonblocking {
|
|
|
|
flag |= O_NONBLOCK
|
|
|
|
} else {
|
|
|
|
flag &= ^O_NONBLOCK
|
|
|
|
}
|
|
|
|
_, err = fcntl(fd, F_SETFL, flag)
|
|
|
|
return err
|
|
|
|
}
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
// Fork, dup fd onto 0..len(fd), and exec(argv0, argvv, envv) in child.
|
|
|
|
// If a dup or exec fails, write the errno int to pipe.
|
|
|
|
// (Pipe is close-on-exec so if exec succeeds, it will be closed.)
|
|
|
|
// In the child, this function must not acquire any locks, because
|
|
|
|
// they might have been locked at the time of the fork. This means
|
|
|
|
// no rescheduling, no malloc calls, and no new stack segments.
|
2011-10-23 21:04:37 +02:00
|
|
|
// The calls to RawSyscall are okay because they are assembly
|
|
|
|
// functions that do not grow the stack.
|
2011-09-16 17:47:21 +02:00
|
|
|
func forkAndExecInChild(argv0 *byte, argv, envv []*byte, chroot, dir *byte, attr *ProcAttr, sys *SysProcAttr, pipe int) (pid int, err int) {
|
2010-12-03 05:34:57 +01:00
|
|
|
// Declare all variables at top in case any
|
|
|
|
// declarations require heap allocation (e.g., err1).
|
2011-10-23 21:04:37 +02:00
|
|
|
var r1 Pid_t
|
|
|
|
var err1 int
|
2011-03-17 00:05:44 +01:00
|
|
|
var nextfd int
|
|
|
|
var i int
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-03-25 00:46:17 +01:00
|
|
|
// guard against side effects of shuffling fds below.
|
|
|
|
fd := append([]int(nil), attr.Files...)
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
// About to call fork.
|
|
|
|
// No more allocation or calls of non-assembly functions.
|
2011-10-23 21:04:37 +02:00
|
|
|
r1, err1 = raw_fork()
|
|
|
|
if err1 != 0 {
|
|
|
|
return 0, int(err1)
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
|
|
|
|
2011-10-23 21:04:37 +02:00
|
|
|
if r1 != 0 {
|
2010-12-03 05:34:57 +01:00
|
|
|
// parent; return PID
|
2011-10-23 21:04:37 +02:00
|
|
|
return int(r1), 0
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Fork succeeded, now in child.
|
|
|
|
|
|
|
|
// Enable tracing if requested.
|
2011-09-16 17:47:21 +02:00
|
|
|
if sys.Ptrace {
|
2011-10-23 21:04:37 +02:00
|
|
|
err1 = raw_ptrace(_PTRACE_TRACEME, 0, nil, nil)
|
|
|
|
if err1 != 0 {
|
2011-03-17 00:05:44 +01:00
|
|
|
goto childerror
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-25 00:46:17 +01:00
|
|
|
// Session ID
|
2011-09-16 17:47:21 +02:00
|
|
|
if sys.Setsid {
|
2011-10-23 21:04:37 +02:00
|
|
|
err1 = raw_setsid()
|
|
|
|
if err1 != 0 {
|
2011-03-25 00:46:17 +01:00
|
|
|
goto childerror
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-16 17:47:21 +02:00
|
|
|
// Set process group
|
|
|
|
if sys.Setpgid {
|
2011-10-23 21:04:37 +02:00
|
|
|
err1 = Setpgid(0, 0)
|
|
|
|
if err1 != 0 {
|
2011-09-16 17:47:21 +02:00
|
|
|
goto childerror
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Chroot
|
|
|
|
if chroot != nil {
|
2011-10-23 21:04:37 +02:00
|
|
|
err1 = raw_chroot(chroot)
|
|
|
|
if err1 != 0 {
|
2011-09-16 17:47:21 +02:00
|
|
|
goto childerror
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// User and groups
|
|
|
|
if cred := sys.Credential; cred != nil {
|
2011-10-23 21:04:37 +02:00
|
|
|
ngroups := len(cred.Groups)
|
|
|
|
if ngroups == 0 {
|
|
|
|
err1 = setgroups(0, nil)
|
|
|
|
} else {
|
|
|
|
groups := make([]Gid_t, ngroups)
|
|
|
|
for i, v := range cred.Groups {
|
|
|
|
groups[i] = Gid_t(v)
|
|
|
|
}
|
|
|
|
err1 = setgroups(ngroups, &groups[0])
|
2011-09-16 17:47:21 +02:00
|
|
|
}
|
2011-10-23 21:04:37 +02:00
|
|
|
if err1 != 0 {
|
2011-09-16 17:47:21 +02:00
|
|
|
goto childerror
|
|
|
|
}
|
2011-10-23 21:04:37 +02:00
|
|
|
err1 = Setgid(int(cred.Gid))
|
|
|
|
if err1 != 0 {
|
2011-09-16 17:47:21 +02:00
|
|
|
goto childerror
|
|
|
|
}
|
2011-10-23 21:04:37 +02:00
|
|
|
err1 = Setuid(int(cred.Uid))
|
|
|
|
if err1 != 0 {
|
2011-09-16 17:47:21 +02:00
|
|
|
goto childerror
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
// Chdir
|
|
|
|
if dir != nil {
|
2011-10-23 21:04:37 +02:00
|
|
|
err1 = raw_chdir(dir)
|
|
|
|
if err1 != 0 {
|
2011-03-17 00:05:44 +01:00
|
|
|
goto childerror
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pass 1: look for fd[i] < i and move those up above len(fd)
|
|
|
|
// so that pass 2 won't stomp on an fd it needs later.
|
2011-03-17 00:05:44 +01:00
|
|
|
nextfd = int(len(fd))
|
2010-12-03 05:34:57 +01:00
|
|
|
if pipe < nextfd {
|
2011-10-23 21:04:37 +02:00
|
|
|
_, err1 = Dup2(pipe, nextfd)
|
|
|
|
if err1 != 0 {
|
2011-03-17 00:05:44 +01:00
|
|
|
goto childerror
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
2011-10-23 21:04:37 +02:00
|
|
|
raw_fcntl(nextfd, F_SETFD, FD_CLOEXEC)
|
2011-03-17 00:05:44 +01:00
|
|
|
pipe = nextfd
|
|
|
|
nextfd++
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
|
|
|
for i = 0; i < len(fd); i++ {
|
|
|
|
if fd[i] >= 0 && fd[i] < int(i) {
|
2011-10-23 21:04:37 +02:00
|
|
|
_, err1 = Dup2(fd[i], nextfd)
|
|
|
|
if err1 != 0 {
|
2011-03-17 00:05:44 +01:00
|
|
|
goto childerror
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
2011-10-23 21:04:37 +02:00
|
|
|
raw_fcntl(nextfd, F_SETFD, FD_CLOEXEC)
|
2011-03-17 00:05:44 +01:00
|
|
|
fd[i] = nextfd
|
|
|
|
nextfd++
|
|
|
|
if nextfd == pipe { // don't stomp on pipe
|
|
|
|
nextfd++
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pass 2: dup fd[i] down onto i.
|
|
|
|
for i = 0; i < len(fd); i++ {
|
|
|
|
if fd[i] == -1 {
|
2011-10-23 21:04:37 +02:00
|
|
|
raw_close(i)
|
2011-03-17 00:05:44 +01:00
|
|
|
continue
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
|
|
|
if fd[i] == int(i) {
|
2011-10-27 01:57:58 +02:00
|
|
|
// Dup2(i, i) won't clear close-on-exec flag on
|
|
|
|
// GNU/Linux, probably not elsewhere either.
|
2011-10-23 21:04:37 +02:00
|
|
|
_, err1 = raw_fcntl(fd[i], F_SETFD, 0)
|
|
|
|
if err1 != 0 {
|
2011-03-17 00:05:44 +01:00
|
|
|
goto childerror
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
2011-03-17 00:05:44 +01:00
|
|
|
continue
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
|
|
|
// The new fd is created NOT close-on-exec,
|
|
|
|
// which is exactly what we want.
|
2011-10-23 21:04:37 +02:00
|
|
|
_, err1 = Dup2(fd[i], i)
|
|
|
|
if err1 != 0 {
|
2011-03-17 00:05:44 +01:00
|
|
|
goto childerror
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// By convention, we don't close-on-exec the fds we are
|
|
|
|
// started with, so if len(fd) < 3, close 0, 1, 2 as needed.
|
|
|
|
// Programs that know they inherit fds >= 3 will need
|
|
|
|
// to set them close-on-exec.
|
|
|
|
for i = len(fd); i < 3; i++ {
|
2011-10-23 21:04:37 +02:00
|
|
|
raw_close(i)
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
|
|
|
|
2011-09-16 17:47:21 +02:00
|
|
|
// Detach fd 0 from tty
|
|
|
|
if sys.Noctty {
|
2011-10-23 21:04:37 +02:00
|
|
|
_, err1 = raw_ioctl(0, TIOCNOTTY, 0)
|
|
|
|
if err1 != 0 {
|
2011-09-16 17:47:21 +02:00
|
|
|
goto childerror
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make fd 0 the tty
|
|
|
|
if sys.Setctty {
|
2011-10-23 21:04:37 +02:00
|
|
|
_, err1 = raw_ioctl(0, TIOCSCTTY, 0)
|
|
|
|
if err1 != 0 {
|
2011-09-16 17:47:21 +02:00
|
|
|
goto childerror
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
// Time to exec.
|
2011-10-23 21:04:37 +02:00
|
|
|
err1 = raw_execve(argv0, &argv[0], &envv[0])
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
childerror:
|
|
|
|
// send error code on pipe
|
2011-10-23 21:04:37 +02:00
|
|
|
raw_write(pipe, (*byte)(unsafe.Pointer(&err1)), int(unsafe.Sizeof(err1)))
|
2010-12-03 05:34:57 +01:00
|
|
|
for {
|
2011-10-23 21:04:37 +02:00
|
|
|
raw_exit(253)
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Calling panic is not actually safe,
|
|
|
|
// but the for loop above won't break
|
|
|
|
// and this shuts up the compiler.
|
2011-03-17 00:05:44 +01:00
|
|
|
panic("unreached")
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
|
|
|
|
2011-09-16 17:47:21 +02:00
|
|
|
// Credential holds user and group identities to be assumed
|
|
|
|
// by a child process started by StartProcess.
|
|
|
|
type Credential struct {
|
|
|
|
Uid uint32 // User ID.
|
|
|
|
Gid uint32 // Group ID.
|
|
|
|
Groups []uint32 // Supplementary group IDs.
|
|
|
|
}
|
2011-03-25 00:46:17 +01:00
|
|
|
|
2011-09-16 17:47:21 +02:00
|
|
|
// ProcAttr holds attributes that will be applied to a new process started
|
|
|
|
// by StartProcess.
|
2011-03-25 00:46:17 +01:00
|
|
|
type ProcAttr struct {
|
2011-09-16 17:47:21 +02:00
|
|
|
Dir string // Current working directory.
|
|
|
|
Env []string // Environment.
|
|
|
|
Files []int // File descriptors.
|
|
|
|
Sys *SysProcAttr
|
2011-03-25 00:46:17 +01:00
|
|
|
}
|
|
|
|
|
2011-09-16 17:47:21 +02:00
|
|
|
type SysProcAttr struct {
|
|
|
|
Chroot string // Chroot.
|
|
|
|
Credential *Credential // Credential.
|
|
|
|
Ptrace bool // Enable tracing.
|
|
|
|
Setsid bool // Create session.
|
|
|
|
Setpgid bool // Set process group ID to new pid (SYSV setpgrp)
|
|
|
|
Setctty bool // Set controlling terminal to fd 0
|
|
|
|
Noctty bool // Detach fd 0 from controlling terminal
|
|
|
|
}
|
|
|
|
|
|
|
|
var zeroProcAttr ProcAttr
|
|
|
|
var zeroSysProcAttr SysProcAttr
|
2011-03-25 00:46:17 +01:00
|
|
|
|
|
|
|
func forkExec(argv0 string, argv []string, attr *ProcAttr) (pid int, err int) {
|
2011-03-17 00:05:44 +01:00
|
|
|
var p [2]int
|
2011-10-23 21:04:37 +02:00
|
|
|
var n int
|
2011-03-17 00:05:44 +01:00
|
|
|
var err1 uintptr
|
|
|
|
var wstatus WaitStatus
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-03-25 00:46:17 +01:00
|
|
|
if attr == nil {
|
2011-09-16 17:47:21 +02:00
|
|
|
attr = &zeroProcAttr
|
|
|
|
}
|
|
|
|
sys := attr.Sys
|
|
|
|
if sys == nil {
|
|
|
|
sys = &zeroSysProcAttr
|
2011-03-25 00:46:17 +01:00
|
|
|
}
|
|
|
|
|
2011-03-17 00:05:44 +01:00
|
|
|
p[0] = -1
|
|
|
|
p[1] = -1
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
// Convert args to C form.
|
2011-03-17 00:05:44 +01:00
|
|
|
argv0p := StringBytePtr(argv0)
|
2011-10-23 21:04:37 +02:00
|
|
|
argvp := StringSlicePtr(argv)
|
|
|
|
envvp := StringSlicePtr(attr.Env)
|
2011-03-25 00:46:17 +01:00
|
|
|
|
|
|
|
if OS == "freebsd" && len(argv[0]) > len(argv0) {
|
|
|
|
argvp[0] = argv0p
|
|
|
|
}
|
|
|
|
|
2011-09-16 17:47:21 +02:00
|
|
|
var chroot *byte
|
|
|
|
if sys.Chroot != "" {
|
|
|
|
chroot = StringBytePtr(sys.Chroot)
|
|
|
|
}
|
2011-03-25 00:46:17 +01:00
|
|
|
var dir *byte
|
|
|
|
if attr.Dir != "" {
|
|
|
|
dir = StringBytePtr(attr.Dir)
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Acquire the fork lock so that no other threads
|
|
|
|
// create new fds that are not yet close-on-exec
|
|
|
|
// before we fork.
|
2011-03-17 00:05:44 +01:00
|
|
|
ForkLock.Lock()
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
// Allocate child status pipe close on exec.
|
|
|
|
if err = Pipe(p[0:]); err != 0 {
|
2011-03-17 00:05:44 +01:00
|
|
|
goto error
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
2011-03-17 00:05:44 +01:00
|
|
|
if _, err = fcntl(p[0], F_SETFD, FD_CLOEXEC); err != 0 {
|
|
|
|
goto error
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
2011-03-17 00:05:44 +01:00
|
|
|
if _, err = fcntl(p[1], F_SETFD, FD_CLOEXEC); err != 0 {
|
|
|
|
goto error
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Kick off child.
|
2011-09-16 17:47:21 +02:00
|
|
|
pid, err = forkAndExecInChild(argv0p, argvp, envvp, chroot, dir, attr, sys, p[1])
|
2010-12-03 05:34:57 +01:00
|
|
|
if err != 0 {
|
2011-09-20 23:00:07 +02:00
|
|
|
goto error
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
2011-03-17 00:05:44 +01:00
|
|
|
ForkLock.Unlock()
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
// Read child error status from pipe.
|
2011-03-17 00:05:44 +01:00
|
|
|
Close(p[1])
|
2011-10-23 21:04:37 +02:00
|
|
|
n, err = raw_read(p[0], (*byte)(unsafe.Pointer(&err1)), int(unsafe.Sizeof(err1)))
|
2011-03-17 00:05:44 +01:00
|
|
|
Close(p[0])
|
2010-12-03 05:34:57 +01:00
|
|
|
if err != 0 || n != 0 {
|
2011-10-23 21:04:37 +02:00
|
|
|
if n == int(unsafe.Sizeof(err1)) {
|
2011-03-17 00:05:44 +01:00
|
|
|
err = int(err1)
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
|
|
|
if err == 0 {
|
2011-03-17 00:05:44 +01:00
|
|
|
err = EPIPE
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Child failed; wait for it to exit, to make sure
|
|
|
|
// the zombies don't accumulate.
|
2011-03-17 00:05:44 +01:00
|
|
|
_, err1 := Wait4(pid, &wstatus, 0, nil)
|
2010-12-03 05:34:57 +01:00
|
|
|
for err1 == EINTR {
|
2011-03-17 00:05:44 +01:00
|
|
|
_, err1 = Wait4(pid, &wstatus, 0, nil)
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read got EOF, so pipe closed on exec, so exec succeeded.
|
|
|
|
return pid, 0
|
2011-09-20 23:00:07 +02:00
|
|
|
|
|
|
|
error:
|
|
|
|
if p[0] >= 0 {
|
|
|
|
Close(p[0])
|
|
|
|
Close(p[1])
|
|
|
|
}
|
|
|
|
ForkLock.Unlock()
|
|
|
|
return 0, err
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Combination of fork and exec, careful to be thread safe.
|
2011-03-25 00:46:17 +01:00
|
|
|
func ForkExec(argv0 string, argv []string, attr *ProcAttr) (pid int, err int) {
|
|
|
|
return forkExec(argv0, argv, attr)
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
|
|
|
|
2011-03-25 00:46:17 +01:00
|
|
|
// StartProcess wraps ForkExec for package os.
|
|
|
|
func StartProcess(argv0 string, argv []string, attr *ProcAttr) (pid, handle int, err int) {
|
|
|
|
pid, err = forkExec(argv0, argv, attr)
|
|
|
|
return pid, 0, err
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Ordinary exec.
|
|
|
|
func Exec(argv0 string, argv []string, envv []string) (err int) {
|
2011-10-23 21:04:37 +02:00
|
|
|
err1 := raw_execve(StringBytePtr(argv0),
|
|
|
|
&StringSlicePtr(argv)[0],
|
|
|
|
&StringSlicePtr(envv)[0])
|
|
|
|
return int(err1)
|
2011-03-17 00:05:44 +01:00
|
|
|
}
|