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#include <crypto/hash.h>
46#include <crypto/skcipher.h>
47#include <linux/err.h>
48#include <linux/module.h>
49#include <linux/kernel.h>
50#include <linux/init.h>
51#include <linux/types.h>
52#include <linux/slab.h>
53#include <linux/string.h>
54#include <linux/mm.h>
55#include <linux/ppp_defs.h>
56#include <linux/ppp-comp.h>
57#include <linux/scatterlist.h>
58#include <asm/unaligned.h>
59
60#include "ppp_mppe.h"
61
62MODULE_AUTHOR("Frank Cusack <fcusack@fcusack.com>");
63MODULE_DESCRIPTION("Point-to-Point Protocol Microsoft Point-to-Point Encryption support");
64MODULE_LICENSE("Dual BSD/GPL");
65MODULE_ALIAS("ppp-compress-" __stringify(CI_MPPE));
66MODULE_VERSION("1.0.2");
67
68static unsigned int
69setup_sg(struct scatterlist *sg, const void *address, unsigned int length)
70{
71 sg_set_buf(sg, address, length);
72 return length;
73}
74
75#define SHA1_PAD_SIZE 40
76
77
78
79
80
81
82struct sha_pad {
83 unsigned char sha_pad1[SHA1_PAD_SIZE];
84 unsigned char sha_pad2[SHA1_PAD_SIZE];
85};
86static struct sha_pad *sha_pad;
87
88static inline void sha_pad_init(struct sha_pad *shapad)
89{
90 memset(shapad->sha_pad1, 0x00, sizeof(shapad->sha_pad1));
91 memset(shapad->sha_pad2, 0xF2, sizeof(shapad->sha_pad2));
92}
93
94
95
96
97struct ppp_mppe_state {
98 struct crypto_skcipher *arc4;
99 struct crypto_ahash *sha1;
100 unsigned char *sha1_digest;
101 unsigned char master_key[MPPE_MAX_KEY_LEN];
102 unsigned char session_key[MPPE_MAX_KEY_LEN];
103 unsigned keylen;
104
105
106
107 unsigned char bits;
108 unsigned ccount;
109 unsigned stateful;
110 int discard;
111 int sanity_errors;
112 int unit;
113 int debug;
114 struct compstat stats;
115};
116
117
118#define MPPE_BIT_A 0x80
119#define MPPE_BIT_B 0x40
120#define MPPE_BIT_C 0x20
121#define MPPE_BIT_D 0x10
122
123#define MPPE_BIT_FLUSHED MPPE_BIT_A
124#define MPPE_BIT_ENCRYPTED MPPE_BIT_D
125
126#define MPPE_BITS(p) ((p)[4] & 0xf0)
127#define MPPE_CCOUNT(p) ((((p)[4] & 0x0f) << 8) + (p)[5])
128#define MPPE_CCOUNT_SPACE 0x1000
129
130#define MPPE_OVHD 2
131#define SANITY_MAX 1600
132
133
134
135
136
137static void get_new_key_from_sha(struct ppp_mppe_state * state)
138{
139 AHASH_REQUEST_ON_STACK(req, state->sha1);
140 struct scatterlist sg[4];
141 unsigned int nbytes;
142
143 sg_init_table(sg, 4);
144
145 nbytes = setup_sg(&sg[0], state->master_key, state->keylen);
146 nbytes += setup_sg(&sg[1], sha_pad->sha_pad1,
147 sizeof(sha_pad->sha_pad1));
148 nbytes += setup_sg(&sg[2], state->session_key, state->keylen);
149 nbytes += setup_sg(&sg[3], sha_pad->sha_pad2,
150 sizeof(sha_pad->sha_pad2));
151
152 ahash_request_set_tfm(req, state->sha1);
153 ahash_request_set_callback(req, 0, NULL, NULL);
154 ahash_request_set_crypt(req, sg, state->sha1_digest, nbytes);
155
156 crypto_ahash_digest(req);
157 ahash_request_zero(req);
158}
159
160
161
162
163
164static void mppe_rekey(struct ppp_mppe_state * state, int initial_key)
165{
166 struct scatterlist sg_in[1], sg_out[1];
167 SKCIPHER_REQUEST_ON_STACK(req, state->arc4);
168
169 skcipher_request_set_tfm(req, state->arc4);
170 skcipher_request_set_callback(req, 0, NULL, NULL);
171
172 get_new_key_from_sha(state);
173 if (!initial_key) {
174 crypto_skcipher_setkey(state->arc4, state->sha1_digest,
175 state->keylen);
176 sg_init_table(sg_in, 1);
177 sg_init_table(sg_out, 1);
178 setup_sg(sg_in, state->sha1_digest, state->keylen);
179 setup_sg(sg_out, state->session_key, state->keylen);
180 skcipher_request_set_crypt(req, sg_in, sg_out, state->keylen,
181 NULL);
182 if (crypto_skcipher_encrypt(req))
183 printk(KERN_WARNING "mppe_rekey: cipher_encrypt failed\n");
184 } else {
185 memcpy(state->session_key, state->sha1_digest, state->keylen);
186 }
187 if (state->keylen == 8) {
188
189 state->session_key[0] = 0xd1;
190 state->session_key[1] = 0x26;
191 state->session_key[2] = 0x9e;
192 }
193 crypto_skcipher_setkey(state->arc4, state->session_key, state->keylen);
194 skcipher_request_zero(req);
195}
196
197
198
199
200static void *mppe_alloc(unsigned char *options, int optlen)
201{
202 struct ppp_mppe_state *state;
203 unsigned int digestsize;
204
205 if (optlen != CILEN_MPPE + sizeof(state->master_key) ||
206 options[0] != CI_MPPE || options[1] != CILEN_MPPE)
207 goto out;
208
209 state = kzalloc(sizeof(*state), GFP_KERNEL);
210 if (state == NULL)
211 goto out;
212
213
214 state->arc4 = crypto_alloc_skcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC);
215 if (IS_ERR(state->arc4)) {
216 state->arc4 = NULL;
217 goto out_free;
218 }
219
220 state->sha1 = crypto_alloc_ahash("sha1", 0, CRYPTO_ALG_ASYNC);
221 if (IS_ERR(state->sha1)) {
222 state->sha1 = NULL;
223 goto out_free;
224 }
225
226 digestsize = crypto_ahash_digestsize(state->sha1);
227 if (digestsize < MPPE_MAX_KEY_LEN)
228 goto out_free;
229
230 state->sha1_digest = kmalloc(digestsize, GFP_KERNEL);
231 if (!state->sha1_digest)
232 goto out_free;
233
234
235 memcpy(state->master_key, &options[CILEN_MPPE],
236 sizeof(state->master_key));
237 memcpy(state->session_key, state->master_key,
238 sizeof(state->master_key));
239
240
241
242
243
244
245 return (void *)state;
246
247out_free:
248 kfree(state->sha1_digest);
249 crypto_free_ahash(state->sha1);
250 crypto_free_skcipher(state->arc4);
251 kfree(state);
252out:
253 return NULL;
254}
255
256
257
258
259static void mppe_free(void *arg)
260{
261 struct ppp_mppe_state *state = (struct ppp_mppe_state *) arg;
262 if (state) {
263 kfree(state->sha1_digest);
264 crypto_free_ahash(state->sha1);
265 crypto_free_skcipher(state->arc4);
266 kfree(state);
267 }
268}
269
270
271
272
273static int
274mppe_init(void *arg, unsigned char *options, int optlen, int unit, int debug,
275 const char *debugstr)
276{
277 struct ppp_mppe_state *state = (struct ppp_mppe_state *) arg;
278 unsigned char mppe_opts;
279
280 if (optlen != CILEN_MPPE ||
281 options[0] != CI_MPPE || options[1] != CILEN_MPPE)
282 return 0;
283
284 MPPE_CI_TO_OPTS(&options[2], mppe_opts);
285 if (mppe_opts & MPPE_OPT_128)
286 state->keylen = 16;
287 else if (mppe_opts & MPPE_OPT_40)
288 state->keylen = 8;
289 else {
290 printk(KERN_WARNING "%s[%d]: unknown key length\n", debugstr,
291 unit);
292 return 0;
293 }
294 if (mppe_opts & MPPE_OPT_STATEFUL)
295 state->stateful = 1;
296
297
298 mppe_rekey(state, 1);
299
300 if (debug) {
301 int i;
302 char mkey[sizeof(state->master_key) * 2 + 1];
303 char skey[sizeof(state->session_key) * 2 + 1];
304
305 printk(KERN_DEBUG "%s[%d]: initialized with %d-bit %s mode\n",
306 debugstr, unit, (state->keylen == 16) ? 128 : 40,
307 (state->stateful) ? "stateful" : "stateless");
308
309 for (i = 0; i < sizeof(state->master_key); i++)
310 sprintf(mkey + i * 2, "%02x", state->master_key[i]);
311 for (i = 0; i < sizeof(state->session_key); i++)
312 sprintf(skey + i * 2, "%02x", state->session_key[i]);
313 printk(KERN_DEBUG
314 "%s[%d]: keys: master: %s initial session: %s\n",
315 debugstr, unit, mkey, skey);
316 }
317
318
319
320
321
322
323
324 state->ccount = MPPE_CCOUNT_SPACE - 1;
325
326
327
328
329
330 state->bits = MPPE_BIT_ENCRYPTED;
331
332 state->unit = unit;
333 state->debug = debug;
334
335 return 1;
336}
337
338static int
339mppe_comp_init(void *arg, unsigned char *options, int optlen, int unit,
340 int hdrlen, int debug)
341{
342
343 return mppe_init(arg, options, optlen, unit, debug, "mppe_comp_init");
344}
345
346
347
348
349
350
351
352
353
354
355static void mppe_comp_reset(void *arg)
356{
357 struct ppp_mppe_state *state = (struct ppp_mppe_state *) arg;
358
359 state->bits |= MPPE_BIT_FLUSHED;
360}
361
362
363
364
365
366
367static int
368mppe_compress(void *arg, unsigned char *ibuf, unsigned char *obuf,
369 int isize, int osize)
370{
371 struct ppp_mppe_state *state = (struct ppp_mppe_state *) arg;
372 SKCIPHER_REQUEST_ON_STACK(req, state->arc4);
373 int proto;
374 int err;
375 struct scatterlist sg_in[1], sg_out[1];
376
377
378
379
380 proto = PPP_PROTOCOL(ibuf);
381 if (proto < 0x0021 || proto > 0x00fa)
382 return 0;
383
384
385 if (osize < isize + MPPE_OVHD + 2) {
386
387 printk(KERN_DEBUG "mppe_compress[%d]: osize too small! "
388 "(have: %d need: %d)\n", state->unit,
389 osize, osize + MPPE_OVHD + 2);
390 return -1;
391 }
392
393 osize = isize + MPPE_OVHD + 2;
394
395
396
397
398 obuf[0] = PPP_ADDRESS(ibuf);
399 obuf[1] = PPP_CONTROL(ibuf);
400 put_unaligned_be16(PPP_COMP, obuf + 2);
401 obuf += PPP_HDRLEN;
402
403 state->ccount = (state->ccount + 1) % MPPE_CCOUNT_SPACE;
404 if (state->debug >= 7)
405 printk(KERN_DEBUG "mppe_compress[%d]: ccount %d\n", state->unit,
406 state->ccount);
407 put_unaligned_be16(state->ccount, obuf);
408
409 if (!state->stateful ||
410 ((state->ccount & 0xff) == 0xff) ||
411 (state->bits & MPPE_BIT_FLUSHED)) {
412
413 if (state->debug && state->stateful)
414 printk(KERN_DEBUG "mppe_compress[%d]: rekeying\n",
415 state->unit);
416 mppe_rekey(state, 0);
417 state->bits |= MPPE_BIT_FLUSHED;
418 }
419 obuf[0] |= state->bits;
420 state->bits &= ~MPPE_BIT_FLUSHED;
421
422 obuf += MPPE_OVHD;
423 ibuf += 2;
424 isize -= 2;
425
426
427 sg_init_table(sg_in, 1);
428 sg_init_table(sg_out, 1);
429 setup_sg(sg_in, ibuf, isize);
430 setup_sg(sg_out, obuf, osize);
431
432 skcipher_request_set_tfm(req, state->arc4);
433 skcipher_request_set_callback(req, 0, NULL, NULL);
434 skcipher_request_set_crypt(req, sg_in, sg_out, isize, NULL);
435 err = crypto_skcipher_encrypt(req);
436 skcipher_request_zero(req);
437 if (err) {
438 printk(KERN_DEBUG "crypto_cypher_encrypt failed\n");
439 return -1;
440 }
441
442 state->stats.unc_bytes += isize;
443 state->stats.unc_packets++;
444 state->stats.comp_bytes += osize;
445 state->stats.comp_packets++;
446
447 return osize;
448}
449
450
451
452
453
454static void mppe_comp_stats(void *arg, struct compstat *stats)
455{
456 struct ppp_mppe_state *state = (struct ppp_mppe_state *) arg;
457
458 *stats = state->stats;
459}
460
461static int
462mppe_decomp_init(void *arg, unsigned char *options, int optlen, int unit,
463 int hdrlen, int mru, int debug)
464{
465
466 return mppe_init(arg, options, optlen, unit, debug, "mppe_decomp_init");
467}
468
469
470
471
472static void mppe_decomp_reset(void *arg)
473{
474
475 return;
476}
477
478
479
480
481static int
482mppe_decompress(void *arg, unsigned char *ibuf, int isize, unsigned char *obuf,
483 int osize)
484{
485 struct ppp_mppe_state *state = (struct ppp_mppe_state *) arg;
486 SKCIPHER_REQUEST_ON_STACK(req, state->arc4);
487 unsigned ccount;
488 int flushed = MPPE_BITS(ibuf) & MPPE_BIT_FLUSHED;
489 struct scatterlist sg_in[1], sg_out[1];
490
491 if (isize <= PPP_HDRLEN + MPPE_OVHD) {
492 if (state->debug)
493 printk(KERN_DEBUG
494 "mppe_decompress[%d]: short pkt (%d)\n",
495 state->unit, isize);
496 return DECOMP_ERROR;
497 }
498
499
500
501
502
503
504
505 if (osize < isize - MPPE_OVHD - 1) {
506 printk(KERN_DEBUG "mppe_decompress[%d]: osize too small! "
507 "(have: %d need: %d)\n", state->unit,
508 osize, isize - MPPE_OVHD - 1);
509 return DECOMP_ERROR;
510 }
511 osize = isize - MPPE_OVHD - 2;
512
513 ccount = MPPE_CCOUNT(ibuf);
514 if (state->debug >= 7)
515 printk(KERN_DEBUG "mppe_decompress[%d]: ccount %d\n",
516 state->unit, ccount);
517
518
519 if (!(MPPE_BITS(ibuf) & MPPE_BIT_ENCRYPTED)) {
520 printk(KERN_DEBUG
521 "mppe_decompress[%d]: ENCRYPTED bit not set!\n",
522 state->unit);
523 state->sanity_errors += 100;
524 goto sanity_error;
525 }
526 if (!state->stateful && !flushed) {
527 printk(KERN_DEBUG "mppe_decompress[%d]: FLUSHED bit not set in "
528 "stateless mode!\n", state->unit);
529 state->sanity_errors += 100;
530 goto sanity_error;
531 }
532 if (state->stateful && ((ccount & 0xff) == 0xff) && !flushed) {
533 printk(KERN_DEBUG "mppe_decompress[%d]: FLUSHED bit not set on "
534 "flag packet!\n", state->unit);
535 state->sanity_errors += 100;
536 goto sanity_error;
537 }
538
539
540
541
542
543 if (!state->stateful) {
544
545 if ((ccount - state->ccount) % MPPE_CCOUNT_SPACE
546 > MPPE_CCOUNT_SPACE / 2) {
547 state->sanity_errors++;
548 goto sanity_error;
549 }
550
551
552 while (state->ccount != ccount) {
553 mppe_rekey(state, 0);
554 state->ccount = (state->ccount + 1) % MPPE_CCOUNT_SPACE;
555 }
556 } else {
557
558 if (!state->discard) {
559
560 state->ccount = (state->ccount + 1) % MPPE_CCOUNT_SPACE;
561 if (ccount != state->ccount) {
562
563
564
565
566
567 state->discard = 1;
568 return DECOMP_ERROR;
569 }
570 } else {
571
572 if (!flushed) {
573
574 return DECOMP_ERROR;
575 } else {
576
577 while ((ccount & ~0xff) !=
578 (state->ccount & ~0xff)) {
579 mppe_rekey(state, 0);
580 state->ccount =
581 (state->ccount +
582 256) % MPPE_CCOUNT_SPACE;
583 }
584
585
586 state->discard = 0;
587 state->ccount = ccount;
588
589
590
591
592
593
594
595 }
596 }
597 if (flushed)
598 mppe_rekey(state, 0);
599 }
600
601
602
603
604
605 obuf[0] = PPP_ADDRESS(ibuf);
606 obuf[1] = PPP_CONTROL(ibuf);
607 obuf += 2;
608 ibuf += PPP_HDRLEN + MPPE_OVHD;
609 isize -= PPP_HDRLEN + MPPE_OVHD;
610
611
612
613
614
615
616 sg_init_table(sg_in, 1);
617 sg_init_table(sg_out, 1);
618 setup_sg(sg_in, ibuf, 1);
619 setup_sg(sg_out, obuf, 1);
620
621 skcipher_request_set_tfm(req, state->arc4);
622 skcipher_request_set_callback(req, 0, NULL, NULL);
623 skcipher_request_set_crypt(req, sg_in, sg_out, 1, NULL);
624 if (crypto_skcipher_decrypt(req)) {
625 printk(KERN_DEBUG "crypto_cypher_decrypt failed\n");
626 osize = DECOMP_ERROR;
627 goto out_zap_req;
628 }
629
630
631
632
633
634
635 if ((obuf[0] & 0x01) != 0) {
636 obuf[1] = obuf[0];
637 obuf[0] = 0;
638 obuf++;
639 osize++;
640 }
641
642
643 setup_sg(sg_in, ibuf + 1, isize - 1);
644 setup_sg(sg_out, obuf + 1, osize - 1);
645 skcipher_request_set_crypt(req, sg_in, sg_out, isize - 1, NULL);
646 if (crypto_skcipher_decrypt(req)) {
647 printk(KERN_DEBUG "crypto_cypher_decrypt failed\n");
648 osize = DECOMP_ERROR;
649 goto out_zap_req;
650 }
651
652 state->stats.unc_bytes += osize;
653 state->stats.unc_packets++;
654 state->stats.comp_bytes += isize;
655 state->stats.comp_packets++;
656
657
658 state->sanity_errors >>= 1;
659
660out_zap_req:
661 skcipher_request_zero(req);
662 return osize;
663
664sanity_error:
665 if (state->sanity_errors < SANITY_MAX)
666 return DECOMP_ERROR;
667 else
668
669
670
671
672 return DECOMP_FATALERROR;
673}
674
675
676
677
678
679
680
681static void mppe_incomp(void *arg, unsigned char *ibuf, int icnt)
682{
683 struct ppp_mppe_state *state = (struct ppp_mppe_state *) arg;
684
685 if (state->debug &&
686 (PPP_PROTOCOL(ibuf) >= 0x0021 && PPP_PROTOCOL(ibuf) <= 0x00fa))
687 printk(KERN_DEBUG
688 "mppe_incomp[%d]: incompressible (unencrypted) data! "
689 "(proto %04x)\n", state->unit, PPP_PROTOCOL(ibuf));
690
691 state->stats.inc_bytes += icnt;
692 state->stats.inc_packets++;
693 state->stats.unc_bytes += icnt;
694 state->stats.unc_packets++;
695}
696
697
698
699
700
701
702
703
704static struct compressor ppp_mppe = {
705 .compress_proto = CI_MPPE,
706 .comp_alloc = mppe_alloc,
707 .comp_free = mppe_free,
708 .comp_init = mppe_comp_init,
709 .comp_reset = mppe_comp_reset,
710 .compress = mppe_compress,
711 .comp_stat = mppe_comp_stats,
712 .decomp_alloc = mppe_alloc,
713 .decomp_free = mppe_free,
714 .decomp_init = mppe_decomp_init,
715 .decomp_reset = mppe_decomp_reset,
716 .decompress = mppe_decompress,
717 .incomp = mppe_incomp,
718 .decomp_stat = mppe_comp_stats,
719 .owner = THIS_MODULE,
720 .comp_extra = MPPE_PAD,
721};
722
723
724
725
726
727
728
729
730
731static int __init ppp_mppe_init(void)
732{
733 int answer;
734 if (!(crypto_has_skcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC) &&
735 crypto_has_ahash("sha1", 0, CRYPTO_ALG_ASYNC)))
736 return -ENODEV;
737
738 sha_pad = kmalloc(sizeof(struct sha_pad), GFP_KERNEL);
739 if (!sha_pad)
740 return -ENOMEM;
741 sha_pad_init(sha_pad);
742
743 answer = ppp_register_compressor(&ppp_mppe);
744
745 if (answer == 0)
746 printk(KERN_INFO "PPP MPPE Compression module registered\n");
747 else
748 kfree(sha_pad);
749
750 return answer;
751}
752
753static void __exit ppp_mppe_cleanup(void)
754{
755 ppp_unregister_compressor(&ppp_mppe);
756 kfree(sha_pad);
757}
758
759module_init(ppp_mppe_init);
760module_exit(ppp_mppe_cleanup);
761