Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | /* |
| 16 | * input.c: Unix file input |
| 17 | * |
| 18 | * Copyright (c) 2008 Eliot Dresselhaus |
| 19 | * |
| 20 | * Permission is hereby granted, free of charge, to any person obtaining |
| 21 | * a copy of this software and associated documentation files (the |
| 22 | * "Software"), to deal in the Software without restriction, including |
| 23 | * without limitation the rights to use, copy, modify, merge, publish, |
| 24 | * distribute, sublicense, and/or sell copies of the Software, and to |
| 25 | * permit persons to whom the Software is furnished to do so, subject to |
| 26 | * the following conditions: |
| 27 | * |
| 28 | * The above copyright notice and this permission notice shall be |
| 29 | * included in all copies or substantial portions of the Software. |
| 30 | * |
| 31 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 32 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 33 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 34 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 35 | * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 36 | * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 37 | * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 38 | */ |
| 39 | |
| 40 | #include <vlib/vlib.h> |
| 41 | #include <vlib/unix/unix.h> |
| 42 | #include <signal.h> |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 43 | #include <vppinfra/tw_timer_1t_3w_1024sl_ov.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 44 | |
| 45 | /* FIXME autoconf */ |
| 46 | #define HAVE_LINUX_EPOLL |
| 47 | |
| 48 | #ifdef HAVE_LINUX_EPOLL |
| 49 | |
| 50 | #include <sys/epoll.h> |
| 51 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 52 | typedef struct |
| 53 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 54 | int epoll_fd; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 55 | struct epoll_event *epoll_events; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 56 | |
| 57 | /* Statistics. */ |
| 58 | u64 epoll_files_ready; |
| 59 | u64 epoll_waits; |
| 60 | } linux_epoll_main_t; |
| 61 | |
| 62 | static linux_epoll_main_t linux_epoll_main; |
| 63 | |
| 64 | static void |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 65 | linux_epoll_file_update (clib_file_t * f, clib_file_update_type_t update_type) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 66 | { |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 67 | clib_file_main_t *fm = &file_main; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 68 | linux_epoll_main_t *em = &linux_epoll_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 69 | struct epoll_event e; |
Dave Barach | a1a093d | 2017-03-02 13:13:23 -0500 | [diff] [blame] | 70 | int op; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 71 | |
| 72 | memset (&e, 0, sizeof (e)); |
| 73 | |
| 74 | e.events = EPOLLIN; |
| 75 | if (f->flags & UNIX_FILE_DATA_AVAILABLE_TO_WRITE) |
| 76 | e.events |= EPOLLOUT; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 77 | if (f->flags & UNIX_FILE_EVENT_EDGE_TRIGGERED) |
| 78 | e.events |= EPOLLET; |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 79 | e.data.u32 = f - fm->file_pool; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 80 | |
Dave Barach | a1a093d | 2017-03-02 13:13:23 -0500 | [diff] [blame] | 81 | op = -1; |
| 82 | |
| 83 | switch (update_type) |
| 84 | { |
| 85 | case UNIX_FILE_UPDATE_ADD: |
| 86 | op = EPOLL_CTL_ADD; |
| 87 | break; |
| 88 | |
| 89 | case UNIX_FILE_UPDATE_MODIFY: |
| 90 | op = EPOLL_CTL_MOD; |
| 91 | break; |
| 92 | |
| 93 | case UNIX_FILE_UPDATE_DELETE: |
| 94 | op = EPOLL_CTL_DEL; |
| 95 | break; |
| 96 | |
| 97 | default: |
| 98 | clib_warning ("unknown update_type %d", update_type); |
| 99 | return; |
| 100 | } |
| 101 | |
| 102 | if (epoll_ctl (em->epoll_fd, op, f->file_descriptor, &e) < 0) |
| 103 | clib_unix_warning ("epoll_ctl"); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | static uword |
| 107 | linux_epoll_input (vlib_main_t * vm, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 108 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 109 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 110 | unix_main_t *um = &unix_main; |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 111 | clib_file_main_t *fm = &file_main; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 112 | linux_epoll_main_t *em = &linux_epoll_main; |
| 113 | struct epoll_event *e; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 114 | int n_fds_ready; |
| 115 | |
| 116 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 117 | vlib_node_main_t *nm = &vm->node_main; |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 118 | u32 ticks_until_expiration; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 119 | f64 timeout; |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 120 | int timeout_ms = 0, max_timeout_ms = 10; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 121 | f64 vector_rate = vlib_last_vectors_per_main_loop (vm); |
| 122 | |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 123 | /* If we're not working very hard, decide how long to sleep */ |
| 124 | if (vector_rate < 2 && vm->api_queue_nonempty == 0 |
| 125 | && nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] == 0) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 126 | { |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 127 | ticks_until_expiration = TW (tw_timer_first_expires_in_ticks) |
| 128 | ((TWT (tw_timer_wheel) *) nm->timing_wheel); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 129 | |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 130 | /* Nothing on the fast wheel, sleep 10ms */ |
| 131 | if (ticks_until_expiration == TW_SLOTS_PER_RING) |
Damjan Marion | 18bc907 | 2016-12-07 14:07:54 +0100 | [diff] [blame] | 132 | { |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 133 | timeout = 10e-3; |
| 134 | timeout_ms = max_timeout_ms; |
Damjan Marion | 18bc907 | 2016-12-07 14:07:54 +0100 | [diff] [blame] | 135 | } |
| 136 | else |
| 137 | { |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 138 | timeout = (f64) ticks_until_expiration *1e-5; |
| 139 | if (timeout < 1e-3) |
| 140 | timeout_ms = 0; |
| 141 | else |
| 142 | { |
| 143 | timeout_ms = timeout * 1e3; |
| 144 | /* Must be between 1 and 10 ms. */ |
| 145 | timeout_ms = clib_max (1, timeout_ms); |
| 146 | timeout_ms = clib_min (max_timeout_ms, timeout_ms); |
| 147 | } |
Damjan Marion | 18bc907 | 2016-12-07 14:07:54 +0100 | [diff] [blame] | 148 | } |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 149 | node->input_main_loops_per_call = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 150 | } |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 151 | else /* busy */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 152 | { |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 153 | /* Don't come back for a respectable number of dispatch cycles */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 154 | node->input_main_loops_per_call = 1024; |
| 155 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 156 | |
| 157 | /* Allow any signal to wakeup our sleep. */ |
| 158 | { |
| 159 | static sigset_t unblock_all_signals; |
| 160 | n_fds_ready = epoll_pwait (em->epoll_fd, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 161 | em->epoll_events, |
| 162 | vec_len (em->epoll_events), |
| 163 | timeout_ms, &unblock_all_signals); |
| 164 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 165 | /* This kludge is necessary to run over absurdly old kernels */ |
| 166 | if (n_fds_ready < 0 && errno == ENOSYS) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 167 | { |
| 168 | n_fds_ready = epoll_wait (em->epoll_fd, |
| 169 | em->epoll_events, |
| 170 | vec_len (em->epoll_events), timeout_ms); |
| 171 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 172 | } |
| 173 | } |
| 174 | |
| 175 | if (n_fds_ready < 0) |
| 176 | { |
| 177 | if (unix_error_is_fatal (errno)) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 178 | vlib_panic_with_error (vm, clib_error_return_unix (0, "epoll_wait")); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 179 | |
| 180 | /* non fatal error (e.g. EINTR). */ |
| 181 | return 0; |
| 182 | } |
| 183 | |
| 184 | em->epoll_waits += 1; |
| 185 | em->epoll_files_ready += n_fds_ready; |
| 186 | |
| 187 | for (e = em->epoll_events; e < em->epoll_events + n_fds_ready; e++) |
| 188 | { |
| 189 | u32 i = e->data.u32; |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 190 | clib_file_t *f = pool_elt_at_index (fm->file_pool, i); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 191 | clib_error_t *errors[4]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 192 | int n_errors = 0; |
| 193 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 194 | if (PREDICT_TRUE (!(e->events & EPOLLERR))) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 195 | { |
| 196 | if (e->events & EPOLLIN) |
| 197 | { |
| 198 | errors[n_errors] = f->read_function (f); |
| 199 | n_errors += errors[n_errors] != 0; |
| 200 | } |
| 201 | if (e->events & EPOLLOUT) |
| 202 | { |
| 203 | errors[n_errors] = f->write_function (f); |
| 204 | n_errors += errors[n_errors] != 0; |
| 205 | } |
| 206 | } |
| 207 | else |
| 208 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 209 | if (f->error_function) |
| 210 | { |
| 211 | errors[n_errors] = f->error_function (f); |
| 212 | n_errors += errors[n_errors] != 0; |
| 213 | } |
Ole Troan | 4b12b3c | 2016-01-27 23:37:58 +0200 | [diff] [blame] | 214 | else |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 215 | close (f->file_descriptor); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 216 | } |
| 217 | |
| 218 | ASSERT (n_errors < ARRAY_LEN (errors)); |
| 219 | for (i = 0; i < n_errors; i++) |
| 220 | { |
| 221 | unix_save_error (um, errors[i]); |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | return 0; |
| 226 | } |
| 227 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 228 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 229 | VLIB_REGISTER_NODE (linux_epoll_input_node,static) = { |
| 230 | .function = linux_epoll_input, |
| 231 | .type = VLIB_NODE_TYPE_PRE_INPUT, |
| 232 | .name = "unix-epoll-input", |
| 233 | }; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 234 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 235 | |
| 236 | clib_error_t * |
| 237 | linux_epoll_input_init (vlib_main_t * vm) |
| 238 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 239 | linux_epoll_main_t *em = &linux_epoll_main; |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 240 | clib_file_main_t *fm = &file_main; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 241 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 242 | /* Allocate some events. */ |
| 243 | vec_resize (em->epoll_events, VLIB_FRAME_SIZE); |
| 244 | |
| 245 | em->epoll_fd = epoll_create (vec_len (em->epoll_events)); |
| 246 | if (em->epoll_fd < 0) |
| 247 | return clib_error_return_unix (0, "epoll_create"); |
| 248 | |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 249 | fm->file_update = linux_epoll_file_update; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 250 | |
| 251 | return 0; |
| 252 | } |
| 253 | |
| 254 | VLIB_INIT_FUNCTION (linux_epoll_input_init); |
| 255 | |
| 256 | #endif /* HAVE_LINUX_EPOLL */ |
| 257 | |
| 258 | static clib_error_t * |
| 259 | unix_input_init (vlib_main_t * vm) |
| 260 | { |
| 261 | return vlib_call_init_function (vm, linux_epoll_input_init); |
| 262 | } |
| 263 | |
| 264 | VLIB_INIT_FUNCTION (unix_input_init); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 265 | |
| 266 | /* |
| 267 | * fd.io coding-style-patch-verification: ON |
| 268 | * |
| 269 | * Local Variables: |
| 270 | * eval: (c-set-style "gnu") |
| 271 | * End: |
| 272 | */ |