2011-02-04 14:41:26 +11: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.
|
|
|
|
|
|
2022-03-03 18:23:35 -08:00
|
|
|
//go:build unix || (js && wasm)
|
build: add build comments to core packages
The go/build package already recognizes
system-specific file names like
mycode_darwin.go
mycode_darwin_386.go
mycode_386.s
However, it is also common to write files that
apply to multiple architectures, so a recent CL added
to go/build the ability to process comments
listing a set of conditions for building. For example:
// +build darwin freebsd openbsd/386
says that this file should be compiled only on
OS X, FreeBSD, or 32-bit x86 OpenBSD systems.
These conventions are not yet documented
(hence this long CL description).
This CL adds build comments to the multi-system
files in the core library, a step toward making it
possible to use go/build to build them.
With this change go/build can handle crypto/rand,
exec, net, path/filepath, os/user, and time.
os and syscall need additional adjustments.
R=golang-dev, r, gri, r, gustavo
CC=golang-dev
https://golang.org/cl/5011046
2011-09-15 16:48:57 -04:00
|
|
|
|
2011-02-04 14:41:26 +11:00
|
|
|
package os
|
|
|
|
|
|
|
|
|
|
import (
|
2011-11-01 21:49:08 -04:00
|
|
|
"errors"
|
2011-02-04 14:41:26 +11:00
|
|
|
"runtime"
|
|
|
|
|
"syscall"
|
2012-02-21 14:10:34 +11:00
|
|
|
"time"
|
2011-02-04 14:41:26 +11:00
|
|
|
)
|
|
|
|
|
|
2012-03-01 21:56:54 -05:00
|
|
|
func (p *Process) wait() (ps *ProcessState, err error) {
|
2011-02-04 14:41:26 +11:00
|
|
|
if p.Pid == -1 {
|
2012-02-17 10:04:29 +11:00
|
|
|
return nil, syscall.EINVAL
|
2011-02-04 14:41:26 +11:00
|
|
|
}
|
2016-06-09 22:24:40 -07:00
|
|
|
|
|
|
|
|
// If we can block until Wait4 will succeed immediately, do so.
|
|
|
|
|
ready, err := p.blockUntilWaitable()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
if ready {
|
|
|
|
|
// Mark the process done now, before the call to Wait4,
|
|
|
|
|
// so that Process.signal will not send a signal.
|
|
|
|
|
p.setDone()
|
|
|
|
|
// Acquire a write lock on sigMu to wait for any
|
|
|
|
|
// active call to the signal method to complete.
|
|
|
|
|
p.sigMu.Lock()
|
|
|
|
|
p.sigMu.Unlock()
|
|
|
|
|
}
|
|
|
|
|
|
internal/poll, os: loop on EINTR
Historically we've assumed that we can install all signal handlers
with the SA_RESTART flag set, and let the system restart slow functions
if a signal is received. Therefore, we don't have to worry about EINTR.
This is only partially true, and we've added EINTR checks already for
connect, and open/read on Darwin, and sendfile on Solaris.
Other cases have turned up in #36644, #38033, and #38836.
Also, #20400 points out that when Go code is included in a C program,
the C program may install its own signal handlers without SA_RESTART.
In that case, Go code will see EINTR no matter what it does.
So, go ahead and check for EINTR. We don't check in the syscall package;
people using syscalls directly may want to check for EINTR themselves.
But we do check for EINTR in the higher level APIs in os and net,
and retry the system call if we see it.
This change looks safe, but of course we may be missing some cases
where we need to check for EINTR. As such cases turn up, we can add
tests to runtime/testdata/testprogcgo/eintr.go, and fix the code.
If there are any such cases, their handling after this change will be
no worse than it is today.
For #22838
Fixes #20400
Fixes #36644
Fixes #38033
Fixes #38836
Change-Id: I7e46ca8cafed0429c7a2386cc9edc9d9d47a6896
Reviewed-on: https://go-review.googlesource.com/c/go/+/232862
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Bryan C. Mills <bcmills@google.com>
2020-05-07 21:34:54 -07:00
|
|
|
var (
|
|
|
|
|
status syscall.WaitStatus
|
|
|
|
|
rusage syscall.Rusage
|
|
|
|
|
pid1 int
|
|
|
|
|
e error
|
|
|
|
|
)
|
|
|
|
|
for {
|
|
|
|
|
pid1, e = syscall.Wait4(p.Pid, &status, 0, &rusage)
|
|
|
|
|
if e != syscall.EINTR {
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-11-13 22:44:52 -05:00
|
|
|
if e != nil {
|
2011-02-04 14:41:26 +11:00
|
|
|
return nil, NewSyscallError("wait", e)
|
|
|
|
|
}
|
2012-02-20 15:36:08 +11:00
|
|
|
if pid1 != 0 {
|
2012-08-21 10:41:31 +10:00
|
|
|
p.setDone()
|
2011-07-11 15:47:42 -07:00
|
|
|
}
|
2012-02-21 14:10:34 +11:00
|
|
|
ps = &ProcessState{
|
|
|
|
|
pid: pid1,
|
2012-02-23 07:51:49 +11:00
|
|
|
status: status,
|
2012-02-21 14:10:34 +11:00
|
|
|
rusage: &rusage,
|
|
|
|
|
}
|
|
|
|
|
return ps, nil
|
2011-02-04 14:41:26 +11:00
|
|
|
}
|
|
|
|
|
|
2012-03-01 21:56:54 -05:00
|
|
|
func (p *Process) signal(sig Signal) error {
|
2014-02-28 08:31:12 -08:00
|
|
|
if p.Pid == -1 {
|
|
|
|
|
return errors.New("os: process already released")
|
|
|
|
|
}
|
2014-10-06 15:49:19 -04:00
|
|
|
if p.Pid == 0 {
|
|
|
|
|
return errors.New("os: process not initialized")
|
|
|
|
|
}
|
2016-06-09 22:24:40 -07:00
|
|
|
p.sigMu.RLock()
|
|
|
|
|
defer p.sigMu.RUnlock()
|
2014-10-06 15:49:19 -04:00
|
|
|
if p.done() {
|
2020-07-16 17:42:47 +00:00
|
|
|
return ErrProcessDone
|
2014-10-06 15:49:19 -04:00
|
|
|
}
|
os/signal: selective signal handling
Restore package os/signal, with new API:
Notify replaces Incoming, allowing clients
to ask for certain signals only. Also, signals
go to everyone who asks, not just one client.
This could plausibly move into package os now
that there are no magic side effects as a result
of the import.
Update runtime for new API: move common Unix
signal handling code into signal_unix.c.
(It's so easy to do this now that we don't have
to edit Makefiles!)
Tested on darwin,linux 386,amd64.
Fixes #1266.
R=r, dsymonds, bradfitz, iant, borman
CC=golang-dev
https://golang.org/cl/3749041
2012-02-13 13:52:37 -05:00
|
|
|
s, ok := sig.(syscall.Signal)
|
|
|
|
|
if !ok {
|
|
|
|
|
return errors.New("os: unsupported signal type")
|
|
|
|
|
}
|
|
|
|
|
if e := syscall.Kill(p.Pid, s); e != nil {
|
2014-10-06 15:49:19 -04:00
|
|
|
if e == syscall.ESRCH {
|
2020-07-16 17:42:47 +00:00
|
|
|
return ErrProcessDone
|
2014-10-06 15:49:19 -04:00
|
|
|
}
|
2011-11-13 22:44:52 -05:00
|
|
|
return e
|
2011-06-06 19:53:30 +10:00
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-01 17:36:35 +11:00
|
|
|
func (p *Process) release() error {
|
2011-02-04 14:41:26 +11:00
|
|
|
// NOOP for unix.
|
|
|
|
|
p.Pid = -1
|
|
|
|
|
// no need for a finalizer anymore
|
|
|
|
|
runtime.SetFinalizer(p, nil)
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-17 16:51:54 +11:00
|
|
|
func findProcess(pid int) (p *Process, err error) {
|
2011-02-04 14:41:26 +11:00
|
|
|
// NOOP for unix.
|
|
|
|
|
return newProcess(pid, 0), nil
|
|
|
|
|
}
|
2012-02-21 14:10:34 +11:00
|
|
|
|
2012-03-01 21:56:54 -05:00
|
|
|
func (p *ProcessState) userTime() time.Duration {
|
2012-02-21 14:10:34 +11:00
|
|
|
return time.Duration(p.rusage.Utime.Nano()) * time.Nanosecond
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-01 21:56:54 -05:00
|
|
|
func (p *ProcessState) systemTime() time.Duration {
|
2012-02-21 14:10:34 +11:00
|
|
|
return time.Duration(p.rusage.Stime.Nano()) * time.Nanosecond
|
|
|
|
|
}
|