-
Notifications
You must be signed in to change notification settings - Fork 203
/
epoll.inc
227 lines (208 loc) · 6.94 KB
/
epoll.inc
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
/*
Copyright (c) 2015 Martin Sustrik
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.
*/
#include <errno.h>
#include <stdint.h>
#include <string.h>
#include <sys/epoll.h>
#include <sys/resource.h>
#include "cr.h"
#include "utils.h"
#define MILL_ENDLIST 0xffffffff
#define MILL_EPOLLSETSIZE 128
/* Global pollset. */
static int mill_efd = -1;
/* Epoll allows to register only a single pointer with a file decriptor.
However, we may need two pointers to coroutines. One for the coroutine
waiting to receive data from the descriptor, one for the coroutine waiting
to send data to the descriptor. Thus, we are going to keep an array of
pointer pairs for each file descriptor. */
struct mill_crpair {
struct mill_cr *in;
struct mill_cr *out;
uint32_t currevs;
/* 1-based index, 0 stands for "not part of the list", MILL_ENDLIST
stads for "no more elements in the list. */
uint32_t next;
};
static struct mill_crpair *mill_crpairs = NULL;
static int mill_ncrpairs = 0;
static uint32_t mill_changelist = MILL_ENDLIST;
void mill_poller_init(void) {
struct rlimit rlim;
int rc = getrlimit(RLIMIT_NOFILE, &rlim);
if(mill_slow(rc < 0)) return;
mill_ncrpairs = rlim.rlim_max;
mill_crpairs = (struct mill_crpair*)
calloc(mill_ncrpairs, sizeof(struct mill_crpair));
if(mill_slow(!mill_crpairs)) {errno = ENOMEM; return;}
mill_efd = epoll_create(1);
if(mill_slow(mill_efd < 0)) {
free(mill_crpairs);
mill_crpairs = NULL;
return;
}
errno = 0;
}
void mill_poller_postfork(void) {
if(mill_efd != -1) {
int rc = close(mill_efd);
mill_assert(rc == 0);
}
mill_efd = -1;
mill_crpairs = NULL;
mill_ncrpairs = 0;
mill_changelist = MILL_ENDLIST;
mill_poller_init();
}
static void mill_poller_add(int fd, int events) {
struct mill_crpair *crp = &mill_crpairs[fd];
if(events & FDW_IN) {
if(crp->in)
mill_panic(
"multiple coroutines waiting for a single file descriptor");
crp->in = mill_running;
}
if(events & FDW_OUT) {
if(crp->out)
mill_panic(
"multiple coroutines waiting for a single file descriptor");
crp->out = mill_running;
}
if(!crp->next) {
crp->next = mill_changelist;
mill_changelist = fd + 1;
}
}
static void mill_poller_rm(struct mill_cr *cr) {
int fd = cr->fd;
mill_assert(fd != -1);
struct mill_crpair *crp = &mill_crpairs[fd];
if(crp->in == cr) {
crp->in = NULL;
cr->fd = -1;
}
if(crp->out == cr) {
crp->out = NULL;
cr->fd = -1;
}
if(!crp->next) {
crp->next = mill_changelist;
mill_changelist = fd + 1;
}
}
static void mill_poller_clean(int fd) {
struct mill_crpair *crp = &mill_crpairs[fd];
mill_assert(!crp->in);
mill_assert(!crp->out);
/* Remove the file descriptor from the pollset, if it is still present. */
if(crp->currevs) {
struct epoll_event ev;
ev.data.fd = fd;
ev.events = 0;
int rc = epoll_ctl(mill_efd, EPOLL_CTL_DEL, fd, &ev);
mill_assert(rc == 0 || errno == ENOENT);
}
/* Clean the cache. */
crp->currevs = 0;
if(!crp->next) {
crp->next = mill_changelist;
mill_changelist = fd + 1;
}
}
static int mill_poller_wait(int timeout) {
/* Apply any changes to the pollset.
TODO: Use epoll_ctl_batch once available. */
while(mill_changelist != MILL_ENDLIST) {
int fd = mill_changelist - 1;
struct mill_crpair *crp = &mill_crpairs[fd];
struct epoll_event ev;
ev.data.fd = fd;
ev.events = 0;
if(crp->in)
ev.events |= EPOLLIN;
if(crp->out)
ev.events |= EPOLLOUT;
if(crp->currevs != ev.events) {
int op;
if(!ev.events)
op = EPOLL_CTL_DEL;
else if(!crp->currevs)
op = EPOLL_CTL_ADD;
else
op = EPOLL_CTL_MOD;
crp->currevs = ev.events;
int rc = epoll_ctl(mill_efd, op, fd, &ev);
mill_assert(rc == 0);
}
mill_changelist = crp->next;
crp->next = 0;
}
/* Wait for events. */
struct epoll_event evs[MILL_EPOLLSETSIZE];
int numevs;
while(1) {
numevs = epoll_wait(mill_efd, evs, MILL_EPOLLSETSIZE, timeout);
if(numevs < 0 && errno == EINTR)
continue;
mill_assert(numevs >= 0);
break;
}
/* Fire file descriptor events. */
int i;
for(i = 0; i != numevs; ++i) {
struct mill_crpair *crp = &mill_crpairs[evs[i].data.fd];
int inevents = 0;
int outevents = 0;
/* Set the result values. */
if(evs[i].events & EPOLLIN)
inevents |= FDW_IN;
if(evs[i].events & EPOLLOUT)
outevents |= FDW_OUT;
if(evs[i].events & (EPOLLERR | EPOLLHUP)) {
inevents |= FDW_ERR;
outevents |= FDW_ERR;
}
/* Resume the blocked coroutines. */
if(crp->in == crp->out) {
struct mill_cr *cr = crp->in;
mill_resume(cr, inevents | outevents);
mill_poller_rm(cr);
if(mill_timer_enabled(&cr->timer))
mill_timer_rm(&cr->timer);
}
else {
if(crp->in && inevents) {
struct mill_cr *cr = crp->in;
mill_resume(cr, inevents);
mill_poller_rm(cr);
if(mill_timer_enabled(&cr->timer))
mill_timer_rm(&cr->timer);
}
if(crp->out && outevents) {
struct mill_cr *cr = crp->out;
mill_resume(cr, outevents);
mill_poller_rm(cr);
if(mill_timer_enabled(&cr->timer))
mill_timer_rm(&cr->timer);
}
}
}
/* Return 0 in case of time out. 1 if at least one coroutine was resumed. */
return numevs > 0 ? 1 : 0;
}