tailq: remove unneeded inclusions
[dpdk.git] / lib / librte_eal / linuxapp / eal / eal_alarm.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33 #include <stdio.h>
34 #include <stdint.h>
35 #include <signal.h>
36 #include <errno.h>
37 #include <string.h>
38 #include <sys/queue.h>
39 #include <sys/time.h>
40 #include <sys/timerfd.h>
41
42 #include <rte_memory.h>
43 #include <rte_memzone.h>
44 #include <rte_interrupts.h>
45 #include <rte_alarm.h>
46 #include <rte_common.h>
47 #include <rte_per_lcore.h>
48 #include <rte_eal.h>
49 #include <rte_launch.h>
50 #include <rte_lcore.h>
51 #include <rte_errno.h>
52 #include <rte_malloc.h>
53 #include <rte_spinlock.h>
54 #include <eal_private.h>
55
56 #ifndef TFD_NONBLOCK
57 #include <fcntl.h>
58 #define TFD_NONBLOCK    O_NONBLOCK
59 #endif
60
61 #define NS_PER_US 1000
62 #define US_PER_MS 1000
63 #define MS_PER_S 1000
64 #define US_PER_S (US_PER_MS * MS_PER_S)
65
66 struct alarm_entry {
67         LIST_ENTRY(alarm_entry) next;
68         struct timeval time;
69         rte_eal_alarm_callback cb_fn;
70         void *cb_arg;
71         volatile uint8_t executing;
72         volatile pthread_t executing_id;
73 };
74
75 static LIST_HEAD(alarm_list, alarm_entry) alarm_list = LIST_HEAD_INITIALIZER();
76 static rte_spinlock_t alarm_list_lk = RTE_SPINLOCK_INITIALIZER;
77
78 static struct rte_intr_handle intr_handle = {.fd = -1 };
79 static int handler_registered = 0;
80 static void eal_alarm_callback(struct rte_intr_handle *hdl, void *arg);
81
82 int
83 rte_eal_alarm_init(void)
84 {
85         intr_handle.type = RTE_INTR_HANDLE_ALARM;
86         /* create a timerfd file descriptor */
87         intr_handle.fd = timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK);
88         if (intr_handle.fd == -1)
89                 goto error;
90
91         return 0;
92
93 error:
94         rte_errno = errno;
95         return -1;
96 }
97
98 static void
99 eal_alarm_callback(struct rte_intr_handle *hdl __rte_unused,
100                 void *arg __rte_unused)
101 {
102         struct timeval now;
103         struct alarm_entry *ap;
104
105         rte_spinlock_lock(&alarm_list_lk);
106         while ((ap = LIST_FIRST(&alarm_list)) !=NULL &&
107                         gettimeofday(&now, NULL) == 0 &&
108                         (ap->time.tv_sec < now.tv_sec || (ap->time.tv_sec == now.tv_sec &&
109                                                 ap->time.tv_usec <= now.tv_usec))){
110                 ap->executing = 1;
111                 ap->executing_id = pthread_self();
112                 rte_spinlock_unlock(&alarm_list_lk);
113
114                 ap->cb_fn(ap->cb_arg);
115
116                 rte_spinlock_lock(&alarm_list_lk);
117
118                 LIST_REMOVE(ap, next);
119                 rte_free(ap);
120         }
121
122         if (!LIST_EMPTY(&alarm_list)) {
123                 struct itimerspec atime = { .it_interval = { 0, 0 } };
124
125                 ap = LIST_FIRST(&alarm_list);
126                 atime.it_value.tv_sec = ap->time.tv_sec;
127                 atime.it_value.tv_nsec = ap->time.tv_usec * NS_PER_US;
128                 /* perform borrow for subtraction if necessary */
129                 if (now.tv_usec > ap->time.tv_usec)
130                         atime.it_value.tv_sec--, atime.it_value.tv_nsec += US_PER_S * NS_PER_US;
131
132                 atime.it_value.tv_sec -= now.tv_sec;
133                 atime.it_value.tv_nsec -= now.tv_usec * NS_PER_US;
134                 timerfd_settime(intr_handle.fd, 0, &atime, NULL);
135         }
136         rte_spinlock_unlock(&alarm_list_lk);
137 }
138
139 int
140 rte_eal_alarm_set(uint64_t us, rte_eal_alarm_callback cb_fn, void *cb_arg)
141 {
142         struct timeval now;
143         int ret = 0;
144         struct alarm_entry *ap, *new_alarm;
145
146         /* Check parameters, including that us won't cause a uint64_t overflow */
147         if (us < 1 || us > (UINT64_MAX - US_PER_S) || cb_fn == NULL)
148                 return -EINVAL;
149
150         new_alarm = rte_zmalloc(NULL, sizeof(*new_alarm), 0);
151         if (new_alarm == NULL)
152                 return -ENOMEM;
153
154         /* use current time to calculate absolute time of alarm */
155         gettimeofday(&now, NULL);
156
157         new_alarm->cb_fn = cb_fn;
158         new_alarm->cb_arg = cb_arg;
159         new_alarm->time.tv_usec = (now.tv_usec + us) % US_PER_S;
160         new_alarm->time.tv_sec = now.tv_sec + ((now.tv_usec + us) / US_PER_S);
161
162         rte_spinlock_lock(&alarm_list_lk);
163         if (!handler_registered) {
164                 ret |= rte_intr_callback_register(&intr_handle,
165                                 eal_alarm_callback, NULL);
166                 handler_registered = (ret == 0) ? 1 : 0;
167         }
168
169         if (LIST_EMPTY(&alarm_list))
170                 LIST_INSERT_HEAD(&alarm_list, new_alarm, next);
171         else {
172                 LIST_FOREACH(ap, &alarm_list, next) {
173                         if (ap->time.tv_sec > new_alarm->time.tv_sec ||
174                                         (ap->time.tv_sec == new_alarm->time.tv_sec &&
175                                                         ap->time.tv_usec > new_alarm->time.tv_usec)){
176                                 LIST_INSERT_BEFORE(ap, new_alarm, next);
177                                 break;
178                         }
179                         if (LIST_NEXT(ap, next) == NULL) {
180                                 LIST_INSERT_AFTER(ap, new_alarm, next);
181                                 break;
182                         }
183                 }
184         }
185
186         if (LIST_FIRST(&alarm_list) == new_alarm) {
187                 struct itimerspec alarm_time = {
188                         .it_interval = {0, 0},
189                         .it_value = {
190                                 .tv_sec = us / US_PER_S,
191                                 .tv_nsec = (us % US_PER_S) * NS_PER_US,
192                         },
193                 };
194                 ret |= timerfd_settime(intr_handle.fd, 0, &alarm_time, NULL);
195         }
196         rte_spinlock_unlock(&alarm_list_lk);
197
198         return ret;
199 }
200
201 int
202 rte_eal_alarm_cancel(rte_eal_alarm_callback cb_fn, void *cb_arg)
203 {
204         struct alarm_entry *ap, *ap_prev;
205         int count = 0;
206         int err = 0;
207         int executing;
208
209         if (!cb_fn) {
210                 rte_errno = EINVAL;
211                 return -1;
212         }
213
214         do {
215                 executing = 0;
216                 rte_spinlock_lock(&alarm_list_lk);
217                 /* remove any matches at the start of the list */
218                 while ((ap = LIST_FIRST(&alarm_list)) != NULL &&
219                                 cb_fn == ap->cb_fn &&
220                                 (cb_arg == (void *)-1 || cb_arg == ap->cb_arg)) {
221
222                         if (ap->executing == 0) {
223                                 LIST_REMOVE(ap, next);
224                                 rte_free(ap);
225                                 count++;
226                         } else {
227                                 /* If calling from other context, mark that alarm is executing
228                                  * so loop can spin till it finish. Otherwise we are trying to
229                                  * cancel our self - mark it by EINPROGRESS */
230                                 if (pthread_equal(ap->executing_id, pthread_self()) == 0)
231                                         executing++;
232                                 else
233                                         err = EINPROGRESS;
234
235                                 break;
236                         }
237                 }
238                 ap_prev = ap;
239
240                 /* now go through list, removing entries not at start */
241                 LIST_FOREACH(ap, &alarm_list, next) {
242                         /* this won't be true first time through */
243                         if (cb_fn == ap->cb_fn &&
244                                         (cb_arg == (void *)-1 || cb_arg == ap->cb_arg)) {
245
246                                 if (ap->executing == 0) {
247                                         LIST_REMOVE(ap, next);
248                                         rte_free(ap);
249                                         count++;
250                                         ap = ap_prev;
251                                 } else if (pthread_equal(ap->executing_id, pthread_self()) == 0)
252                                         executing++;
253                                 else
254                                         err = EINPROGRESS;
255                         }
256                         ap_prev = ap;
257                 }
258                 rte_spinlock_unlock(&alarm_list_lk);
259         } while (executing != 0);
260
261         if (count == 0 && err == 0)
262                 rte_errno = ENOENT;
263         else if (err)
264                 rte_errno = err;
265
266         return count;
267 }