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
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
|
/* $OpenBSD: ip_esp_new.c,v 1.49 1999/12/06 07:14:35 angelos Exp $ */
/*
* The authors of this code are John Ioannidis (ji@tla.org),
* Angelos D. Keromytis (kermit@csd.uch.gr) and
* Niels Provos (provos@physnet.uni-hamburg.de).
*
* This code was written by John Ioannidis for BSD/OS in Athens, Greece,
* in November 1995.
*
* Ported to OpenBSD and NetBSD, with additional transforms, in December 1996,
* by Angelos D. Keromytis.
*
* Additional transforms and features in 1997 and 1998 by Angelos D. Keromytis
* and Niels Provos.
*
* Additional features in 1999 by Angelos D. Keromytis.
*
* Copyright (C) 1995, 1996, 1997, 1998, 1999 by John Ioannidis,
* Angelos D. Keromytis and Niels Provos.
*
* Permission to use, copy, and modify this software without fee
* is hereby granted, provided that this entire notice is included in
* all copies of any software which is or includes a copy or
* modification of this software.
* You may use this code under the GNU public license if you so wish. Please
* contribute changes back to the authors under this freer than GPL license
* so that we may further the use of strong encryption without limitations to
* all.
*
* THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR
* IMPLIED WARRANTY. IN PARTICULAR, NONE OF THE AUTHORS MAKES ANY
* REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE
* MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR
* PURPOSE.
*/
/*
* RFC 2406.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/domain.h>
#include <sys/protosw.h>
#include <sys/socket.h>
#include <sys/errno.h>
#include <sys/time.h>
#include <sys/kernel.h>
#include <machine/cpu.h>
#include <net/if.h>
#include <net/route.h>
#include <net/netisr.h>
#include <netinet/in.h>
#include <netinet/in_systm.h>
#include <netinet/ip.h>
#include <netinet/in_pcb.h>
#include <netinet/in_var.h>
#include <netinet/ip_var.h>
#include <sys/socketvar.h>
#include <net/raw_cb.h>
#ifdef INET6
#include <netinet6/ip6.h>
#include <netinet6/in6_pcb.h>
#include <netinet6/ip6_var.h>
#include <netinet6/icmp6.h>
#endif /* INET6 */
#include <netinet/ip_icmp.h>
#include <netinet/ip_ipsp.h>
#include <netinet/ip_esp.h>
#include <net/pfkeyv2.h>
#ifdef ENCDEBUG
#define DPRINTF(x) if (encdebug) printf x
#else
#define DPRINTF(x)
#endif
#ifndef offsetof
#define offsetof(s, e) ((int)&((s *)0)->e)
#endif
extern struct auth_hash auth_hash_hmac_md5_96;
extern struct auth_hash auth_hash_hmac_sha1_96;
extern struct auth_hash auth_hash_hmac_ripemd_160_96;
struct auth_hash *esp_new_hash[] = {
&auth_hash_hmac_md5_96,
&auth_hash_hmac_sha1_96,
&auth_hash_hmac_ripemd_160_96
};
extern struct enc_xform enc_xform_des;
extern struct enc_xform enc_xform_3des;
extern struct enc_xform enc_xform_blf;
extern struct enc_xform enc_xform_cast5;
extern struct enc_xform enc_xform_skipjack;
struct enc_xform *esp_new_xform[] = {
&enc_xform_des,
&enc_xform_3des,
&enc_xform_blf,
&enc_xform_cast5,
&enc_xform_skipjack,
};
/*
* esp_new_attach() is called from the transformation initialization code.
*/
int
esp_new_attach()
{
return 0;
}
/*
* esp_new_init() is called when an SPI is being set up.
*/
int
esp_new_init(struct tdb *tdbp, struct xformsw *xsp, struct ipsecinit *ii)
{
struct enc_xform *txform = NULL;
struct auth_hash *thash = NULL;
int i;
/* Check whether the encryption algorithm is supported */
for (i = sizeof(esp_new_xform) / sizeof(esp_new_xform[0]) - 1;
i >= 0; i--)
if (ii->ii_encalg == esp_new_xform[i]->type)
break;
if (i < 0)
{
DPRINTF(("esp_new_init(): unsupported encryption algorithm %d specified\n", ii->ii_encalg));
return EINVAL;
}
txform = esp_new_xform[i];
if (ii->ii_enckeylen < txform->minkey)
{
DPRINTF(("esp_new_init(): keylength %d too small (min length is %d) for algorithm %s\n", ii->ii_enckeylen, txform->minkey, txform->name));
return EINVAL;
}
if (ii->ii_enckeylen > txform->maxkey)
{
DPRINTF(("esp_new_init(): keylength %d too large (max length is %d) for algorithm %s\n", ii->ii_enckeylen, txform->maxkey, txform->name));
return EINVAL;
}
if (ii->ii_authalg)
{
for (i = sizeof(esp_new_hash) / sizeof(esp_new_hash[0]) - 1;
i >= 0; i--)
if (ii->ii_authalg == esp_new_hash[i]->type)
break;
if (i < 0)
{
DPRINTF(("esp_new_init(): unsupported authentication algorithm %d specified\n", ii->ii_authalg));
return EINVAL;
}
thash = esp_new_hash[i];
if (ii->ii_authkeylen != thash->keysize)
{
DPRINTF(("esp_new_init(): keylength %d doesn't match algorithm %s keysize (%d)\n", ii->ii_authkeylen, thash->name, thash->keysize));
return EINVAL;
}
tdbp->tdb_authalgxform = thash;
DPRINTF(("esp_new_init(): initialized TDB with hash algorithm %s\n",
thash->name));
}
tdbp->tdb_xform = xsp;
tdbp->tdb_encalgxform = txform;
tdbp->tdb_bitmap = 0;
tdbp->tdb_rpl = AH_HMAC_INITIAL_RPL;
DPRINTF(("esp_new_init(): initialized TDB with enc algorithm %s\n",
txform->name));
tdbp->tdb_ivlen = txform->ivmask;
/* Initialize the IV */
get_random_bytes(tdbp->tdb_iv, tdbp->tdb_ivlen);
if (txform->setkey)
txform->setkey(&tdbp->tdb_key, ii->ii_enckey, ii->ii_enckeylen);
if (thash)
{
/* Precompute the I and O pads of the HMAC */
for (i = 0; i < ii->ii_authkeylen; i++)
ii->ii_authkey[i] ^= HMAC_IPAD_VAL;
MALLOC(tdbp->tdb_ictx, u_int8_t *, thash->ctxsize, M_XDATA, M_WAITOK);
bzero(tdbp->tdb_ictx, thash->ctxsize);
thash->Init(tdbp->tdb_ictx);
thash->Update(tdbp->tdb_ictx, ii->ii_authkey, ii->ii_authkeylen);
thash->Update(tdbp->tdb_ictx, hmac_ipad_buffer,
HMAC_BLOCK_LEN - ii->ii_authkeylen);
for (i = 0; i < ii->ii_authkeylen; i++)
ii->ii_authkey[i] ^= (HMAC_IPAD_VAL ^ HMAC_OPAD_VAL);
MALLOC(tdbp->tdb_octx, u_int8_t *, thash->ctxsize, M_XDATA, M_WAITOK);
bzero(tdbp->tdb_octx, thash->ctxsize);
thash->Init(tdbp->tdb_octx);
thash->Update(tdbp->tdb_octx, ii->ii_authkey, ii->ii_authkeylen);
thash->Update(tdbp->tdb_octx, hmac_opad_buffer,
HMAC_BLOCK_LEN - ii->ii_authkeylen);
}
return 0;
}
int
esp_new_zeroize(struct tdb *tdbp)
{
if (tdbp->tdb_key && tdbp->tdb_encalgxform &&
tdbp->tdb_encalgxform->zerokey)
tdbp->tdb_encalgxform->zerokey(&tdbp->tdb_key);
if (tdbp->tdb_ictx)
{
if (tdbp->tdb_authalgxform)
bzero(tdbp->tdb_ictx, tdbp->tdb_authalgxform->ctxsize);
FREE(tdbp->tdb_ictx, M_XDATA);
tdbp->tdb_ictx = NULL;
}
if (tdbp->tdb_octx)
{
if (tdbp->tdb_authalgxform)
bzero(tdbp->tdb_octx, tdbp->tdb_authalgxform->ctxsize);
FREE(tdbp->tdb_octx, M_XDATA);
tdbp->tdb_octx = NULL;
}
return 0;
}
#define MAXBUFSIZ (AH_ALEN_MAX > ESP_MAX_IVS ? AH_ALEN_MAX : ESP_MAX_IVS)
struct mbuf *
esp_new_input(struct mbuf *m, struct tdb *tdb, int skip, int protoff)
{
struct auth_hash *esph = (struct auth_hash *) tdb->tdb_authalgxform;
struct enc_xform *espx = (struct enc_xform *) tdb->tdb_encalgxform;
int ohlen, oplen, plen, alen, ilen, i, blks, rest, count, off, roff;
u_char iv[MAXBUFSIZ], niv[MAXBUFSIZ], blk[ESP_MAX_BLKS], *lblk;
u_char *idat, *odat, *ivp, *ivn;
struct mbuf *mi, *mo, *m1;
union authctx ctx;
u_int32_t btsx;
ohlen = skip + ESP_NEW_FLENGTH;
blks = espx->blocksize;
if (esph)
alen = AH_HMAC_HASHLEN;
else
alen = 0;
/* Skip the IP header, IP options, SPI, Replay, IV, and any Auth Data */
plen = m->m_pkthdr.len - (skip + 2 * sizeof(u_int32_t) + tdb->tdb_ivlen +
alen);
if ((plen & (blks - 1)) || (plen <= 0))
{
DPRINTF(("esp_new_input(): payload not a multiple of %d octets, SA %s/%08x\n", blks, ipsp_address(tdb->tdb_dst), ntohl(tdb->tdb_spi)));
espstat.esps_badilen++;
m_freem(m);
return NULL;
}
/* Auth covers SPI + SN + IV */
oplen = plen + 2 * sizeof(u_int32_t) + tdb->tdb_ivlen;
/* Replay window checking */
if (tdb->tdb_wnd > 0)
{
m_copydata(m, skip + offsetof(struct esp_new, esp_rpl),
sizeof(u_int32_t), (unsigned char *) &btsx);
btsx = ntohl(btsx);
switch (checkreplaywindow32(btsx, 0, &(tdb->tdb_rpl), tdb->tdb_wnd,
&(tdb->tdb_bitmap)))
{
case 0: /* All's well */
break;
case 1:
DPRINTF(("esp_new_input(): replay counter wrapped for SA %s/%08x\n", ipsp_address(tdb->tdb_dst), ntohl(tdb->tdb_spi)));
espstat.esps_wrap++;
m_freem(m);
return NULL;
case 2:
case 3:
DPRINTF(("esp_new_input(): duplicate packet received in SA %s/%08x\n", ipsp_address(tdb->tdb_dst), ntohl(tdb->tdb_spi)));
espstat.esps_replay++;
m_freem(m);
return NULL;
default:
DPRINTF(("esp_new_input(): bogus value from checkreplaywindow32() in SA %s/%08x\n", ipsp_address(tdb->tdb_dst), ntohl(tdb->tdb_spi)));
m_freem(m);
return NULL;
}
}
/* Update the counters */
tdb->tdb_cur_bytes += m->m_pkthdr.len - ohlen - alen;
espstat.esps_ibytes += m->m_pkthdr.len - ohlen - alen;
/* Hard expiration */
if ((tdb->tdb_flags & TDBF_BYTES) &&
(tdb->tdb_cur_bytes >= tdb->tdb_exp_bytes))
{
pfkeyv2_expire(tdb, SADB_EXT_LIFETIME_HARD);
tdb_delete(tdb, 0, TDBEXP_TIMEOUT);
m_freem(m);
return NULL;
}
/* Notify on expiration */
if ((tdb->tdb_flags & TDBF_SOFT_BYTES) &&
(tdb->tdb_cur_bytes >= tdb->tdb_soft_bytes))
{
pfkeyv2_expire(tdb, SADB_EXT_LIFETIME_SOFT);
tdb->tdb_flags &= ~TDBF_SOFT_BYTES; /* Turn off checking */
}
/* Verify the authenticator */
if (esph)
{
bcopy(tdb->tdb_ictx, &ctx, esph->ctxsize);
/* Copy the authentication data */
m_copydata(m, m->m_pkthdr.len - alen, alen, iv);
/*
* Skip forward to the begining of the ESP header. If we run out
* of mbufs in the process, the check inside the following while()
* loop will catch it.
*/
for (mo = m, i = 0; mo && i + mo->m_len <= skip; mo = mo->m_next)
i += mo->m_len;
off = skip - i;
/* Preserve these for later processing */
roff = off;
m1 = mo;
while (oplen > 0)
{
if (mo == 0)
{
DPRINTF(("esp_new_input(): bad mbuf chain, SA %s/%08x\n",
ipsp_address(tdb->tdb_dst), ntohl(tdb->tdb_spi)));
espstat.esps_hdrops++;
m_freem(m);
return NULL;
}
count = min(mo->m_len - off, oplen);
esph->Update(&ctx, mtod(mo, unsigned char *) + off, count);
oplen -= count;
off = 0;
mo = mo->m_next;
}
esph->Final(niv, &ctx);
bcopy(tdb->tdb_octx, &ctx, esph->ctxsize);
esph->Update(&ctx, niv, esph->hashsize);
esph->Final(niv, &ctx);
if (bcmp(niv, iv, AH_HMAC_HASHLEN))
{
DPRINTF(("esp_new_input(): authentication failed for packet in SA %s/%08x\n", ipsp_address(tdb->tdb_dst), ntohl(tdb->tdb_spi)));
espstat.esps_badauth++;
m_freem(m);
return NULL;
}
}
oplen = plen;
/* Find beginning of encrypted data (actually, the IV) */
mi = m1;
ilen = mi->m_len - roff - 2 * sizeof(u_int32_t);
while (ilen <= 0)
{
mi = mi->m_next;
if (mi == NULL)
{
DPRINTF(("esp_new_input(): bad mbuf chain, SA %s/%08x\n",
ipsp_address(tdb->tdb_dst), ntohl(tdb->tdb_spi)));
espstat.esps_hdrops++;
m_freem(m);
return NULL;
}
ilen += mi->m_len;
}
idat = mtod(mi, unsigned char *) + (mi->m_len - ilen);
m_copydata(mi, mi->m_len - ilen, tdb->tdb_ivlen, iv);
/* Now skip over the IV */
ilen -= tdb->tdb_ivlen;
while (ilen <= 0)
{
mi = mi->m_next;
if (mi == NULL)
{
DPRINTF(("esp_new_input(): bad mbuf chain, SA %s/%08x\n",
ipsp_address(tdb->tdb_dst), ntohl(tdb->tdb_spi)));
espstat.esps_hdrops++;
m_freem(m);
return NULL;
}
ilen += mi->m_len;
}
/*
* Remove the ESP header and IV from the mbuf.
*/
if (roff == 0)
{
/* The ESP header was conveniently at the begining of the mbuf */
m_adj(m1, 2 * sizeof(u_int32_t) + tdb->tdb_ivlen);
if (!(m1->m_flags & M_PKTHDR))
m->m_pkthdr.len -= (2 * sizeof(u_int32_t) + tdb->tdb_ivlen);
}
else
if (roff + 2 * sizeof(u_int32_t) + tdb->tdb_ivlen > m1->m_len)
{
/*
* Part of the ESP header is at the end of this mbuf, so first
* let's remove the remainder of the ESP header from the
* begining of the remainder of the mbuf chain.
*/
m_adj(m1->m_next, roff + 2 * sizeof(u_int32_t) +
tdb->tdb_ivlen - m1->m_len);
m->m_pkthdr.len -= roff + 2 * sizeof(u_int32_t) + tdb->tdb_ivlen -
m1->m_len;
/* Now, let's unlink the mbuf chain for a second...*/
mo = m1->m_next;
m1->m_next = NULL;
/* ...and trim the end of the first part of the chain...sick */
m_adj(m1, -(m1->m_len - roff));
if (!(m1->m_flags & M_PKTHDR))
m->m_pkthdr.len -= (m1->m_len - roff);
/* Finally, let's relink */
m1->m_next = mo;
}
else
{
/*
* The ESP header lies in the "middle" of the mbuf...do an
* overlapping copy of the remainder of the mbuf over the ESP
* header.
*/
bcopy(mtod(m1, u_char *) + roff + 2 * sizeof(u_int32_t) +
tdb->tdb_ivlen,
mtod(m1, u_char *) + roff,
m1->m_len - (roff + 2 * sizeof(u_int32_t) + tdb->tdb_ivlen));
m1->m_len -= (2 * sizeof(u_int32_t) + tdb->tdb_ivlen);
m->m_pkthdr.len -= (2 * sizeof(u_int32_t) + tdb->tdb_ivlen);
}
/* Point to the encrypted data */
idat = mtod(mi, unsigned char *) + (mi->m_len - ilen);
/*
* At this point:
* plen is # of encapsulated payload octets
* ilen is # of octets left in this mbuf
* idat is first encapsulated payload octed in this mbuf
* same for olen and odat
* ivp points to the IV, ivn buffers the next IV.
* mi points to the first mbuf
*
* From now on until the end of the mbuf chain:
* . move the next eight octets of the chain into ivn
* . decrypt idat and xor with ivp
* . swap ivp and ivn.
* . repeat
*/
ivp = iv;
ivn = niv;
rest = ilen % blks;
while (plen > 0) /* while not done */
{
if (ilen < blks)
{
if (rest)
{
bcopy(idat, blk, rest);
odat = idat;
}
do {
mi = (mo = mi)->m_next;
if (mi == NULL)
{
DPRINTF(("esp_new_input(): bad mbuf chain, SA %s/%08x\n",
ipsp_address(tdb->tdb_dst), ntohl(tdb->tdb_spi)));
espstat.esps_hdrops++;
m_freem(m);
return NULL;
}
} while (mi->m_len == 0);
if (mi->m_len < blks - rest)
{
if ((mi = m_pullup(mi, blks - rest)) == NULL)
{
DPRINTF(("esp_new_input(): m_pullup() failed, SA %s/%08x\n", ipsp_address(tdb->tdb_dst), ntohl(tdb->tdb_spi)));
m_freem(m);
espstat.esps_hdrops++;
return NULL;
}
/*
* m_pullup was not called at the beginning of the chain
* but might return a new mbuf, link it into the chain.
*/
mo->m_next = mi;
}
ilen = mi->m_len;
idat = mtod(mi, u_char *);
if (rest)
{
bcopy(idat, blk + rest, blks - rest);
bcopy(blk, ivn, blks);
espx->decrypt(tdb, blk);
for (i = 0; i < blks; i++)
blk[i] ^= ivp[i];
ivp = ivn;
ivn = (ivp == iv) ? niv : iv;
bcopy(blk, odat, rest);
bcopy(blk + rest, idat, blks - rest);
lblk = blk; /* last block touched */
idat += blks - rest;
ilen -= blks - rest;
plen -= blks;
}
rest = ilen % blks;
}
while (ilen >= blks && plen > 0)
{
bcopy(idat, ivn, blks);
espx->decrypt(tdb, idat);
for (i = 0; i < blks; i++)
idat[i] ^= ivp[i];
ivp = ivn;
ivn = (ivp == iv) ? niv : iv;
lblk = idat; /* last block touched */
idat += blks;
ilen -= blks;
plen -= blks;
}
}
/* Save last block (end of padding), if it was in-place decrypted */
if (lblk != blk)
bcopy(lblk, blk, blks);
/*
* Now, the entire chain has been decrypted. As a side effect,
* blk[blks - 1] contains the next protocol, and blk[blks - 2] contains
* the amount of padding the original chain had. Chop off the
* appropriate parts of the chain, and return.
* Verify correct decryption by checking the last padding bytes.
*/
if (blk[blks - 2] + 2 + alen > m->m_pkthdr.len - skip -
2 * sizeof(u_int32_t) - tdb->tdb_ivlen)
{
DPRINTF(("esp_new_input(): invalid padding length %d for packet in SA %s/%08x\n", blk[blks - 2], ipsp_address(tdb->tdb_dst), ntohl(tdb->tdb_spi)));
espstat.esps_badilen++;
m_freem(m);
return NULL;
}
if ((blk[blks - 2] != blk[blks - 3]) && (blk[blks - 2] != 0))
{
DPRINTF(("esp_new_input(): decryption failed for packet in SA %s/%08x\n", ipsp_address(tdb->tdb_dst), ntohl(tdb->tdb_spi)));
espstat.esps_badenc++;
m_freem(m);
return NULL;
}
/* Trim the mbuf chain to remove the trailing authenticator */
m_adj(m, - blk[blks - 2] - 2 - alen);
/* Restore the Next Protocol field */
m_copyback(m, protoff, 1, &blk[blks - 1]);
return m;
}
int
esp_new_output(struct mbuf *m, struct tdb *tdb, struct mbuf **mp, int skip,
int protoff)
{
struct enc_xform *espx = (struct enc_xform *) tdb->tdb_encalgxform;
struct auth_hash *esph = (struct auth_hash *) tdb->tdb_authalgxform;
u_char iv[ESP_MAX_IVS], blk[ESP_MAX_BLKS], auth[AH_ALEN_MAX];
int i, ilen, ohlen, rlen, plen, padding, rest, blks, alen;
struct mbuf *mi, *mo = (struct mbuf *) NULL;
u_char *pad, *idat, *odat, *ivp;
struct esp_new *esp;
union authctx ctx;
blks = espx->blocksize;
ohlen = 2 * sizeof(u_int32_t) + tdb->tdb_ivlen;
rlen = m->m_pkthdr.len - skip; /* Raw payload length */
padding = ((blks - ((rlen + 2) % blks)) % blks) + 2;
plen = rlen + padding; /* Padded payload length */
if (esph)
alen = AH_HMAC_HASHLEN;
else
alen = 0;
espstat.esps_output++;
/*
* Loop through mbuf chain; if we find an M_EXT mbuf with
* more than one reference, replace the rest of the chain.
*/
mi = m;
while (mi != NULL &&
(!(mi->m_flags & M_EXT) ||
(mi->m_ext.ext_ref == NULL &&
mclrefcnt[mtocl(mi->m_ext.ext_buf)] <= 1)))
{
mo = mi;
mi = mi->m_next;
}
if (mi != NULL)
{
/* Replace the rest of the mbuf chain. */
struct mbuf *n = m_copym2(mi, 0, M_COPYALL, M_DONTWAIT);
if (n == NULL)
{
espstat.esps_hdrops++;
m_freem(m);
return ENOBUFS;
}
if (mo != NULL)
mo->m_next = n;
else
m = n;
m_freem(mi);
}
/* Check for replay counter wrap-around in automatic (not manual) keying */
if ((tdb->tdb_rpl == 0) && (tdb->tdb_wnd > 0))
{
DPRINTF(("esp_new_output(): SA %s/%0x8 should have expired\n",
ipsp_address(tdb->tdb_dst), ntohl(tdb->tdb_spi)));
m_freem(m);
espstat.esps_wrap++;
return ENOBUFS;
}
#ifdef INET
/* In IPv4, check for max packet size violations. Not needed in IPv6. */
if (tdb->tdb_dst.sa.sa_family == AF_INET)
if (skip + ohlen + rlen + padding + alen > IP_MAXPACKET)
{
DPRINTF(("esp_new_output(): packet in SA %s/%0x8 got too big\n",
ipsp_address(tdb->tdb_dst), ntohl(tdb->tdb_spi)));
m_freem(m);
espstat.esps_toobig++;
return EMSGSIZE;
}
#endif /* INET */
/* Update the counters */
tdb->tdb_cur_bytes += m->m_pkthdr.len - skip;
espstat.esps_obytes += m->m_pkthdr.len - skip;
/* Hard byte expiration */
if ((tdb->tdb_flags & TDBF_BYTES) &&
(tdb->tdb_cur_bytes >= tdb->tdb_exp_bytes))
{
pfkeyv2_expire(tdb, SADB_EXT_LIFETIME_HARD);
tdb_delete(tdb, 0, TDBEXP_TIMEOUT);
m_freem(m);
return EINVAL;
}
/* Soft byte expiration */
if ((tdb->tdb_flags & TDBF_SOFT_BYTES) &&
(tdb->tdb_cur_bytes >= tdb->tdb_soft_bytes))
{
pfkeyv2_expire(tdb, SADB_EXT_LIFETIME_SOFT);
tdb->tdb_flags &= ~TDBF_SOFT_BYTES; /* Turn off checking */
}
/* Inject ESP header */
mo = m_inject(m, skip, ohlen, M_WAITOK);
if (mo == NULL)
{
DPRINTF(("esp_new_output(): failed to inject ESP header for SA %s/%08x\n", ipsp_address(tdb->tdb_dst), ntohl(tdb->tdb_spi)));
m_freem(m);
espstat.esps_wrap++;
return ENOBUFS;
}
/* Initialize ESP header */
esp = mtod(mo, struct esp_new *);
esp->esp_spi = tdb->tdb_spi;
esp->esp_rpl = htonl(tdb->tdb_rpl++);
/*
* We can cheat and use bcopy() instead of m_copyback() for the
* second copy below, because m_inject() is guaranteed to fit the
* ESP header in one mbuf.
*/
bcopy(tdb->tdb_iv, iv, tdb->tdb_ivlen);
bcopy(iv, esp->esp_iv, tdb->tdb_ivlen);
/* Add padding */
pad = (u_char *) m_pad(m, padding + alen, 0);
if (pad == NULL)
{
DPRINTF(("esp_new_output(): m_pad() failed for SA %s/%08x\n",
ipsp_address(tdb->tdb_dst), ntohl(tdb->tdb_spi)));
return ENOBUFS;
}
/* Self-describing padding */
for (ilen = 0; ilen < padding - 2; ilen++)
pad[ilen] = ilen + 1;
/* Fix padding length and Next Protocol in padding itself */
pad[padding - 2] = padding - 2;
m_copydata(m, protoff, 1, &pad[padding - 1]);
/* Fix Next Protocol in IPv4/IPv6 header */
ilen = IPPROTO_ESP;
m_copyback(m, protoff, 1, (u_char *) &ilen);
mi = mo;
/* If it's just the ESP header, just skip to the next mbuf */
if (mi->m_len == ohlen)
{
mi = mi->m_next;
ilen = mi->m_len;
idat = mtod(mi, u_char *);
}
else
{ /* There's data at the end of this mbuf, skip over ESP header */
ilen = mi->m_len - ohlen;
idat = mtod(mi, u_char *) + ohlen;
}
/* Authenticate the ESP header */
if (esph)
{
bcopy(tdb->tdb_ictx, &ctx, esph->ctxsize);
esph->Update(&ctx, (unsigned char *) esp,
2 * sizeof(u_int32_t) + tdb->tdb_ivlen);
}
/* Encrypt the payload */
ivp = iv;
rest = ilen % blks;
while (plen > 0) /* while not done */
{
if (ilen < blks)
{
if (rest)
{
if (ivp == blk)
{
bcopy(blk, iv, blks);
ivp = iv;
}
bcopy(idat, blk, rest);
odat = idat;
}
do {
mi = (mo = mi)->m_next;
if (mi == NULL)
{
DPRINTF(("esp_new_output(): bad mbuf chain, SA %s/%08x\n",
ipsp_address(tdb->tdb_dst), ntohl(tdb->tdb_spi)));
espstat.esps_hdrops++;
m_freem(m);
return EINVAL;
}
} while (mi->m_len == 0);
if (mi->m_len < blks - rest)
{
if ((mi = m_pullup(mi, blks - rest)) == NULL)
{
DPRINTF(("esp_new_output(): m_pullup() failed, SA %s/%08x\n", ipsp_address(tdb->tdb_dst), ntohl(tdb->tdb_spi)));
m_freem(m);
espstat.esps_hdrops++;
return ENOBUFS;
}
/*
* m_pullup was not called at the beginning of the chain
* but might return a new mbuf, link it into the chain.
*/
mo->m_next = mi;
}
ilen = mi->m_len;
idat = mtod(mi, u_char *);
if (rest)
{
bcopy(idat, blk + rest, blks - rest);
for (i = 0; i < blks; i++)
blk[i] ^= ivp[i];
espx->encrypt(tdb, blk);
if (esph)
esph->Update(&ctx, blk, blks);
ivp = blk;
bcopy(blk, odat, rest);
bcopy(blk + rest, idat, blks - rest);
idat += blks - rest;
ilen -= blks - rest;
plen -= blks;
}
rest = ilen % blks;
}
while (ilen >= blks && plen > 0)
{
for (i = 0; i < blks; i++)
idat[i] ^= ivp[i];
espx->encrypt(tdb, idat);
if (esph)
esph->Update(&ctx, idat, blks);
ivp = idat;
idat += blks;
ilen -= blks;
plen -= blks;
}
}
/* Put in authentication data */
if (esph)
{
esph->Final(auth, &ctx);
bcopy(tdb->tdb_octx, &ctx, esph->ctxsize);
esph->Update(&ctx, auth, esph->hashsize);
esph->Final(auth, &ctx);
/* Copy the final authenticator -- cheat and use bcopy() again */
bcopy(auth, pad + padding, alen);
}
/* Save the last encrypted block, to be used as the next IV */
bcopy(ivp, tdb->tdb_iv, tdb->tdb_ivlen);
*mp = m;
return 0;
}
/*
* return 0 on success
* return 1 for counter == 0
* return 2 for very old packet
* return 3 for packet within current window but already received
*/
int
checkreplaywindow32(u_int32_t seq, u_int32_t initial, u_int32_t *lastseq,
u_int32_t window, u_int32_t *bitmap)
{
u_int32_t diff;
seq -= initial;
if (seq == 0)
return 1;
if (seq > *lastseq - initial)
{
diff = seq - (*lastseq - initial);
if (diff < window)
*bitmap = ((*bitmap) << diff) | 1;
else
*bitmap = 1;
*lastseq = seq + initial;
return 0;
}
diff = *lastseq - initial - seq;
if (diff >= window)
{
espstat.esps_wrap++;
return 2;
}
if ((*bitmap) & (((u_int32_t) 1) << diff))
{
espstat.esps_replay++;
return 3;
}
*bitmap |= (((u_int32_t) 1) << diff);
return 0;
}
|