-
Notifications
You must be signed in to change notification settings - Fork 100
/
aio_linux.go
227 lines (202 loc) · 5.22 KB
/
aio_linux.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
// The MIT License (MIT)
//
// Copyright (c) 2019 xtaci
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
//go:build linux
package gaio
import (
"sync"
"sync/atomic"
"syscall"
"unsafe"
)
// _EPOLLET value is incorrect in syscall
const (
_EPOLLET = 0x80000000
_EFD_NONBLOCK = 0x800
)
// poller is a epoll based poller
type poller struct {
cpuid int32 // the cpu id to bind to
mu sync.Mutex // mutex to protect fd closing
pfd int // epoll fd
efd int // eventfd
efdbuf []byte
// closing signal
die chan struct{}
dieOnce sync.Once
}
func openPoll() (*poller, error) {
fd, err := syscall.EpollCreate1(syscall.EPOLL_CLOEXEC)
if err != nil {
return nil, err
}
r0, _, e0 := syscall.Syscall(syscall.SYS_EVENTFD2, 0, _EFD_NONBLOCK, 0)
if e0 != 0 {
syscall.Close(fd)
return nil, err
}
if err := syscall.EpollCtl(fd, syscall.EPOLL_CTL_ADD, int(r0),
&syscall.EpollEvent{Fd: int32(r0),
Events: syscall.EPOLLIN | _EPOLLET,
},
); err != nil {
syscall.Close(fd)
syscall.Close(int(r0))
return nil, err
}
p := new(poller)
p.pfd = fd
p.efd = int(r0)
p.efdbuf = make([]byte, 8)
p.die = make(chan struct{})
p.cpuid = -1
return p, err
}
// Close the poller
func (p *poller) Close() error {
p.dieOnce.Do(func() {
close(p.die)
})
return p.wakeup()
}
func (p *poller) Watch(fd int) (err error) {
p.mu.Lock()
err = syscall.EpollCtl(p.pfd, syscall.EPOLL_CTL_ADD, int(fd), &syscall.EpollEvent{Fd: int32(fd), Events: syscall.EPOLLRDHUP | syscall.EPOLLIN | syscall.EPOLLOUT | _EPOLLET})
p.mu.Unlock()
return
}
// wakeup interrupt epoll_wait
func (p *poller) wakeup() error {
p.mu.Lock()
if p.efd != -1 {
var x uint64 = 1
// eventfd has set with EFD_NONBLOCK
_, err := syscall.Write(p.efd, (*(*[8]byte)(unsafe.Pointer(&x)))[:])
p.mu.Unlock()
return err
}
p.mu.Unlock()
return ErrPollerClosed
}
func (p *poller) Wait(chSignal chan Signal) {
var eventSet pollerEvents
events := make([]syscall.EpollEvent, maxEvents)
sig := Signal{
done: make(chan struct{}, 1),
}
// close poller fd & eventfd in defer
defer func() {
p.mu.Lock()
syscall.Close(p.pfd)
syscall.Close(p.efd)
p.pfd = -1
p.efd = -1
p.mu.Unlock()
}()
const (
rSet = syscall.EPOLLIN | syscall.EPOLLRDHUP
wSet = syscall.EPOLLOUT
)
// epoll eventloop
for {
select {
case <-p.die:
return
default:
n, err := syscall.EpollWait(p.pfd, events, -1)
if err == syscall.EINTR {
continue
}
if err != nil {
return
}
// event processing
for i := 0; i < n; i++ {
ev := &events[i]
if int(ev.Fd) == p.efd {
syscall.Read(p.efd, p.efdbuf) // simply consume
if cpuid := atomic.LoadInt32(&p.cpuid); cpuid != -1 {
setAffinity(cpuid)
atomic.StoreInt32(&p.cpuid, -1)
}
} else {
e := event{ident: int(ev.Fd)}
// EPOLLRDHUP (since Linux 2.6.17)
// Stream socket peer closed connection, or shut down writing
// half of connection. (This flag is especially useful for writ-
// ing simple code to detect peer shutdown when using Edge Trig-
// gered monitoring.)
if ev.Events&rSet != 0 {
e.ev |= EV_READ
}
if ev.Events&wSet != 0 {
e.ev |= EV_WRITE
}
eventSet = append(eventSet, e)
}
}
// notify watcher
sig.events = eventSet
select {
case chSignal <- sig:
case <-p.die:
return
}
// wait for the watcher to finish processing
select {
case <-sig.done:
eventSet = eventSet[:0:cap(eventSet)]
case <-p.die:
return
}
}
}
}
// raw read for nonblocking op to avert context switch
func rawRead(fd int, p []byte) (n int, err error) {
var _p0 unsafe.Pointer
if len(p) > 0 {
_p0 = unsafe.Pointer(&p[0])
} else {
_p0 = unsafe.Pointer(&_zero)
}
r0, _, e1 := syscall.RawSyscall(syscall.SYS_READ, uintptr(fd), uintptr(_p0), uintptr(len(p)))
n = int(r0)
if e1 != 0 {
err = e1
}
return
}
// raw write for nonblocking op to avert context switch
func rawWrite(fd int, p []byte) (n int, err error) {
var _p0 unsafe.Pointer
if len(p) > 0 {
_p0 = unsafe.Pointer(&p[0])
} else {
_p0 = unsafe.Pointer(&_zero)
}
r0, _, e1 := syscall.RawSyscall(syscall.SYS_WRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)))
n = int(r0)
if e1 != 0 {
err = e1
}
return
}