remove trailing whitespaces
[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_tailq.h>
49 #include <rte_eal.h>
50 #include <rte_launch.h>
51 #include <rte_lcore.h>
52 #include <rte_errno.h>
53 #include <rte_malloc.h>
54 #include <rte_spinlock.h>
55 #include <eal_private.h>
56
57 #ifndef TFD_NONBLOCK
58 #include <fcntl.h>
59 #define TFD_NONBLOCK    O_NONBLOCK
60 #endif
61
62 #define NS_PER_US 1000
63 #define US_PER_MS 1000
64 #define MS_PER_S 1000
65 #define US_PER_S (US_PER_MS * MS_PER_S)
66
67 struct alarm_entry {
68         LIST_ENTRY(alarm_entry) next;
69         struct timeval time;
70         rte_eal_alarm_callback cb_fn;
71         void *cb_arg;
72         volatile int executing;
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                 rte_spinlock_unlock(&alarm_list_lk);
112
113                 ap->cb_fn(ap->cb_arg);
114
115                 rte_spinlock_lock(&alarm_list_lk);
116                 LIST_REMOVE(ap, next);
117                 rte_free(ap);
118         }
119
120         if (!LIST_EMPTY(&alarm_list)) {
121                 struct itimerspec atime = { .it_interval = { 0, 0 } };
122
123                 ap = LIST_FIRST(&alarm_list);
124                 atime.it_value.tv_sec = ap->time.tv_sec;
125                 atime.it_value.tv_nsec = ap->time.tv_usec * NS_PER_US;
126                 /* perform borrow for subtraction if necessary */
127                 if (now.tv_usec > ap->time.tv_usec)
128                         atime.it_value.tv_sec--, atime.it_value.tv_nsec += US_PER_S * NS_PER_US;
129
130                 atime.it_value.tv_sec -= now.tv_sec;
131                 atime.it_value.tv_nsec -= now.tv_usec * NS_PER_US;
132                 timerfd_settime(intr_handle.fd, 0, &atime, NULL);
133         }
134         rte_spinlock_unlock(&alarm_list_lk);
135 }
136
137 int
138 rte_eal_alarm_set(uint64_t us, rte_eal_alarm_callback cb_fn, void *cb_arg)
139 {
140         struct timeval now;
141         int ret = 0;
142         struct alarm_entry *ap, *new_alarm;
143
144         /* Check parameters, including that us won't cause a uint64_t overflow */
145         if (us < 1 || us > (UINT64_MAX - US_PER_S) || cb_fn == NULL)
146                 return -EINVAL;
147
148         new_alarm = rte_malloc(NULL, sizeof(*new_alarm), 0);
149         if (new_alarm == NULL)
150                 return -ENOMEM;
151
152         /* use current time to calculate absolute time of alarm */
153         gettimeofday(&now, NULL);
154
155         new_alarm->cb_fn = cb_fn;
156         new_alarm->cb_arg = cb_arg;
157         new_alarm->time.tv_usec = (now.tv_usec + us) % US_PER_S;
158         new_alarm->time.tv_sec = now.tv_sec + ((now.tv_usec + us) / US_PER_S);
159         new_alarm->executing = 0;
160
161         rte_spinlock_lock(&alarm_list_lk);
162         if (!handler_registered) {
163                 ret |= rte_intr_callback_register(&intr_handle,
164                                 eal_alarm_callback, NULL);
165                 handler_registered = (ret == 0) ? 1 : 0;
166         }
167
168         if (LIST_EMPTY(&alarm_list))
169                 LIST_INSERT_HEAD(&alarm_list, new_alarm, next);
170         else {
171                 LIST_FOREACH(ap, &alarm_list, next) {
172                         if (ap->time.tv_sec > new_alarm->time.tv_sec ||
173                                         (ap->time.tv_sec == new_alarm->time.tv_sec &&
174                                                         ap->time.tv_usec > new_alarm->time.tv_usec)){
175                                 LIST_INSERT_BEFORE(ap, new_alarm, next);
176                                 break;
177                         }
178                         if (LIST_NEXT(ap, next) == NULL) {
179                                 LIST_INSERT_AFTER(ap, new_alarm, next);
180                                 break;
181                         }
182                 }
183         }
184
185         if (LIST_FIRST(&alarm_list) == new_alarm) {
186                 struct itimerspec alarm_time = {
187                         .it_interval = {0, 0},
188                         .it_value = {
189                                 .tv_sec = us / US_PER_S,
190                                 .tv_nsec = (us % US_PER_S) * NS_PER_US,
191                         },
192                 };
193                 ret |= timerfd_settime(intr_handle.fd, 0, &alarm_time, NULL);
194         }
195         rte_spinlock_unlock(&alarm_list_lk);
196
197         return ret;
198 }
199
200 int
201 rte_eal_alarm_cancel(rte_eal_alarm_callback cb_fn, void *cb_arg)
202 {
203         struct alarm_entry *ap, *ap_prev;
204         int count = 0;
205
206         if (!cb_fn)
207                 return -1;
208
209         rte_spinlock_lock(&alarm_list_lk);
210         /* remove any matches at the start of the list */
211         while ((ap = LIST_FIRST(&alarm_list)) != NULL &&
212                         cb_fn == ap->cb_fn && ap->executing == 0 &&
213                         (cb_arg == (void *)-1 || cb_arg == ap->cb_arg)) {
214                 LIST_REMOVE(ap, next);
215                 rte_free(ap);
216                 count++;
217         }
218         ap_prev = ap;
219
220         /* now go through list, removing entries not at start */
221         LIST_FOREACH(ap, &alarm_list, next) {
222                 /* this won't be true first time through */
223                 if (cb_fn == ap->cb_fn &&  ap->executing == 0 &&
224                                 (cb_arg == (void *)-1 || cb_arg == ap->cb_arg)) {
225                         LIST_REMOVE(ap,next);
226                         rte_free(ap);
227                         count++;
228                         ap = ap_prev;
229                 }
230                 ap_prev = ap;
231         }
232         rte_spinlock_unlock(&alarm_list_lk);
233         return count;
234 }
235