]>
git.ipfire.org Git - thirdparty/squid.git/blob - src/comm/ModEpoll.cc
dec67f4f45ff370296dce7a958d3eb79cea4f077
2 * Copyright (C) 1996-2025 The Squid Software Foundation and contributors
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
9 /* DEBUG: section 05 Socket Functions */
12 * The idea for this came from these two websites:
13 * http://www.xmailserver.org/linux-patches/nio-improve.html
14 * http://www.kegel.com/c10k.html
16 * This is to support the epoll sysctl being added to the linux 2.5
17 * kernel tree. The new sys_epoll is an event based poller without
18 * most of the fuss of rtsignals.
20 * -- David Nicklay <dnicklay@web.turner.com>
24 * XXX Currently not implemented / supported by this module XXX
35 #include "base/CodeContext.h"
36 #include "base/IoManip.h"
37 #include "comm/Loops.h"
40 #include "mgr/Registration.h"
41 #include "StatCounters.h"
49 #include <sys/epoll.h>
52 static int kdpfd
= -1;
53 static int max_poll_time
= 1000;
55 static struct epoll_event
*pevents
;
57 static void commEPollRegisterWithCacheManager(void);
59 /* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
60 /* Public functions */
63 * This is a needed exported function which will be called to initialise
64 * the network loop code.
67 Comm::SelectLoopInit(void)
69 pevents
= (struct epoll_event
*) xmalloc(SQUID_MAXFD
* sizeof(struct epoll_event
));
73 fatalf("comm_select_init: xmalloc() failed: %s\n", xstrerr(xerrno
));
76 kdpfd
= epoll_create(SQUID_MAXFD
);
80 fatalf("comm_select_init: epoll_create(): %s\n", xstrerr(xerrno
));
83 commEPollRegisterWithCacheManager();
86 static const char* epolltype_atoi(int x
)
91 return "EPOLL_CTL_ADD";
94 return "EPOLL_CTL_DEL";
97 return "EPOLL_CTL_MOD";
100 return "UNKNOWN_EPOLLCTL_OP";
105 * This is a needed exported function which will be called to register
106 * and deregister interest in a pending IO state for a given FD.
109 Comm::SetSelect(int fd
, unsigned int type
, PF
* handler
, void *client_data
, time_t timeout
)
111 fde
*F
= &fd_table
[fd
];
112 int epoll_ctl_type
= 0;
115 debugs(5, 5, "FD " << fd
<< ", type=" << type
<<
116 ", handler=" << handler
<< ", client_data=" << client_data
<<
117 ", timeout=" << timeout
);
119 struct epoll_event ev
;
120 memset(&ev
, 0, sizeof(ev
));
123 if (!F
->flags
.open
) {
124 epoll_ctl(kdpfd
, EPOLL_CTL_DEL
, fd
, &ev
);
128 // If read is an interest
130 if (type
& COMM_SELECT_READ
) {
132 // Hack to keep the events flowing if there is data immediately ready
133 if (F
->flags
.read_pending
)
134 ev
.events
|= EPOLLOUT
;
135 ev
.events
|= EPOLLIN
;
138 F
->read_handler
= handler
;
140 F
->read_data
= client_data
;
142 // Otherwise, use previously stored value
143 } else if (F
->epoll_state
& EPOLLIN
) {
144 ev
.events
|= EPOLLIN
;
147 // If write is an interest
148 if (type
& COMM_SELECT_WRITE
) {
150 ev
.events
|= EPOLLOUT
;
152 F
->write_handler
= handler
;
154 F
->write_data
= client_data
;
156 // Otherwise, use previously stored value
157 } else if (F
->epoll_state
& EPOLLOUT
) {
158 ev
.events
|= EPOLLOUT
;
162 ev
.events
|= EPOLLHUP
| EPOLLERR
;
164 if (ev
.events
!= F
->epoll_state
) {
165 if (F
->epoll_state
) // already monitoring something.
166 epoll_ctl_type
= ev
.events
? EPOLL_CTL_MOD
: EPOLL_CTL_DEL
;
168 epoll_ctl_type
= EPOLL_CTL_ADD
;
170 F
->epoll_state
= ev
.events
;
172 if (epoll_ctl(kdpfd
, epoll_ctl_type
, fd
, &ev
) < 0) {
174 debugs(5, DEBUG_EPOLL
? 0 : 8, "ERROR: epoll_ctl(," << epolltype_atoi(epoll_ctl_type
) <<
175 ",,): failed on FD " << fd
<< ": " << xstrerr(xerrno
));
180 F
->timeout
= squid_curtime
+ timeout
;
182 if (timeout
|| handler
) // all non-cleanup requests
183 F
->codeContext
= CodeContext::Current(); // TODO: Avoid clearing if set?
184 else if (!ev
.events
) // full cleanup: no more FD-associated work expected
185 F
->codeContext
= nullptr;
186 // else: direction-specific/timeout cleanup requests preserve F->codeContext
189 static void commIncomingStats(StoreEntry
* sentry
);
192 commEPollRegisterWithCacheManager(void)
194 Mgr::RegisterAction("comm_epoll_incoming",
195 "comm_incoming() stats",
196 commIncomingStats
, 0, 1);
200 commIncomingStats(StoreEntry
* sentry
)
202 StatCounters
*f
= &statCounter
;
203 storeAppendPrintf(sentry
, "Total number of epoll(2) loops: %ld\n", statCounter
.select_loops
);
204 storeAppendPrintf(sentry
, "Histogram of returned filedescriptors\n");
205 f
->select_fds_hist
.dump(sentry
, statHistIntDumper
);
209 * Check all connections for new connections and input data that is to be
210 * processed. Also check for connections with data queued and whether we can
213 * Called to do the new-style IO, courtesy of of squid (like most of this
214 * new IO code). This routine handles the stuff we've hidden in
215 * comm_setselect and fd_table[] and calls callbacks for IO ready
219 Comm::DoSelect(int msec
)
225 struct epoll_event
*cevents
;
227 if (msec
> max_poll_time
)
228 msec
= max_poll_time
;
231 num
= epoll_wait(kdpfd
, pevents
, SQUID_MAXFD
, msec
);
232 ++ statCounter
.select_loops
;
237 if (ignoreErrno(errno
))
242 return Comm::COMM_ERROR
;
247 statCounter
.select_fds_hist
.count(num
);
250 return Comm::TIMEOUT
; /* No error.. */
252 for (i
= 0, cevents
= pevents
; i
< num
; ++i
, ++cevents
) {
253 fd
= cevents
->data
.fd
;
255 CodeContext::Reset(F
->codeContext
);
256 debugs(5, DEBUG_EPOLL
? 0 : 8, "got FD " << fd
<< " events=" <<
257 asHex(cevents
->events
) << " monitoring=" << asHex(F
->epoll_state
) <<
258 " F->read_handler=" << F
->read_handler
<< " F->write_handler=" << F
->write_handler
);
260 // TODO: add EPOLLPRI??
262 if (cevents
->events
& (EPOLLIN
|EPOLLHUP
|EPOLLERR
) || F
->flags
.read_pending
) {
263 if ((hdl
= F
->read_handler
) != nullptr) {
264 debugs(5, DEBUG_EPOLL
? 0 : 8, "Calling read handler on FD " << fd
);
265 F
->read_handler
= nullptr;
266 hdl(fd
, F
->read_data
);
267 ++ statCounter
.select_fds
;
269 debugs(5, DEBUG_EPOLL
? 0 : 8, "no read handler for FD " << fd
);
270 // remove interest since no handler exist for this event.
271 SetSelect(fd
, COMM_SELECT_READ
, nullptr, nullptr, 0);
275 if (cevents
->events
& (EPOLLOUT
|EPOLLHUP
|EPOLLERR
)) {
276 if ((hdl
= F
->write_handler
) != nullptr) {
277 debugs(5, DEBUG_EPOLL
? 0 : 8, "Calling write handler on FD " << fd
);
278 F
->write_handler
= nullptr;
279 hdl(fd
, F
->write_data
);
280 ++ statCounter
.select_fds
;
282 debugs(5, DEBUG_EPOLL
? 0 : 8, "no write handler for FD " << fd
);
283 // remove interest since no handler exist for this event.
284 SetSelect(fd
, COMM_SELECT_WRITE
, nullptr, nullptr, 0);
289 CodeContext::Reset();
295 Comm::QuickPollRequired(void)
300 #endif /* USE_EPOLL */