123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164 |
- /* $Id$ */
- /*
- * Copyright (c) 2001-2010 Aaron Turner <aturner at synfin dot net>
- * Copyright (c) 2013-2018 Fred Klassen <tcpreplay at appneta dot com> - AppNeta
- *
- * The Tcpreplay Suite of tools is free software: you can redistribute it
- * and/or modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or with the authors permission any later version.
- *
- * The Tcpreplay Suite is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with the Tcpreplay Suite. If not, see <http://www.gnu.org/licenses/>.
- */
- #include "config.h"
- #include "defines.h"
- #include "common.h"
- #include "tcpedit.h"
- #include "edit_packet.h"
- #include "checksum.h"
- #include "incremental_checksum.h"
- #include "lib/sll.h"
- #include "dlt.h"
- #include <string.h>
- #include <stdlib.h>
- #include <sys/types.h>
- #include <sys/socket.h>
- #include <netinet/in.h>
- #include <arpa/inet.h>
- static uint32_t randomize_ipv4_addr(tcpedit_t *tcpedit, uint32_t ip);
- static uint32_t remap_ipv4(tcpedit_t *tcpedit, tcpr_cidr_t *cidr, const uint32_t original);
- static int is_unicast_ipv4(tcpedit_t *tcpedit, uint32_t ip);
- static void randomize_ipv6_addr(tcpedit_t *tcpedit, struct tcpr_in6_addr *addr);
- static int remap_ipv6(tcpedit_t *tcpedit, tcpr_cidr_t *cidr, struct tcpr_in6_addr *addr);
- static int is_multicast_ipv6(tcpedit_t *tcpedit, struct tcpr_in6_addr *addr);
- static int ipv6_header_length(ipv6_hdr_t const * ip6_hdr, int pkt_len);
- /**
- * this code re-calcs the IP and Layer 4 checksums
- * the IMPORTANT THING is that the Layer 4 header
- * is contiguous in memory after *ip_hdr we're actually
- * writing to the layer 4 header via the ip_hdr ptr.
- * (Yes, this sucks, but that's the way libnet works, and
- * I was too lazy to re-invent the wheel.
- * Returns 0 on success, -1 on error
- */
- int
- fix_ipv4_checksums(tcpedit_t *tcpedit, struct pcap_pkthdr *pkthdr, ipv4_hdr_t *ip_hdr)
- {
- int ret1 = 0, ret2 = 0, ip_len;
- assert(tcpedit);
- assert(pkthdr);
- assert(ip_hdr);
- if (pkthdr->caplen < sizeof(*ip_hdr)) {
- tcpedit_setwarn(tcpedit, "caplen too small to read IPv4 header: %u",
- pkthdr->caplen);
- return TCPEDIT_WARN;
- }
- if (ip_hdr->ip_v != 4) {
- tcpedit_seterr(tcpedit, "Invalid packet: Expected IPv4 packet: got %u", ip_hdr->ip_v);
- return TCPEDIT_ERROR;
- }
- /* calc the L4 checksum if we have the whole packet && not a frag or first frag */
- if (pkthdr->caplen == pkthdr->len &&
- (htons(ip_hdr->ip_off) & (IP_MF | IP_OFFMASK)) == 0) {
- ip_len = (int)ntohs(ip_hdr->ip_len);
- ret1 = do_checksum(tcpedit, (u_char *) ip_hdr, ip_hdr->ip_p,
- ip_len - (ip_hdr->ip_hl << 2));
- if (ret1 < 0)
- return TCPEDIT_ERROR;
- }
-
- /* calc IP checksum */
- ip_len = (int)ntohs(ip_hdr->ip_len);
- ret2 = do_checksum(tcpedit, (u_char *) ip_hdr, IPPROTO_IP, ip_len);
- if (ret2 < 0)
- return TCPEDIT_ERROR;
- /* what do we return? */
- if (ret1 == TCPEDIT_WARN || ret2 == TCPEDIT_WARN)
- return TCPEDIT_WARN;
-
- return TCPEDIT_OK;
- }
- /**
- * Returns ipv6 header length with all ipv6 options on success
- * -1 on error
- */
- static int
- ipv6_header_length(ipv6_hdr_t const * ip6_hdr, int pkt_len)
- {
- struct tcpr_ipv6_ext_hdr_base const * nhdr;
- uint8_t next_header;
- int offset;
- offset = sizeof(*ip6_hdr);
- next_header = ip6_hdr->ip_nh;
- while (sizeof(*nhdr) + offset < (size_t)pkt_len)
- {
- if (next_header != TCPR_IPV6_NH_HBH
- && next_header != TCPR_IPV6_NH_ROUTING
- && next_header != TCPR_IPV6_NH_FRAGMENT) {
- return offset;
- }
- nhdr = (struct tcpr_ipv6_ext_hdr_base const *) (((uint8_t const *)ip6_hdr) + offset);
- next_header = nhdr->ip_nh;
- offset += ((nhdr->ip_len + 1) << 3);
- }
- return -1;
- }
- int
- fix_ipv6_checksums(tcpedit_t *tcpedit, struct pcap_pkthdr *pkthdr, ipv6_hdr_t *ip6_hdr)
- {
- int ret = 0;
- assert(tcpedit);
- assert(pkthdr);
- assert(ip6_hdr);
- if (pkthdr->caplen < sizeof(*ip6_hdr)) {
- tcpedit_setwarn(tcpedit, "caplen too small to read IPv6 header: %u",
- pkthdr->caplen);
- return TCPEDIT_WARN;
- }
- ipv4_hdr_t *ip_hdr = (ipv4_hdr_t*)ip6_hdr;
- if (ip_hdr->ip_v != 6) {
- tcpedit_seterr(tcpedit, "Invalid packet: Expected IPv6 packet: got %u", ip_hdr->ip_v);
- return TCPEDIT_ERROR;
- }
- /* calc the L4 checksum if we have the whole packet && not a frag or first frag */
- if (pkthdr->caplen == pkthdr->len) {
- if (ip6_hdr->ip_len < ipv6_header_length(ip6_hdr, pkthdr->len)) {
- tcpedit_setwarn(tcpedit, "Unable to checksum IPv6 packet with invalid length %u",
- ip6_hdr->ip_len);
- return TCPEDIT_WARN;
- }
- ret = do_checksum(tcpedit, (u_char *)ip6_hdr, ip6_hdr->ip_nh,
- htons(ip6_hdr->ip_len));
- if (ret < 0)
- return TCPEDIT_ERROR;
- }
- /* what do we return? */
- if (ret == TCPEDIT_WARN)
- return TCPEDIT_WARN;
- return TCPEDIT_OK;
- }
- /*
- * #406 fix IP headers which may be not be set properly due to TCP segmentation
- */
- void fix_ipv4_length(struct pcap_pkthdr *pkthdr, ipv4_hdr_t *ip_hdr)
- {
- if (!ip_hdr->ip_len)
- ip_hdr->ip_len = htons((uint16_t)pkthdr->len);
- }
- void fix_ipv6_length(struct pcap_pkthdr *pkthdr, ipv6_hdr_t *ip6_hdr)
- {
- if (!ip6_hdr->ip_len)
- ip6_hdr->ip_len = htons((uint16_t)pkthdr->len);
- }
- static void ipv4_l34_csum_replace(uint8_t *data, uint8_t protocol,
- uint32_t old, uint32_t new)
- {
- ipv4_hdr_t *ipv4;
- tcp_hdr_t *tcp_hdr;
- udp_hdr_t *udp_hdr;
- assert(data);
- switch (protocol) {
- case IPPROTO_IP:
- ipv4 = (ipv4_hdr_t *)data;
- csum_replace4(&ipv4->ip_sum, old, new);
- break;
- case IPPROTO_TCP:
- tcp_hdr = (tcp_hdr_t *)data;
- csum_replace4(&tcp_hdr->th_sum, old, new);
- break;
- case IPPROTO_UDP:
- udp_hdr = (udp_hdr_t *)data;
- if (udp_hdr->uh_sum)
- csum_replace4(&udp_hdr->uh_sum, old, new);
- break;
- default:
- assert(false);
- }
- }
- static void ipv6_l34_csum_replace(uint8_t *data, uint8_t protocol,
- uint32_t *old, uint32_t *new)
- {
- tcp_hdr_t *tcp_hdr;
- udp_hdr_t *udp_hdr;
- icmpv4_hdr_t *icmp;
- icmpv6_hdr_t *icmp6;
- assert(data);
- switch (protocol) {
- case IPPROTO_TCP:
- tcp_hdr = (tcp_hdr_t *)data;
- csum_replace16(&tcp_hdr->th_sum, old, new);
- break;
- case IPPROTO_UDP:
- udp_hdr = (udp_hdr_t *)data;
- if (udp_hdr->uh_sum)
- csum_replace16(&udp_hdr->uh_sum, old, new);
- break;
- case IPPROTO_ICMP:
- icmp = (icmpv4_hdr_t *)data;
- csum_replace16(&icmp->icmp_sum, old, new);
- break;
- case IPPROTO_ICMP6:
- icmp6 = (icmpv6_hdr_t *)data;
- csum_replace16(&icmp6->icmp_sum, old, new);
- break;
- default:
- assert(false);
- }
- }
- static void ipv4_addr_csum_replace(ipv4_hdr_t *ip_hdr, uint32_t old_ip,
- uint32_t new_ip, const int l3len)
- {
- uint8_t *l4, protocol;
- int len = l3len;
- assert(ip_hdr);
- if ((size_t)len < sizeof(*ip_hdr))
- return;
- ipv4_l34_csum_replace((uint8_t*)ip_hdr, IPPROTO_IP, old_ip, new_ip);
- protocol = ip_hdr->ip_p;
- switch (protocol) {
- case IPPROTO_UDP:
- l4 = get_layer4_v4(ip_hdr, len);
- len -= ip_hdr->ip_hl << 2;
- len -= TCPR_UDP_H;
- break;
- case IPPROTO_TCP:
- l4 = get_layer4_v4(ip_hdr, len);
- len -= ip_hdr->ip_hl << 2;
- len -= TCPR_TCP_H;
- break;
- default:
- l4 = NULL;
- }
- if (!l4 || len < 0)
- return;
- /* if this is a fragment, don't attempt to checksum the Layer4 header */
- if ((htons(ip_hdr->ip_off) & IP_OFFMASK) == 0)
- ipv4_l34_csum_replace(l4, protocol, old_ip, new_ip);
- }
- static void ipv6_addr_csum_replace(ipv6_hdr_t *ip6_hdr,
- struct tcpr_in6_addr *old_ip, struct tcpr_in6_addr *new_ip,
- const int l3len)
- {
- uint8_t *l4, protocol;
- int len = l3len;
- assert(ip6_hdr);
- if ((size_t)len < sizeof(*ip6_hdr))
- return;
- protocol = get_ipv6_l4proto(ip6_hdr, len);
- switch (protocol) {
- case IPPROTO_UDP:
- l4 = get_layer4_v6(ip6_hdr, len);
- len -= sizeof(*ip6_hdr);
- len -= TCPR_UDP_H;
- break;
- case IPPROTO_TCP:
- l4 = get_layer4_v6(ip6_hdr, len);
- len -= sizeof(*ip6_hdr);
- len -= TCPR_TCP_H;
- break;
- default:
- l4 = NULL;
- }
- if (!l4 || len < 0)
- return;
- ipv6_l34_csum_replace(l4, protocol, (uint32_t*)old_ip, (uint32_t*)new_ip);
- }
- /**
- * returns a new 32bit integer which is the randomized IP
- * based upon the user specified seed
- */
- static uint32_t
- randomize_ipv4_addr(tcpedit_t *tcpedit, uint32_t ip)
- {
- assert(tcpedit);
- /* don't rewrite broadcast addresses */
- if (tcpedit->skip_broadcast && !is_unicast_ipv4(tcpedit, ip))
- return ip;
- return ((ip ^ htonl(tcpedit->seed)) - (ip & htonl(tcpedit->seed)));
- }
- static void
- randomize_ipv6_addr(tcpedit_t *tcpedit, struct tcpr_in6_addr *addr)
- {
- uint32_t *p;
- int i;
- u_char was_multicast;
- assert(tcpedit);
- p = &addr->__u6_addr.__u6_addr32[0];
- was_multicast = is_multicast_ipv6(tcpedit, addr);
- for (i = 0; i < 4; ++i) {
- p[i] = ((p[i] ^ htonl(tcpedit->seed)) - (p[i] & htonl(tcpedit->seed)));
- }
- if (was_multicast) {
- addr->tcpr_s6_addr[0] = 0xff;
- } else if (is_multicast_ipv6(tcpedit, addr)) {
- addr->tcpr_s6_addr[0] = 0xaa;
- }
- }
- /**
- * randomizes the source and destination IP addresses based on a
- * pseudo-random number which is generated via the seed.
- * return 1 since we changed one or more IP addresses
- */
- int
- randomize_ipv4(tcpedit_t *tcpedit, struct pcap_pkthdr *pkthdr,
- u_char *pktdata, ipv4_hdr_t *ip_hdr, const int l3len)
- {
- #ifdef DEBUG
- char srcip[16], dstip[16];
- #endif
- assert(tcpedit);
- assert(pkthdr);
- assert(pktdata);
- assert(ip_hdr);
- #ifdef DEBUG
- strlcpy(srcip, get_addr2name4(ip_hdr->ip_src.s_addr, RESOLVE), 16);
- strlcpy(dstip, get_addr2name4(ip_hdr->ip_dst.s_addr, RESOLVE), 16);
- #endif
- /* randomize IP addresses based on the value of random */
- dbgx(1, "Old Src IP: %s\tOld Dst IP: %s", srcip, dstip);
- if (l3len < (int)ip_hdr->ip_hl << 2) {
- tcpedit_seterr(tcpedit, "Unable to randomize IP header due to packet capture snap length %u",
- pkthdr->caplen);
- return TCPEDIT_ERROR;
- }
- /* don't rewrite broadcast addresses */
- if ((tcpedit->skip_broadcast && is_unicast_ipv4(tcpedit, (u_int32_t)ip_hdr->ip_dst.s_addr))
- || !tcpedit->skip_broadcast) {
- uint32_t old_ip = ip_hdr->ip_dst.s_addr;
- ip_hdr->ip_dst.s_addr = randomize_ipv4_addr(tcpedit, ip_hdr->ip_dst.s_addr);
- ipv4_addr_csum_replace(ip_hdr, old_ip, ip_hdr->ip_dst.s_addr, l3len);
- }
-
- if ((tcpedit->skip_broadcast && is_unicast_ipv4(tcpedit, (u_int32_t)ip_hdr->ip_src.s_addr))
- || !tcpedit->skip_broadcast) {
- uint32_t old_ip = ip_hdr->ip_src.s_addr;
- ip_hdr->ip_src.s_addr = randomize_ipv4_addr(tcpedit, ip_hdr->ip_src.s_addr);
- ipv4_addr_csum_replace(ip_hdr, old_ip, ip_hdr->ip_src.s_addr, l3len);
- }
- #ifdef DEBUG
- strlcpy(srcip, get_addr2name4(ip_hdr->ip_src.s_addr, RESOLVE), 16);
- strlcpy(dstip, get_addr2name4(ip_hdr->ip_dst.s_addr, RESOLVE), 16);
- #endif
- dbgx(1, "New Src IP: %s\tNew Dst IP: %s\n", srcip, dstip);
- return 0;
- }
- int
- randomize_ipv6(tcpedit_t *tcpedit, struct pcap_pkthdr *pkthdr,
- u_char *pktdata, ipv6_hdr_t *ip6_hdr, const int l3len)
- {
- #ifdef DEBUG
- char srcip[INET6_ADDRSTRLEN], dstip[INET6_ADDRSTRLEN];
- #endif
- assert(tcpedit);
- assert(pkthdr);
- assert(pktdata);
- assert(ip6_hdr);
- #ifdef DEBUG
- strlcpy(srcip, get_addr2name6(&ip6_hdr->ip_src, RESOLVE), INET6_ADDRSTRLEN);
- strlcpy(dstip, get_addr2name6(&ip6_hdr->ip_dst, RESOLVE), INET6_ADDRSTRLEN);
- #endif
- /* randomize IP addresses based on the value of random */
- dbgx(1, "Old Src IP: %s\tOld Dst IP: %s", srcip, dstip);
- if (l3len < (int)sizeof(ipv6_hdr_t)) {
- tcpedit_seterr(tcpedit, "Unable to randomize IPv6 header due to packet capture snap length %u",
- pkthdr->caplen);
- return TCPEDIT_ERROR;
- }
- /* don't rewrite broadcast addresses */
- if ((tcpedit->skip_broadcast && !is_multicast_ipv6(tcpedit, &ip6_hdr->ip_dst))
- || !tcpedit->skip_broadcast) {
- struct tcpr_in6_addr old_ip6;
- memcpy(&old_ip6, &ip6_hdr->ip_dst, sizeof(old_ip6));
- randomize_ipv6_addr(tcpedit, &ip6_hdr->ip_dst);
- ipv6_addr_csum_replace(ip6_hdr, &old_ip6, &ip6_hdr->ip_dst, l3len);
- }
- if ((tcpedit->skip_broadcast && !is_multicast_ipv6(tcpedit, &ip6_hdr->ip_src))
- || !tcpedit->skip_broadcast) {
- struct tcpr_in6_addr old_ip6;
- memcpy(&old_ip6, &ip6_hdr->ip_src, sizeof(old_ip6));
- randomize_ipv6_addr(tcpedit, &ip6_hdr->ip_src);
- ipv6_addr_csum_replace(ip6_hdr, &old_ip6, &ip6_hdr->ip_src, l3len);
- }
- #ifdef DEBUG
- strlcpy(srcip, get_addr2name6(&ip6_hdr->ip_src, RESOLVE), INET6_ADDRSTRLEN);
- strlcpy(dstip, get_addr2name6(&ip6_hdr->ip_dst, RESOLVE), INET6_ADDRSTRLEN);
- #endif
- dbgx(1, "New Src IP: %s\tNew Dst IP: %s\n", srcip, dstip);
- return 0;
- }
- /**
- * this code will untruncate a packet via padding it with null
- * or resetting the actual IPv4 packet len to the snaplen - L2 header.
- * return 0 if no change, 1 if change, -1 on error.
- */
- int
- untrunc_packet(tcpedit_t *tcpedit, struct pcap_pkthdr *pkthdr,
- u_char **pktdata, ipv4_hdr_t *ip_hdr, ipv6_hdr_t *ip6_hdr)
- {
- int l2len;
- int chksum = 1;
- u_char *packet;
- udp_hdr_t *udp_hdr;
- u_char *dataptr = NULL;
- assert(tcpedit);
- assert(pkthdr);
- assert(pktdata);
- packet = *pktdata;
- assert(packet);
- /* if actual len == cap len or there's no IP header, don't do anything */
- if ((pkthdr->caplen == pkthdr->len) || (ip_hdr == NULL && ip6_hdr == NULL)) {
- /* unless we're in MTU truncate mode */
- if (! tcpedit->mtu_truncate)
- return(0);
- }
-
- if ((l2len = layer2len(tcpedit)) < 0) {
- tcpedit_seterr(tcpedit, "Non-sensical layer 2 length: %d", l2len);
- return -1;
- }
- /*
- * cannot checksum fragments, but we can do some
- * work on UDP fragments. Setting checksum to 0
- * means checksum will be ignored.
- */
- if (ip_hdr) {
- if ((htons(ip_hdr->ip_off) & IP_OFFMASK) != 0) {
- chksum = 0;
- } else if (ip_hdr->ip_p == IPPROTO_UDP &&
- (htons(ip_hdr->ip_off) & IP_MF) != 0) {
- dataptr = (u_char*)ip_hdr;
- dataptr += ip_hdr->ip_hl << 2;
- udp_hdr = (udp_hdr_t*)dataptr;
- udp_hdr->uh_sum = 0;
- chksum = 0;
- }
- }
- /* Pad packet or truncate it */
- if (tcpedit->fixlen == TCPEDIT_FIXLEN_PAD) {
- /*
- * this should be an unnecessary check
- * but I've gotten a report that sometimes the caplen > len
- * which seems like a corrupted pcap
- */
- if (pkthdr->len > pkthdr->caplen) {
- packet = safe_realloc(packet, pkthdr->len + PACKET_HEADROOM);
- memset(packet + pkthdr->caplen, '\0', pkthdr->len - pkthdr->caplen);
- pkthdr->caplen = pkthdr->len;
- } else if (pkthdr->len < pkthdr->caplen) {
- /* i guess this is necessary if we've got a bogus pcap */
- //ip_hdr->ip_len = htons(pkthdr->caplen - l2len);
- tcpedit_seterr(tcpedit, "%s", "WTF? Why is your packet larger then the capture len?");
- chksum = -1;
- goto done;
- }
- }
- else if (tcpedit->fixlen == TCPEDIT_FIXLEN_TRUNC) {
- if (ip_hdr && pkthdr->len != pkthdr->caplen)
- ip_hdr->ip_len = htons(pkthdr->caplen - l2len);
- pkthdr->len = pkthdr->caplen;
- }
- else if (tcpedit->mtu_truncate) {
- if (pkthdr->len > (uint32_t)(tcpedit->mtu + l2len)) {
- /* first truncate the packet */
- pkthdr->len = pkthdr->caplen = l2len + tcpedit->mtu;
-
- /* if ip_hdr exists, update the length */
- if (ip_hdr != NULL) {
- ip_hdr->ip_len = htons(tcpedit->mtu);
- } else if (ip6_hdr != NULL) {
- ip6_hdr->ip_len = htons(tcpedit->mtu - sizeof(*ip6_hdr));
- } else {
- /* for non-IP frames, don't try to fix checksums */
- chksum = 0;
- goto done;
- }
- }
- }
- else {
- tcpedit_seterr(tcpedit, "Invalid fixlen value: 0x%x", tcpedit->fixlen);
- chksum = -1;
- goto done;
- }
- done:
- *pktdata = packet;
- return chksum;
- }
- /**
- * rewrites an IPv4 packet's TTL based on the rules
- * return 0 if no change, 1 if changed
- */
- int
- rewrite_ipv4_ttl(tcpedit_t *tcpedit, ipv4_hdr_t *ip_hdr)
- {
- volatile uint16_t oldval, newval;
- assert(tcpedit);
- /* make sure there's something to edit */
- if (ip_hdr == NULL || tcpedit->ttl_mode == false)
- return(0);
-
- oldval = (uint16_t)ip_hdr->ip_ttl;
- switch(tcpedit->ttl_mode) {
- case TCPEDIT_TTL_MODE_SET:
- if (ip_hdr->ip_ttl == tcpedit->ttl_value)
- return 0; /* no change required */
- ip_hdr->ip_ttl = tcpedit->ttl_value;
- break;
- case TCPEDIT_TTL_MODE_ADD:
- if (((int)ip_hdr->ip_ttl + tcpedit->ttl_value) > 255) {
- ip_hdr->ip_ttl = 255;
- } else {
- ip_hdr->ip_ttl += tcpedit->ttl_value;
- }
- break;
- case TCPEDIT_TTL_MODE_SUB:
- if (ip_hdr->ip_ttl <= tcpedit->ttl_value) {
- ip_hdr->ip_ttl = 1;
- } else {
- ip_hdr->ip_ttl -= tcpedit->ttl_value;
- }
- break;
- default:
- errx(1, "invalid ttl_mode: %d", tcpedit->ttl_mode);
- }
- newval = (uint16_t)ip_hdr->ip_ttl;
- csum_replace2(&ip_hdr->ip_sum, oldval, newval);
- return 0;
- }
- /**
- * rewrites an IPv6 packet's hop limit based on the rules
- * return 0 if no change, 1 if changed
- */
- int
- rewrite_ipv6_hlim(tcpedit_t *tcpedit, ipv6_hdr_t *ip6_hdr)
- {
- assert(tcpedit);
- /* make sure there's something to edit */
- if (ip6_hdr == NULL || tcpedit->ttl_mode == TCPEDIT_TTL_MODE_OFF)
- return(0);
- switch(tcpedit->ttl_mode) {
- case TCPEDIT_TTL_MODE_SET:
- if (ip6_hdr->ip_hl == tcpedit->ttl_value)
- return(0); /* no change required */
- ip6_hdr->ip_hl = tcpedit->ttl_value;
- break;
- case TCPEDIT_TTL_MODE_ADD:
- if (((int)ip6_hdr->ip_hl + tcpedit->ttl_value) > 255) {
- ip6_hdr->ip_hl = 255;
- } else {
- ip6_hdr->ip_hl += tcpedit->ttl_value;
- }
- break;
- case TCPEDIT_TTL_MODE_SUB:
- if (ip6_hdr->ip_hl <= tcpedit->ttl_value) {
- ip6_hdr->ip_hl = 1;
- } else {
- ip6_hdr->ip_hl -= tcpedit->ttl_value;
- }
- break;
- default:
- errx(1, "invalid ttl_mode: %d", tcpedit->ttl_mode);
- }
- return 0;
- }
- /**
- * takes a CIDR notation netblock and uses that to "remap" given IP
- * onto that netblock. ie: 10.0.0.0/8 and 192.168.55.123 -> 10.168.55.123
- * while 10.150.9.0/24 and 192.168.55.123 -> 10.150.9.123
- */
- static uint32_t
- remap_ipv4(tcpedit_t *tcpedit, tcpr_cidr_t *cidr, const uint32_t original)
- {
- uint32_t ipaddr = 0, network = 0, mask = 0, result = 0;
- assert(tcpedit);
- assert(cidr);
-
- if (cidr->family != AF_INET) {
- return 0;
- }
- /* don't rewrite broadcast addresses */
- if (tcpedit->skip_broadcast && !is_unicast_ipv4(tcpedit, original))
- return original;
- mask = 0xffffffff; /* turn on all the bits */
- /* shift over by correct # of bits */
- mask = mask << (32 - cidr->masklen);
- /* apply the mask to the network */
- network = htonl(cidr->u.network) & mask;
- /* apply the reverse of the mask to the IP */
- mask = mask ^ 0xffffffff;
- ipaddr = ntohl(original) & mask;
- /* merge the network portion and ip portions */
- result = network ^ ipaddr;
-
- /* return the result in network byte order */
- return(htonl(result));
- }
- static int
- remap_ipv6(tcpedit_t *tcpedit, tcpr_cidr_t *cidr, struct tcpr_in6_addr *addr)
- {
- uint32_t i, j, k;
- assert(tcpedit);
- assert(cidr);
- if (cidr->family != AF_INET6) {
- return 0;
- }
- /* don't rewrite broadcast addresses */
- if (tcpedit->skip_broadcast && is_multicast_ipv6(tcpedit, addr))
- return 0;
- j = cidr->masklen / 8;
- for (i = 0; i < j; i++)
- addr->tcpr_s6_addr[i] = cidr->u.network6.tcpr_s6_addr[i];
- if ((k = cidr->masklen % 8) == 0)
- return 1;
- k = (uint32_t)~0 << (8 - k);
- i = addr->tcpr_s6_addr[i] & k;
- addr->tcpr_s6_addr[i] = (cidr->u.network6.tcpr_s6_addr[j] & (0xff << (8 - k))) |
- (addr->tcpr_s6_addr[i] & (0xff >> k));
- return 1;
- }
- /**
- * rewrite IP address (layer3)
- * uses -N to rewrite (map) one subnet onto another subnet
- * also support --srcipmap and --dstipmap
- * return 0 if no change, 1 or 2 if changed
- */
- int
- rewrite_ipv4l3(tcpedit_t *tcpedit, ipv4_hdr_t *ip_hdr, tcpr_dir_t direction,
- int len)
- {
- tcpr_cidrmap_t *cidrmap1 = NULL, *cidrmap2 = NULL;
- int didsrc = 0, diddst = 0, loop = 1;
- tcpr_cidrmap_t *ipmap;
- assert(tcpedit);
- assert(ip_hdr);
- /* first check the src/dst IP maps */
- ipmap = tcpedit->srcipmap;
- while (ipmap != NULL) {
- if (ip_in_cidr(ipmap->from, ip_hdr->ip_src.s_addr)) {
- uint32_t old_ip = ip_hdr->ip_src.s_addr;
- ip_hdr->ip_src.s_addr = remap_ipv4(tcpedit, ipmap->to, ip_hdr->ip_src.s_addr);
- ipv4_addr_csum_replace(ip_hdr, old_ip, ip_hdr->ip_src.s_addr, len);
- dbgx(2, "Remapped src addr to: %s", get_addr2name4(ip_hdr->ip_src.s_addr, RESOLVE));
- break;
- }
- ipmap = ipmap->next;
- }
- ipmap = tcpedit->dstipmap;
- while (ipmap != NULL) {
- if (ip_in_cidr(ipmap->from, ip_hdr->ip_dst.s_addr)) {
- uint32_t old_ip = ip_hdr->ip_dst.s_addr;
- ip_hdr->ip_dst.s_addr = remap_ipv4(tcpedit, ipmap->to, ip_hdr->ip_dst.s_addr);
- ipv4_addr_csum_replace(ip_hdr, old_ip, ip_hdr->ip_dst.s_addr, len);
- dbgx(2, "Remapped dst addr to: %s", get_addr2name4(ip_hdr->ip_dst.s_addr, RESOLVE));
- break;
- }
- ipmap = ipmap->next;
- }
- /* anything else to rewrite? */
- if (tcpedit->cidrmap1 == NULL)
- return(0);
- /* don't play with the main pointers */
- if (direction == TCPR_DIR_C2S) {
- cidrmap1 = tcpedit->cidrmap1;
- cidrmap2 = tcpedit->cidrmap2;
- } else {
- cidrmap1 = tcpedit->cidrmap2;
- cidrmap2 = tcpedit->cidrmap1;
- }
-
- /* loop through the cidrmap to rewrite */
- do {
- if ((! diddst) && ip_in_cidr(cidrmap2->from, ip_hdr->ip_dst.s_addr)) {
- uint32_t old_ip = ip_hdr->ip_dst.s_addr;
- ip_hdr->ip_dst.s_addr = remap_ipv4(tcpedit, cidrmap2->to, ip_hdr->ip_dst.s_addr);
- ipv4_addr_csum_replace(ip_hdr, old_ip, ip_hdr->ip_dst.s_addr, len);
- dbgx(2, "Remapped dst addr to: %s", get_addr2name4(ip_hdr->ip_dst.s_addr, RESOLVE));
- diddst = 1;
- }
- if ((! didsrc) && ip_in_cidr(cidrmap1->from, ip_hdr->ip_src.s_addr)) {
- uint32_t old_ip = ip_hdr->ip_src.s_addr;
- ip_hdr->ip_src.s_addr = remap_ipv4(tcpedit, cidrmap1->to, ip_hdr->ip_src.s_addr);
- ipv4_addr_csum_replace(ip_hdr, old_ip, ip_hdr->ip_src.s_addr, len);
- dbgx(2, "Remapped src addr to: %s", get_addr2name4(ip_hdr->ip_src.s_addr, RESOLVE));
- didsrc = 1;
- }
- /*
- * loop while we haven't modified both src/dst AND
- * at least one of the cidr maps have a next pointer
- */
- if ((! (diddst && didsrc)) &&
- (! ((cidrmap1->next == NULL) && (cidrmap2->next == NULL)))) {
- /* increment our ptr's if possible */
- if (cidrmap1->next != NULL)
- cidrmap1 = cidrmap1->next;
- if (cidrmap2->next != NULL)
- cidrmap2 = cidrmap2->next;
- } else {
- loop = 0;
- }
- /* Later on we should support various IP protocols which embed
- * the IP address in the application layer. Things like
- * DNS and FTP.
- */
- } while (loop);
- /* return how many changes we require checksum updates (none) */
- return 0;
- }
- int
- rewrite_ipv6l3(tcpedit_t *tcpedit, ipv6_hdr_t *ip6_hdr, tcpr_dir_t direction,
- int l3len)
- {
- tcpr_cidrmap_t *cidrmap1 = NULL, *cidrmap2 = NULL;
- int didsrc = 0, diddst = 0, loop = 1;
- tcpr_cidrmap_t *ipmap;
- assert(tcpedit);
- assert(ip6_hdr);
- /* first check the src/dst IP maps */
- ipmap = tcpedit->srcipmap;
- while (ipmap != NULL) {
- if (ip6_in_cidr(ipmap->from, &ip6_hdr->ip_src)) {
- struct tcpr_in6_addr old_ip6;
- memcpy(&old_ip6, &ip6_hdr->ip_src, sizeof(old_ip6));
- remap_ipv6(tcpedit, ipmap->to, &ip6_hdr->ip_src);
- ipv6_addr_csum_replace(ip6_hdr, &old_ip6, &ip6_hdr->ip_src, l3len);
- dbgx(2, "Remapped src addr to: %s", get_addr2name6(&ip6_hdr->ip_src, RESOLVE));
- break;
- }
- ipmap = ipmap->next;
- }
- ipmap = tcpedit->dstipmap;
- while (ipmap != NULL) {
- if (ip6_in_cidr(ipmap->from, &ip6_hdr->ip_dst)) {
- struct tcpr_in6_addr old_ip6;
- memcpy(&old_ip6, &ip6_hdr->ip_dst, sizeof(old_ip6));
- remap_ipv6(tcpedit, ipmap->to, &ip6_hdr->ip_dst);
- ipv6_addr_csum_replace(ip6_hdr, &old_ip6, &ip6_hdr->ip_dst, l3len);
- dbgx(2, "Remapped dst addr to: %s", get_addr2name6(&ip6_hdr->ip_dst, RESOLVE));
- break;
- }
- ipmap = ipmap->next;
- }
- /* anything else to rewrite? */
- if (tcpedit->cidrmap1 == NULL)
- return(0);
- /* don't play with the main pointers */
- if (direction == TCPR_DIR_C2S) {
- cidrmap1 = tcpedit->cidrmap1;
- cidrmap2 = tcpedit->cidrmap2;
- } else {
- cidrmap1 = tcpedit->cidrmap2;
- cidrmap2 = tcpedit->cidrmap1;
- }
- /* loop through the cidrmap to rewrite */
- do {
- if ((! diddst) && ip6_in_cidr(cidrmap2->from, &ip6_hdr->ip_dst)) {
- struct tcpr_in6_addr old_ip6;
- memcpy(&old_ip6, &ip6_hdr->ip_dst, sizeof(old_ip6));
- remap_ipv6(tcpedit, cidrmap2->to, &ip6_hdr->ip_dst);
- ipv6_addr_csum_replace(ip6_hdr, &old_ip6, &ip6_hdr->ip_dst, l3len);
- dbgx(2, "Remapped dst addr to: %s", get_addr2name6(&ip6_hdr->ip_dst, RESOLVE));
- diddst = 1;
- }
- if ((! didsrc) && ip6_in_cidr(cidrmap1->from, &ip6_hdr->ip_src)) {
- struct tcpr_in6_addr old_ip6;
- memcpy(&old_ip6, &ip6_hdr->ip_src, sizeof(old_ip6));
- remap_ipv6(tcpedit, cidrmap1->to, &ip6_hdr->ip_src);
- ipv6_addr_csum_replace(ip6_hdr, &old_ip6, &ip6_hdr->ip_src, l3len);
- dbgx(2, "Remapped src addr to: %s", get_addr2name6(&ip6_hdr->ip_src, RESOLVE));
- didsrc = 1;
- }
- /*
- * loop while we haven't modified both src/dst AND
- * at least one of the cidr maps have a next pointer
- */
- if ((! (diddst && didsrc)) &&
- (! ((cidrmap1->next == NULL) && (cidrmap2->next == NULL)))) {
- /* increment our ptr's if possible */
- if (cidrmap1->next != NULL)
- cidrmap1 = cidrmap1->next;
- if (cidrmap2->next != NULL)
- cidrmap2 = cidrmap2->next;
- } else {
- loop = 0;
- }
- /* Later on we should support various IP protocols which embed
- * the IP address in the application layer. Things like
- * DNS and FTP.
- */
- } while (loop);
- /* return how many changes we made (none) */
- return 0;
- }
- /**
- * Randomize the IP addresses in an ARP packet based on the user seed
- * return 0 if no change, or 1 for a change
- */
- int
- randomize_iparp(tcpedit_t *tcpedit, struct pcap_pkthdr *pkthdr,
- u_char *pktdata, int datalink, const int l3len)
- {
- arp_hdr_t *arp_hdr ;
- int l2len;
- #ifdef FORCE_ALIGN
- uint32_t iptemp;
- #endif
- assert(tcpedit);
- assert(pkthdr);
- assert(pktdata);
- if (l3len < (int)sizeof(arp_hdr_t)) {
- tcpedit_seterr(tcpedit, "Unable to randomize ARP packet due to packet capture snap length %u",
- pkthdr->caplen);
- return TCPEDIT_ERROR;
- }
- l2len = get_l2len(pktdata, pkthdr->caplen, datalink);
- arp_hdr = (arp_hdr_t *)(pktdata + l2len);
- /*
- * only rewrite IP addresses from REPLY/REQUEST's
- */
- if ((ntohs(arp_hdr->ar_pro) == ETHERTYPE_IP) &&
- ((ntohs(arp_hdr->ar_op) == ARPOP_REQUEST) ||
- (ntohs(arp_hdr->ar_op) == ARPOP_REPLY))) {
- /* jump to the addresses */
- uint32_t *ip;
- u_char *add_hdr = ((u_char *)arp_hdr) + sizeof(arp_hdr_t) +
- arp_hdr->ar_hln;
- #ifdef FORCE_ALIGN
- /* copy IP to a temporary buffer for processing */
- memcpy(&iptemp, add_hdr, sizeof(uint32_t));
- ip = &iptemp;
- #else
- ip = (uint32_t *)add_hdr;
- #endif
- *ip = randomize_ipv4_addr(tcpedit, *ip);
- #ifdef FORCE_ALIGN
- memcpy(add_hdr, &iptemp, sizeof(uint32_t));
- #endif
- add_hdr += arp_hdr->ar_pln + arp_hdr->ar_hln;
- #ifdef FORCE_ALIGN
- /* copy IP2 to a temporary buffer for processing */
- memcpy(&iptemp, add_hdr, sizeof(uint32_t));
- ip = &iptemp;
- #else
- ip = (uint32_t *)add_hdr;
- #endif
- *ip = randomize_ipv4_addr(tcpedit, *ip);
- #ifdef FORCE_ALIGN
- memcpy(add_hdr, &iptemp, sizeof(uint32_t));
- #endif
- }
- return 1; /* yes we changed the packet */
- }
- /**
- * rewrite IP address (arp)
- * uses -a to rewrite (map) one subnet onto another subnet
- * pointer must point to the WHOLE and CONTIGUOUS memory buffer
- * because the arp_hdr_t doesn't have the space for the IP/MAC
- * addresses
- * return 0 if no change, 1 or 2 if changed
- */
- int
- rewrite_iparp(tcpedit_t *tcpedit, arp_hdr_t *arp_hdr, int cache_mode)
- {
- u_char *add_hdr = NULL;
- uint32_t *ip1 = NULL, *ip2 = NULL;
- uint32_t newip = 0;
- tcpr_cidrmap_t *cidrmap1 = NULL, *cidrmap2 = NULL;
- int didsrc = 0, diddst = 0, loop = 1;
- #ifdef FORCE_ALIGN
- uint32_t iptemp;
- #endif
- assert(tcpedit);
- assert(arp_hdr);
- /* figure out what mapping to use */
- if (cache_mode == TCPR_DIR_C2S) {
- cidrmap1 = tcpedit->cidrmap1;
- cidrmap2 = tcpedit->cidrmap2;
- } else if (cache_mode == TCPR_DIR_S2C) {
- cidrmap1 = tcpedit->cidrmap2;
- cidrmap2 = tcpedit->cidrmap1;
- }
- /* anything to rewrite? */
- if (cidrmap1 == NULL || cidrmap2 == NULL)
- return(0);
- /*
- * must be IPv4 and request or reply
- * Do other op codes use the same subheader stub?
- * If so we won't need to check the op code.
- */
- if ((ntohs(arp_hdr->ar_pro) == ETHERTYPE_IP) &&
- ((ntohs(arp_hdr->ar_op) == ARPOP_REQUEST) ||
- (ntohs(arp_hdr->ar_op) == ARPOP_REPLY)))
- {
- /* jump to the addresses */
- add_hdr = (u_char *)arp_hdr;
- add_hdr += sizeof(arp_hdr_t) + arp_hdr->ar_hln;
- ip1 = (uint32_t *)add_hdr;
- add_hdr += arp_hdr->ar_pln + arp_hdr->ar_hln;
- #ifdef FORCE_ALIGN
- /* copy IP2 to a temporary buffer for processing */
- memcpy(&iptemp, add_hdr, sizeof(uint32_t));
- ip2 = &iptemp;
- #else
- ip2 = (uint32_t *)add_hdr;
- #endif
-
- /* loop through the cidrmap to rewrite */
- do {
- /* arp request ? */
- if (ntohs(arp_hdr->ar_op) == ARPOP_REQUEST) {
- if ((!diddst) && ip_in_cidr(cidrmap2->from, *ip1)) {
- newip = remap_ipv4(tcpedit, cidrmap2->to, *ip1);
- memcpy(ip1, &newip, 4);
- diddst = 1;
- }
- if ((!didsrc) && ip_in_cidr(cidrmap1->from, *ip2)) {
- newip = remap_ipv4(tcpedit, cidrmap1->to, *ip2);
- memcpy(ip2, &newip, 4);
- didsrc = 1;
- }
- }
- /* else it's an arp reply */
- else {
- if ((!diddst) && ip_in_cidr(cidrmap2->from, *ip2)) {
- newip = remap_ipv4(tcpedit, cidrmap2->to, *ip2);
- memcpy(ip2, &newip, 4);
- diddst = 1;
- }
- if ((!didsrc) && ip_in_cidr(cidrmap1->from, *ip1)) {
- newip = remap_ipv4(tcpedit, cidrmap1->to, *ip1);
- memcpy(ip1, &newip, 4);
- didsrc = 1;
- }
- }
- #ifdef FORCE_ALIGN
- /* copy temporary IP to IP2 location in buffer */
- memcpy(add_hdr, &iptemp, sizeof(uint32_t));
- #endif
- /*
- * loop while we haven't modified both src/dst AND
- * at least one of the cidr maps have a next pointer
- */
- if ((! (diddst && didsrc)) &&
- (! ((cidrmap1->next == NULL) && (cidrmap2->next == NULL)))) {
-
- /* increment our ptr's if possible */
- if (cidrmap1->next != NULL)
- cidrmap1 = cidrmap1->next;
-
- if (cidrmap2->next != NULL)
- cidrmap2 = cidrmap2->next;
-
- } else {
- loop = 0;
- }
- } while (loop);
-
- } else {
- warn("ARP packet isn't for IPv4! Can't rewrite IP's");
- }
- return(didsrc + diddst);
- }
- /**
- * returns 1 if the IP address is a unicast address, otherwise, returns 0
- * for broadcast/multicast addresses. Returns -1 on error
- */
- static int
- is_unicast_ipv4(tcpedit_t *tcpedit, uint32_t ip)
- {
- assert(tcpedit);
-
- /* multicast/broadcast is 224.0.0.0 or greater */
- if (ntohl(ip) > 3758096384)
- return 0;
-
- return 1;
- }
- /**
- * returns 1 if the IPv6 address is a multicast address, otherwise, returns 0
- * for unicast/anycast addresses. Returns -1 on error
- */
- static int
- is_multicast_ipv6(tcpedit_t *tcpedit, struct tcpr_in6_addr *addr)
- {
- assert(tcpedit);
- if (addr->tcpr_s6_addr[0] == 0xff)
- return 1;
- return 0;
- }
|