ReactOS 0.4.15-dev-7907-g95bf896
checksum.c
Go to the documentation of this file.
1/*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS TCP/IP protocol driver
4 * FILE: tcpip/checksum.c
5 * PURPOSE: Checksum routines
6 * NOTES: The checksum routine is from RFC 1071
7 * PROGRAMMERS: Casper S. Hornstrup (chorns@users.sourceforge.net)
8 * REVISIONS:
9 * CSH 01/08-2000 Created
10 */
11
12#include "precomp.h"
13
14
16 ULONG Sum)
17{
18 /* Fold 32-bit sum to 16 bits */
19 while (Sum >> 16)
20 {
21 Sum = (Sum & 0xFFFF) + (Sum >> 16);
22 }
23
24 return Sum;
25}
26
28 PVOID Data,
29 UINT Count,
30 ULONG Seed)
31/*
32 * FUNCTION: Calculate checksum of a buffer
33 * ARGUMENTS:
34 * Data = Pointer to buffer with data
35 * Count = Number of bytes in buffer
36 * Seed = Previously calculated checksum (if any)
37 * RETURNS:
38 * Checksum of buffer
39 */
40{
41 register ULONG Sum = Seed;
42
43 while (Count > 1)
44 {
45 Sum += *(PUSHORT)Data;
46 Count -= 2;
47 Data = (PVOID)((ULONG_PTR) Data + 2);
48 }
49
50 /* Add left-over byte, if any */
51 if (Count > 0)
52 {
53 Sum += *(PUCHAR)Data;
54 }
55
56 return Sum;
57}
58
62 PUCHAR PacketBuffer,
64{
65 ULONG Sum = 0;
66 USHORT TmpSum;
67 ULONG i;
69
70 /* Pad the data if needed */
71 Pad = (DataLength & 1);
72 if (Pad)
73 DataLength++;
74
75 /* Add from the UDP header and data */
76 for (i = 0; i < DataLength; i += 2)
77 {
78 TmpSum = ((PacketBuffer[i] << 8) & 0xFF00) +
79 ((Pad && i == DataLength - 2) ? 0 : (PacketBuffer[i+1] & 0x00FF));
80 Sum += TmpSum;
81 }
82
83 /* Add the source address */
84 for (i = 0; i < sizeof(IPv4_RAW_ADDRESS); i += 2)
85 {
86 TmpSum = ((((PUCHAR)&IPHeader->SrcAddr)[i] << 8) & 0xFF00) +
87 (((PUCHAR)&IPHeader->SrcAddr)[i+1] & 0x00FF);
88 Sum += TmpSum;
89 }
90
91 /* Add the destination address */
92 for (i = 0; i < sizeof(IPv4_RAW_ADDRESS); i += 2)
93 {
94 TmpSum = ((((PUCHAR)&IPHeader->DstAddr)[i] << 8) & 0xFF00) +
95 (((PUCHAR)&IPHeader->DstAddr)[i+1] & 0x00FF);
96 Sum += TmpSum;
97 }
98
99 /* Add the proto number and length */
100 Sum += IPPROTO_UDP + (DataLength - (Pad ? 1 : 0));
101
102 /* Fold the checksum and return the one's complement */
103 return ~ChecksumFold(Sum);
104}
105
unsigned char BOOLEAN
char * Pad(char *Str, char PadChar, ULONG Length)
Definition: cabman.cxx:29
_In_ ULONG _In_opt_ WDFREQUEST _In_opt_ PVOID _In_ size_t _In_ PVOID _In_ size_t _Out_ size_t * DataLength
Definition: cdrom.h:1444
ULONG ChecksumCompute(PVOID Data, UINT Count, ULONG Seed)
Definition: checksum.c:27
ULONG UDPv4ChecksumCalculate(PIPv4_HEADER IPHeader, PUCHAR PacketBuffer, ULONG DataLength)
Definition: checksum.c:60
ULONG ChecksumFold(ULONG Sum)
Definition: checksum.c:15
ULONG IPv4_RAW_ADDRESS
Definition: ip.h:15
#define IPPROTO_UDP
Definition: ip.h:197
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
unsigned int UINT
Definition: ndis.h:50
int Count
Definition: noreturn.cpp:7
unsigned short USHORT
Definition: pedump.c:61
void * PVOID
Definition: typedefs.h:50
uint16_t * PUSHORT
Definition: typedefs.h:56
uint32_t ULONG_PTR
Definition: typedefs.h:65
unsigned char * PUCHAR
Definition: typedefs.h:53
uint32_t ULONG
Definition: typedefs.h:59