1 /*- 2 * Copyright (c) 2001 Brian Somers <brian@Awfulhak.org> 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24 * SUCH DAMAGE. 25 * 26 * $FreeBSD$ 27 */ 28 29 #include <sys/param.h> 30 #include <netinet/in_systm.h> 31 #include <netinet/in.h> 32 #include <netinet/ip.h> 33 #include <sys/socket.h> 34 #include <net/route.h> 35 #include <net/if.h> 36 #include <net/if_types.h> 37 #include <net/if_dl.h> 38 #include <sys/un.h> 39 40 #include <stdarg.h> 41 #include <stdio.h> 42 #include <stdlib.h> 43 #include <string.h> 44 #include <termios.h> 45 #include <ifaddrs.h> 46 47 #include "layer.h" 48 #include "defs.h" 49 #include "mbuf.h" 50 #include "timer.h" 51 #include "fsm.h" 52 #include "iplist.h" 53 #include "throughput.h" 54 #include "slcompress.h" 55 #include "lqr.h" 56 #include "hdlc.h" 57 #include "lcp.h" 58 #include "ncpaddr.h" 59 #include "ip.h" 60 #include "ipcp.h" 61 #include "ipv6cp.h" 62 #include "filter.h" 63 #include "descriptor.h" 64 #include "ccp.h" 65 #include "link.h" 66 #include "mp.h" 67 #ifndef NORADIUS 68 #include "radius.h" 69 #endif 70 #include "ncp.h" 71 #include "bundle.h" 72 #include "route.h" 73 #include "iface.h" 74 #include "log.h" 75 #include "proto.h" 76 #include "command.h" 77 #include "prompt.h" 78 #include "async.h" 79 #include "physical.h" 80 #include "probe.h" 81 #include "systems.h" 82 83 84 #ifndef NOINET6 85 #define IN6ADDR_LINKLOCAL_MCAST_INIT \ 86 {{{ 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \ 87 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }}} 88 static const struct in6_addr in6addr_linklocal_mcast = 89 IN6ADDR_LINKLOCAL_MCAST_INIT; 90 91 static int ipv6cp_LayerUp(struct fsm *); 92 static void ipv6cp_LayerDown(struct fsm *); 93 static void ipv6cp_LayerStart(struct fsm *); 94 static void ipv6cp_LayerFinish(struct fsm *); 95 static void ipv6cp_InitRestartCounter(struct fsm *, int); 96 static void ipv6cp_SendConfigReq(struct fsm *); 97 static void ipv6cp_SentTerminateReq(struct fsm *); 98 static void ipv6cp_SendTerminateAck(struct fsm *, u_char); 99 static void ipv6cp_DecodeConfig(struct fsm *, u_char *, u_char *, int, 100 struct fsm_decode *); 101 102 static struct fsm_callbacks ipv6cp_Callbacks = { 103 ipv6cp_LayerUp, 104 ipv6cp_LayerDown, 105 ipv6cp_LayerStart, 106 ipv6cp_LayerFinish, 107 ipv6cp_InitRestartCounter, 108 ipv6cp_SendConfigReq, 109 ipv6cp_SentTerminateReq, 110 ipv6cp_SendTerminateAck, 111 ipv6cp_DecodeConfig, 112 fsm_NullRecvResetReq, 113 fsm_NullRecvResetAck 114 }; 115 116 static void 117 SetInterfaceID(u_char *ifid, int userandom) 118 { 119 struct ifaddrs *ifa, *ifap = NULL; 120 struct sockaddr_dl *sdl; 121 const u_long i32_max = 0xffffffff; 122 u_long r1, r2; 123 124 /* configure an interface ID based on Section 4.1 of RFC 2472 */ 125 memset(ifid, 0, IPV6CP_IFIDLEN); 126 127 /* 128 * 1) If an IEEE global identifier (EUI-48 or EUI-64) is 129 * available anywhere on the node, it should be used to construct 130 * the tentative Interface-Identifier due to its uniqueness 131 * properties. 132 */ 133 if (userandom) 134 goto randomid; 135 if (getifaddrs(&ifap) < 0) 136 goto randomid; 137 138 for (ifa = ifap; ifa; ifa = ifa->ifa_next) { 139 char *cp; 140 141 if (ifa->ifa_addr->sa_family != AF_LINK) 142 continue; 143 144 sdl = (struct sockaddr_dl *)ifa->ifa_addr; 145 if (sdl->sdl_alen < 6) 146 continue; 147 /* we're only interested in IEEE hardware addresses */ 148 switch(sdl->sdl_type) { 149 case IFT_ETHER: 150 case IFT_FDDI: 151 /* XXX need more cases? */ 152 break; 153 default: 154 continue; 155 } 156 157 cp = (char *)(sdl->sdl_data + sdl->sdl_nlen); 158 ifid[0] = cp[0]; 159 ifid[0] ^= 0x02; /* reverse the u/l bit*/ 160 ifid[1] = cp[1]; 161 ifid[2] = cp[2]; 162 ifid[3] = 0xff; 163 ifid[4] = 0xfe; 164 ifid[5] = cp[3]; 165 ifid[6] = cp[4]; 166 ifid[7] = cp[5]; 167 168 freeifaddrs(ifap); 169 return; 170 } 171 172 freeifaddrs(ifap); 173 174 /* 175 * 2) If an IEEE global identifier is not available a different source 176 * of uniqueness should be used. 177 * XXX: we skip this case. 178 */ 179 180 /* 181 * 3) If a good source of uniqueness cannot be found, it is 182 * recommended that a random number be generated. In this case the 183 * "u" bit of the interface identifier MUST be set to zero (0). 184 */ 185 randomid: 186 randinit(); 187 r1 = (((u_long)random()) % i32_max) + 1; 188 r2 = (((u_long)random()) % i32_max) + 1; 189 memcpy(ifid, &r1, sizeof(r1)); 190 memcpy(ifid + 4, &r2, sizeof(r2)); 191 ifid[0] &= 0xfd; 192 return; 193 } 194 195 static int 196 ipcp_SetIPv6address(struct ipv6cp *ipv6cp, u_char *myifid, u_char *hisifid) 197 { 198 struct bundle *bundle = ipv6cp->fsm.bundle; 199 struct in6_addr myaddr, hisaddr; 200 struct ncprange myrange, range; 201 struct ncpaddr addr; 202 struct sockaddr_storage ssdst, ssgw, ssmask; 203 struct sockaddr *sadst, *sagw, *samask; 204 205 sadst = (struct sockaddr *)&ssdst; 206 sagw = (struct sockaddr *)&ssgw; 207 samask = (struct sockaddr *)&ssmask; 208 209 memset(&myaddr, '\0', sizeof myaddr); 210 memset(&hisaddr, '\0', sizeof hisaddr); 211 212 myaddr.s6_addr[0] = 0xfe; 213 myaddr.s6_addr[1] = 0x80; 214 memcpy(&myaddr.s6_addr[8], myifid, IPV6CP_IFIDLEN); 215 #if 0 216 myaddr.s6_addr[8] |= 0x02; /* set 'universal' bit */ 217 #endif 218 219 hisaddr.s6_addr[0] = 0xfe; 220 hisaddr.s6_addr[1] = 0x80; 221 memcpy(&hisaddr.s6_addr[8], hisifid, IPV6CP_IFIDLEN); 222 #if 0 223 hisaddr.s6_addr[8] |= 0x02; /* set 'universal' bit */ 224 #endif 225 226 ncpaddr_setip6(&ipv6cp->myaddr, &myaddr); 227 ncpaddr_setip6(&ipv6cp->hisaddr, &hisaddr); 228 ncprange_set(&myrange, &ipv6cp->myaddr, 64); 229 230 if (!iface_Add(bundle->iface, &bundle->ncp, &myrange, &ipv6cp->hisaddr, 231 IFACE_ADD_FIRST|IFACE_FORCE_ADD|IFACE_SYSTEM)) 232 return 0; 233 234 if (!Enabled(bundle, OPT_IFACEALIAS)) 235 iface_Clear(bundle->iface, &bundle->ncp, AF_INET6, 236 IFACE_CLEAR_ALIASES|IFACE_SYSTEM); 237 238 ncpaddr_setip6(&addr, &in6addr_linklocal_mcast); 239 ncprange_set(&range, &addr, 32); 240 rt_Set(bundle, RTM_ADD, &range, &ipv6cp->myaddr, 1, 0); 241 242 if (bundle->ncp.cfg.sendpipe > 0 || bundle->ncp.cfg.recvpipe > 0) { 243 ncprange_getsa(&myrange, &ssgw, &ssmask); 244 if (ncpaddr_isset(&ipv6cp->hisaddr)) 245 ncpaddr_getsa(&ipv6cp->hisaddr, &ssdst); 246 else 247 sadst = NULL; 248 rt_Update(bundle, sadst, sagw, samask); 249 } 250 251 if (Enabled(bundle, OPT_SROUTES)) 252 route_Change(bundle, bundle->ncp.route, &ipv6cp->myaddr, &ipv6cp->hisaddr); 253 254 #ifndef NORADIUS 255 if (bundle->radius.valid) 256 route_Change(bundle, bundle->radius.ipv6routes, &ipv6cp->myaddr, 257 &ipv6cp->hisaddr); 258 #endif 259 260 return 1; /* Ok */ 261 } 262 263 void 264 ipv6cp_Init(struct ipv6cp *ipv6cp, struct bundle *bundle, struct link *l, 265 const struct fsm_parent *parent) 266 { 267 static const char * const timer_names[] = 268 {"IPV6CP restart", "IPV6CP openmode", "IPV6CP stopped"}; 269 int n; 270 271 fsm_Init(&ipv6cp->fsm, "IPV6CP", PROTO_IPV6CP, 1, IPV6CP_MAXCODE, LogIPV6CP, 272 bundle, l, parent, &ipv6cp_Callbacks, timer_names); 273 274 ipv6cp->cfg.fsm.timeout = DEF_FSMRETRY; 275 ipv6cp->cfg.fsm.maxreq = DEF_FSMTRIES; 276 ipv6cp->cfg.fsm.maxtrm = DEF_FSMTRIES; 277 278 SetInterfaceID(ipv6cp->my_ifid, 0); 279 do { 280 SetInterfaceID(ipv6cp->his_ifid, 1); 281 } while (memcmp(ipv6cp->his_ifid, ipv6cp->my_ifid, IPV6CP_IFIDLEN) == 0); 282 283 if (probe.ipv6_available) { 284 n = 100; 285 while (n && 286 !ipcp_SetIPv6address(ipv6cp, ipv6cp->my_ifid, ipv6cp->his_ifid)) { 287 do { 288 n--; 289 SetInterfaceID(ipv6cp->my_ifid, 1); 290 } while (n 291 && memcmp(ipv6cp->his_ifid, ipv6cp->my_ifid, IPV6CP_IFIDLEN) == 0); 292 } 293 } 294 295 throughput_init(&ipv6cp->throughput, SAMPLE_PERIOD); 296 memset(ipv6cp->Queue, '\0', sizeof ipv6cp->Queue); 297 ipv6cp_Setup(ipv6cp); 298 } 299 300 void 301 ipv6cp_Destroy(struct ipv6cp *ipv6cp) 302 { 303 throughput_destroy(&ipv6cp->throughput); 304 } 305 306 void 307 ipv6cp_Setup(struct ipv6cp *ipv6cp) 308 { 309 ncpaddr_init(&ipv6cp->myaddr); 310 ncpaddr_init(&ipv6cp->hisaddr); 311 312 ipv6cp->his_reject = 0; 313 ipv6cp->my_reject = 0; 314 } 315 316 void 317 ipv6cp_SetLink(struct ipv6cp *ipv6cp, struct link *l) 318 { 319 ipv6cp->fsm.link = l; 320 } 321 322 int 323 ipv6cp_Show(struct cmdargs const *arg) 324 { 325 struct ipv6cp *ipv6cp = &arg->bundle->ncp.ipv6cp; 326 327 prompt_Printf(arg->prompt, "%s [%s]\n", ipv6cp->fsm.name, 328 State2Nam(ipv6cp->fsm.state)); 329 if (ipv6cp->fsm.state == ST_OPENED) { 330 prompt_Printf(arg->prompt, " His side: %s\n", 331 ncpaddr_ntoa(&ipv6cp->hisaddr)); 332 prompt_Printf(arg->prompt, " My side: %s\n", 333 ncpaddr_ntoa(&ipv6cp->myaddr)); 334 prompt_Printf(arg->prompt, " Queued packets: %lu\n", 335 (unsigned long)ipv6cp_QueueLen(ipv6cp)); 336 } 337 338 prompt_Printf(arg->prompt, "\nDefaults:\n"); 339 prompt_Printf(arg->prompt, " FSM retry = %us, max %u Config" 340 " REQ%s, %u Term REQ%s\n\n", ipv6cp->cfg.fsm.timeout, 341 ipv6cp->cfg.fsm.maxreq, ipv6cp->cfg.fsm.maxreq == 1 ? "" : "s", 342 ipv6cp->cfg.fsm.maxtrm, ipv6cp->cfg.fsm.maxtrm == 1 ? "" : "s"); 343 344 throughput_disp(&ipv6cp->throughput, arg->prompt); 345 346 return 0; 347 } 348 349 struct mbuf * 350 ipv6cp_Input(struct bundle *bundle, struct link *l, struct mbuf *bp) 351 { 352 /* Got PROTO_IPV6CP from link */ 353 m_settype(bp, MB_IPV6CPIN); 354 if (bundle_Phase(bundle) == PHASE_NETWORK) 355 fsm_Input(&bundle->ncp.ipv6cp.fsm, bp); 356 else { 357 if (bundle_Phase(bundle) < PHASE_NETWORK) 358 log_Printf(LogIPV6CP, "%s: Error: Unexpected IPV6CP in phase %s" 359 " (ignored)\n", l->name, bundle_PhaseName(bundle)); 360 m_freem(bp); 361 } 362 return NULL; 363 } 364 365 void 366 ipv6cp_AddInOctets(struct ipv6cp *ipv6cp, int n) 367 { 368 throughput_addin(&ipv6cp->throughput, n); 369 } 370 371 void 372 ipv6cp_AddOutOctets(struct ipv6cp *ipv6cp, int n) 373 { 374 throughput_addout(&ipv6cp->throughput, n); 375 } 376 377 void 378 ipv6cp_IfaceAddrAdded(struct ipv6cp *ipv6cp, const struct iface_addr *addr) 379 { 380 } 381 382 void 383 ipv6cp_IfaceAddrDeleted(struct ipv6cp *ipv6cp, const struct iface_addr *addr) 384 { 385 } 386 387 int 388 ipv6cp_InterfaceUp(struct ipv6cp *ipv6cp) 389 { 390 if (!ipcp_SetIPv6address(ipv6cp, ipv6cp->my_ifid, ipv6cp->his_ifid)) { 391 log_Printf(LogERROR, "ipv6cp_InterfaceUp: unable to set ipv6 address\n"); 392 return 0; 393 } 394 395 if (!iface_SetFlags(ipv6cp->fsm.bundle->iface->name, IFF_UP)) { 396 log_Printf(LogERROR, "ipv6cp_InterfaceUp: Can't set the IFF_UP" 397 " flag on %s\n", ipv6cp->fsm.bundle->iface->name); 398 return 0; 399 } 400 401 return 1; 402 } 403 404 size_t 405 ipv6cp_QueueLen(struct ipv6cp *ipv6cp) 406 { 407 struct mqueue *q; 408 size_t result; 409 410 result = 0; 411 for (q = ipv6cp->Queue; q < ipv6cp->Queue + IPV6CP_QUEUES(ipv6cp); q++) 412 result += q->len; 413 414 return result; 415 } 416 417 int 418 ipv6cp_PushPacket(struct ipv6cp *ipv6cp, struct link *l) 419 { 420 struct bundle *bundle = ipv6cp->fsm.bundle; 421 struct mqueue *queue; 422 struct mbuf *bp; 423 int m_len; 424 u_int32_t secs = 0; 425 unsigned alivesecs = 0; 426 427 if (ipv6cp->fsm.state != ST_OPENED) 428 return 0; 429 430 /* 431 * If ccp is not open but is required, do nothing. 432 */ 433 if (l->ccp.fsm.state != ST_OPENED && ccp_Required(&l->ccp)) { 434 log_Printf(LogPHASE, "%s: Not transmitting... waiting for CCP\n", l->name); 435 return 0; 436 } 437 438 queue = ipv6cp->Queue + IPV6CP_QUEUES(ipv6cp) - 1; 439 do { 440 if (queue->top) { 441 bp = m_dequeue(queue); 442 bp = mbuf_Read(bp, &secs, sizeof secs); 443 bp = m_pullup(bp); 444 m_len = m_length(bp); 445 if (!FilterCheck(MBUF_CTOP(bp), AF_INET6, &bundle->filter.alive, 446 &alivesecs)) { 447 if (secs == 0) 448 secs = alivesecs; 449 bundle_StartIdleTimer(bundle, secs); 450 } 451 link_PushPacket(l, bp, bundle, 0, PROTO_IPV6); 452 ipv6cp_AddOutOctets(ipv6cp, m_len); 453 return 1; 454 } 455 } while (queue-- != ipv6cp->Queue); 456 457 return 0; 458 } 459 460 static int 461 ipv6cp_LayerUp(struct fsm *fp) 462 { 463 /* We're now up */ 464 struct ipv6cp *ipv6cp = fsm2ipv6cp(fp); 465 char tbuff[40]; 466 467 log_Printf(LogIPV6CP, "%s: LayerUp.\n", fp->link->name); 468 if (!ipv6cp_InterfaceUp(ipv6cp)) 469 return 0; 470 471 snprintf(tbuff, sizeof tbuff, "%s", ncpaddr_ntoa(&ipv6cp->myaddr)); 472 log_Printf(LogIPV6CP, "myaddr %s hisaddr = %s\n", 473 tbuff, ncpaddr_ntoa(&ipv6cp->hisaddr)); 474 475 #ifndef NORADIUS 476 radius_Account_Set_Ipv6(&fp->bundle->radacct6, ipv6cp->his_ifid); 477 radius_Account(&fp->bundle->radius, &fp->bundle->radacct6, 478 fp->bundle->links, RAD_START, &ipv6cp->throughput); 479 480 /* 481 * XXX: Avoid duplicate evaluation of filterid between IPCP and 482 * IPV6CP. When IPCP is enabled and rejected, filterid is not 483 * evaluated. 484 */ 485 if (!Enabled(fp->bundle, OPT_IPCP)) { 486 if (fp->bundle->radius.cfg.file && fp->bundle->radius.filterid) 487 system_Select(fp->bundle, fp->bundle->radius.filterid, LINKUPFILE, 488 NULL, NULL); 489 } 490 #endif 491 492 /* 493 * XXX this stuff should really live in the FSM. Our config should 494 * associate executable sections in files with events. 495 */ 496 if (system_Select(fp->bundle, tbuff, LINKUPFILE, NULL, NULL) < 0) { 497 /* 498 * XXX: Avoid duplicate evaluation of label between IPCP and 499 * IPV6CP. When IPCP is enabled and rejected, label is not 500 * evaluated. 501 */ 502 if (bundle_GetLabel(fp->bundle) && !Enabled(fp->bundle, OPT_IPCP)) { 503 if (system_Select(fp->bundle, bundle_GetLabel(fp->bundle), 504 LINKUPFILE, NULL, NULL) < 0) 505 system_Select(fp->bundle, "MYADDR6", LINKUPFILE, NULL, NULL); 506 } else 507 system_Select(fp->bundle, "MYADDR6", LINKUPFILE, NULL, NULL); 508 } 509 510 fp->more.reqs = fp->more.naks = fp->more.rejs = ipv6cp->cfg.fsm.maxreq * 3; 511 log_DisplayPrompts(); 512 513 return 1; 514 } 515 516 static void 517 ipv6cp_LayerDown(struct fsm *fp) 518 { 519 /* About to come down */ 520 struct ipv6cp *ipv6cp = fsm2ipv6cp(fp); 521 static int recursing; 522 char addr[40]; 523 524 if (!recursing++) { 525 snprintf(addr, sizeof addr, "%s", ncpaddr_ntoa(&ipv6cp->myaddr)); 526 log_Printf(LogIPV6CP, "%s: LayerDown: %s\n", fp->link->name, addr); 527 528 #ifndef NORADIUS 529 radius_Account(&fp->bundle->radius, &fp->bundle->radacct6, 530 fp->bundle->links, RAD_STOP, &ipv6cp->throughput); 531 532 /* 533 * XXX: Avoid duplicate evaluation of filterid between IPCP and 534 * IPV6CP. When IPCP is enabled and rejected, filterid is not 535 * evaluated. 536 */ 537 if (!Enabled(fp->bundle, OPT_IPCP)) { 538 if (fp->bundle->radius.cfg.file && fp->bundle->radius.filterid) 539 system_Select(fp->bundle, fp->bundle->radius.filterid, LINKDOWNFILE, 540 NULL, NULL); 541 } 542 #endif 543 544 /* 545 * XXX this stuff should really live in the FSM. Our config should 546 * associate executable sections in files with events. 547 */ 548 if (system_Select(fp->bundle, addr, LINKDOWNFILE, NULL, NULL) < 0) { 549 /* 550 * XXX: Avoid duplicate evaluation of label between IPCP and 551 * IPV6CP. When IPCP is enabled and rejected, label is not 552 * evaluated. 553 */ 554 if (bundle_GetLabel(fp->bundle) && !Enabled(fp->bundle, OPT_IPCP)) { 555 if (system_Select(fp->bundle, bundle_GetLabel(fp->bundle), 556 LINKDOWNFILE, NULL, NULL) < 0) 557 system_Select(fp->bundle, "MYADDR6", LINKDOWNFILE, NULL, NULL); 558 } else 559 system_Select(fp->bundle, "MYADDR6", LINKDOWNFILE, NULL, NULL); 560 } 561 562 ipv6cp_Setup(ipv6cp); 563 } 564 recursing--; 565 } 566 567 static void 568 ipv6cp_LayerStart(struct fsm *fp) 569 { 570 /* We're about to start up ! */ 571 struct ipv6cp *ipv6cp = fsm2ipv6cp(fp); 572 573 log_Printf(LogIPV6CP, "%s: LayerStart.\n", fp->link->name); 574 throughput_start(&ipv6cp->throughput, "IPV6CP throughput", 575 Enabled(fp->bundle, OPT_THROUGHPUT)); 576 fp->more.reqs = fp->more.naks = fp->more.rejs = ipv6cp->cfg.fsm.maxreq * 3; 577 ipv6cp->peer_tokenreq = 0; 578 } 579 580 static void 581 ipv6cp_LayerFinish(struct fsm *fp) 582 { 583 /* We're now down */ 584 struct ipv6cp *ipv6cp = fsm2ipv6cp(fp); 585 586 log_Printf(LogIPV6CP, "%s: LayerFinish.\n", fp->link->name); 587 throughput_stop(&ipv6cp->throughput); 588 throughput_log(&ipv6cp->throughput, LogIPV6CP, NULL); 589 } 590 591 static void 592 ipv6cp_InitRestartCounter(struct fsm *fp, int what) 593 { 594 /* Set fsm timer load */ 595 struct ipv6cp *ipv6cp = fsm2ipv6cp(fp); 596 597 fp->FsmTimer.load = ipv6cp->cfg.fsm.timeout * SECTICKS; 598 switch (what) { 599 case FSM_REQ_TIMER: 600 fp->restart = ipv6cp->cfg.fsm.maxreq; 601 break; 602 case FSM_TRM_TIMER: 603 fp->restart = ipv6cp->cfg.fsm.maxtrm; 604 break; 605 default: 606 fp->restart = 1; 607 break; 608 } 609 } 610 611 static void 612 ipv6cp_SendConfigReq(struct fsm *fp) 613 { 614 /* Send config REQ please */ 615 struct physical *p = link2physical(fp->link); 616 struct ipv6cp *ipv6cp = fsm2ipv6cp(fp); 617 u_char buff[IPV6CP_IFIDLEN+2]; 618 struct fsm_opt *o; 619 620 o = (struct fsm_opt *)buff; 621 622 if ((p && !physical_IsSync(p)) || !REJECTED(ipv6cp, TY_TOKEN)) { 623 memcpy(o->data, ipv6cp->my_ifid, IPV6CP_IFIDLEN); 624 INC_FSM_OPT(TY_TOKEN, IPV6CP_IFIDLEN + 2, o); 625 } 626 627 fsm_Output(fp, CODE_CONFIGREQ, fp->reqid, buff, (u_char *)o - buff, 628 MB_IPV6CPOUT); 629 } 630 631 static void 632 ipv6cp_SentTerminateReq(struct fsm *fp) 633 { 634 /* Term REQ just sent by FSM */ 635 } 636 637 static void 638 ipv6cp_SendTerminateAck(struct fsm *fp, u_char id) 639 { 640 /* Send Term ACK please */ 641 fsm_Output(fp, CODE_TERMACK, id, NULL, 0, MB_IPV6CPOUT); 642 } 643 644 static const char * 645 protoname(int proto) 646 { 647 static const char *cftypes[] = { "IFACEID", "COMPPROTO" }; 648 649 if (proto > 0 && proto <= sizeof cftypes / sizeof *cftypes) 650 return cftypes[proto - 1]; 651 652 return NumStr(proto, NULL, 0); 653 } 654 655 static void 656 ipv6cp_ValidateInterfaceID(struct ipv6cp *ipv6cp, u_char *ifid, 657 struct fsm_decode *dec) 658 { 659 struct fsm_opt opt; 660 u_char zero[IPV6CP_IFIDLEN]; 661 662 memset(zero, 0, IPV6CP_IFIDLEN); 663 664 if (memcmp(ifid, zero, IPV6CP_IFIDLEN) != 0 665 && memcmp(ifid, ipv6cp->my_ifid, IPV6CP_IFIDLEN) != 0) 666 memcpy(ipv6cp->his_ifid, ifid, IPV6CP_IFIDLEN); 667 668 opt.hdr.id = TY_TOKEN; 669 opt.hdr.len = IPV6CP_IFIDLEN + 2; 670 memcpy(opt.data, &ipv6cp->his_ifid, IPV6CP_IFIDLEN); 671 if (memcmp(ifid, ipv6cp->his_ifid, IPV6CP_IFIDLEN) == 0) 672 fsm_ack(dec, &opt); 673 else 674 fsm_nak(dec, &opt); 675 } 676 677 static void 678 ipv6cp_DecodeConfig(struct fsm *fp, u_char *cp, u_char *end, int mode_type, 679 struct fsm_decode *dec) 680 { 681 /* Deal with incoming PROTO_IPV6CP */ 682 struct ipv6cp *ipv6cp = fsm2ipv6cp(fp); 683 int n; 684 char tbuff[100]; 685 u_char ifid[IPV6CP_IFIDLEN], zero[IPV6CP_IFIDLEN]; 686 struct fsm_opt *opt; 687 688 memset(zero, 0, IPV6CP_IFIDLEN); 689 690 while (end - cp >= sizeof(opt->hdr)) { 691 if ((opt = fsm_readopt(&cp)) == NULL) 692 break; 693 694 snprintf(tbuff, sizeof tbuff, " %s[%d]", protoname(opt->hdr.id), 695 opt->hdr.len); 696 697 switch (opt->hdr.id) { 698 case TY_TOKEN: 699 memcpy(ifid, opt->data, IPV6CP_IFIDLEN); 700 log_Printf(LogIPV6CP, "%s 0x%02x%02x%02x%02x%02x%02x%02x%02x\n", tbuff, 701 ifid[0], ifid[1], ifid[2], ifid[3], ifid[4], ifid[5], ifid[6], ifid[7]); 702 703 switch (mode_type) { 704 case MODE_REQ: 705 ipv6cp->peer_tokenreq = 1; 706 ipv6cp_ValidateInterfaceID(ipv6cp, ifid, dec); 707 break; 708 709 case MODE_NAK: 710 if (memcmp(ifid, zero, IPV6CP_IFIDLEN) == 0) { 711 log_Printf(log_IsKept(LogIPV6CP) ? LogIPV6CP : LogPHASE, 712 "0x0000000000000000: Unacceptable IntefaceID!\n"); 713 fsm_Close(&ipv6cp->fsm); 714 } else if (memcmp(ifid, ipv6cp->his_ifid, IPV6CP_IFIDLEN) == 0) { 715 log_Printf(log_IsKept(LogIPV6CP) ? LogIPV6CP : LogPHASE, 716 "0x%02x%02x%02x%02x%02x%02x%02x%02x: " 717 "Unacceptable IntefaceID!\n", 718 ifid[0], ifid[1], ifid[2], ifid[3], 719 ifid[4], ifid[5], ifid[6], ifid[7]); 720 } else if (memcmp(ifid, ipv6cp->my_ifid, IPV6CP_IFIDLEN) != 0) { 721 n = 100; 722 while (n && !ipcp_SetIPv6address(ipv6cp, ifid, ipv6cp->his_ifid)) { 723 do { 724 n--; 725 SetInterfaceID(ifid, 1); 726 } while (n && memcmp(ifid, ipv6cp->his_ifid, IPV6CP_IFIDLEN) == 0); 727 } 728 729 if (n == 0) { 730 log_Printf(log_IsKept(LogIPV6CP) ? LogIPV6CP : LogPHASE, 731 "0x0000000000000000: Unacceptable IntefaceID!\n"); 732 fsm_Close(&ipv6cp->fsm); 733 } else { 734 log_Printf(LogIPV6CP, "%s changing IntefaceID: " 735 "0x%02x%02x%02x%02x%02x%02x%02x%02x " 736 "--> 0x%02x%02x%02x%02x%02x%02x%02x%02x\n", tbuff, 737 ipv6cp->my_ifid[0], ipv6cp->my_ifid[1], 738 ipv6cp->my_ifid[2], ipv6cp->my_ifid[3], 739 ipv6cp->my_ifid[4], ipv6cp->my_ifid[5], 740 ipv6cp->my_ifid[6], ipv6cp->my_ifid[7], 741 ifid[0], ifid[1], ifid[2], ifid[3], 742 ifid[4], ifid[5], ifid[6], ifid[7]); 743 memcpy(ipv6cp->my_ifid, ifid, IPV6CP_IFIDLEN); 744 bundle_AdjustFilters(fp->bundle, &ipv6cp->myaddr, NULL); 745 } 746 } 747 break; 748 749 case MODE_REJ: 750 ipv6cp->his_reject |= (1 << opt->hdr.id); 751 break; 752 } 753 break; 754 755 default: 756 if (mode_type != MODE_NOP) { 757 ipv6cp->my_reject |= (1 << opt->hdr.id); 758 fsm_rej(dec, opt); 759 } 760 break; 761 } 762 } 763 764 if (mode_type != MODE_NOP) { 765 if (mode_type == MODE_REQ && !ipv6cp->peer_tokenreq) { 766 if (dec->rejend == dec->rej && dec->nakend == dec->nak) { 767 /* 768 * Pretend the peer has requested a TOKEN. 769 * We do this to ensure that we only send one NAK if the only 770 * reason for the NAK is because the peer isn't sending a 771 * TY_TOKEN REQ. This stops us from repeatedly trying to tell 772 * the peer that we have to have an IP address on their end. 773 */ 774 ipv6cp->peer_tokenreq = 1; 775 } 776 memset(ifid, 0, IPV6CP_IFIDLEN); 777 ipv6cp_ValidateInterfaceID(ipv6cp, ifid, dec); 778 } 779 fsm_opt_normalise(dec); 780 } 781 } 782 #endif 783