inet.c
上传用户:yyhongfa
上传日期:2013-01-18
资源大小:267k
文件大小:9k
开发平台:

C/C++

  1. /*
  2.  * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without modification,
  6.  * are permitted provided that the following conditions are met:
  7.  *
  8.  * 1. Redistributions of source code must retain the above copyright notice,
  9.  *    this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright notice,
  11.  *    this list of conditions and the following disclaimer in the documentation
  12.  *    and/or other materials provided with the distribution.
  13.  * 3. The name of the author may not be used to endorse or promote products
  14.  *    derived from this software without specific prior written permission.
  15.  *
  16.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
  17.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  18.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
  19.  * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  20.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
  21.  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  22.  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  23.  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  24.  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
  25.  * OF SUCH DAMAGE.
  26.  *
  27.  * This file is part of the lwIP TCP/IP stack.
  28.  *
  29.  * Author: Adam Dunkels <adam@sics.se>
  30.  *
  31.  */
  32. /* inet.c
  33.  *
  34.  * Functions common to all TCP/IP modules, such as the Internet checksum and the
  35.  * byte order functions.
  36.  *
  37.  */
  38. #include "lwip/opt.h"
  39. #include "lwip/arch.h"
  40. #include "lwip/def.h"
  41. #include "lwip/inet.h"
  42. #include "lwip/sys.h"
  43. /* This is a reference implementation of the checksum algorithm
  44.  - it may not work on all architectures, and all processors, particularly
  45.    if they have issues with alignment and 16 bit access.
  46.  - in this case you will need to port it to your architecture and 
  47.    #define LWIP_CHKSUM <your_checksum_routine> 
  48.    in your sys_arch.h
  49. */
  50. #ifndef LWIP_CHKSUM
  51. #define LWIP_CHKSUM lwip_standard_chksum
  52. static u16_t
  53. lwip_standard_chksum(void *dataptr, int len)
  54. {
  55.   u32_t acc;
  56.   LWIP_DEBUGF(INET_DEBUG, ("lwip_chksum(%p, %d)n", (void *)dataptr, len));
  57.   for(acc = 0; len > 1; len -= 2) {
  58.       /*    acc = acc + *((u16_t *)dataptr)++;*/
  59.     acc += *(u16_t *)dataptr;
  60.     dataptr = (void *)((u16_t *)dataptr + 1);
  61.   }
  62.   /* add up any odd byte */
  63.   if (len == 1) {
  64.     acc += htons((u16_t)((*(u8_t *)dataptr) & 0xff) << 8);
  65.     LWIP_DEBUGF(INET_DEBUG, ("inet: chksum: odd byte %dn", (unsigned int)(*(u8_t *)dataptr)));
  66.   } else {
  67.     LWIP_DEBUGF(INET_DEBUG, ("inet: chksum: no odd byten"));
  68.   }
  69.   acc = (acc >> 16) + (acc & 0xffffUL);
  70.   if ((acc & 0xffff0000) != 0) {
  71.     acc = (acc >> 16) + (acc & 0xffffUL);
  72.   }
  73.   return (u16_t)acc;
  74. }
  75. #endif
  76. /* inet_chksum_pseudo:
  77.  *
  78.  * Calculates the pseudo Internet checksum used by TCP and UDP for a pbuf chain.
  79.  */
  80. u16_t
  81. inet_chksum_pseudo(struct pbuf *p,
  82.        struct ip_addr *src, struct ip_addr *dest,
  83.        u8_t proto, u16_t proto_len)
  84. {
  85.   u32_t acc;
  86.   struct pbuf *q;
  87.   u8_t swapped;
  88.   acc = 0;
  89.   swapped = 0;
  90.   /* iterate through all pbuf in chain */
  91.   for(q = p; q != NULL; q = q->next) {
  92.     LWIP_DEBUGF(INET_DEBUG, ("inet_chksum_pseudo(): checksumming pbuf %p (has next %p) n",
  93.       (void *)q, (void *)q->next));
  94.     acc += LWIP_CHKSUM(q->payload, q->len);
  95.     /*LWIP_DEBUGF(INET_DEBUG, ("inet_chksum_pseudo(): unwrapped lwip_chksum()=%lx n", acc));*/
  96.     while (acc >> 16) {
  97.       acc = (acc & 0xffffUL) + (acc >> 16);
  98.     }
  99.     if (q->len % 2 != 0) {
  100.       swapped = 1 - swapped;
  101.       acc = ((acc & 0xff) << 8) | ((acc & 0xff00UL) >> 8);
  102.     }
  103.     /*LWIP_DEBUGF(INET_DEBUG, ("inet_chksum_pseudo(): wrapped lwip_chksum()=%lx n", acc));*/
  104.   }
  105.   if (swapped) {
  106.     acc = ((acc & 0xff) << 8) | ((acc & 0xff00UL) >> 8);
  107.   }
  108.   acc += (src->addr & 0xffffUL);
  109.   acc += ((src->addr >> 16) & 0xffffUL);
  110.   acc += (dest->addr & 0xffffUL);
  111.   acc += ((dest->addr >> 16) & 0xffffUL);
  112.   acc += (u32_t)htons((u16_t)proto);
  113.   acc += (u32_t)htons(proto_len);
  114.   while (acc >> 16) {
  115.     acc = (acc & 0xffffUL) + (acc >> 16);
  116.   }
  117.   LWIP_DEBUGF(INET_DEBUG, ("inet_chksum_pseudo(): pbuf chain lwip_chksum()=%lxn", acc));
  118.   return (u16_t)~(acc & 0xffffUL);
  119. }
  120. /* inet_chksum:
  121.  *
  122.  * Calculates the Internet checksum over a portion of memory. Used primarely for IP
  123.  * and ICMP.
  124.  */
  125. u16_t
  126. inet_chksum(void *dataptr, u16_t len)
  127. {
  128.   u32_t acc;
  129.   acc = LWIP_CHKSUM(dataptr, len);
  130.   while (acc >> 16) {
  131.     acc = (acc & 0xffff) + (acc >> 16);
  132.   }
  133.   return (u16_t)~(acc & 0xffff);
  134. }
  135. u16_t
  136. inet_chksum_pbuf(struct pbuf *p)
  137. {
  138.   u32_t acc;
  139.   struct pbuf *q;
  140.   u8_t swapped;
  141.   acc = 0;
  142.   swapped = 0;
  143.   for(q = p; q != NULL; q = q->next) {
  144.     acc += LWIP_CHKSUM(q->payload, q->len);
  145.     while (acc >> 16) {
  146.       acc = (acc & 0xffffUL) + (acc >> 16);
  147.     }
  148.     if (q->len % 2 != 0) {
  149.       swapped = 1 - swapped;
  150.       acc = (acc & 0x00ffUL << 8) | (acc & 0xff00UL >> 8);
  151.     }
  152.   }
  153.   if (swapped) {
  154.     acc = ((acc & 0x00ffUL) << 8) | ((acc & 0xff00UL) >> 8);
  155.   }
  156.   return (u16_t)~(acc & 0xffffUL);
  157. }
  158. /* Here for now until needed in other places in lwIP */
  159. #ifndef isascii
  160. #define in_range(c, lo, up)  ((u8_t)c >= lo && (u8_t)c <= up)
  161. #define isascii(c)           in_range(c, 0x20, 0x7f)
  162. #define isdigit(c)           in_range(c, '0', '9')
  163. #define isxdigit(c)          (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F'))
  164. #define islower(c)           in_range(c, 'a', 'z')
  165. #define isspace(c)           (c == ' ' || c == 'f' || c == 'n' || c == 'r' || c == 't' || c == 'v')
  166. #endif
  167.  /*
  168.   * Ascii internet address interpretation routine.
  169.   * The value returned is in network order.
  170.   */
  171.  /*  */
  172.  /* inet_addr */
  173.  u32_t inet_addr(const char *cp)
  174.  {
  175.      struct in_addr val;
  176.      if (inet_aton(cp, &val)) {
  177.          return (val.s_addr);
  178.      }
  179.      return (INADDR_NONE);
  180.  }
  181.  /*
  182.   * Check whether "cp" is a valid ascii representation
  183.   * of an Internet address and convert to a binary address.
  184.   * Returns 1 if the address is valid, 0 if not.
  185.   * This replaces inet_addr, the return value from which
  186.   * cannot distinguish between failure and a local broadcast address.
  187.   */
  188.  /*  */
  189.  /* inet_aton */
  190.  int inet_aton(const char *cp, struct in_addr *addr)
  191.  {
  192.      u32_t val;
  193.      int base, n;
  194.      char c;
  195.      u32_t parts[4];
  196.      u32_t* pp = parts;
  197.      c = *cp;
  198.      for (;;) {
  199.          /*
  200.           * Collect number up to ``.''.
  201.           * Values are specified as for C:
  202.           * 0x=hex, 0=octal, isdigit=decimal.
  203.           */
  204.          if (!isdigit(c))
  205.              return (0);
  206.          val = 0; base = 10;
  207.          if (c == '0') {
  208.              c = *++cp;
  209.              if (c == 'x' || c == 'X')
  210.                  base = 16, c = *++cp;
  211.              else
  212.                  base = 8;
  213.          }
  214.          for (;;) {
  215.              if (isdigit(c)) {
  216.                  val = (val * base) + (int)(c - '0');
  217.                  c = *++cp;
  218.              } else if (base == 16 && isxdigit(c)) {
  219.                  val = (val << 4) |
  220.                      (int)(c + 10 - (islower(c) ? 'a' : 'A'));
  221.                  c = *++cp;
  222.              } else
  223.              break;
  224.          }
  225.          if (c == '.') {
  226.              /*
  227.               * Internet format:
  228.               *  a.b.c.d
  229.               *  a.b.c   (with c treated as 16 bits)
  230.               *  a.b (with b treated as 24 bits)
  231.               */
  232.              if (pp >= parts + 3)
  233.                  return (0);
  234.              *pp++ = val;
  235.              c = *++cp;
  236.          } else
  237.              break;
  238.      }
  239.      /*
  240.       * Check for trailing characters.
  241.       */
  242.      if (c != '' && (!isascii(c) || !isspace(c)))
  243.          return (0);
  244.      /*
  245.       * Concoct the address according to
  246.       * the number of parts specified.
  247.       */
  248.      n = pp - parts + 1;
  249.      switch (n) {
  250.      case 0:
  251.          return (0);     /* initial nondigit */
  252.      case 1:             /* a -- 32 bits */
  253.          break;
  254.      case 2:             /* a.b -- 8.24 bits */
  255.          if (val > 0xffffff)
  256.              return (0);
  257.          val |= parts[0] << 24;
  258.          break;
  259.      case 3:             /* a.b.c -- 8.8.16 bits */
  260.          if (val > 0xffff)
  261.              return (0);
  262.          val |= (parts[0] << 24) | (parts[1] << 16);
  263.          break;
  264.      case 4:             /* a.b.c.d -- 8.8.8.8 bits */
  265.          if (val > 0xff)
  266.              return (0);
  267.          val |= (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8);
  268.          break;
  269.      }
  270.      if (addr)
  271.          addr->s_addr = htonl(val);
  272.      return (1);
  273.  }
  274. /* Convert numeric IP address into decimal dotted ASCII representation.
  275.  * returns ptr to static buffer; not reentrant!
  276.  */
  277. char *inet_ntoa(struct in_addr addr)
  278. {
  279.   static char str[16];
  280.   u32_t s_addr = addr.s_addr;
  281.   char inv[3];
  282.   char *rp;
  283.   u8_t *ap;
  284.   u8_t rem;
  285.   u8_t n;
  286.   u8_t i;
  287.   rp = str;
  288.   ap = (u8_t *)&s_addr;
  289.   for(n = 0; n < 4; n++) {
  290.     i = 0;
  291.     do {
  292.       rem = *ap % (u8_t)10;
  293.       *ap /= (u8_t)10;
  294.       inv[i++] = '0' + rem;
  295.     } while(*ap);
  296.     while(i--)
  297.       *rp++ = inv[i];
  298.     *rp++ = '.';
  299.     ap++;
  300.   }
  301.   *--rp = 0;
  302.   return str;
  303. }
  304. #ifndef BYTE_ORDER
  305. #error BYTE_ORDER is not defined
  306. #endif
  307. #if BYTE_ORDER == LITTLE_ENDIAN
  308. u16_t
  309. htons(u16_t n)
  310. {
  311.   return ((n & 0xff) << 8) | ((n & 0xff00) >> 8);
  312. }
  313. u16_t
  314. ntohs(u16_t n)
  315. {
  316.   return htons(n);
  317. }
  318. u32_t
  319. htonl(u32_t n)
  320. {
  321.   return ((n & 0xff) << 24) |
  322.     ((n & 0xff00) << 8) |
  323.     ((n & 0xff0000) >> 8) |
  324.     ((n & 0xff000000) >> 24);
  325. }
  326. u32_t
  327. ntohl(u32_t n)
  328. {
  329.   return htonl(n);
  330. }
  331. #endif /* BYTE_ORDER == LITTLE_ENDIAN */