1 |
/* |
2 |
* ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd) |
3 |
* |
4 |
* Copyright (c) 2005-2018 ircd-hybrid development team |
5 |
* |
6 |
* This program is free software; you can redistribute it and/or modify |
7 |
* it under the terms of the GNU General Public License as published by |
8 |
* the Free Software Foundation; either version 2 of the License, or |
9 |
* (at your option) any later version. |
10 |
* |
11 |
* This program is distributed in the hope that it will be useful, |
12 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
* GNU General Public License for more details. |
15 |
* |
16 |
* You should have received a copy of the GNU General Public License |
17 |
* along with this program; if not, write to the Free Software |
18 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 |
19 |
* USA |
20 |
*/ |
21 |
|
22 |
/*! \file s_bsd_epoll.c |
23 |
* \brief Linux epoll() compatible network routines. |
24 |
* \version $Id$ |
25 |
*/ |
26 |
|
27 |
#include "stdinc.h" |
28 |
#if USE_IOPOLL_MECHANISM == __IOPOLL_MECHANISM_EPOLL |
29 |
#include "fdlist.h" |
30 |
#include "ircd.h" |
31 |
#include "s_bsd.h" |
32 |
#include "log.h" |
33 |
#include <sys/epoll.h> |
34 |
#include <sys/syscall.h> |
35 |
|
36 |
static int epoll_fd; |
37 |
|
38 |
|
39 |
/* |
40 |
* comm_select_init |
41 |
* |
42 |
* This is a needed exported function which will be called to initialise |
43 |
* the network loop code. |
44 |
*/ |
45 |
void |
46 |
comm_select_init(void) |
47 |
{ |
48 |
if ((epoll_fd = epoll_create(hard_fdlimit)) < 0) |
49 |
{ |
50 |
ilog(LOG_TYPE_IRCD, "comm_select_init: couldn't open epoll fd: %s", |
51 |
strerror(errno)); |
52 |
exit(EXIT_FAILURE); /* Whee! */ |
53 |
} |
54 |
|
55 |
fd_open(epoll_fd, 0, "epoll file descriptor"); |
56 |
} |
57 |
|
58 |
/* |
59 |
* comm_setselect |
60 |
* |
61 |
* This is a needed exported function which will be called to register |
62 |
* and deregister interest in a pending IO state for a given FD. |
63 |
*/ |
64 |
void |
65 |
comm_setselect(fde_t *F, unsigned int type, void (*handler)(fde_t *, void *), |
66 |
void *client_data, uintmax_t timeout) |
67 |
{ |
68 |
int new_events, op; |
69 |
struct epoll_event ep_event = { 0, { 0 } }; |
70 |
|
71 |
if ((type & COMM_SELECT_READ)) |
72 |
{ |
73 |
F->read_handler = handler; |
74 |
F->read_data = client_data; |
75 |
} |
76 |
|
77 |
if ((type & COMM_SELECT_WRITE)) |
78 |
{ |
79 |
F->write_handler = handler; |
80 |
F->write_data = client_data; |
81 |
} |
82 |
|
83 |
new_events = (F->read_handler ? EPOLLIN : 0) | |
84 |
(F->write_handler ? EPOLLOUT : 0); |
85 |
|
86 |
if (timeout != 0) |
87 |
{ |
88 |
F->timeout = CurrentTime + (timeout / 1000); |
89 |
F->timeout_handler = handler; |
90 |
F->timeout_data = client_data; |
91 |
} |
92 |
|
93 |
if (new_events != F->evcache) |
94 |
{ |
95 |
if (new_events == 0) |
96 |
op = EPOLL_CTL_DEL; |
97 |
else if (F->evcache == 0) |
98 |
op = EPOLL_CTL_ADD; |
99 |
else |
100 |
op = EPOLL_CTL_MOD; |
101 |
|
102 |
ep_event.events = F->evcache = new_events; |
103 |
ep_event.data.ptr = F; |
104 |
|
105 |
if (epoll_ctl(epoll_fd, op, F->fd, &ep_event) != 0) |
106 |
{ |
107 |
ilog(LOG_TYPE_IRCD, "comm_setselect: epoll_ctl() failed: %s", strerror(errno)); |
108 |
abort(); |
109 |
} |
110 |
} |
111 |
} |
112 |
|
113 |
/* |
114 |
* comm_select() |
115 |
* |
116 |
* Called to do the new-style IO, courtesy of of squid (like most of this |
117 |
* new IO code). This routine handles the stuff we've hidden in |
118 |
* comm_setselect and fd_table[] and calls callbacks for IO ready |
119 |
* events. |
120 |
*/ |
121 |
void |
122 |
comm_select(void) |
123 |
{ |
124 |
struct epoll_event ep_fdlist[128]; |
125 |
int num, i; |
126 |
void (*hdl)(fde_t *, void *); |
127 |
|
128 |
num = epoll_wait(epoll_fd, ep_fdlist, 128, SELECT_DELAY); |
129 |
|
130 |
set_time(); |
131 |
|
132 |
if (num < 0) |
133 |
{ |
134 |
const struct timespec req = { .tv_sec = 0, .tv_nsec = 50000000 }; |
135 |
nanosleep(&req, NULL); /* Avoid 99% CPU in comm_select */ |
136 |
return; |
137 |
} |
138 |
|
139 |
for (i = 0; i < num; i++) |
140 |
{ |
141 |
fde_t *F = ep_fdlist[i].data.ptr; |
142 |
|
143 |
if (F->flags.open == 0) |
144 |
continue; |
145 |
|
146 |
if ((ep_fdlist[i].events & (EPOLLIN | EPOLLHUP | EPOLLERR))) |
147 |
{ |
148 |
if ((hdl = F->read_handler)) |
149 |
{ |
150 |
F->read_handler = NULL; |
151 |
hdl(F, F->read_data); |
152 |
|
153 |
if (F->flags.open == 0) |
154 |
continue; |
155 |
} |
156 |
} |
157 |
|
158 |
if ((ep_fdlist[i].events & (EPOLLOUT | EPOLLHUP | EPOLLERR))) |
159 |
{ |
160 |
if ((hdl = F->write_handler)) |
161 |
{ |
162 |
F->write_handler = NULL; |
163 |
hdl(F, F->write_data); |
164 |
|
165 |
if (F->flags.open == 0) |
166 |
continue; |
167 |
} |
168 |
} |
169 |
|
170 |
comm_setselect(F, 0, NULL, NULL, 0); |
171 |
} |
172 |
} |
173 |
#endif |