old_checksum.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: old_checksum.c,v 1.1 2000/07/10 16:25:21 bjornw Exp $
  2.  *
  3.  * INET An implementation of the TCP/IP protocol suite for the LINUX
  4.  * operating system.  INET is implemented using the  BSD Socket
  5.  * interface as the means of communication with the user level.
  6.  *
  7.  * IP/TCP/UDP checksumming routines
  8.  *
  9.  * Authors: Jorge Cwik, <jorge@laser.satlink.net>
  10.  * Arnt Gulbrandsen, <agulbra@nvg.unit.no>
  11.  * Tom May, <ftom@netcom.com>
  12.  * Lots of code moved from tcp.c and ip.c; see those files
  13.  * for more names.
  14.  *
  15.  * This program is free software; you can redistribute it and/or
  16.  * modify it under the terms of the GNU General Public License
  17.  * as published by the Free Software Foundation; either version
  18.  * 2 of the License, or (at your option) any later version.
  19.  */
  20. #include <net/checksum.h>
  21. #undef PROFILE_CHECKSUM
  22. #ifdef PROFILE_CHECKSUM
  23. /* these are just for profiling the checksum code with an oscillioscope.. uh */
  24. #if 0
  25. #define BITOFF *((unsigned char *)0xb0000030) = 0xff
  26. #define BITON *((unsigned char *)0xb0000030) = 0x0
  27. #endif
  28. #include <asm/io.h>
  29. #define CBITON LED_ACTIVE_SET(1)
  30. #define CBITOFF LED_ACTIVE_SET(0)
  31. #define BITOFF
  32. #define BITON
  33. #else
  34. #define BITOFF
  35. #define BITON
  36. #define CBITOFF
  37. #define CBITON
  38. #endif
  39. /*
  40.  * computes a partial checksum, e.g. for TCP/UDP fragments
  41.  */
  42. #include <asm/delay.h>
  43. unsigned int csum_partial(const unsigned char * buff, int len, unsigned int sum)
  44. {
  45.   /*
  46.    * Experiments with ethernet and slip connections show that buff
  47.    * is aligned on either a 2-byte or 4-byte boundary.
  48.    */
  49.   const unsigned char *endMarker = buff + len;
  50.   const unsigned char *marker = endMarker - (len % 16);
  51. #if 0
  52.   if((int)buff & 0x3)
  53.     printk("unaligned buff %pn", buff);
  54.   __delay(900); /* extra delay of 90 us to test performance hit */
  55. #endif
  56.   BITON;
  57.   while (buff < marker) {
  58.     sum += *((unsigned short *)buff)++;
  59.     sum += *((unsigned short *)buff)++;
  60.     sum += *((unsigned short *)buff)++;
  61.     sum += *((unsigned short *)buff)++;
  62.     sum += *((unsigned short *)buff)++;
  63.     sum += *((unsigned short *)buff)++;
  64.     sum += *((unsigned short *)buff)++;
  65.     sum += *((unsigned short *)buff)++;
  66.   }
  67.   marker = endMarker - (len % 2);
  68.   while(buff < marker) {
  69.     sum += *((unsigned short *)buff)++;
  70.   }
  71.   if(endMarker - buff > 0) {
  72.     sum += *buff;                 /* add extra byte seperately */
  73.   }
  74.   BITOFF;
  75.   return(sum);
  76. }
  77. #if 0
  78. /*
  79.  * copy while checksumming, otherwise like csum_partial
  80.  */
  81. unsigned int csum_partial_copy(const unsigned char *src, unsigned char *dst, 
  82.   int len, unsigned int sum)
  83. {
  84.   const unsigned char *endMarker;
  85.   const unsigned char *marker;
  86.   printk("csum_partial_copy len %d.n", len);
  87. #if 0
  88.   if((int)src & 0x3)
  89.     printk("unaligned src %pn", src);
  90.   if((int)dst & 0x3)
  91.     printk("unaligned dst %pn", dst);
  92.   __delay(1800); /* extra delay of 90 us to test performance hit */
  93. #endif
  94.   endMarker = src + len;
  95.   marker = endMarker - (len % 16);
  96.   CBITON;
  97.   while(src < marker) {
  98.     sum += (*((unsigned short *)dst)++ = *((unsigned short *)src)++);
  99.     sum += (*((unsigned short *)dst)++ = *((unsigned short *)src)++);
  100.     sum += (*((unsigned short *)dst)++ = *((unsigned short *)src)++);
  101.     sum += (*((unsigned short *)dst)++ = *((unsigned short *)src)++);
  102.     sum += (*((unsigned short *)dst)++ = *((unsigned short *)src)++);
  103.     sum += (*((unsigned short *)dst)++ = *((unsigned short *)src)++);
  104.     sum += (*((unsigned short *)dst)++ = *((unsigned short *)src)++);
  105.     sum += (*((unsigned short *)dst)++ = *((unsigned short *)src)++);
  106.   }
  107.   marker = endMarker - (len % 2);
  108.   while(src < marker) {
  109.     sum += (*((unsigned short *)dst)++ = *((unsigned short *)src)++);
  110.   }
  111.   if(endMarker - src > 0) {
  112.     sum += (*dst = *src);                 /* add extra byte seperately */
  113.   }
  114.   CBITOFF;
  115.   return(sum);
  116. }
  117. #endif