1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/ip.cpp

233 lines
6 KiB
C++
Raw Normal View History

#include <llarp/endian.h>
2018-08-21 15:02:05 +02:00
#include <algorithm>
2018-08-23 20:48:41 +02:00
#include <llarp/ip.hpp>
#include "llarp/buffer.hpp"
2018-08-22 17:52:10 +02:00
#include "mem.hpp"
2018-09-19 01:44:23 +02:00
#ifndef _WIN32
#include <netinet/in.h>
#endif
#include <llarp/endian.h>
#include <map>
2018-10-10 14:06:28 +02:00
#include <algorithm>
namespace llarp
{
namespace net
{
2018-08-20 21:12:12 +02:00
bool
IPv4Packet::Load(llarp_buffer_t pkt)
{
2018-10-09 19:49:20 +02:00
sz = std::min(pkt.sz, sizeof(buf));
2018-08-22 17:52:10 +02:00
memcpy(buf, pkt.base, sz);
2018-08-20 21:12:12 +02:00
return true;
}
2018-08-20 21:12:12 +02:00
2018-08-22 17:52:10 +02:00
llarp_buffer_t
IPv4Packet::Buffer()
{
return llarp::InitBuffer(buf, sz);
}
#if 0
static uint32_t
2018-10-10 17:14:45 +02:00
ipchksum_pseudoIPv4(nuint32_t src_ip, nuint32_t dst_ip, uint8_t proto,
2018-10-09 19:09:45 +02:00
uint16_t innerlen)
{
#define IPCS(x) ((uint32_t)(x & 0xFFff) + (uint32_t)(x >> 16))
2018-10-10 17:14:45 +02:00
uint32_t sum = IPCS(src_ip.n) + IPCS(dst_ip.n) + (uint32_t)proto
2018-10-09 23:56:20 +02:00
+ (uint32_t)htons(innerlen);
2018-10-09 19:09:45 +02:00
#undef IPCS
return sum;
}
static uint16_t
ipchksum(const byte_t *buf, size_t sz, uint32_t sum = 0)
{
while(sz > 1)
2018-08-20 21:12:12 +02:00
{
sum += *(const uint16_t *)buf;
sz -= sizeof(uint16_t);
buf += sizeof(uint16_t);
2018-08-20 21:12:12 +02:00
}
if(sz != 0)
{
uint16_t x = 0;
*(byte_t *)&x = *(const byte_t *)buf;
sum += x;
}
2018-08-20 21:12:12 +02:00
while(sum >> 16)
sum = (sum & 0xFFff) + (sum >> 16);
2018-08-20 21:12:12 +02:00
return ~sum;
}
#endif
static uint16_t
2018-10-10 17:14:45 +02:00
deltachksum(uint16_t old_sum, huint32_t old_src_ip, huint32_t old_dst_ip,
huint32_t new_src_ip, huint32_t new_dst_ip)
{
#define ADDIPCS(x) ((uint32_t)(x.h & 0xFFff) + (uint32_t)(x.h >> 16))
#define SUBIPCS(x) ((uint32_t)((~x.h) & 0xFFff) + (uint32_t)((~x.h) >> 16))
2018-10-10 17:14:45 +02:00
uint32_t sum = ntohs(old_sum) + ADDIPCS(old_src_ip) + ADDIPCS(old_dst_ip)
+ SUBIPCS(new_src_ip) + SUBIPCS(new_dst_ip);
2018-10-10 03:29:44 +02:00
2018-10-09 23:56:20 +02:00
#undef ADDIPCS
#undef SUBIPCS
2018-10-10 03:29:44 +02:00
while(sum >> 16)
sum = (sum & 0xFFff) + (sum >> 16);
2018-10-10 03:29:44 +02:00
return htons(sum);
}
static void
checksumDstTCP(byte_t *pld, size_t psz, size_t fragoff, huint32_t oSrcIP,
huint32_t oDstIP, huint32_t nSrcIP, huint32_t nDstIP)
{
if(fragoff > 16)
return;
uint16_t *check = (uint16_t *)(pld + 16 - fragoff);
*check = deltachksum(*check, oSrcIP, oDstIP, nSrcIP, nDstIP);
}
static void
checksumDstUDP(const ip_header *ohdr, byte_t *pld, size_t psz,
size_t fragoff, huint32_t oSrcIP, huint32_t oDstIP,
huint32_t nSrcIP, huint32_t nDstIP)
{
if(fragoff > 6)
return;
uint16_t *check = (uint16_t *)(pld + 6);
if(*check == 0x0000)
return; // 0 is used to indicate "no checksum", don't change
2018-10-10 04:38:59 +02:00
*check = deltachksum(*check, oSrcIP, oDstIP, nSrcIP, nDstIP);
// 0 is used to indicate "no checksum"
// 0xFFff and 0 are equivalent in one's complement math
// 0xFFff + 1 = 0x10000 -> 0x0001 (same as 0 + 1)
// infact it's impossible to get 0 with such addition
// when starting from non-0 value
// but it's possible to get 0xFFff and we invert after that
// so we still need this fixup check
if(*check == 0x0000)
*check = 0xFFff;
}
void
IPv4Packet::UpdatePacketOnDst(huint32_t nSrcIP, huint32_t nDstIP)
{
auto hdr = Header();
auto oSrcIP = xntohl(nuint32_t{hdr->saddr});
auto oDstIP = xntohl(nuint32_t{hdr->daddr});
2018-10-09 16:09:03 +02:00
// IPv4 checksum
hdr->check = deltachksum(hdr->check, oSrcIP, oDstIP, nSrcIP, nDstIP);
2018-10-09 16:09:03 +02:00
// L4 checksum
auto ihs = size_t(hdr->ihl * 4);
if(ihs <= sz)
{
auto pld = buf + ihs;
auto psz = sz - ihs;
auto fragoff = size_t((ntohs(hdr->frag_off) & 0x1Fff) * 8);
switch(hdr->protocol)
{
case 6:
checksumDstTCP(pld, psz, fragoff, oSrcIP, oDstIP, nSrcIP, nDstIP);
break;
case 17:
checksumDstUDP(hdr, pld, psz, fragoff, oSrcIP, oDstIP, nSrcIP,
nDstIP);
break;
}
}
// write new IP addresses
hdr->saddr = xhtonl(nSrcIP).n;
hdr->daddr = xhtonl(nDstIP).n;
2018-08-20 21:12:12 +02:00
}
2018-10-09 16:09:03 +02:00
static void
checksumSrcTCP(byte_t *pld, size_t psz, size_t fragoff, huint32_t oSrcIP,
huint32_t oDstIP)
{
if(fragoff > 16)
return;
uint16_t *check = (uint16_t *)(pld + 16 - fragoff);
*check = deltachksum(*check, oSrcIP, oDstIP, huint32_t{0}, huint32_t{0});
}
static void
checksumSrcUDP(const ip_header *ohdr, byte_t *pld, size_t psz,
size_t fragoff, huint32_t oSrcIP, huint32_t oDstIP)
{
if(fragoff > 6)
return;
uint16_t *check = (uint16_t *)(pld + 6);
if(*check == 0x0000)
return; // 0 is used to indicate "no checksum", don't change
2018-10-10 04:38:59 +02:00
*check = deltachksum(*check, oSrcIP, oDstIP, huint32_t{0}, huint32_t{0});
// 0 is used to indicate "no checksum"
// 0xFFff and 0 are equivalent in one's complement math
// 0xFFff + 1 = 0x10000 -> 0x0001 (same as 0 + 1)
// infact it's impossible to get 0 with such addition
// when starting from non-0 value
// but it's possible to get 0xFFff and we invert after that
// so we still need this fixup check
if(*check == 0x0000)
*check = 0xFFff;
}
2018-10-09 16:09:03 +02:00
void
IPv4Packet::UpdatePacketOnSrc()
2018-10-09 16:09:03 +02:00
{
auto hdr = Header();
auto oSrcIP = xntohl(nuint32_t{hdr->saddr});
auto oDstIP = xntohl(nuint32_t{hdr->daddr});
// L4
auto ihs = size_t(hdr->ihl * 4);
if(ihs <= sz)
{
auto pld = buf + ihs;
auto psz = sz - ihs;
auto fragoff = size_t((ntohs(hdr->frag_off) & 0x1Fff) * 8);
switch(hdr->protocol)
{
case 6:
checksumSrcTCP(pld, psz, fragoff, oSrcIP, oDstIP);
break;
case 17:
checksumSrcUDP(hdr, pld, psz, fragoff, oSrcIP, oDstIP);
break;
}
}
2018-10-09 16:09:03 +02:00
// IPv4
hdr->check =
deltachksum(hdr->check, oSrcIP, oDstIP, huint32_t{0}, huint32_t{0});
// clear addresses
hdr->saddr = 0;
hdr->daddr = 0;
2018-10-09 16:09:03 +02:00
}
} // namespace net
} // namespace llarp