1 /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
2 * Permission is hereby granted, free of charge, to any person obtaining a copy
3 * of this software and associated documentation files (the "Software"), to
4 * deal in the Software without restriction, including without limitation the
5 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
6 * sell copies of the Software, and to permit persons to whom the Software is
7 * furnished to do so, subject to the following conditions:
9 * The above copyright notice and this permission notice shall be included in
10 * all copies or substantial portions of the Software.
12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
15 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
17 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
24 #include <stddef.h> /* NULL */
25 #include <stdio.h> /* printf */
27 #include <string.h> /* strerror */
31 #include <sys/types.h>
34 #include <sys/socket.h>
36 #include <netinet/in.h>
37 #include <arpa/inet.h>
38 #include <limits.h> /* INT_MAX, PATH_MAX */
39 #include <sys/uio.h> /* writev */
42 # include <sys/ioctl.h>
46 # include <sys/types.h>
47 # include <sys/wait.h>
51 # include <mach-o/dyld.h> /* _NSGetExecutablePath */
52 # include <sys/filio.h>
53 # include <sys/ioctl.h>
57 # include <sys/sysctl.h>
58 # include <sys/filio.h>
59 # include <sys/ioctl.h>
60 # include <sys/wait.h>
63 static void uv__run_pending(uv_loop_t* loop);
65 static uv_loop_t default_loop_struct;
66 static uv_loop_t* default_loop_ptr;
68 /* Verify that uv_buf_t is ABI-compatible with struct iovec. */
69 STATIC_ASSERT(sizeof(uv_buf_t) == sizeof(struct iovec));
70 STATIC_ASSERT(sizeof(&((uv_buf_t*) 0)->base) ==
71 sizeof(((struct iovec*) 0)->iov_base));
72 STATIC_ASSERT(sizeof(&((uv_buf_t*) 0)->len) ==
73 sizeof(((struct iovec*) 0)->iov_len));
74 STATIC_ASSERT(offsetof(uv_buf_t, base) == offsetof(struct iovec, iov_base));
75 STATIC_ASSERT(offsetof(uv_buf_t, len) == offsetof(struct iovec, iov_len));
78 uint64_t uv_hrtime(void) {
83 void uv_close(uv_handle_t* handle, uv_close_cb close_cb) {
84 assert(!(handle->flags & (UV_CLOSING | UV_CLOSED)));
86 handle->flags |= UV_CLOSING;
87 handle->close_cb = close_cb;
89 switch (handle->type) {
91 uv__pipe_close((uv_pipe_t*)handle);
95 uv__stream_close((uv_stream_t*)handle);
99 uv__tcp_close((uv_tcp_t*)handle);
103 uv__udp_close((uv_udp_t*)handle);
107 uv__prepare_close((uv_prepare_t*)handle);
111 uv__check_close((uv_check_t*)handle);
115 uv__idle_close((uv_idle_t*)handle);
119 uv__async_close((uv_async_t*)handle);
123 uv__timer_close((uv_timer_t*)handle);
127 uv__process_close((uv_process_t*)handle);
131 uv__fs_event_close((uv_fs_event_t*)handle);
135 uv__poll_close((uv_poll_t*)handle);
139 uv__fs_poll_close((uv_fs_poll_t*)handle);
143 uv__signal_close((uv_signal_t*) handle);
144 /* Signal handles may not be closed immediately. The signal code will */
145 /* itself close uv__make_close_pending whenever appropriate. */
152 uv__make_close_pending(handle);
156 void uv__make_close_pending(uv_handle_t* handle) {
157 assert(handle->flags & UV_CLOSING);
158 assert(!(handle->flags & UV_CLOSED));
159 handle->next_closing = handle->loop->closing_handles;
160 handle->loop->closing_handles = handle;
164 static void uv__finish_close(uv_handle_t* handle) {
165 /* Note: while the handle is in the UV_CLOSING state now, it's still possible
166 * for it to be active in the sense that uv__is_active() returns true.
167 * A good example is when the user calls uv_shutdown(), immediately followed
168 * by uv_close(). The handle is considered active at this point because the
169 * completion of the shutdown req is still pending.
171 assert(handle->flags & UV_CLOSING);
172 assert(!(handle->flags & UV_CLOSED));
173 handle->flags |= UV_CLOSED;
175 switch (handle->type) {
191 uv__stream_destroy((uv_stream_t*)handle);
195 uv__udp_finish_close((uv_udp_t*)handle);
203 uv__handle_unref(handle);
204 ngx_queue_remove(&handle->handle_queue);
206 if (handle->close_cb) {
207 handle->close_cb(handle);
212 static void uv__run_closing_handles(uv_loop_t* loop) {
216 p = loop->closing_handles;
217 loop->closing_handles = NULL;
227 int uv_is_closing(const uv_handle_t* handle) {
228 return uv__is_closing(handle);
232 uv_loop_t* uv_default_loop(void) {
233 if (default_loop_ptr)
234 return default_loop_ptr;
236 if (uv__loop_init(&default_loop_struct, /* default_loop? */ 1))
239 return (default_loop_ptr = &default_loop_struct);
243 uv_loop_t* uv_loop_new(void) {
246 if ((loop = malloc(sizeof(*loop))) == NULL)
249 if (uv__loop_init(loop, /* default_loop? */ 0)) {
258 void uv_loop_delete(uv_loop_t* loop) {
259 uv__loop_delete(loop);
261 memset(loop, -1, sizeof *loop);
263 if (loop == default_loop_ptr)
264 default_loop_ptr = NULL;
270 int uv_backend_fd(const uv_loop_t* loop) {
271 return loop->backend_fd;
275 int uv_backend_timeout(const uv_loop_t* loop) {
276 if (loop->stop_flag != 0)
279 if (!uv__has_active_handles(loop) && !uv__has_active_reqs(loop))
282 if (!ngx_queue_empty(&loop->idle_handles))
285 if (loop->closing_handles)
288 return uv__next_timeout(loop);
292 static int uv__loop_alive(uv_loop_t* loop) {
293 return uv__has_active_handles(loop) ||
294 uv__has_active_reqs(loop) ||
295 loop->closing_handles != NULL;
299 int uv_run(uv_loop_t* loop, uv_run_mode mode) {
303 r = uv__loop_alive(loop);
304 while (r != 0 && loop->stop_flag == 0) {
305 UV_TICK_START(loop, mode);
307 uv__update_time(loop);
308 uv__run_timers(loop);
310 uv__run_prepare(loop);
311 uv__run_pending(loop);
314 if ((mode & UV_RUN_NOWAIT) == 0)
315 timeout = uv_backend_timeout(loop);
317 uv__io_poll(loop, timeout);
319 uv__run_closing_handles(loop);
320 r = uv__loop_alive(loop);
322 UV_TICK_STOP(loop, mode);
324 if (mode & (UV_RUN_ONCE | UV_RUN_NOWAIT))
328 /* The if statement lets gcc compile it to a conditional store. Avoids
329 * dirtying a cache line.
331 if (loop->stop_flag != 0)
338 void uv_update_time(uv_loop_t* loop) {
339 uv__update_time(loop);
343 int uv_is_active(const uv_handle_t* handle) {
344 return uv__is_active(handle);
348 /* Open a socket in non-blocking close-on-exec mode, atomically if possible. */
349 int uv__socket(int domain, int type, int protocol) {
352 #if defined(SOCK_NONBLOCK) && defined(SOCK_CLOEXEC)
353 sockfd = socket(domain, type | SOCK_NONBLOCK | SOCK_CLOEXEC, protocol);
362 sockfd = socket(domain, type, protocol);
367 if (uv__nonblock(sockfd, 1) || uv__cloexec(sockfd, 1)) {
372 #if defined(SO_NOSIGPIPE)
375 setsockopt(sockfd, SOL_SOCKET, SO_NOSIGPIPE, &on, sizeof(on));
384 int uv__accept(int sockfd) {
390 #if defined(__linux__)
391 static int no_accept4;
396 peerfd = uv__accept4(sockfd,
399 UV__SOCK_NONBLOCK|UV__SOCK_CLOEXEC);
414 peerfd = accept(sockfd, NULL, NULL);
423 if (uv__cloexec(peerfd, 1) || uv__nonblock(peerfd, 1)) {
435 #if defined(__linux__) || defined(__FreeBSD__) || defined(__APPLE__)
437 int uv__nonblock(int fd, int set) {
441 r = ioctl(fd, FIONBIO, &set);
442 while (r == -1 && errno == EINTR);
448 int uv__cloexec(int fd, int set) {
452 r = ioctl(fd, set ? FIOCLEX : FIONCLEX);
453 while (r == -1 && errno == EINTR);
458 #else /* !(defined(__linux__) || defined(__FreeBSD__) || defined(__APPLE__)) */
460 int uv__nonblock(int fd, int set) {
465 r = fcntl(fd, F_GETFL);
466 while (r == -1 && errno == EINTR);
471 /* Bail out now if already set/clear. */
472 if (!!(r & O_NONBLOCK) == !!set)
476 flags = r | O_NONBLOCK;
478 flags = r & ~O_NONBLOCK;
481 r = fcntl(fd, F_SETFL, flags);
482 while (r == -1 && errno == EINTR);
488 int uv__cloexec(int fd, int set) {
493 r = fcntl(fd, F_GETFD);
494 while (r == -1 && errno == EINTR);
499 /* Bail out now if already set/clear. */
500 if (!!(r & FD_CLOEXEC) == !!set)
504 flags = r | FD_CLOEXEC;
506 flags = r & ~FD_CLOEXEC;
509 r = fcntl(fd, F_SETFD, flags);
510 while (r == -1 && errno == EINTR);
515 #endif /* defined(__linux__) || defined(__FreeBSD__) || defined(__APPLE__) */
518 /* This function is not execve-safe, there is a race window
519 * between the call to dup() and fcntl(FD_CLOEXEC).
521 int uv__dup(int fd) {
527 if (uv__cloexec(fd, 1)) {
528 SAVE_ERRNO(close(fd));
536 uv_err_t uv_cwd(char* buffer, size_t size) {
537 if (!buffer || !size) {
538 return uv__new_artificial_error(UV_EINVAL);
541 if (getcwd(buffer, size)) {
544 return uv__new_sys_error(errno);
549 uv_err_t uv_chdir(const char* dir) {
550 if (chdir(dir) == 0) {
553 return uv__new_sys_error(errno);
558 void uv_disable_stdio_inheritance(void) {
561 /* Set the CLOEXEC flag on all open descriptors. Unconditionally try the
562 * first 16 file descriptors. After that, bail out after the first error.
565 if (uv__cloexec(fd, 1) && fd > 15)
570 static void uv__run_pending(uv_loop_t* loop) {
574 while (!ngx_queue_empty(&loop->pending_queue)) {
575 q = ngx_queue_head(&loop->pending_queue);
579 w = ngx_queue_data(q, uv__io_t, pending_queue);
580 w->cb(loop, w, UV__POLLOUT);
585 static unsigned int next_power_of_two(unsigned int val) {
596 static void maybe_resize(uv_loop_t* loop, unsigned int len) {
598 unsigned int nwatchers;
601 if (len <= loop->nwatchers)
604 nwatchers = next_power_of_two(len);
605 watchers = realloc(loop->watchers, nwatchers * sizeof(loop->watchers[0]));
607 if (watchers == NULL)
610 for (i = loop->nwatchers; i < nwatchers; i++)
613 loop->watchers = watchers;
614 loop->nwatchers = nwatchers;
618 void uv__io_init(uv__io_t* w, uv__io_cb cb, int fd) {
621 ngx_queue_init(&w->pending_queue);
622 ngx_queue_init(&w->watcher_queue);
628 #if defined(UV_HAVE_KQUEUE)
631 #endif /* defined(UV_HAVE_KQUEUE) */
635 void uv__io_start(uv_loop_t* loop, uv__io_t* w, unsigned int events) {
636 assert(0 == (events & ~(UV__POLLIN | UV__POLLOUT)));
639 assert(w->fd < INT_MAX);
641 w->pevents |= events;
642 maybe_resize(loop, w->fd + 1);
645 /* The event ports backend needs to rearm all file descriptors on each and
646 * every tick of the event loop but the other backends allow us to
647 * short-circuit here if the event mask is unchanged.
649 if (w->events == w->pevents) {
650 if (w->events == 0 && !ngx_queue_empty(&w->watcher_queue)) {
651 ngx_queue_remove(&w->watcher_queue);
652 ngx_queue_init(&w->watcher_queue);
658 if (ngx_queue_empty(&w->watcher_queue))
659 ngx_queue_insert_tail(&loop->watcher_queue, &w->watcher_queue);
661 if (loop->watchers[w->fd] == NULL) {
662 loop->watchers[w->fd] = w;
668 void uv__io_stop(uv_loop_t* loop, uv__io_t* w, unsigned int events) {
669 assert(0 == (events & ~(UV__POLLIN | UV__POLLOUT)));
677 /* Happens when uv__io_stop() is called on a handle that was never started. */
678 if ((unsigned) w->fd >= loop->nwatchers)
681 w->pevents &= ~events;
683 if (w->pevents == 0) {
684 ngx_queue_remove(&w->watcher_queue);
685 ngx_queue_init(&w->watcher_queue);
687 if (loop->watchers[w->fd] != NULL) {
688 assert(loop->watchers[w->fd] == w);
689 assert(loop->nfds > 0);
690 loop->watchers[w->fd] = NULL;
695 else if (ngx_queue_empty(&w->watcher_queue))
696 ngx_queue_insert_tail(&loop->watcher_queue, &w->watcher_queue);
700 void uv__io_close(uv_loop_t* loop, uv__io_t* w) {
701 uv__io_stop(loop, w, UV__POLLIN | UV__POLLOUT);
702 ngx_queue_remove(&w->pending_queue);
706 void uv__io_feed(uv_loop_t* loop, uv__io_t* w) {
707 if (ngx_queue_empty(&w->pending_queue))
708 ngx_queue_insert_tail(&loop->pending_queue, &w->pending_queue);
712 int uv__io_active(const uv__io_t* w, unsigned int events) {
713 assert(0 == (events & ~(UV__POLLIN | UV__POLLOUT)));
715 return 0 != (w->pevents & events);