blob: 9db6b6c4d55e16addd212368fdee386a2e48ee0e [file] [log] [blame]
Igor Sysoeva6717c42002-12-23 06:29:22 +00001
Igor Sysoev1c13c662003-05-20 15:37:55 +00002/*
Igor Sysoevff8da912004-09-29 16:00:49 +00003 * Copyright (C) Igor Sysoev
Maxim Konovalovf8d59e32012-01-18 15:07:43 +00004 * Copyright (C) Nginx, Inc.
Igor Sysoev1c13c662003-05-20 15:37:55 +00005 */
6
7
Igor Sysoeva6717c42002-12-23 06:29:22 +00008#include <ngx_config.h>
9#include <ngx_core.h>
Igor Sysoeva6717c42002-12-23 06:29:22 +000010#include <ngx_event.h>
Igor Sysoeva6717c42002-12-23 06:29:22 +000011
12
Igor Sysoevc2068d02005-10-19 12:33:58 +000013static ngx_int_t ngx_poll_init(ngx_cycle_t *cycle, ngx_msec_t timer);
Igor Sysoev9d639522003-07-07 06:11:50 +000014static void ngx_poll_done(ngx_cycle_t *cycle);
Igor Sysoev83a68512007-07-29 18:24:53 +000015static ngx_int_t ngx_poll_add_event(ngx_event_t *ev, ngx_int_t event,
16 ngx_uint_t flags);
17static ngx_int_t ngx_poll_del_event(ngx_event_t *ev, ngx_int_t event,
18 ngx_uint_t flags);
Igor Sysoevc2068d02005-10-19 12:33:58 +000019static ngx_int_t ngx_poll_process_events(ngx_cycle_t *cycle, ngx_msec_t timer,
20 ngx_uint_t flags);
Igor Sysoev2b979932004-07-07 15:01:00 +000021static char *ngx_poll_init_conf(ngx_cycle_t *cycle, void *conf);
Igor Sysoev1c13c662003-05-20 15:37:55 +000022
23
Igor Sysoeva6717c42002-12-23 06:29:22 +000024static struct pollfd *event_list;
Yves Crespin6a585552014-08-07 14:56:57 +020025static ngx_uint_t nevents;
Igor Sysoeva6717c42002-12-23 06:29:22 +000026
Igor Sysoev1c13c662003-05-20 15:37:55 +000027
28static ngx_str_t poll_name = ngx_string("poll");
29
30ngx_event_module_t ngx_poll_module_ctx = {
Igor Sysoev1c13c662003-05-20 15:37:55 +000031 &poll_name,
32 NULL, /* create configuration */
Igor Sysoev2b979932004-07-07 15:01:00 +000033 ngx_poll_init_conf, /* init configuration */
Igor Sysoev1c13c662003-05-20 15:37:55 +000034
35 {
36 ngx_poll_add_event, /* add an event */
37 ngx_poll_del_event, /* delete an event */
38 ngx_poll_add_event, /* enable an event */
39 ngx_poll_del_event, /* disable an event */
40 NULL, /* add an connection */
41 NULL, /* delete an connection */
Igor Sysoevc78c41c2004-07-07 06:15:04 +000042 NULL, /* process the changes */
Igor Sysoev1c13c662003-05-20 15:37:55 +000043 ngx_poll_process_events, /* process the events */
44 ngx_poll_init, /* init the events */
45 ngx_poll_done /* done the events */
46 }
47
48};
49
50ngx_module_t ngx_poll_module = {
Igor Sysoev899b44e2005-05-12 14:58:06 +000051 NGX_MODULE_V1,
Igor Sysoev1c13c662003-05-20 15:37:55 +000052 &ngx_poll_module_ctx, /* module context */
Igor Sysoev1c13c662003-05-20 15:37:55 +000053 NULL, /* module directives */
Igor Sysoev6253ca12003-05-27 12:18:54 +000054 NGX_EVENT_MODULE, /* module type */
Igor Sysoeve5733802005-09-08 14:36:09 +000055 NULL, /* init master */
Igor Sysoev9d639522003-07-07 06:11:50 +000056 NULL, /* init module */
Igor Sysoeve5733802005-09-08 14:36:09 +000057 NULL, /* init process */
58 NULL, /* init thread */
59 NULL, /* exit thread */
60 NULL, /* exit process */
61 NULL, /* exit master */
62 NGX_MODULE_V1_PADDING
Igor Sysoev1c13c662003-05-20 15:37:55 +000063};
64
65
66
Igor Sysoev8184d1b2005-03-04 14:06:57 +000067static ngx_int_t
Igor Sysoevc2068d02005-10-19 12:33:58 +000068ngx_poll_init(ngx_cycle_t *cycle, ngx_msec_t timer)
Igor Sysoeva6717c42002-12-23 06:29:22 +000069{
Igor Sysoev9d639522003-07-07 06:11:50 +000070 struct pollfd *list;
Igor Sysoev1c13c662003-05-20 15:37:55 +000071
Igor Sysoev9d639522003-07-07 06:11:50 +000072 if (event_list == NULL) {
73 nevents = 0;
74 }
Igor Sysoev1c13c662003-05-20 15:37:55 +000075
Igor Sysoev72db7602009-11-23 15:46:21 +000076 if (ngx_process >= NGX_PROCESS_WORKER
Igor Sysoeva3677242004-04-14 05:57:36 +000077 || cycle->old_cycle == NULL
Igor Sysoev9d639522003-07-07 06:11:50 +000078 || cycle->old_cycle->connection_n < cycle->connection_n)
79 {
Igor Sysoevc1571722005-03-19 12:38:37 +000080 list = ngx_alloc(sizeof(struct pollfd) * cycle->connection_n,
81 cycle->log);
82 if (list == NULL) {
83 return NGX_ERROR;
84 }
Igor Sysoeva6717c42002-12-23 06:29:22 +000085
Igor Sysoev9d639522003-07-07 06:11:50 +000086 if (event_list) {
87 ngx_memcpy(list, event_list, sizeof(ngx_event_t *) * nevents);
88 ngx_free(event_list);
89 }
Igor Sysoeva6717c42002-12-23 06:29:22 +000090
Igor Sysoev9d639522003-07-07 06:11:50 +000091 event_list = list;
Igor Sysoev9d639522003-07-07 06:11:50 +000092 }
93
Igor Sysoev9d639522003-07-07 06:11:50 +000094 ngx_io = ngx_os_io;
95
Igor Sysoev1c13c662003-05-20 15:37:55 +000096 ngx_event_actions = ngx_poll_module_ctx.actions;
97
Igor Sysoevc2068d02005-10-19 12:33:58 +000098 ngx_event_flags = NGX_USE_LEVEL_EVENT|NGX_USE_FD_EVENT;
Igor Sysoeva6717c42002-12-23 06:29:22 +000099
100 return NGX_OK;
101}
102
Igor Sysoev1c13c662003-05-20 15:37:55 +0000103
Igor Sysoev8184d1b2005-03-04 14:06:57 +0000104static void
105ngx_poll_done(ngx_cycle_t *cycle)
Igor Sysoev1c13c662003-05-20 15:37:55 +0000106{
Igor Sysoev1c13c662003-05-20 15:37:55 +0000107 ngx_free(event_list);
Igor Sysoev9d639522003-07-07 06:11:50 +0000108
109 event_list = NULL;
Igor Sysoev1c13c662003-05-20 15:37:55 +0000110}
111
112
Igor Sysoev8184d1b2005-03-04 14:06:57 +0000113static ngx_int_t
Igor Sysoev83a68512007-07-29 18:24:53 +0000114ngx_poll_add_event(ngx_event_t *ev, ngx_int_t event, ngx_uint_t flags)
Igor Sysoeva6717c42002-12-23 06:29:22 +0000115{
Igor Sysoev3a17f242002-12-24 17:30:59 +0000116 ngx_event_t *e;
117 ngx_connection_t *c;
Igor Sysoeva6717c42002-12-23 06:29:22 +0000118
Igor Sysoev1c13c662003-05-20 15:37:55 +0000119 c = ev->data;
Igor Sysoeva6717c42002-12-23 06:29:22 +0000120
Igor Sysoevb3968b32004-04-14 17:44:28 +0000121 ev->active = 1;
122
Igor Sysoevaf579222004-02-03 20:27:11 +0000123 if (ev->index != NGX_INVALID_INDEX) {
124 ngx_log_error(NGX_LOG_ALERT, ev->log, 0,
Igor Sysoev83a68512007-07-29 18:24:53 +0000125 "poll event fd:%d ev:%i is already set", c->fd, event);
Igor Sysoevaf579222004-02-03 20:27:11 +0000126 return NGX_OK;
127 }
128
Igor Sysoeva6717c42002-12-23 06:29:22 +0000129 if (event == NGX_READ_EVENT) {
130 e = c->write;
131#if (NGX_READ_EVENT != POLLIN)
132 event = POLLIN;
133#endif
134
135 } else {
136 e = c->read;
137#if (NGX_WRITE_EVENT != POLLOUT)
138 event = POLLOUT;
139#endif
140 }
141
Igor Sysoev10318a22004-01-29 21:45:01 +0000142 ngx_log_debug2(NGX_LOG_DEBUG_EVENT, ev->log, 0,
Igor Sysoev83a68512007-07-29 18:24:53 +0000143 "poll add event: fd:%d ev:%i", c->fd, event);
Igor Sysoeva6717c42002-12-23 06:29:22 +0000144
145 if (e == NULL || e->index == NGX_INVALID_INDEX) {
146 event_list[nevents].fd = c->fd;
Igor Sysoev83a68512007-07-29 18:24:53 +0000147 event_list[nevents].events = (short) event;
Igor Sysoeva6717c42002-12-23 06:29:22 +0000148 event_list[nevents].revents = 0;
149
Igor Sysoeva6717c42002-12-23 06:29:22 +0000150 ev->index = nevents;
151 nevents++;
152
153 } else {
Igor Sysoevaf579222004-02-03 20:27:11 +0000154 ngx_log_debug1(NGX_LOG_DEBUG_EVENT, ev->log, 0,
Igor Sysoev83a68512007-07-29 18:24:53 +0000155 "poll add index: %i", e->index);
Igor Sysoevaf579222004-02-03 20:27:11 +0000156
Igor Sysoev83a68512007-07-29 18:24:53 +0000157 event_list[e->index].events |= (short) event;
Igor Sysoeva6717c42002-12-23 06:29:22 +0000158 ev->index = e->index;
159 }
160
161 return NGX_OK;
162}
163
Igor Sysoev1c13c662003-05-20 15:37:55 +0000164
Igor Sysoev8184d1b2005-03-04 14:06:57 +0000165static ngx_int_t
Igor Sysoev83a68512007-07-29 18:24:53 +0000166ngx_poll_del_event(ngx_event_t *ev, ngx_int_t event, ngx_uint_t flags)
Igor Sysoeva6717c42002-12-23 06:29:22 +0000167{
Igor Sysoevc2068d02005-10-19 12:33:58 +0000168 ngx_event_t *e;
169 ngx_connection_t *c;
Igor Sysoeva6717c42002-12-23 06:29:22 +0000170
Igor Sysoev92602942004-02-05 16:58:36 +0000171 c = ev->data;
Igor Sysoeva6717c42002-12-23 06:29:22 +0000172
Igor Sysoev3d540612004-04-13 15:08:48 +0000173 ev->active = 0;
Igor Sysoev3d540612004-04-13 15:08:48 +0000174
Igor Sysoev3a17f242002-12-24 17:30:59 +0000175 if (ev->index == NGX_INVALID_INDEX) {
Igor Sysoev92602942004-02-05 16:58:36 +0000176 ngx_log_error(NGX_LOG_ALERT, ev->log, 0,
Igor Sysoev83a68512007-07-29 18:24:53 +0000177 "poll event fd:%d ev:%i is already deleted",
Igor Sysoev92602942004-02-05 16:58:36 +0000178 c->fd, event);
Igor Sysoeva6717c42002-12-23 06:29:22 +0000179 return NGX_OK;
Igor Sysoev3a17f242002-12-24 17:30:59 +0000180 }
Igor Sysoeva6717c42002-12-23 06:29:22 +0000181
182 if (event == NGX_READ_EVENT) {
183 e = c->write;
184#if (NGX_READ_EVENT != POLLIN)
185 event = POLLIN;
186#endif
187
188 } else {
189 e = c->read;
190#if (NGX_WRITE_EVENT != POLLOUT)
191 event = POLLOUT;
192#endif
193 }
194
Igor Sysoev10318a22004-01-29 21:45:01 +0000195 ngx_log_debug2(NGX_LOG_DEBUG_EVENT, ev->log, 0,
Igor Sysoev83a68512007-07-29 18:24:53 +0000196 "poll del event: fd:%d ev:%i", c->fd, event);
Igor Sysoeva6717c42002-12-23 06:29:22 +0000197
198 if (e == NULL || e->index == NGX_INVALID_INDEX) {
Igor Sysoevaf579222004-02-03 20:27:11 +0000199 nevents--;
200
Yves Crespin6a585552014-08-07 14:56:57 +0200201 if (ev->index < nevents) {
Igor Sysoev7b6062a2004-02-12 20:57:10 +0000202
203 ngx_log_debug2(NGX_LOG_DEBUG_EVENT, ev->log, 0,
Igor Sysoev83a68512007-07-29 18:24:53 +0000204 "index: copy event %ui to %i", nevents, ev->index);
Igor Sysoev7b6062a2004-02-12 20:57:10 +0000205
Igor Sysoev295bb632002-12-23 18:22:18 +0000206 event_list[ev->index] = event_list[nevents];
Igor Sysoev92602942004-02-05 16:58:36 +0000207
Igor Sysoev31eb8c02005-09-23 11:02:22 +0000208 c = ngx_cycle->files[event_list[nevents].fd];
Igor Sysoev92602942004-02-05 16:58:36 +0000209
210 if (c->fd == -1) {
Igor Sysoev92602942004-02-05 16:58:36 +0000211 ngx_log_error(NGX_LOG_ALERT, ev->log, 0,
212 "unexpected last event");
213
214 } else {
Yves Crespin6a585552014-08-07 14:56:57 +0200215 if (c->read->index == nevents) {
Igor Sysoev92602942004-02-05 16:58:36 +0000216 c->read->index = ev->index;
Igor Sysoev7b6062a2004-02-12 20:57:10 +0000217 }
Igor Sysoev92602942004-02-05 16:58:36 +0000218
Yves Crespin6a585552014-08-07 14:56:57 +0200219 if (c->write->index == nevents) {
Igor Sysoev92602942004-02-05 16:58:36 +0000220 c->write->index = ev->index;
Igor Sysoev92602942004-02-05 16:58:36 +0000221 }
222 }
Igor Sysoeva6717c42002-12-23 06:29:22 +0000223 }
224
225 } else {
Igor Sysoevaf579222004-02-03 20:27:11 +0000226 ngx_log_debug1(NGX_LOG_DEBUG_EVENT, ev->log, 0,
Igor Sysoev83a68512007-07-29 18:24:53 +0000227 "poll del index: %i", e->index);
Igor Sysoevaf579222004-02-03 20:27:11 +0000228
Igor Sysoev83a68512007-07-29 18:24:53 +0000229 event_list[e->index].events &= (short) ~event;
Igor Sysoeva6717c42002-12-23 06:29:22 +0000230 }
231
232 ev->index = NGX_INVALID_INDEX;
233
234 return NGX_OK;
235}
236
Igor Sysoev1c13c662003-05-20 15:37:55 +0000237
Igor Sysoev8184d1b2005-03-04 14:06:57 +0000238static ngx_int_t
Igor Sysoevc2068d02005-10-19 12:33:58 +0000239ngx_poll_process_events(ngx_cycle_t *cycle, ngx_msec_t timer, ngx_uint_t flags)
Igor Sysoeva6717c42002-12-23 06:29:22 +0000240{
Igor Sysoeve5a222c2005-01-25 12:27:35 +0000241 int ready, revents;
Igor Sysoev9d639522003-07-07 06:11:50 +0000242 ngx_err_t err;
Yves Crespin6a585552014-08-07 14:56:57 +0200243 ngx_uint_t i, found, level;
Igor Sysoevc2068d02005-10-19 12:33:58 +0000244 ngx_event_t *ev, **queue;
Igor Sysoev9d639522003-07-07 06:11:50 +0000245 ngx_connection_t *c;
Igor Sysoev2f657222004-06-16 15:32:11 +0000246
247 /* NGX_TIMER_INFINITE == INFTIM */
248
Igor Sysoev92602942004-02-05 16:58:36 +0000249#if (NGX_DEBUG0)
Igor Sysoev732a2712004-04-21 18:54:33 +0000250 if (cycle->log->log_level & NGX_LOG_DEBUG_ALL) {
251 for (i = 0; i < nevents; i++) {
252 ngx_log_debug3(NGX_LOG_DEBUG_EVENT, cycle->log, 0,
Yves Crespin3c0c66c2014-08-07 15:04:43 +0200253 "poll: %ui: fd:%d ev:%04Xd",
Igor Sysoev732a2712004-04-21 18:54:33 +0000254 i, event_list[i].fd, event_list[i].events);
255 }
Igor Sysoeva6717c42002-12-23 06:29:22 +0000256 }
Igor Sysoev3d540612004-04-13 15:08:48 +0000257#endif
258
Igor Sysoev208eed22005-10-07 13:30:52 +0000259 ngx_log_debug1(NGX_LOG_DEBUG_EVENT, cycle->log, 0, "poll timer: %M", timer);
Igor Sysoeva6717c42002-12-23 06:29:22 +0000260
Igor Sysoevd9d0ca12003-11-21 06:30:49 +0000261 ready = poll(event_list, (u_int) nevents, (int) timer);
Igor Sysoev9d639522003-07-07 06:11:50 +0000262
Igor Sysoev8e7e69e2009-08-25 09:06:21 +0000263 err = (ready == -1) ? ngx_errno : 0;
Igor Sysoeva6717c42002-12-23 06:29:22 +0000264
Igor Sysoevb80f68a2010-03-12 14:31:47 +0000265 if (flags & NGX_UPDATE_TIME || ngx_event_timer_alarm) {
Igor Sysoev6d45d8a2010-03-25 09:10:10 +0000266 ngx_time_update();
Igor Sysoevc2068d02005-10-19 12:33:58 +0000267 }
Igor Sysoev10318a22004-01-29 21:45:01 +0000268
Igor Sysoevc972a3f2004-04-02 15:13:20 +0000269 ngx_log_debug2(NGX_LOG_DEBUG_EVENT, cycle->log, 0,
Yves Crespin3c0c66c2014-08-07 15:04:43 +0200270 "poll ready %d of %ui", ready, nevents);
Igor Sysoevbbcea6c2004-01-30 17:39:00 +0000271
272 if (err) {
Igor Sysoevc2068d02005-10-19 12:33:58 +0000273 if (err == NGX_EINTR) {
274
275 if (ngx_event_timer_alarm) {
276 ngx_event_timer_alarm = 0;
277 return NGX_OK;
278 }
Igor Sysoev0e5dc5c2005-11-15 13:30:52 +0000279
Igor Sysoevc2068d02005-10-19 12:33:58 +0000280 level = NGX_LOG_INFO;
Igor Sysoev0e5dc5c2005-11-15 13:30:52 +0000281
282 } else {
Igor Sysoevc2068d02005-10-19 12:33:58 +0000283 level = NGX_LOG_ALERT;
284 }
285
286 ngx_log_error(level, cycle->log, err, "poll() failed");
Igor Sysoevbbcea6c2004-01-30 17:39:00 +0000287 return NGX_ERROR;
288 }
289
Igor Sysoevc2068d02005-10-19 12:33:58 +0000290 if (ready == 0) {
Igor Sysoev055951d2005-10-21 19:12:18 +0000291 if (timer != NGX_TIMER_INFINITE) {
292 return NGX_OK;
293 }
294
295 ngx_log_error(NGX_LOG_ALERT, cycle->log, 0,
296 "poll() returned no events without timeout");
297 return NGX_ERROR;
Igor Sysoev3d540612004-04-13 15:08:48 +0000298 }
299
Igor Sysoevc2068d02005-10-19 12:33:58 +0000300 ngx_mutex_lock(ngx_posted_events_mutex);
301
Igor Sysoev0d2bda52002-12-24 07:09:57 +0000302 for (i = 0; i < nevents && ready; i++) {
Igor Sysoev328af6e2004-02-01 08:10:52 +0000303
Igor Sysoeve5a222c2005-01-25 12:27:35 +0000304 revents = event_list[i].revents;
305
Igor Sysoevc2068d02005-10-19 12:33:58 +0000306#if 1
Igor Sysoevc972a3f2004-04-02 15:13:20 +0000307 ngx_log_debug4(NGX_LOG_DEBUG_EVENT, cycle->log, 0,
Yves Crespin3c0c66c2014-08-07 15:04:43 +0200308 "poll: %ui: fd:%d ev:%04Xd rev:%04Xd",
Igor Sysoeve5a222c2005-01-25 12:27:35 +0000309 i, event_list[i].fd, event_list[i].events, revents);
Igor Sysoev92602942004-02-05 16:58:36 +0000310#else
Igor Sysoeve5a222c2005-01-25 12:27:35 +0000311 if (revents) {
Igor Sysoevc972a3f2004-04-02 15:13:20 +0000312 ngx_log_debug4(NGX_LOG_DEBUG_EVENT, cycle->log, 0,
Yves Crespin3c0c66c2014-08-07 15:04:43 +0200313 "poll: %ui: fd:%d ev:%04Xd rev:%04Xd",
Igor Sysoeve5a222c2005-01-25 12:27:35 +0000314 i, event_list[i].fd, event_list[i].events, revents);
Igor Sysoev92602942004-02-05 16:58:36 +0000315 }
316#endif
Igor Sysoev328af6e2004-02-01 08:10:52 +0000317
Igor Sysoeve5a222c2005-01-25 12:27:35 +0000318 if (revents & POLLNVAL) {
Igor Sysoevc972a3f2004-04-02 15:13:20 +0000319 ngx_log_error(NGX_LOG_ALERT, cycle->log, 0,
Igor Sysoev1b735832004-11-11 14:07:14 +0000320 "poll() error fd:%d ev:%04Xd rev:%04Xd",
Igor Sysoeve5a222c2005-01-25 12:27:35 +0000321 event_list[i].fd, event_list[i].events, revents);
Igor Sysoev328af6e2004-02-01 08:10:52 +0000322 }
323
Igor Sysoeve5a222c2005-01-25 12:27:35 +0000324 if (revents & ~(POLLIN|POLLOUT|POLLERR|POLLHUP|POLLNVAL)) {
Igor Sysoevc972a3f2004-04-02 15:13:20 +0000325 ngx_log_error(NGX_LOG_ALERT, cycle->log, 0,
Igor Sysoev1b735832004-11-11 14:07:14 +0000326 "strange poll() events fd:%d ev:%04Xd rev:%04Xd",
Igor Sysoeve5a222c2005-01-25 12:27:35 +0000327 event_list[i].fd, event_list[i].events, revents);
Igor Sysoev328af6e2004-02-01 08:10:52 +0000328 }
329
Igor Sysoevc5371672004-02-04 20:30:08 +0000330 if (event_list[i].fd == -1) {
Igor Sysoev3d540612004-04-13 15:08:48 +0000331 /*
Igor Sysoeva3677242004-04-14 05:57:36 +0000332 * the disabled event, a workaround for our possible bug,
333 * see the comment below
Igor Sysoev3d540612004-04-13 15:08:48 +0000334 */
Igor Sysoevc5371672004-02-04 20:30:08 +0000335 continue;
336 }
337
Igor Sysoev31eb8c02005-09-23 11:02:22 +0000338 c = ngx_cycle->files[event_list[i].fd];
Igor Sysoev9d639522003-07-07 06:11:50 +0000339
340 if (c->fd == -1) {
Igor Sysoevc972a3f2004-04-02 15:13:20 +0000341 ngx_log_error(NGX_LOG_ALERT, cycle->log, 0, "unexpected event");
Igor Sysoevaf579222004-02-03 20:27:11 +0000342
343 /*
344 * it is certainly our fault and it should be investigated,
345 * in the meantime we disable this event to avoid a CPU spinning
346 */
347
348 if (i == nevents - 1) {
349 nevents--;
350 } else {
351 event_list[i].fd = -1;
352 }
353
Igor Sysoev1c13c662003-05-20 15:37:55 +0000354 continue;
355 }
356
Igor Sysoeve5a222c2005-01-25 12:27:35 +0000357 if ((revents & (POLLERR|POLLHUP|POLLNVAL))
358 && (revents & (POLLIN|POLLOUT)) == 0)
359 {
360 /*
361 * if the error events were returned without POLLIN or POLLOUT,
362 * then add these flags to handle the events at least in one
363 * active handler
364 */
365
366 revents |= POLLIN|POLLOUT;
367 }
368
Igor Sysoev328af6e2004-02-01 08:10:52 +0000369 found = 0;
370
Ruslan Ermilov33e934c2013-01-25 09:59:28 +0000371 if ((revents & POLLIN) && c->read->active) {
Igor Sysoeva6717c42002-12-23 06:29:22 +0000372 found = 1;
Igor Sysoev3d540612004-04-13 15:08:48 +0000373
374 ev = c->read;
Igor Sysoev3d540612004-04-13 15:08:48 +0000375
Igor Sysoevc2068d02005-10-19 12:33:58 +0000376 if ((flags & NGX_POST_THREAD_EVENTS) && !ev->accept) {
377 ev->posted_ready = 1;
Igor Sysoev3d540612004-04-13 15:08:48 +0000378
Igor Sysoev3d540612004-04-13 15:08:48 +0000379 } else {
Igor Sysoevc2068d02005-10-19 12:33:58 +0000380 ev->ready = 1;
Igor Sysoev3d540612004-04-13 15:08:48 +0000381 }
382
Igor Sysoevc2068d02005-10-19 12:33:58 +0000383 queue = (ngx_event_t **) (ev->accept ? &ngx_posted_accept_events:
384 &ngx_posted_events);
Igor Sysoev0e5dc5c2005-11-15 13:30:52 +0000385 ngx_locked_post_event(ev, queue);
Igor Sysoeva6717c42002-12-23 06:29:22 +0000386 }
387
Ruslan Ermilov33e934c2013-01-25 09:59:28 +0000388 if ((revents & POLLOUT) && c->write->active) {
Igor Sysoeva6717c42002-12-23 06:29:22 +0000389 found = 1;
Igor Sysoev3d540612004-04-13 15:08:48 +0000390 ev = c->write;
Igor Sysoev3d540612004-04-13 15:08:48 +0000391
Igor Sysoevc2068d02005-10-19 12:33:58 +0000392 if (flags & NGX_POST_THREAD_EVENTS) {
393 ev->posted_ready = 1;
394
395 } else {
396 ev->ready = 1;
Igor Sysoev3d540612004-04-13 15:08:48 +0000397 }
398
Igor Sysoevc2068d02005-10-19 12:33:58 +0000399 ngx_locked_post_event(ev, &ngx_posted_events);
Igor Sysoeva6717c42002-12-23 06:29:22 +0000400 }
401
Igor Sysoeva6717c42002-12-23 06:29:22 +0000402 if (found) {
403 ready--;
Igor Sysoev1c13c662003-05-20 15:37:55 +0000404 continue;
405 }
Igor Sysoeva6717c42002-12-23 06:29:22 +0000406 }
407
Igor Sysoevc2068d02005-10-19 12:33:58 +0000408 ngx_mutex_unlock(ngx_posted_events_mutex);
Igor Sysoev3d540612004-04-13 15:08:48 +0000409
Igor Sysoev3a17f242002-12-24 17:30:59 +0000410 if (ready != 0) {
Igor Sysoevc972a3f2004-04-02 15:13:20 +0000411 ngx_log_error(NGX_LOG_ALERT, cycle->log, 0, "poll ready != events");
Igor Sysoev3a17f242002-12-24 17:30:59 +0000412 }
413
Maxim Dounin870b9622014-08-10 17:44:46 +0400414 return NGX_OK;
Igor Sysoeva6717c42002-12-23 06:29:22 +0000415}
Igor Sysoev2b979932004-07-07 15:01:00 +0000416
417
Igor Sysoev8184d1b2005-03-04 14:06:57 +0000418static char *
419ngx_poll_init_conf(ngx_cycle_t *cycle, void *conf)
Igor Sysoev2b979932004-07-07 15:01:00 +0000420{
421 ngx_event_conf_t *ecf;
422
423 ecf = ngx_event_get_conf(cycle->conf_ctx, ngx_event_core_module);
424
425 if (ecf->use != ngx_poll_module.ctx_index) {
426 return NGX_CONF_OK;
427 }
428
429#if (NGX_THREADS)
430
431 ngx_log_error(NGX_LOG_EMERG, cycle->log, 0,
432 "poll() is not supported in the threaded mode");
433 return NGX_CONF_ERROR;
434
435#else
436
437 return NGX_CONF_OK;
438
439#endif
440}