blob: fbfa1ec0a19ef898017ff3c24e917dd4cca9923e [file] [log] [blame]
jjako52c24142002-12-16 13:33:51 +00001/*
2 * OpenGGSN - Gateway GPRS Support Node
jjako0fe0df02004-09-17 11:30:40 +00003 * Copyright (C) 2002, 2003, 2004 Mondru AB.
Harald Welteb841e572011-11-02 13:45:50 +01004 * Copyright (C) 2011 Harald Welte <laforge@gnumonks.org>
jjako52c24142002-12-16 13:33:51 +00005 *
6 * The contents of this file may be used under the terms of the GNU
7 * General Public License Version 2, provided that the above copyright
8 * notice and this permission notice is included in all copies or
9 * substantial portions of the software.
10 *
jjako52c24142002-12-16 13:33:51 +000011 */
12
13/*
14 * Queue.c
15 * Reliable delivery of signalling messages
16 */
17
jjako0fe0df02004-09-17 11:30:40 +000018#include <../config.h>
19#ifdef HAVE_STDINT_H
20#include <stdint.h>
21#endif
22
jjako52c24142002-12-16 13:33:51 +000023#include <stdlib.h>
24#include <stdio.h>
25#include <sys/types.h>
26#include <sys/time.h>
27#include <netinet/in.h>
28#include <string.h>
29#include "pdp.h"
30#include "gtp.h"
31#include "queue.h"
32
Harald Welteb841e572011-11-02 13:45:50 +010033/*! \brief dump a queue_t to stdout */
Harald Weltebb47c352011-11-02 13:30:37 +010034static int queue_print(struct queue_t *queue)
Harald Weltebed35df2011-11-02 13:06:18 +010035{
36 int n;
Harald Weltee65c7392011-11-02 13:12:53 +010037 printf("Queue: %p Next: %d First: %d Last: %d\n", queue,
Harald Weltebed35df2011-11-02 13:06:18 +010038 queue->next, queue->first, queue->last);
39 printf("# State seq next prev timeout retrans\n");
40 for (n = 0; n < QUEUE_SIZE; n++) {
41 printf("%d %d %d %d %d %d %d\n",
42 n,
43 queue->qmsga[n].state,
44 queue->qmsga[n].seq,
45 queue->qmsga[n].next,
46 queue->qmsga[n].prev,
47 (int)queue->qmsga[n].timeout, queue->qmsga[n].retrans);
48 }
49 return 0;
jjako52c24142002-12-16 13:33:51 +000050}
51
Harald Welteb841e572011-11-02 13:45:50 +010052/*! \brief compute the hash function */
Harald Weltebb47c352011-11-02 13:30:37 +010053static int queue_seqhash(struct sockaddr_in *peer, uint16_t seq)
Harald Weltebed35df2011-11-02 13:06:18 +010054{
55 /* With QUEUE_HASH_SIZE = 2^16 this describes all possible
56 seq values. Thus we have perfect hash for the request queue.
57 For the response queue we might have collisions, but not very
58 often.
59 For performance optimisation we should remove the modulus
60 operator, but this is only valid for QUEUE_HASH_SIZE = 2^16 */
61 return seq % QUEUE_HASH_SIZE;
jjako52c24142002-12-16 13:33:51 +000062}
63
Harald Welteb841e572011-11-02 13:45:50 +010064/*! \brief Insert a message with given sequence number into the hash
65 *
66 * This function sets the peer and the seq of the qmsg and then inserts
67 * the qmsg into the queue hash. To do so, it does a hashtable lookup
68 * and appends the new entry as the last into the double-linked list of
69 * entries for this sequence number.
70 */
Harald Weltebb47c352011-11-02 13:30:37 +010071static int queue_seqset(struct queue_t *queue, struct qmsg_t *qmsg,
72 struct sockaddr_in *peer, uint16_t seq)
Harald Weltebed35df2011-11-02 13:06:18 +010073{
74 int hash = queue_seqhash(peer, seq);
75 struct qmsg_t *qmsg2;
76 struct qmsg_t *qmsg_prev = NULL;
jjako52c24142002-12-16 13:33:51 +000077
Harald Weltebed35df2011-11-02 13:06:18 +010078 if (QUEUE_DEBUG)
79 printf("Begin queue_seqset seq = %d\n", (int)seq);
80 if (QUEUE_DEBUG)
81 printf("SIZEOF PEER %d, *PEER %d\n", sizeof(peer),
82 sizeof(*peer));
jjako52c24142002-12-16 13:33:51 +000083
Harald Weltebed35df2011-11-02 13:06:18 +010084 qmsg->seq = seq;
85 memcpy(&qmsg->peer, peer, sizeof(*peer));
jjako52c24142002-12-16 13:33:51 +000086
Harald Weltebed35df2011-11-02 13:06:18 +010087 for (qmsg2 = queue->hashseq[hash]; qmsg2; qmsg2 = qmsg2->seqnext)
88 qmsg_prev = qmsg2;
89 if (!qmsg_prev)
90 queue->hashseq[hash] = qmsg;
91 else
92 qmsg_prev->seqnext = qmsg;
93 if (QUEUE_DEBUG)
94 printf("End queue_seqset\n");
95 return 0;
jjako52c24142002-12-16 13:33:51 +000096}
jjako08d331d2003-10-13 20:33:30 +000097
Harald Welteb841e572011-11-02 13:45:50 +010098/*! \brief Remove a given qmsg_t from the queue hash */
Harald Weltebb47c352011-11-02 13:30:37 +010099static int queue_seqdel(struct queue_t *queue, struct qmsg_t *qmsg)
Harald Weltebed35df2011-11-02 13:06:18 +0100100{
101 int hash = queue_seqhash(&qmsg->peer, qmsg->seq);
102 struct qmsg_t *qmsg2;
103 struct qmsg_t *qmsg_prev = NULL;
104 if (QUEUE_DEBUG)
105 printf("Begin queue_seqdel seq = %d\n", (int)qmsg->seq);
jjako08d331d2003-10-13 20:33:30 +0000106
Harald Weltebed35df2011-11-02 13:06:18 +0100107 for (qmsg2 = queue->hashseq[hash]; qmsg2; qmsg2 = qmsg2->seqnext) {
Alexander Couzens86540de2016-05-31 14:42:38 +0200108 if (qmsg == qmsg2) {
Harald Weltebed35df2011-11-02 13:06:18 +0100109 if (!qmsg_prev)
110 queue->hashseq[hash] = qmsg2->seqnext;
111 else
112 qmsg_prev->seqnext = qmsg2->seqnext;
113 if (QUEUE_DEBUG)
Harald Welteef711622011-11-02 18:07:02 +0100114 printf("End queue_seqdel: SEQ found\n");
Harald Weltebed35df2011-11-02 13:06:18 +0100115 return 0;
116 }
117 qmsg_prev = qmsg2;
118 }
Harald Welteef711622011-11-02 18:07:02 +0100119 printf("End queue_seqdel: SEQ not found\n");
Harald Weltebed35df2011-11-02 13:06:18 +0100120 return EOF; /* End of linked list and not found */
jjako52c24142002-12-16 13:33:51 +0000121}
122
Harald Welteb841e572011-11-02 13:45:50 +0100123/*! \brief Allocates and initialises new queue structure */
Harald Weltebed35df2011-11-02 13:06:18 +0100124int queue_new(struct queue_t **queue)
125{
126 if (QUEUE_DEBUG)
127 printf("queue_new\n");
128 *queue = calloc(1, sizeof(struct queue_t));
Neels Hofmeyrf89dc4e2016-04-25 13:00:10 +0200129 if (!(*queue))
130 return EOF;
Harald Weltebed35df2011-11-02 13:06:18 +0100131 (*queue)->next = 0;
132 (*queue)->first = -1;
133 (*queue)->last = -1;
jjako52c24142002-12-16 13:33:51 +0000134
Harald Weltebed35df2011-11-02 13:06:18 +0100135 if (QUEUE_DEBUG)
136 queue_print(*queue);
Neels Hofmeyrf89dc4e2016-04-25 13:00:10 +0200137 return 0;
jjako52c24142002-12-16 13:33:51 +0000138}
139
Harald Welteb841e572011-11-02 13:45:50 +0100140/*! \brief Deallocates queue structure */
Harald Weltebed35df2011-11-02 13:06:18 +0100141int queue_free(struct queue_t *queue)
142{
143 if (QUEUE_DEBUG)
144 printf("queue_free\n");
145 if (QUEUE_DEBUG)
146 queue_print(queue);
147 free(queue);
148 return 0;
jjako52c24142002-12-16 13:33:51 +0000149}
150
Harald Welteb841e572011-11-02 13:45:50 +0100151/*! \brief Add a new message to the queue */
jjako52c24142002-12-16 13:33:51 +0000152int queue_newmsg(struct queue_t *queue, struct qmsg_t **qmsg,
Harald Weltebed35df2011-11-02 13:06:18 +0100153 struct sockaddr_in *peer, uint16_t seq)
154{
155 if (QUEUE_DEBUG)
156 printf("queue_newmsg %d\n", (int)seq);
157 if (queue->qmsga[queue->next].state == 1) {
158 return EOF; /* Queue is full */
159 } else {
160 *qmsg = &queue->qmsga[queue->next];
161 queue_seqset(queue, *qmsg, peer, seq);
162 (*qmsg)->state = 1; /* Space taken */
163 (*qmsg)->this = queue->next;
164 (*qmsg)->next = -1; /* End of the queue */
165 (*qmsg)->prev = queue->last; /* Link to the previous */
166 if (queue->last != -1)
167 queue->qmsga[queue->last].next = queue->next; /* Link previous to us */
168 queue->last = queue->next; /* End of queue */
169 if (queue->first == -1)
170 queue->first = queue->next;
171 queue->next = (queue->next + 1) % QUEUE_SIZE; /* Increment */
172 if (QUEUE_DEBUG)
173 queue_print(queue);
174 return 0;
175 }
jjako52c24142002-12-16 13:33:51 +0000176}
177
Harald Welteb841e572011-11-02 13:45:50 +0100178/*! \brief Simply remoev a given qmsg_t from the queue
179 *
180 * Internally, we first delete the entry from the queue, and then update
181 * up our global queue->first / queue->last pointers. Finally,
182 * the qmsg_t is re-initialized with zero bytes. No memory is released.
183 */
Harald Weltebed35df2011-11-02 13:06:18 +0100184int queue_freemsg(struct queue_t *queue, struct qmsg_t *qmsg)
185{
186 if (QUEUE_DEBUG)
187 printf("queue_freemsg\n");
188 if (qmsg->state != 1) {
189 return EOF; /* Not in queue */
190 }
jjako52c24142002-12-16 13:33:51 +0000191
Harald Weltebed35df2011-11-02 13:06:18 +0100192 queue_seqdel(queue, qmsg);
jjako52c24142002-12-16 13:33:51 +0000193
Harald Weltebed35df2011-11-02 13:06:18 +0100194 if (qmsg->next == -1) /* Are we the last in queue? */
195 queue->last = qmsg->prev;
196 else
197 queue->qmsga[qmsg->next].prev = qmsg->prev;
jjako52c24142002-12-16 13:33:51 +0000198
Harald Weltebed35df2011-11-02 13:06:18 +0100199 if (qmsg->prev == -1) /* Are we the first in queue? */
200 queue->first = qmsg->next;
201 else
202 queue->qmsga[qmsg->prev].next = qmsg->next;
jjako52c24142002-12-16 13:33:51 +0000203
Harald Weltebed35df2011-11-02 13:06:18 +0100204 memset(qmsg, 0, sizeof(struct qmsg_t)); /* Just to be safe */
jjako52c24142002-12-16 13:33:51 +0000205
Harald Weltebed35df2011-11-02 13:06:18 +0100206 if (QUEUE_DEBUG)
207 queue_print(queue);
208
209 return 0;
jjako52c24142002-12-16 13:33:51 +0000210}
211
Harald Welteb841e572011-11-02 13:45:50 +0100212/*! \brief Move a given qmsg_t to the end of the queue ?!? */
Harald Weltebed35df2011-11-02 13:06:18 +0100213int queue_back(struct queue_t *queue, struct qmsg_t *qmsg)
214{
215 if (QUEUE_DEBUG)
216 printf("queue_back\n");
217 if (qmsg->state != 1) {
218 return EOF; /* Not in queue */
219 }
jjako52c24142002-12-16 13:33:51 +0000220
Harald Weltebed35df2011-11-02 13:06:18 +0100221 /* Insert stuff to maintain hash table */
jjako52c24142002-12-16 13:33:51 +0000222
Harald Weltebed35df2011-11-02 13:06:18 +0100223 if (qmsg->next != -1) { /* Only swop if there are others */
224 queue->qmsga[qmsg->next].prev = qmsg->prev;
225 queue->first = qmsg->next;
226
227 qmsg->next = -1;
228 qmsg->prev = queue->last;
229 if (queue->last != -1)
230 queue->qmsga[queue->last].next = qmsg->this;
231 queue->last = qmsg->this;
232 }
233 if (QUEUE_DEBUG)
234 queue_print(queue);
235 return 0;
jjako52c24142002-12-16 13:33:51 +0000236}
237
Harald Welteb841e572011-11-02 13:45:50 +0100238/*! \brief Get the first element in the entire queue */
Harald Weltebed35df2011-11-02 13:06:18 +0100239int queue_getfirst(struct queue_t *queue, struct qmsg_t **qmsg)
240{
241 /*printf("queue_getfirst\n"); */
242 if (queue->first == -1) {
243 *qmsg = NULL;
244 return EOF; /* End of queue = queue is empty. */
245 }
246 *qmsg = &queue->qmsga[queue->first];
247 if (QUEUE_DEBUG)
248 queue_print(queue);
249 return 0;
jjako52c24142002-12-16 13:33:51 +0000250}
251
Harald Welteb841e572011-11-02 13:45:50 +0100252/*! \brief Get a queue entry for a given peer + seq */
jjako52c24142002-12-16 13:33:51 +0000253int queue_seqget(struct queue_t *queue, struct qmsg_t **qmsg,
Harald Weltebed35df2011-11-02 13:06:18 +0100254 struct sockaddr_in *peer, uint16_t seq)
255{
256 int hash = queue_seqhash(peer, seq);
257 struct qmsg_t *qmsg2;
258 if (QUEUE_DEBUG)
259 printf("Begin queue_seqget seq = %d\n", (int)seq);
260 for (qmsg2 = queue->hashseq[hash]; qmsg2; qmsg2 = qmsg2->seqnext) {
261 if ((qmsg2->seq == seq) &&
262 (!memcmp(&qmsg2->peer, peer, sizeof(*peer)))) {
263 *qmsg = qmsg2;
264 if (QUEUE_DEBUG)
265 printf("End queue_seqget. Found\n");
266 return 0;
267 }
268 }
269 if (QUEUE_DEBUG)
270 printf("End queue_seqget. Not found\n");
271 return EOF; /* End of linked list and not found */
jjako52c24142002-12-16 13:33:51 +0000272}
273
Harald Welteb841e572011-11-02 13:45:50 +0100274/*! \brief look-up a given seq/peer, return cbp + type and free entry */
Harald Weltebed35df2011-11-02 13:06:18 +0100275int queue_freemsg_seq(struct queue_t *queue, struct sockaddr_in *peer,
276 uint16_t seq, uint8_t * type, void **cbp)
277{
278 struct qmsg_t *qmsg;
279 if (queue_seqget(queue, &qmsg, peer, seq)) {
280 *cbp = NULL;
281 *type = 0;
282 return EOF;
283 }
284 *cbp = qmsg->cbp;
285 *type = qmsg->type;
286 if (queue_freemsg(queue, qmsg)) {
287 return EOF;
288 }
289 return 0;
jjako52c24142002-12-16 13:33:51 +0000290}