summaryrefslogtreecommitdiffstats
path: root/src/common/Network/Packet/TCPOptions.cpp
blob: d8312ccc4f2d7ed98f2ef25dd83ed051ac721966 (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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/*
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.
*/


#include "TCPOptions.h"
#include "IPHeader.h"

bool                    TCPOptions::ourOneShotDump          = false;
TCPOptions::Counters    TCPOptions::ourCounters             = {0,0,0};

TCPOptions::TCPOptions(uint8_t*   argOptionsP, uint16_t argOptionsSize):
myOptionsP      (argOptionsP),
myOptionsSize   (argOptionsSize),
myCurrentOptionP((Option*)argOptionsP)
{
    ;
}

bool    TCPOptions::doesContain(TCPOptions::Kind::Val argKind)
{
    uint32_t  optionTypeIdx = 0;// Used to verify that we're not in infinite loop

    // we'll run over the whole list of TLVs and check each relative to the time stamp 
    // option kind value.
    do 
    {
        Kind::Val   theCurrentOptionKind;
        uint8_t       theOptionLength;
        getCurrentOption(theCurrentOptionKind, theOptionLength);
        optionTypeIdx++;
        if( theCurrentOptionKind == argKind )
        {
            return true;
        }
    } while( (nextOption() == true)  && (optionTypeIdx < MaxOptionsInPacket));

    if(optionTypeIdx >= MaxOptionsInPacket)
    {
        ourCounters.itsPossibleEndlessLoop++;
    }

    // none of the TLV was of type TimeStamp
    return false;
}

//--------------------------------------------------------------------------------------------------
// Set methods
//--------------------------------------------------------------------------------------------------

//--------------------------------------------------------------------------------------------------
// Miscellaneous Operations
//--------------------------------------------------------------------------------------------------

void    TCPOptions::dump(FILE*  argOutputFile)
{
    fprintf(argOutputFile, "\nNot supported yet!\n");
}

void    TCPOptions::get(TCPOptions::Counters& argCounters)
{
     argCounters.itsOptionsSizeMismatch = ourCounters.itsOptionsSizeMismatch;  
     argCounters.itsZeroLengthOptions   = ourCounters.itsZeroLengthOptions;    
     argCounters.itsPossibleEndlessLoop = ourCounters.itsPossibleEndlessLoop;  
}

uint8_t*  TCPOptions::getCurrentOption    (Kind::Val&    argKind, uint8_t& argLength)
{
    argKind     = (Kind::Val)myCurrentOptionP->theKind;
    argLength   = getCurrentOptionLength();
    return(uint8_t*)myCurrentOptionP;
}


uint8_t   TCPOptions::getCurrentOptionLength()
{
    if(myCurrentOptionP->theKind == Kind::NO_OP || 
       myCurrentOptionP->theKind == Kind::EOL)
    {
        return 1;
    }
    else
    {
        return myCurrentOptionP->theLength;
    }
}


// This is a patch for temporary packet dump facility
//
#define MAX_BUFFER_SIZE (8 * 2048)
static  char    theDumpBuffer[MAX_BUFFER_SIZE] ={0};

bool    TCPOptions::isLastOption        ()
{
    // Below is the total length of the options we've passed so far
    uint32_t  theCurrentOffset = (uint32_t)((uintptr_t)((char *)myCurrentOptionP - (char *)myOptionsP));

    uint32_t  theCurrentLength = getCurrentOptionLength();
    if( (theCurrentOffset + theCurrentLength) >= myOptionsSize )
    {
        // debug check
        if( (theCurrentOffset + theCurrentLength) > myOptionsSize )
        {
            ourCounters.itsOptionsSizeMismatch++;
            if(ourOneShotDump == false)
            {
                ourOneShotDump = true;//disable for next time
                uint8_t*    theIPPacket     = (uint8_t*)((uintptr_t)(myOptionsP - 40));
                IPHeader* theIPHeader     = (IPHeader*)theIPPacket;
                uint16_t    thePacketLength = theIPHeader->getTotalLength();

                if(thePacketLength < (MAX_BUFFER_SIZE / 8))
                {
                    int numWritten = sprintf(theDumpBuffer, "\nDump Size %u\n", thePacketLength);

                    for (uint32_t i = 0; i < thePacketLength; i++)
                    {
                        numWritten += sprintf(theDumpBuffer + numWritten,"%.2x ", theIPPacket[i]); 

                        if ((i % 16) == 15)
                        {
                            numWritten += sprintf(theDumpBuffer + numWritten,"\n");
                        }
                    }
                }
            }
        }
        return true;
    }
    else
    {
        return false;
    }
}

//--------------------------------------------------------------------------------------------------
// Set methods
//--------------------------------------------------------------------------------------------------

bool    TCPOptions::nextOption          ()
{
    if( isLastOption() == true )
    {
        return false;
    }
    else
    {
        uint32_t  theCurrentOptionLength = getCurrentOptionLength();
        if(theCurrentOptionLength > 0)
        {
            uint8_t*  theCurrentP = (uint8_t*)myCurrentOptionP;
            theCurrentP         += theCurrentOptionLength;
            myCurrentOptionP    = (Option*)theCurrentP;
            return true;
        }
        else
        {
            ourCounters.itsZeroLengthOptions++;
            return false;
        }
    }
}