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