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
|
/* $OpenBSD: ip_esp3desmd5.c,v 1.5 1997/06/20 05:41:51 provos Exp $ */
/*
* The author of this code is John Ioannidis, ji@tla.org,
* (except when noted otherwise).
*
* This code was written for BSD/OS in Athens, Greece, in November 1995.
*
* Ported to OpenBSD and NetBSD, with additional transforms, in December 1996,
* by Angelos D. Keromytis, kermit@forthnet.gr.
*
* Copyright (C) 1995, 1996, 1997 by John Ioannidis and Angelos D. Keromytis.
*
* 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.
*
* THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR
* IMPLIED WARRANTY. IN PARTICULAR, NEITHER AUTHOR MAKES ANY
* REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE
* MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR
* PURPOSE.
*/
/*
* Based on draft-ietf-ipsec-esp-3des-md5-00.txt.
*/
#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>
#include <net/encap.h>
#include <netinet/ip_icmp.h>
#include <netinet/ip_ipsp.h>
#include <netinet/ip_esp.h>
extern struct ifnet loif;
extern void des_ecb_encrypt(caddr_t, caddr_t, caddr_t, int);
extern void des_set_key(caddr_t, caddr_t);
int
esp3desmd5_attach()
{
return 0;
}
/*
* esp3desmd5_init() is called when an SPI is being set up. It interprets the
* encap_msghdr present in m, and sets up the transformation data, in
* this case, the encryption and decryption key schedules
*/
int
esp3desmd5_init(struct tdb *tdbp, struct xformsw *xsp, struct mbuf *m)
{
struct esp3desmd5_xdata *xd;
struct encap_msghdr *em;
struct esp3desmd5_xencap txd;
u_char buf[ESP3DESMD5_KEYSZ];
int len;
MD5_CTX ctx;
tdbp->tdb_xform = xsp;
m = m_pullup(m, ESP3DESMD5_ULENGTH);
if (m == NULL)
{
#ifdef ENCDEBUG
if (encdebug)
printf("esp3desmd5_init: can't pull up %d bytes\n", ESP_ULENGTH);
#endif ENCDEBUG
return ENOBUFS;
}
MALLOC(tdbp->tdb_xdata, caddr_t, sizeof (struct esp3desmd5_xdata),
M_XDATA, M_WAITOK);
if (tdbp->tdb_xdata == NULL)
return ENOBUFS;
bzero(tdbp->tdb_xdata, sizeof (struct esp3desmd5_xdata));
xd = (struct esp3desmd5_xdata *)tdbp->tdb_xdata;
em = mtod(m, struct encap_msghdr *);
if (em->em_msglen - EMT_SETSPI_FLEN != ESP3DESMD5_ULENGTH)
{
free((caddr_t)tdbp->tdb_xdata, M_XDATA);
tdbp->tdb_xdata = NULL;
return EINVAL;
}
m_copydata(m, EMT_SETSPI_FLEN, em->em_msglen - EMT_SETSPI_FLEN, (caddr_t)&txd);
if ((txd.edx_ivlen != 0) && (txd.edx_ivlen != 8))
{
free((caddr_t)tdbp->tdb_xdata, M_XDATA);
tdbp->tdb_xdata = NULL;
return EINVAL;
}
bzero(ipseczeroes, IPSEC_ZEROES_SIZE); /* paranoid */
xd->edx_ivlen = txd.edx_ivlen;
xd->edx_bitmap = 0;
xd->edx_wnd = txd.edx_wnd;
/* Fix the IV */
#ifdef ENCDEBUG
if (encdebug)
{
if (txd.edx_initiator)
printf("INITIATOR\n");
printf("IV length: %d\n", txd.edx_ivlen);
}
#endif
if (txd.edx_ivlen)
bcopy(txd.edx_ivv, xd->edx_iv, ESP3DESMD5_IVS);
else
{
for (len = 0; len < ESP3DESMD5_KEYSZ; len++)
buf[len] = txd.edx_initiator ? ESP3DESMD5_IPADI :
ESP3DESMD5_IPADR;
MD5Init(&ctx);
MD5Update(&ctx, buf, ESP3DESMD5_KEYSZ);
MD5Update(&ctx, txd.edx_key, txd.edx_keylen);
MD5Final(buf, &ctx);
bcopy(buf, xd->edx_iv, ESP3DESMD5_IVS);
#ifdef ENCDEBUG
printf("IV ");
if (encdebug)
for (len = 0; len < ESP3DESMD5_IVS; len++)
printf(" %02x", xd->edx_iv[len]);
printf("\n");
#endif
}
/* DES key */
for (len = 1; len < ESP3DESMD5_KEYSZ; len++)
buf[len] = txd.edx_initiator ? ESP3DESMD5_DPADI : ESP3DESMD5_DPADR;
buf[0] = 0;
MD5Init(&ctx);
MD5Update(&ctx, buf, ESP3DESMD5_KEYSZ);
MD5Update(&ctx, txd.edx_key, txd.edx_keylen);
MD5Final(buf, &ctx);
des_set_key((caddr_t)buf, (caddr_t)(xd->edx_eks[0]));
buf[0] = 1;
MD5Init(&ctx);
MD5Update(&ctx, buf, ESP3DESMD5_KEYSZ);
MD5Update(&ctx, txd.edx_key, txd.edx_keylen);
MD5Final(buf, &ctx);
des_set_key((caddr_t)buf, (caddr_t)(xd->edx_eks[1]));
buf[0] = 2;
MD5Init(&ctx);
MD5Update(&ctx, buf, ESP3DESMD5_KEYSZ);
MD5Update(&ctx, txd.edx_key, txd.edx_keylen);
MD5Final(buf, &ctx);
des_set_key((caddr_t)buf, (caddr_t)(xd->edx_eks[2]));
/* HMAC contexts */
MD5Init(&ctx);
for (len = 0; len < ESP3DESMD5_KEYSZ; len++)
buf[len] = txd.edx_initiator ? ESP3DESMD5_HPADI : ESP3DESMD5_HPADR;
MD5Update(&ctx, buf, ESP3DESMD5_KEYSZ);
MD5Update(&ctx, txd.edx_key, txd.edx_keylen);
MD5Final(buf, &ctx);
bzero(buf + ESP3DESMD5_ALEN, ESP3DESMD5_KEYSZ - ESP3DESMD5_ALEN);
for (len = 0; len < ESP3DESMD5_KEYSZ; len++)
buf[len] ^= ESP3DESMD5_IPAD_VAL;
MD5Init(&ctx);
MD5Update(&ctx, buf, ESP3DESMD5_KEYSZ);
xd->edx_ictx = ctx;
for (len = 0; len < ESP3DESMD5_KEYSZ; len++)
buf[len] ^= (ESP3DESMD5_IPAD_VAL ^ ESP3DESMD5_OPAD_VAL);
MD5Init(&ctx);
MD5Update(&ctx, buf, ESP3DESMD5_KEYSZ);
xd->edx_octx = ctx;
/* Replay counter */
for (len = 0; len < ESP3DESMD5_KEYSZ; len++)
buf[len] = txd.edx_initiator ? ESP3DESMD5_RPADI :
ESP3DESMD5_RPADR;
MD5Init(&ctx);
MD5Update(&ctx, buf, ESP3DESMD5_KEYSZ);
MD5Update(&ctx, txd.edx_key, txd.edx_keylen);
MD5Final(buf, &ctx);
bcopy(buf, (unsigned char *)&(xd->edx_rpl), ESP3DESMD5_RPLENGTH);
xd->edx_initial = xd->edx_rpl - 1;
#ifdef ENCDEBUG
if (encdebug)
printf("Initial replay counter: %x (%x)\n", xd->edx_rpl,
xd->edx_initial);
#endif
bzero(&txd, sizeof(struct esp3desmd5_xencap));
bzero(buf, ESP3DESMD5_KEYSZ);
bzero(&ctx, sizeof(MD5_CTX));
return 0;
}
int
esp3desmd5_zeroize(struct tdb *tdbp)
{
FREE(tdbp->tdb_xdata, M_XDATA);
return 0;
}
struct mbuf *
esp3desmd5_input(struct mbuf *m, struct tdb *tdb)
{
struct esp3desmd5_xdata *xd;
struct ip *ip, ipo;
u_char iv[8], niv[8], blk[8], auth[ESP3DESMD5_ALEN];
u_char iauth[ESP3DESMD5_ALEN];
u_char *idat, *odat;
struct esp *esp;
struct ifnet *rcvif;
int plen, ilen, olen, i, authp, oplen, errc;
u_int32_t rplc, tbitmap, trpl;
u_char padsize, nextproto;
struct mbuf *mi, *mo;
MD5_CTX ctx;
xd = (struct esp3desmd5_xdata *)tdb->tdb_xdata;
rcvif = m->m_pkthdr.rcvif;
if (rcvif == NULL)
{
#ifdef ENCDEBUG
if (encdebug)
printf("esp3desmd5_input: receive interface is NULL!!!\n");
#endif ENCDEBUG
rcvif = &loif;
}
ip = mtod(m, struct ip *);
ipo = *ip;
esp = (struct esp *)(ip + 1);
plen = m->m_pkthdr.len - sizeof (struct ip) - sizeof (u_long) -
xd->edx_ivlen;
if (plen & 07)
{
#ifdef ENCDEBUG
if (encdebug)
printf("esp3desmd5_input: payload not a multiple of 8 octets\n");
#endif ENCDEBUG
espstat.esps_badilen++;
m_freem(m);
return NULL;
}
oplen = plen;
ilen = m->m_len - sizeof (struct ip) - ESP3DESMD5_IVS - sizeof(u_long);
idat = mtod(m, unsigned char *) + sizeof (struct ip) + sizeof(u_long) +
ESP3DESMD5_IVS;
if (xd->edx_ivlen == 0) /* KeyIV in use */
{
bcopy(xd->edx_iv, iv, ESP3DESMD5_IVS);
ilen += ESP3DESMD5_IVS;
idat -= ESP3DESMD5_IVS;
}
else
bcopy(idat - ESP3DESMD5_IVS, iv, ESP3DESMD5_IVS);
olen = ilen;
odat = idat;
mi = mo = m;
i = 0;
authp = 0;
ctx = xd->edx_ictx;
MD5Update(&ctx, (unsigned char *)&(tdb->tdb_spi), sizeof(u_int32_t));
MD5Update(&ctx, iv, ESP3DESMD5_IVS);
#ifdef ENCDEBUG
printf("IV ");
for (i = 0; i < ESP3DESMD5_IVS; i++)
printf(" %02x", iv[i]);
printf("\n");
i = 0;
#endif
/*
* 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
* iv contains the IV.
* mi and mo point to the first mbuf
*
* From now on until the end of the mbuf chain:
* . move the next eight octets of the chain into blk[]
* (ilen, idat, and mi are adjusted accordingly)
* and save it back into iv[]
* . decrypt blk[], xor with iv[], put back into chain
* (olen, odat, amd mo are adjusted accordingly)
* . repeat
*/
while (plen > 0) /* while not done */
{
while (ilen == 0) /* we exhausted previous mbuf */
{
mi = mi->m_next;
if (mi == NULL)
panic("esp3desmd5_input: bad chain (i)\n");
ilen = mi->m_len;
idat = (u_char *)mi->m_data;
}
blk[i] = niv[i] = *idat++;
i++;
ilen--;
if (i == 8)
{
des_ecb_encrypt(blk, blk, (caddr_t)(xd->edx_eks[2]),
0);
des_ecb_encrypt(blk, blk, (caddr_t)(xd->edx_eks[1]),
0);
des_ecb_encrypt(blk, blk, (caddr_t)(xd->edx_eks[0]),
0);
for (i=0; i<8; i++)
{
while (olen == 0)
{
mo = mo->m_next;
if (mo == NULL)
panic("esp3desmd5_input: bad chain (o)\n");
olen = mo->m_len;
odat = (u_char *)mo->m_data;
}
*odat = blk[i] ^ iv[i];
iv[i] = niv[i];
blk[i] = *odat++; /* needed elsewhere */
olen--;
}
i = 0;
if (plen < ESP3DESMD5_ALEN)
{
bcopy(blk, auth + authp, ESP3DESMD5_DESBLK);
authp += ESP3DESMD5_DESBLK;
#ifdef ENCDEBUG
if (encdebug)
printf("Copying authenticator from %d\n",
plen);
#endif
}
else
{
if (plen == ESP3DESMD5_ALEN + 1)
{
nextproto = blk[7];
padsize = blk[6];
#ifdef ENCDEBUG
if (encdebug)
printf("Next protocol: %d\nPadsize: %d\n", nextproto,
padsize);
#endif
}
else
if (plen + 7 == oplen)
{
#ifdef ENCDEBUG
if (encdebug)
printf("SEQ %02x %02x %02x %02x\n",
blk[0], blk[1], blk[2],
blk[3]);
#endif
tbitmap = xd->edx_bitmap; /* Save it */
trpl = xd->edx_rpl;
rplc = ntohl(*((u_int32_t *)blk));
if ((errc = checkreplaywindow32(rplc, xd->edx_initial, &(xd->edx_rpl), xd->edx_wnd, &(xd->edx_bitmap))) != 0)
{
switch (errc)
{
case 1:
#ifdef ENCDEBUG
printf("esp3desmd5_input: replay counter wrapped\n");
#endif
espstat.esps_wrap++;
break;
case 2:
#ifdef ENCDEBUG
printf("esp3desmd5_input: received old packet, seq = %08x\n", rplc);
#endif
espstat.esps_replay++;
break;
case 3:
#ifdef ENCDEBUG
printf("esp3desmd5_input: packet already received\n");
#endif
espstat.esps_replay++;
break;
}
m_freem(m);
return NULL;
}
}
MD5Update(&ctx, blk, ESP3DESMD5_DESBLK);
}
}
plen--;
}
/*
* Now, the entire chain has been decrypted.
*/
MD5Final(iauth, &ctx);
ctx = xd->edx_octx;
MD5Update(&ctx, iauth, ESP3DESMD5_ALEN);
MD5Final(iauth, &ctx);
#ifdef ENCDEBUG
printf("RECEIVED ");
for (rplc = 0; rplc < ESP3DESMD5_ALEN; rplc++)
printf(" %02x", auth[rplc]);
printf("\nSHOULD HAVE ");
for (rplc = 0; rplc < ESP3DESMD5_ALEN; rplc++)
printf(" %02x", iauth[rplc]);
printf("\n");
#endif
if (bcmp(auth, iauth, ESP3DESMD5_ALEN))
{
#ifdef ENCDEBUG
if (encdebug)
printf("esp3desmd5_input: bad auth\n");
#endif
xd->edx_rpl = trpl;
xd->edx_bitmap = tbitmap; /* Restore */
espstat.esps_badauth++;
m_freem(m);
return NULL;
}
m_adj(m, - padsize - 2 - ESP3DESMD5_ALEN);
m_adj(m, 4 + xd->edx_ivlen + ESP3DESMD5_RPLENGTH);
if (m->m_len < sizeof (struct ip))
{
m = m_pullup(m, sizeof (struct ip));
if (m == NULL)
{
xd->edx_rpl = trpl;
xd->edx_bitmap = tbitmap;
return NULL;
}
}
ip = mtod(m, struct ip *);
ipo.ip_p = nextproto;
ipo.ip_id = htons(ipo.ip_id);
ipo.ip_off = 0;
ipo.ip_len += sizeof (struct ip) - ESP3DESMD5_RPLENGTH - 4 -
xd->edx_ivlen - padsize - 2 - ESP3DESMD5_ALEN;
#ifdef ENCDEBUG
if (encdebug)
printf("IP packet size %d\n", ipo.ip_len);
#endif
ipo.ip_len = htons(ipo.ip_len);
ipo.ip_sum = 0;
*ip = ipo;
ip->ip_sum = in_cksum(m, sizeof (struct ip));
return m;
}
int
esp3desmd5_output(struct mbuf *m, struct sockaddr_encap *gw, struct tdb *tdb, struct mbuf **mp)
{
struct esp3desmd5_xdata *xd;
struct ip *ip, ipo;
int i, ilen, olen, ohlen, nh, rlen, plen, padding;
u_int32_t rplc;
u_long spi;
struct mbuf *mi, *mo, *ms;
u_char *pad, *idat, *odat;
u_char iv[ESP3DESMD5_IVS], blk[8], auth[ESP3DESMD5_ALEN];
MD5_CTX ctx;
espstat.esps_output++;
m = m_pullup(m, sizeof (struct ip)); /* Get IP header in one mbuf */
if (m == NULL)
return ENOBUFS;
ip = mtod(m, struct ip *);
spi = tdb->tdb_spi;
xd = (struct esp3desmd5_xdata *)tdb->tdb_xdata;
ilen = ntohs(ip->ip_len); /* Size of the packet */
ohlen = sizeof (u_int32_t) + xd->edx_ivlen; /* size of plaintext ESP */
if (xd->edx_rpl == xd->edx_initial)
{
#ifdef ENCDEBUG
if (encdebug)
printf("esp3desmd5_output: replay counter wrapped\n");
#endif
espstat.esps_wrap++;
return EHOSTDOWN; /* XXX */
}
ipo = *ip;
nh = ipo.ip_p;
#ifdef ENCDEBUG
if (encdebug)
printf("esp3desmd5_output: next protocol is %d\n", nh);
#endif
/* Raw payload length */
rlen = ESP3DESMD5_RPLENGTH + ilen - sizeof (struct ip);
padding = ((8 - ((rlen + 2) % 8)) % 8) + 2;
pad = (u_char *)m_pad(m, padding);
if (pad == NULL)
return ENOBUFS;
pad[padding-2] = padding - 2;
pad[padding-1] = nh;
#ifdef ENCDEBUG
if (encdebug)
printf("esp3desmd5_output: padding %d bytes\n", padding);
#endif
plen = rlen + padding + ESP3DESMD5_ALEN;
ctx = xd->edx_ictx; /* Get inner padding cached */
bcopy(xd->edx_iv, iv, ESP3DESMD5_IVS);
MD5Update(&ctx, (u_char *)&spi, sizeof(u_long));
MD5Update(&ctx, iv, ESP3DESMD5_IVS);
rplc = htonl(xd->edx_rpl);
MD5Update(&ctx, (unsigned char *)&rplc, ESP3DESMD5_RPLENGTH);
xd->edx_rpl++;
#ifdef ENCDEBUG
if (encdebug)
printf("esp3desmd5_output: using replay counter %x\n",
xd->edx_rpl - 1);
#endif
mi = m;
/* MD5 the data */
while (mi != NULL)
{
#ifdef ENCDEBUG
if (encdebug)
printf("esp3desmd5_output: MD5'ing %d bytes\n", mi->m_len);
#endif
if (mi == m)
MD5Update(&ctx, (u_char *)mi->m_data + sizeof(struct ip),
mi->m_len - sizeof(struct ip));
else
MD5Update(&ctx, (u_char *)mi->m_data, mi->m_len);
mi = mi->m_next;
}
MD5Final(auth, &ctx);
ctx = xd->edx_octx;
MD5Update(&ctx, auth, ESP3DESMD5_ALEN);
MD5Final(auth, &ctx); /* That's the authenticator */
/*
* This routine is different from espdes_output() in that
* here we construct the whole packet before starting encrypting.
*/
m = m_pullup(m, sizeof(struct ip) + ESP3DESMD5_RPLENGTH +
sizeof(u_int32_t) + xd->edx_ivlen);
if (m == NULL)
return ENOBUFS;
/* Copy data if necessary */
if (m->m_len - sizeof(struct ip))
{
#ifdef ENCDEBUG
if (encdebug)
printf("esp3desmd5_output: pushing data\n");
#endif
ms = m_copym(m, sizeof(struct ip), m->m_len - sizeof(struct ip),
M_DONTWAIT);
if (ms == NULL)
return ENOBUFS;
ms->m_next = m->m_next;
m->m_next = ms;
m->m_len = sizeof(struct ip);
}
/* Copy SPI, IV (or not) and replay counter */
bcopy((caddr_t)&spi, mtod(m, caddr_t) + sizeof (struct ip),
sizeof (u_int32_t));
bcopy((caddr_t)iv, mtod(m, caddr_t) + sizeof (struct ip) +
sizeof (u_int32_t), xd->edx_ivlen);
bcopy((caddr_t)&rplc, mtod(m, caddr_t) + sizeof(struct ip) +
sizeof(u_int32_t) + xd->edx_ivlen, ESP3DESMD5_RPLENGTH);
#ifdef ENCDEBUG
if (encdebug)
printf("esp3desmd5_output: replay counter (wire value) %x\n", rplc);
#endif
/* Adjust the length accordingly */
m->m_len += sizeof(u_int32_t) + ESP3DESMD5_RPLENGTH + xd->edx_ivlen;
m->m_pkthdr.len += sizeof(u_int32_t) + ESP3DESMD5_RPLENGTH +
xd->edx_ivlen;
#ifdef ENCDEBUG
if (encdebug)
printf("esp3desmd5_output: mbuf chain length %d\n", m->m_pkthdr.len);
#endif
/* Let's append the authenticator too */
MGET(ms, M_DONTWAIT, MT_DATA);
if (ms == NULL)
return ENOBUFS;
bcopy(auth, mtod(ms, u_char *), ESP3DESMD5_ALEN);
ms->m_len = ESP3DESMD5_ALEN;
m_cat(m, ms);
m->m_pkthdr.len += ESP3DESMD5_ALEN; /* Adjust length */
#ifdef ENCDEBUG
if (encdebug)
printf("esp3desmd5_output: final mbuf chain length %d\n",
m->m_pkthdr.len);
#endif
ilen = olen = m->m_len - sizeof (struct ip) - sizeof(u_int32_t) -
xd->edx_ivlen;
idat = odat = mtod(m, u_char *) + sizeof (struct ip) +
sizeof(u_int32_t) + xd->edx_ivlen;
i = 0;
mi = mo = m;
#ifdef ENCDEBUG
if (encdebug)
printf("esp3desmd5_output: starting encryption with ilen=%d, plen=%d\n",
ilen, plen);
#endif
while (plen > 0) /* while not done */
{
while (ilen == 0) /* we exhausted previous mbuf */
{
mi = mi->m_next;
if (mi == NULL)
panic("esp3desmd5_output: bad chain (i)\n");
ilen = mi->m_len;
idat = (u_char *)mi->m_data;
}
blk[i] = *idat++ ^ iv[i];
i++;
ilen--;
if (i == 8) /* We have full block */
{
des_ecb_encrypt(blk, blk, (caddr_t)(xd->edx_eks[0]),
1);
des_ecb_encrypt(blk, blk, (caddr_t)(xd->edx_eks[1]),
1);
des_ecb_encrypt(blk, blk, (caddr_t)(xd->edx_eks[2]),
1);
for (i=0; i<8; i++)
{
while (olen == 0)
{
mo = mo->m_next;
if (mo == NULL)
panic("esp3desmd5_output: bad chain (o)\n");
olen = mo->m_len;
odat = (u_char *)mo->m_data;
}
*odat++ = blk[i];
iv[i] = blk[i];
olen--;
}
i = 0;
}
plen--;
}
#ifdef ENCDEBUG
if (encdebug)
printf("esp3desmd5_output: almost done now\n");
#endif
if (xd->edx_ivlen != 0)
bcopy(iv, xd->edx_iv, ESP3DESMD5_IVS); /* New IV */
/* Fix the length and the next protocol, copy back and off we go */
ipo.ip_len = htons(sizeof (struct ip) + ohlen + rlen + padding +
ESP3DESMD5_ALEN);
ipo.ip_p = IPPROTO_ESP;
bcopy((caddr_t)&ipo, mtod(m, caddr_t), sizeof(struct ip));
*mp = m;
return 0;
}
|