2014-09-04 00:04:04 -06:00
|
|
|
// Copyright 2013 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.
|
|
|
|
|
|
|
|
// +build darwin dragonfly freebsd netbsd openbsd
|
|
|
|
|
|
|
|
package runtime
|
|
|
|
|
|
|
|
// Integrated network poller (kqueue-based implementation).
|
|
|
|
|
|
|
|
import "unsafe"
|
|
|
|
|
|
|
|
func kqueue() int32
|
|
|
|
|
|
|
|
//go:noescape
|
|
|
|
func kevent(kq int32, ch *keventt, nch int32, ev *keventt, nev int32, ts *timespec) int32
|
|
|
|
func closeonexec(fd int32)
|
|
|
|
|
|
|
|
var (
|
2015-07-10 16:28:01 -06:00
|
|
|
kq int32 = -1
|
2014-09-04 00:04:04 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
func netpollinit() {
|
|
|
|
kq = kqueue()
|
|
|
|
if kq < 0 {
|
2017-04-24 03:37:48 -06:00
|
|
|
println("runtime: kqueue failed with", -kq)
|
|
|
|
throw("runtime: netpollinit failed")
|
2014-09-04 00:04:04 -06:00
|
|
|
}
|
|
|
|
closeonexec(kq)
|
|
|
|
}
|
|
|
|
|
2017-02-10 16:17:38 -07:00
|
|
|
func netpolldescriptor() uintptr {
|
|
|
|
return uintptr(kq)
|
|
|
|
}
|
|
|
|
|
2014-09-04 00:04:04 -06:00
|
|
|
func netpollopen(fd uintptr, pd *pollDesc) int32 {
|
|
|
|
// Arm both EVFILT_READ and EVFILT_WRITE in edge-triggered mode (EV_CLEAR)
|
2016-03-01 16:21:55 -07:00
|
|
|
// for the whole fd lifetime. The notifications are automatically unregistered
|
2014-09-04 00:04:04 -06:00
|
|
|
// when fd is closed.
|
|
|
|
var ev [2]keventt
|
|
|
|
*(*uintptr)(unsafe.Pointer(&ev[0].ident)) = fd
|
|
|
|
ev[0].filter = _EVFILT_READ
|
|
|
|
ev[0].flags = _EV_ADD | _EV_CLEAR
|
|
|
|
ev[0].fflags = 0
|
|
|
|
ev[0].data = 0
|
|
|
|
ev[0].udata = (*byte)(unsafe.Pointer(pd))
|
|
|
|
ev[1] = ev[0]
|
|
|
|
ev[1].filter = _EVFILT_WRITE
|
|
|
|
n := kevent(kq, &ev[0], 2, nil, 0, nil)
|
|
|
|
if n < 0 {
|
|
|
|
return -n
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func netpollclose(fd uintptr) int32 {
|
|
|
|
// Don't need to unregister because calling close()
|
|
|
|
// on fd will remove any kevents that reference the descriptor.
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func netpollarm(pd *pollDesc, mode int) {
|
2017-04-24 03:37:48 -06:00
|
|
|
throw("runtime: unused")
|
2014-09-04 00:04:04 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Polls for ready network connections.
|
|
|
|
// Returns list of goroutines that become runnable.
|
2015-04-16 22:21:30 -06:00
|
|
|
func netpoll(block bool) *g {
|
2014-09-04 00:04:04 -06:00
|
|
|
if kq == -1 {
|
2015-04-16 22:21:30 -06:00
|
|
|
return nil
|
2014-09-04 00:04:04 -06:00
|
|
|
}
|
|
|
|
var tp *timespec
|
|
|
|
var ts timespec
|
|
|
|
if !block {
|
|
|
|
tp = &ts
|
|
|
|
}
|
|
|
|
var events [64]keventt
|
|
|
|
retry:
|
|
|
|
n := kevent(kq, nil, 0, &events[0], int32(len(events)), tp)
|
|
|
|
if n < 0 {
|
2015-07-10 16:28:01 -06:00
|
|
|
if n != -_EINTR {
|
2014-09-04 00:04:04 -06:00
|
|
|
println("runtime: kevent on fd", kq, "failed with", -n)
|
2017-04-24 03:37:48 -06:00
|
|
|
throw("runtime: netpoll failed")
|
2014-09-04 00:04:04 -06:00
|
|
|
}
|
|
|
|
goto retry
|
|
|
|
}
|
2015-04-16 22:21:30 -06:00
|
|
|
var gp guintptr
|
2014-09-04 00:04:04 -06:00
|
|
|
for i := 0; i < int(n); i++ {
|
|
|
|
ev := &events[i]
|
|
|
|
var mode int32
|
2017-10-19 17:01:43 -06:00
|
|
|
switch ev.filter {
|
|
|
|
case _EVFILT_READ:
|
2014-09-04 00:04:04 -06:00
|
|
|
mode += 'r'
|
2017-10-19 17:01:43 -06:00
|
|
|
|
|
|
|
// On some systems when the read end of a pipe
|
|
|
|
// is closed the write end will not get a
|
|
|
|
// _EVFILT_WRITE event, but will get a
|
|
|
|
// _EVFILT_READ event with EV_EOF set.
|
|
|
|
// Note that setting 'w' here just means that we
|
|
|
|
// will wake up a goroutine waiting to write;
|
|
|
|
// that goroutine will try the write again,
|
|
|
|
// and the appropriate thing will happen based
|
|
|
|
// on what that write returns (success, EPIPE, EAGAIN).
|
|
|
|
if ev.flags&_EV_EOF != 0 {
|
|
|
|
mode += 'w'
|
|
|
|
}
|
|
|
|
case _EVFILT_WRITE:
|
2014-09-04 00:04:04 -06:00
|
|
|
mode += 'w'
|
|
|
|
}
|
|
|
|
if mode != 0 {
|
2015-04-16 22:21:30 -06:00
|
|
|
netpollready(&gp, (*pollDesc)(unsafe.Pointer(ev.udata)), mode)
|
2014-09-04 00:04:04 -06:00
|
|
|
}
|
|
|
|
}
|
2015-04-16 22:21:30 -06:00
|
|
|
if block && gp == 0 {
|
2014-09-04 00:04:04 -06:00
|
|
|
goto retry
|
|
|
|
}
|
2015-04-16 22:21:30 -06:00
|
|
|
return gp.ptr()
|
2014-09-04 00:04:04 -06:00
|
|
|
}
|