]> git.ozlabs.org Git - ppp.git/blob - pppd/ccp.c
ccp_nakci(), ccp_reqci(): If refusing MPPE stateful mode, log an error
[ppp.git] / pppd / ccp.c
1 /*
2  * ccp.c - PPP Compression Control Protocol.
3  *
4  * Copyright (c) 1994-2002 Paul Mackerras. All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  *
18  * 3. The name(s) of the authors of this software must not be used to
19  *    endorse or promote products derived from this software without
20  *    prior written permission.
21  *
22  * 4. Redistributions of any form whatsoever must retain the following
23  *    acknowledgment:
24  *    "This product includes software developed by Paul Mackerras
25  *     <paulus@samba.org>".
26  *
27  * THE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO
28  * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
29  * AND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
30  * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
31  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
32  * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
33  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
34  */
35
36 #define RCSID   "$Id: ccp.c,v 1.45 2003/04/25 09:41:58 fcusack Exp $"
37
38 #include <stdlib.h>
39 #include <string.h>
40
41 #include "pppd.h"
42 #include "fsm.h"
43 #include "ccp.h"
44 #include <net/ppp-comp.h>
45
46 #ifdef MPPE
47 #include "chap_ms.h"    /* mppe_xxxx_key, mppe_keys_set */
48 #include "lcp.h"        /* lcp_close(), lcp_fsm */
49 #endif
50
51 static const char rcsid[] = RCSID;
52
53 /*
54  * Unfortunately there is a bug in zlib which means that using a
55  * size of 8 (window size = 256) for Deflate compression will cause
56  * buffer overruns and kernel crashes in the deflate module.
57  * Until this is fixed we only accept sizes in the range 9 .. 15.
58  * Thanks to James Carlson for pointing this out.
59  */
60 #define DEFLATE_MIN_WORKS       9
61
62 /*
63  * Command-line options.
64  */
65 static int setbsdcomp __P((char **));
66 static int setdeflate __P((char **));
67 static char bsd_value[8];
68 static char deflate_value[8];
69
70 /*
71  * Option variables.
72  */
73 #ifdef MPPE
74 bool refuse_mppe_stateful = 1;          /* Allow stateful mode? */
75 #endif
76
77 static option_t ccp_option_list[] = {
78     { "noccp", o_bool, &ccp_protent.enabled_flag,
79       "Disable CCP negotiation" },
80     { "-ccp", o_bool, &ccp_protent.enabled_flag,
81       "Disable CCP negotiation", OPT_ALIAS },
82
83     { "bsdcomp", o_special, (void *)setbsdcomp,
84       "Request BSD-Compress packet compression",
85       OPT_PRIO | OPT_A2STRVAL | OPT_STATIC, bsd_value },
86     { "nobsdcomp", o_bool, &ccp_wantoptions[0].bsd_compress,
87       "don't allow BSD-Compress", OPT_PRIOSUB | OPT_A2CLR,
88       &ccp_allowoptions[0].bsd_compress },
89     { "-bsdcomp", o_bool, &ccp_wantoptions[0].bsd_compress,
90       "don't allow BSD-Compress", OPT_ALIAS | OPT_PRIOSUB | OPT_A2CLR,
91       &ccp_allowoptions[0].bsd_compress },
92
93     { "deflate", o_special, (void *)setdeflate,
94       "request Deflate compression",
95       OPT_PRIO | OPT_A2STRVAL | OPT_STATIC, deflate_value },
96     { "nodeflate", o_bool, &ccp_wantoptions[0].deflate,
97       "don't allow Deflate compression", OPT_PRIOSUB | OPT_A2CLR,
98       &ccp_allowoptions[0].deflate },
99     { "-deflate", o_bool, &ccp_wantoptions[0].deflate,
100       "don't allow Deflate compression", OPT_ALIAS | OPT_PRIOSUB | OPT_A2CLR,
101       &ccp_allowoptions[0].deflate },
102
103     { "nodeflatedraft", o_bool, &ccp_wantoptions[0].deflate_draft,
104       "don't use draft deflate #", OPT_A2COPY,
105       &ccp_allowoptions[0].deflate_draft },
106
107     { "predictor1", o_bool, &ccp_wantoptions[0].predictor_1,
108       "request Predictor-1", OPT_PRIO | 1 },
109     { "nopredictor1", o_bool, &ccp_wantoptions[0].predictor_1,
110       "don't allow Predictor-1", OPT_PRIOSUB | OPT_A2CLR,
111       &ccp_allowoptions[0].predictor_1 },
112     { "-predictor1", o_bool, &ccp_wantoptions[0].predictor_1,
113       "don't allow Predictor-1", OPT_ALIAS | OPT_PRIOSUB | OPT_A2CLR,
114       &ccp_allowoptions[0].predictor_1 },
115
116 #ifdef MPPE
117     /* MPPE options are symmetrical ... we only set wantoptions here */
118     { "require-mppe", o_bool, &ccp_wantoptions[0].mppe,
119       "require MPPE encryption",
120       OPT_PRIO | MPPE_OPT_40 | MPPE_OPT_128 },
121     { "+mppe", o_bool, &ccp_wantoptions[0].mppe,
122       "require MPPE encryption",
123       OPT_ALIAS | OPT_PRIO | MPPE_OPT_40 | MPPE_OPT_128 },
124     { "nomppe", o_bool, &ccp_wantoptions[0].mppe,
125       "don't allow MPPE encryption", OPT_PRIO },
126     { "-mppe", o_bool, &ccp_wantoptions[0].mppe,
127       "don't allow MPPE encryption", OPT_ALIAS | OPT_PRIO },
128
129     /* We use ccp_allowoptions[0].mppe as a junk var ... it is reset later */
130     { "require-mppe-40", o_bool, &ccp_allowoptions[0].mppe,
131       "require MPPE 40-bit encryption", OPT_PRIO | OPT_A2OR | MPPE_OPT_40,
132       &ccp_wantoptions[0].mppe },
133     { "+mppe-40", o_bool, &ccp_allowoptions[0].mppe,
134       "require MPPE 40-bit encryption", OPT_PRIO | OPT_A2OR | MPPE_OPT_40,
135       &ccp_wantoptions[0].mppe },
136     { "nomppe-40", o_bool, &ccp_allowoptions[0].mppe,
137       "don't allow MPPE 40-bit encryption",
138       OPT_PRIOSUB | OPT_A2CLRB | MPPE_OPT_40, &ccp_wantoptions[0].mppe },
139     { "-mppe-40", o_bool, &ccp_allowoptions[0].mppe,
140       "don't allow MPPE 40-bit encryption",
141       OPT_ALIAS | OPT_PRIOSUB | OPT_A2CLRB | MPPE_OPT_40,
142       &ccp_wantoptions[0].mppe },
143
144     { "require-mppe-128", o_bool, &ccp_allowoptions[0].mppe,
145       "require MPPE 128-bit encryption", OPT_PRIO | OPT_A2OR | MPPE_OPT_128,
146       &ccp_wantoptions[0].mppe },
147     { "+mppe-128", o_bool, &ccp_allowoptions[0].mppe,
148       "require MPPE 128-bit encryption",
149       OPT_ALIAS | OPT_PRIO | OPT_A2OR | MPPE_OPT_128,
150       &ccp_wantoptions[0].mppe },
151     { "nomppe-128", o_bool, &ccp_allowoptions[0].mppe,
152       "don't allow MPPE 128-bit encryption",
153       OPT_PRIOSUB | OPT_A2CLRB | MPPE_OPT_128, &ccp_wantoptions[0].mppe },
154     { "-mppe-128", o_bool, &ccp_allowoptions[0].mppe,
155       "don't allow MPPE 128-bit encryption",
156       OPT_ALIAS | OPT_PRIOSUB | OPT_A2CLRB | MPPE_OPT_128,
157       &ccp_wantoptions[0].mppe },
158
159     /* strange one; we always request stateless, but will we allow stateful? */
160     { "mppe-stateful", o_bool, &refuse_mppe_stateful,
161       "allow MPPE stateful mode", OPT_PRIO },
162     { "nomppe-stateful", o_bool, &refuse_mppe_stateful,
163       "disallow MPPE stateful mode", OPT_PRIO | 1 },
164 #endif /* MPPE */
165
166     { NULL }
167 };
168
169 /*
170  * Protocol entry points from main code.
171  */
172 static void ccp_init __P((int unit));
173 static void ccp_open __P((int unit));
174 static void ccp_close __P((int unit, char *));
175 static void ccp_lowerup __P((int unit));
176 static void ccp_lowerdown __P((int));
177 static void ccp_input __P((int unit, u_char *pkt, int len));
178 static void ccp_protrej __P((int unit));
179 static int  ccp_printpkt __P((u_char *pkt, int len,
180                               void (*printer) __P((void *, char *, ...)),
181                               void *arg));
182 static void ccp_datainput __P((int unit, u_char *pkt, int len));
183
184 struct protent ccp_protent = {
185     PPP_CCP,
186     ccp_init,
187     ccp_input,
188     ccp_protrej,
189     ccp_lowerup,
190     ccp_lowerdown,
191     ccp_open,
192     ccp_close,
193     ccp_printpkt,
194     ccp_datainput,
195     1,
196     "CCP",
197     "Compressed",
198     ccp_option_list,
199     NULL,
200     NULL,
201     NULL
202 };
203
204 fsm ccp_fsm[NUM_PPP];
205 ccp_options ccp_wantoptions[NUM_PPP];   /* what to request the peer to use */
206 ccp_options ccp_gotoptions[NUM_PPP];    /* what the peer agreed to do */
207 ccp_options ccp_allowoptions[NUM_PPP];  /* what we'll agree to do */
208 ccp_options ccp_hisoptions[NUM_PPP];    /* what we agreed to do */
209
210 /*
211  * Callbacks for fsm code.
212  */
213 static void ccp_resetci __P((fsm *));
214 static int  ccp_cilen __P((fsm *));
215 static void ccp_addci __P((fsm *, u_char *, int *));
216 static int  ccp_ackci __P((fsm *, u_char *, int));
217 static int  ccp_nakci __P((fsm *, u_char *, int));
218 static int  ccp_rejci __P((fsm *, u_char *, int));
219 static int  ccp_reqci __P((fsm *, u_char *, int *, int));
220 static void ccp_up __P((fsm *));
221 static void ccp_down __P((fsm *));
222 static int  ccp_extcode __P((fsm *, int, int, u_char *, int));
223 static void ccp_rack_timeout __P((void *));
224 static char *method_name __P((ccp_options *, ccp_options *));
225
226 static fsm_callbacks ccp_callbacks = {
227     ccp_resetci,
228     ccp_cilen,
229     ccp_addci,
230     ccp_ackci,
231     ccp_nakci,
232     ccp_rejci,
233     ccp_reqci,
234     ccp_up,
235     ccp_down,
236     NULL,
237     NULL,
238     NULL,
239     NULL,
240     ccp_extcode,
241     "CCP"
242 };
243
244 /*
245  * Do we want / did we get any compression?
246  */
247 #define ANY_COMPRESS(opt)       ((opt).deflate || (opt).bsd_compress \
248                                  || (opt).predictor_1 || (opt).predictor_2 \
249                                  || (opt).mppe)
250
251 /*
252  * Local state (mainly for handling reset-reqs and reset-acks).
253  */
254 static int ccp_localstate[NUM_PPP];
255 #define RACK_PENDING    1       /* waiting for reset-ack */
256 #define RREQ_REPEAT     2       /* send another reset-req if no reset-ack */
257
258 #define RACKTIMEOUT     1       /* second */
259
260 static int all_rejected[NUM_PPP];       /* we rejected all peer's options */
261
262 /*
263  * Option parsing.
264  */
265 static int
266 setbsdcomp(argv)
267     char **argv;
268 {
269     int rbits, abits;
270     char *str, *endp;
271
272     str = *argv;
273     abits = rbits = strtol(str, &endp, 0);
274     if (endp != str && *endp == ',') {
275         str = endp + 1;
276         abits = strtol(str, &endp, 0);
277     }
278     if (*endp != 0 || endp == str) {
279         option_error("invalid parameter '%s' for bsdcomp option", *argv);
280         return 0;
281     }
282     if ((rbits != 0 && (rbits < BSD_MIN_BITS || rbits > BSD_MAX_BITS))
283         || (abits != 0 && (abits < BSD_MIN_BITS || abits > BSD_MAX_BITS))) {
284         option_error("bsdcomp option values must be 0 or %d .. %d",
285                      BSD_MIN_BITS, BSD_MAX_BITS);
286         return 0;
287     }
288     if (rbits > 0) {
289         ccp_wantoptions[0].bsd_compress = 1;
290         ccp_wantoptions[0].bsd_bits = rbits;
291     } else
292         ccp_wantoptions[0].bsd_compress = 0;
293     if (abits > 0) {
294         ccp_allowoptions[0].bsd_compress = 1;
295         ccp_allowoptions[0].bsd_bits = abits;
296     } else
297         ccp_allowoptions[0].bsd_compress = 0;
298     slprintf(bsd_value, sizeof(bsd_value),
299              rbits == abits? "%d": "%d,%d", rbits, abits);
300
301     return 1;
302 }
303
304 static int
305 setdeflate(argv)
306     char **argv;
307 {
308     int rbits, abits;
309     char *str, *endp;
310
311     str = *argv;
312     abits = rbits = strtol(str, &endp, 0);
313     if (endp != str && *endp == ',') {
314         str = endp + 1;
315         abits = strtol(str, &endp, 0);
316     }
317     if (*endp != 0 || endp == str) {
318         option_error("invalid parameter '%s' for deflate option", *argv);
319         return 0;
320     }
321     if ((rbits != 0 && (rbits < DEFLATE_MIN_SIZE || rbits > DEFLATE_MAX_SIZE))
322         || (abits != 0 && (abits < DEFLATE_MIN_SIZE
323                           || abits > DEFLATE_MAX_SIZE))) {
324         option_error("deflate option values must be 0 or %d .. %d",
325                      DEFLATE_MIN_SIZE, DEFLATE_MAX_SIZE);
326         return 0;
327     }
328     if (rbits == DEFLATE_MIN_SIZE || abits == DEFLATE_MIN_SIZE) {
329         if (rbits == DEFLATE_MIN_SIZE)
330             rbits = DEFLATE_MIN_WORKS;
331         if (abits == DEFLATE_MIN_SIZE)
332             abits = DEFLATE_MIN_WORKS;
333         warn("deflate option value of %d changed to %d to avoid zlib bug",
334              DEFLATE_MIN_SIZE, DEFLATE_MIN_WORKS);
335     }
336     if (rbits > 0) {
337         ccp_wantoptions[0].deflate = 1;
338         ccp_wantoptions[0].deflate_size = rbits;
339     } else
340         ccp_wantoptions[0].deflate = 0;
341     if (abits > 0) {
342         ccp_allowoptions[0].deflate = 1;
343         ccp_allowoptions[0].deflate_size = abits;
344     } else
345         ccp_allowoptions[0].deflate = 0;
346     slprintf(deflate_value, sizeof(deflate_value),
347              rbits == abits? "%d": "%d,%d", rbits, abits);
348
349     return 1;
350 }
351
352 /*
353  * ccp_init - initialize CCP.
354  */
355 static void
356 ccp_init(unit)
357     int unit;
358 {
359     fsm *f = &ccp_fsm[unit];
360
361     f->unit = unit;
362     f->protocol = PPP_CCP;
363     f->callbacks = &ccp_callbacks;
364     fsm_init(f);
365
366     memset(&ccp_wantoptions[unit],  0, sizeof(ccp_options));
367     memset(&ccp_gotoptions[unit],   0, sizeof(ccp_options));
368     memset(&ccp_allowoptions[unit], 0, sizeof(ccp_options));
369     memset(&ccp_hisoptions[unit],   0, sizeof(ccp_options));
370
371     ccp_wantoptions[0].deflate = 1;
372     ccp_wantoptions[0].deflate_size = DEFLATE_MAX_SIZE;
373     ccp_wantoptions[0].deflate_correct = 1;
374     ccp_wantoptions[0].deflate_draft = 1;
375     ccp_allowoptions[0].deflate = 1;
376     ccp_allowoptions[0].deflate_size = DEFLATE_MAX_SIZE;
377     ccp_allowoptions[0].deflate_correct = 1;
378     ccp_allowoptions[0].deflate_draft = 1;
379
380     ccp_wantoptions[0].bsd_compress = 1;
381     ccp_wantoptions[0].bsd_bits = BSD_MAX_BITS;
382     ccp_allowoptions[0].bsd_compress = 1;
383     ccp_allowoptions[0].bsd_bits = BSD_MAX_BITS;
384
385     ccp_allowoptions[0].predictor_1 = 1;
386 }
387
388 /*
389  * ccp_open - CCP is allowed to come up.
390  */
391 static void
392 ccp_open(unit)
393     int unit;
394 {
395     fsm *f = &ccp_fsm[unit];
396
397     if (f->state != OPENED)
398         ccp_flags_set(unit, 1, 0);
399
400     /*
401      * Find out which compressors the kernel supports before
402      * deciding whether to open in silent mode.
403      */
404     ccp_resetci(f);
405     if (!ANY_COMPRESS(ccp_gotoptions[unit]))
406         f->flags |= OPT_SILENT;
407
408     fsm_open(f);
409 }
410
411 /*
412  * ccp_close - Terminate CCP.
413  */
414 static void
415 ccp_close(unit, reason)
416     int unit;
417     char *reason;
418 {
419     ccp_flags_set(unit, 0, 0);
420     fsm_close(&ccp_fsm[unit], reason);
421 }
422
423 /*
424  * ccp_lowerup - we may now transmit CCP packets.
425  */
426 static void
427 ccp_lowerup(unit)
428     int unit;
429 {
430     fsm_lowerup(&ccp_fsm[unit]);
431 }
432
433 /*
434  * ccp_lowerdown - we may not transmit CCP packets.
435  */
436 static void
437 ccp_lowerdown(unit)
438     int unit;
439 {
440     fsm_lowerdown(&ccp_fsm[unit]);
441 }
442
443 /*
444  * ccp_input - process a received CCP packet.
445  */
446 static void
447 ccp_input(unit, p, len)
448     int unit;
449     u_char *p;
450     int len;
451 {
452     fsm *f = &ccp_fsm[unit];
453     int oldstate;
454
455     /*
456      * Check for a terminate-request so we can print a message.
457      */
458     oldstate = f->state;
459     fsm_input(f, p, len);
460     if (oldstate == OPENED && p[0] == TERMREQ && f->state != OPENED) {
461         notice("Compression disabled by peer.");
462 #ifdef MPPE
463         if (ccp_gotoptions[unit].mppe) {
464             error("MPPE disabled, closing LCP");
465             lcp_close(unit, "MPPE disabled by peer");
466         }
467 #endif
468     }
469
470     /*
471      * If we get a terminate-ack and we're not asking for compression,
472      * close CCP.
473      */
474     if (oldstate == REQSENT && p[0] == TERMACK
475         && !ANY_COMPRESS(ccp_gotoptions[unit]))
476         ccp_close(unit, "No compression negotiated");
477 }
478
479 /*
480  * Handle a CCP-specific code.
481  */
482 static int
483 ccp_extcode(f, code, id, p, len)
484     fsm *f;
485     int code, id;
486     u_char *p;
487     int len;
488 {
489     switch (code) {
490     case CCP_RESETREQ:
491         if (f->state != OPENED)
492             break;
493         /* send a reset-ack, which the transmitter will see and
494            reset its compression state. */
495         fsm_sdata(f, CCP_RESETACK, id, NULL, 0);
496         break;
497
498     case CCP_RESETACK:
499         if (ccp_localstate[f->unit] & RACK_PENDING && id == f->reqid) {
500             ccp_localstate[f->unit] &= ~(RACK_PENDING | RREQ_REPEAT);
501             UNTIMEOUT(ccp_rack_timeout, f);
502         }
503         break;
504
505     default:
506         return 0;
507     }
508
509     return 1;
510 }
511
512 /*
513  * ccp_protrej - peer doesn't talk CCP.
514  */
515 static void
516 ccp_protrej(unit)
517     int unit;
518 {
519     ccp_flags_set(unit, 0, 0);
520     fsm_lowerdown(&ccp_fsm[unit]);
521
522 #ifdef MPPE
523     if (ccp_gotoptions[unit].mppe) {
524         error("MPPE required but peer negotiation failed");
525         lcp_close(unit, "MPPE required but peer negotiation failed");
526     }
527 #endif
528
529 }
530
531 /*
532  * ccp_resetci - initialize at start of negotiation.
533  */
534 static void
535 ccp_resetci(f)
536     fsm *f;
537 {
538     ccp_options *go = &ccp_gotoptions[f->unit];
539     u_char opt_buf[CCP_MAX_OPTION_LENGTH];
540
541     *go = ccp_wantoptions[f->unit];
542     all_rejected[f->unit] = 0;
543
544 #ifdef MPPE
545     if (go->mppe) {
546         ccp_options *ao = &ccp_allowoptions[f->unit];
547         int auth_mschap_bits = auth_done[f->unit];
548         int numbits;
549
550         /*
551          * Start with a basic sanity check: mschap[v2] auth must be in
552          * exactly one direction.  RFC 3079 says that the keys are
553          * 'derived from the credentials of the peer that initiated the call',
554          * however the PPP protocol doesn't have such a concept, and pppd
555          * cannot get this info externally.  Instead we do the best we can.
556          * NB: If MPPE is required, all other compression opts are invalid.
557          *     So, we return right away if we can't do it.
558          */
559
560         /* Leave only the mschap auth bits set */
561         auth_mschap_bits &= (CHAP_MS_WITHPEER  | CHAP_MS_PEER |
562                              CHAP_MS2_WITHPEER | CHAP_MS2_PEER);
563         /* Count the mschap auths */
564         auth_mschap_bits >>= CHAP_MS_SHIFT;
565         numbits = 0;
566         do {
567             numbits += auth_mschap_bits & 1;
568             auth_mschap_bits >>= 1;
569         } while (auth_mschap_bits);
570         if (numbits > 1) {
571             error("MPPE required, but auth done in both directions.");
572             lcp_close(f->unit, "MPPE required but not available");
573             return;
574         }
575         if (!numbits) {
576             error("MPPE required, but MS-CHAP[v2] auth not performed.");
577             lcp_close(f->unit, "MPPE required but not available");
578             return;
579         }
580
581         /* A plugin (eg radius) may not have obtained key material. */
582         if (!mppe_keys_set) {
583             error("MPPE required, but keys are not available.  "
584                   "Possible plugin problem?");
585             lcp_close(f->unit, "MPPE required but not available");
586             return;
587         }
588
589         /* LM auth not supported for MPPE */
590         if (auth_done[f->unit] & (CHAP_MS_WITHPEER | CHAP_MS_PEER)) {
591             /* This might be noise */
592             if (go->mppe & MPPE_OPT_40) {
593                 notice("Disabling 40-bit MPPE; MS-CHAP LM not supported");
594                 go->mppe &= ~MPPE_OPT_40;
595                 ccp_wantoptions[f->unit].mppe &= ~MPPE_OPT_40;
596             }
597         }
598
599         /* Last check: can we actually negotiate something? */
600         if (!(go->mppe & (MPPE_OPT_40 | MPPE_OPT_128))) {
601             /* Could be misconfig, could be 40-bit disabled above. */
602             error("MPPE required, but both 40-bit and 128-bit disabled.");
603             lcp_close(f->unit, "MPPE required but not available");
604             return;
605         }
606
607         /* sync options */
608         ao->mppe = go->mppe;
609         /* MPPE is not compatible with other compression types */
610         ao->bsd_compress = go->bsd_compress = 0;
611         ao->predictor_1  = go->predictor_1  = 0;
612         ao->predictor_2  = go->predictor_2  = 0;
613         ao->deflate      = go->deflate      = 0;
614     }
615 #endif /* MPPE */
616
617     /*
618      * Check whether the kernel knows about the various
619      * compression methods we might request.
620      */
621 #ifdef MPPE
622     if (go->mppe) {
623         opt_buf[0] = CI_MPPE;
624         opt_buf[1] = CILEN_MPPE;
625         MPPE_OPTS_TO_CI(go->mppe, &opt_buf[2]);
626         /* Key material unimportant here. */
627         if (ccp_test(f->unit, opt_buf, CILEN_MPPE + MPPE_MAX_KEY_LEN, 0) <= 0) {
628             error("MPPE required, but kernel has no support.");
629             lcp_close(f->unit, "MPPE required but not available");
630         }
631     }
632 #endif
633     if (go->bsd_compress) {
634         opt_buf[0] = CI_BSD_COMPRESS;
635         opt_buf[1] = CILEN_BSD_COMPRESS;
636         opt_buf[2] = BSD_MAKE_OPT(BSD_CURRENT_VERSION, BSD_MIN_BITS);
637         if (ccp_test(f->unit, opt_buf, CILEN_BSD_COMPRESS, 0) <= 0)
638             go->bsd_compress = 0;
639     }
640     if (go->deflate) {
641         if (go->deflate_correct) {
642             opt_buf[0] = CI_DEFLATE;
643             opt_buf[1] = CILEN_DEFLATE;
644             opt_buf[2] = DEFLATE_MAKE_OPT(DEFLATE_MIN_WORKS);
645             opt_buf[3] = DEFLATE_CHK_SEQUENCE;
646             if (ccp_test(f->unit, opt_buf, CILEN_DEFLATE, 0) <= 0)
647                 go->deflate_correct = 0;
648         }
649         if (go->deflate_draft) {
650             opt_buf[0] = CI_DEFLATE_DRAFT;
651             opt_buf[1] = CILEN_DEFLATE;
652             opt_buf[2] = DEFLATE_MAKE_OPT(DEFLATE_MIN_WORKS);
653             opt_buf[3] = DEFLATE_CHK_SEQUENCE;
654             if (ccp_test(f->unit, opt_buf, CILEN_DEFLATE, 0) <= 0)
655                 go->deflate_draft = 0;
656         }
657         if (!go->deflate_correct && !go->deflate_draft)
658             go->deflate = 0;
659     }
660     if (go->predictor_1) {
661         opt_buf[0] = CI_PREDICTOR_1;
662         opt_buf[1] = CILEN_PREDICTOR_1;
663         if (ccp_test(f->unit, opt_buf, CILEN_PREDICTOR_1, 0) <= 0)
664             go->predictor_1 = 0;
665     }
666     if (go->predictor_2) {
667         opt_buf[0] = CI_PREDICTOR_2;
668         opt_buf[1] = CILEN_PREDICTOR_2;
669         if (ccp_test(f->unit, opt_buf, CILEN_PREDICTOR_2, 0) <= 0)
670             go->predictor_2 = 0;
671     }
672 }
673
674 /*
675  * ccp_cilen - Return total length of our configuration info.
676  */
677 static int
678 ccp_cilen(f)
679     fsm *f;
680 {
681     ccp_options *go = &ccp_gotoptions[f->unit];
682
683     return (go->bsd_compress? CILEN_BSD_COMPRESS: 0)
684         + (go->deflate? CILEN_DEFLATE: 0)
685         + (go->predictor_1? CILEN_PREDICTOR_1: 0)
686         + (go->predictor_2? CILEN_PREDICTOR_2: 0)
687         + (go->mppe? CILEN_MPPE: 0);
688 }
689
690 /*
691  * ccp_addci - put our requests in a packet.
692  */
693 static void
694 ccp_addci(f, p, lenp)
695     fsm *f;
696     u_char *p;
697     int *lenp;
698 {
699     int res;
700     ccp_options *go = &ccp_gotoptions[f->unit];
701     u_char *p0 = p;
702
703     /*
704      * Add the compression types that we can receive, in decreasing
705      * preference order.  Get the kernel to allocate the first one
706      * in case it gets Acked.
707      */
708 #ifdef MPPE
709     if (go->mppe) {
710         u_char opt_buf[CILEN_MPPE + MPPE_MAX_KEY_LEN];
711
712         p[0] = opt_buf[0] = CI_MPPE;
713         p[1] = opt_buf[1] = CILEN_MPPE;
714         MPPE_OPTS_TO_CI(go->mppe, &p[2]);
715         MPPE_OPTS_TO_CI(go->mppe, &opt_buf[2]);
716         BCOPY(mppe_recv_key, &opt_buf[CILEN_MPPE], MPPE_MAX_KEY_LEN);
717         res = ccp_test(f->unit, opt_buf, CILEN_MPPE + MPPE_MAX_KEY_LEN, 0);
718         if (res > 0)
719             p += CILEN_MPPE;
720         else
721             /* This shouldn't happen, we've already tested it! */
722             lcp_close(f->unit, "MPPE required but not available in kernel");
723     }
724 #endif
725     if (go->deflate) {
726         p[0] = go->deflate_correct? CI_DEFLATE: CI_DEFLATE_DRAFT;
727         p[1] = CILEN_DEFLATE;
728         p[2] = DEFLATE_MAKE_OPT(go->deflate_size);
729         p[3] = DEFLATE_CHK_SEQUENCE;
730         for (;;) {
731             if (go->deflate_size < DEFLATE_MIN_WORKS) {
732                 go->deflate = 0;
733                 break;
734             }
735             res = ccp_test(f->unit, p, CILEN_DEFLATE, 0);
736             if (res > 0) {
737                 p += CILEN_DEFLATE;
738                 break;
739             } else if (res < 0) {
740                 go->deflate = 0;
741                 break;
742             }
743             --go->deflate_size;
744             p[2] = DEFLATE_MAKE_OPT(go->deflate_size);
745         }
746         if (p != p0 && go->deflate_correct && go->deflate_draft) {
747             p[0] = CI_DEFLATE_DRAFT;
748             p[1] = CILEN_DEFLATE;
749             p[2] = p[2 - CILEN_DEFLATE];
750             p[3] = DEFLATE_CHK_SEQUENCE;
751             p += CILEN_DEFLATE;
752         }
753     }
754     if (go->bsd_compress) {
755         p[0] = CI_BSD_COMPRESS;
756         p[1] = CILEN_BSD_COMPRESS;
757         p[2] = BSD_MAKE_OPT(BSD_CURRENT_VERSION, go->bsd_bits);
758         if (p != p0) {
759             p += CILEN_BSD_COMPRESS;    /* not the first option */
760         } else {
761             for (;;) {
762                 if (go->bsd_bits < BSD_MIN_BITS) {
763                     go->bsd_compress = 0;
764                     break;
765                 }
766                 res = ccp_test(f->unit, p, CILEN_BSD_COMPRESS, 0);
767                 if (res > 0) {
768                     p += CILEN_BSD_COMPRESS;
769                     break;
770                 } else if (res < 0) {
771                     go->bsd_compress = 0;
772                     break;
773                 }
774                 --go->bsd_bits;
775                 p[2] = BSD_MAKE_OPT(BSD_CURRENT_VERSION, go->bsd_bits);
776             }
777         }
778     }
779     /* XXX Should Predictor 2 be preferable to Predictor 1? */
780     if (go->predictor_1) {
781         p[0] = CI_PREDICTOR_1;
782         p[1] = CILEN_PREDICTOR_1;
783         if (p == p0 && ccp_test(f->unit, p, CILEN_PREDICTOR_1, 0) <= 0) {
784             go->predictor_1 = 0;
785         } else {
786             p += CILEN_PREDICTOR_1;
787         }
788     }
789     if (go->predictor_2) {
790         p[0] = CI_PREDICTOR_2;
791         p[1] = CILEN_PREDICTOR_2;
792         if (p == p0 && ccp_test(f->unit, p, CILEN_PREDICTOR_2, 0) <= 0) {
793             go->predictor_2 = 0;
794         } else {
795             p += CILEN_PREDICTOR_2;
796         }
797     }
798
799     go->method = (p > p0)? p0[0]: -1;
800
801     *lenp = p - p0;
802 }
803
804 /*
805  * ccp_ackci - process a received configure-ack, and return
806  * 1 iff the packet was OK.
807  */
808 static int
809 ccp_ackci(f, p, len)
810     fsm *f;
811     u_char *p;
812     int len;
813 {
814     ccp_options *go = &ccp_gotoptions[f->unit];
815     u_char *p0 = p;
816
817 #ifdef MPPE
818     if (go->mppe) {
819         u_char opt_buf[CILEN_MPPE];
820
821         opt_buf[0] = CI_MPPE;
822         opt_buf[1] = CILEN_MPPE;
823         MPPE_OPTS_TO_CI(go->mppe, &opt_buf[2]);
824         if (len < CILEN_MPPE || memcmp(opt_buf, p, CILEN_MPPE))
825             return 0;
826         p += CILEN_MPPE;
827         len -= CILEN_MPPE;
828         /* XXX Cope with first/fast ack */
829         if (len == 0)
830             return 1;
831     }
832 #endif
833     if (go->deflate) {
834         if (len < CILEN_DEFLATE
835             || p[0] != (go->deflate_correct? CI_DEFLATE: CI_DEFLATE_DRAFT)
836             || p[1] != CILEN_DEFLATE
837             || p[2] != DEFLATE_MAKE_OPT(go->deflate_size)
838             || p[3] != DEFLATE_CHK_SEQUENCE)
839             return 0;
840         p += CILEN_DEFLATE;
841         len -= CILEN_DEFLATE;
842         /* XXX Cope with first/fast ack */
843         if (len == 0)
844             return 1;
845         if (go->deflate_correct && go->deflate_draft) {
846             if (len < CILEN_DEFLATE
847                 || p[0] != CI_DEFLATE_DRAFT
848                 || p[1] != CILEN_DEFLATE
849                 || p[2] != DEFLATE_MAKE_OPT(go->deflate_size)
850                 || p[3] != DEFLATE_CHK_SEQUENCE)
851                 return 0;
852             p += CILEN_DEFLATE;
853             len -= CILEN_DEFLATE;
854         }
855     }
856     if (go->bsd_compress) {
857         if (len < CILEN_BSD_COMPRESS
858             || p[0] != CI_BSD_COMPRESS || p[1] != CILEN_BSD_COMPRESS
859             || p[2] != BSD_MAKE_OPT(BSD_CURRENT_VERSION, go->bsd_bits))
860             return 0;
861         p += CILEN_BSD_COMPRESS;
862         len -= CILEN_BSD_COMPRESS;
863         /* XXX Cope with first/fast ack */
864         if (p == p0 && len == 0)
865             return 1;
866     }
867     if (go->predictor_1) {
868         if (len < CILEN_PREDICTOR_1
869             || p[0] != CI_PREDICTOR_1 || p[1] != CILEN_PREDICTOR_1)
870             return 0;
871         p += CILEN_PREDICTOR_1;
872         len -= CILEN_PREDICTOR_1;
873         /* XXX Cope with first/fast ack */
874         if (p == p0 && len == 0)
875             return 1;
876     }
877     if (go->predictor_2) {
878         if (len < CILEN_PREDICTOR_2
879             || p[0] != CI_PREDICTOR_2 || p[1] != CILEN_PREDICTOR_2)
880             return 0;
881         p += CILEN_PREDICTOR_2;
882         len -= CILEN_PREDICTOR_2;
883         /* XXX Cope with first/fast ack */
884         if (p == p0 && len == 0)
885             return 1;
886     }
887
888     if (len != 0)
889         return 0;
890     return 1;
891 }
892
893 /*
894  * ccp_nakci - process received configure-nak.
895  * Returns 1 iff the nak was OK.
896  */
897 static int
898 ccp_nakci(f, p, len)
899     fsm *f;
900     u_char *p;
901     int len;
902 {
903     ccp_options *go = &ccp_gotoptions[f->unit];
904     ccp_options no;             /* options we've seen already */
905     ccp_options try;            /* options to ask for next time */
906
907     memset(&no, 0, sizeof(no));
908     try = *go;
909
910 #ifdef MPPE
911     if (go->mppe && len >= CILEN_MPPE
912         && p[0] == CI_MPPE && p[1] == CILEN_MPPE) {
913         no.mppe = 1;
914         /*
915          * Peer wants us to use a different strength or other setting.
916          * Fail if we aren't willing to use his suggestion.
917          */
918         MPPE_CI_TO_OPTS(&p[2], try.mppe);
919         if ((try.mppe & MPPE_OPT_STATEFUL) && refuse_mppe_stateful) {
920             error("Refusing MPPE stateful mode offered by peer");
921             try.mppe = 0;
922         } else if (((go->mppe | MPPE_OPT_STATEFUL) & try.mppe) != try.mppe) {
923             /* Peer must have set options we didn't request (suggest) */
924             try.mppe = 0;
925         }
926
927         if (!try.mppe) {
928             error("MPPE required but peer negotiation failed");
929             lcp_close(f->unit, "MPPE required but peer negotiation failed");
930         }
931     }
932 #endif /* MPPE */
933     if (go->deflate && len >= CILEN_DEFLATE
934         && p[0] == (go->deflate_correct? CI_DEFLATE: CI_DEFLATE_DRAFT)
935         && p[1] == CILEN_DEFLATE) {
936         no.deflate = 1;
937         /*
938          * Peer wants us to use a different code size or something.
939          * Stop asking for Deflate if we don't understand his suggestion.
940          */
941         if (DEFLATE_METHOD(p[2]) != DEFLATE_METHOD_VAL
942             || DEFLATE_SIZE(p[2]) < DEFLATE_MIN_WORKS
943             || p[3] != DEFLATE_CHK_SEQUENCE)
944             try.deflate = 0;
945         else if (DEFLATE_SIZE(p[2]) < go->deflate_size)
946             try.deflate_size = DEFLATE_SIZE(p[2]);
947         p += CILEN_DEFLATE;
948         len -= CILEN_DEFLATE;
949         if (go->deflate_correct && go->deflate_draft
950             && len >= CILEN_DEFLATE && p[0] == CI_DEFLATE_DRAFT
951             && p[1] == CILEN_DEFLATE) {
952             p += CILEN_DEFLATE;
953             len -= CILEN_DEFLATE;
954         }
955     }
956
957     if (go->bsd_compress && len >= CILEN_BSD_COMPRESS
958         && p[0] == CI_BSD_COMPRESS && p[1] == CILEN_BSD_COMPRESS) {
959         no.bsd_compress = 1;
960         /*
961          * Peer wants us to use a different number of bits
962          * or a different version.
963          */
964         if (BSD_VERSION(p[2]) != BSD_CURRENT_VERSION)
965             try.bsd_compress = 0;
966         else if (BSD_NBITS(p[2]) < go->bsd_bits)
967             try.bsd_bits = BSD_NBITS(p[2]);
968         p += CILEN_BSD_COMPRESS;
969         len -= CILEN_BSD_COMPRESS;
970     }
971
972     /*
973      * Predictor-1 and 2 have no options, so they can't be Naked.
974      *
975      * There may be remaining options but we ignore them.
976      */
977
978     if (f->state != OPENED)
979         *go = try;
980     return 1;
981 }
982
983 /*
984  * ccp_rejci - reject some of our suggested compression methods.
985  */
986 static int
987 ccp_rejci(f, p, len)
988     fsm *f;
989     u_char *p;
990     int len;
991 {
992     ccp_options *go = &ccp_gotoptions[f->unit];
993     ccp_options try;            /* options to request next time */
994
995     try = *go;
996
997     /*
998      * Cope with empty configure-rejects by ceasing to send
999      * configure-requests.
1000      */
1001     if (len == 0 && all_rejected[f->unit])
1002         return -1;
1003
1004 #ifdef MPPE
1005     if (go->mppe && len >= CILEN_MPPE
1006         && p[0] == CI_MPPE && p[1] == CILEN_MPPE) {
1007         error("MPPE required but peer refused");
1008         lcp_close(f->unit, "MPPE required but peer refused");
1009         p += CILEN_MPPE;
1010         len -= CILEN_MPPE;
1011     }
1012 #endif
1013     if (go->deflate && len >= CILEN_DEFLATE
1014         && p[0] == (go->deflate_correct? CI_DEFLATE: CI_DEFLATE_DRAFT)
1015         && p[1] == CILEN_DEFLATE) {
1016         if (p[2] != DEFLATE_MAKE_OPT(go->deflate_size)
1017             || p[3] != DEFLATE_CHK_SEQUENCE)
1018             return 0;           /* Rej is bad */
1019         if (go->deflate_correct)
1020             try.deflate_correct = 0;
1021         else
1022             try.deflate_draft = 0;
1023         p += CILEN_DEFLATE;
1024         len -= CILEN_DEFLATE;
1025         if (go->deflate_correct && go->deflate_draft
1026             && len >= CILEN_DEFLATE && p[0] == CI_DEFLATE_DRAFT
1027             && p[1] == CILEN_DEFLATE) {
1028             if (p[2] != DEFLATE_MAKE_OPT(go->deflate_size)
1029                 || p[3] != DEFLATE_CHK_SEQUENCE)
1030                 return 0;               /* Rej is bad */
1031             try.deflate_draft = 0;
1032             p += CILEN_DEFLATE;
1033             len -= CILEN_DEFLATE;
1034         }
1035         if (!try.deflate_correct && !try.deflate_draft)
1036             try.deflate = 0;
1037     }
1038     if (go->bsd_compress && len >= CILEN_BSD_COMPRESS
1039         && p[0] == CI_BSD_COMPRESS && p[1] == CILEN_BSD_COMPRESS) {
1040         if (p[2] != BSD_MAKE_OPT(BSD_CURRENT_VERSION, go->bsd_bits))
1041             return 0;
1042         try.bsd_compress = 0;
1043         p += CILEN_BSD_COMPRESS;
1044         len -= CILEN_BSD_COMPRESS;
1045     }
1046     if (go->predictor_1 && len >= CILEN_PREDICTOR_1
1047         && p[0] == CI_PREDICTOR_1 && p[1] == CILEN_PREDICTOR_1) {
1048         try.predictor_1 = 0;
1049         p += CILEN_PREDICTOR_1;
1050         len -= CILEN_PREDICTOR_1;
1051     }
1052     if (go->predictor_2 && len >= CILEN_PREDICTOR_2
1053         && p[0] == CI_PREDICTOR_2 && p[1] == CILEN_PREDICTOR_2) {
1054         try.predictor_2 = 0;
1055         p += CILEN_PREDICTOR_2;
1056         len -= CILEN_PREDICTOR_2;
1057     }
1058
1059     if (len != 0)
1060         return 0;
1061
1062     if (f->state != OPENED)
1063         *go = try;
1064
1065     return 1;
1066 }
1067
1068 /*
1069  * ccp_reqci - processed a received configure-request.
1070  * Returns CONFACK, CONFNAK or CONFREJ and the packet modified
1071  * appropriately.
1072  */
1073 static int
1074 ccp_reqci(f, p, lenp, dont_nak)
1075     fsm *f;
1076     u_char *p;
1077     int *lenp;
1078     int dont_nak;
1079 {
1080     int ret, newret, res;
1081     u_char *p0, *retp;
1082     int len, clen, type, nb;
1083     ccp_options *ho = &ccp_hisoptions[f->unit];
1084     ccp_options *ao = &ccp_allowoptions[f->unit];
1085 #ifdef MPPE
1086     bool rej_for_ci_mppe = 1;   /* Are we rejecting based on a bad/missing */
1087                                 /* CI_MPPE, or due to other options?       */
1088 #endif
1089
1090     ret = CONFACK;
1091     retp = p0 = p;
1092     len = *lenp;
1093
1094     memset(ho, 0, sizeof(ccp_options));
1095     ho->method = (len > 0)? p[0]: -1;
1096
1097     while (len > 0) {
1098         newret = CONFACK;
1099         if (len < 2 || p[1] < 2 || p[1] > len) {
1100             /* length is bad */
1101             clen = len;
1102             newret = CONFREJ;
1103
1104         } else {
1105             type = p[0];
1106             clen = p[1];
1107
1108             switch (type) {
1109 #ifdef MPPE
1110             case CI_MPPE:
1111                 if (!ao->mppe || clen != CILEN_MPPE) {
1112                     newret = CONFREJ;
1113                     break;
1114                 }
1115                 MPPE_CI_TO_OPTS(&p[2], ho->mppe);
1116
1117                 /* Nak if anything unsupported or unknown are set. */
1118                 if (ho->mppe & MPPE_OPT_UNSUPPORTED) {
1119                     newret = CONFNAK;
1120                     ho->mppe &= ~MPPE_OPT_UNSUPPORTED;
1121                 }
1122                 if (ho->mppe & MPPE_OPT_UNKNOWN) {
1123                     newret = CONFNAK;
1124                     ho->mppe &= ~MPPE_OPT_UNKNOWN;
1125                 }
1126
1127                 /* Check state opt */
1128                 if (ho->mppe & MPPE_OPT_STATEFUL) {
1129                     /*
1130                      * We can Nak and request stateless, but it's a
1131                      * lot easier to just assume the peer will request
1132                      * it if he can do it; stateful mode is bad over
1133                      * the Internet -- which is where we expect MPPE.
1134                      */
1135                    if (refuse_mppe_stateful) {
1136                         error("Refusing MPPE stateful mode offered by peer");
1137                         newret = CONFREJ;
1138                         break;
1139                     }
1140                 }
1141
1142                 /* Find out which of {S,L} are set. */
1143                 if ((ho->mppe & MPPE_OPT_128)
1144                      && (ho->mppe & MPPE_OPT_40)) {
1145                     /* Both are set, negotiate the strongest. */
1146                     newret = CONFNAK;
1147                     if (ao->mppe & MPPE_OPT_128)
1148                         ho->mppe &= ~MPPE_OPT_40;
1149                     else if (ao->mppe & MPPE_OPT_40)
1150                         ho->mppe &= ~MPPE_OPT_128;
1151                     else {
1152                         newret = CONFREJ;
1153                         break;
1154                     }
1155                 } else if (ho->mppe & MPPE_OPT_128) {
1156                     if (!(ao->mppe & MPPE_OPT_128)) {
1157                         newret = CONFREJ;
1158                         break;
1159                     }
1160                 } else if (ho->mppe & MPPE_OPT_40) {
1161                     if (!(ao->mppe & MPPE_OPT_40)) {
1162                         newret = CONFREJ;
1163                         break;
1164                     }
1165                 } else {
1166                     /* Neither are set. */
1167                     newret = CONFREJ;
1168                     break;
1169                 }
1170
1171                 /* rebuild the opts */
1172                 MPPE_OPTS_TO_CI(ho->mppe, &p[2]);
1173                 if (newret == CONFACK) {
1174                     u_char opt_buf[CILEN_MPPE + MPPE_MAX_KEY_LEN];
1175                     int mtu;
1176
1177                     BCOPY(p, opt_buf, CILEN_MPPE);
1178                     BCOPY(mppe_send_key, &opt_buf[CILEN_MPPE],
1179                           MPPE_MAX_KEY_LEN);
1180                     if (ccp_test(f->unit, opt_buf,
1181                                  CILEN_MPPE + MPPE_MAX_KEY_LEN, 1) <= 0) {
1182                         /* This shouldn't happen, we've already tested it! */
1183                         error("MPPE required, but kernel has no support.");
1184                         lcp_close(f->unit, "MPPE required but not available");
1185                         newret = CONFREJ;
1186                         break;
1187                     }
1188                     /*
1189                      * We need to decrease the interface MTU by MPPE_PAD
1190                      * because MPPE frames **grow**.  The kernel [must]
1191                      * allocate MPPE_PAD extra bytes in xmit buffers.
1192                      */
1193                     mtu = netif_get_mtu(f->unit);
1194                     if (mtu)
1195                         netif_set_mtu(f->unit, mtu - MPPE_PAD);
1196                     else
1197                         newret = CONFREJ;
1198                 }
1199
1200                 /*
1201                  * We have accepted MPPE or are willing to negotiate
1202                  * MPPE parameters.  A CONFREJ is due to subsequent
1203                  * (non-MPPE) processing.
1204                  */
1205                 rej_for_ci_mppe = 0;
1206                 break;
1207 #endif /* MPPE */
1208             case CI_DEFLATE:
1209             case CI_DEFLATE_DRAFT:
1210                 if (!ao->deflate || clen != CILEN_DEFLATE
1211                     || (!ao->deflate_correct && type == CI_DEFLATE)
1212                     || (!ao->deflate_draft && type == CI_DEFLATE_DRAFT)) {
1213                     newret = CONFREJ;
1214                     break;
1215                 }
1216
1217                 ho->deflate = 1;
1218                 ho->deflate_size = nb = DEFLATE_SIZE(p[2]);
1219                 if (DEFLATE_METHOD(p[2]) != DEFLATE_METHOD_VAL
1220                     || p[3] != DEFLATE_CHK_SEQUENCE
1221                     || nb > ao->deflate_size || nb < DEFLATE_MIN_WORKS) {
1222                     newret = CONFNAK;
1223                     if (!dont_nak) {
1224                         p[2] = DEFLATE_MAKE_OPT(ao->deflate_size);
1225                         p[3] = DEFLATE_CHK_SEQUENCE;
1226                         /* fall through to test this #bits below */
1227                     } else
1228                         break;
1229                 }
1230
1231                 /*
1232                  * Check whether we can do Deflate with the window
1233                  * size they want.  If the window is too big, reduce
1234                  * it until the kernel can cope and nak with that.
1235                  * We only check this for the first option.
1236                  */
1237                 if (p == p0) {
1238                     for (;;) {
1239                         res = ccp_test(f->unit, p, CILEN_DEFLATE, 1);
1240                         if (res > 0)
1241                             break;              /* it's OK now */
1242                         if (res < 0 || nb == DEFLATE_MIN_WORKS || dont_nak) {
1243                             newret = CONFREJ;
1244                             p[2] = DEFLATE_MAKE_OPT(ho->deflate_size);
1245                             break;
1246                         }
1247                         newret = CONFNAK;
1248                         --nb;
1249                         p[2] = DEFLATE_MAKE_OPT(nb);
1250                     }
1251                 }
1252                 break;
1253
1254             case CI_BSD_COMPRESS:
1255                 if (!ao->bsd_compress || clen != CILEN_BSD_COMPRESS) {
1256                     newret = CONFREJ;
1257                     break;
1258                 }
1259
1260                 ho->bsd_compress = 1;
1261                 ho->bsd_bits = nb = BSD_NBITS(p[2]);
1262                 if (BSD_VERSION(p[2]) != BSD_CURRENT_VERSION
1263                     || nb > ao->bsd_bits || nb < BSD_MIN_BITS) {
1264                     newret = CONFNAK;
1265                     if (!dont_nak) {
1266                         p[2] = BSD_MAKE_OPT(BSD_CURRENT_VERSION, ao->bsd_bits);
1267                         /* fall through to test this #bits below */
1268                     } else
1269                         break;
1270                 }
1271
1272                 /*
1273                  * Check whether we can do BSD-Compress with the code
1274                  * size they want.  If the code size is too big, reduce
1275                  * it until the kernel can cope and nak with that.
1276                  * We only check this for the first option.
1277                  */
1278                 if (p == p0) {
1279                     for (;;) {
1280                         res = ccp_test(f->unit, p, CILEN_BSD_COMPRESS, 1);
1281                         if (res > 0)
1282                             break;
1283                         if (res < 0 || nb == BSD_MIN_BITS || dont_nak) {
1284                             newret = CONFREJ;
1285                             p[2] = BSD_MAKE_OPT(BSD_CURRENT_VERSION,
1286                                                 ho->bsd_bits);
1287                             break;
1288                         }
1289                         newret = CONFNAK;
1290                         --nb;
1291                         p[2] = BSD_MAKE_OPT(BSD_CURRENT_VERSION, nb);
1292                     }
1293                 }
1294                 break;
1295
1296             case CI_PREDICTOR_1:
1297                 if (!ao->predictor_1 || clen != CILEN_PREDICTOR_1) {
1298                     newret = CONFREJ;
1299                     break;
1300                 }
1301
1302                 ho->predictor_1 = 1;
1303                 if (p == p0
1304                     && ccp_test(f->unit, p, CILEN_PREDICTOR_1, 1) <= 0) {
1305                     newret = CONFREJ;
1306                 }
1307                 break;
1308
1309             case CI_PREDICTOR_2:
1310                 if (!ao->predictor_2 || clen != CILEN_PREDICTOR_2) {
1311                     newret = CONFREJ;
1312                     break;
1313                 }
1314
1315                 ho->predictor_2 = 1;
1316                 if (p == p0
1317                     && ccp_test(f->unit, p, CILEN_PREDICTOR_2, 1) <= 0) {
1318                     newret = CONFREJ;
1319                 }
1320                 break;
1321
1322             default:
1323                 newret = CONFREJ;
1324             }
1325         }
1326
1327         if (newret == CONFNAK && dont_nak)
1328             newret = CONFREJ;
1329         if (!(newret == CONFACK || (newret == CONFNAK && ret == CONFREJ))) {
1330             /* we're returning this option */
1331             if (newret == CONFREJ && ret == CONFNAK)
1332                 retp = p0;
1333             ret = newret;
1334             if (p != retp)
1335                 BCOPY(p, retp, clen);
1336             retp += clen;
1337         }
1338
1339         p += clen;
1340         len -= clen;
1341     }
1342
1343     if (ret != CONFACK) {
1344         if (ret == CONFREJ && *lenp == retp - p0)
1345             all_rejected[f->unit] = 1;
1346         else
1347             *lenp = retp - p0;
1348     }
1349 #ifdef MPPE
1350     if (ret == CONFREJ && ao->mppe && rej_for_ci_mppe) {
1351         error("MPPE required but peer negotiation failed");
1352         lcp_close(f->unit, "MPPE required but peer negotiation failed");
1353     }
1354 #endif
1355     return ret;
1356 }
1357
1358 /*
1359  * Make a string name for a compression method (or 2).
1360  */
1361 static char *
1362 method_name(opt, opt2)
1363     ccp_options *opt, *opt2;
1364 {
1365     static char result[64];
1366
1367     if (!ANY_COMPRESS(*opt))
1368         return "(none)";
1369     switch (opt->method) {
1370 #ifdef MPPE
1371     case CI_MPPE:
1372     {
1373         char *p = result;
1374         char *q = result + sizeof(result); /* 1 past result */
1375
1376         slprintf(p, q - p, "MPPE ");
1377         p += 5;
1378         if (opt->mppe & MPPE_OPT_128) {
1379             slprintf(p, q - p, "128-bit ");
1380             p += 8;
1381         }
1382         if (opt->mppe & MPPE_OPT_40) {
1383             slprintf(p, q - p, "40-bit ");
1384             p += 7;
1385         }
1386         if (opt->mppe & MPPE_OPT_STATEFUL)
1387             slprintf(p, q - p, "stateful");
1388         else
1389             slprintf(p, q - p, "stateless");
1390
1391         break;
1392     }
1393 #endif
1394     case CI_DEFLATE:
1395     case CI_DEFLATE_DRAFT:
1396         if (opt2 != NULL && opt2->deflate_size != opt->deflate_size)
1397             slprintf(result, sizeof(result), "Deflate%s (%d/%d)",
1398                      (opt->method == CI_DEFLATE_DRAFT? "(old#)": ""),
1399                      opt->deflate_size, opt2->deflate_size);
1400         else
1401             slprintf(result, sizeof(result), "Deflate%s (%d)",
1402                      (opt->method == CI_DEFLATE_DRAFT? "(old#)": ""),
1403                      opt->deflate_size);
1404         break;
1405     case CI_BSD_COMPRESS:
1406         if (opt2 != NULL && opt2->bsd_bits != opt->bsd_bits)
1407             slprintf(result, sizeof(result), "BSD-Compress (%d/%d)",
1408                      opt->bsd_bits, opt2->bsd_bits);
1409         else
1410             slprintf(result, sizeof(result), "BSD-Compress (%d)",
1411                      opt->bsd_bits);
1412         break;
1413     case CI_PREDICTOR_1:
1414         return "Predictor 1";
1415     case CI_PREDICTOR_2:
1416         return "Predictor 2";
1417     default:
1418         slprintf(result, sizeof(result), "Method %d", opt->method);
1419     }
1420     return result;
1421 }
1422
1423 /*
1424  * CCP has come up - inform the kernel driver and log a message.
1425  */
1426 static void
1427 ccp_up(f)
1428     fsm *f;
1429 {
1430     ccp_options *go = &ccp_gotoptions[f->unit];
1431     ccp_options *ho = &ccp_hisoptions[f->unit];
1432     char method1[64];
1433
1434     ccp_flags_set(f->unit, 1, 1);
1435     if (ANY_COMPRESS(*go)) {
1436         if (ANY_COMPRESS(*ho)) {
1437             if (go->method == ho->method) {
1438                 notice("%s compression enabled", method_name(go, ho));
1439             } else {
1440                 strlcpy(method1, method_name(go, NULL), sizeof(method1));
1441                 notice("%s / %s compression enabled",
1442                        method1, method_name(ho, NULL));
1443             }
1444         } else
1445             notice("%s receive compression enabled", method_name(go, NULL));
1446     } else if (ANY_COMPRESS(*ho))
1447         notice("%s transmit compression enabled", method_name(ho, NULL));
1448 #ifdef MPPE
1449     if (go->mppe) {
1450         BZERO(mppe_recv_key, MPPE_MAX_KEY_LEN);
1451         BZERO(mppe_send_key, MPPE_MAX_KEY_LEN);
1452         continue_networks(f->unit);             /* Bring up IP et al */
1453     }
1454 #endif
1455 }
1456
1457 /*
1458  * CCP has gone down - inform the kernel driver.
1459  */
1460 static void
1461 ccp_down(f)
1462     fsm *f;
1463 {
1464     if (ccp_localstate[f->unit] & RACK_PENDING)
1465         UNTIMEOUT(ccp_rack_timeout, f);
1466     ccp_localstate[f->unit] = 0;
1467     ccp_flags_set(f->unit, 1, 0);
1468 #ifdef MPPE
1469     if (ccp_gotoptions[f->unit].mppe) {
1470         ccp_gotoptions[f->unit].mppe = 0;
1471         if (lcp_fsm[f->unit].state == OPENED) {
1472             /* If LCP is not already going down, make sure it does. */
1473             error("MPPE disabled");
1474             lcp_close(f->unit, "MPPE disabled");
1475         }
1476     }
1477 #endif
1478 }
1479
1480 /*
1481  * Print the contents of a CCP packet.
1482  */
1483 static char *ccp_codenames[] = {
1484     "ConfReq", "ConfAck", "ConfNak", "ConfRej",
1485     "TermReq", "TermAck", "CodeRej",
1486     NULL, NULL, NULL, NULL, NULL, NULL,
1487     "ResetReq", "ResetAck",
1488 };
1489
1490 static int
1491 ccp_printpkt(p, plen, printer, arg)
1492     u_char *p;
1493     int plen;
1494     void (*printer) __P((void *, char *, ...));
1495     void *arg;
1496 {
1497     u_char *p0, *optend;
1498     int code, id, len;
1499     int optlen;
1500
1501     p0 = p;
1502     if (plen < HEADERLEN)
1503         return 0;
1504     code = p[0];
1505     id = p[1];
1506     len = (p[2] << 8) + p[3];
1507     if (len < HEADERLEN || len > plen)
1508         return 0;
1509
1510     if (code >= 1 && code <= sizeof(ccp_codenames) / sizeof(char *)
1511         && ccp_codenames[code-1] != NULL)
1512         printer(arg, " %s", ccp_codenames[code-1]);
1513     else
1514         printer(arg, " code=0x%x", code);
1515     printer(arg, " id=0x%x", id);
1516     len -= HEADERLEN;
1517     p += HEADERLEN;
1518
1519     switch (code) {
1520     case CONFREQ:
1521     case CONFACK:
1522     case CONFNAK:
1523     case CONFREJ:
1524         /* print list of possible compression methods */
1525         while (len >= 2) {
1526             code = p[0];
1527             optlen = p[1];
1528             if (optlen < 2 || optlen > len)
1529                 break;
1530             printer(arg, " <");
1531             len -= optlen;
1532             optend = p + optlen;
1533             switch (code) {
1534 #ifdef MPPE
1535             case CI_MPPE:
1536                 if (optlen >= CILEN_MPPE) {
1537                     u_char mppe_opts;
1538
1539                     MPPE_CI_TO_OPTS(&p[2], mppe_opts);
1540                     printer(arg, "mppe %s %s %s %s %s %s%s",
1541                             (p[2] & MPPE_H_BIT)? "+H": "-H",
1542                             (p[5] & MPPE_M_BIT)? "+M": "-M",
1543                             (p[5] & MPPE_S_BIT)? "+S": "-S",
1544                             (p[5] & MPPE_L_BIT)? "+L": "-L",
1545                             (p[5] & MPPE_D_BIT)? "+D": "-D",
1546                             (p[5] & MPPE_C_BIT)? "+C": "-C",
1547                             (mppe_opts & MPPE_OPT_UNKNOWN)? " +U": "");
1548                     if (mppe_opts & MPPE_OPT_UNKNOWN)
1549                         printer(arg, " (%.2x %.2x %.2x %.2x)",
1550                                 p[2], p[3], p[4], p[5]);
1551                     p += CILEN_MPPE;
1552                 }
1553                 break;
1554 #endif
1555             case CI_DEFLATE:
1556             case CI_DEFLATE_DRAFT:
1557                 if (optlen >= CILEN_DEFLATE) {
1558                     printer(arg, "deflate%s %d",
1559                             (code == CI_DEFLATE_DRAFT? "(old#)": ""),
1560                             DEFLATE_SIZE(p[2]));
1561                     if (DEFLATE_METHOD(p[2]) != DEFLATE_METHOD_VAL)
1562                         printer(arg, " method %d", DEFLATE_METHOD(p[2]));
1563                     if (p[3] != DEFLATE_CHK_SEQUENCE)
1564                         printer(arg, " check %d", p[3]);
1565                     p += CILEN_DEFLATE;
1566                 }
1567                 break;
1568             case CI_BSD_COMPRESS:
1569                 if (optlen >= CILEN_BSD_COMPRESS) {
1570                     printer(arg, "bsd v%d %d", BSD_VERSION(p[2]),
1571                             BSD_NBITS(p[2]));
1572                     p += CILEN_BSD_COMPRESS;
1573                 }
1574                 break;
1575             case CI_PREDICTOR_1:
1576                 if (optlen >= CILEN_PREDICTOR_1) {
1577                     printer(arg, "predictor 1");
1578                     p += CILEN_PREDICTOR_1;
1579                 }
1580                 break;
1581             case CI_PREDICTOR_2:
1582                 if (optlen >= CILEN_PREDICTOR_2) {
1583                     printer(arg, "predictor 2");
1584                     p += CILEN_PREDICTOR_2;
1585                 }
1586                 break;
1587             }
1588             while (p < optend)
1589                 printer(arg, " %.2x", *p++);
1590             printer(arg, ">");
1591         }
1592         break;
1593
1594     case TERMACK:
1595     case TERMREQ:
1596         if (len > 0 && *p >= ' ' && *p < 0x7f) {
1597             print_string((char *)p, len, printer, arg);
1598             p += len;
1599             len = 0;
1600         }
1601         break;
1602     }
1603
1604     /* dump out the rest of the packet in hex */
1605     while (--len >= 0)
1606         printer(arg, " %.2x", *p++);
1607
1608     return p - p0;
1609 }
1610
1611 /*
1612  * We have received a packet that the decompressor failed to
1613  * decompress.  Here we would expect to issue a reset-request, but
1614  * Motorola has a patent on resetting the compressor as a result of
1615  * detecting an error in the decompressed data after decompression.
1616  * (See US patent 5,130,993; international patent publication number
1617  * WO 91/10289; Australian patent 73296/91.)
1618  *
1619  * So we ask the kernel whether the error was detected after
1620  * decompression; if it was, we take CCP down, thus disabling
1621  * compression :-(, otherwise we issue the reset-request.
1622  */
1623 static void
1624 ccp_datainput(unit, pkt, len)
1625     int unit;
1626     u_char *pkt;
1627     int len;
1628 {
1629     fsm *f;
1630
1631     f = &ccp_fsm[unit];
1632     if (f->state == OPENED) {
1633         if (ccp_fatal_error(unit)) {
1634             /*
1635              * Disable compression by taking CCP down.
1636              */
1637             error("Lost compression sync: disabling compression");
1638             ccp_close(unit, "Lost compression sync");
1639 #ifdef MPPE
1640             /*
1641              * If we were doing MPPE, we must also take the link down.
1642              */
1643             if (ccp_gotoptions[unit].mppe) {
1644                 error("Too many MPPE errors, closing LCP");
1645                 lcp_close(unit, "Too many MPPE errors");
1646             }
1647 #endif
1648         } else {
1649             /*
1650              * Send a reset-request to reset the peer's compressor.
1651              * We don't do that if we are still waiting for an
1652              * acknowledgement to a previous reset-request.
1653              */
1654             if (!(ccp_localstate[f->unit] & RACK_PENDING)) {
1655                 fsm_sdata(f, CCP_RESETREQ, f->reqid = ++f->id, NULL, 0);
1656                 TIMEOUT(ccp_rack_timeout, f, RACKTIMEOUT);
1657                 ccp_localstate[f->unit] |= RACK_PENDING;
1658             } else
1659                 ccp_localstate[f->unit] |= RREQ_REPEAT;
1660         }
1661     }
1662 }
1663
1664 /*
1665  * Timeout waiting for reset-ack.
1666  */
1667 static void
1668 ccp_rack_timeout(arg)
1669     void *arg;
1670 {
1671     fsm *f = arg;
1672
1673     if (f->state == OPENED && ccp_localstate[f->unit] & RREQ_REPEAT) {
1674         fsm_sdata(f, CCP_RESETREQ, f->reqid, NULL, 0);
1675         TIMEOUT(ccp_rack_timeout, f, RACKTIMEOUT);
1676         ccp_localstate[f->unit] &= ~RREQ_REPEAT;
1677     } else
1678         ccp_localstate[f->unit] &= ~RACK_PENDING;
1679 }
1680