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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
|
/* $OpenBSD: sa.c,v 1.2 1998/11/15 00:44:02 niklas Exp $ */
/*
* Copyright (c) 1998 Niklas Hallqvist. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Ericsson Radio Systems.
* 4. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* This code was written under funding by Ericsson Radio Systems.
*/
#include <sys/types.h>
#include <stdlib.h>
#include <string.h>
#include "cookie.h"
#include "doi.h"
#include "exchange.h"
#include "isakmp.h"
#include "log.h"
#include "message.h"
#include "sa.h"
#include "timer.h"
#include "transport.h"
#include "util.h"
/* Initial number of bits from the cookies used as hash. */
#define INITIAL_BUCKET_BITS 6
/*
* Don't try to use more bits than this as a hash.
* We only XOR 16 bits so going above that means changing the code below
* too.
*/
#define MAX_BUCKET_BITS 16
static void sa_dump (char *, struct sa *);
static LIST_HEAD (sa_list, sa) *sa_tab;
/* Works both as a maximum index and a mask. */
static int bucket_mask;
void
sa_init ()
{
int i;
bucket_mask = (1 << INITIAL_BUCKET_BITS) - 1;
sa_tab = malloc ((bucket_mask + 1) * sizeof (struct sa_list));
if (!sa_tab)
log_fatal ("init_sa: out of memory");
for (i = 0; i <= bucket_mask; i++)
{
LIST_INIT (&sa_tab[i]);
}
}
/* XXX Ww don't yet resize. */
void
sa_resize ()
{
int new_mask = (bucket_mask + 1) * 2 - 1;
int i;
struct sa_list *new_tab;
new_tab = realloc (sa_tab, (new_mask + 1) * sizeof (struct sa_list));
if (!new_tab)
return;
sa_tab = new_tab;
for (i = bucket_mask + 1; i <= new_mask; i++)
{
LIST_INIT (&sa_tab[i]);
}
bucket_mask = new_mask;
/* XXX Rehash existing entries. */
}
/* Lookup an ISAKMP SA out of just the initiator cookie. */
struct sa *
sa_lookup_from_icookie (u_int8_t *cookie)
{
int i;
struct sa *sa;
for (i = 0; i < bucket_mask; i++)
for (sa = LIST_FIRST (&sa_tab[i]); sa; sa = LIST_NEXT (sa, link))
if (memcmp (sa->cookies, cookie, ISAKMP_HDR_ICOOKIE_LEN) == 0
&& sa->phase == 1)
return sa;
return 0;
}
int
sa_enter (struct sa *sa)
{
u_int16_t bucket = 0;
int i;
u_int8_t *cp;
/* XXX We might resize if we are crossing a certain threshold */
for (i = 0; i < ISAKMP_HDR_COOKIES_LEN; i += 2)
{
cp = sa->cookies + i;
/* Doing it this way avoids alignment problems. */
bucket ^= cp[0] | cp[1] << 8;
}
for (i = 0; i < ISAKMP_HDR_MESSAGE_ID_LEN; i += 2)
{
cp = sa->message_id + i;
/* Doing it this way avoids alignment problems. */
bucket ^= cp[0] | cp[1] << 8;
}
bucket &= bucket_mask;
LIST_INSERT_HEAD (&sa_tab[bucket], sa, link);
return 1;
}
/*
* Lookup the SA given by the header fields MSG. PHASE2 is false when
* looking for phase 1 SAa and true otherwise.
*/
struct sa *
sa_lookup_by_header (u_int8_t *msg, int phase2)
{
return sa_lookup (msg + ISAKMP_HDR_COOKIES_OFF,
phase2 ? msg + ISAKMP_HDR_MESSAGE_ID_OFF : 0);
}
/*
* Lookup the SA given by the COOKIES and possibly the MESSAGE_ID unless
* NULL, meaning we are looking for phase 1 SAs.
*/
struct sa *
sa_lookup (u_int8_t *cookies, u_int8_t *message_id)
{
u_int16_t bucket = 0;
int i;
struct sa *sa;
u_int8_t *cp;
/*
* We use the cookies to get bits to use as an index into sa_tab, as at
* least one (our cookie) is a good hash, xoring all the bits, 16 at a
* time, and then masking, should do. Doing it this way means we can
* validate cookies very fast thus delimiting the effects of "Denial of
* service"-attacks using packet flooding.
*/
for (i = 0; i < ISAKMP_HDR_COOKIES_LEN; i += 2)
{
cp = cookies + i;
/* Doing it this way avoids alignment problems. */
bucket ^= cp[0] | cp[1] << 8;
}
if (message_id)
for (i = 0; i < ISAKMP_HDR_MESSAGE_ID_LEN; i += 2)
{
cp = message_id + i;
/* Doing it this way avoids alignment problems. */
bucket ^= cp[0] | cp[1] << 8;
}
bucket &= bucket_mask;
for (sa = LIST_FIRST (&sa_tab[bucket]);
sa && (memcmp (cookies, sa->cookies, ISAKMP_HDR_COOKIES_LEN) != 0
|| (message_id && memcmp (message_id, sa->message_id,
ISAKMP_HDR_MESSAGE_ID_LEN)
!= 0));
sa = LIST_NEXT (sa, link))
;
return sa;
}
/* Create a SA. */
int
sa_create (struct exchange *exchange, struct transport *t)
{
struct sa *sa;
/*
* We want the SA zeroed for sa_free to be able to find out what fields
* have been filled-in.
*/
sa = calloc (1, sizeof *sa);
if (!sa)
return -1;
sa->transport = t;
sa->phase = exchange->phase;
memcpy (sa->cookies, exchange->cookies, ISAKMP_HDR_COOKIES_LEN);
memcpy (sa->message_id, exchange->message_id, ISAKMP_HDR_MESSAGE_ID_LEN);
sa->doi = exchange->doi;
/* Allocate the DOI-specific structure and initialize it to zeroes. */
sa->data = calloc (1, sa->doi->sa_size);
if (!sa->data)
{
free (sa);
return 0;
}
TAILQ_INIT (&sa->protos);
sa_enter (sa);
TAILQ_INSERT_TAIL (&exchange->sa_list, sa, next);
return 0;
}
static void
sa_dump (char *header, struct sa *sa)
{
struct proto *proto;
char spi_header[80];
int i;
log_debug (LOG_MISC, 10, "%s: phase %d doi %d msgid %08x flags 0x%x",
header, sa->phase, sa->doi->id, decode_32 (sa->message_id),
sa->flags);
log_debug (LOG_MISC, 10,
"%s: icookie %08x%08x rcookie %08x%08x", header,
decode_32 (sa->cookies), decode_32 (sa->cookies + 4),
decode_32 (sa->cookies + 8), decode_32 (sa->cookies + 12));
for (proto = TAILQ_FIRST (&sa->protos); proto;
proto = TAILQ_NEXT (proto, link))
{
log_debug (LOG_MISC, 10,
"%s: suite %d proto %d "
"spi_sz[0] %d spi[0] %p spi_sz[1] %d spi[1] %p",
header, proto->no, proto->proto, proto->spi_sz[0],
proto->spi[0], proto->spi_sz[1], proto->spi[1]);
for (i = 0; i < 2; i++)
if (proto->spi[i])
{
snprintf (spi_header, 80, "%s: spi[%d]", header, i);
log_debug_buf (LOG_MISC, 10, spi_header, proto->spi[i],
proto->spi_sz[i]);
}
}
}
void
sa_report (void)
{
int i;
struct sa *sa;
for (i = 0; i < bucket_mask; i++)
for (sa = LIST_FIRST (&sa_tab[i]); sa; sa = LIST_NEXT (sa, link))
sa_dump ("sa_report", sa);
}
void
proto_free (struct proto *proto)
{
int i;
struct sa *sa = proto->sa;
for (i = 0; i < 2; i++)
if (proto->spi[i])
{
if (sa->doi->delete_spi)
sa->doi->delete_spi (sa, proto, i);
free (proto->spi[i]);
}
TAILQ_REMOVE (&sa->protos, proto, link);
if (proto->data)
{
if (sa->doi && sa->doi->free_proto_data)
sa->doi->free_proto_data (proto->data);
free (proto->data);
}
free (proto);
}
/* Release all resources this SA is using. */
void
sa_free (struct sa *sa)
{
if (sa->death)
timer_remove_event (sa->death);
sa_free_aux (sa);
}
/* Release all resources this SA is using except the death timer. */
void
sa_free_aux (struct sa *sa)
{
struct proto *proto;
if (sa->data)
{
if (sa->doi && sa->doi->free_sa_data)
sa->doi->free_sa_data (sa->data);
free (sa->data);
}
if (sa->last_sent_in_setup)
message_free (sa->last_sent_in_setup);
while ((proto = TAILQ_FIRST (&sa->protos)) != 0)
proto_free (proto);
LIST_REMOVE (sa, link);
free (sa);
}
/*
* Rehash the ISAKMP SA this MSG is negotiating with the responder cookie
* filled in.
*/
void
sa_isakmp_upgrade (struct message *msg)
{
struct sa *sa = TAILQ_FIRST (&msg->exchange->sa_list);
LIST_REMOVE (sa, link);
GET_ISAKMP_HDR_RCOOKIE (msg->iov[0].iov_base,
sa->cookies + ISAKMP_HDR_ICOOKIE_LEN);
/*
* We don't install a transport in the initiator case as we don't know
* what local address will be chosen. Do it now instead.
*/
sa->transport = msg->transport;
sa_enter (sa);
}
/*
* Register the chosen transform into the SA. As a side effect set PROTOP
* to point at the corresponding proto structure.
*/
int
sa_add_transform (struct sa *sa, struct payload *xf, int initiator,
struct proto **protop)
{
struct proto *proto;
struct payload *prop = xf->context;
*protop = 0;
if (!initiator)
proto = calloc (1, sizeof *proto);
else
/* Find the protection suite that were chosen. */
for (proto = TAILQ_FIRST (&sa->protos);
proto && proto->no != GET_ISAKMP_PROP_NO (prop->p);
proto = TAILQ_NEXT (proto, link))
;
if (!proto)
return -1;
*protop = proto;
/* Allocate DOI-specific part. */
if (!initiator)
{
proto->data = calloc (1, sa->doi->proto_size);
if (!proto->data)
goto cleanup;
}
proto->no = GET_ISAKMP_PROP_NO (prop->p);
proto->proto = GET_ISAKMP_PROP_PROTO (prop->p);
proto->spi_sz[!initiator] = GET_ISAKMP_PROP_SPI_SZ (prop->p);
if (proto->spi_sz[!initiator])
{
proto->spi[!initiator] = malloc (proto->spi_sz[!initiator]);
if (!proto->spi[!initiator])
goto cleanup;
memcpy (proto->spi[!initiator], prop->p + ISAKMP_PROP_SPI_OFF,
proto->spi_sz[!initiator]);
}
proto->chosen = xf;
proto->sa = sa;
proto->id = GET_ISAKMP_TRANSFORM_ID (xf->p);
if (!initiator)
TAILQ_INSERT_TAIL (&sa->protos, proto, link);
return 0;
cleanup:
if (!initiator)
{
if (proto->data)
free (proto->data);
free (proto);
}
*protop = 0;
return -1;
}
/* Lookup an ISAKMP SA given its peer address. */
struct sa *
sa_isakmp_lookup_by_peer (struct sockaddr *addr, size_t addr_len)
{
int i;
struct sa *sa;
struct sockaddr *taddr;
int taddr_len;
for (i = 0; i < bucket_mask; i++)
for (sa = LIST_FIRST (&sa_tab[i]); sa; sa = LIST_NEXT (sa, link))
/*
* XXX We check the transport because it can be NULL until we fix
* the initiator case to set the transport always.
*/
if (sa->phase == 1 && sa->transport)
{
sa->transport->vtbl->get_dst (sa->transport, &taddr, &taddr_len);
if (taddr_len == addr_len && memcmp (taddr, addr, addr_len) == 0)
return sa;
}
return 0;
}
/* Delete an SA. Tell the peer if NOTIFY is set. */
void
sa_delete (struct sa *sa, int notify)
{
/* XXX we do not send DELETE payloads just yet. */
sa_free (sa);
}
/*
* Establish a new ISAKMP SA.
* XXX Whatif the peer initiated another SA negotiation?
*/
void
sa_rekey_p1 (struct sa *sa)
{
/* XXX Fill in the args argument. */
exchange_establish_p1 (sa->transport, sa->exch_type, sa->doi->id, 0);
/* XXX I want this sa_delete deferred until the new SA is ready. */
sa_delete (sa, 1);
}
|