summaryrefslogtreecommitdiffstats
path: root/src/common/Network/Packet/CPktCmn.cpp
blob: 9f682826f8552d85fc1f3d25cf99898bce4e9e7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
#include "CPktCmn.h"
/*
Copyright (c) 2015-2015 Cisco Systems, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/



#define TouchCacheLine(a)

uint16_t pkt_InetChecksum(uint8_t* data , 
                        uint16_t len, uint8_t* data2 , uint16_t len2){

    TouchCacheLine(data2);
    TouchCacheLine(data2+32);
    TouchCacheLine(data2+64);

    int sum = 0;
    while(len>1){
        TouchCacheLine(data+96); //three lines ahead !
        sum += PKT_NTOHS(*((uint16_t*)data));
        data += 2;
        len -= 2;
    }

    while(len2>1){
        TouchCacheLine(data2+96); //three lines ahead !
        sum += PKT_NTOHS(*((uint16_t*)data2));
        data2 += 2;
        len2 -= 2;
    }

    if(len2){
        sum += (PKT_NTOHS(*((uint16_t*)data2)) & 0xff00);
    }

    while(sum >> 16){
        sum = (sum & 0xffff) + (sum >> 16);
    }

    return PKT_NTOHS((uint16_t)(~sum));
}

uint16_t pkt_InetChecksum(uint8_t* data , uint16_t len){

    int sum = 0;
    while(len>1){
        TouchCacheLine(data+96); //three line ahead !
        sum += PKT_NTOHS(*((uint16_t*)data));
        data += 2;
        len -= 2;
    }

    if(len){
        sum += (PKT_NTOHS(*((uint16_t*)data)) & 0xff00);
    }

    while(sum >> 16){
        sum = (sum & 0xffff) + (sum >> 16);
    }

    return PKT_NTOHS((uint16_t)(~sum));
}

uint16_t pkt_UpdateInetChecksum(uint16_t csFieldFromPacket, uint16_t oldVal, uint16_t newVal){
    uint32_t newCS;
    newCS = (uint16_t)(~PKT_NTOHS(csFieldFromPacket));
    newCS += (uint16_t)(~PKT_NTOHS(oldVal));
    newCS += (uint16_t)PKT_NTOHS(newVal);
    while(newCS >> 16){
        newCS = (newCS & 0xffff) + (newCS >> 16);
    }
    return PKT_NTOHS((uint16_t)(~newCS));
}

uint16_t pkt_SubtractInetChecksum(uint16_t checksum, uint16_t csToSubtract){
    uint32_t newCS;
    newCS = (uint16_t)(~PKT_NTOHS(checksum));

    // since the cs is already in ~ format in the packet, there is no need
    // to negate it for subtraction in 1's complement.
    newCS += (uint16_t)PKT_NTOHS(csToSubtract);

    while(newCS >> 16){
        newCS = (newCS & 0xffff) + (newCS >> 16);
    }
    return PKT_NTOHS((uint16_t)(~newCS));
}

uint16_t pkt_AddInetChecksum(uint16_t checksum, uint16_t csToAdd){
    uint32_t newCS;
    newCS = (uint16_t)(~PKT_NTOHS(checksum));

    // since the cs is already in ~ format in the packet, there is a need
    // to negate it for addition in 1's complement.
    newCS += (uint16_t)PKT_NTOHS(~csToAdd);

    while(newCS >> 16){
        newCS = (newCS & 0xffff) + (newCS >> 16);
    }
    return PKT_NTOHS((uint16_t)(~newCS));
}


extern "C" void pkt_ChecksumTest(){

    uint16_t cs;
    uint8_t data[5] = {0xcd,0x7a,0x55,0x55,0xa1};

    cs = pkt_InetChecksum((uint8_t*)data,5);
    printf("CS = 0x%04x: ",cs);
    if(cs == 0x2F3C){
        printf("CS func with odd len OK.\n");
    }else{
        printf("ERROR: CS func produced wrong value with odd number of bytes.\n");
    }
    
    cs = pkt_InetChecksum((uint8_t*)data,4);
    printf("CS = 0x%04x: ",cs);
    if(cs == 0x2FDD){
        printf("CS func with even len OK.\n");
    }else{
        printf("ERROR: CS func produced wrong value with even number of bytes.\n");
    }

    cs = pkt_UpdateInetChecksum(cs,0x5555,0x8532);
    printf("CS = 0x%04x: ",cs);
    if(cs == 0x0000){
        printf("Update CS func OK.\n");
    }else{
        printf("ERROR: Update CS func produced wrong value.\n");
    }   

}