1 #ifndef RAW_IP_PACKET_H
2 #define RAW_IP_PACKET_H
4 #if defined(FREE_BSD) || defined(FREE_BSD5)
5 #include <netinet/in_systm.h> // n_long in netinet/ip.h
8 #include <netinet/in.h> // for htons
9 #include <netinet/ip.h> // for struct ip
18 enum { pcktSize = 68 }; //60(max) ip + 8 udp or tcp (part of tcp or udp header to ports)
19 //-----------------------------------------------------------------------------
25 memset(pckt, 0, pcktSize);
28 RAW_PACKET(const RAW_PACKET & rp)
31 memcpy(pckt, rp.pckt, pcktSize);
34 uint16_t GetIPVersion() const;
35 uint8_t GetHeaderLen() const;
36 uint8_t GetProto() const;
37 uint32_t GetLen() const;
38 uint32_t GetSrcIP() const;
39 uint32_t GetDstIP() const;
40 uint16_t GetSrcPort() const;
41 uint16_t GetDstPort() const;
43 bool operator==(const RAW_PACKET & rvalue) const;
44 bool operator!=(const RAW_PACKET & rvalue) const { return !(*this == rvalue); };
45 bool operator<(const RAW_PACKET & rvalue) const;
49 uint8_t pckt[pcktSize]; // Packet header as a raw data
53 // Only for packets without options field
56 } header __attribute__ ((packed));
58 int32_t dataLen; // IP packet length. Set to -1 to use length field from the header
60 //-----------------------------------------------------------------------------
61 inline uint16_t RAW_PACKET::GetIPVersion() const
63 return header.ipHeader.ip_v;
65 //-----------------------------------------------------------------------------
66 inline uint8_t RAW_PACKET::GetHeaderLen() const
68 return header.ipHeader.ip_hl * 4;
70 //-----------------------------------------------------------------------------
71 inline uint8_t RAW_PACKET::GetProto() const
73 return header.ipHeader.ip_p;
75 //-----------------------------------------------------------------------------
76 inline uint32_t RAW_PACKET::GetLen() const
80 return ntohs(header.ipHeader.ip_len);
82 //-----------------------------------------------------------------------------
83 inline uint32_t RAW_PACKET::GetSrcIP() const
85 return header.ipHeader.ip_src.s_addr;
87 //-----------------------------------------------------------------------------
88 inline uint32_t RAW_PACKET::GetDstIP() const
90 return header.ipHeader.ip_dst.s_addr;
92 //-----------------------------------------------------------------------------
93 inline uint16_t RAW_PACKET::GetSrcPort() const
95 if (header.ipHeader.ip_p == 1) // for icmp proto return port 0
97 return ntohs(*((uint16_t*)(pckt + header.ipHeader.ip_hl * 4)));
99 //-----------------------------------------------------------------------------
100 inline uint16_t RAW_PACKET::GetDstPort() const
102 if (header.ipHeader.ip_p == 1) // for icmp proto return port 0
104 return ntohs(*((uint16_t*)(pckt + header.ipHeader.ip_hl * 4 + 2)));
106 //-----------------------------------------------------------------------------
107 inline bool RAW_PACKET::operator==(const RAW_PACKET & rvalue) const
109 if (header.ipHeader.ip_src.s_addr != rvalue.header.ipHeader.ip_src.s_addr)
112 if (header.ipHeader.ip_dst.s_addr != rvalue.header.ipHeader.ip_dst.s_addr)
115 if (header.ipHeader.ip_p != 1 && rvalue.header.ipHeader.ip_p != 1)
117 if (*((uint16_t *)(pckt + header.ipHeader.ip_hl * 4)) !=
118 *((uint16_t *)(rvalue.pckt + rvalue.header.ipHeader.ip_hl * 4)))
121 if (*((uint16_t *)(pckt + header.ipHeader.ip_hl * 4 + 2)) !=
122 *((uint16_t *)(rvalue.pckt + rvalue.header.ipHeader.ip_hl * 4 + 2)))
126 if (header.ipHeader.ip_p != rvalue.header.ipHeader.ip_p)
131 //-----------------------------------------------------------------------------
132 inline bool RAW_PACKET::operator<(const RAW_PACKET & rvalue) const
134 if (header.ipHeader.ip_src.s_addr < rvalue.header.ipHeader.ip_src.s_addr)
136 if (header.ipHeader.ip_src.s_addr > rvalue.header.ipHeader.ip_src.s_addr)
139 if (header.ipHeader.ip_dst.s_addr < rvalue.header.ipHeader.ip_dst.s_addr)
141 if (header.ipHeader.ip_dst.s_addr > rvalue.header.ipHeader.ip_dst.s_addr)
144 if (header.ipHeader.ip_p != 1 && rvalue.header.ipHeader.ip_p != 1)
146 if (*((uint16_t *)(pckt + header.ipHeader.ip_hl * 4)) <
147 *((uint16_t *)(rvalue.pckt + rvalue.header.ipHeader.ip_hl * 4)))
149 if (*((uint16_t *)(pckt + header.ipHeader.ip_hl * 4)) >
150 *((uint16_t *)(rvalue.pckt + rvalue.header.ipHeader.ip_hl * 4)))
153 if (*((uint16_t *)(pckt + header.ipHeader.ip_hl * 4 + 2)) <
154 *((uint16_t *)(rvalue.pckt + rvalue.header.ipHeader.ip_hl * 4 + 2)))
156 if (*((uint16_t *)(pckt + header.ipHeader.ip_hl * 4 + 2)) >
157 *((uint16_t *)(rvalue.pckt + rvalue.header.ipHeader.ip_hl * 4 + 2)))
161 if (header.ipHeader.ip_p < rvalue.header.ipHeader.ip_p)
166 //-----------------------------------------------------------------------------