forked from eclipse/tinydtls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
netq.c
176 lines (140 loc) · 3.33 KB
/
netq.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/*******************************************************************************
*
* Copyright (c) 2011, 2012, 2013, 2014, 2015 Olaf Bergmann (TZI) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Eclipse Distribution License v. 1.0 which accompanies this distribution.
*
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Olaf Bergmann - initial API and implementation
* Hauke Mehrtens - memory optimization, ECC integration
*
*******************************************************************************/
#include "dtls_debug.h"
#include "netq.h"
#include "utlist.h"
#ifdef HAVE_ASSERT_H
#include <assert.h>
#else
#ifndef assert
#warning "assertions are disabled"
# define assert(x)
#endif
#endif
#ifdef WITH_ZEPHYR
LOG_MODULE_DECLARE(TINYDTLS, CONFIG_TINYDTLS_LOG_LEVEL);
#endif /* WITH_ZEPHYR */
#if !(defined (WITH_CONTIKI)) && !(defined (RIOT_VERSION))
#include <stdlib.h>
static inline netq_t *
netq_malloc_node(size_t size) {
return (netq_t *)malloc(sizeof(netq_t) + size);
}
static inline void
netq_free_node(netq_t *node) {
free(node);
}
#elif defined (WITH_CONTIKI) /* WITH_CONTIKI */
#include "memb.h"
MEMB(netq_storage, netq_t, NETQ_MAXCNT);
static inline netq_t *
netq_malloc_node(size_t size) {
return (netq_t *)memb_alloc(&netq_storage);
}
static inline void
netq_free_node(netq_t *node) {
memb_free(&netq_storage, node);
}
void
netq_init() {
memb_init(&netq_storage);
}
#elif defined (RIOT_VERSION)
# include <memarray.h>
netq_t netq_storage_data[NETQ_MAXCNT];
memarray_t netq_storage;
static inline netq_t *
netq_malloc_node(size_t size) {
(void) size;
return (netq_t *)memarray_alloc(&netq_storage);
}
static inline void
netq_free_node(netq_t *node) {
memarray_free(&netq_storage, node);
}
void
netq_init(void) {
memarray_init(&netq_storage, netq_storage_data, sizeof(netq_t), NETQ_MAXCNT);
}
#endif /* WITH_CONTIKI */
int
netq_insert_node(netq_t **queue, netq_t *node) {
netq_t *p;
assert(queue);
assert(node);
p = *queue;
/* comparison considering 32bit overflow */
while(p && DTLS_IS_BEFORE_TIME(p->t, node->t)) {
assert(p != node);
if (p == node)
return 0;
p = p->next;
}
if (p)
LL_PREPEND_ELEM(*queue, p, node);
else
LL_APPEND(*queue, node);
return 1;
}
netq_t *
netq_head(netq_t **queue) {
return queue ? *queue : NULL;
}
netq_t *
netq_next(netq_t *p) {
if (!p)
return NULL;
return p->next;
}
void
netq_remove(netq_t **queue, netq_t *p) {
if (!queue || !p)
return;
LL_DELETE(*queue, p);
}
netq_t *netq_pop_first(netq_t **queue) {
netq_t *p = netq_head(queue);
if (p)
LL_DELETE(*queue, p);
return p;
}
netq_t *
netq_node_new(size_t size) {
netq_t *node;
node = netq_malloc_node(size);
if (node) {
memset(node, 0, sizeof(netq_t));
} else {
dtls_warn("netq_node_new: malloc\n");
}
return node;
}
void
netq_node_free(netq_t *node) {
if (node)
netq_free_node(node);
}
void
netq_delete_all(netq_t **queue) {
netq_t *p, *tmp;
if (queue) {
LL_FOREACH_SAFE(*queue,p,tmp) {
netq_free_node(p);
}
*queue = NULL;
}
}