1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2014 Intel Corporation
11 #include <sys/timerfd.h>
13 #include <rte_memory.h>
14 #include <rte_interrupts.h>
15 #include <rte_alarm.h>
16 #include <rte_common.h>
17 #include <rte_per_lcore.h>
19 #include <rte_launch.h>
20 #include <rte_lcore.h>
21 #include <rte_errno.h>
22 #include <rte_malloc.h>
23 #include <rte_spinlock.h>
24 #include <eal_private.h>
28 #define TFD_NONBLOCK O_NONBLOCK
31 #define NS_PER_US 1000
32 #define US_PER_MS 1000
34 #define US_PER_S (US_PER_MS * MS_PER_S)
36 #ifdef CLOCK_MONOTONIC_RAW /* Defined in glibc bits/time.h */
37 #define CLOCK_TYPE_ID CLOCK_MONOTONIC_RAW
39 #define CLOCK_TYPE_ID CLOCK_MONOTONIC
43 LIST_ENTRY(alarm_entry) next;
45 rte_eal_alarm_callback cb_fn;
47 volatile uint8_t executing;
48 volatile pthread_t executing_id;
51 static LIST_HEAD(alarm_list, alarm_entry) alarm_list = LIST_HEAD_INITIALIZER();
52 static rte_spinlock_t alarm_list_lk = RTE_SPINLOCK_INITIALIZER;
54 static struct rte_intr_handle intr_handle = {.fd = -1 };
55 static int handler_registered = 0;
56 static void eal_alarm_callback(void *arg);
59 rte_eal_alarm_init(void)
61 intr_handle.type = RTE_INTR_HANDLE_ALARM;
62 /* create a timerfd file descriptor */
63 intr_handle.fd = timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK);
64 if (intr_handle.fd == -1)
75 eal_alarm_callback(void *arg __rte_unused)
78 struct alarm_entry *ap;
80 rte_spinlock_lock(&alarm_list_lk);
81 while ((ap = LIST_FIRST(&alarm_list)) !=NULL &&
82 clock_gettime(CLOCK_TYPE_ID, &now) == 0 &&
83 (ap->time.tv_sec < now.tv_sec || (ap->time.tv_sec == now.tv_sec &&
84 (ap->time.tv_usec * NS_PER_US) <= now.tv_nsec))) {
86 ap->executing_id = pthread_self();
87 rte_spinlock_unlock(&alarm_list_lk);
89 ap->cb_fn(ap->cb_arg);
91 rte_spinlock_lock(&alarm_list_lk);
93 LIST_REMOVE(ap, next);
97 if (!LIST_EMPTY(&alarm_list)) {
98 struct itimerspec atime = { .it_interval = { 0, 0 } };
100 ap = LIST_FIRST(&alarm_list);
101 atime.it_value.tv_sec = ap->time.tv_sec;
102 atime.it_value.tv_nsec = ap->time.tv_usec * NS_PER_US;
103 /* perform borrow for subtraction if necessary */
104 if (now.tv_nsec > (ap->time.tv_usec * NS_PER_US))
105 atime.it_value.tv_sec--, atime.it_value.tv_nsec += US_PER_S * NS_PER_US;
107 atime.it_value.tv_sec -= now.tv_sec;
108 atime.it_value.tv_nsec -= now.tv_nsec;
109 timerfd_settime(intr_handle.fd, 0, &atime, NULL);
111 rte_spinlock_unlock(&alarm_list_lk);
115 rte_eal_alarm_set(uint64_t us, rte_eal_alarm_callback cb_fn, void *cb_arg)
119 struct alarm_entry *ap, *new_alarm;
121 /* Check parameters, including that us won't cause a uint64_t overflow */
122 if (us < 1 || us > (UINT64_MAX - US_PER_S) || cb_fn == NULL)
125 new_alarm = rte_zmalloc(NULL, sizeof(*new_alarm), 0);
126 if (new_alarm == NULL)
129 /* use current time to calculate absolute time of alarm */
130 clock_gettime(CLOCK_TYPE_ID, &now);
132 new_alarm->cb_fn = cb_fn;
133 new_alarm->cb_arg = cb_arg;
134 new_alarm->time.tv_usec = ((now.tv_nsec / NS_PER_US) + us) % US_PER_S;
135 new_alarm->time.tv_sec = now.tv_sec + (((now.tv_nsec / NS_PER_US) + us) / US_PER_S);
137 rte_spinlock_lock(&alarm_list_lk);
138 if (!handler_registered) {
139 ret |= rte_intr_callback_register(&intr_handle,
140 eal_alarm_callback, NULL);
141 handler_registered = (ret == 0) ? 1 : 0;
144 if (LIST_EMPTY(&alarm_list))
145 LIST_INSERT_HEAD(&alarm_list, new_alarm, next);
147 LIST_FOREACH(ap, &alarm_list, next) {
148 if (ap->time.tv_sec > new_alarm->time.tv_sec ||
149 (ap->time.tv_sec == new_alarm->time.tv_sec &&
150 ap->time.tv_usec > new_alarm->time.tv_usec)){
151 LIST_INSERT_BEFORE(ap, new_alarm, next);
154 if (LIST_NEXT(ap, next) == NULL) {
155 LIST_INSERT_AFTER(ap, new_alarm, next);
161 if (LIST_FIRST(&alarm_list) == new_alarm) {
162 struct itimerspec alarm_time = {
163 .it_interval = {0, 0},
165 .tv_sec = us / US_PER_S,
166 .tv_nsec = (us % US_PER_S) * NS_PER_US,
169 ret |= timerfd_settime(intr_handle.fd, 0, &alarm_time, NULL);
171 rte_spinlock_unlock(&alarm_list_lk);
177 rte_eal_alarm_cancel(rte_eal_alarm_callback cb_fn, void *cb_arg)
179 struct alarm_entry *ap, *ap_prev;
191 rte_spinlock_lock(&alarm_list_lk);
192 /* remove any matches at the start of the list */
193 while ((ap = LIST_FIRST(&alarm_list)) != NULL &&
194 cb_fn == ap->cb_fn &&
195 (cb_arg == (void *)-1 || cb_arg == ap->cb_arg)) {
197 if (ap->executing == 0) {
198 LIST_REMOVE(ap, next);
202 /* If calling from other context, mark that alarm is executing
203 * so loop can spin till it finish. Otherwise we are trying to
204 * cancel our self - mark it by EINPROGRESS */
205 if (pthread_equal(ap->executing_id, pthread_self()) == 0)
215 /* now go through list, removing entries not at start */
216 LIST_FOREACH(ap, &alarm_list, next) {
217 /* this won't be true first time through */
218 if (cb_fn == ap->cb_fn &&
219 (cb_arg == (void *)-1 || cb_arg == ap->cb_arg)) {
221 if (ap->executing == 0) {
222 LIST_REMOVE(ap, next);
226 } else if (pthread_equal(ap->executing_id, pthread_self()) == 0)
233 rte_spinlock_unlock(&alarm_list_lk);
234 } while (executing != 0);
236 if (count == 0 && err == 0)