ng_mppc.c revision 70784
1
2/*
3 * ng_mppc.c
4 *
5 * Copyright (c) 1996-2000 Whistle Communications, Inc.
6 * All rights reserved.
7 *
8 * Subject to the following obligations and disclaimer of warranty, use and
9 * redistribution of this software, in source or object code forms, with or
10 * without modifications are expressly permitted by Whistle Communications;
11 * provided, however, that:
12 * 1. Any and all reproductions of the source or object code must include the
13 *    copyright notice above and the following disclaimer of warranties; and
14 * 2. No rights are granted, in any manner or form, to use Whistle
15 *    Communications, Inc. trademarks, including the mark "WHISTLE
16 *    COMMUNICATIONS" on advertising, endorsements, or otherwise except as
17 *    such appears in the above copyright notice or in the software.
18 *
19 * THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND
20 * TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO
21 * REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,
22 * INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF
23 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
24 * WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY
25 * REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS
26 * SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE.
27 * IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES
28 * RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING
29 * WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
30 * PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR
31 * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
35 * OF SUCH DAMAGE.
36 *
37 * Author: Archie Cobbs <archie@freebsd.org>
38 *
39 * $Whistle: ng_mppc.c,v 1.4 1999/11/25 00:10:12 archie Exp $
40 * $FreeBSD: head/sys/netgraph/ng_mppc.c 70784 2001-01-08 05:34:06Z julian $
41 */
42
43/*
44 * Microsoft PPP compression (MPPC) and encryption (MPPE) netgraph node type.
45 *
46 * You must define one or both of the NETGRAPH_MPPC_COMPRESSION and/or
47 * NETGRAPH_MPPC_ENCRYPTION options for this node type to be useful.
48 */
49
50#include <sys/param.h>
51#include <sys/systm.h>
52#include <sys/kernel.h>
53#include <sys/mbuf.h>
54#include <sys/malloc.h>
55#include <sys/errno.h>
56#include <sys/syslog.h>
57
58#include <netgraph/ng_message.h>
59#include <netgraph/netgraph.h>
60#include <netgraph/ng_mppc.h>
61
62#include "opt_netgraph.h"
63
64#if !defined(NETGRAPH_MPPC_COMPRESSION) && !defined(NETGRAPH_MPPC_ENCRYPTION)
65#error Need either NETGRAPH_MPPC_COMPRESSION or NETGRAPH_MPPC_ENCRYPTION
66#endif
67
68#ifdef NETGRAPH_MPPC_COMPRESSION
69/* XXX this file doesn't exist yet, but hopefully someday it will... */
70#include <net/mppc.h>
71#endif
72#ifdef NETGRAPH_MPPC_ENCRYPTION
73#include <crypto/rc4/rc4.h>
74#endif
75#include <crypto/sha1.h>
76
77/* Decompression blowup */
78#define MPPC_DECOMP_BUFSIZE	8092            /* allocate buffer this big */
79#define MPPC_DECOMP_SAFETY	100             /*   plus this much margin */
80
81/* MPPC/MPPE header length */
82#define MPPC_HDRLEN		2
83
84/* Key length */
85#define KEYLEN(b)		(((b) & MPPE_128) ? 16 : 8)
86
87/* What sequence number jump is too far */
88#define MPPC_INSANE_JUMP	256
89
90/* MPPC packet header bits */
91#define MPPC_FLAG_FLUSHED	0x8000		/* xmitter reset state */
92#define MPPC_FLAG_RESTART	0x4000		/* compress history restart */
93#define MPPC_FLAG_COMPRESSED	0x2000		/* packet is compresed */
94#define MPPC_FLAG_ENCRYPTED	0x1000		/* packet is encrypted */
95#define MPPC_CCOUNT_MASK	0x0fff		/* sequence number mask */
96
97#define MPPE_UPDATE_MASK	0xff		/* coherency count when we're */
98#define MPPE_UPDATE_FLAG	0xff		/*   supposed to update key */
99
100#define MPPC_COMP_OK		0x05
101#define MPPC_DECOMP_OK		0x05
102
103/* Per direction info */
104struct ng_mppc_dir {
105	struct ng_mppc_config	cfg;		/* configuration */
106	hook_p			hook;		/* netgraph hook */
107	u_int16_t		cc:12;		/* coherency count */
108	u_char			flushed;	/* clean history (xmit only) */
109#ifdef NETGRAPH_MPPC_COMPRESSION
110	u_char			*history;	/* compression history */
111#endif
112#ifdef NETGRAPH_MPPC_ENCRYPTION
113	u_char			key[MPPE_KEY_LEN];	/* session key */
114	struct rc4_state	rc4;			/* rc4 state */
115#endif
116};
117
118/* Node private data */
119struct ng_mppc_private {
120	struct ng_mppc_dir	xmit;		/* compress/encrypt config */
121	struct ng_mppc_dir	recv;		/* decompress/decrypt config */
122	ng_ID_t			ctrlnode;	/* path to controlling node */
123};
124typedef struct ng_mppc_private *priv_p;
125
126/* Netgraph node methods */
127static ng_constructor_t	ng_mppc_constructor;
128static ng_rcvmsg_t	ng_mppc_rcvmsg;
129static ng_shutdown_t	ng_mppc_shutdown;
130static ng_newhook_t	ng_mppc_newhook;
131static ng_rcvdata_t	ng_mppc_rcvdata;
132static ng_disconnect_t	ng_mppc_disconnect;
133
134/* Helper functions */
135static int	ng_mppc_compress(node_p node,
136			struct mbuf *m, struct mbuf **resultp);
137static int	ng_mppc_decompress(node_p node,
138			struct mbuf *m, struct mbuf **resultp);
139static void	ng_mppc_getkey(const u_char *h, u_char *h2, int len);
140static void	ng_mppc_updatekey(u_int32_t bits,
141			u_char *key0, u_char *key, struct rc4_state *rc4);
142static void	ng_mppc_reset_req(node_p node);
143
144/* Node type descriptor */
145static struct ng_type ng_mppc_typestruct = {
146	NG_ABI_VERSION,
147	NG_MPPC_NODE_TYPE,
148	NULL,
149	ng_mppc_constructor,
150	ng_mppc_rcvmsg,
151	ng_mppc_shutdown,
152	ng_mppc_newhook,
153	NULL,
154	NULL,
155	ng_mppc_rcvdata,
156	ng_mppc_disconnect,
157	NULL
158};
159NETGRAPH_INIT(mppc, &ng_mppc_typestruct);
160
161/* Fixed bit pattern to weaken keysize down to 40 bits */
162static const u_char ng_mppe_weakenkey[3] = { 0xd1, 0x26, 0x9e };
163
164#define ERROUT(x)	do { error = (x); goto done; } while (0)
165
166/************************************************************************
167			NETGRAPH NODE STUFF
168 ************************************************************************/
169
170/*
171 * Node type constructor
172 */
173static int
174ng_mppc_constructor(node_p node)
175{
176	priv_p priv;
177
178	/* Allocate private structure */
179	MALLOC(priv, priv_p, sizeof(*priv), M_NETGRAPH, M_NOWAIT | M_ZERO);
180	if (priv == NULL)
181		return (ENOMEM);
182
183	NG_NODE_SET_PRIVATE(node, priv);
184
185	/* Done */
186	return (0);
187}
188
189/*
190 * Give our OK for a hook to be added
191 */
192static int
193ng_mppc_newhook(node_p node, hook_p hook, const char *name)
194{
195	const priv_p priv = NG_NODE_PRIVATE(node);
196	hook_p *hookPtr;
197
198	/* Check hook name */
199	if (strcmp(name, NG_MPPC_HOOK_COMP) == 0)
200		hookPtr = &priv->xmit.hook;
201	else if (strcmp(name, NG_MPPC_HOOK_DECOMP) == 0)
202		hookPtr = &priv->recv.hook;
203	else
204		return (EINVAL);
205
206	/* See if already connected */
207	if (*hookPtr != NULL)
208		return (EISCONN);
209
210	/* OK */
211	*hookPtr = hook;
212	return (0);
213}
214
215/*
216 * Receive a control message
217 */
218static int
219ng_mppc_rcvmsg(node_p node, item_p item, hook_p lasthook)
220{
221	const priv_p priv = NG_NODE_PRIVATE(node);
222	struct ng_mesg *resp = NULL;
223	int error = 0;
224	struct ng_mesg *msg;
225
226	NGI_GET_MSG(item, msg);
227	switch (msg->header.typecookie) {
228	case NGM_MPPC_COOKIE:
229		switch (msg->header.cmd) {
230		case NGM_MPPC_CONFIG_COMP:
231		case NGM_MPPC_CONFIG_DECOMP:
232		    {
233			struct ng_mppc_config *const cfg
234			    = (struct ng_mppc_config *)msg->data;
235			const int isComp =
236			    msg->header.cmd == NGM_MPPC_CONFIG_COMP;
237			struct ng_mppc_dir *const d = isComp ?
238			    &priv->xmit : &priv->recv;
239
240			/* Check configuration */
241			if (msg->header.arglen != sizeof(*cfg))
242				ERROUT(EINVAL);
243			if (cfg->enable) {
244				if ((cfg->bits & ~MPPC_VALID_BITS) != 0)
245					ERROUT(EINVAL);
246#ifndef NETGRAPH_MPPC_COMPRESSION
247				if ((cfg->bits & MPPC_BIT) != 0)
248					ERROUT(EPROTONOSUPPORT);
249#endif
250#ifndef NETGRAPH_MPPC_ENCRYPTION
251				if ((cfg->bits & MPPE_BITS) != 0)
252					ERROUT(EPROTONOSUPPORT);
253#endif
254			} else
255				cfg->bits = 0;
256
257			/* Save return address so we can send reset-req's */
258			priv->ctrlnode = NGI_RETADDR(item);
259
260			/* Configuration is OK, reset to it */
261			d->cfg = *cfg;
262
263#ifdef NETGRAPH_MPPC_COMPRESSION
264			/* Initialize state buffers for compression */
265			if (d->history != NULL) {
266				FREE(d->history, M_NETGRAPH);
267				d->history = NULL;
268			}
269			if ((cfg->bits & MPPC_BIT) != 0) {
270				MALLOC(d->history, u_char *,
271				    isComp ? MPPC_SizeOfCompressionHistory() :
272				    MPPC_SizeOfDecompressionHistory(),
273				    M_NETGRAPH, M_NOWAIT);
274				if (d->history == NULL)
275					ERROUT(ENOMEM);
276				if (isComp)
277					MPPC_InitCompressionHistory(d->history);
278				else {
279					MPPC_InitDecompressionHistory(
280					    d->history);
281				}
282			}
283#endif
284
285#ifdef NETGRAPH_MPPC_ENCRYPTION
286			/* Generate initial session keys for encryption */
287			if ((cfg->bits & MPPE_BITS) != 0) {
288				const int keylen = KEYLEN(cfg->bits);
289
290				bcopy(cfg->startkey, d->key, keylen);
291				ng_mppc_getkey(cfg->startkey, d->key, keylen);
292				if ((cfg->bits & MPPE_128) == 0) {
293					bcopy(&ng_mppe_weakenkey, d->key,
294					    sizeof(ng_mppe_weakenkey));
295				}
296				rc4_init(&d->rc4, d->key, keylen);
297			}
298#endif
299
300			/* Initialize other state */
301			d->cc = 0;
302			d->flushed = 0;
303			break;
304		    }
305
306		case NGM_MPPC_RESETREQ:
307			ng_mppc_reset_req(node);
308			break;
309
310		default:
311			error = EINVAL;
312			break;
313		}
314		break;
315	default:
316		error = EINVAL;
317		break;
318	}
319done:
320	NG_RESPOND_MSG(error, node, item, resp);
321	NG_FREE_MSG(msg);
322	return (error);
323}
324
325/*
326 * Receive incoming data on our hook.
327 */
328static int
329ng_mppc_rcvdata(hook_p hook, item_p item)
330{
331	const node_p node = NG_HOOK_NODE(hook);
332	const priv_p priv = NG_NODE_PRIVATE(node);
333	struct mbuf *out;
334	int error;
335	struct mbuf *m;
336
337	NGI_GET_M(item, m);
338	/* Compress and/or encrypt */
339	if (hook == priv->xmit.hook) {
340		if (!priv->xmit.cfg.enable) {
341			NG_FREE_M(m);
342			NG_FREE_ITEM(item);
343			return (ENXIO);
344		}
345		if ((error = ng_mppc_compress(node, m, &out)) != 0) {
346			NG_FREE_M(m);
347			NG_FREE_ITEM(item);
348			return(error);
349		}
350		NG_FREE_M(m);
351		NG_FWD_NEW_DATA(error, item, priv->xmit.hook, out);
352		return (error);
353	}
354
355	/* Decompress and/or decrypt */
356	if (hook == priv->recv.hook) {
357		if (!priv->recv.cfg.enable) {
358			NG_FREE_M(m);
359			NG_FREE_ITEM(item);
360			return (ENXIO);
361		}
362		if ((error = ng_mppc_decompress(node, m, &out)) != 0) {
363			NG_FREE_M(m);
364			NG_FREE_ITEM(item);
365			if (error == EINVAL && priv->ctrlnode != NULL) {
366				struct ng_mesg *msg;
367
368				/* Need to send a reset-request */
369				NG_MKMESSAGE(msg, NGM_MPPC_COOKIE,
370				    NGM_MPPC_RESETREQ, 0, M_NOWAIT);
371				if (msg == NULL)
372					return (error);
373				NG_SEND_MSG_ID(error, node, msg,
374					priv->ctrlnode, NULL);
375			}
376			return (error);
377		}
378		NG_FREE_M(m);
379		NG_FWD_NEW_DATA(error, item, priv->recv.hook, out);
380		return (error);
381	}
382
383	/* Oops */
384	panic("%s: unknown hook", __FUNCTION__);
385}
386
387/*
388 * Destroy node
389 */
390static int
391ng_mppc_shutdown(node_p node)
392{
393	const priv_p priv = NG_NODE_PRIVATE(node);
394
395	/* Take down netgraph node */
396#ifdef NETGRAPH_MPPC_COMPRESSION
397	if (priv->xmit.history != NULL)
398		FREE(priv->xmit.history, M_NETGRAPH);
399	if (priv->recv.history != NULL)
400		FREE(priv->recv.history, M_NETGRAPH);
401#endif
402	bzero(priv, sizeof(*priv));
403	FREE(priv, M_NETGRAPH);
404	NG_NODE_SET_PRIVATE(node, NULL);
405	NG_NODE_UNREF(node);		/* let the node escape */
406	return (0);
407}
408
409/*
410 * Hook disconnection
411 */
412static int
413ng_mppc_disconnect(hook_p hook)
414{
415	const node_p node = NG_HOOK_NODE(hook);
416	const priv_p priv = NG_NODE_PRIVATE(node);
417
418	/* Zero out hook pointer */
419	if (hook == priv->xmit.hook)
420		priv->xmit.hook = NULL;
421	if (hook == priv->recv.hook)
422		priv->recv.hook = NULL;
423
424	/* Go away if no longer connected */
425	if ((NG_NODE_NUMHOOKS(node) == 0)
426	&& NG_NODE_IS_VALID(node))
427		ng_rmnode_self(node);
428	return (0);
429}
430
431/************************************************************************
432			HELPER STUFF
433 ************************************************************************/
434
435/*
436 * Compress/encrypt a packet and put the result in a new mbuf at *resultp.
437 * The original mbuf is not free'd.
438 */
439static int
440ng_mppc_compress(node_p node, struct mbuf *m, struct mbuf **resultp)
441{
442	const priv_p priv = NG_NODE_PRIVATE(node);
443	struct ng_mppc_dir *const d = &priv->xmit;
444	u_char *inbuf, *outbuf;
445	int outlen, inlen;
446	u_int16_t header;
447
448	/* Initialize */
449	*resultp = NULL;
450	header = d->cc;
451	if (d->flushed) {
452		header |= MPPC_FLAG_FLUSHED;
453		d->flushed = 0;
454	}
455
456	/* Work with contiguous regions of memory */
457	inlen = m->m_pkthdr.len;
458	MALLOC(inbuf, u_char *, inlen, M_NETGRAPH, M_NOWAIT);
459	if (inbuf == NULL)
460		return (ENOMEM);
461	m_copydata(m, 0, inlen, (caddr_t)inbuf);
462	if ((d->cfg.bits & MPPC_BIT) != 0)
463		outlen = MPPC_MAX_BLOWUP(inlen);
464	else
465		outlen = MPPC_HDRLEN + inlen;
466	MALLOC(outbuf, u_char *, outlen, M_NETGRAPH, M_NOWAIT);
467	if (outbuf == NULL) {
468		FREE(inbuf, M_NETGRAPH);
469		return (ENOMEM);
470	}
471
472	/* Compress "inbuf" into "outbuf" (if compression enabled) */
473#ifdef NETGRAPH_MPPC_COMPRESSION
474	if ((d->cfg.bits & MPPC_BIT) != 0) {
475		u_short flags = MPPC_MANDATORY_COMPRESS_FLAGS;
476		u_char *source, *dest;
477		u_long sourceCnt, destCnt;
478		int rtn;
479
480		/* Prepare to compress */
481		source = inbuf;
482		sourceCnt = inlen;
483		dest = outbuf + MPPC_HDRLEN;
484		destCnt = outlen - MPPC_HDRLEN;
485		if ((d->cfg.bits & MPPE_STATELESS) == 0)
486			flags |= MPPC_SAVE_HISTORY;
487
488		/* Compress */
489		rtn = MPPC_Compress(&source, &dest, &sourceCnt,
490			&destCnt, d->history, flags, 0);
491
492		/* Check return value */
493		KASSERT(rtn != MPPC_INVALID, ("%s: invalid", __FUNCTION__));
494		if ((rtn & MPPC_EXPANDED) == 0
495		    && (rtn & MPPC_COMP_OK) == MPPC_COMP_OK) {
496			outlen -= destCnt;
497			header |= MPPC_FLAG_COMPRESSED;
498			if ((rtn & MPPC_RESTART_HISTORY) != 0)
499				header |= MPPC_FLAG_RESTART;
500		}
501		d->flushed = (rtn & MPPC_EXPANDED) != 0
502		    || (flags & MPPC_SAVE_HISTORY) == 0;
503	}
504#endif
505
506	/* If we did not compress this packet, copy it to output buffer */
507	if ((header & MPPC_FLAG_COMPRESSED) == 0) {
508		bcopy(inbuf, outbuf + MPPC_HDRLEN, inlen);
509		outlen = MPPC_HDRLEN + inlen;
510	}
511	FREE(inbuf, M_NETGRAPH);
512
513	/* Always set the flushed bit in stateless mode */
514	if ((d->cfg.bits & MPPE_STATELESS) != 0)
515		header |= MPPC_FLAG_FLUSHED;
516
517	/* Now encrypt packet (if encryption enabled) */
518#ifdef NETGRAPH_MPPC_ENCRYPTION
519	if ((d->cfg.bits & MPPE_BITS) != 0) {
520
521		/* Set header bits; need to reset key if we say we did */
522		header |= MPPC_FLAG_ENCRYPTED;
523		if ((header & MPPC_FLAG_FLUSHED) != 0)
524			rc4_init(&d->rc4, d->key, KEYLEN(d->cfg.bits));
525
526		/* Update key if it's time */
527		if ((d->cfg.bits & MPPE_STATELESS) != 0
528		    || (d->cc & MPPE_UPDATE_MASK) == MPPE_UPDATE_FLAG) {
529			  ng_mppc_updatekey(d->cfg.bits,
530			      d->cfg.startkey, d->key, &d->rc4);
531		}
532
533		/* Encrypt packet */
534		rc4_crypt(&d->rc4, outbuf + MPPC_HDRLEN,
535			outbuf + MPPC_HDRLEN, outlen - MPPC_HDRLEN);
536	}
537#endif
538
539	/* Update sequence number */
540	d->cc++;
541
542	/* Install header */
543	*((u_int16_t *)outbuf) = htons(header);
544
545	/* Return packet in an mbuf */
546	*resultp = m_devget((caddr_t)outbuf, outlen, 0, NULL, NULL);
547	FREE(outbuf, M_NETGRAPH);
548	return (*resultp == NULL ? ENOBUFS : 0);
549}
550
551/*
552 * Decompress/decrypt packet and put the result in a new mbuf at *resultp.
553 * The original mbuf is not free'd.
554 */
555static int
556ng_mppc_decompress(node_p node, struct mbuf *m, struct mbuf **resultp)
557{
558	const priv_p priv = NG_NODE_PRIVATE(node);
559	struct ng_mppc_dir *const d = &priv->recv;
560	u_int16_t header, cc, numLost;
561	u_char *buf;
562	int len;
563
564	/* Pull off header */
565	if (m->m_pkthdr.len < MPPC_HDRLEN)
566		return (EINVAL);
567	m_copydata(m, 0, MPPC_HDRLEN, (caddr_t)&header);
568	NTOHS(header);
569	cc = (header & MPPC_CCOUNT_MASK);
570
571	/* Copy payload into a contiguous region of memory */
572	len = m->m_pkthdr.len - MPPC_HDRLEN;
573	MALLOC(buf, u_char *, len, M_NETGRAPH, M_NOWAIT);
574	if (buf == NULL)
575		return (ENOMEM);
576	m_copydata(m, MPPC_HDRLEN, len, (caddr_t)buf);
577
578	/* Check for insane jumps in sequence numbering (D.O.S. attack) */
579	numLost = ((cc - d->cc) & MPPC_CCOUNT_MASK);
580	if (numLost >= MPPC_INSANE_JUMP) {
581		log(LOG_ERR, "%s: insane jump %d", __FUNCTION__, numLost);
582		priv->recv.cfg.enable = 0;
583		goto failed;
584	}
585
586	/* If flushed bit set, we can always handle packet */
587	if ((header & MPPC_FLAG_FLUSHED) != 0) {
588#ifdef NETGRAPH_MPPC_COMPRESSION
589		if (d->history != NULL)
590			MPPC_InitDecompressionHistory(d->history);
591#endif
592#ifdef NETGRAPH_MPPC_ENCRYPTION
593		if ((d->cfg.bits & MPPE_BITS) != 0) {
594
595			/* Resync as necessary, skipping lost packets */
596			while (d->cc != cc) {
597				if ((d->cfg.bits & MPPE_STATELESS)
598				    || (d->cc & MPPE_UPDATE_MASK)
599				      == MPPE_UPDATE_FLAG) {
600					ng_mppc_updatekey(d->cfg.bits,
601					    d->cfg.startkey, d->key, &d->rc4);
602				}
603				d->cc++;
604			}
605
606			/* Reset key (except in stateless mode, see below) */
607			if ((d->cfg.bits & MPPE_STATELESS) == 0)
608				rc4_init(&d->rc4, d->key, KEYLEN(d->cfg.bits));
609		}
610#endif
611		d->cc = cc;		/* skip over lost seq numbers */
612		numLost = 0;		/* act like no packets were lost */
613	}
614
615	/* Can't decode non-sequential packets without a flushed bit */
616	if (numLost != 0)
617		goto failed;
618
619	/* Decrypt packet */
620	if ((header & MPPC_FLAG_ENCRYPTED) != 0) {
621
622		/* Are we not expecting encryption? */
623		if ((d->cfg.bits & MPPE_BITS) == 0) {
624			log(LOG_ERR, "%s: rec'd unexpectedly %s packet",
625				__FUNCTION__, "encrypted");
626			goto failed;
627		}
628
629#ifdef NETGRAPH_MPPC_ENCRYPTION
630		/* Update key if it's time (always in stateless mode) */
631		if ((d->cfg.bits & MPPE_STATELESS) != 0
632		    || (d->cc & MPPE_UPDATE_MASK) == MPPE_UPDATE_FLAG) {
633			ng_mppc_updatekey(d->cfg.bits,
634			    d->cfg.startkey, d->key, &d->rc4);
635		}
636
637		/* Decrypt packet */
638		rc4_crypt(&d->rc4, buf, buf, len);
639#endif
640	} else {
641
642		/* Are we expecting encryption? */
643		if ((d->cfg.bits & MPPE_BITS) != 0) {
644			log(LOG_ERR, "%s: rec'd unexpectedly %s packet",
645				__FUNCTION__, "unencrypted");
646			goto failed;
647		}
648	}
649
650	/* Update coherency count for next time (12 bit arithmetic) */
651	d->cc++;
652
653	/* Check for unexpected compressed packet */
654	if ((header & MPPC_FLAG_COMPRESSED) != 0
655	    && (d->cfg.bits & MPPC_BIT) == 0) {
656		log(LOG_ERR, "%s: rec'd unexpectedly %s packet",
657			__FUNCTION__, "compressed");
658failed:
659		FREE(buf, M_NETGRAPH);
660		return (EINVAL);
661	}
662
663#ifdef NETGRAPH_MPPC_COMPRESSION
664	/* Decompress packet */
665	if ((header & MPPC_FLAG_COMPRESSED) != 0) {
666		int flags = MPPC_MANDATORY_DECOMPRESS_FLAGS;
667		u_char *decompbuf, *source, *dest;
668		u_long sourceCnt, destCnt;
669		int decomplen, rtn;
670
671		/* Allocate a buffer for decompressed data */
672		MALLOC(decompbuf, u_char *, MPPC_DECOMP_BUFSIZE
673		    + MPPC_DECOMP_SAFETY, M_NETGRAPH, M_NOWAIT);
674		if (decompbuf == NULL) {
675			FREE(buf, M_NETGRAPH);
676			return (ENOMEM);
677		}
678		decomplen = MPPC_DECOMP_BUFSIZE;
679
680		/* Prepare to decompress */
681		source = buf;
682		sourceCnt = len;
683		dest = decompbuf;
684		destCnt = decomplen;
685		if ((header & MPPC_FLAG_RESTART) != 0)
686			flags |= MPPC_RESTART_HISTORY;
687
688		/* Decompress */
689		rtn = MPPC_Decompress(&source, &dest,
690			&sourceCnt, &destCnt, d->history, flags);
691
692		/* Check return value */
693		KASSERT(rtn != MPPC_INVALID, ("%s: invalid", __FUNCTION__));
694		if ((rtn & MPPC_DEST_EXHAUSTED) != 0
695		    || (rtn & MPPC_DECOMP_OK) != MPPC_DECOMP_OK) {
696			log(LOG_ERR, "%s: decomp returned 0x%x",
697			    __FUNCTION__, rtn);
698			FREE(decompbuf, M_NETGRAPH);
699			goto failed;
700		}
701
702		/* Replace compressed data with decompressed data */
703		FREE(buf, M_NETGRAPH);
704		buf = decompbuf;
705		len = decomplen - destCnt;
706	}
707#endif
708
709	/* Return result in an mbuf */
710	*resultp = m_devget((caddr_t)buf, len, 0, NULL, NULL);
711	FREE(buf, M_NETGRAPH);
712	return (*resultp == NULL ? ENOBUFS : 0);
713}
714
715/*
716 * The peer has sent us a CCP ResetRequest, so reset our transmit state.
717 */
718static void
719ng_mppc_reset_req(node_p node)
720{
721	const priv_p priv = NG_NODE_PRIVATE(node);
722	struct ng_mppc_dir *const d = &priv->xmit;
723
724#ifdef NETGRAPH_MPPC_COMPRESSION
725	if (d->history != NULL)
726		MPPC_InitCompressionHistory(d->history);
727#endif
728#ifdef NETGRAPH_MPPC_ENCRYPTION
729	if ((d->cfg.bits & MPPE_STATELESS) == 0)
730		rc4_init(&d->rc4, d->key, KEYLEN(d->cfg.bits));
731#endif
732	d->flushed = 1;
733}
734
735/*
736 * Generate a new encryption key
737 */
738static void
739ng_mppc_getkey(const u_char *h, u_char *h2, int len)
740{
741	static const u_char pad1[10] =
742	    { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, };
743	static const u_char pad2[10] =
744	    { 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, };
745	u_char hash[20];
746	SHA1_CTX c;
747	int k;
748
749	bzero(&hash, sizeof(hash));
750	SHA1Init(&c);
751	SHA1Update(&c, h, len);
752	for (k = 0; k < 4; k++)
753		SHA1Update(&c, pad1, sizeof(pad2));
754	SHA1Update(&c, h2, len);
755	for (k = 0; k < 4; k++)
756		SHA1Update(&c, pad2, sizeof(pad2));
757	SHA1Final(hash, &c);
758	bcopy(hash, h2, len);
759}
760
761/*
762 * Update the encryption key
763 */
764static void
765ng_mppc_updatekey(u_int32_t bits,
766	u_char *key0, u_char *key, struct rc4_state *rc4)
767{
768	const int keylen = KEYLEN(bits);
769
770	ng_mppc_getkey(key0, key, keylen);
771	rc4_init(rc4, key, keylen);
772	rc4_crypt(rc4, key, key, keylen);
773	if ((bits & MPPE_128) == 0)
774		bcopy(&ng_mppe_weakenkey, key, sizeof(ng_mppe_weakenkey));
775	rc4_init(rc4, key, keylen);
776}
777
778