/* *--------------------------------------------------------------------------- * ipcp.c - PPP IPCP (intrnet protocol) Processor/Handler * *--------------------------------------------------------------------------- * * Version * 0.1 Original Version Jun 3, 2000 * *--------------------------------------------------------------------------- * * Copyright (C) 2000, Mycal Labs www.mycal.com * *--------------------------------------------------------------------------- */ /* * Copyright (c) 2003, Mike Johnson, Mycal Labs, www.mycal.net * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by Mike Johnson/Mycal Labs * www.mycal.net. * 4. The name of the author may not be used to endorse or promote * products derived from this software without specific prior * written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * This file is part of the Mycal Modified uIP TCP/IP stack. * * $Id: ipcp.c,v 1.2 2010/10/19 18:29:03 adamdunkels Exp $ * */ /* */ /* include files */ /* */ #include "ppp_conf.h" #include "ppp_arch.h" #include "ipcp.h" #include "ppp.h" #include "ahdlc.h" #if PPP_DEBUG # define DEBUG1(x) debug_printf x #else # define DEBUG1(x) #endif /* In the future add compression protocol and name servers (possibly for servers * only) */ static const u8_t ipcplist[] = { 0x3, 0 }; /*---------------------------------------------------------------------------*/ #if 0 void printip(uip_ipaddr_t ip2) { char *ip = (u8_t*)ip2; DEBUG1((" %d.%d.%d.%d ",ip[0],ip[1],ip[2],ip[3])); } #else # define printip(x) #endif /*---------------------------------------------------------------------------*/ void ipcp_init(struct ppp_context_s *ctx) { DEBUG1(("ipcp init\n")); ctx->ipcp_state = 0; ctx->ipcp_retry = 0; ctx->ipcp_prev_seconds = 0; memset(&ctx->local_ip, 0, sizeof(struct in_addr)); #ifdef IPCP_GET_PEER_IP memset(&ctx->peer_ip, 0, sizeof(struct in_addr)); #endif #ifdef IPCP_GET_PRI_DNS memset(&ctx->pri_dns_addr, 0, sizeof(struct in_addr)); #endif #ifdef IPCP_GET_SEC_DNS memset(&ctx->sec_dns_addr, 0, sizeof(struct in_addr)); #endif } /*---------------------------------------------------------------------------*/ /* IPCP RX protocol Handler */ void ipcp_rx(struct ppp_context_s *ctx, u8_t *buffer, u16_t count) { u8_t *bptr = buffer; //IPCPPKT *pkt=(IPCPPKT *)buffer; u16_t len; DEBUG1(("IPCP len %d\n",count)); switch (*bptr++) { case CONF_REQ: /* Parse request and see if we can ACK it */ ++bptr; len = (*bptr++ << 8); len |= *bptr++; /* len-=2; */ DEBUG1(("check lcplist\n")); if (scan_packet(ctx, IPCP, ipcplist, buffer, bptr, (u16_t)(len - 4))) { DEBUG1(("option was bad\n")); } else { DEBUG1(("IPCP options are good\n")); /* Parse out the results */ /* lets try to implement what peer wants */ /* Reject any protocol not */ /* Error? if we we need to send a config Reject ++++ this is good for a subroutine*/ /* All we should get is the peer IP address */ if (IPCP_IPADDRESS == *bptr++) { /* Dump length */ ++bptr; #ifdef IPCP_GET_PEER_IP ((u8_t*)&ctx->peer_ip)[0] = *bptr++; ((u8_t*)&ctx->peer_ip)[1] = *bptr++; ((u8_t*)&ctx->peer_ip)[2] = *bptr++; ((u8_t*)&ctx->peer_ip)[3] = *bptr++; DEBUG1(("Peer IP ")); /* printip(peer_ip_addr); */ DEBUG1(("\n")); netlib_set_dripv4addr((char*)ctx->ifname, &ctx->peer_ip); #else bptr += 4; #endif } else { DEBUG1(("HMMMM this shouldn't happen IPCP1\n")); } #if 0 if (error) { /* Write the config NAK packet we've built above, take on the header */ bptr = buffer; *bptr++ = CONF_NAK; /* Write Conf_rej */ *bptr++; /*tptr++;*/ /* skip over ID */ /* Write new length */ *bptr++ = 0; *bptr = tptr - buffer; /* Write the reject frame */ DEBUG1(("Writing NAK frame \n")); ahdlc_tx(IPCP, buffer, (u16_t)(tptr - buffer)); DEBUG1(("- End NAK Write frame\n")); } else { } #endif /* If we get here then we are OK, lets send an ACK and tell the rest * of our modules our negotiated config. */ ctx->ipcp_state |= IPCP_RX_UP; DEBUG1(("Send IPCP ACK!\n")); bptr = buffer; *bptr++ = CONF_ACK; /* Write Conf_ACK */ bptr++; /* Skip ID (send same one) */ /* Set stuff */ /* ppp_flags |= tflag; */ DEBUG1(("SET- stuff -- are we up? c=%d dif=%d \n", count, (u16_t)(bptr - buffer))); /* Write the ACK frame */ DEBUG1(("Writing ACK frame \n")); /* Send packet ahdlc_txz(procol,header,data,headerlen,datalen); */ ahdlc_tx(ctx, IPCP, 0, buffer, 0, count /*bptr-buffer*/); DEBUG1(("- End ACK Write frame\n")); } break; case CONF_ACK: /* config Ack */ DEBUG1(("CONF ACK\n")); /* Parse out the results * * Dump the ID and get the length. */ /* Dump the ID */ bptr++; /* Get the length */ len = (*bptr++ << 8); len |= *bptr++; #if 0 /* Parse ACK and set data */ while (bptr < buffer + len) { switch (*bptr++) { case IPCP_IPADDRESS: /* Dump length */ bptr++; ((u8_t*)ipaddr)[0] = *bptr++; ((u8_t*)ipaddr)[1] = *bptr++; ((u8_t*)ipaddr)[2] = *bptr++; ((u8_t*)ipaddr)[3] = *bptr++; break; case IPCP_PRIMARY_DNS: bptr++; ((u8_t*)pri_dns_addr)[0] = *bptr++; ((u8_t*)pri_dns_addr)[1] = *bptr++; ((u8_t*)pri_dns_addr)[2] = *bptr++; ((u8_t*)pri_dns_addr)[3] = *bptr++; break; case IPCP_SECONDARY_DNS: bptr++; ((u8_t*)sec_dns_addr)[0] = *bptr++; ((u8_t*)sec_dns_addr)[1] = *bptr++; ((u8_t*)sec_dns_addr)[2] = *bptr++; ((u8_t*)sec_dns_addr)[3] = *bptr++; break; default: DEBUG1(("IPCP CONFIG_ACK problem1\n")); } } #endif ctx->ipcp_state |= IPCP_TX_UP; /*ppp_ipcp_state &= ~IPCP_RX_UP;*/ DEBUG1(("were up! \n")); //printip(pppif.ipaddr); #ifdef IPCP_GET_PRI_DNS printip(pri_dns_addr); #endif #ifdef IPCP_GET_SEC_DNS printip(sec_dns_addr); #endif DEBUG1(("\n")); break; case CONF_NAK: /* Config Nack */ DEBUG1(("CONF NAK\n")); /* Dump the ID */ bptr++; /* Get the length */ len = (*bptr++ << 8); len |= *bptr++; /* Parse ACK and set data */ while (bptr < buffer + len) { switch (*bptr++) { case IPCP_IPADDRESS: /* dump length */ bptr++; ((u8_t*)&ctx->local_ip)[0] = (char)*bptr++; ((u8_t*)&ctx->local_ip)[1] = (char)*bptr++; ((u8_t*)&ctx->local_ip)[2] = (char)*bptr++; ((u8_t*)&ctx->local_ip)[3] = (char)*bptr++; netlib_ifup((char*)ctx->ifname); netlib_set_ipv4addr((char*)ctx->ifname, &ctx->local_ip); //DEBUG1(("My PPP-ipno: (%d.%d.%d.%d)\n", ((u8_t*)pppif.ipaddr)[0], ((u8_t*)pppif.ipaddr)[1], ((u8_t*)pppif.ipaddr)[2], ((u8_t*)pppif.ipaddr)[3])); break; #ifdef IPCP_GET_PRI_DNS case IPCP_PRIMARY_DNS: bptr++; ((u8_t*)&ctx->pri_dns_addr)[0] = *bptr++; ((u8_t*)&ctx->pri_dns_addr)[1] = *bptr++; ((u8_t*)&ctx->pri_dns_addr)[2] = *bptr++; ((u8_t*)&ctx->pri_dns_addr)[3] = *bptr++; break; #endif #ifdef IPCP_GET_SEC_DNS case IPCP_SECONDARY_DNS: bptr++; ((u8_t*)&ctx->sec_dns_addr)[0] = *bptr++; ((u8_t*)&ctx->sec_dns_addr)[1] = *bptr++; ((u8_t*)&ctx->sec_dns_addr)[2] = *bptr++; ((u8_t*)&ctx->sec_dns_addr)[3] = *bptr++; break; #endif default: DEBUG1(("IPCP CONFIG_ACK problem 2\n")); } } ctx->ppp_id++; printip(pppif.ipaddr); #ifdef IPCP_GET_PRI_DNS printip(pri_dns_addr); #endif #ifdef IPCP_GET_PRI_DNS printip(sec_dns_addr); #endif DEBUG1(("\n")); break; case CONF_REJ: /* Config Reject */ DEBUG1(("CONF REJ\n")); /* Remove the offending options*/ ctx->ppp_id++; /* Dump the ID */ bptr++; /* Get the length */ len = (*bptr++ << 8); len |= *bptr++; /* Parse ACK and set data */ while (bptr < buffer + len) { switch (*bptr++) { case IPCP_IPADDRESS: ctx->ipcp_state |= IPCP_IP_BIT; bptr += 5; break; #ifdef IPCP_GET_PRI_DNS case IPCP_PRIMARY_DNS: ctx->ipcp_state |= IPCP_PRI_DNS_BIT; bptr += 5; break; #endif #ifdef IPCP_GET_PRI_DNS case IPCP_SECONDARY_DNS: ctx->ipcp_state |= IPCP_SEC_DNS_BIT; bptr += 5; break; #endif default: DEBUG1(("IPCP this shoudln't happen 3\n")); } } break; default: DEBUG1(("-Unknown 4\n")); } } /*---------------------------------------------------------------------------*/ void ipcp_task(struct ppp_context_s *ctx, u8_t *buffer) { u8_t *bptr; u16_t t; IPCPPKT *pkt; /* IPCP tx not up and hasn't timed out then lets see if we need to send a request */ if (!(ctx->ipcp_state & IPCP_TX_UP) && !(ctx->ipcp_state & IPCP_TX_TIMEOUT)) { /* Check if we have a request pending */ if ((ppp_arch_clock_seconds() - ctx->ipcp_prev_seconds) > IPCP_TIMEOUT) { ctx->ipcp_prev_seconds = ppp_arch_clock_seconds(); /* No pending request, lets build one */ pkt=(IPCPPKT *)buffer; /* Configure-Request only here, write id */ pkt->code = CONF_REQ; pkt->id = ctx->ppp_id; bptr = pkt->data; /* Write options, we want IP address, and DNS addresses if set. */ /* Write zeros for IP address the first time */ *bptr++ = IPCP_IPADDRESS; *bptr++ = 0x6; *bptr++ = (u8_t)((u8_t*)&ctx->local_ip)[0]; *bptr++ = (u8_t)((u8_t*)&ctx->local_ip)[1]; *bptr++ = (u8_t)((u8_t*)&ctx->local_ip)[2]; *bptr++ = (u8_t)((u8_t*)&ctx->local_ip)[3]; #ifdef IPCP_GET_PRI_DNS if (!(ppp_ipcp_state & IPCP_PRI_DNS_BIT)) { /* Write zeros for IP address the first time */ *bptr++ = IPCP_PRIMARY_DNS; *bptr++ = 0x6; *bptr++ = ((u8_t*)&ctx->pri_dns_addr)[0]; *bptr++ = ((u8_t*)&ctx->pri_dns_addr)[1]; *bptr++ = ((u8_t*)&ctx->pri_dns_addr)[2]; *bptr++ = ((u8_t*)&ctx->pri_dns_addr)[3]; } #endif #ifdef IPCP_GET_SEC_DNS if (!(ppp_ipcp_state & IPCP_SEC_DNS_BIT)) { /* Write zeros for IP address the first time */ *bptr++ = IPCP_SECONDARY_DNS; *bptr++ = 0x6; *bptr++ = ((u8_t*)&ctx->sec_dns_addr)[0]; *bptr++ = ((u8_t*)&ctx->sec_dns_addr)[1]; *bptr++ = ((u8_t*)&ctx->sec_dns_addr)[2]; *bptr++ = ((u8_t*)&ctx->sec_dns_addr)[3]; } #endif /* Write length */ t = bptr - buffer; /* length here - code and ID + */ pkt->len = htons(t); DEBUG1(("\n**Sending IPCP Request packet\n")); /* Send packet ahdlc_txz(procol,header,data,headerlen,datalen); */ ahdlc_tx(ctx, IPCP, 0, buffer, 0, t); /* Inc retry */ ctx->ipcp_retry++; /* Have we timed out? (combine the timers?) */ if (ctx->ipcp_retry > IPCP_RETRY_COUNT) { ctx->ipcp_state &= IPCP_TX_TIMEOUT; } } } } /*---------------------------------------------------------------------------*/