blob: aba00142051734989b0d681565521a447daf280c [file] [log] [blame]
Dave Barach8e8f98c2017-02-03 11:58:53 -05001/*
2 * Copyright (c) 2016 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/** @file
17 * @brief TW timer implementation TEMPLATE ONLY, do not compile directly
18 *
19 *
20 */
Dave Barachb7f1faa2017-08-29 11:43:37 -040021#if TW_START_STOP_TRACE_SIZE > 0
22
23void TW (tw_timer_trace) (TWT (tw_timer_wheel) * tw, u32 timer_id,
24 u32 pool_index, u32 handle)
25{
26 TWT (trace) * t = &tw->traces[tw->trace_index];
27
28 t->timer_id = timer_id;
29 t->pool_index = pool_index;
30 t->handle = handle;
31
32 tw->trace_index++;
33 if (tw->trace_index == TW_START_STOP_TRACE_SIZE)
34 {
35 tw->trace_index = 0;
36 tw->trace_wrapped++;
37 }
38}
39
40void TW (tw_search_trace) (TWT (tw_timer_wheel) * tw, u32 handle)
41{
42 u32 i, start_pos;
43 TWT (trace) * t;
44 char *s = "bogus!";
45
46 /* reverse search for the supplied handle */
47
48 start_pos = tw->trace_index;
49 if (start_pos == 0)
50 start_pos = TW_START_STOP_TRACE_SIZE - 1;
51 else
52 start_pos--;
53
54 for (i = start_pos; i > 0; i--)
55 {
56 t = &tw->traces[i];
57 if (t->handle == handle)
58 {
59 switch (t->timer_id)
60 {
61 case 0xFF:
62 s = "stopped";
63 break;
64 case 0xFE:
65 s = "expired";
66 break;
67 default:
68 s = "started";
69 break;
70 }
71 fformat (stderr, "handle 0x%x (%d) %s at trace %d\n",
72 handle, handle, s, i);
73 }
74 }
75 if (tw->trace_wrapped > 0)
76 {
77 for (i = TW_START_STOP_TRACE_SIZE; i >= tw->trace_index; i--)
78 {
79 t = &tw->traces[i];
80 if (t->handle == handle)
81 {
82 switch (t->timer_id)
83 {
84 case 0xFF:
85 s = "stopped";
86 break;
87 case 0xFE:
88 s = "expired";
89 break;
90 default:
91 s = "started";
92 break;
93 }
94 fformat (stderr, "handle 0x%x (%d) %s at trace %d\n",
95 handle, handle, s, i);
96 }
97 }
98 }
99}
100#endif /* TW_START_STOP_TRACE_SIZE > 0 */
101
Dave Barach8e8f98c2017-02-03 11:58:53 -0500102static inline u32
103TW (make_internal_timer_handle) (u32 pool_index, u32 timer_id)
104{
105 u32 handle;
106
107 ASSERT (timer_id < TW_TIMERS_PER_OBJECT);
Dave Barach4af9ba12017-06-07 15:18:23 -0400108#if LOG2_TW_TIMERS_PER_OBJECT > 0
Dave Barach8e8f98c2017-02-03 11:58:53 -0500109 ASSERT (pool_index < (1 << (32 - LOG2_TW_TIMERS_PER_OBJECT)));
110
111 handle = (timer_id << (32 - LOG2_TW_TIMERS_PER_OBJECT)) | (pool_index);
Dave Barach4af9ba12017-06-07 15:18:23 -0400112#else
113 handle = pool_index;
114#endif
Dave Barach8e8f98c2017-02-03 11:58:53 -0500115 return handle;
116}
117
118static inline void
119timer_addhead (TWT (tw_timer) * pool, u32 head_index, u32 new_index)
120{
121 TWT (tw_timer) * head = pool_elt_at_index (pool, head_index);
122 TWT (tw_timer) * old_first;
123 u32 old_first_index;
124 TWT (tw_timer) * new;
125
126 new = pool_elt_at_index (pool, new_index);
127
128 if (PREDICT_FALSE (head->next == head_index))
129 {
130 head->next = head->prev = new_index;
131 new->next = new->prev = head_index;
132 return;
133 }
134
135 old_first_index = head->next;
136 old_first = pool_elt_at_index (pool, old_first_index);
137
138 new->next = old_first_index;
139 new->prev = old_first->prev;
140 old_first->prev = new_index;
141 head->next = new_index;
142}
143
144static inline void
145timer_remove (TWT (tw_timer) * pool, u32 index)
146{
147 TWT (tw_timer) * elt = pool_elt_at_index (pool, index);
148 TWT (tw_timer) * next_elt, *prev_elt;
149
150 ASSERT (elt->user_handle != ~0);
151
152 next_elt = pool_elt_at_index (pool, elt->next);
153 prev_elt = pool_elt_at_index (pool, elt->prev);
154
155 next_elt->prev = elt->prev;
156 prev_elt->next = elt->next;
157
158 elt->prev = elt->next = ~0;
159}
160
161/**
162 * @brief Start a Tw Timer
163 * @param tw_timer_wheel_t * tw timer wheel object pointer
164 * @param u32 pool_index user pool index, presumably for a tw session
165 * @param u32 timer_id app-specific timer ID. 4 bits.
Dave Barach4af9ba12017-06-07 15:18:23 -0400166 * @param u64 interval timer interval in ticks
Dave Barach8e8f98c2017-02-03 11:58:53 -0500167 * @returns handle needed to cancel the timer
168 */
169u32
170TW (tw_timer_start) (TWT (tw_timer_wheel) * tw, u32 pool_index, u32 timer_id,
Dave Barach4af9ba12017-06-07 15:18:23 -0400171 u64 interval)
Dave Barach8e8f98c2017-02-03 11:58:53 -0500172{
173#if TW_TIMER_WHEELS > 1
174 u16 slow_ring_offset;
175 u32 carry;
176#endif
Dave Barach4af9ba12017-06-07 15:18:23 -0400177#if TW_TIMER_WHEELS > 2
178 u16 glacier_ring_offset;
179#endif
180#if TW_OVERFLOW_VECTOR > 0
181 u64 interval_plus_time_to_wrap, triple_wrap_mask;
182#endif
Dave Barach8e8f98c2017-02-03 11:58:53 -0500183 u16 fast_ring_offset;
184 tw_timer_wheel_slot_t *ts;
185 TWT (tw_timer) * t;
186
187 ASSERT (interval);
188
189 pool_get (tw->timers, t);
Dave Barach4af9ba12017-06-07 15:18:23 -0400190 memset (t, 0xff, sizeof (*t));
191
Dave Barach8e8f98c2017-02-03 11:58:53 -0500192 t->user_handle = TW (make_internal_timer_handle) (pool_index, timer_id);
193
Dave Barach4af9ba12017-06-07 15:18:23 -0400194 /* Factor interval into 1..3 wheel offsets */
195#if TW_TIMER_WHEELS > 2
196#if TW_OVERFLOW_VECTOR > 0
197 /*
198 * This is tricky. Put a timer onto the overflow
199 * vector if the interval PLUS the time
200 * until the next triple-wrap exceeds one full revolution
201 * of all three wheels.
202 */
203 triple_wrap_mask = (1 << (3 * TW_RING_SHIFT)) - 1;
204 interval_plus_time_to_wrap =
205 interval + (tw->current_tick & triple_wrap_mask);
206 if ((interval_plus_time_to_wrap >= 1 << (3 * TW_RING_SHIFT)))
207 {
208 t->expiration_time = tw->current_tick + interval;
209 ts = &tw->overflow;
210 timer_addhead (tw->timers, ts->head_index, t - tw->timers);
Dave Barachb7f1faa2017-08-29 11:43:37 -0400211#if TW_START_STOP_TRACE_SIZE > 0
212 TW (tw_timer_trace) (tw, timer_id, pool_index, t - tw->timers);
213#endif
Dave Barach4af9ba12017-06-07 15:18:23 -0400214 return t - tw->timers;
215 }
216#endif
217
218 glacier_ring_offset = interval >> (2 * TW_RING_SHIFT);
Dave Barach28b70af2017-06-13 17:04:28 -0400219 ASSERT ((u64) glacier_ring_offset < TW_SLOTS_PER_RING);
220 interval -= (((u64) glacier_ring_offset) << (2 * TW_RING_SHIFT));
Dave Barach4af9ba12017-06-07 15:18:23 -0400221#endif
222#if TW_TIMER_WHEELS > 1
223 slow_ring_offset = interval >> TW_RING_SHIFT;
Dave Barach28b70af2017-06-13 17:04:28 -0400224 ASSERT ((u64) slow_ring_offset < TW_SLOTS_PER_RING);
225 interval -= (((u64) slow_ring_offset) << TW_RING_SHIFT);
Dave Barach4af9ba12017-06-07 15:18:23 -0400226#endif
Dave Barach8e8f98c2017-02-03 11:58:53 -0500227 fast_ring_offset = interval & TW_RING_MASK;
Dave Barach4af9ba12017-06-07 15:18:23 -0400228
229 /*
230 * Account for the current wheel positions(s)
231 * This is made slightly complicated by the fact that the current
232 * index vector will contain (TW_SLOTS_PER_RING, ...) when
233 * the actual position is (0, ...)
234 */
235
236 fast_ring_offset += tw->current_index[TW_TIMER_RING_FAST] & TW_RING_MASK;
237
Dave Barach8e8f98c2017-02-03 11:58:53 -0500238#if TW_TIMER_WHEELS > 1
239 carry = fast_ring_offset >= TW_SLOTS_PER_RING ? 1 : 0;
240 fast_ring_offset %= TW_SLOTS_PER_RING;
Dave Barach4af9ba12017-06-07 15:18:23 -0400241 slow_ring_offset += (tw->current_index[TW_TIMER_RING_SLOW] & TW_RING_MASK)
242 + carry;
243 carry = slow_ring_offset >= TW_SLOTS_PER_RING ? 1 : 0;
244 slow_ring_offset %= TW_SLOTS_PER_RING;
245#endif
Dave Barach8e8f98c2017-02-03 11:58:53 -0500246
Dave Barach4af9ba12017-06-07 15:18:23 -0400247#if TW_TIMER_WHEELS > 2
248 glacier_ring_offset +=
249 (tw->current_index[TW_TIMER_RING_GLACIER] & TW_RING_MASK) + carry;
250 glacier_ring_offset %= TW_SLOTS_PER_RING;
251#endif
Dave Barach8e8f98c2017-02-03 11:58:53 -0500252
Dave Barach4af9ba12017-06-07 15:18:23 -0400253#if TW_TIMER_WHEELS > 2
254 if (glacier_ring_offset !=
255 (tw->current_index[TW_TIMER_RING_GLACIER] & TW_RING_MASK))
Dave Barach8e8f98c2017-02-03 11:58:53 -0500256 {
Dave Barach4af9ba12017-06-07 15:18:23 -0400257 /* We'll need slow and fast ring offsets later */
258 t->slow_ring_offset = slow_ring_offset;
Dave Barach8e8f98c2017-02-03 11:58:53 -0500259 t->fast_ring_offset = fast_ring_offset;
Dave Barach4af9ba12017-06-07 15:18:23 -0400260
261 ts = &tw->w[TW_TIMER_RING_GLACIER][glacier_ring_offset];
262
263 timer_addhead (tw->timers, ts->head_index, t - tw->timers);
Dave Barachb7f1faa2017-08-29 11:43:37 -0400264#if TW_START_STOP_TRACE_SIZE > 0
265 TW (tw_timer_trace) (tw, timer_id, pool_index, t - tw->timers);
266#endif
Dave Barach4af9ba12017-06-07 15:18:23 -0400267 return t - tw->timers;
268 }
269#endif
270
271#if TW_TIMER_WHEELS > 1
272 /* Timer expires more than 51.2 seconds from now? */
273 if (slow_ring_offset !=
274 (tw->current_index[TW_TIMER_RING_SLOW] & TW_RING_MASK))
275 {
276 /* We'll need the fast ring offset later... */
277 t->fast_ring_offset = fast_ring_offset;
Dave Barach8e8f98c2017-02-03 11:58:53 -0500278
279 ts = &tw->w[TW_TIMER_RING_SLOW][slow_ring_offset];
280
281 timer_addhead (tw->timers, ts->head_index, t - tw->timers);
Dave Barachb7f1faa2017-08-29 11:43:37 -0400282#if TW_START_STOP_TRACE_SIZE > 0
283 TW (tw_timer_trace) (tw, timer_id, pool_index, t - tw->timers);
284#endif
Dave Barach8e8f98c2017-02-03 11:58:53 -0500285 return t - tw->timers;
286 }
287#else
288 fast_ring_offset %= TW_SLOTS_PER_RING;
Dave Barach8e8f98c2017-02-03 11:58:53 -0500289#endif
290
291 /* Timer expires less than one fast-ring revolution from now */
292 ts = &tw->w[TW_TIMER_RING_FAST][fast_ring_offset];
293
294 timer_addhead (tw->timers, ts->head_index, t - tw->timers);
Dave Barach5c20a012017-06-13 08:48:31 -0400295
296#if TW_FAST_WHEEL_BITMAP
297 tw->fast_slot_bitmap = clib_bitmap_set (tw->fast_slot_bitmap,
298 fast_ring_offset, 1);
299#endif
Dave Barachb7f1faa2017-08-29 11:43:37 -0400300#if TW_START_STOP_TRACE_SIZE > 0
301 TW (tw_timer_trace) (tw, timer_id, pool_index, t - tw->timers);
302#endif
Dave Barach8e8f98c2017-02-03 11:58:53 -0500303 return t - tw->timers;
304}
305
Dave Barach4af9ba12017-06-07 15:18:23 -0400306#if TW_TIMER_SCAN_FOR_HANDLE > 0
307int TW (scan_for_handle) (TWT (tw_timer_wheel) * tw, u32 handle)
308{
309 int i, j;
310 tw_timer_wheel_slot_t *ts;
311 TWT (tw_timer) * t, *head;
312 u32 next_index;
313 int rv = 0;
314
315 for (i = 0; i < TW_TIMER_WHEELS; i++)
316 {
317 for (j = 0; j < TW_SLOTS_PER_RING; j++)
318 {
319 ts = &tw->w[i][j];
320 head = pool_elt_at_index (tw->timers, ts->head_index);
321 next_index = head->next;
322
323 while (next_index != ts->head_index)
324 {
325 t = pool_elt_at_index (tw->timers, next_index);
326 if (next_index == handle)
327 {
328 clib_warning ("handle %d found in ring %d slot %d",
329 handle, i, j);
330 clib_warning ("user handle 0x%x", t->user_handle);
331 rv = 1;
332 }
333 next_index = t->next;
334 }
335 }
336 }
337 return rv;
338}
339#endif /* TW_TIMER_SCAN_FOR_HANDLE */
340
Dave Barach8e8f98c2017-02-03 11:58:53 -0500341/**
342 * @brief Stop a tw timer
343 * @param tw_timer_wheel_t * tw timer wheel object pointer
Dave Barach8e8f98c2017-02-03 11:58:53 -0500344 * @param u32 handle timer cancellation returned by tw_timer_start
345 */
Dave Barach8e8f98c2017-02-03 11:58:53 -0500346void TW (tw_timer_stop) (TWT (tw_timer_wheel) * tw, u32 handle)
347{
348 TWT (tw_timer) * t;
349
Dave Barach5c20a012017-06-13 08:48:31 -0400350#if TW_TIMER_ALLOW_DUPLICATE_STOP
351 /*
352 * A vlib process may have its timer expire, and receive
353 * an event before the expiration is processed.
354 * That results in a duplicate tw_timer_stop.
355 */
356 if (pool_is_free_index (tw->timers, handle))
357 return;
358#endif
Dave Barachb7f1faa2017-08-29 11:43:37 -0400359#if TW_START_STOP_TRACE_SIZE > 0
360 TW (tw_timer_trace) (tw, ~0, ~0, handle);
361#endif
Dave Barach5c20a012017-06-13 08:48:31 -0400362
Dave Barach8e8f98c2017-02-03 11:58:53 -0500363 t = pool_elt_at_index (tw->timers, handle);
364
365 /* in case of idiotic handle (e.g. passing a listhead index) */
366 ASSERT (t->user_handle != ~0);
367
368 timer_remove (tw->timers, handle);
369
370 pool_put_index (tw->timers, handle);
371}
372
373/**
374 * @brief Initialize a tw timer wheel template instance
375 * @param tw_timer_wheel_t * tw timer wheel object pointer
376 * @param void * expired_timer_callback. Passed a u32 * vector of
Dave Barach4af9ba12017-06-07 15:18:23 -0400377 * expired timer handles. The callback is optional.
Dave Barach8e8f98c2017-02-03 11:58:53 -0500378 * @param f64 timer_interval_in_seconds
379 */
380void
381TW (tw_timer_wheel_init) (TWT (tw_timer_wheel) * tw,
382 void *expired_timer_callback,
Gabriel Ganne83ed1f42017-02-15 16:55:30 +0100383 f64 timer_interval_in_seconds, u32 max_expirations)
Dave Barach8e8f98c2017-02-03 11:58:53 -0500384{
385 int ring, slot;
386 tw_timer_wheel_slot_t *ts;
387 TWT (tw_timer) * t;
388 memset (tw, 0, sizeof (*tw));
389 tw->expired_timer_callback = expired_timer_callback;
Gabriel Ganne83ed1f42017-02-15 16:55:30 +0100390 tw->max_expirations = max_expirations;
Dave Barach8e8f98c2017-02-03 11:58:53 -0500391 if (timer_interval_in_seconds == 0.0)
392 {
393 clib_warning ("timer interval is zero");
394 abort ();
395 }
396 tw->timer_interval = timer_interval_in_seconds;
397 tw->ticks_per_second = 1.0 / timer_interval_in_seconds;
Dave Barach4af9ba12017-06-07 15:18:23 -0400398 tw->first_expires_tick = ~0ULL;
Dave Barachb7f1faa2017-08-29 11:43:37 -0400399
Dave Barach4af9ba12017-06-07 15:18:23 -0400400 vec_validate (tw->expired_timer_handles, 0);
401 _vec_len (tw->expired_timer_handles) = 0;
Dave Barach8e8f98c2017-02-03 11:58:53 -0500402
403 for (ring = 0; ring < TW_TIMER_WHEELS; ring++)
404 {
405 for (slot = 0; slot < TW_SLOTS_PER_RING; slot++)
406 {
407 ts = &tw->w[ring][slot];
408 pool_get (tw->timers, t);
409 memset (t, 0xff, sizeof (*t));
410 t->next = t->prev = t - tw->timers;
411 ts->head_index = t - tw->timers;
412 }
413 }
Dave Barach4af9ba12017-06-07 15:18:23 -0400414
415#if TW_OVERFLOW_VECTOR > 0
416 ts = &tw->overflow;
417 pool_get (tw->timers, t);
418 memset (t, 0xff, sizeof (*t));
419 t->next = t->prev = t - tw->timers;
420 ts->head_index = t - tw->timers;
421#endif
Dave Barach8e8f98c2017-02-03 11:58:53 -0500422}
423
424/**
425 * @brief Free a tw timer wheel template instance
426 * @param tw_timer_wheel_t * tw timer wheel object pointer
427 */
428void TW (tw_timer_wheel_free) (TWT (tw_timer_wheel) * tw)
429{
430 int i, j;
431 tw_timer_wheel_slot_t *ts;
432 TWT (tw_timer) * head, *t;
433 u32 next_index;
434
435 for (i = 0; i < TW_TIMER_WHEELS; i++)
436 {
437 for (j = 0; j < TW_SLOTS_PER_RING; j++)
438 {
439 ts = &tw->w[i][j];
440 head = pool_elt_at_index (tw->timers, ts->head_index);
441 next_index = head->next;
442
443 while (next_index != ts->head_index)
444 {
445 t = pool_elt_at_index (tw->timers, next_index);
446 next_index = t->next;
447 pool_put (tw->timers, t);
448 }
449 pool_put (tw->timers, head);
450 }
451 }
Dave Barach4af9ba12017-06-07 15:18:23 -0400452
453#if TW_OVERFLOW_VECVOR > 0
454 ts = &tw->overflow;
455 head = pool_elt_at_index (tw->timers, ts->head_index);
456 next_index = head->next;
457
458 while (next_index != ts->head_index)
459 {
460 t = pool_elt_at_index (tw->timers, next_index);
461 next_index = t->next;
462 pool_put (tw->timers, t);
463 }
464 pool_put (tw->timers, head);
465#endif
466
Dave Barach8e8f98c2017-02-03 11:58:53 -0500467 memset (tw, 0, sizeof (*tw));
468}
469
470/**
471 * @brief Advance a tw timer wheel. Calls the expired timer callback
472 * as needed. This routine should be called once every timer_interval seconds
473 * @param tw_timer_wheel_t * tw timer wheel template instance pointer
474 * @param f64 now the current time, e.g. from vlib_time_now(vm)
Dave Barach4af9ba12017-06-07 15:18:23 -0400475 * @returns u32 * vector of expired user handles
Dave Barach8e8f98c2017-02-03 11:58:53 -0500476 */
Dave Barach4af9ba12017-06-07 15:18:23 -0400477static inline
478 u32 * TW (tw_timer_expire_timers_internal) (TWT (tw_timer_wheel) * tw,
479 f64 now,
480 u32 * callback_vector_arg)
Dave Barach8e8f98c2017-02-03 11:58:53 -0500481{
482 u32 nticks, i;
483 tw_timer_wheel_slot_t *ts;
484 TWT (tw_timer) * t, *head;
Dave Barach4af9ba12017-06-07 15:18:23 -0400485 u32 *callback_vector;
Dave Barach8e8f98c2017-02-03 11:58:53 -0500486 u32 fast_wheel_index;
487 u32 next_index;
Dave Barach4af9ba12017-06-07 15:18:23 -0400488 u32 slow_wheel_index __attribute__ ((unused));
489 u32 glacier_wheel_index __attribute__ ((unused));
Dave Barach8e8f98c2017-02-03 11:58:53 -0500490
491 /* Shouldn't happen */
492 if (PREDICT_FALSE (now < tw->next_run_time))
Dave Barach4af9ba12017-06-07 15:18:23 -0400493 return callback_vector_arg;
Dave Barach8e8f98c2017-02-03 11:58:53 -0500494
495 /* Number of ticks which have occurred */
496 nticks = tw->ticks_per_second * (now - tw->last_run_time);
497 if (nticks == 0)
Dave Barach4af9ba12017-06-07 15:18:23 -0400498 return callback_vector_arg;
Dave Barach8e8f98c2017-02-03 11:58:53 -0500499
500 /* Remember when we ran, compute next runtime */
501 tw->next_run_time = (now + tw->timer_interval);
Dave Barach8e8f98c2017-02-03 11:58:53 -0500502
Dave Barach4af9ba12017-06-07 15:18:23 -0400503 if (callback_vector_arg == 0)
504 {
505 _vec_len (tw->expired_timer_handles) = 0;
506 callback_vector = tw->expired_timer_handles;
507 }
508 else
509 callback_vector = callback_vector_arg;
510
Dave Barach8e8f98c2017-02-03 11:58:53 -0500511 for (i = 0; i < nticks; i++)
512 {
513 fast_wheel_index = tw->current_index[TW_TIMER_RING_FAST];
Dave Barach4af9ba12017-06-07 15:18:23 -0400514 if (TW_TIMER_WHEELS > 1)
515 slow_wheel_index = tw->current_index[TW_TIMER_RING_SLOW];
516 if (TW_TIMER_WHEELS > 2)
517 glacier_wheel_index = tw->current_index[TW_TIMER_RING_GLACIER];
Dave Barach8e8f98c2017-02-03 11:58:53 -0500518
Dave Barach4af9ba12017-06-07 15:18:23 -0400519#if TW_OVERFLOW_VECTOR > 0
520 /* Triple odometer-click? Process the overflow vector... */
521 if (PREDICT_FALSE (fast_wheel_index == TW_SLOTS_PER_RING
522 && slow_wheel_index == TW_SLOTS_PER_RING
523 && glacier_wheel_index == TW_SLOTS_PER_RING))
524 {
525 u64 interval;
526 u32 new_glacier_ring_offset, new_slow_ring_offset;
527 u32 new_fast_ring_offset;
528
529 ts = &tw->overflow;
530 head = pool_elt_at_index (tw->timers, ts->head_index);
531 next_index = head->next;
532
533 /* Make slot empty */
534 head->next = head->prev = ts->head_index;
535
536 /* traverse slot, place timers wherever they go */
537 while (next_index != head - tw->timers)
538 {
539 t = pool_elt_at_index (tw->timers, next_index);
540 next_index = t->next;
541
542 /* Remove from the overflow vector (hammer) */
543 t->next = t->prev = ~0;
544
545 ASSERT (t->expiration_time >= tw->current_tick);
546
547 interval = t->expiration_time - tw->current_tick;
548
549 /* Right back onto the overflow vector? */
550 if (interval >= (1 << (3 * TW_RING_SHIFT)))
551 {
552 ts = &tw->overflow;
553 timer_addhead (tw->timers, ts->head_index, t - tw->timers);
554 continue;
555 }
556 /* Compute ring offsets */
557 new_glacier_ring_offset = interval >> (2 * TW_RING_SHIFT);
558
559 interval -= (new_glacier_ring_offset << (2 * TW_RING_SHIFT));
560
561 /* Note: the wheels are at (0,0,0), no add-with-carry needed */
562 new_slow_ring_offset = interval >> TW_RING_SHIFT;
563 interval -= (new_slow_ring_offset << TW_RING_SHIFT);
564 new_fast_ring_offset = interval & TW_RING_MASK;
565 t->slow_ring_offset = new_slow_ring_offset;
566 t->fast_ring_offset = new_fast_ring_offset;
567
568 /* Timer expires Right Now */
569 if (PREDICT_FALSE (t->slow_ring_offset == 0 &&
570 t->fast_ring_offset == 0 &&
571 new_glacier_ring_offset == 0))
572 {
573 vec_add1 (callback_vector, t->user_handle);
Dave Barachb7f1faa2017-08-29 11:43:37 -0400574#if TW_START_STOP_TRACE_SIZE > 0
575 TW (tw_timer_trace) (tw, 0xfe, ~0, t - tw->timers);
576#endif
Dave Barach4af9ba12017-06-07 15:18:23 -0400577 pool_put (tw->timers, t);
578 }
579 /* Timer moves to the glacier ring */
580 else if (new_glacier_ring_offset)
581 {
582 ts = &tw->w[TW_TIMER_RING_GLACIER][new_glacier_ring_offset];
583 timer_addhead (tw->timers, ts->head_index, t - tw->timers);
584 }
585 /* Timer moves to the slow ring */
586 else if (t->slow_ring_offset)
587 {
588 /* Add to slow ring */
589 ts = &tw->w[TW_TIMER_RING_SLOW][t->slow_ring_offset];
590 timer_addhead (tw->timers, ts->head_index, t - tw->timers);
591 }
592 /* Timer timer moves to the fast ring */
593 else
594 {
595 ts = &tw->w[TW_TIMER_RING_FAST][t->fast_ring_offset];
596 timer_addhead (tw->timers, ts->head_index, t - tw->timers);
Dave Barach5c20a012017-06-13 08:48:31 -0400597#if TW_FAST_WHEEL_BITMAP
598 tw->fast_slot_bitmap =
599 clib_bitmap_set (tw->fast_slot_bitmap,
600 t->fast_ring_offset, 1);
601#endif
Dave Barach4af9ba12017-06-07 15:18:23 -0400602 }
603 }
604 }
605#endif
606
607#if TW_TIMER_WHEELS > 2
Dave Barach8e8f98c2017-02-03 11:58:53 -0500608 /*
Dave Barach4af9ba12017-06-07 15:18:23 -0400609 * Double odometer-click? Process one slot in the glacier ring...
610 */
611 if (PREDICT_FALSE (fast_wheel_index == TW_SLOTS_PER_RING
612 && slow_wheel_index == TW_SLOTS_PER_RING))
613 {
614 glacier_wheel_index %= TW_SLOTS_PER_RING;
615 ts = &tw->w[TW_TIMER_RING_GLACIER][glacier_wheel_index];
616
617 head = pool_elt_at_index (tw->timers, ts->head_index);
618 next_index = head->next;
619
620 /* Make slot empty */
621 head->next = head->prev = ts->head_index;
622
623 /* traverse slot, deal timers into slow ring */
624 while (next_index != head - tw->timers)
625 {
626 t = pool_elt_at_index (tw->timers, next_index);
627 next_index = t->next;
628
629 /* Remove from glacier ring slot (hammer) */
630 t->next = t->prev = ~0;
631
632 /* Timer expires Right Now */
633 if (PREDICT_FALSE (t->slow_ring_offset == 0 &&
634 t->fast_ring_offset == 0))
635 {
636 vec_add1 (callback_vector, t->user_handle);
Dave Barachb7f1faa2017-08-29 11:43:37 -0400637#if TW_START_STOP_TRACE_SIZE > 0
638 TW (tw_timer_trace) (tw, 0xfe, ~0, t - tw->timers);
639#endif
Dave Barach4af9ba12017-06-07 15:18:23 -0400640 pool_put (tw->timers, t);
641 }
642 /* Timer expires during slow-wheel tick 0 */
643 else if (PREDICT_FALSE (t->slow_ring_offset == 0))
644 {
645 ts = &tw->w[TW_TIMER_RING_FAST][t->fast_ring_offset];
646 timer_addhead (tw->timers, ts->head_index, t - tw->timers);
Dave Barach5c20a012017-06-13 08:48:31 -0400647#if TW_FAST_WHEEL_BITMAP
648 tw->fast_slot_bitmap =
649 clib_bitmap_set (tw->fast_slot_bitmap,
650 t->fast_ring_offset, 1);
651#endif
Dave Barach4af9ba12017-06-07 15:18:23 -0400652 }
653 else /* typical case */
654 {
655 /* Add to slow ring */
656 ts = &tw->w[TW_TIMER_RING_SLOW][t->slow_ring_offset];
657 timer_addhead (tw->timers, ts->head_index, t - tw->timers);
658 }
659 }
660 }
661#endif
662
663#if TW_TIMER_WHEELS > 1
664 /*
665 * Single odometer-click? Process a slot in the slow ring,
Dave Barach8e8f98c2017-02-03 11:58:53 -0500666 */
667 if (PREDICT_FALSE (fast_wheel_index == TW_SLOTS_PER_RING))
668 {
Dave Barach4af9ba12017-06-07 15:18:23 -0400669 slow_wheel_index %= TW_SLOTS_PER_RING;
Dave Barach8e8f98c2017-02-03 11:58:53 -0500670 ts = &tw->w[TW_TIMER_RING_SLOW][slow_wheel_index];
671
672 head = pool_elt_at_index (tw->timers, ts->head_index);
673 next_index = head->next;
674
675 /* Make slot empty */
676 head->next = head->prev = ts->head_index;
677
678 /* traverse slot, deal timers into fast ring */
679 while (next_index != head - tw->timers)
680 {
681 t = pool_elt_at_index (tw->timers, next_index);
682 next_index = t->next;
683
Dave Barach4af9ba12017-06-07 15:18:23 -0400684 /* Remove from sloe ring slot (hammer) */
Dave Barach8e8f98c2017-02-03 11:58:53 -0500685 t->next = t->prev = ~0;
Dave Barach4af9ba12017-06-07 15:18:23 -0400686
687 /* Timer expires Right Now */
688 if (PREDICT_FALSE (t->fast_ring_offset == 0))
689 {
690 vec_add1 (callback_vector, t->user_handle);
Dave Barachb7f1faa2017-08-29 11:43:37 -0400691#if TW_START_STOP_TRACE_SIZE > 0
692 TW (tw_timer_trace) (tw, 0xfe, ~0, t - tw->timers);
693#endif
Dave Barach4af9ba12017-06-07 15:18:23 -0400694 pool_put (tw->timers, t);
695 }
696 else /* typical case */
697 {
698 /* Add to fast ring */
699 ts = &tw->w[TW_TIMER_RING_FAST][t->fast_ring_offset];
700 timer_addhead (tw->timers, ts->head_index, t - tw->timers);
Dave Barach5c20a012017-06-13 08:48:31 -0400701#if TW_FAST_WHEEL_BITMAP
702 tw->fast_slot_bitmap =
703 clib_bitmap_set (tw->fast_slot_bitmap,
704 t->fast_ring_offset, 1);
705#endif
Dave Barach4af9ba12017-06-07 15:18:23 -0400706 }
Dave Barach8e8f98c2017-02-03 11:58:53 -0500707 }
Dave Barach8e8f98c2017-02-03 11:58:53 -0500708 }
Dave Barach4af9ba12017-06-07 15:18:23 -0400709#endif
Dave Barach8e8f98c2017-02-03 11:58:53 -0500710
711 /* Handle the fast ring */
Dave Barach4af9ba12017-06-07 15:18:23 -0400712 fast_wheel_index %= TW_SLOTS_PER_RING;
Dave Barach8e8f98c2017-02-03 11:58:53 -0500713 ts = &tw->w[TW_TIMER_RING_FAST][fast_wheel_index];
714
715 head = pool_elt_at_index (tw->timers, ts->head_index);
716 next_index = head->next;
717
718 /* Make slot empty */
719 head->next = head->prev = ts->head_index;
720
721 /* Construct vector of expired timer handles to give the user */
722 while (next_index != ts->head_index)
723 {
724 t = pool_elt_at_index (tw->timers, next_index);
725 next_index = t->next;
Dave Barach4af9ba12017-06-07 15:18:23 -0400726 vec_add1 (callback_vector, t->user_handle);
Dave Barachb7f1faa2017-08-29 11:43:37 -0400727#if TW_START_STOP_TRACE_SIZE > 0
728 TW (tw_timer_trace) (tw, 0xfe, ~0, t - tw->timers);
729#endif
Dave Barach8e8f98c2017-02-03 11:58:53 -0500730 pool_put (tw->timers, t);
731 }
732
733 /* If any timers expired, tell the user */
Dave Barach4af9ba12017-06-07 15:18:23 -0400734 if (callback_vector_arg == 0 && vec_len (callback_vector))
Gabriel Ganne581b0722017-02-13 10:27:15 +0100735 {
Dave Barach4af9ba12017-06-07 15:18:23 -0400736 /* The callback is optional. We return the u32 * handle vector */
737 if (tw->expired_timer_callback)
Dave Barachb7f1faa2017-08-29 11:43:37 -0400738 tw->expired_timer_callback (callback_vector);
Dave Barach4af9ba12017-06-07 15:18:23 -0400739 tw->expired_timer_handles = callback_vector;
Gabriel Ganne581b0722017-02-13 10:27:15 +0100740 }
Dave Barach5c20a012017-06-13 08:48:31 -0400741
742#if TW_FAST_WHEEL_BITMAP
743 tw->fast_slot_bitmap = clib_bitmap_set (tw->fast_slot_bitmap,
744 fast_wheel_index, 0);
745#endif
746
Dave Barach8e8f98c2017-02-03 11:58:53 -0500747 tw->current_tick++;
Dave Barach4af9ba12017-06-07 15:18:23 -0400748 fast_wheel_index++;
749 tw->current_index[TW_TIMER_RING_FAST] = fast_wheel_index;
Gabriel Ganne83ed1f42017-02-15 16:55:30 +0100750
Dave Barach4af9ba12017-06-07 15:18:23 -0400751#if TW_TIMER_WHEELS > 1
752 if (PREDICT_FALSE (fast_wheel_index == TW_SLOTS_PER_RING))
753 slow_wheel_index++;
754 tw->current_index[TW_TIMER_RING_SLOW] = slow_wheel_index;
755#endif
756
757#if TW_TIMER_WHEELS > 2
758 if (PREDICT_FALSE (slow_wheel_index == TW_SLOTS_PER_RING))
759 glacier_wheel_index++;
760 tw->current_index[TW_TIMER_RING_GLACIER] = glacier_wheel_index;
761#endif
762
763 if (vec_len (callback_vector) >= tw->max_expirations)
Gabriel Ganne83ed1f42017-02-15 16:55:30 +0100764 break;
Dave Barach8e8f98c2017-02-03 11:58:53 -0500765 }
Gabriel Ganne581b0722017-02-13 10:27:15 +0100766
Dave Barach4af9ba12017-06-07 15:18:23 -0400767 if (callback_vector_arg == 0)
768 tw->expired_timer_handles = callback_vector;
769
Florin Coras954898f2017-02-21 19:26:51 -0800770 tw->last_run_time += i * tw->timer_interval;
Dave Barach4af9ba12017-06-07 15:18:23 -0400771 return callback_vector;
772}
773
774u32 *TW (tw_timer_expire_timers) (TWT (tw_timer_wheel) * tw, f64 now)
775{
776 return TW (tw_timer_expire_timers_internal) (tw, now, 0 /* no vector */ );
777}
778
779u32 *TW (tw_timer_expire_timers_vec) (TWT (tw_timer_wheel) * tw, f64 now,
780 u32 * vec)
781{
782 return TW (tw_timer_expire_timers_internal) (tw, now, vec);
Dave Barach8e8f98c2017-02-03 11:58:53 -0500783}
784
Dave Barach5c20a012017-06-13 08:48:31 -0400785#if TW_FAST_WHEEL_BITMAP
786/** Returns an approximation to the first timer expiration in
787 * timer-ticks from "now". To avoid wasting an unjustifiable
788 * amount of time on the problem, we maintain an approximate fast-wheel slot
789 * occupancy bitmap. We don't worry about clearing fast wheel bits
790 * when timers are removed from fast wheel slots.
791 */
792
793u32 TW (tw_timer_first_expires_in_ticks) (TWT (tw_timer_wheel) * tw)
794{
795 u32 first_expiring_index, fast_ring_index;
796 i32 delta;
797
798 if (clib_bitmap_is_zero (tw->fast_slot_bitmap))
799 return TW_SLOTS_PER_RING;
800
801 fast_ring_index = tw->current_index[TW_TIMER_RING_FAST];
802 if (fast_ring_index == TW_SLOTS_PER_RING)
803 fast_ring_index = 0;
804
805 first_expiring_index = clib_bitmap_next_set (tw->fast_slot_bitmap,
806 fast_ring_index);
807 if (first_expiring_index == ~0 && fast_ring_index != 0)
808 first_expiring_index = clib_bitmap_first_set (tw->fast_slot_bitmap);
809
810 ASSERT (first_expiring_index != ~0);
811
812 delta = (i32) first_expiring_index - (i32) fast_ring_index;
813 if (delta < 0)
814 delta += TW_SLOTS_PER_RING;
815
816 ASSERT (delta >= 0);
817
818 return (u32) delta;
819}
820
821#endif
822
Dave Barach8e8f98c2017-02-03 11:58:53 -0500823/*
824 * fd.io coding-style-patch-verification: ON
825 *
826 * Local Variables:
827 * eval: (c-set-style "gnu")
828 * End:
829 */