blob: 515dae94811c61f19601fff3a2539fe9fb48ea0c [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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 Barach5c20a012017-06-13 08:48:31 -040043#include <vppinfra/tw_timer_1t_3w_1024sl_ov.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070044
45/* FIXME autoconf */
46#define HAVE_LINUX_EPOLL
47
48#ifdef HAVE_LINUX_EPOLL
49
50#include <sys/epoll.h>
51
Dave Barach9b8ffd92016-07-08 08:13:45 -040052typedef struct
53{
Ed Warnickecb9cada2015-12-08 15:45:58 -070054 int epoll_fd;
Dave Barach9b8ffd92016-07-08 08:13:45 -040055 struct epoll_event *epoll_events;
Ed Warnickecb9cada2015-12-08 15:45:58 -070056
57 /* Statistics. */
58 u64 epoll_files_ready;
59 u64 epoll_waits;
60} linux_epoll_main_t;
61
62static linux_epoll_main_t linux_epoll_main;
63
64static void
Dave Barach9b8ffd92016-07-08 08:13:45 -040065linux_epoll_file_update (unix_file_t * f, unix_file_update_type_t update_type)
Ed Warnickecb9cada2015-12-08 15:45:58 -070066{
Dave Barach9b8ffd92016-07-08 08:13:45 -040067 unix_main_t *um = &unix_main;
68 linux_epoll_main_t *em = &linux_epoll_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070069 struct epoll_event e;
Dave Baracha1a093d2017-03-02 13:13:23 -050070 int op;
Ed Warnickecb9cada2015-12-08 15:45:58 -070071
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 Barach9b8ffd92016-07-08 08:13:45 -040077 if (f->flags & UNIX_FILE_EVENT_EDGE_TRIGGERED)
78 e.events |= EPOLLET;
Ed Warnickecb9cada2015-12-08 15:45:58 -070079 e.data.u32 = f - um->file_pool;
80
Dave Baracha1a093d2017-03-02 13:13:23 -050081 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 Warnickecb9cada2015-12-08 15:45:58 -0700104}
105
106static uword
107linux_epoll_input (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400108 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400110 unix_main_t *um = &unix_main;
111 linux_epoll_main_t *em = &linux_epoll_main;
112 struct epoll_event *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113 int n_fds_ready;
114
115 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400116 vlib_node_main_t *nm = &vm->node_main;
Dave Barach5c20a012017-06-13 08:48:31 -0400117 u32 ticks_until_expiration;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118 f64 timeout;
Dave Barach5c20a012017-06-13 08:48:31 -0400119 int timeout_ms = 0, max_timeout_ms = 10;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120 f64 vector_rate = vlib_last_vectors_per_main_loop (vm);
121
Dave Barach5c20a012017-06-13 08:48:31 -0400122 /* If we're not working very hard, decide how long to sleep */
123 if (vector_rate < 2 && vm->api_queue_nonempty == 0
124 && nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125 {
Dave Barach5c20a012017-06-13 08:48:31 -0400126 ticks_until_expiration = TW (tw_timer_first_expires_in_ticks)
127 ((TWT (tw_timer_wheel) *) nm->timing_wheel);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400128
Dave Barach5c20a012017-06-13 08:48:31 -0400129 /* Nothing on the fast wheel, sleep 10ms */
130 if (ticks_until_expiration == TW_SLOTS_PER_RING)
Damjan Marion18bc9072016-12-07 14:07:54 +0100131 {
Dave Barach5c20a012017-06-13 08:48:31 -0400132 timeout = 10e-3;
133 timeout_ms = max_timeout_ms;
Damjan Marion18bc9072016-12-07 14:07:54 +0100134 }
135 else
136 {
Dave Barach5c20a012017-06-13 08:48:31 -0400137 timeout = (f64) ticks_until_expiration *1e-5;
138 if (timeout < 1e-3)
139 timeout_ms = 0;
140 else
141 {
142 timeout_ms = timeout * 1e3;
143 /* Must be between 1 and 10 ms. */
144 timeout_ms = clib_max (1, timeout_ms);
145 timeout_ms = clib_min (max_timeout_ms, timeout_ms);
146 }
Damjan Marion18bc9072016-12-07 14:07:54 +0100147 }
Dave Barach5c20a012017-06-13 08:48:31 -0400148 node->input_main_loops_per_call = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149 }
Dave Barach5c20a012017-06-13 08:48:31 -0400150 else /* busy */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151 {
Dave Barach5c20a012017-06-13 08:48:31 -0400152 /* Don't come back for a respectable number of dispatch cycles */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700153 node->input_main_loops_per_call = 1024;
154 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155
156 /* Allow any signal to wakeup our sleep. */
157 {
158 static sigset_t unblock_all_signals;
159 n_fds_ready = epoll_pwait (em->epoll_fd,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400160 em->epoll_events,
161 vec_len (em->epoll_events),
162 timeout_ms, &unblock_all_signals);
163
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164 /* This kludge is necessary to run over absurdly old kernels */
165 if (n_fds_ready < 0 && errno == ENOSYS)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400166 {
167 n_fds_ready = epoll_wait (em->epoll_fd,
168 em->epoll_events,
169 vec_len (em->epoll_events), timeout_ms);
170 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171 }
172 }
173
174 if (n_fds_ready < 0)
175 {
176 if (unix_error_is_fatal (errno))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400177 vlib_panic_with_error (vm, clib_error_return_unix (0, "epoll_wait"));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178
179 /* non fatal error (e.g. EINTR). */
180 return 0;
181 }
182
183 em->epoll_waits += 1;
184 em->epoll_files_ready += n_fds_ready;
185
186 for (e = em->epoll_events; e < em->epoll_events + n_fds_ready; e++)
187 {
188 u32 i = e->data.u32;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400189 unix_file_t *f = pool_elt_at_index (um->file_pool, i);
190 clib_error_t *errors[4];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700191 int n_errors = 0;
192
Dave Barach9b8ffd92016-07-08 08:13:45 -0400193 if (PREDICT_TRUE (!(e->events & EPOLLERR)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700194 {
195 if (e->events & EPOLLIN)
196 {
197 errors[n_errors] = f->read_function (f);
198 n_errors += errors[n_errors] != 0;
199 }
200 if (e->events & EPOLLOUT)
201 {
202 errors[n_errors] = f->write_function (f);
203 n_errors += errors[n_errors] != 0;
204 }
205 }
206 else
207 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400208 if (f->error_function)
209 {
210 errors[n_errors] = f->error_function (f);
211 n_errors += errors[n_errors] != 0;
212 }
Ole Troan4b12b3c2016-01-27 23:37:58 +0200213 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400214 close (f->file_descriptor);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215 }
216
217 ASSERT (n_errors < ARRAY_LEN (errors));
218 for (i = 0; i < n_errors; i++)
219 {
220 unix_save_error (um, errors[i]);
221 }
222 }
223
224 return 0;
225}
226
Dave Barach9b8ffd92016-07-08 08:13:45 -0400227/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700228VLIB_REGISTER_NODE (linux_epoll_input_node,static) = {
229 .function = linux_epoll_input,
230 .type = VLIB_NODE_TYPE_PRE_INPUT,
231 .name = "unix-epoll-input",
232};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400233/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234
235clib_error_t *
236linux_epoll_input_init (vlib_main_t * vm)
237{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400238 linux_epoll_main_t *em = &linux_epoll_main;
239 unix_main_t *um = &unix_main;
240
Ed Warnickecb9cada2015-12-08 15:45:58 -0700241 /* Allocate some events. */
242 vec_resize (em->epoll_events, VLIB_FRAME_SIZE);
243
244 em->epoll_fd = epoll_create (vec_len (em->epoll_events));
245 if (em->epoll_fd < 0)
246 return clib_error_return_unix (0, "epoll_create");
247
248 um->file_update = linux_epoll_file_update;
249
250 return 0;
251}
252
253VLIB_INIT_FUNCTION (linux_epoll_input_init);
254
255#endif /* HAVE_LINUX_EPOLL */
256
257static clib_error_t *
258unix_input_init (vlib_main_t * vm)
259{
260 return vlib_call_init_function (vm, linux_epoll_input_init);
261}
262
263VLIB_INIT_FUNCTION (unix_input_init);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400264
265/*
266 * fd.io coding-style-patch-verification: ON
267 *
268 * Local Variables:
269 * eval: (c-set-style "gnu")
270 * End:
271 */