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