1 diff -ruN ppp-2.4.3.orig/include/linux/ppp-comp.h ppp-2.4.3/include/linux/ppp-comp.h
2 --- ppp-2.4.3.orig/include/linux/ppp-comp.h 2002-12-06 10:49:15.000000000 +0100
3 +++ ppp-2.4.3/include/linux/ppp-comp.h 2004-11-21 13:54:09.000000000 +0100
8 - * ==FILEVERSION 20020319==
9 + * ==FILEVERSION 20020715==
11 * NOTE TO MAINTAINERS:
12 * If you modify this file at all, please set the above date.
15 /* Compress a packet */
16 int (*compress) (void *state, unsigned char *rptr,
17 - unsigned char *obuf, int isize, int osize);
18 + unsigned char *obuf, int isize, int osize);
20 /* Return compression statistics */
21 void (*comp_stat) (void *state, struct compstat *stats);
24 /* Decompress a packet. */
25 int (*decompress) (void *state, unsigned char *ibuf, int isize,
26 - unsigned char *obuf, int osize);
27 + unsigned char *obuf, int osize);
29 /* Update state for an incompressible packet received */
30 void (*incomp) (void *state, unsigned char *ibuf, int icnt);
32 opts |= MPPE_OPT_UNKNOWN; \
33 } while (/* CONSTCOND */ 0)
35 +/* MPPE/MPPC definitions by J.D.*/
36 +#define MPPE_STATELESS MPPE_H_BIT /* configuration bit H */
37 +#define MPPE_40BIT MPPE_L_BIT /* configuration bit L */
38 +#define MPPE_56BIT MPPE_M_BIT /* configuration bit M */
39 +#define MPPE_128BIT MPPE_S_BIT /* configuration bit S */
40 +#define MPPE_MPPC MPPE_C_BIT /* configuration bit C */
43 + * Definitions for Stac LZS.
46 +#define CI_LZS 17 /* config option for Stac LZS */
47 +#define CILEN_LZS 5 /* length of config option */
49 +#define LZS_OVHD 4 /* max. LZS overhead */
50 +#define LZS_HIST_LEN 2048 /* LZS history size */
51 +#define LZS_MAX_CCOUNT 0x0FFF /* max. coherency counter value */
53 +#define LZS_MODE_NONE 0
54 +#define LZS_MODE_LCB 1
55 +#define LZS_MODE_CRC 2
56 +#define LZS_MODE_SEQ 3
57 +#define LZS_MODE_EXT 4
59 +#define LZS_EXT_BIT_FLUSHED 0x80 /* bit A */
60 +#define LZS_EXT_BIT_COMP 0x20 /* bit C */
63 * Definitions for other, as yet unsupported, compression methods.
65 diff -ruN ppp-2.4.3.orig/include/net/ppp-comp.h ppp-2.4.3/include/net/ppp-comp.h
66 --- ppp-2.4.3.orig/include/net/ppp-comp.h 2002-12-06 10:49:15.000000000 +0100
67 +++ ppp-2.4.3/include/net/ppp-comp.h 2004-11-21 13:54:09.000000000 +0100
69 opts |= MPPE_OPT_UNKNOWN; \
70 } while (/* CONSTCOND */ 0)
72 +/* MPPE/MPPC definitions by J.D.*/
73 +#define MPPE_STATELESS MPPE_H_BIT /* configuration bit H */
74 +#define MPPE_40BIT MPPE_L_BIT /* configuration bit L */
75 +#define MPPE_56BIT MPPE_M_BIT /* configuration bit M */
76 +#define MPPE_128BIT MPPE_S_BIT /* configuration bit S */
77 +#define MPPE_MPPC MPPE_C_BIT /* configuration bit C */
80 + * Definitions for Stac LZS.
83 +#define CI_LZS 17 /* config option for Stac LZS */
84 +#define CILEN_LZS 5 /* length of config option */
86 +#define LZS_OVHD 4 /* max. LZS overhead */
87 +#define LZS_HIST_LEN 2048 /* LZS history size */
88 +#define LZS_MAX_CCOUNT 0x0FFF /* max. coherency counter value */
90 +#define LZS_MODE_NONE 0
91 +#define LZS_MODE_LCB 1
92 +#define LZS_MODE_CRC 2
93 +#define LZS_MODE_SEQ 3
94 +#define LZS_MODE_EXT 4
96 +#define LZS_EXT_BIT_FLUSHED 0x80 /* bit A */
97 +#define LZS_EXT_BIT_COMP 0x20 /* bit C */
100 * Definitions for other, as yet unsupported, compression methods.
102 diff -ruN ppp-2.4.3.orig/pppd/ccp.c ppp-2.4.3/pppd/ccp.c
103 --- ppp-2.4.3.orig/pppd/ccp.c 2004-11-13 03:28:15.000000000 +0100
104 +++ ppp-2.4.3/pppd/ccp.c 2004-11-21 13:54:09.000000000 +0100
106 static char bsd_value[8];
107 static char deflate_value[8];
110 - * Option variables.
113 -bool refuse_mppe_stateful = 1; /* Allow stateful mode? */
115 +static int setmppe(char **);
116 +static int setnomppe(void);
119 static option_t ccp_option_list[] = {
120 { "noccp", o_bool, &ccp_protent.enabled_flag,
121 @@ -108,54 +106,36 @@
122 "don't allow Predictor-1", OPT_ALIAS | OPT_PRIOSUB | OPT_A2CLR,
123 &ccp_allowoptions[0].predictor_1 },
125 + { "lzs", o_bool, &ccp_wantoptions[0].lzs,
126 + "request Stac LZS", 1, &ccp_allowoptions[0].lzs, OPT_PRIO },
127 + { "+lzs", o_bool, &ccp_wantoptions[0].lzs,
128 + "request Stac LZS", 1, &ccp_allowoptions[0].lzs, OPT_ALIAS | OPT_PRIO },
129 + { "nolzs", o_bool, &ccp_wantoptions[0].lzs,
130 + "don't allow Stac LZS", OPT_PRIOSUB | OPT_A2CLR,
131 + &ccp_allowoptions[0].lzs },
132 + { "-lzs", o_bool, &ccp_wantoptions[0].lzs,
133 + "don't allow Stac LZS", OPT_ALIAS | OPT_PRIOSUB | OPT_A2CLR,
134 + &ccp_allowoptions[0].lzs },
137 - /* MPPE options are symmetrical ... we only set wantoptions here */
138 - { "require-mppe", o_bool, &ccp_wantoptions[0].mppe,
139 - "require MPPE encryption",
140 - OPT_PRIO | MPPE_OPT_40 | MPPE_OPT_128 },
141 - { "+mppe", o_bool, &ccp_wantoptions[0].mppe,
142 - "require MPPE encryption",
143 - OPT_ALIAS | OPT_PRIO | MPPE_OPT_40 | MPPE_OPT_128 },
144 - { "nomppe", o_bool, &ccp_wantoptions[0].mppe,
145 - "don't allow MPPE encryption", OPT_PRIO },
146 - { "-mppe", o_bool, &ccp_wantoptions[0].mppe,
147 - "don't allow MPPE encryption", OPT_ALIAS | OPT_PRIO },
149 - /* We use ccp_allowoptions[0].mppe as a junk var ... it is reset later */
150 - { "require-mppe-40", o_bool, &ccp_allowoptions[0].mppe,
151 - "require MPPE 40-bit encryption", OPT_PRIO | OPT_A2OR | MPPE_OPT_40,
152 - &ccp_wantoptions[0].mppe },
153 - { "+mppe-40", o_bool, &ccp_allowoptions[0].mppe,
154 - "require MPPE 40-bit encryption", OPT_PRIO | OPT_A2OR | MPPE_OPT_40,
155 - &ccp_wantoptions[0].mppe },
156 - { "nomppe-40", o_bool, &ccp_allowoptions[0].mppe,
157 - "don't allow MPPE 40-bit encryption",
158 - OPT_PRIOSUB | OPT_A2CLRB | MPPE_OPT_40, &ccp_wantoptions[0].mppe },
159 - { "-mppe-40", o_bool, &ccp_allowoptions[0].mppe,
160 - "don't allow MPPE 40-bit encryption",
161 - OPT_ALIAS | OPT_PRIOSUB | OPT_A2CLRB | MPPE_OPT_40,
162 - &ccp_wantoptions[0].mppe },
164 - { "require-mppe-128", o_bool, &ccp_allowoptions[0].mppe,
165 - "require MPPE 128-bit encryption", OPT_PRIO | OPT_A2OR | MPPE_OPT_128,
166 - &ccp_wantoptions[0].mppe },
167 - { "+mppe-128", o_bool, &ccp_allowoptions[0].mppe,
168 - "require MPPE 128-bit encryption",
169 - OPT_ALIAS | OPT_PRIO | OPT_A2OR | MPPE_OPT_128,
170 - &ccp_wantoptions[0].mppe },
171 - { "nomppe-128", o_bool, &ccp_allowoptions[0].mppe,
172 - "don't allow MPPE 128-bit encryption",
173 - OPT_PRIOSUB | OPT_A2CLRB | MPPE_OPT_128, &ccp_wantoptions[0].mppe },
174 - { "-mppe-128", o_bool, &ccp_allowoptions[0].mppe,
175 - "don't allow MPPE 128-bit encryption",
176 - OPT_ALIAS | OPT_PRIOSUB | OPT_A2CLRB | MPPE_OPT_128,
177 - &ccp_wantoptions[0].mppe },
179 - /* strange one; we always request stateless, but will we allow stateful? */
180 - { "mppe-stateful", o_bool, &refuse_mppe_stateful,
181 - "allow MPPE stateful mode", OPT_PRIO },
182 - { "nomppe-stateful", o_bool, &refuse_mppe_stateful,
183 - "disallow MPPE stateful mode", OPT_PRIO | 1 },
184 + { "mppc", o_bool, &ccp_wantoptions[0].mppc,
185 + "request MPPC compression", 1, &ccp_allowoptions[0].mppc },
186 + { "+mppc", o_bool, &ccp_wantoptions[0].mppc,
187 + "request MPPC compression", 1, &ccp_allowoptions[0].mppc, OPT_ALIAS },
188 + { "nomppc", o_bool, &ccp_wantoptions[0].mppc,
189 + "don't allow MPPC compression", OPT_PRIOSUB | OPT_A2CLR,
190 + &ccp_allowoptions[0].mppc },
191 + { "-mppc", o_bool, &ccp_wantoptions[0].mppc,
192 + "don't allow MPPC compression", OPT_ALIAS | OPT_PRIOSUB | OPT_A2CLR,
193 + &ccp_allowoptions[0].mppc },
194 + { "mppe", o_special, (void *)setmppe,
195 + "request MPPE encryption" },
196 + { "+mppe", o_special, (void *)setmppe,
197 + "request MPPE encryption" },
198 + { "nomppe", o_special_noarg, (void *)setnomppe,
199 + "don't allow MPPE encryption" },
200 + { "-mppe", o_special_noarg, (void *)setnomppe,
201 + "don't allow MPPE encryption" },
207 #define ANY_COMPRESS(opt) ((opt).deflate || (opt).bsd_compress \
208 || (opt).predictor_1 || (opt).predictor_2 \
210 + || (opt).lzs || (opt).mppc || (opt).mppe)
213 * Local state (mainly for handling reset-reqs and reset-acks).
214 @@ -344,6 +324,100 @@
220 + * Functions called from config options
224 + required - require MPPE; disconnect if peer doesn't support it
225 + stateless - use stateless mode
226 + no40 - disable 40 bit keys
227 + no56 - disable 56 bit keys
228 + no128 - disable 128 bit keys
230 +int setmppe(char **argv)
233 + char *str, cmdbuf[16];
235 + ccp_allowoptions[0].mppe = 1;
236 + ccp_allowoptions[0].mppe_40 = 1;
237 + ccp_allowoptions[0].mppe_56 = 1;
238 + ccp_allowoptions[0].mppe_128 = 1;
239 + ccp_allowoptions[0].mppe_stateless = 0;
240 + ccp_wantoptions[0].mppe = 0;
246 + memset(cmdbuf, '\0', 16);
247 + while ((i < 16) && (*str != ',') && (*str != '\0'))
248 + cmdbuf[i++] = *str++;
250 + if (!strncasecmp(cmdbuf, "no40", strlen("no40"))) {
251 + ccp_allowoptions[0].mppe_40 = 0;
253 + } else if (!strncasecmp(cmdbuf, "no56", strlen("no56"))) {
254 + ccp_allowoptions[0].mppe_56 = 0;
256 + } else if (!strncasecmp(cmdbuf, "no128", strlen("no128"))) {
257 + ccp_allowoptions[0].mppe_128 = 0;
259 + } else if (!strncasecmp(cmdbuf, "stateless", strlen("stateless"))) {
260 + ccp_allowoptions[0].mppe_stateless = 1;
262 + } else if (!strncasecmp(cmdbuf, "required", strlen("required"))) {
263 + ccp_wantoptions[0].mppe = 1;
266 + option_error("invalid parameter '%s' for mppe option", cmdbuf);
275 + if (*str == '\0') {
276 + if (!(ccp_allowoptions[0].mppe_40 || ccp_allowoptions[0].mppe_56 ||
277 + ccp_allowoptions[0].mppe_128)) {
278 + if (ccp_wantoptions[0].mppe == 1) {
279 + option_error("You require MPPE but you have switched off "
280 + "all encryption key lengths.");
283 + ccp_wantoptions[0].mppe = ccp_allowoptions[0].mppe = 0;
284 + ccp_wantoptions[0].mppe_stateless =
285 + ccp_allowoptions[0].mppe_stateless = 0;
287 + ccp_allowoptions[0].mppe = 1;
288 + ccp_wantoptions[0].mppe_stateless =
289 + ccp_allowoptions[0].mppe_stateless;
290 + if (ccp_wantoptions[0].mppe == 1) {
291 + ccp_wantoptions[0].mppe_40 = ccp_allowoptions[0].mppe_40;
292 + ccp_wantoptions[0].mppe_56 = ccp_allowoptions[0].mppe_56;
293 + ccp_wantoptions[0].mppe_128 = ccp_allowoptions[0].mppe_128;
303 + ccp_wantoptions[0].mppe = ccp_allowoptions[0].mppe = 0;
304 + ccp_wantoptions[0].mppe_40 = ccp_allowoptions[0].mppe_40 = 0;
305 + ccp_wantoptions[0].mppe_56 = ccp_allowoptions[0].mppe_56 = 0;
306 + ccp_wantoptions[0].mppe_128 = ccp_allowoptions[0].mppe_128 = 0;
307 + ccp_wantoptions[0].mppe_stateless = ccp_allowoptions[0].mppe_stateless = 0;
313 * ccp_init - initialize CCP.
316 ccp_allowoptions[0].bsd_bits = BSD_MAX_BITS;
318 ccp_allowoptions[0].predictor_1 = 1;
320 + ccp_wantoptions[0].lzs = 0; /* Stac LZS - will be enabled in the future */
321 + ccp_wantoptions[0].lzs_mode = LZS_MODE_SEQ;
322 + ccp_wantoptions[0].lzs_hists = 1;
323 + ccp_allowoptions[0].lzs = 0; /* Stac LZS - will be enabled in the future */
324 + ccp_allowoptions[0].lzs_mode = LZS_MODE_SEQ;
325 + ccp_allowoptions[0].lzs_hists = 1;
328 + /* by default allow and request MPPC... */
329 + ccp_wantoptions[0].mppc = ccp_allowoptions[0].mppc = 1;
331 + /* ... and allow but don't request MPPE */
332 + ccp_allowoptions[0].mppe = 1;
333 + ccp_allowoptions[0].mppe_40 = 1;
334 + ccp_allowoptions[0].mppe_56 = 1;
335 + ccp_allowoptions[0].mppe_128 = 1;
336 + ccp_allowoptions[0].mppe_stateless = 1;
337 + ccp_wantoptions[0].mppe = 0;
338 + ccp_wantoptions[0].mppe_40 = 0;
339 + ccp_wantoptions[0].mppe_56 = 0;
340 + ccp_wantoptions[0].mppe_128 = 0;
341 + ccp_wantoptions[0].mppe_stateless = 0;
346 @@ -455,11 +553,11 @@
347 if (oldstate == OPENED && p[0] == TERMREQ && f->state != OPENED) {
348 notice("Compression disabled by peer.");
350 - if (ccp_gotoptions[unit].mppe) {
351 + if (ccp_wantoptions[unit].mppe) {
352 error("MPPE disabled, closing LCP");
353 lcp_close(unit, "MPPE disabled by peer");
362 /* send a reset-ack, which the transmitter will see and
363 reset its compression state. */
365 + /* In case of MPPE/MPPC or LZS we shouldn't send CCP_RESETACK,
366 + but we do it in order to reset compressor; CCP_RESETACK is
367 + then silently discarded. See functions ppp_send_frame and
368 + ppp_ccp_peek in ppp_generic.c (Linux only !!!). All the
369 + confusion is caused by the fact that CCP code is splited
370 + into two parts - one part is handled by pppd, the other one
371 + is handled by kernel. */
373 fsm_sdata(f, CCP_RESETACK, id, NULL, 0);
376 @@ -515,12 +622,11 @@
377 fsm_lowerdown(&ccp_fsm[unit]);
380 - if (ccp_gotoptions[unit].mppe) {
381 + if (ccp_wantoptions[unit].mppe) {
382 error("MPPE required but peer negotiation failed");
383 lcp_close(unit, "MPPE required but peer negotiation failed");
392 all_rejected[f->unit] = 0;
396 + if (go->mppe || go->mppc) {
397 ccp_options *ao = &ccp_allowoptions[f->unit];
398 int auth_mschap_bits = auth_done[f->unit];
400 @@ -551,80 +657,109 @@
401 * NB: If MPPE is required, all other compression opts are invalid.
402 * So, we return right away if we can't do it.
404 + if (ccp_wantoptions[f->unit].mppe) {
405 + /* Leave only the mschap auth bits set */
406 + auth_mschap_bits &= (CHAP_MS_WITHPEER | CHAP_MS_PEER |
407 + CHAP_MS2_WITHPEER | CHAP_MS2_PEER);
408 + /* Count the mschap auths */
409 + auth_mschap_bits >>= CHAP_MS_SHIFT;
412 + numbits += auth_mschap_bits & 1;
413 + auth_mschap_bits >>= 1;
414 + } while (auth_mschap_bits);
416 + error("MPPE required, but auth done in both directions.");
417 + lcp_close(f->unit, "MPPE required but not available");
421 + error("MPPE required, but MS-CHAP[v2] auth not performed.");
422 + lcp_close(f->unit, "MPPE required but not available");
426 - /* Leave only the mschap auth bits set */
427 - auth_mschap_bits &= (CHAP_MS_WITHPEER | CHAP_MS_PEER |
428 - CHAP_MS2_WITHPEER | CHAP_MS2_PEER);
429 - /* Count the mschap auths */
430 - auth_mschap_bits >>= CHAP_MS_SHIFT;
433 - numbits += auth_mschap_bits & 1;
434 - auth_mschap_bits >>= 1;
435 - } while (auth_mschap_bits);
437 - error("MPPE required, but auth done in both directions.");
438 - lcp_close(f->unit, "MPPE required but not available");
442 - error("MPPE required, but MS-CHAP[v2] auth not performed.");
443 - lcp_close(f->unit, "MPPE required but not available");
447 - /* A plugin (eg radius) may not have obtained key material. */
448 - if (!mppe_keys_set) {
449 - error("MPPE required, but keys are not available. "
450 - "Possible plugin problem?");
451 - lcp_close(f->unit, "MPPE required but not available");
455 - /* LM auth not supported for MPPE */
456 - if (auth_done[f->unit] & (CHAP_MS_WITHPEER | CHAP_MS_PEER)) {
457 - /* This might be noise */
458 - if (go->mppe & MPPE_OPT_40) {
459 - notice("Disabling 40-bit MPPE; MS-CHAP LM not supported");
460 - go->mppe &= ~MPPE_OPT_40;
461 - ccp_wantoptions[f->unit].mppe &= ~MPPE_OPT_40;
462 + /* A plugin (eg radius) may not have obtained key material. */
463 + if (!mppe_keys_set) {
464 + error("MPPE required, but keys are not available. "
465 + "Possible plugin problem?");
466 + lcp_close(f->unit, "MPPE required but not available");
471 - /* Last check: can we actually negotiate something? */
472 - if (!(go->mppe & (MPPE_OPT_40 | MPPE_OPT_128))) {
473 - /* Could be misconfig, could be 40-bit disabled above. */
474 - error("MPPE required, but both 40-bit and 128-bit disabled.");
475 - lcp_close(f->unit, "MPPE required but not available");
478 + * Check whether the kernel knows about the various
479 + * compression methods we might request. Key material
480 + * unimportant here.
483 + opt_buf[0] = CI_MPPE;
484 + opt_buf[1] = CILEN_MPPE;
488 + opt_buf[5] = MPPE_MPPC;
489 + if (ccp_test(f->unit, opt_buf, CILEN_MPPE, 0) <= 0)
493 + opt_buf[0] = CI_MPPE;
494 + opt_buf[1] = CILEN_MPPE;
495 + opt_buf[2] = MPPE_STATELESS;
498 + opt_buf[5] = MPPE_40BIT;
499 + if (ccp_test(f->unit, opt_buf, CILEN_MPPE + MPPE_MAX_KEY_LEN, 0) <= 0)
503 + opt_buf[0] = CI_MPPE;
504 + opt_buf[1] = CILEN_MPPE;
505 + opt_buf[2] = MPPE_STATELESS;
508 + opt_buf[5] = MPPE_56BIT;
509 + if (ccp_test(f->unit, opt_buf, CILEN_MPPE + MPPE_MAX_KEY_LEN, 0) <= 0)
512 + if (go->mppe_128) {
513 + opt_buf[0] = CI_MPPE;
514 + opt_buf[1] = CILEN_MPPE;
515 + opt_buf[2] = MPPE_STATELESS;
518 + opt_buf[5] = MPPE_128BIT;
519 + if (ccp_test(f->unit, opt_buf, CILEN_MPPE + MPPE_MAX_KEY_LEN, 0) <= 0)
522 + if (!go->mppe_40 && !go->mppe_56 && !go->mppe_128) {
523 + if (ccp_wantoptions[f->unit].mppe) {
524 + error("MPPE required, but kernel has no support.");
525 + lcp_close(f->unit, "MPPE required but not available");
527 + go->mppe = go->mppe_stateless = 0;
529 + /* MPPE is not compatible with other compression types */
530 + if (ccp_wantoptions[f->unit].mppe) {
531 + ao->bsd_compress = go->bsd_compress = 0;
532 + ao->predictor_1 = go->predictor_1 = 0;
533 + ao->predictor_2 = go->predictor_2 = 0;
534 + ao->deflate = go->deflate = 0;
535 + ao->lzs = go->lzs = 0;
540 - ao->mppe = go->mppe;
541 - /* MPPE is not compatible with other compression types */
542 - ao->bsd_compress = go->bsd_compress = 0;
543 - ao->predictor_1 = go->predictor_1 = 0;
544 - ao->predictor_2 = go->predictor_2 = 0;
545 - ao->deflate = go->deflate = 0;
550 - * Check whether the kernel knows about the various
551 - * compression methods we might request.
555 - opt_buf[0] = CI_MPPE;
556 - opt_buf[1] = CILEN_MPPE;
557 - MPPE_OPTS_TO_CI(go->mppe, &opt_buf[2]);
558 - /* Key material unimportant here. */
559 - if (ccp_test(f->unit, opt_buf, CILEN_MPPE + MPPE_MAX_KEY_LEN, 0) <= 0) {
560 - error("MPPE required, but kernel has no support.");
561 - lcp_close(f->unit, "MPPE required but not available");
564 + opt_buf[0] = CI_LZS;
565 + opt_buf[1] = CILEN_LZS;
566 + opt_buf[2] = go->lzs_hists >> 8;
567 + opt_buf[3] = go->lzs_hists & 0xff;
568 + opt_buf[4] = LZS_MODE_SEQ;
569 + if (ccp_test(f->unit, opt_buf, CILEN_LZS, 0) <= 0)
573 if (go->bsd_compress) {
574 opt_buf[0] = CI_BSD_COMPRESS;
575 opt_buf[1] = CILEN_BSD_COMPRESS;
577 + (go->deflate? CILEN_DEFLATE: 0)
578 + (go->predictor_1? CILEN_PREDICTOR_1: 0)
579 + (go->predictor_2? CILEN_PREDICTOR_2: 0)
580 - + (go->mppe? CILEN_MPPE: 0);
581 + + (go->lzs? CILEN_LZS: 0)
582 + + ((go->mppe || go->mppc)? CILEN_MPPE: 0);
589 ccp_options *go = &ccp_gotoptions[f->unit];
590 + ccp_options *ao = &ccp_allowoptions[f->unit];
591 + ccp_options *wo = &ccp_wantoptions[f->unit];
595 @@ -701,22 +839,43 @@
596 * in case it gets Acked.
600 + if (go->mppe || go->mppc || (!wo->mppe && ao->mppe)) {
601 u_char opt_buf[CILEN_MPPE + MPPE_MAX_KEY_LEN];
603 - p[0] = opt_buf[0] = CI_MPPE;
604 - p[1] = opt_buf[1] = CILEN_MPPE;
605 - MPPE_OPTS_TO_CI(go->mppe, &p[2]);
606 - MPPE_OPTS_TO_CI(go->mppe, &opt_buf[2]);
609 + p[2] = (go->mppe_stateless ? MPPE_STATELESS : 0);
612 + p[5] = (go->mppe_40 ? MPPE_40BIT : 0) | (go->mppe_56 ? MPPE_56BIT : 0) |
613 + (go->mppe_128 ? MPPE_128BIT : 0) | (go->mppc ? MPPE_MPPC : 0);
615 + BCOPY(p, opt_buf, CILEN_MPPE);
616 BCOPY(mppe_recv_key, &opt_buf[CILEN_MPPE], MPPE_MAX_KEY_LEN);
617 res = ccp_test(f->unit, opt_buf, CILEN_MPPE + MPPE_MAX_KEY_LEN, 0);
623 /* This shouldn't happen, we've already tested it! */
624 - lcp_close(f->unit, "MPPE required but not available in kernel");
625 + go->mppe = go->mppe_40 = go->mppe_56 = go->mppe_128 =
626 + go->mppe_stateless = go->mppc = 0;
627 + if (ccp_wantoptions[f->unit].mppe)
628 + lcp_close(f->unit, "MPPE required but not available in kernel");
635 + p[2] = go->lzs_hists >> 8;
636 + p[3] = go->lzs_hists & 0xff;
637 + p[4] = LZS_MODE_SEQ;
638 + res = ccp_test(f->unit, p, CILEN_LZS, 0);
646 p[0] = go->deflate_correct? CI_DEFLATE: CI_DEFLATE_DRAFT;
647 p[1] = CILEN_DEFLATE;
651 * ccp_ackci - process a received configure-ack, and return
652 - * 1 iff the packet was OK.
653 + * 1 if the packet was OK.
657 @@ -811,24 +970,44 @@
660 ccp_options *go = &ccp_gotoptions[f->unit];
661 + ccp_options *ao = &ccp_allowoptions[f->unit];
662 + ccp_options *wo = &ccp_wantoptions[f->unit];
667 - u_char opt_buf[CILEN_MPPE];
669 - opt_buf[0] = CI_MPPE;
670 - opt_buf[1] = CILEN_MPPE;
671 - MPPE_OPTS_TO_CI(go->mppe, &opt_buf[2]);
672 - if (len < CILEN_MPPE || memcmp(opt_buf, p, CILEN_MPPE))
673 + if (go->mppe || go->mppc || (!wo->mppe && ao->mppe)) {
674 + if (len < CILEN_MPPE
675 + || p[1] != CILEN_MPPE || p[0] != CI_MPPE
676 + || p[2] != (go->mppe_stateless ? MPPE_STATELESS : 0)
679 + || (p[5] != ((go->mppe_40 ? MPPE_40BIT : 0) |
680 + (go->mppc ? MPPE_MPPC : 0))
681 + && p[5] != ((go->mppe_56 ? MPPE_56BIT : 0) |
682 + (go->mppc ? MPPE_MPPC : 0))
683 + && p[5] != ((go->mppe_128 ? MPPE_128BIT : 0) |
684 + (go->mppc ? MPPE_MPPC : 0))))
686 + if (go->mppe_40 || go->mppe_56 || go->mppe_128)
690 + /* Cope with first/fast ack */
691 + if (p == p0 && len == 0)
696 + if (len < CILEN_LZS || p[0] != CI_LZS || p[1] != CILEN_LZS
697 + || p[2] != go->lzs_hists>>8 || p[3] != (go->lzs_hists&0xff)
698 + || p[4] != LZS_MODE_SEQ)
702 /* XXX Cope with first/fast ack */
704 + if (p == p0 && len == 0)
709 if (len < CILEN_DEFLATE
710 || p[0] != (go->deflate_correct? CI_DEFLATE: CI_DEFLATE_DRAFT)
714 * ccp_nakci - process received configure-nak.
715 - * Returns 1 iff the nak was OK.
716 + * Returns 1 if the nak was OK.
719 ccp_nakci(f, p, len, treat_as_reject)
723 ccp_options *go = &ccp_gotoptions[f->unit];
724 + ccp_options *ao = &ccp_allowoptions[f->unit];
725 + ccp_options *wo = &ccp_wantoptions[f->unit];
726 ccp_options no; /* options we've seen already */
727 ccp_options try; /* options to ask for next time */
729 @@ -907,28 +1088,100 @@
733 - if (go->mppe && len >= CILEN_MPPE
734 - && p[0] == CI_MPPE && p[1] == CILEN_MPPE) {
737 - * Peer wants us to use a different strength or other setting.
738 - * Fail if we aren't willing to use his suggestion.
740 - MPPE_CI_TO_OPTS(&p[2], try.mppe);
741 - if ((try.mppe & MPPE_OPT_STATEFUL) && refuse_mppe_stateful) {
742 - error("Refusing MPPE stateful mode offered by peer");
744 - } else if (((go->mppe | MPPE_OPT_STATEFUL) & try.mppe) != try.mppe) {
745 - /* Peer must have set options we didn't request (suggest) */
748 + if ((go->mppe || go->mppc || (!wo->mppe && ao->mppe)) &&
749 + len >= CILEN_MPPE && p[0] == CI_MPPE && p[1] == CILEN_MPPE) {
752 - error("MPPE required but peer negotiation failed");
753 - lcp_close(f->unit, "MPPE required but peer negotiation failed");
756 + if (!(p[5] & MPPE_MPPC))
768 + if (go->mppe_stateless)
769 + no.mppe_stateless = 1;
772 + if ((p[5] & MPPE_40BIT))
775 + try.mppe_40 = (p[5] == 0) ? 1 : 0;
778 + if ((p[5] & MPPE_56BIT))
781 + try.mppe_56 = (p[5] == 0) ? 1 : 0;
783 + if (ao->mppe_128) {
784 + if ((p[5] & MPPE_128BIT))
787 + try.mppe_128 = (p[5] == 0) ? 1 : 0;
790 + if (ao->mppe_stateless) {
791 + if ((p[2] & MPPE_STATELESS) || wo->mppe_stateless)
792 + try.mppe_stateless = 1;
794 + try.mppe_stateless = 0;
797 + if (!try.mppe_56 && !try.mppe_40 && !try.mppe_128) {
798 + try.mppe = try.mppe_stateless = 0;
800 + /* we require encryption, but peer doesn't support it
801 + so we close connection */
802 + wo->mppc = wo->mppe = wo->mppe_stateless = wo->mppe_40 =
803 + wo->mppe_56 = wo->mppe_128 = 0;
804 + lcp_close(f->unit, "MPPE required but cannot negotiate MPPE "
808 + if (wo->mppe && (wo->mppe_40 != try.mppe_40) &&
809 + (wo->mppe_56 != try.mppe_56) && (wo->mppe_128 != try.mppe_128)) {
810 + /* cannot negotiate key length */
811 + wo->mppc = wo->mppe = wo->mppe_stateless = wo->mppe_40 =
812 + wo->mppe_56 = wo->mppe_128 = 0;
813 + lcp_close(f->unit, "Cannot negotiate MPPE key length");
815 + if (try.mppe_40 && try.mppe_56 && try.mppe_128)
816 + try.mppe_40 = try.mppe_56 = 0;
818 + if (try.mppe_56 && try.mppe_128)
821 + if (try.mppe_40 && try.mppe_128)
824 + if (try.mppe_40 && try.mppe_56)
832 + if (go->lzs && len >= CILEN_LZS && p[0] == CI_LZS && p[1] == CILEN_LZS) {
834 + if (((p[2]<<8)|p[3]) > 1 || (p[4] != LZS_MODE_SEQ &&
835 + p[4] != LZS_MODE_EXT))
838 + try.lzs_mode = p[4];
839 + try.lzs_hists = (p[2] << 8) | p[3];
845 if (go->deflate && len >= CILEN_DEFLATE
846 && p[0] == (go->deflate_correct? CI_DEFLATE: CI_DEFLATE_DRAFT)
847 && p[1] == CILEN_DEFLATE) {
848 @@ -1001,14 +1254,50 @@
852 - if (go->mppe && len >= CILEN_MPPE
853 + if ((go->mppe || go->mppc) && len >= CILEN_MPPE
854 && p[0] == CI_MPPE && p[1] == CILEN_MPPE) {
855 - error("MPPE required but peer refused");
856 - lcp_close(f->unit, "MPPE required but peer refused");
857 + ccp_options *wo = &ccp_wantoptions[f->unit];
858 + if (p[2] != (go->mppe_stateless ? MPPE_STATELESS : 0) ||
861 + p[5] != ((go->mppe_40 ? MPPE_40BIT : 0) |
862 + (go->mppe_56 ? MPPE_56BIT : 0) |
863 + (go->mppe_128 ? MPPE_128BIT : 0) |
864 + (go->mppc ? MPPE_MPPC : 0)))
876 + if (go->mppe_stateless)
877 + try.mppe_stateless = 0;
878 + if (!try.mppe_56 && !try.mppe_40 && !try.mppe_128)
879 + try.mppe = try.mppe_stateless = 0;
880 + if (wo->mppe) { /* we want MPPE but cannot negotiate key length */
881 + wo->mppc = wo->mppe = wo->mppe_stateless = wo->mppe_40 =
882 + wo->mppe_56 = wo->mppe_128 = 0;
883 + lcp_close(f->unit, "MPPE required but cannot negotiate MPPE "
892 + if (go->lzs && len >= CILEN_LZS && p[0] == CI_LZS && p[1] == CILEN_LZS) {
893 + if (p[2] != go->lzs_hists>>8 || p[3] != (go->lzs_hists&0xff)
894 + || p[4] != go->lzs_mode)
900 if (go->deflate_correct && len >= CILEN_DEFLATE
901 && p[0] == CI_DEFLATE && p[1] == CILEN_DEFLATE) {
902 if (p[2] != DEFLATE_MAKE_OPT(go->deflate_size)
903 @@ -1072,14 +1361,15 @@
906 int ret, newret, res;
908 + u_char *p0, *retp, p2, p5;
909 int len, clen, type, nb;
910 ccp_options *ho = &ccp_hisoptions[f->unit];
911 ccp_options *ao = &ccp_allowoptions[f->unit];
912 + ccp_options *wo = &ccp_wantoptions[f->unit];
914 - bool rej_for_ci_mppe = 1; /* Are we rejecting based on a bad/missing */
915 - /* CI_MPPE, or due to other options? */
917 + u_char opt_buf[CILEN_MPPE + MPPE_MAX_KEY_LEN];
923 @@ -1102,103 +1392,305 @@
927 - if (!ao->mppe || clen != CILEN_MPPE) {
928 + if ((!ao->mppc && !ao->mppe) || clen != CILEN_MPPE) {
932 - MPPE_CI_TO_OPTS(&p[2], ho->mppe);
934 - /* Nak if anything unsupported or unknown are set. */
935 - if (ho->mppe & MPPE_OPT_UNSUPPORTED) {
937 - ho->mppe &= ~MPPE_OPT_UNSUPPORTED;
939 - if (ho->mppe & MPPE_OPT_UNKNOWN) {
942 + /* not sure what they want, tell 'em what we got */
943 + if (((p[2] & ~MPPE_STATELESS) != 0 || p[3] != 0 || p[4] != 0 ||
944 + (p[5] & ~(MPPE_40BIT | MPPE_56BIT | MPPE_128BIT |
945 + MPPE_MPPC)) != 0 || p[5] == 0) ||
946 + (p[2] == 0 && p[3] == 0 && p[4] == 0 && p[5] == 0)) {
948 - ho->mppe &= ~MPPE_OPT_UNKNOWN;
949 + p[2] = (wo->mppe_stateless ? MPPE_STATELESS : 0);
952 + p[5] = (wo->mppe_40 ? MPPE_40BIT : 0) |
953 + (wo->mppe_56 ? MPPE_56BIT : 0) |
954 + (wo->mppe_128 ? MPPE_128BIT : 0) |
955 + (wo->mppc ? MPPE_MPPC : 0);
959 - /* Check state opt */
960 - if (ho->mppe & MPPE_OPT_STATEFUL) {
962 - * We can Nak and request stateless, but it's a
963 - * lot easier to just assume the peer will request
964 - * it if he can do it; stateful mode is bad over
965 - * the Internet -- which is where we expect MPPE.
967 - if (refuse_mppe_stateful) {
968 - error("Refusing MPPE stateful mode offered by peer");
969 + if ((p[5] & MPPE_MPPC)) {
972 + BCOPY(p, opt_buf, CILEN_MPPE);
973 + opt_buf[2] = opt_buf[3] = opt_buf[4] = 0;
974 + opt_buf[5] = MPPE_MPPC;
975 + if (ccp_test(f->unit, opt_buf, CILEN_MPPE, 1) <= 0) {
977 + p[5] &= ~MPPE_MPPC;
983 + if (wo->mppe || ao->mppe) {
984 + p[5] &= ~MPPE_MPPC;
993 + if ((p[2] & MPPE_STATELESS)) {
994 + if (ao->mppe_stateless) {
995 + if (wo->mppe_stateless)
996 + ho->mppe_stateless = 1;
1000 + p[2] &= ~MPPE_STATELESS;
1005 + p[2] &= ~MPPE_STATELESS;
1008 + if (wo->mppe_stateless && !dont_nak) {
1009 + wo->mppe_stateless = 0;
1011 + p[2] |= MPPE_STATELESS;
1015 - /* Find out which of {S,L} are set. */
1016 - if ((ho->mppe & MPPE_OPT_128)
1017 - && (ho->mppe & MPPE_OPT_40)) {
1018 - /* Both are set, negotiate the strongest. */
1019 + if ((p[5] & ~MPPE_MPPC) == (MPPE_40BIT|MPPE_56BIT|MPPE_128BIT)) {
1021 - if (ao->mppe & MPPE_OPT_128)
1022 - ho->mppe &= ~MPPE_OPT_40;
1023 - else if (ao->mppe & MPPE_OPT_40)
1024 - ho->mppe &= ~MPPE_OPT_128;
1028 + if (ao->mppe_128) {
1030 + p[5] &= ~(MPPE_40BIT|MPPE_56BIT);
1031 + BCOPY(p, opt_buf, CILEN_MPPE);
1032 + BCOPY(mppe_send_key, &opt_buf[CILEN_MPPE],
1033 + MPPE_MAX_KEY_LEN);
1034 + if (ccp_test(f->unit, opt_buf, CILEN_MPPE +
1035 + MPPE_MAX_KEY_LEN, 1) <= 0) {
1037 + p[5] |= (MPPE_40BIT|MPPE_56BIT);
1038 + p[5] &= ~MPPE_128BIT;
1039 + goto check_mppe_56_40;
1043 - } else if (ho->mppe & MPPE_OPT_128) {
1044 - if (!(ao->mppe & MPPE_OPT_128)) {
1047 + p[5] &= ~MPPE_128BIT;
1048 + goto check_mppe_56_40;
1050 + if ((p[5] & ~MPPE_MPPC) == (MPPE_56BIT|MPPE_128BIT)) {
1052 + if (ao->mppe_128) {
1054 + p[5] &= ~MPPE_56BIT;
1055 + BCOPY(p, opt_buf, CILEN_MPPE);
1056 + BCOPY(mppe_send_key, &opt_buf[CILEN_MPPE],
1057 + MPPE_MAX_KEY_LEN);
1058 + if (ccp_test(f->unit, opt_buf, CILEN_MPPE +
1059 + MPPE_MAX_KEY_LEN, 1) <= 0) {
1061 + p[5] |= MPPE_56BIT;
1062 + p[5] &= ~MPPE_128BIT;
1063 + goto check_mppe_56;
1067 - } else if (ho->mppe & MPPE_OPT_40) {
1068 - if (!(ao->mppe & MPPE_OPT_40)) {
1071 + p[5] &= ~MPPE_128BIT;
1072 + goto check_mppe_56;
1074 + if ((p[5] & ~MPPE_MPPC) == (MPPE_40BIT|MPPE_128BIT)) {
1076 + if (ao->mppe_128) {
1078 + p[5] &= ~MPPE_40BIT;
1079 + BCOPY(p, opt_buf, CILEN_MPPE);
1080 + BCOPY(mppe_send_key, &opt_buf[CILEN_MPPE],
1081 + MPPE_MAX_KEY_LEN);
1082 + if (ccp_test(f->unit, opt_buf, CILEN_MPPE +
1083 + MPPE_MAX_KEY_LEN, 1) <= 0) {
1085 + p[5] |= MPPE_40BIT;
1086 + p[5] &= ~MPPE_128BIT;
1087 + goto check_mppe_40;
1091 + p[5] &= ~MPPE_128BIT;
1092 + goto check_mppe_40;
1094 + if ((p[5] & ~MPPE_MPPC) == MPPE_128BIT) {
1095 + if (ao->mppe_128) {
1097 + BCOPY(p, opt_buf, CILEN_MPPE);
1098 + BCOPY(mppe_send_key, &opt_buf[CILEN_MPPE],
1099 + MPPE_MAX_KEY_LEN);
1100 + if (ccp_test(f->unit, opt_buf, CILEN_MPPE +
1101 + MPPE_MAX_KEY_LEN, 1) <= 0) {
1103 + p[5] &= ~MPPE_128BIT;
1108 + p[5] &= ~MPPE_128BIT;
1113 + if ((p[5] & ~MPPE_MPPC) == (MPPE_40BIT|MPPE_56BIT)) {
1115 + if (ao->mppe_56) {
1117 + p[5] &= ~MPPE_40BIT;
1118 + BCOPY(p, opt_buf, CILEN_MPPE);
1119 + BCOPY(mppe_send_key, &opt_buf[CILEN_MPPE],
1120 + MPPE_MAX_KEY_LEN);
1121 + if (ccp_test(f->unit, opt_buf, CILEN_MPPE +
1122 + MPPE_MAX_KEY_LEN, 1) <= 0) {
1124 + p[5] |= MPPE_40BIT;
1125 + p[5] &= ~MPPE_56BIT;
1127 + goto check_mppe_40;
1131 + p[5] &= ~MPPE_56BIT;
1132 + goto check_mppe_40;
1135 + if ((p[5] & ~MPPE_MPPC) == MPPE_56BIT) {
1136 + if (ao->mppe_56) {
1138 + BCOPY(p, opt_buf, CILEN_MPPE);
1139 + BCOPY(mppe_send_key, &opt_buf[CILEN_MPPE],
1140 + MPPE_MAX_KEY_LEN);
1141 + if (ccp_test(f->unit, opt_buf, CILEN_MPPE +
1142 + MPPE_MAX_KEY_LEN, 1) <= 0) {
1144 + p[5] &= ~MPPE_56BIT;
1149 + p[5] &= ~MPPE_56BIT;
1154 + if ((p[5] & ~MPPE_MPPC) == MPPE_40BIT) {
1155 + if (ao->mppe_40) {
1157 + BCOPY(p, opt_buf, CILEN_MPPE);
1158 + BCOPY(mppe_send_key, &opt_buf[CILEN_MPPE],
1159 + MPPE_MAX_KEY_LEN);
1160 + if (ccp_test(f->unit, opt_buf, CILEN_MPPE +
1161 + MPPE_MAX_KEY_LEN, 1) <= 0) {
1163 + p[5] &= ~MPPE_40BIT;
1168 + p[5] &= ~MPPE_40BIT;
1172 + if (!ho->mppe_40 && !ho->mppe_56 && !ho->mppe_128) {
1173 + if (wo->mppe_40 || wo->mppe_56 || wo->mppe_128) {
1175 + p[2] |= (wo->mppe_stateless ? MPPE_STATELESS : 0);
1176 + p[5] |= (wo->mppe_40 ? MPPE_40BIT : 0) |
1177 + (wo->mppe_56 ? MPPE_56BIT : 0) |
1178 + (wo->mppe_128 ? MPPE_128BIT : 0) |
1179 + (wo->mppc ? MPPE_MPPC : 0);
1181 + ho->mppe = ho->mppe_stateless = 0;
1184 - /* Neither are set. */
1185 + /* MPPE is not compatible with other compression types */
1187 + ao->bsd_compress = 0;
1188 + ao->predictor_1 = 0;
1189 + ao->predictor_2 = 0;
1194 + if ((!ho->mppc || !ao->mppc) && !ho->mppe) {
1201 - /* rebuild the opts */
1202 - MPPE_OPTS_TO_CI(ho->mppe, &p[2]);
1203 - if (newret == CONFACK) {
1204 - u_char opt_buf[CILEN_MPPE + MPPE_MAX_KEY_LEN];
1207 - BCOPY(p, opt_buf, CILEN_MPPE);
1208 - BCOPY(mppe_send_key, &opt_buf[CILEN_MPPE],
1209 - MPPE_MAX_KEY_LEN);
1210 - if (ccp_test(f->unit, opt_buf,
1211 - CILEN_MPPE + MPPE_MAX_KEY_LEN, 1) <= 0) {
1212 - /* This shouldn't happen, we've already tested it! */
1213 - error("MPPE required, but kernel has no support.");
1214 - lcp_close(f->unit, "MPPE required but not available");
1219 - * We need to decrease the interface MTU by MPPE_PAD
1220 - * because MPPE frames **grow**. The kernel [must]
1221 - * allocate MPPE_PAD extra bytes in xmit buffers.
1223 - mtu = netif_get_mtu(f->unit);
1225 - netif_set_mtu(f->unit, mtu - MPPE_PAD);
1230 + * I have commented the code below because according to RFC1547
1231 + * MTU is only information for higher level protocols about
1232 + * "the maximum allowable length for a packet (q.v.) transmitted
1233 + * over a point-to-point link without incurring network layer
1234 + * fragmentation." Of course a PPP implementation should be able
1235 + * to handle overhead added by MPPE - in our case apropriate code
1236 + * is located in drivers/net/ppp_generic.c in the kernel sources.
1238 + * According to RFC1661:
1239 + * - when negotiated MRU is less than 1500 octets, a PPP
1240 + * implementation must still be able to receive at least 1500
1242 + * - when PFC is negotiated, a PPP implementation is still
1243 + * required to receive frames with uncompressed protocol field.
1245 + * So why not to handle MPPE overhead without changing MTU value?
1246 + * I am sure that RFC3078, unfortunately silently, assumes that.
1250 - * We have accepted MPPE or are willing to negotiate
1251 - * MPPE parameters. A CONFREJ is due to subsequent
1252 - * (non-MPPE) processing.
1253 + * We need to decrease the interface MTU by MPPE_PAD
1254 + * because MPPE frames **grow**. The kernel [must]
1255 + * allocate MPPE_PAD extra bytes in xmit buffers.
1257 - rej_for_ci_mppe = 0;
1259 + mtu = netif_get_mtu(f->unit);
1261 + netif_set_mtu(f->unit, mtu - MPPE_PAD);
1264 + if (ccp_wantoptions[f->unit].mppe) {
1265 + error("Cannot adjust MTU needed by MPPE.");
1266 + lcp_close(f->unit, "Cannot adjust MTU needed by MPPE.");
1274 + if (!ao->lzs || clen != CILEN_LZS) {
1280 + ho->lzs_hists = (p[2] << 8) | p[3];
1281 + ho->lzs_mode = p[4];
1282 + if ((ho->lzs_hists != ao->lzs_hists) ||
1283 + (ho->lzs_mode != ao->lzs_mode)) {
1286 + p[2] = ao->lzs_hists >> 8;
1287 + p[3] = ao->lzs_hists & 0xff;
1288 + p[4] = ao->lzs_mode;
1293 + if (p == p0 && ccp_test(f->unit, p, CILEN_LZS, 1) <= 0) {
1299 case CI_DEFLATE_DRAFT:
1300 if (!ao->deflate || clen != CILEN_DEFLATE
1301 @@ -1340,12 +1832,6 @@
1306 - if (ret == CONFREJ && ao->mppe && rej_for_ci_mppe) {
1307 - error("MPPE required but peer negotiation failed");
1308 - lcp_close(f->unit, "MPPE required but peer negotiation failed");
1314 @@ -1367,24 +1853,35 @@
1316 char *q = result + sizeof(result); /* 1 past result */
1318 - slprintf(p, q - p, "MPPE ");
1320 - if (opt->mppe & MPPE_OPT_128) {
1321 - slprintf(p, q - p, "128-bit ");
1324 - if (opt->mppe & MPPE_OPT_40) {
1325 - slprintf(p, q - p, "40-bit ");
1328 - if (opt->mppe & MPPE_OPT_STATEFUL)
1329 - slprintf(p, q - p, "stateful");
1331 - slprintf(p, q - p, "stateless");
1335 + slprintf(p, q - p, "MPPC/MPPE ");
1338 + slprintf(p, q - p, "MPPE ");
1341 + if (opt->mppe_128) {
1342 + slprintf(p, q - p, "128-bit ");
1344 + } else if (opt->mppe_56) {
1345 + slprintf(p, q - p, "56-bit ");
1347 + } else if (opt->mppe_40) {
1348 + slprintf(p, q - p, "40-bit ");
1351 + if (opt->mppe_stateless)
1352 + slprintf(p, q - p, "stateless");
1354 + slprintf(p, q - p, "stateful");
1355 + } else if (opt->mppc)
1356 + slprintf(p, q - p, "MPPC");
1362 + return "Stac LZS";
1364 case CI_DEFLATE_DRAFT:
1365 if (opt2 != NULL && opt2->deflate_size != opt->deflate_size)
1366 @@ -1440,12 +1937,12 @@
1367 } else if (ANY_COMPRESS(*ho))
1368 notice("%s transmit compression enabled", method_name(ho, NULL));
1371 + if (go->mppe || go->mppc) {
1372 BZERO(mppe_recv_key, MPPE_MAX_KEY_LEN);
1373 BZERO(mppe_send_key, MPPE_MAX_KEY_LEN);
1374 continue_networks(f->unit); /* Bring up IP et al */
1381 @@ -1468,7 +1965,7 @@
1382 lcp_close(f->unit, "MPPE disabled");
1390 @@ -1528,24 +2025,28 @@
1393 if (optlen >= CILEN_MPPE) {
1396 - MPPE_CI_TO_OPTS(&p[2], mppe_opts);
1397 - printer(arg, "mppe %s %s %s %s %s %s%s",
1398 - (p[2] & MPPE_H_BIT)? "+H": "-H",
1399 - (p[5] & MPPE_M_BIT)? "+M": "-M",
1400 - (p[5] & MPPE_S_BIT)? "+S": "-S",
1401 - (p[5] & MPPE_L_BIT)? "+L": "-L",
1402 + printer(arg, "mppe %s %s %s %s %s %s",
1403 + (p[2] & MPPE_STATELESS)? "+H": "-H",
1404 + (p[5] & MPPE_56BIT)? "+M": "-M",
1405 + (p[5] & MPPE_128BIT)? "+S": "-S",
1406 + (p[5] & MPPE_40BIT)? "+L": "-L",
1407 (p[5] & MPPE_D_BIT)? "+D": "-D",
1408 - (p[5] & MPPE_C_BIT)? "+C": "-C",
1409 - (mppe_opts & MPPE_OPT_UNKNOWN)? " +U": "");
1410 - if (mppe_opts & MPPE_OPT_UNKNOWN)
1411 + (p[5] & MPPE_MPPC)? "+C": "-C");
1412 + if ((p[5] & ~(MPPE_56BIT | MPPE_128BIT | MPPE_40BIT |
1413 + MPPE_D_BIT | MPPE_MPPC)) ||
1414 + (p[2] & ~MPPE_STATELESS))
1415 printer(arg, " (%.2x %.2x %.2x %.2x)",
1416 p[2], p[3], p[4], p[5]);
1423 + if (optlen >= CILEN_LZS) {
1424 + printer(arg, "lzs %.2x %.2x %.2x", p[2], p[3], p[4]);
1429 case CI_DEFLATE_DRAFT:
1430 if (optlen >= CILEN_DEFLATE) {
1431 @@ -1631,6 +2132,7 @@
1432 error("Lost compression sync: disabling compression");
1433 ccp_close(unit, "Lost compression sync");
1435 + /* My module dosn't need this. J.D., 2003-07-06 */
1437 * If we were doing MPPE, we must also take the link down.
1439 @@ -1638,9 +2140,18 @@
1440 error("Too many MPPE errors, closing LCP");
1441 lcp_close(unit, "Too many MPPE errors");
1447 + * When LZS or MPPE/MPPC is negotiated we just send CCP_RESETREQ
1448 + * and don't wait for CCP_RESETACK
1450 + if ((ccp_gotoptions[f->unit].method == CI_LZS) ||
1451 + (ccp_gotoptions[f->unit].method == CI_MPPE)) {
1452 + fsm_sdata(f, CCP_RESETREQ, f->reqid = ++f->id, NULL, 0);
1456 * Send a reset-request to reset the peer's compressor.
1457 * We don't do that if we are still waiting for an
1458 * acknowledgement to a previous reset-request.
1459 @@ -1671,4 +2182,3 @@
1461 ccp_localstate[f->unit] &= ~RACK_PENDING;
1464 diff -ruN ppp-2.4.3.orig/pppd/ccp.h ppp-2.4.3/pppd/ccp.h
1465 --- ppp-2.4.3.orig/pppd/ccp.h 2004-11-04 11:02:26.000000000 +0100
1466 +++ ppp-2.4.3/pppd/ccp.h 2004-11-21 13:54:09.000000000 +0100
1468 bool predictor_2; /* do Predictor-2? */
1469 bool deflate_correct; /* use correct code for deflate? */
1470 bool deflate_draft; /* use draft RFC code for deflate? */
1471 + bool lzs; /* do Stac LZS? */
1472 + bool mppc; /* do MPPC? */
1473 bool mppe; /* do MPPE? */
1474 + bool mppe_40; /* allow 40 bit encryption? */
1475 + bool mppe_56; /* allow 56 bit encryption? */
1476 + bool mppe_128; /* allow 128 bit encryption? */
1477 + bool mppe_stateless; /* allow stateless encryption */
1478 u_short bsd_bits; /* # bits/code for BSD Compress */
1479 u_short deflate_size; /* lg(window size) for Deflate */
1480 + u_short lzs_mode; /* LZS check mode */
1481 + u_short lzs_hists; /* number of LZS histories */
1482 short method; /* code for chosen compression method */
1485 diff -ruN ppp-2.4.3.orig/pppd/chap_ms.c ppp-2.4.3/pppd/chap_ms.c
1486 --- ppp-2.4.3.orig/pppd/chap_ms.c 2004-11-12 10:57:43.000000000 +0100
1487 +++ ppp-2.4.3/pppd/chap_ms.c 2004-11-21 13:54:09.000000000 +0100
1488 @@ -895,13 +895,17 @@
1490 * Disable undesirable encryption types. Note that we don't ENABLE
1491 * any encryption types, to avoid overriding manual configuration.
1493 + * It seems that 56 bit keys are unsupported in MS-RADIUS (see RFC 2548)
1496 case MPPE_ENC_TYPES_RC4_40:
1497 - ccp_wantoptions[0].mppe &= ~MPPE_OPT_128; /* disable 128-bit */
1498 + ccp_wantoptions[0].mppe_128 = 0; /* disable 128-bit */
1499 + ccp_wantoptions[0].mppe_56 = 0; /* disable 56-bit */
1501 case MPPE_ENC_TYPES_RC4_128:
1502 - ccp_wantoptions[0].mppe &= ~MPPE_OPT_40; /* disable 40-bit */
1503 + ccp_wantoptions[0].mppe_56 = 0; /* disable 56-bit */
1504 + ccp_wantoptions[0].mppe_40 = 0; /* disable 40-bit */
1508 diff -ruN ppp-2.4.3.orig/pppd/pppd.8 ppp-2.4.3/pppd/pppd.8
1509 --- ppp-2.4.3.orig/pppd/pppd.8 2004-11-13 13:22:49.000000000 +0100
1510 +++ ppp-2.4.3/pppd/pppd.8 2004-11-21 14:24:47.000000000 +0100
1511 @@ -622,9 +622,29 @@
1512 Enables the use of PPP multilink; this is an alias for the `multilink'
1513 option. This option is currently only available under Linux.
1516 -Allow MPPE to use stateful mode. Stateless mode is still attempted first.
1517 -The default is to disallow stateful mode.
1519 +Enables MPPC (Microsoft Point to Point Compression). This is the default.
1521 +.B mppe \fIsubopt1[,subopt2[,subopt3[..]]]
1522 +Modify MPPE (Microsoft Point to Point Encryption) parameters. In order
1523 +for MPPE to successfully come up, you must have authenticated with either
1524 +MS-CHAP or MS-CHAPv2. By default MPPE is optional, it means that pppd will
1525 +not propose MPPE to the peer, but will negotiate MPPE if peer wants that.
1526 +You can change this using \fIrequired\fR suboption.
1527 +This option is presently only supported under Linux, and only if your
1528 +kernel has been configured to include MPPE support.
1532 +\fIrequired\fR - require MPPE; disconnect if peer doesn't support it,
1534 +\fIstateless\fR - try to negotiate stateless mode; default is stateful,
1536 +\fIno40\fR - disable 40 bit keys,
1538 +\fIno56\fR - disable 56 bit keys,
1540 +\fIno128\fR - disable 128 bit keys
1543 Enables the use of short (12-bit) sequence numbers in multilink
1544 @@ -757,17 +777,11 @@
1545 Disables the use of PPP multilink. This option is currently only
1546 available under Linux.
1549 -Disables MPPE (Microsoft Point to Point Encryption). This is the default.
1552 -Disable 40-bit encryption with MPPE.
1554 +Disables MPPC (Microsoft Point to Point Compression).
1557 -Disable 128-bit encryption with MPPE.
1559 -.B nomppe\-stateful
1560 -Disable MPPE stateful mode. This is the default.
1562 +Disables MPPE (Microsoft Point to Point Encryption).
1565 Disables the use of short (12-bit) sequence numbers in the PPP
1566 @@ -948,19 +962,6 @@
1567 Require the peer to authenticate itself using CHAP [Challenge
1568 Handshake Authentication Protocol] authentication.
1571 -Require the use of MPPE (Microsoft Point to Point Encryption). This
1572 -option disables all other compression types. This option enables
1573 -both 40-bit and 128-bit encryption. In order for MPPE to successfully
1574 -come up, you must have authenticated with either MS\-CHAP or MS\-CHAPv2.
1575 -This option is presently only supported under Linux, and only if your
1576 -kernel has been configured to include MPPE support.
1578 -.B require\-mppe\-40
1579 -Require the use of MPPE, with 40-bit encryption.
1581 -.B require\-mppe\-128
1582 -Require the use of MPPE, with 128-bit encryption.
1585 Require the peer to authenticate itself using MS\-CHAP [Microsoft Challenge