winreg: Use the ntstatus return code for client side errors
[Samba/gebeck_regimport.git] / lib / tevent / tevent_poll.c
blob0b782e99bb82b2b7bd2eba8cec9fa8a3fcf69081
1 /*
2 Unix SMB/CIFS implementation.
3 main select loop and event handling
4 Copyright (C) Andrew Tridgell 2003-2005
5 Copyright (C) Stefan Metzmacher 2005-2009
7 ** NOTE! The following LGPL license applies to the tevent
8 ** library. This does NOT imply that all of Samba is released
9 ** under the LGPL
11 This library is free software; you can redistribute it and/or
12 modify it under the terms of the GNU Lesser General Public
13 License as published by the Free Software Foundation; either
14 version 3 of the License, or (at your option) any later version.
16 This library is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 Lesser General Public License for more details.
21 You should have received a copy of the GNU Lesser General Public
22 License along with this library; if not, see <http://www.gnu.org/licenses/>.
25 #include "replace.h"
26 #include "system/filesys.h"
27 #include "system/select.h"
28 #include "tevent.h"
29 #include "tevent_util.h"
30 #include "tevent_internal.h"
32 struct poll_event_context {
34 * These two arrays are maintained together.
36 struct pollfd *fds;
37 struct tevent_fd **fd_events;
38 uint64_t num_fds;
40 /* information for exiting from the event loop */
41 int exit_code;
45 create a select_event_context structure.
47 static int poll_event_context_init(struct tevent_context *ev)
49 struct poll_event_context *poll_ev;
51 poll_ev = talloc_zero(ev, struct poll_event_context);
52 if (poll_ev == NULL) {
53 return -1;
55 ev->additional_data = poll_ev;
56 return 0;
60 destroy an fd_event
62 static int poll_event_fd_destructor(struct tevent_fd *fde)
64 struct tevent_context *ev = fde->event_ctx;
65 struct poll_event_context *poll_ev = NULL;
66 struct tevent_fd *moved_fde;
67 uint64_t del_idx = fde->additional_flags;
69 if (ev == NULL) {
70 goto done;
73 poll_ev = talloc_get_type_abort(
74 ev->additional_data, struct poll_event_context);
76 moved_fde = poll_ev->fd_events[poll_ev->num_fds-1];
77 poll_ev->fd_events[del_idx] = moved_fde;
78 poll_ev->fds[del_idx] = poll_ev->fds[poll_ev->num_fds-1];
79 moved_fde->additional_flags = del_idx;
81 poll_ev->num_fds -= 1;
82 done:
83 return tevent_common_fd_destructor(fde);
87 add a fd based event
88 return NULL on failure (memory allocation error)
90 static struct tevent_fd *poll_event_add_fd(struct tevent_context *ev,
91 TALLOC_CTX *mem_ctx,
92 int fd, uint16_t flags,
93 tevent_fd_handler_t handler,
94 void *private_data,
95 const char *handler_name,
96 const char *location)
98 struct poll_event_context *poll_ev = talloc_get_type_abort(
99 ev->additional_data, struct poll_event_context);
100 struct pollfd *pfd;
101 struct tevent_fd *fde;
103 fde = tevent_common_add_fd(ev, mem_ctx, fd, flags,
104 handler, private_data,
105 handler_name, location);
106 if (fde == NULL) {
107 return NULL;
110 /* we allocate 16 slots to avoid a lot of reallocations */
111 if (talloc_array_length(poll_ev->fds) == poll_ev->num_fds) {
112 struct pollfd *tmp_fds;
113 struct tevent_fd **tmp_fd_events;
114 tmp_fds = talloc_realloc(
115 poll_ev, poll_ev->fds, struct pollfd,
116 poll_ev->num_fds + 16);
117 if (tmp_fds == NULL) {
118 TALLOC_FREE(fde);
119 return NULL;
121 poll_ev->fds = tmp_fds;
123 tmp_fd_events = talloc_realloc(
124 poll_ev, poll_ev->fd_events, struct tevent_fd *,
125 poll_ev->num_fds + 16);
126 if (tmp_fd_events == NULL) {
127 TALLOC_FREE(fde);
128 return NULL;
130 poll_ev->fd_events = tmp_fd_events;
133 pfd = &poll_ev->fds[poll_ev->num_fds];
135 pfd->fd = fd;
137 pfd->events = 0;
138 pfd->revents = 0;
140 if (flags & TEVENT_FD_READ) {
141 pfd->events |= (POLLIN|POLLHUP);
143 if (flags & TEVENT_FD_WRITE) {
144 pfd->events |= (POLLOUT);
147 fde->additional_flags = poll_ev->num_fds;
148 poll_ev->fd_events[poll_ev->num_fds] = fde;
150 poll_ev->num_fds += 1;
152 talloc_set_destructor(fde, poll_event_fd_destructor);
154 return fde;
158 set the fd event flags
160 static void poll_event_set_fd_flags(struct tevent_fd *fde, uint16_t flags)
162 struct poll_event_context *poll_ev = talloc_get_type_abort(
163 fde->event_ctx->additional_data, struct poll_event_context);
164 uint64_t idx = fde->additional_flags;
165 uint16_t pollflags = 0;
167 if (flags & TEVENT_FD_READ) {
168 pollflags |= (POLLIN|POLLHUP);
170 if (flags & TEVENT_FD_WRITE) {
171 pollflags |= (POLLOUT);
174 poll_ev->fds[idx].events = pollflags;
176 fde->flags = flags;
180 event loop handling using select()
182 static int poll_event_loop_poll(struct tevent_context *ev,
183 struct timeval *tvalp)
185 struct poll_event_context *poll_ev = talloc_get_type_abort(
186 ev->additional_data, struct poll_event_context);
187 struct tevent_fd *fde;
188 int pollrtn;
189 int timeout = -1;
191 if (ev->signal_events && tevent_common_check_signal(ev)) {
192 return 0;
195 if (tvalp != NULL) {
196 timeout = tvalp->tv_sec * 1000;
197 timeout += (tvalp->tv_usec + 999) / 1000;
200 pollrtn = poll(poll_ev->fds, poll_ev->num_fds, timeout);
202 if (pollrtn == -1 && errno == EINTR && ev->signal_events) {
203 tevent_common_check_signal(ev);
204 return 0;
207 if (pollrtn == -1 && errno == EBADF) {
208 /* the socket is dead! this should never
209 happen as the socket should have first been
210 made readable and that should have removed
211 the event, so this must be a bug. This is a
212 fatal error. */
213 tevent_debug(ev, TEVENT_DEBUG_FATAL,
214 "ERROR: EBADF on poll_event_loop_once\n");
215 poll_ev->exit_code = EBADF;
216 return -1;
219 if (pollrtn == 0 && tvalp) {
220 /* we don't care about a possible delay here */
221 tevent_common_loop_timer_delay(ev);
222 return 0;
225 if (pollrtn > 0) {
226 /* at least one file descriptor is ready - check
227 which ones and call the handler, being careful to allow
228 the handler to remove itself when called */
229 for (fde = ev->fd_events; fde; fde = fde->next) {
230 struct pollfd *pfd;
231 uint64_t pfd_idx = fde->additional_flags;
232 uint16_t flags = 0;
234 pfd = &poll_ev->fds[pfd_idx];
236 if (pfd->revents & (POLLHUP|POLLERR)) {
237 /* If we only wait for TEVENT_FD_WRITE, we
238 should not tell the event handler about it,
239 and remove the writable flag, as we only
240 report errors when waiting for read events
241 to match the select behavior. */
242 if (!(fde->flags & TEVENT_FD_READ)) {
243 TEVENT_FD_NOT_WRITEABLE(fde);
244 continue;
246 flags |= TEVENT_FD_READ;
248 if (pfd->revents & POLLIN) {
249 flags |= TEVENT_FD_READ;
251 if (pfd->revents & POLLOUT) {
252 flags |= TEVENT_FD_WRITE;
254 if (flags != 0) {
255 fde->handler(ev, fde, flags,
256 fde->private_data);
257 break;
262 return 0;
266 do a single event loop using the events defined in ev
268 static int poll_event_loop_once(struct tevent_context *ev,
269 const char *location)
271 struct timeval tval;
273 if (ev->signal_events &&
274 tevent_common_check_signal(ev)) {
275 return 0;
278 if (ev->immediate_events &&
279 tevent_common_loop_immediate(ev)) {
280 return 0;
283 tval = tevent_common_loop_timer_delay(ev);
284 if (tevent_timeval_is_zero(&tval)) {
285 return 0;
288 return poll_event_loop_poll(ev, &tval);
291 static const struct tevent_ops poll_event_ops = {
292 .context_init = poll_event_context_init,
293 .add_fd = poll_event_add_fd,
294 .set_fd_close_fn = tevent_common_fd_set_close_fn,
295 .get_fd_flags = tevent_common_fd_get_flags,
296 .set_fd_flags = poll_event_set_fd_flags,
297 .add_timer = tevent_common_add_timer,
298 .schedule_immediate = tevent_common_schedule_immediate,
299 .add_signal = tevent_common_add_signal,
300 .loop_once = poll_event_loop_once,
301 .loop_wait = tevent_common_loop_wait,
304 _PRIVATE_ bool tevent_poll_init(void)
306 return tevent_register_backend("poll", &poll_event_ops);