2018-08-17 19:49:58 +00:00
|
|
|
#ifndef LLARP_IP_HPP
|
|
|
|
#define LLARP_IP_HPP
|
|
|
|
#include <llarp/buffer.h>
|
2018-11-19 22:45:37 +00:00
|
|
|
#include <llarp/time.hpp>
|
2018-08-24 16:07:17 +00:00
|
|
|
#include <llarp/net.hpp>
|
2018-10-29 16:48:36 +00:00
|
|
|
#include <llarp/ev.h>
|
2018-09-19 13:24:36 +00:00
|
|
|
|
2018-08-18 03:19:00 +00:00
|
|
|
#ifndef _WIN32
|
2018-09-27 02:19:34 +00:00
|
|
|
// unix, linux
|
2018-09-21 14:36:06 +00:00
|
|
|
#include <sys/types.h> // FreeBSD needs this for uchar for ip.h
|
2018-08-16 22:36:15 +00:00
|
|
|
#include <netinet/in.h>
|
2018-08-17 19:49:58 +00:00
|
|
|
#include <netinet/ip.h>
|
2018-08-18 03:19:00 +00:00
|
|
|
#else
|
2018-09-27 02:19:34 +00:00
|
|
|
// windows nt
|
2018-08-18 03:19:00 +00:00
|
|
|
#include <winsock2.h>
|
|
|
|
typedef struct ip_hdr
|
|
|
|
{
|
2018-08-20 10:52:47 +00:00
|
|
|
unsigned char
|
|
|
|
ip_header_len : 4; // 4-bit header length (in 32-bit words) normally=5
|
|
|
|
// (Means 20 Bytes may be 24 also)
|
2018-09-07 20:56:30 +00:00
|
|
|
unsigned char ip_version : 4; // 4-bit IPv4 version
|
2018-08-20 10:52:47 +00:00
|
|
|
unsigned char ip_tos; // IP type of service
|
|
|
|
unsigned short ip_total_length; // Total length
|
|
|
|
unsigned short ip_id; // Unique identifier
|
2018-08-18 03:19:00 +00:00
|
|
|
|
2018-08-20 10:52:47 +00:00
|
|
|
unsigned char ip_frag_offset : 5; // Fragment offset field
|
2018-08-18 03:19:00 +00:00
|
|
|
|
2018-08-20 10:52:47 +00:00
|
|
|
unsigned char ip_more_fragment : 1;
|
|
|
|
unsigned char ip_dont_fragment : 1;
|
|
|
|
unsigned char ip_reserved_zero : 1;
|
2018-08-18 03:19:00 +00:00
|
|
|
|
2018-08-20 10:52:47 +00:00
|
|
|
unsigned char ip_frag_offset1; // fragment offset
|
2018-08-18 03:19:00 +00:00
|
|
|
|
2018-08-20 10:52:47 +00:00
|
|
|
unsigned char ip_ttl; // Time to live
|
|
|
|
unsigned char ip_protocol; // Protocol(TCP,UDP etc)
|
|
|
|
unsigned short ip_checksum; // IP checksum
|
|
|
|
unsigned int ip_srcaddr; // Source address
|
|
|
|
unsigned int ip_destaddr; // Source address
|
2018-08-18 03:19:00 +00:00
|
|
|
} IPV4_HDR;
|
|
|
|
#define iphdr IPV4_HDR
|
2018-08-21 18:31:42 +00:00
|
|
|
#define saddr ip_srcaddr
|
|
|
|
#define daddr ip_destaddr
|
2018-08-21 18:33:27 +00:00
|
|
|
#define check ip_checksum
|
2018-08-21 13:02:05 +00:00
|
|
|
#define ihl ip_header_len
|
2018-08-23 23:28:09 +00:00
|
|
|
#define ip_version version
|
2018-08-18 03:19:00 +00:00
|
|
|
#endif
|
2018-09-19 13:24:36 +00:00
|
|
|
|
2018-08-17 19:49:58 +00:00
|
|
|
#include <memory>
|
2018-09-19 13:24:36 +00:00
|
|
|
|
2018-09-27 02:19:34 +00:00
|
|
|
// anything not win32
|
2018-09-17 20:18:11 +00:00
|
|
|
struct ip_header
|
2018-09-17 18:59:12 +00:00
|
|
|
{
|
|
|
|
#if __BYTE_ORDER == __LITTLE_ENDIAN
|
2018-09-21 14:36:06 +00:00
|
|
|
unsigned int ihl : 4;
|
|
|
|
unsigned int version : 4;
|
2018-09-17 18:59:12 +00:00
|
|
|
#elif __BYTE_ORDER == __BIG_ENDIAN
|
2018-09-21 14:36:06 +00:00
|
|
|
unsigned int version : 4;
|
|
|
|
unsigned int ihl : 4;
|
2018-09-17 18:59:12 +00:00
|
|
|
#else
|
2018-09-21 14:36:06 +00:00
|
|
|
#error "Please fix <bits/endian.h>"
|
2018-09-19 13:24:36 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__linux__)
|
|
|
|
#define ip_version version
|
2018-08-16 22:36:15 +00:00
|
|
|
#endif
|
2018-09-21 14:36:06 +00:00
|
|
|
uint8_t tos;
|
|
|
|
uint16_t tot_len;
|
|
|
|
uint16_t id;
|
|
|
|
uint16_t frag_off;
|
|
|
|
uint8_t ttl;
|
|
|
|
uint8_t protocol;
|
|
|
|
uint16_t check;
|
|
|
|
uint32_t saddr;
|
|
|
|
uint32_t daddr;
|
2018-09-17 18:59:12 +00:00
|
|
|
};
|
2018-08-17 19:49:58 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace net
|
|
|
|
{
|
|
|
|
struct IPv4Packet
|
|
|
|
{
|
|
|
|
static constexpr size_t MaxSize = 1500;
|
2018-08-22 15:52:10 +00:00
|
|
|
llarp_time_t timestamp;
|
|
|
|
size_t sz;
|
|
|
|
byte_t buf[MaxSize];
|
|
|
|
|
|
|
|
llarp_buffer_t
|
|
|
|
Buffer();
|
2018-08-20 19:12:12 +00:00
|
|
|
|
|
|
|
bool
|
|
|
|
Load(llarp_buffer_t buf);
|
2018-08-17 19:49:58 +00:00
|
|
|
|
|
|
|
struct GetTime
|
|
|
|
{
|
|
|
|
llarp_time_t
|
2018-08-31 14:41:04 +00:00
|
|
|
operator()(const IPv4Packet& pkt) const
|
2018-08-17 19:49:58 +00:00
|
|
|
{
|
2018-08-31 14:41:04 +00:00
|
|
|
return pkt.timestamp;
|
2018-08-17 19:49:58 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct PutTime
|
|
|
|
{
|
2018-10-29 16:48:36 +00:00
|
|
|
llarp_ev_loop* loop;
|
|
|
|
PutTime(llarp_ev_loop* evloop) : loop(evloop)
|
|
|
|
{
|
|
|
|
}
|
2018-08-17 19:49:58 +00:00
|
|
|
void
|
2018-08-31 14:41:04 +00:00
|
|
|
operator()(IPv4Packet& pkt) const
|
2018-08-17 19:49:58 +00:00
|
|
|
{
|
2018-10-29 16:48:36 +00:00
|
|
|
pkt.timestamp = llarp_ev_loop_time_now_ms(loop);
|
2018-08-17 19:49:58 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-11-15 13:13:19 +00:00
|
|
|
struct GetNow
|
|
|
|
{
|
|
|
|
llarp_ev_loop* loop;
|
|
|
|
GetNow(llarp_ev_loop* evloop) : loop(evloop)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
llarp_time_t
|
|
|
|
operator()() const
|
|
|
|
{
|
|
|
|
return llarp_ev_loop_time_now_ms(loop);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-08-17 19:49:58 +00:00
|
|
|
struct CompareOrder
|
|
|
|
{
|
|
|
|
bool
|
2018-08-31 14:41:04 +00:00
|
|
|
operator()(const IPv4Packet& left, const IPv4Packet& right)
|
2018-08-17 19:49:58 +00:00
|
|
|
{
|
2018-08-31 14:41:04 +00:00
|
|
|
return left.timestamp < right.timestamp;
|
2018-08-17 19:49:58 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-10-10 12:06:28 +00:00
|
|
|
inline ip_header*
|
2018-08-17 19:49:58 +00:00
|
|
|
Header()
|
|
|
|
{
|
2018-09-17 20:18:11 +00:00
|
|
|
return (ip_header*)&buf[0];
|
2018-08-17 19:49:58 +00:00
|
|
|
}
|
|
|
|
|
2018-10-10 12:06:28 +00:00
|
|
|
inline const ip_header*
|
2018-08-17 19:49:58 +00:00
|
|
|
Header() const
|
|
|
|
{
|
2018-09-17 20:18:11 +00:00
|
|
|
return (ip_header*)&buf[0];
|
2018-08-17 19:49:58 +00:00
|
|
|
}
|
|
|
|
|
2018-10-10 15:14:45 +00:00
|
|
|
inline huint32_t
|
2018-08-17 19:49:58 +00:00
|
|
|
src()
|
|
|
|
{
|
2018-10-10 15:14:45 +00:00
|
|
|
return huint32_t{ntohl(Header()->saddr)};
|
2018-08-17 19:49:58 +00:00
|
|
|
}
|
|
|
|
|
2018-10-10 15:14:45 +00:00
|
|
|
inline huint32_t
|
2018-08-17 19:49:58 +00:00
|
|
|
dst()
|
|
|
|
{
|
2018-10-10 15:14:45 +00:00
|
|
|
return huint32_t{ntohl(Header()->daddr)};
|
2018-08-17 19:49:58 +00:00
|
|
|
}
|
|
|
|
|
2018-10-10 12:06:28 +00:00
|
|
|
inline void
|
2018-10-10 15:14:45 +00:00
|
|
|
src(huint32_t ip)
|
2018-08-17 19:49:58 +00:00
|
|
|
{
|
2018-10-10 15:14:45 +00:00
|
|
|
Header()->saddr = htonl(ip.h);
|
2018-08-17 19:49:58 +00:00
|
|
|
}
|
|
|
|
|
2018-10-10 12:06:28 +00:00
|
|
|
inline void
|
2018-10-10 15:14:45 +00:00
|
|
|
dst(huint32_t ip)
|
2018-08-17 19:49:58 +00:00
|
|
|
{
|
2018-10-10 15:14:45 +00:00
|
|
|
Header()->daddr = htonl(ip.h);
|
2018-08-17 19:49:58 +00:00
|
|
|
}
|
|
|
|
|
2018-10-10 21:29:49 +00:00
|
|
|
// update ip packet (after packet gets out of network)
|
2018-08-20 19:12:12 +00:00
|
|
|
void
|
2018-11-01 17:15:01 +00:00
|
|
|
UpdateIPv4PacketOnDst(huint32_t newSrcIP, huint32_t newDstIP);
|
2018-10-09 14:09:03 +00:00
|
|
|
|
2018-10-10 21:29:49 +00:00
|
|
|
// update ip packet (before packet gets inserted into network)
|
2018-10-09 14:09:03 +00:00
|
|
|
void
|
2018-11-01 17:15:01 +00:00
|
|
|
UpdateIPv4PacketOnSrc();
|
2018-08-17 19:49:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace net
|
|
|
|
} // namespace llarp
|
|
|
|
|
|
|
|
#endif
|