Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* $Id: old_checksum.c,v 1.3 2003/10/27 08:04:32 starvik 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 | |
| 21 | #include <net/checksum.h> |
| 22 | #include <net/module.h> |
| 23 | |
| 24 | #undef PROFILE_CHECKSUM |
| 25 | |
| 26 | #ifdef PROFILE_CHECKSUM |
| 27 | /* these are just for profiling the checksum code with an oscillioscope.. uh */ |
| 28 | #if 0 |
| 29 | #define BITOFF *((unsigned char *)0xb0000030) = 0xff |
| 30 | #define BITON *((unsigned char *)0xb0000030) = 0x0 |
| 31 | #endif |
| 32 | #include <asm/io.h> |
| 33 | #define CBITON LED_ACTIVE_SET(1) |
| 34 | #define CBITOFF LED_ACTIVE_SET(0) |
| 35 | #define BITOFF |
| 36 | #define BITON |
| 37 | #else |
| 38 | #define BITOFF |
| 39 | #define BITON |
| 40 | #define CBITOFF |
| 41 | #define CBITON |
| 42 | #endif |
| 43 | |
| 44 | /* |
| 45 | * computes a partial checksum, e.g. for TCP/UDP fragments |
| 46 | */ |
| 47 | |
| 48 | #include <asm/delay.h> |
| 49 | |
Al Viro | 3532010 | 2006-11-14 21:15:19 -0800 | [diff] [blame^] | 50 | __wsum csum_partial(const void *p, int len, __wsum __sum) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | { |
Al Viro | 3532010 | 2006-11-14 21:15:19 -0800 | [diff] [blame^] | 52 | u32 sum = (__force u32)__sum; |
| 53 | const u16 *buff = p; |
| 54 | /* |
| 55 | * Experiments with ethernet and slip connections show that buff |
| 56 | * is aligned on either a 2-byte or 4-byte boundary. |
| 57 | */ |
| 58 | const void *endMarker = p + len; |
| 59 | const void *marker = endMarker - (len % 16); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | #if 0 |
Al Viro | 3532010 | 2006-11-14 21:15:19 -0800 | [diff] [blame^] | 61 | if((int)buff & 0x3) |
| 62 | printk("unaligned buff %p\n", buff); |
| 63 | __delay(900); /* extra delay of 90 us to test performance hit */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | #endif |
Al Viro | 3532010 | 2006-11-14 21:15:19 -0800 | [diff] [blame^] | 65 | BITON; |
| 66 | while (buff < marker) { |
| 67 | sum += *buff++; |
| 68 | sum += *buff++; |
| 69 | sum += *buff++; |
| 70 | sum += *buff++; |
| 71 | sum += *buff++; |
| 72 | sum += *buff++; |
| 73 | sum += *buff++; |
| 74 | sum += *buff++; |
| 75 | } |
| 76 | marker = endMarker - (len % 2); |
| 77 | while (buff < marker) |
| 78 | sum += *buff++; |
| 79 | |
| 80 | if (endMarker > buff) |
| 81 | sum += *(const u8 *)buff; /* add extra byte seperately */ |
| 82 | |
| 83 | BITOFF; |
| 84 | return (__force __wsum)sum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | } |
| 86 | |
| 87 | EXPORT_SYMBOL(csum_partial); |