]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/netinet/sctp_auth.c
Fix improper checking in SCTP-AUTH shared key update.
[FreeBSD/FreeBSD.git] / sys / netinet / sctp_auth.c
1 /*-
2  * Copyright (c) 2001-2008, by Cisco Systems, Inc. All rights reserved.
3  * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved.
4  * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are met:
8  *
9  * a) Redistributions of source code must retain the above copyright notice,
10  *    this list of conditions and the following disclaimer.
11  *
12  * b) Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in
14  *    the documentation and/or other materials provided with the distribution.
15  *
16  * c) Neither the name of Cisco Systems, Inc. nor the names of its
17  *    contributors may be used to endorse or promote products derived
18  *    from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30  * THE POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD$");
35
36 #include <netinet/sctp_os.h>
37 #include <netinet/sctp.h>
38 #include <netinet/sctp_header.h>
39 #include <netinet/sctp_pcb.h>
40 #include <netinet/sctp_var.h>
41 #include <netinet/sctp_sysctl.h>
42 #include <netinet/sctputil.h>
43 #include <netinet/sctp_indata.h>
44 #include <netinet/sctp_output.h>
45 #include <netinet/sctp_auth.h>
46
47 #ifdef SCTP_DEBUG
48 #define SCTP_AUTH_DEBUG         (SCTP_BASE_SYSCTL(sctp_debug_on) & SCTP_DEBUG_AUTH1)
49 #define SCTP_AUTH_DEBUG2        (SCTP_BASE_SYSCTL(sctp_debug_on) & SCTP_DEBUG_AUTH2)
50 #endif                          /* SCTP_DEBUG */
51
52
53 void
54 sctp_clear_chunklist(sctp_auth_chklist_t *chklist)
55 {
56         memset(chklist, 0, sizeof(*chklist));
57         /* chklist->num_chunks = 0; */
58 }
59
60 sctp_auth_chklist_t *
61 sctp_alloc_chunklist(void)
62 {
63         sctp_auth_chklist_t *chklist;
64
65         SCTP_MALLOC(chklist, sctp_auth_chklist_t *, sizeof(*chklist),
66             SCTP_M_AUTH_CL);
67         if (chklist == NULL) {
68                 SCTPDBG(SCTP_DEBUG_AUTH1, "sctp_alloc_chunklist: failed to get memory!\n");
69         } else {
70                 sctp_clear_chunklist(chklist);
71         }
72         return (chklist);
73 }
74
75 void
76 sctp_free_chunklist(sctp_auth_chklist_t *list)
77 {
78         if (list != NULL)
79                 SCTP_FREE(list, SCTP_M_AUTH_CL);
80 }
81
82 sctp_auth_chklist_t *
83 sctp_copy_chunklist(sctp_auth_chklist_t *list)
84 {
85         sctp_auth_chklist_t *new_list;
86
87         if (list == NULL)
88                 return (NULL);
89
90         /* get a new list */
91         new_list = sctp_alloc_chunklist();
92         if (new_list == NULL)
93                 return (NULL);
94         /* copy it */
95         memcpy(new_list, list, sizeof(*new_list));
96
97         return (new_list);
98 }
99
100
101 /*
102  * add a chunk to the required chunks list
103  */
104 int
105 sctp_auth_add_chunk(uint8_t chunk, sctp_auth_chklist_t *list)
106 {
107         if (list == NULL)
108                 return (-1);
109
110         /* is chunk restricted? */
111         if ((chunk == SCTP_INITIATION) ||
112             (chunk == SCTP_INITIATION_ACK) ||
113             (chunk == SCTP_SHUTDOWN_COMPLETE) ||
114             (chunk == SCTP_AUTHENTICATION)) {
115                 return (-1);
116         }
117         if (list->chunks[chunk] == 0) {
118                 list->chunks[chunk] = 1;
119                 list->num_chunks++;
120                 SCTPDBG(SCTP_DEBUG_AUTH1,
121                     "SCTP: added chunk %u (0x%02x) to Auth list\n",
122                     chunk, chunk);
123         }
124         return (0);
125 }
126
127 /*
128  * delete a chunk from the required chunks list
129  */
130 int
131 sctp_auth_delete_chunk(uint8_t chunk, sctp_auth_chklist_t *list)
132 {
133         if (list == NULL)
134                 return (-1);
135
136         if (list->chunks[chunk] == 1) {
137                 list->chunks[chunk] = 0;
138                 list->num_chunks--;
139                 SCTPDBG(SCTP_DEBUG_AUTH1,
140                     "SCTP: deleted chunk %u (0x%02x) from Auth list\n",
141                     chunk, chunk);
142         }
143         return (0);
144 }
145
146 size_t
147 sctp_auth_get_chklist_size(const sctp_auth_chklist_t *list)
148 {
149         if (list == NULL)
150                 return (0);
151         else
152                 return (list->num_chunks);
153 }
154
155 /*
156  * return the current number and list of required chunks caller must
157  * guarantee ptr has space for up to 256 bytes
158  */
159 int
160 sctp_serialize_auth_chunks(const sctp_auth_chklist_t *list, uint8_t *ptr)
161 {
162         int i, count = 0;
163
164         if (list == NULL)
165                 return (0);
166
167         for (i = 0; i < 256; i++) {
168                 if (list->chunks[i] != 0) {
169                         *ptr++ = i;
170                         count++;
171                 }
172         }
173         return (count);
174 }
175
176 int
177 sctp_pack_auth_chunks(const sctp_auth_chklist_t *list, uint8_t *ptr)
178 {
179         int i, size = 0;
180
181         if (list == NULL)
182                 return (0);
183
184         if (list->num_chunks <= 32) {
185                 /* just list them, one byte each */
186                 for (i = 0; i < 256; i++) {
187                         if (list->chunks[i] != 0) {
188                                 *ptr++ = i;
189                                 size++;
190                         }
191                 }
192         } else {
193                 int index, offset;
194
195                 /* pack into a 32 byte bitfield */
196                 for (i = 0; i < 256; i++) {
197                         if (list->chunks[i] != 0) {
198                                 index = i / 8;
199                                 offset = i % 8;
200                                 ptr[index] |= (1 << offset);
201                         }
202                 }
203                 size = 32;
204         }
205         return (size);
206 }
207
208 int
209 sctp_unpack_auth_chunks(const uint8_t *ptr, uint8_t num_chunks,
210     sctp_auth_chklist_t *list)
211 {
212         int i;
213         int size;
214
215         if (list == NULL)
216                 return (0);
217
218         if (num_chunks <= 32) {
219                 /* just pull them, one byte each */
220                 for (i = 0; i < num_chunks; i++) {
221                         (void)sctp_auth_add_chunk(*ptr++, list);
222                 }
223                 size = num_chunks;
224         } else {
225                 int index, offset;
226
227                 /* unpack from a 32 byte bitfield */
228                 for (index = 0; index < 32; index++) {
229                         for (offset = 0; offset < 8; offset++) {
230                                 if (ptr[index] & (1 << offset)) {
231                                         (void)sctp_auth_add_chunk((index * 8) + offset, list);
232                                 }
233                         }
234                 }
235                 size = 32;
236         }
237         return (size);
238 }
239
240
241 /*
242  * allocate structure space for a key of length keylen
243  */
244 sctp_key_t *
245 sctp_alloc_key(uint32_t keylen)
246 {
247         sctp_key_t *new_key;
248
249         SCTP_MALLOC(new_key, sctp_key_t *, sizeof(*new_key) + keylen,
250             SCTP_M_AUTH_KY);
251         if (new_key == NULL) {
252                 /* out of memory */
253                 return (NULL);
254         }
255         new_key->keylen = keylen;
256         return (new_key);
257 }
258
259 void
260 sctp_free_key(sctp_key_t *key)
261 {
262         if (key != NULL)
263                 SCTP_FREE(key, SCTP_M_AUTH_KY);
264 }
265
266 void
267 sctp_print_key(sctp_key_t *key, const char *str)
268 {
269         uint32_t i;
270
271         if (key == NULL) {
272                 SCTP_PRINTF("%s: [Null key]\n", str);
273                 return;
274         }
275         SCTP_PRINTF("%s: len %u, ", str, key->keylen);
276         if (key->keylen) {
277                 for (i = 0; i < key->keylen; i++)
278                         SCTP_PRINTF("%02x", key->key[i]);
279                 SCTP_PRINTF("\n");
280         } else {
281                 SCTP_PRINTF("[Null key]\n");
282         }
283 }
284
285 void
286 sctp_show_key(sctp_key_t *key, const char *str)
287 {
288         uint32_t i;
289
290         if (key == NULL) {
291                 SCTP_PRINTF("%s: [Null key]\n", str);
292                 return;
293         }
294         SCTP_PRINTF("%s: len %u, ", str, key->keylen);
295         if (key->keylen) {
296                 for (i = 0; i < key->keylen; i++)
297                         SCTP_PRINTF("%02x", key->key[i]);
298                 SCTP_PRINTF("\n");
299         } else {
300                 SCTP_PRINTF("[Null key]\n");
301         }
302 }
303
304 static uint32_t
305 sctp_get_keylen(sctp_key_t *key)
306 {
307         if (key != NULL)
308                 return (key->keylen);
309         else
310                 return (0);
311 }
312
313 /*
314  * generate a new random key of length 'keylen'
315  */
316 sctp_key_t *
317 sctp_generate_random_key(uint32_t keylen)
318 {
319         sctp_key_t *new_key;
320
321         new_key = sctp_alloc_key(keylen);
322         if (new_key == NULL) {
323                 /* out of memory */
324                 return (NULL);
325         }
326         SCTP_READ_RANDOM(new_key->key, keylen);
327         new_key->keylen = keylen;
328         return (new_key);
329 }
330
331 sctp_key_t *
332 sctp_set_key(uint8_t *key, uint32_t keylen)
333 {
334         sctp_key_t *new_key;
335
336         new_key = sctp_alloc_key(keylen);
337         if (new_key == NULL) {
338                 /* out of memory */
339                 return (NULL);
340         }
341         memcpy(new_key->key, key, keylen);
342         return (new_key);
343 }
344
345 /*-
346  * given two keys of variable size, compute which key is "larger/smaller"
347  * returns:  1 if key1 > key2
348  *          -1 if key1 < key2
349  *           0 if key1 = key2
350  */
351 static int
352 sctp_compare_key(sctp_key_t *key1, sctp_key_t *key2)
353 {
354         uint32_t maxlen;
355         uint32_t i;
356         uint32_t key1len, key2len;
357         uint8_t *key_1, *key_2;
358         uint8_t val1, val2;
359
360         /* sanity/length check */
361         key1len = sctp_get_keylen(key1);
362         key2len = sctp_get_keylen(key2);
363         if ((key1len == 0) && (key2len == 0))
364                 return (0);
365         else if (key1len == 0)
366                 return (-1);
367         else if (key2len == 0)
368                 return (1);
369
370         if (key1len < key2len) {
371                 maxlen = key2len;
372         } else {
373                 maxlen = key1len;
374         }
375         key_1 = key1->key;
376         key_2 = key2->key;
377         /* check for numeric equality */
378         for (i = 0; i < maxlen; i++) {
379                 /* left-pad with zeros */
380                 val1 = (i < (maxlen - key1len)) ? 0 : *(key_1++);
381                 val2 = (i < (maxlen - key2len)) ? 0 : *(key_2++);
382                 if (val1 > val2) {
383                         return (1);
384                 } else if (val1 < val2) {
385                         return (-1);
386                 }
387         }
388         /* keys are equal value, so check lengths */
389         if (key1len == key2len)
390                 return (0);
391         else if (key1len < key2len)
392                 return (-1);
393         else
394                 return (1);
395 }
396
397 /*
398  * generate the concatenated keying material based on the two keys and the
399  * shared key (if available). draft-ietf-tsvwg-auth specifies the specific
400  * order for concatenation
401  */
402 sctp_key_t *
403 sctp_compute_hashkey(sctp_key_t *key1, sctp_key_t *key2, sctp_key_t *shared)
404 {
405         uint32_t keylen;
406         sctp_key_t *new_key;
407         uint8_t *key_ptr;
408
409         keylen = sctp_get_keylen(key1) + sctp_get_keylen(key2) +
410             sctp_get_keylen(shared);
411
412         if (keylen > 0) {
413                 /* get space for the new key */
414                 new_key = sctp_alloc_key(keylen);
415                 if (new_key == NULL) {
416                         /* out of memory */
417                         return (NULL);
418                 }
419                 new_key->keylen = keylen;
420                 key_ptr = new_key->key;
421         } else {
422                 /* all keys empty/null?! */
423                 return (NULL);
424         }
425
426         /* concatenate the keys */
427         if (sctp_compare_key(key1, key2) <= 0) {
428                 /* key is shared + key1 + key2 */
429                 if (sctp_get_keylen(shared)) {
430                         memcpy(key_ptr, shared->key, shared->keylen);
431                         key_ptr += shared->keylen;
432                 }
433                 if (sctp_get_keylen(key1)) {
434                         memcpy(key_ptr, key1->key, key1->keylen);
435                         key_ptr += key1->keylen;
436                 }
437                 if (sctp_get_keylen(key2)) {
438                         memcpy(key_ptr, key2->key, key2->keylen);
439                 }
440         } else {
441                 /* key is shared + key2 + key1 */
442                 if (sctp_get_keylen(shared)) {
443                         memcpy(key_ptr, shared->key, shared->keylen);
444                         key_ptr += shared->keylen;
445                 }
446                 if (sctp_get_keylen(key2)) {
447                         memcpy(key_ptr, key2->key, key2->keylen);
448                         key_ptr += key2->keylen;
449                 }
450                 if (sctp_get_keylen(key1)) {
451                         memcpy(key_ptr, key1->key, key1->keylen);
452                 }
453         }
454         return (new_key);
455 }
456
457
458 sctp_sharedkey_t *
459 sctp_alloc_sharedkey(void)
460 {
461         sctp_sharedkey_t *new_key;
462
463         SCTP_MALLOC(new_key, sctp_sharedkey_t *, sizeof(*new_key),
464             SCTP_M_AUTH_KY);
465         if (new_key == NULL) {
466                 /* out of memory */
467                 return (NULL);
468         }
469         new_key->keyid = 0;
470         new_key->key = NULL;
471         new_key->refcount = 1;
472         new_key->deactivated = 0;
473         return (new_key);
474 }
475
476 void
477 sctp_free_sharedkey(sctp_sharedkey_t *skey)
478 {
479         if (skey == NULL)
480                 return;
481
482         if (SCTP_DECREMENT_AND_CHECK_REFCOUNT(&skey->refcount)) {
483                 if (skey->key != NULL)
484                         sctp_free_key(skey->key);
485                 SCTP_FREE(skey, SCTP_M_AUTH_KY);
486         }
487 }
488
489 sctp_sharedkey_t *
490 sctp_find_sharedkey(struct sctp_keyhead *shared_keys, uint16_t key_id)
491 {
492         sctp_sharedkey_t *skey;
493
494         LIST_FOREACH(skey, shared_keys, next) {
495                 if (skey->keyid == key_id)
496                         return (skey);
497         }
498         return (NULL);
499 }
500
501 int
502 sctp_insert_sharedkey(struct sctp_keyhead *shared_keys,
503     sctp_sharedkey_t *new_skey)
504 {
505         sctp_sharedkey_t *skey;
506
507         if ((shared_keys == NULL) || (new_skey == NULL))
508                 return (EINVAL);
509
510         /* insert into an empty list? */
511         if (LIST_EMPTY(shared_keys)) {
512                 LIST_INSERT_HEAD(shared_keys, new_skey, next);
513                 return (0);
514         }
515         /* insert into the existing list, ordered by key id */
516         LIST_FOREACH(skey, shared_keys, next) {
517                 if (new_skey->keyid < skey->keyid) {
518                         /* insert it before here */
519                         LIST_INSERT_BEFORE(skey, new_skey, next);
520                         return (0);
521                 } else if (new_skey->keyid == skey->keyid) {
522                         /* replace the existing key */
523                         /* verify this key *can* be replaced */
524                         if ((skey->deactivated) || (skey->refcount > 1)) {
525                                 SCTPDBG(SCTP_DEBUG_AUTH1,
526                                     "can't replace shared key id %u\n",
527                                     new_skey->keyid);
528                                 return (EBUSY);
529                         }
530                         SCTPDBG(SCTP_DEBUG_AUTH1,
531                             "replacing shared key id %u\n",
532                             new_skey->keyid);
533                         LIST_INSERT_BEFORE(skey, new_skey, next);
534                         LIST_REMOVE(skey, next);
535                         sctp_free_sharedkey(skey);
536                         return (0);
537                 }
538                 if (LIST_NEXT(skey, next) == NULL) {
539                         /* belongs at the end of the list */
540                         LIST_INSERT_AFTER(skey, new_skey, next);
541                         return (0);
542                 }
543         }
544         /* shouldn't reach here */
545         return (EINVAL);
546 }
547
548 void
549 sctp_auth_key_acquire(struct sctp_tcb *stcb, uint16_t key_id)
550 {
551         sctp_sharedkey_t *skey;
552
553         /* find the shared key */
554         skey = sctp_find_sharedkey(&stcb->asoc.shared_keys, key_id);
555
556         /* bump the ref count */
557         if (skey) {
558                 atomic_add_int(&skey->refcount, 1);
559                 SCTPDBG(SCTP_DEBUG_AUTH2,
560                     "%s: stcb %p key %u refcount acquire to %d\n",
561                     __func__, (void *)stcb, key_id, skey->refcount);
562         }
563 }
564
565 void
566 sctp_auth_key_release(struct sctp_tcb *stcb, uint16_t key_id, int so_locked
567 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
568     SCTP_UNUSED
569 #endif
570 )
571 {
572         sctp_sharedkey_t *skey;
573
574         /* find the shared key */
575         skey = sctp_find_sharedkey(&stcb->asoc.shared_keys, key_id);
576
577         /* decrement the ref count */
578         if (skey) {
579                 SCTPDBG(SCTP_DEBUG_AUTH2,
580                     "%s: stcb %p key %u refcount release to %d\n",
581                     __func__, (void *)stcb, key_id, skey->refcount);
582
583                 /* see if a notification should be generated */
584                 if ((skey->refcount <= 2) && (skey->deactivated)) {
585                         /* notify ULP that key is no longer used */
586                         sctp_ulp_notify(SCTP_NOTIFY_AUTH_FREE_KEY, stcb,
587                             key_id, 0, so_locked);
588                         SCTPDBG(SCTP_DEBUG_AUTH2,
589                             "%s: stcb %p key %u no longer used, %d\n",
590                             __func__, (void *)stcb, key_id, skey->refcount);
591                 }
592                 sctp_free_sharedkey(skey);
593         }
594 }
595
596 static sctp_sharedkey_t *
597 sctp_copy_sharedkey(const sctp_sharedkey_t *skey)
598 {
599         sctp_sharedkey_t *new_skey;
600
601         if (skey == NULL)
602                 return (NULL);
603         new_skey = sctp_alloc_sharedkey();
604         if (new_skey == NULL)
605                 return (NULL);
606         if (skey->key != NULL)
607                 new_skey->key = sctp_set_key(skey->key->key, skey->key->keylen);
608         else
609                 new_skey->key = NULL;
610         new_skey->keyid = skey->keyid;
611         return (new_skey);
612 }
613
614 int
615 sctp_copy_skeylist(const struct sctp_keyhead *src, struct sctp_keyhead *dest)
616 {
617         sctp_sharedkey_t *skey, *new_skey;
618         int count = 0;
619
620         if ((src == NULL) || (dest == NULL))
621                 return (0);
622         LIST_FOREACH(skey, src, next) {
623                 new_skey = sctp_copy_sharedkey(skey);
624                 if (new_skey != NULL) {
625                         if (sctp_insert_sharedkey(dest, new_skey)) {
626                                 sctp_free_sharedkey(new_skey);
627                         } else {
628                                 count++;
629                         }
630                 }
631         }
632         return (count);
633 }
634
635
636 sctp_hmaclist_t *
637 sctp_alloc_hmaclist(uint16_t num_hmacs)
638 {
639         sctp_hmaclist_t *new_list;
640         int alloc_size;
641
642         alloc_size = sizeof(*new_list) + num_hmacs * sizeof(new_list->hmac[0]);
643         SCTP_MALLOC(new_list, sctp_hmaclist_t *, alloc_size,
644             SCTP_M_AUTH_HL);
645         if (new_list == NULL) {
646                 /* out of memory */
647                 return (NULL);
648         }
649         new_list->max_algo = num_hmacs;
650         new_list->num_algo = 0;
651         return (new_list);
652 }
653
654 void
655 sctp_free_hmaclist(sctp_hmaclist_t *list)
656 {
657         if (list != NULL) {
658                 SCTP_FREE(list, SCTP_M_AUTH_HL);
659                 list = NULL;
660         }
661 }
662
663 int
664 sctp_auth_add_hmacid(sctp_hmaclist_t *list, uint16_t hmac_id)
665 {
666         int i;
667
668         if (list == NULL)
669                 return (-1);
670         if (list->num_algo == list->max_algo) {
671                 SCTPDBG(SCTP_DEBUG_AUTH1,
672                     "SCTP: HMAC id list full, ignoring add %u\n", hmac_id);
673                 return (-1);
674         }
675         if ((hmac_id != SCTP_AUTH_HMAC_ID_SHA1) &&
676             (hmac_id != SCTP_AUTH_HMAC_ID_SHA256)) {
677                 return (-1);
678         }
679         /* Now is it already in the list */
680         for (i = 0; i < list->num_algo; i++) {
681                 if (list->hmac[i] == hmac_id) {
682                         /* already in list */
683                         return (-1);
684                 }
685         }
686         SCTPDBG(SCTP_DEBUG_AUTH1, "SCTP: add HMAC id %u to list\n", hmac_id);
687         list->hmac[list->num_algo++] = hmac_id;
688         return (0);
689 }
690
691 sctp_hmaclist_t *
692 sctp_copy_hmaclist(sctp_hmaclist_t *list)
693 {
694         sctp_hmaclist_t *new_list;
695         int i;
696
697         if (list == NULL)
698                 return (NULL);
699         /* get a new list */
700         new_list = sctp_alloc_hmaclist(list->max_algo);
701         if (new_list == NULL)
702                 return (NULL);
703         /* copy it */
704         new_list->max_algo = list->max_algo;
705         new_list->num_algo = list->num_algo;
706         for (i = 0; i < list->num_algo; i++)
707                 new_list->hmac[i] = list->hmac[i];
708         return (new_list);
709 }
710
711 sctp_hmaclist_t *
712 sctp_default_supported_hmaclist(void)
713 {
714         sctp_hmaclist_t *new_list;
715
716         new_list = sctp_alloc_hmaclist(2);
717         if (new_list == NULL)
718                 return (NULL);
719         /* We prefer SHA256, so list it first */
720         (void)sctp_auth_add_hmacid(new_list, SCTP_AUTH_HMAC_ID_SHA256);
721         (void)sctp_auth_add_hmacid(new_list, SCTP_AUTH_HMAC_ID_SHA1);
722         return (new_list);
723 }
724
725 /*-
726  * HMAC algos are listed in priority/preference order
727  * find the best HMAC id to use for the peer based on local support
728  */
729 uint16_t
730 sctp_negotiate_hmacid(sctp_hmaclist_t *peer, sctp_hmaclist_t *local)
731 {
732         int i, j;
733
734         if ((local == NULL) || (peer == NULL))
735                 return (SCTP_AUTH_HMAC_ID_RSVD);
736
737         for (i = 0; i < peer->num_algo; i++) {
738                 for (j = 0; j < local->num_algo; j++) {
739                         if (peer->hmac[i] == local->hmac[j]) {
740                                 /* found the "best" one */
741                                 SCTPDBG(SCTP_DEBUG_AUTH1,
742                                     "SCTP: negotiated peer HMAC id %u\n",
743                                     peer->hmac[i]);
744                                 return (peer->hmac[i]);
745                         }
746                 }
747         }
748         /* didn't find one! */
749         return (SCTP_AUTH_HMAC_ID_RSVD);
750 }
751
752 /*-
753  * serialize the HMAC algo list and return space used
754  * caller must guarantee ptr has appropriate space
755  */
756 int
757 sctp_serialize_hmaclist(sctp_hmaclist_t *list, uint8_t *ptr)
758 {
759         int i;
760         uint16_t hmac_id;
761
762         if (list == NULL)
763                 return (0);
764
765         for (i = 0; i < list->num_algo; i++) {
766                 hmac_id = htons(list->hmac[i]);
767                 memcpy(ptr, &hmac_id, sizeof(hmac_id));
768                 ptr += sizeof(hmac_id);
769         }
770         return (list->num_algo * sizeof(hmac_id));
771 }
772
773 int
774 sctp_verify_hmac_param(struct sctp_auth_hmac_algo *hmacs, uint32_t num_hmacs)
775 {
776         uint32_t i;
777
778         for (i = 0; i < num_hmacs; i++) {
779                 if (ntohs(hmacs->hmac_ids[i]) == SCTP_AUTH_HMAC_ID_SHA1) {
780                         return (0);
781                 }
782         }
783         return (-1);
784 }
785
786 sctp_authinfo_t *
787 sctp_alloc_authinfo(void)
788 {
789         sctp_authinfo_t *new_authinfo;
790
791         SCTP_MALLOC(new_authinfo, sctp_authinfo_t *, sizeof(*new_authinfo),
792             SCTP_M_AUTH_IF);
793
794         if (new_authinfo == NULL) {
795                 /* out of memory */
796                 return (NULL);
797         }
798         memset(new_authinfo, 0, sizeof(*new_authinfo));
799         return (new_authinfo);
800 }
801
802 void
803 sctp_free_authinfo(sctp_authinfo_t *authinfo)
804 {
805         if (authinfo == NULL)
806                 return;
807
808         if (authinfo->random != NULL)
809                 sctp_free_key(authinfo->random);
810         if (authinfo->peer_random != NULL)
811                 sctp_free_key(authinfo->peer_random);
812         if (authinfo->assoc_key != NULL)
813                 sctp_free_key(authinfo->assoc_key);
814         if (authinfo->recv_key != NULL)
815                 sctp_free_key(authinfo->recv_key);
816
817         /* We are NOT dynamically allocating authinfo's right now... */
818         /* SCTP_FREE(authinfo, SCTP_M_AUTH_??); */
819 }
820
821
822 uint32_t
823 sctp_get_auth_chunk_len(uint16_t hmac_algo)
824 {
825         int size;
826
827         size = sizeof(struct sctp_auth_chunk) + sctp_get_hmac_digest_len(hmac_algo);
828         return (SCTP_SIZE32(size));
829 }
830
831 uint32_t
832 sctp_get_hmac_digest_len(uint16_t hmac_algo)
833 {
834         switch (hmac_algo) {
835         case SCTP_AUTH_HMAC_ID_SHA1:
836                 return (SCTP_AUTH_DIGEST_LEN_SHA1);
837         case SCTP_AUTH_HMAC_ID_SHA256:
838                 return (SCTP_AUTH_DIGEST_LEN_SHA256);
839         default:
840                 /* unknown HMAC algorithm: can't do anything */
841                 return (0);
842         }                       /* end switch */
843 }
844
845 static inline int
846 sctp_get_hmac_block_len(uint16_t hmac_algo)
847 {
848         switch (hmac_algo) {
849         case SCTP_AUTH_HMAC_ID_SHA1:
850                 return (64);
851         case SCTP_AUTH_HMAC_ID_SHA256:
852                 return (64);
853         case SCTP_AUTH_HMAC_ID_RSVD:
854         default:
855                 /* unknown HMAC algorithm: can't do anything */
856                 return (0);
857         }                       /* end switch */
858 }
859
860 static void
861 sctp_hmac_init(uint16_t hmac_algo, sctp_hash_context_t *ctx)
862 {
863         switch (hmac_algo) {
864         case SCTP_AUTH_HMAC_ID_SHA1:
865                 SCTP_SHA1_INIT(&ctx->sha1);
866                 break;
867         case SCTP_AUTH_HMAC_ID_SHA256:
868                 SCTP_SHA256_INIT(&ctx->sha256);
869                 break;
870         case SCTP_AUTH_HMAC_ID_RSVD:
871         default:
872                 /* unknown HMAC algorithm: can't do anything */
873                 return;
874         }                       /* end switch */
875 }
876
877 static void
878 sctp_hmac_update(uint16_t hmac_algo, sctp_hash_context_t *ctx,
879     uint8_t *text, uint32_t textlen)
880 {
881         switch (hmac_algo) {
882         case SCTP_AUTH_HMAC_ID_SHA1:
883                 SCTP_SHA1_UPDATE(&ctx->sha1, text, textlen);
884                 break;
885         case SCTP_AUTH_HMAC_ID_SHA256:
886                 SCTP_SHA256_UPDATE(&ctx->sha256, text, textlen);
887                 break;
888         case SCTP_AUTH_HMAC_ID_RSVD:
889         default:
890                 /* unknown HMAC algorithm: can't do anything */
891                 return;
892         }                       /* end switch */
893 }
894
895 static void
896 sctp_hmac_final(uint16_t hmac_algo, sctp_hash_context_t *ctx,
897     uint8_t *digest)
898 {
899         switch (hmac_algo) {
900         case SCTP_AUTH_HMAC_ID_SHA1:
901                 SCTP_SHA1_FINAL(digest, &ctx->sha1);
902                 break;
903         case SCTP_AUTH_HMAC_ID_SHA256:
904                 SCTP_SHA256_FINAL(digest, &ctx->sha256);
905                 break;
906         case SCTP_AUTH_HMAC_ID_RSVD:
907         default:
908                 /* unknown HMAC algorithm: can't do anything */
909                 return;
910         }                       /* end switch */
911 }
912
913 /*-
914  * Keyed-Hashing for Message Authentication: FIPS 198 (RFC 2104)
915  *
916  * Compute the HMAC digest using the desired hash key, text, and HMAC
917  * algorithm.  Resulting digest is placed in 'digest' and digest length
918  * is returned, if the HMAC was performed.
919  *
920  * WARNING: it is up to the caller to supply sufficient space to hold the
921  * resultant digest.
922  */
923 uint32_t
924 sctp_hmac(uint16_t hmac_algo, uint8_t *key, uint32_t keylen,
925     uint8_t *text, uint32_t textlen, uint8_t *digest)
926 {
927         uint32_t digestlen;
928         uint32_t blocklen;
929         sctp_hash_context_t ctx;
930         uint8_t ipad[128], opad[128];   /* keyed hash inner/outer pads */
931         uint8_t temp[SCTP_AUTH_DIGEST_LEN_MAX];
932         uint32_t i;
933
934         /* sanity check the material and length */
935         if ((key == NULL) || (keylen == 0) || (text == NULL) ||
936             (textlen == 0) || (digest == NULL)) {
937                 /* can't do HMAC with empty key or text or digest store */
938                 return (0);
939         }
940         /* validate the hmac algo and get the digest length */
941         digestlen = sctp_get_hmac_digest_len(hmac_algo);
942         if (digestlen == 0)
943                 return (0);
944
945         /* hash the key if it is longer than the hash block size */
946         blocklen = sctp_get_hmac_block_len(hmac_algo);
947         if (keylen > blocklen) {
948                 sctp_hmac_init(hmac_algo, &ctx);
949                 sctp_hmac_update(hmac_algo, &ctx, key, keylen);
950                 sctp_hmac_final(hmac_algo, &ctx, temp);
951                 /* set the hashed key as the key */
952                 keylen = digestlen;
953                 key = temp;
954         }
955         /* initialize the inner/outer pads with the key and "append" zeroes */
956         memset(ipad, 0, blocklen);
957         memset(opad, 0, blocklen);
958         memcpy(ipad, key, keylen);
959         memcpy(opad, key, keylen);
960
961         /* XOR the key with ipad and opad values */
962         for (i = 0; i < blocklen; i++) {
963                 ipad[i] ^= 0x36;
964                 opad[i] ^= 0x5c;
965         }
966
967         /* perform inner hash */
968         sctp_hmac_init(hmac_algo, &ctx);
969         sctp_hmac_update(hmac_algo, &ctx, ipad, blocklen);
970         sctp_hmac_update(hmac_algo, &ctx, text, textlen);
971         sctp_hmac_final(hmac_algo, &ctx, temp);
972
973         /* perform outer hash */
974         sctp_hmac_init(hmac_algo, &ctx);
975         sctp_hmac_update(hmac_algo, &ctx, opad, blocklen);
976         sctp_hmac_update(hmac_algo, &ctx, temp, digestlen);
977         sctp_hmac_final(hmac_algo, &ctx, digest);
978
979         return (digestlen);
980 }
981
982 /* mbuf version */
983 uint32_t
984 sctp_hmac_m(uint16_t hmac_algo, uint8_t *key, uint32_t keylen,
985     struct mbuf *m, uint32_t m_offset, uint8_t *digest, uint32_t trailer)
986 {
987         uint32_t digestlen;
988         uint32_t blocklen;
989         sctp_hash_context_t ctx;
990         uint8_t ipad[128], opad[128];   /* keyed hash inner/outer pads */
991         uint8_t temp[SCTP_AUTH_DIGEST_LEN_MAX];
992         uint32_t i;
993         struct mbuf *m_tmp;
994
995         /* sanity check the material and length */
996         if ((key == NULL) || (keylen == 0) || (m == NULL) || (digest == NULL)) {
997                 /* can't do HMAC with empty key or text or digest store */
998                 return (0);
999         }
1000         /* validate the hmac algo and get the digest length */
1001         digestlen = sctp_get_hmac_digest_len(hmac_algo);
1002         if (digestlen == 0)
1003                 return (0);
1004
1005         /* hash the key if it is longer than the hash block size */
1006         blocklen = sctp_get_hmac_block_len(hmac_algo);
1007         if (keylen > blocklen) {
1008                 sctp_hmac_init(hmac_algo, &ctx);
1009                 sctp_hmac_update(hmac_algo, &ctx, key, keylen);
1010                 sctp_hmac_final(hmac_algo, &ctx, temp);
1011                 /* set the hashed key as the key */
1012                 keylen = digestlen;
1013                 key = temp;
1014         }
1015         /* initialize the inner/outer pads with the key and "append" zeroes */
1016         memset(ipad, 0, blocklen);
1017         memset(opad, 0, blocklen);
1018         memcpy(ipad, key, keylen);
1019         memcpy(opad, key, keylen);
1020
1021         /* XOR the key with ipad and opad values */
1022         for (i = 0; i < blocklen; i++) {
1023                 ipad[i] ^= 0x36;
1024                 opad[i] ^= 0x5c;
1025         }
1026
1027         /* perform inner hash */
1028         sctp_hmac_init(hmac_algo, &ctx);
1029         sctp_hmac_update(hmac_algo, &ctx, ipad, blocklen);
1030         /* find the correct starting mbuf and offset (get start of text) */
1031         m_tmp = m;
1032         while ((m_tmp != NULL) && (m_offset >= (uint32_t)SCTP_BUF_LEN(m_tmp))) {
1033                 m_offset -= SCTP_BUF_LEN(m_tmp);
1034                 m_tmp = SCTP_BUF_NEXT(m_tmp);
1035         }
1036         /* now use the rest of the mbuf chain for the text */
1037         while (m_tmp != NULL) {
1038                 if ((SCTP_BUF_NEXT(m_tmp) == NULL) && trailer) {
1039                         sctp_hmac_update(hmac_algo, &ctx, mtod(m_tmp, uint8_t *)+m_offset,
1040                             SCTP_BUF_LEN(m_tmp) - (trailer + m_offset));
1041                 } else {
1042                         sctp_hmac_update(hmac_algo, &ctx, mtod(m_tmp, uint8_t *)+m_offset,
1043                             SCTP_BUF_LEN(m_tmp) - m_offset);
1044                 }
1045
1046                 /* clear the offset since it's only for the first mbuf */
1047                 m_offset = 0;
1048                 m_tmp = SCTP_BUF_NEXT(m_tmp);
1049         }
1050         sctp_hmac_final(hmac_algo, &ctx, temp);
1051
1052         /* perform outer hash */
1053         sctp_hmac_init(hmac_algo, &ctx);
1054         sctp_hmac_update(hmac_algo, &ctx, opad, blocklen);
1055         sctp_hmac_update(hmac_algo, &ctx, temp, digestlen);
1056         sctp_hmac_final(hmac_algo, &ctx, digest);
1057
1058         return (digestlen);
1059 }
1060
1061 /*-
1062  * verify the HMAC digest using the desired hash key, text, and HMAC
1063  * algorithm.
1064  * Returns -1 on error, 0 on success.
1065  */
1066 int
1067 sctp_verify_hmac(uint16_t hmac_algo, uint8_t *key, uint32_t keylen,
1068     uint8_t *text, uint32_t textlen,
1069     uint8_t *digest, uint32_t digestlen)
1070 {
1071         uint32_t len;
1072         uint8_t temp[SCTP_AUTH_DIGEST_LEN_MAX];
1073
1074         /* sanity check the material and length */
1075         if ((key == NULL) || (keylen == 0) ||
1076             (text == NULL) || (textlen == 0) || (digest == NULL)) {
1077                 /* can't do HMAC with empty key or text or digest */
1078                 return (-1);
1079         }
1080         len = sctp_get_hmac_digest_len(hmac_algo);
1081         if ((len == 0) || (digestlen != len))
1082                 return (-1);
1083
1084         /* compute the expected hash */
1085         if (sctp_hmac(hmac_algo, key, keylen, text, textlen, temp) != len)
1086                 return (-1);
1087
1088         if (memcmp(digest, temp, digestlen) != 0)
1089                 return (-1);
1090         else
1091                 return (0);
1092 }
1093
1094
1095 /*
1096  * computes the requested HMAC using a key struct (which may be modified if
1097  * the keylen exceeds the HMAC block len).
1098  */
1099 uint32_t
1100 sctp_compute_hmac(uint16_t hmac_algo, sctp_key_t *key, uint8_t *text,
1101     uint32_t textlen, uint8_t *digest)
1102 {
1103         uint32_t digestlen;
1104         uint32_t blocklen;
1105         sctp_hash_context_t ctx;
1106         uint8_t temp[SCTP_AUTH_DIGEST_LEN_MAX];
1107
1108         /* sanity check */
1109         if ((key == NULL) || (text == NULL) || (textlen == 0) ||
1110             (digest == NULL)) {
1111                 /* can't do HMAC with empty key or text or digest store */
1112                 return (0);
1113         }
1114         /* validate the hmac algo and get the digest length */
1115         digestlen = sctp_get_hmac_digest_len(hmac_algo);
1116         if (digestlen == 0)
1117                 return (0);
1118
1119         /* hash the key if it is longer than the hash block size */
1120         blocklen = sctp_get_hmac_block_len(hmac_algo);
1121         if (key->keylen > blocklen) {
1122                 sctp_hmac_init(hmac_algo, &ctx);
1123                 sctp_hmac_update(hmac_algo, &ctx, key->key, key->keylen);
1124                 sctp_hmac_final(hmac_algo, &ctx, temp);
1125                 /* save the hashed key as the new key */
1126                 key->keylen = digestlen;
1127                 memcpy(key->key, temp, key->keylen);
1128         }
1129         return (sctp_hmac(hmac_algo, key->key, key->keylen, text, textlen,
1130             digest));
1131 }
1132
1133 /* mbuf version */
1134 uint32_t
1135 sctp_compute_hmac_m(uint16_t hmac_algo, sctp_key_t *key, struct mbuf *m,
1136     uint32_t m_offset, uint8_t *digest)
1137 {
1138         uint32_t digestlen;
1139         uint32_t blocklen;
1140         sctp_hash_context_t ctx;
1141         uint8_t temp[SCTP_AUTH_DIGEST_LEN_MAX];
1142
1143         /* sanity check */
1144         if ((key == NULL) || (m == NULL) || (digest == NULL)) {
1145                 /* can't do HMAC with empty key or text or digest store */
1146                 return (0);
1147         }
1148         /* validate the hmac algo and get the digest length */
1149         digestlen = sctp_get_hmac_digest_len(hmac_algo);
1150         if (digestlen == 0)
1151                 return (0);
1152
1153         /* hash the key if it is longer than the hash block size */
1154         blocklen = sctp_get_hmac_block_len(hmac_algo);
1155         if (key->keylen > blocklen) {
1156                 sctp_hmac_init(hmac_algo, &ctx);
1157                 sctp_hmac_update(hmac_algo, &ctx, key->key, key->keylen);
1158                 sctp_hmac_final(hmac_algo, &ctx, temp);
1159                 /* save the hashed key as the new key */
1160                 key->keylen = digestlen;
1161                 memcpy(key->key, temp, key->keylen);
1162         }
1163         return (sctp_hmac_m(hmac_algo, key->key, key->keylen, m, m_offset, digest, 0));
1164 }
1165
1166 int
1167 sctp_auth_is_supported_hmac(sctp_hmaclist_t *list, uint16_t id)
1168 {
1169         int i;
1170
1171         if ((list == NULL) || (id == SCTP_AUTH_HMAC_ID_RSVD))
1172                 return (0);
1173
1174         for (i = 0; i < list->num_algo; i++)
1175                 if (list->hmac[i] == id)
1176                         return (1);
1177
1178         /* not in the list */
1179         return (0);
1180 }
1181
1182
1183 /*-
1184  * clear any cached key(s) if they match the given key id on an association.
1185  * the cached key(s) will be recomputed and re-cached at next use.
1186  * ASSUMES TCB_LOCK is already held
1187  */
1188 void
1189 sctp_clear_cachedkeys(struct sctp_tcb *stcb, uint16_t keyid)
1190 {
1191         if (stcb == NULL)
1192                 return;
1193
1194         if (keyid == stcb->asoc.authinfo.assoc_keyid) {
1195                 sctp_free_key(stcb->asoc.authinfo.assoc_key);
1196                 stcb->asoc.authinfo.assoc_key = NULL;
1197         }
1198         if (keyid == stcb->asoc.authinfo.recv_keyid) {
1199                 sctp_free_key(stcb->asoc.authinfo.recv_key);
1200                 stcb->asoc.authinfo.recv_key = NULL;
1201         }
1202 }
1203
1204 /*-
1205  * clear any cached key(s) if they match the given key id for all assocs on
1206  * an endpoint.
1207  * ASSUMES INP_WLOCK is already held
1208  */
1209 void
1210 sctp_clear_cachedkeys_ep(struct sctp_inpcb *inp, uint16_t keyid)
1211 {
1212         struct sctp_tcb *stcb;
1213
1214         if (inp == NULL)
1215                 return;
1216
1217         /* clear the cached keys on all assocs on this instance */
1218         LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) {
1219                 SCTP_TCB_LOCK(stcb);
1220                 sctp_clear_cachedkeys(stcb, keyid);
1221                 SCTP_TCB_UNLOCK(stcb);
1222         }
1223 }
1224
1225 /*-
1226  * delete a shared key from an association
1227  * ASSUMES TCB_LOCK is already held
1228  */
1229 int
1230 sctp_delete_sharedkey(struct sctp_tcb *stcb, uint16_t keyid)
1231 {
1232         sctp_sharedkey_t *skey;
1233
1234         if (stcb == NULL)
1235                 return (-1);
1236
1237         /* is the keyid the assoc active sending key */
1238         if (keyid == stcb->asoc.authinfo.active_keyid)
1239                 return (-1);
1240
1241         /* does the key exist? */
1242         skey = sctp_find_sharedkey(&stcb->asoc.shared_keys, keyid);
1243         if (skey == NULL)
1244                 return (-1);
1245
1246         /* are there other refcount holders on the key? */
1247         if (skey->refcount > 1)
1248                 return (-1);
1249
1250         /* remove it */
1251         LIST_REMOVE(skey, next);
1252         sctp_free_sharedkey(skey);      /* frees skey->key as well */
1253
1254         /* clear any cached keys */
1255         sctp_clear_cachedkeys(stcb, keyid);
1256         return (0);
1257 }
1258
1259 /*-
1260  * deletes a shared key from the endpoint
1261  * ASSUMES INP_WLOCK is already held
1262  */
1263 int
1264 sctp_delete_sharedkey_ep(struct sctp_inpcb *inp, uint16_t keyid)
1265 {
1266         sctp_sharedkey_t *skey;
1267
1268         if (inp == NULL)
1269                 return (-1);
1270
1271         /* is the keyid the active sending key on the endpoint */
1272         if (keyid == inp->sctp_ep.default_keyid)
1273                 return (-1);
1274
1275         /* does the key exist? */
1276         skey = sctp_find_sharedkey(&inp->sctp_ep.shared_keys, keyid);
1277         if (skey == NULL)
1278                 return (-1);
1279
1280         /* endpoint keys are not refcounted */
1281
1282         /* remove it */
1283         LIST_REMOVE(skey, next);
1284         sctp_free_sharedkey(skey);      /* frees skey->key as well */
1285
1286         /* clear any cached keys */
1287         sctp_clear_cachedkeys_ep(inp, keyid);
1288         return (0);
1289 }
1290
1291 /*-
1292  * set the active key on an association
1293  * ASSUMES TCB_LOCK is already held
1294  */
1295 int
1296 sctp_auth_setactivekey(struct sctp_tcb *stcb, uint16_t keyid)
1297 {
1298         sctp_sharedkey_t *skey = NULL;
1299
1300         /* find the key on the assoc */
1301         skey = sctp_find_sharedkey(&stcb->asoc.shared_keys, keyid);
1302         if (skey == NULL) {
1303                 /* that key doesn't exist */
1304                 return (-1);
1305         }
1306         if ((skey->deactivated) && (skey->refcount > 1)) {
1307                 /* can't reactivate a deactivated key with other refcounts */
1308                 return (-1);
1309         }
1310
1311         /* set the (new) active key */
1312         stcb->asoc.authinfo.active_keyid = keyid;
1313         /* reset the deactivated flag */
1314         skey->deactivated = 0;
1315
1316         return (0);
1317 }
1318
1319 /*-
1320  * set the active key on an endpoint
1321  * ASSUMES INP_WLOCK is already held
1322  */
1323 int
1324 sctp_auth_setactivekey_ep(struct sctp_inpcb *inp, uint16_t keyid)
1325 {
1326         sctp_sharedkey_t *skey;
1327
1328         /* find the key */
1329         skey = sctp_find_sharedkey(&inp->sctp_ep.shared_keys, keyid);
1330         if (skey == NULL) {
1331                 /* that key doesn't exist */
1332                 return (-1);
1333         }
1334         inp->sctp_ep.default_keyid = keyid;
1335         return (0);
1336 }
1337
1338 /*-
1339  * deactivates a shared key from the association
1340  * ASSUMES INP_WLOCK is already held
1341  */
1342 int
1343 sctp_deact_sharedkey(struct sctp_tcb *stcb, uint16_t keyid)
1344 {
1345         sctp_sharedkey_t *skey;
1346
1347         if (stcb == NULL)
1348                 return (-1);
1349
1350         /* is the keyid the assoc active sending key */
1351         if (keyid == stcb->asoc.authinfo.active_keyid)
1352                 return (-1);
1353
1354         /* does the key exist? */
1355         skey = sctp_find_sharedkey(&stcb->asoc.shared_keys, keyid);
1356         if (skey == NULL)
1357                 return (-1);
1358
1359         /* are there other refcount holders on the key? */
1360         if (skey->refcount == 1) {
1361                 /* no other users, send a notification for this key */
1362                 sctp_ulp_notify(SCTP_NOTIFY_AUTH_FREE_KEY, stcb, keyid, 0,
1363                     SCTP_SO_LOCKED);
1364         }
1365
1366         /* mark the key as deactivated */
1367         skey->deactivated = 1;
1368
1369         return (0);
1370 }
1371
1372 /*-
1373  * deactivates a shared key from the endpoint
1374  * ASSUMES INP_WLOCK is already held
1375  */
1376 int
1377 sctp_deact_sharedkey_ep(struct sctp_inpcb *inp, uint16_t keyid)
1378 {
1379         sctp_sharedkey_t *skey;
1380
1381         if (inp == NULL)
1382                 return (-1);
1383
1384         /* is the keyid the active sending key on the endpoint */
1385         if (keyid == inp->sctp_ep.default_keyid)
1386                 return (-1);
1387
1388         /* does the key exist? */
1389         skey = sctp_find_sharedkey(&inp->sctp_ep.shared_keys, keyid);
1390         if (skey == NULL)
1391                 return (-1);
1392
1393         /* endpoint keys are not refcounted */
1394
1395         /* remove it */
1396         LIST_REMOVE(skey, next);
1397         sctp_free_sharedkey(skey);      /* frees skey->key as well */
1398
1399         return (0);
1400 }
1401
1402 /*
1403  * get local authentication parameters from cookie (from INIT-ACK)
1404  */
1405 void
1406 sctp_auth_get_cookie_params(struct sctp_tcb *stcb, struct mbuf *m,
1407     uint32_t offset, uint32_t length)
1408 {
1409         struct sctp_paramhdr *phdr, tmp_param;
1410         uint16_t plen, ptype;
1411         uint8_t random_store[SCTP_PARAM_BUFFER_SIZE];
1412         struct sctp_auth_random *p_random = NULL;
1413         uint16_t random_len = 0;
1414         uint8_t hmacs_store[SCTP_PARAM_BUFFER_SIZE];
1415         struct sctp_auth_hmac_algo *hmacs = NULL;
1416         uint16_t hmacs_len = 0;
1417         uint8_t chunks_store[SCTP_PARAM_BUFFER_SIZE];
1418         struct sctp_auth_chunk_list *chunks = NULL;
1419         uint16_t num_chunks = 0;
1420         sctp_key_t *new_key;
1421         uint32_t keylen;
1422
1423         /* convert to upper bound */
1424         length += offset;
1425
1426         phdr = (struct sctp_paramhdr *)sctp_m_getptr(m, offset,
1427             sizeof(struct sctp_paramhdr), (uint8_t *)&tmp_param);
1428         while (phdr != NULL) {
1429                 ptype = ntohs(phdr->param_type);
1430                 plen = ntohs(phdr->param_length);
1431
1432                 if ((plen == 0) || (offset + plen > length))
1433                         break;
1434
1435                 if (ptype == SCTP_RANDOM) {
1436                         if (plen > sizeof(random_store))
1437                                 break;
1438                         phdr = sctp_get_next_param(m, offset,
1439                             (struct sctp_paramhdr *)random_store, plen);
1440                         if (phdr == NULL)
1441                                 return;
1442                         /* save the random and length for the key */
1443                         p_random = (struct sctp_auth_random *)phdr;
1444                         random_len = plen - sizeof(*p_random);
1445                 } else if (ptype == SCTP_HMAC_LIST) {
1446                         uint16_t num_hmacs;
1447                         uint16_t i;
1448
1449                         if (plen > sizeof(hmacs_store))
1450                                 break;
1451                         phdr = sctp_get_next_param(m, offset,
1452                             (struct sctp_paramhdr *)hmacs_store, plen);
1453                         if (phdr == NULL)
1454                                 return;
1455                         /* save the hmacs list and num for the key */
1456                         hmacs = (struct sctp_auth_hmac_algo *)phdr;
1457                         hmacs_len = plen - sizeof(*hmacs);
1458                         num_hmacs = hmacs_len / sizeof(hmacs->hmac_ids[0]);
1459                         if (stcb->asoc.local_hmacs != NULL)
1460                                 sctp_free_hmaclist(stcb->asoc.local_hmacs);
1461                         stcb->asoc.local_hmacs = sctp_alloc_hmaclist(num_hmacs);
1462                         if (stcb->asoc.local_hmacs != NULL) {
1463                                 for (i = 0; i < num_hmacs; i++) {
1464                                         (void)sctp_auth_add_hmacid(stcb->asoc.local_hmacs,
1465                                             ntohs(hmacs->hmac_ids[i]));
1466                                 }
1467                         }
1468                 } else if (ptype == SCTP_CHUNK_LIST) {
1469                         int i;
1470
1471                         if (plen > sizeof(chunks_store))
1472                                 break;
1473                         phdr = sctp_get_next_param(m, offset,
1474                             (struct sctp_paramhdr *)chunks_store, plen);
1475                         if (phdr == NULL)
1476                                 return;
1477                         chunks = (struct sctp_auth_chunk_list *)phdr;
1478                         num_chunks = plen - sizeof(*chunks);
1479                         /* save chunks list and num for the key */
1480                         if (stcb->asoc.local_auth_chunks != NULL)
1481                                 sctp_clear_chunklist(stcb->asoc.local_auth_chunks);
1482                         else
1483                                 stcb->asoc.local_auth_chunks = sctp_alloc_chunklist();
1484                         for (i = 0; i < num_chunks; i++) {
1485                                 (void)sctp_auth_add_chunk(chunks->chunk_types[i],
1486                                     stcb->asoc.local_auth_chunks);
1487                         }
1488                 }
1489                 /* get next parameter */
1490                 offset += SCTP_SIZE32(plen);
1491                 if (offset + sizeof(struct sctp_paramhdr) > length)
1492                         break;
1493                 phdr = (struct sctp_paramhdr *)sctp_m_getptr(m, offset, sizeof(struct sctp_paramhdr),
1494                     (uint8_t *)&tmp_param);
1495         }
1496         /* concatenate the full random key */
1497         keylen = sizeof(*p_random) + random_len + sizeof(*hmacs) + hmacs_len;
1498         if (chunks != NULL) {
1499                 keylen += sizeof(*chunks) + num_chunks;
1500         }
1501         new_key = sctp_alloc_key(keylen);
1502         if (new_key != NULL) {
1503                 /* copy in the RANDOM */
1504                 if (p_random != NULL) {
1505                         keylen = sizeof(*p_random) + random_len;
1506                         memcpy(new_key->key, p_random, keylen);
1507                 } else {
1508                         keylen = 0;
1509                 }
1510                 /* append in the AUTH chunks */
1511                 if (chunks != NULL) {
1512                         memcpy(new_key->key + keylen, chunks,
1513                             sizeof(*chunks) + num_chunks);
1514                         keylen += sizeof(*chunks) + num_chunks;
1515                 }
1516                 /* append in the HMACs */
1517                 if (hmacs != NULL) {
1518                         memcpy(new_key->key + keylen, hmacs,
1519                             sizeof(*hmacs) + hmacs_len);
1520                 }
1521         }
1522         if (stcb->asoc.authinfo.random != NULL)
1523                 sctp_free_key(stcb->asoc.authinfo.random);
1524         stcb->asoc.authinfo.random = new_key;
1525         stcb->asoc.authinfo.random_len = random_len;
1526         sctp_clear_cachedkeys(stcb, stcb->asoc.authinfo.assoc_keyid);
1527         sctp_clear_cachedkeys(stcb, stcb->asoc.authinfo.recv_keyid);
1528
1529         /* negotiate what HMAC to use for the peer */
1530         stcb->asoc.peer_hmac_id = sctp_negotiate_hmacid(stcb->asoc.peer_hmacs,
1531             stcb->asoc.local_hmacs);
1532
1533         /* copy defaults from the endpoint */
1534         /* FIX ME: put in cookie? */
1535         stcb->asoc.authinfo.active_keyid = stcb->sctp_ep->sctp_ep.default_keyid;
1536         /* copy out the shared key list (by reference) from the endpoint */
1537         (void)sctp_copy_skeylist(&stcb->sctp_ep->sctp_ep.shared_keys,
1538             &stcb->asoc.shared_keys);
1539 }
1540
1541 /*
1542  * compute and fill in the HMAC digest for a packet
1543  */
1544 void
1545 sctp_fill_hmac_digest_m(struct mbuf *m, uint32_t auth_offset,
1546     struct sctp_auth_chunk *auth, struct sctp_tcb *stcb, uint16_t keyid)
1547 {
1548         uint32_t digestlen;
1549         sctp_sharedkey_t *skey;
1550         sctp_key_t *key;
1551
1552         if ((stcb == NULL) || (auth == NULL))
1553                 return;
1554
1555         /* zero the digest + chunk padding */
1556         digestlen = sctp_get_hmac_digest_len(stcb->asoc.peer_hmac_id);
1557         memset(auth->hmac, 0, SCTP_SIZE32(digestlen));
1558
1559         /* is the desired key cached? */
1560         if ((keyid != stcb->asoc.authinfo.assoc_keyid) ||
1561             (stcb->asoc.authinfo.assoc_key == NULL)) {
1562                 if (stcb->asoc.authinfo.assoc_key != NULL) {
1563                         /* free the old cached key */
1564                         sctp_free_key(stcb->asoc.authinfo.assoc_key);
1565                 }
1566                 skey = sctp_find_sharedkey(&stcb->asoc.shared_keys, keyid);
1567                 /* the only way skey is NULL is if null key id 0 is used */
1568                 if (skey != NULL)
1569                         key = skey->key;
1570                 else
1571                         key = NULL;
1572                 /* compute a new assoc key and cache it */
1573                 stcb->asoc.authinfo.assoc_key =
1574                     sctp_compute_hashkey(stcb->asoc.authinfo.random,
1575                     stcb->asoc.authinfo.peer_random, key);
1576                 stcb->asoc.authinfo.assoc_keyid = keyid;
1577                 SCTPDBG(SCTP_DEBUG_AUTH1, "caching key id %u\n",
1578                     stcb->asoc.authinfo.assoc_keyid);
1579 #ifdef SCTP_DEBUG
1580                 if (SCTP_AUTH_DEBUG)
1581                         sctp_print_key(stcb->asoc.authinfo.assoc_key,
1582                             "Assoc Key");
1583 #endif
1584         }
1585
1586         /* set in the active key id */
1587         auth->shared_key_id = htons(keyid);
1588
1589         /* compute and fill in the digest */
1590         (void)sctp_compute_hmac_m(stcb->asoc.peer_hmac_id, stcb->asoc.authinfo.assoc_key,
1591             m, auth_offset, auth->hmac);
1592 }
1593
1594
1595 static void
1596 sctp_zero_m(struct mbuf *m, uint32_t m_offset, uint32_t size)
1597 {
1598         struct mbuf *m_tmp;
1599         uint8_t *data;
1600
1601         /* sanity check */
1602         if (m == NULL)
1603                 return;
1604
1605         /* find the correct starting mbuf and offset (get start position) */
1606         m_tmp = m;
1607         while ((m_tmp != NULL) && (m_offset >= (uint32_t)SCTP_BUF_LEN(m_tmp))) {
1608                 m_offset -= SCTP_BUF_LEN(m_tmp);
1609                 m_tmp = SCTP_BUF_NEXT(m_tmp);
1610         }
1611         /* now use the rest of the mbuf chain */
1612         while ((m_tmp != NULL) && (size > 0)) {
1613                 data = mtod(m_tmp, uint8_t *)+m_offset;
1614                 if (size > (uint32_t)(SCTP_BUF_LEN(m_tmp) - m_offset)) {
1615                         memset(data, 0, SCTP_BUF_LEN(m_tmp) - m_offset);
1616                         size -= SCTP_BUF_LEN(m_tmp) - m_offset;
1617                 } else {
1618                         memset(data, 0, size);
1619                         size = 0;
1620                 }
1621                 /* clear the offset since it's only for the first mbuf */
1622                 m_offset = 0;
1623                 m_tmp = SCTP_BUF_NEXT(m_tmp);
1624         }
1625 }
1626
1627 /*-
1628  * process the incoming Authentication chunk
1629  * return codes:
1630  *   -1 on any authentication error
1631  *    0 on authentication verification
1632  */
1633 int
1634 sctp_handle_auth(struct sctp_tcb *stcb, struct sctp_auth_chunk *auth,
1635     struct mbuf *m, uint32_t offset)
1636 {
1637         uint16_t chunklen;
1638         uint16_t shared_key_id;
1639         uint16_t hmac_id;
1640         sctp_sharedkey_t *skey;
1641         uint32_t digestlen;
1642         uint8_t digest[SCTP_AUTH_DIGEST_LEN_MAX];
1643         uint8_t computed_digest[SCTP_AUTH_DIGEST_LEN_MAX];
1644
1645         /* auth is checked for NULL by caller */
1646         chunklen = ntohs(auth->ch.chunk_length);
1647         if (chunklen < sizeof(*auth)) {
1648                 SCTP_STAT_INCR(sctps_recvauthfailed);
1649                 return (-1);
1650         }
1651         SCTP_STAT_INCR(sctps_recvauth);
1652
1653         /* get the auth params */
1654         shared_key_id = ntohs(auth->shared_key_id);
1655         hmac_id = ntohs(auth->hmac_id);
1656         SCTPDBG(SCTP_DEBUG_AUTH1,
1657             "SCTP AUTH Chunk: shared key %u, HMAC id %u\n",
1658             shared_key_id, hmac_id);
1659
1660         /* is the indicated HMAC supported? */
1661         if (!sctp_auth_is_supported_hmac(stcb->asoc.local_hmacs, hmac_id)) {
1662                 struct mbuf *op_err;
1663                 struct sctp_error_auth_invalid_hmac *cause;
1664
1665                 SCTP_STAT_INCR(sctps_recvivalhmacid);
1666                 SCTPDBG(SCTP_DEBUG_AUTH1,
1667                     "SCTP Auth: unsupported HMAC id %u\n",
1668                     hmac_id);
1669                 /*
1670                  * report this in an Error Chunk: Unsupported HMAC
1671                  * Identifier
1672                  */
1673                 op_err = sctp_get_mbuf_for_msg(sizeof(struct sctp_error_auth_invalid_hmac),
1674                     0, M_NOWAIT, 1, MT_HEADER);
1675                 if (op_err != NULL) {
1676                         /* pre-reserve some space */
1677                         SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr));
1678                         /* fill in the error */
1679                         cause = mtod(op_err, struct sctp_error_auth_invalid_hmac *);
1680                         cause->cause.code = htons(SCTP_CAUSE_UNSUPPORTED_HMACID);
1681                         cause->cause.length = htons(sizeof(struct sctp_error_auth_invalid_hmac));
1682                         cause->hmac_id = ntohs(hmac_id);
1683                         SCTP_BUF_LEN(op_err) = sizeof(struct sctp_error_auth_invalid_hmac);
1684                         /* queue it */
1685                         sctp_queue_op_err(stcb, op_err);
1686                 }
1687                 return (-1);
1688         }
1689         /* get the indicated shared key, if available */
1690         if ((stcb->asoc.authinfo.recv_key == NULL) ||
1691             (stcb->asoc.authinfo.recv_keyid != shared_key_id)) {
1692                 /* find the shared key on the assoc first */
1693                 skey = sctp_find_sharedkey(&stcb->asoc.shared_keys,
1694                     shared_key_id);
1695                 /* if the shared key isn't found, discard the chunk */
1696                 if (skey == NULL) {
1697                         SCTP_STAT_INCR(sctps_recvivalkeyid);
1698                         SCTPDBG(SCTP_DEBUG_AUTH1,
1699                             "SCTP Auth: unknown key id %u\n",
1700                             shared_key_id);
1701                         return (-1);
1702                 }
1703                 /* generate a notification if this is a new key id */
1704                 if (stcb->asoc.authinfo.recv_keyid != shared_key_id)
1705                         /*
1706                          * sctp_ulp_notify(SCTP_NOTIFY_AUTH_NEW_KEY, stcb,
1707                          * shared_key_id, (void
1708                          * *)stcb->asoc.authinfo.recv_keyid);
1709                          */
1710                         sctp_notify_authentication(stcb, SCTP_AUTH_NEW_KEY,
1711                             shared_key_id, stcb->asoc.authinfo.recv_keyid,
1712                             SCTP_SO_NOT_LOCKED);
1713                 /* compute a new recv assoc key and cache it */
1714                 if (stcb->asoc.authinfo.recv_key != NULL)
1715                         sctp_free_key(stcb->asoc.authinfo.recv_key);
1716                 stcb->asoc.authinfo.recv_key =
1717                     sctp_compute_hashkey(stcb->asoc.authinfo.random,
1718                     stcb->asoc.authinfo.peer_random, skey->key);
1719                 stcb->asoc.authinfo.recv_keyid = shared_key_id;
1720 #ifdef SCTP_DEBUG
1721                 if (SCTP_AUTH_DEBUG)
1722                         sctp_print_key(stcb->asoc.authinfo.recv_key, "Recv Key");
1723 #endif
1724         }
1725         /* validate the digest length */
1726         digestlen = sctp_get_hmac_digest_len(hmac_id);
1727         if (chunklen < (sizeof(*auth) + digestlen)) {
1728                 /* invalid digest length */
1729                 SCTP_STAT_INCR(sctps_recvauthfailed);
1730                 SCTPDBG(SCTP_DEBUG_AUTH1,
1731                     "SCTP Auth: chunk too short for HMAC\n");
1732                 return (-1);
1733         }
1734         /* save a copy of the digest, zero the pseudo header, and validate */
1735         memcpy(digest, auth->hmac, digestlen);
1736         sctp_zero_m(m, offset + sizeof(*auth), SCTP_SIZE32(digestlen));
1737         (void)sctp_compute_hmac_m(hmac_id, stcb->asoc.authinfo.recv_key,
1738             m, offset, computed_digest);
1739
1740         /* compare the computed digest with the one in the AUTH chunk */
1741         if (timingsafe_bcmp(digest, computed_digest, digestlen) != 0) {
1742                 SCTP_STAT_INCR(sctps_recvauthfailed);
1743                 SCTPDBG(SCTP_DEBUG_AUTH1,
1744                     "SCTP Auth: HMAC digest check failed\n");
1745                 return (-1);
1746         }
1747         return (0);
1748 }
1749
1750 /*
1751  * Generate NOTIFICATION
1752  */
1753 void
1754 sctp_notify_authentication(struct sctp_tcb *stcb, uint32_t indication,
1755     uint16_t keyid, uint16_t alt_keyid, int so_locked
1756 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
1757     SCTP_UNUSED
1758 #endif
1759 )
1760 {
1761         struct mbuf *m_notify;
1762         struct sctp_authkey_event *auth;
1763         struct sctp_queued_to_read *control;
1764
1765         if ((stcb == NULL) ||
1766             (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) ||
1767             (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE) ||
1768             (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET)
1769             ) {
1770                 /* If the socket is gone we are out of here */
1771                 return;
1772         }
1773
1774         if (sctp_stcb_is_feature_off(stcb->sctp_ep, stcb, SCTP_PCB_FLAGS_AUTHEVNT))
1775                 /* event not enabled */
1776                 return;
1777
1778         m_notify = sctp_get_mbuf_for_msg(sizeof(struct sctp_authkey_event),
1779             0, M_NOWAIT, 1, MT_HEADER);
1780         if (m_notify == NULL)
1781                 /* no space left */
1782                 return;
1783
1784         SCTP_BUF_LEN(m_notify) = 0;
1785         auth = mtod(m_notify, struct sctp_authkey_event *);
1786         memset(auth, 0, sizeof(struct sctp_authkey_event));
1787         auth->auth_type = SCTP_AUTHENTICATION_EVENT;
1788         auth->auth_flags = 0;
1789         auth->auth_length = sizeof(*auth);
1790         auth->auth_keynumber = keyid;
1791         auth->auth_altkeynumber = alt_keyid;
1792         auth->auth_indication = indication;
1793         auth->auth_assoc_id = sctp_get_associd(stcb);
1794
1795         SCTP_BUF_LEN(m_notify) = sizeof(*auth);
1796         SCTP_BUF_NEXT(m_notify) = NULL;
1797
1798         /* append to socket */
1799         control = sctp_build_readq_entry(stcb, stcb->asoc.primary_destination,
1800             0, 0, stcb->asoc.context, 0, 0, 0, m_notify);
1801         if (control == NULL) {
1802                 /* no memory */
1803                 sctp_m_freem(m_notify);
1804                 return;
1805         }
1806         control->length = SCTP_BUF_LEN(m_notify);
1807         control->spec_flags = M_NOTIFICATION;
1808         /* not that we need this */
1809         control->tail_mbuf = m_notify;
1810         sctp_add_to_readq(stcb->sctp_ep, stcb, control,
1811             &stcb->sctp_socket->so_rcv, 1, SCTP_READ_LOCK_NOT_HELD, so_locked);
1812 }
1813
1814
1815 /*-
1816  * validates the AUTHentication related parameters in an INIT/INIT-ACK
1817  * Note: currently only used for INIT as INIT-ACK is handled inline
1818  * with sctp_load_addresses_from_init()
1819  */
1820 int
1821 sctp_validate_init_auth_params(struct mbuf *m, int offset, int limit)
1822 {
1823         struct sctp_paramhdr *phdr, param_buf;
1824         uint16_t ptype, plen;
1825         int peer_supports_asconf = 0;
1826         int peer_supports_auth = 0;
1827         int got_random = 0, got_hmacs = 0, got_chklist = 0;
1828         uint8_t saw_asconf = 0;
1829         uint8_t saw_asconf_ack = 0;
1830
1831         /* go through each of the params. */
1832         phdr = sctp_get_next_param(m, offset, &param_buf, sizeof(param_buf));
1833         while (phdr) {
1834                 ptype = ntohs(phdr->param_type);
1835                 plen = ntohs(phdr->param_length);
1836
1837                 if (offset + plen > limit) {
1838                         break;
1839                 }
1840                 if (plen < sizeof(struct sctp_paramhdr)) {
1841                         break;
1842                 }
1843                 if (ptype == SCTP_SUPPORTED_CHUNK_EXT) {
1844                         /* A supported extension chunk */
1845                         struct sctp_supported_chunk_types_param *pr_supported;
1846                         uint8_t local_store[SCTP_SMALL_CHUNK_STORE];
1847                         int num_ent, i;
1848
1849                         if (plen > sizeof(local_store)) {
1850                                 break;
1851                         }
1852                         phdr = sctp_get_next_param(m, offset,
1853                             (struct sctp_paramhdr *)&local_store,
1854                             plen);
1855                         if (phdr == NULL) {
1856                                 return (-1);
1857                         }
1858                         pr_supported = (struct sctp_supported_chunk_types_param *)phdr;
1859                         num_ent = plen - sizeof(struct sctp_paramhdr);
1860                         for (i = 0; i < num_ent; i++) {
1861                                 switch (pr_supported->chunk_types[i]) {
1862                                 case SCTP_ASCONF:
1863                                 case SCTP_ASCONF_ACK:
1864                                         peer_supports_asconf = 1;
1865                                         break;
1866                                 default:
1867                                         /* one we don't care about */
1868                                         break;
1869                                 }
1870                         }
1871                 } else if (ptype == SCTP_RANDOM) {
1872                         /* enforce the random length */
1873                         if (plen != (sizeof(struct sctp_auth_random) +
1874                             SCTP_AUTH_RANDOM_SIZE_REQUIRED)) {
1875                                 SCTPDBG(SCTP_DEBUG_AUTH1,
1876                                     "SCTP: invalid RANDOM len\n");
1877                                 return (-1);
1878                         }
1879                         got_random = 1;
1880                 } else if (ptype == SCTP_HMAC_LIST) {
1881                         struct sctp_auth_hmac_algo *hmacs;
1882                         uint8_t store[SCTP_PARAM_BUFFER_SIZE];
1883                         int num_hmacs;
1884
1885                         if (plen > sizeof(store)) {
1886                                 break;
1887                         }
1888                         phdr = sctp_get_next_param(m, offset,
1889                             (struct sctp_paramhdr *)store,
1890                             plen);
1891                         if (phdr == NULL) {
1892                                 return (-1);
1893                         }
1894                         hmacs = (struct sctp_auth_hmac_algo *)phdr;
1895                         num_hmacs = (plen - sizeof(*hmacs)) / sizeof(hmacs->hmac_ids[0]);
1896                         /* validate the hmac list */
1897                         if (sctp_verify_hmac_param(hmacs, num_hmacs)) {
1898                                 SCTPDBG(SCTP_DEBUG_AUTH1,
1899                                     "SCTP: invalid HMAC param\n");
1900                                 return (-1);
1901                         }
1902                         got_hmacs = 1;
1903                 } else if (ptype == SCTP_CHUNK_LIST) {
1904                         struct sctp_auth_chunk_list *chunks;
1905                         uint8_t chunks_store[SCTP_SMALL_CHUNK_STORE];
1906                         int i, num_chunks;
1907
1908                         if (plen > sizeof(chunks_store)) {
1909                                 break;
1910                         }
1911                         phdr = sctp_get_next_param(m, offset,
1912                             (struct sctp_paramhdr *)chunks_store,
1913                             plen);
1914                         if (phdr == NULL) {
1915                                 return (-1);
1916                         }
1917                         /*-
1918                          * Flip through the list and mark that the
1919                          * peer supports asconf/asconf_ack.
1920                          */
1921                         chunks = (struct sctp_auth_chunk_list *)phdr;
1922                         num_chunks = plen - sizeof(*chunks);
1923                         for (i = 0; i < num_chunks; i++) {
1924                                 /* record asconf/asconf-ack if listed */
1925                                 if (chunks->chunk_types[i] == SCTP_ASCONF)
1926                                         saw_asconf = 1;
1927                                 if (chunks->chunk_types[i] == SCTP_ASCONF_ACK)
1928                                         saw_asconf_ack = 1;
1929
1930                         }
1931                         if (num_chunks)
1932                                 got_chklist = 1;
1933                 }
1934
1935                 offset += SCTP_SIZE32(plen);
1936                 if (offset >= limit) {
1937                         break;
1938                 }
1939                 phdr = sctp_get_next_param(m, offset, &param_buf,
1940                     sizeof(param_buf));
1941         }
1942         /* validate authentication required parameters */
1943         if (got_random && got_hmacs) {
1944                 peer_supports_auth = 1;
1945         } else {
1946                 peer_supports_auth = 0;
1947         }
1948         if (!peer_supports_auth && got_chklist) {
1949                 SCTPDBG(SCTP_DEBUG_AUTH1,
1950                     "SCTP: peer sent chunk list w/o AUTH\n");
1951                 return (-1);
1952         }
1953         if (peer_supports_asconf && !peer_supports_auth) {
1954                 SCTPDBG(SCTP_DEBUG_AUTH1,
1955                     "SCTP: peer supports ASCONF but not AUTH\n");
1956                 return (-1);
1957         } else if ((peer_supports_asconf) && (peer_supports_auth) &&
1958             ((saw_asconf == 0) || (saw_asconf_ack == 0))) {
1959                 return (-2);
1960         }
1961         return (0);
1962 }
1963
1964 void
1965 sctp_initialize_auth_params(struct sctp_inpcb *inp, struct sctp_tcb *stcb)
1966 {
1967         uint16_t chunks_len = 0;
1968         uint16_t hmacs_len = 0;
1969         uint16_t random_len = SCTP_AUTH_RANDOM_SIZE_DEFAULT;
1970         sctp_key_t *new_key;
1971         uint16_t keylen;
1972
1973         /* initialize hmac list from endpoint */
1974         stcb->asoc.local_hmacs = sctp_copy_hmaclist(inp->sctp_ep.local_hmacs);
1975         if (stcb->asoc.local_hmacs != NULL) {
1976                 hmacs_len = stcb->asoc.local_hmacs->num_algo *
1977                     sizeof(stcb->asoc.local_hmacs->hmac[0]);
1978         }
1979         /* initialize auth chunks list from endpoint */
1980         stcb->asoc.local_auth_chunks =
1981             sctp_copy_chunklist(inp->sctp_ep.local_auth_chunks);
1982         if (stcb->asoc.local_auth_chunks != NULL) {
1983                 int i;
1984
1985                 for (i = 0; i < 256; i++) {
1986                         if (stcb->asoc.local_auth_chunks->chunks[i])
1987                                 chunks_len++;
1988                 }
1989         }
1990         /* copy defaults from the endpoint */
1991         stcb->asoc.authinfo.active_keyid = inp->sctp_ep.default_keyid;
1992
1993         /* copy out the shared key list (by reference) from the endpoint */
1994         (void)sctp_copy_skeylist(&inp->sctp_ep.shared_keys,
1995             &stcb->asoc.shared_keys);
1996
1997         /* now set the concatenated key (random + chunks + hmacs) */
1998         /* key includes parameter headers */
1999         keylen = (3 * sizeof(struct sctp_paramhdr)) + random_len + chunks_len +
2000             hmacs_len;
2001         new_key = sctp_alloc_key(keylen);
2002         if (new_key != NULL) {
2003                 struct sctp_paramhdr *ph;
2004                 int plen;
2005
2006                 /* generate and copy in the RANDOM */
2007                 ph = (struct sctp_paramhdr *)new_key->key;
2008                 ph->param_type = htons(SCTP_RANDOM);
2009                 plen = sizeof(*ph) + random_len;
2010                 ph->param_length = htons(plen);
2011                 SCTP_READ_RANDOM(new_key->key + sizeof(*ph), random_len);
2012                 keylen = plen;
2013
2014                 /* append in the AUTH chunks */
2015                 /* NOTE: currently we always have chunks to list */
2016                 ph = (struct sctp_paramhdr *)(new_key->key + keylen);
2017                 ph->param_type = htons(SCTP_CHUNK_LIST);
2018                 plen = sizeof(*ph) + chunks_len;
2019                 ph->param_length = htons(plen);
2020                 keylen += sizeof(*ph);
2021                 if (stcb->asoc.local_auth_chunks) {
2022                         int i;
2023
2024                         for (i = 0; i < 256; i++) {
2025                                 if (stcb->asoc.local_auth_chunks->chunks[i])
2026                                         new_key->key[keylen++] = i;
2027                         }
2028                 }
2029
2030                 /* append in the HMACs */
2031                 ph = (struct sctp_paramhdr *)(new_key->key + keylen);
2032                 ph->param_type = htons(SCTP_HMAC_LIST);
2033                 plen = sizeof(*ph) + hmacs_len;
2034                 ph->param_length = htons(plen);
2035                 keylen += sizeof(*ph);
2036                 (void)sctp_serialize_hmaclist(stcb->asoc.local_hmacs,
2037                     new_key->key + keylen);
2038         }
2039         if (stcb->asoc.authinfo.random != NULL)
2040                 sctp_free_key(stcb->asoc.authinfo.random);
2041         stcb->asoc.authinfo.random = new_key;
2042         stcb->asoc.authinfo.random_len = random_len;
2043 }