/*************************************************************************** * tcpip.cc -- Various functions relating to low level TCP/IP handling, * * including sending raw packets, routing, printing packets, reading from * * libpcap, etc. * * * ***********************IMPORTANT NMAP LICENSE TERMS************************ * * * The Nmap Security Scanner is (C) 1996-2011 Insecure.Com LLC. Nmap is * * also a registered trademark of Insecure.Com LLC. This program is free * * software; you may redistribute and/or modify it under the terms of the * * GNU General Public License as published by the Free Software * * Foundation; Version 2 with the clarifications and exceptions described * * below. This guarantees your right to use, modify, and redistribute * * this software under certain conditions. If you wish to embed Nmap * * technology into proprietary software, we sell alternative licenses * * (contact sales@insecure.com). Dozens of software vendors already * * license Nmap technology such as host discovery, port scanning, OS * * detection, and version detection. * * * * Note that the GPL places important restrictions on "derived works", yet * * it does not provide a detailed definition of that term. To avoid * * misunderstandings, we consider an application to constitute a * * "derivative work" for the purpose of this license if it does any of the * * following: * * o Integrates source code from Nmap * * o Reads or includes Nmap copyrighted data files, such as * * nmap-os-db or nmap-service-probes. * * o Executes Nmap and parses the results (as opposed to typical shell or * * execution-menu apps, which simply display raw Nmap output and so are * * not derivative works.) * * o Integrates/includes/aggregates Nmap into a proprietary executable * * installer, such as those produced by InstallShield. * * o Links to a library or executes a program that does any of the above * * * * The term "Nmap" should be taken to also include any portions or derived * * works of Nmap. This list is not exclusive, but is meant to clarify our * * interpretation of derived works with some common examples. Our * * interpretation applies only to Nmap--we don't speak for other people's * * GPL works. * * * * If you have any questions about the GPL licensing restrictions on using * * Nmap in non-GPL works, we would be happy to help. As mentioned above, * * we also offer alternative license to integrate Nmap into proprietary * * applications and appliances. These contracts have been sold to dozens * * of software vendors, and generally include a perpetual license as well * * as providing for priority support and updates as well as helping to * * fund the continued development of Nmap technology. Please email * * sales@insecure.com for further information. * * * * As a special exception to the GPL terms, Insecure.Com LLC grants * * permission to link the code of this program with any version of the * * OpenSSL library which is distributed under a license identical to that * * listed in the included docs/licenses/OpenSSL.txt file, and distribute * * linked combinations including the two. You must obey the GNU GPL in all * * respects for all of the code used other than OpenSSL. If you modify * * this file, you may extend this exception to your version of the file, * * but you are not obligated to do so. * * * * If you received these files with a written license agreement or * * contract stating terms other than the terms above, then that * * alternative license agreement takes precedence over these comments. * * * * Source is provided to this software because we believe users have a * * right to know exactly what a program is going to do before they run it. * * This also allows you to audit the software for security holes (none * * have been found so far). * * * * Source code also allows you to port Nmap to new platforms, fix bugs, * * and add new features. You are highly encouraged to send your changes * * to nmap-dev@insecure.org for possible incorporation into the main * * distribution. By sending these changes to Fyodor or one of the * * Insecure.Org development mailing lists, it is assumed that you are * * offering the Nmap Project (Insecure.Com LLC) the unlimited, * * non-exclusive right to reuse, modify, and relicense the code. Nmap * * will always be available Open Source, but this is important because the * * inability to relicense code has caused devastating problems for other * * Free Software projects (such as KDE and NASM). We also occasionally * * relicense the code to third parties as discussed above. If you wish to * * specify special license conditions of your contributions, just say so * * when you send them. * * * * This program 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 v2.0 for more details at * * http://www.gnu.org/licenses/gpl-2.0.html , or in the COPYING file * * included with Nmap. * * * ***************************************************************************/ /* $Id$ */ #ifdef WIN32 #include "nmap_winconfig.h" #endif #include "nbase.h" #include "portreasons.h" #include #include #include "tcpip.h" #include "NmapOps.h" #include "Target.h" #include "utils.h" #if HAVE_SYS_TIME_H #include #endif #if HAVE_UNISTD_H /* #include */ #include #endif #if HAVE_NETINET_IF_ETHER_H #ifndef NETINET_IF_ETHER_H #include #define NETINET_IF_ETHER_H #endif /* NETINET_IF_ETHER_H */ #endif /* HAVE_NETINET_IF_ETHER_H */ extern NmapOps o; #ifdef WIN32 #include "pcap-int.h" #endif static PacketCounter PktCt; /* Fill buf (up to buflen -- truncate if necessary but always terminate) with a short representation of the packet stats. Returns buf. Aborts if there is a problem. */ char *getFinalPacketStats(char *buf, int buflen) { char sendbytesasc[16], recvbytesasc[16]; if (buflen <= 10 || !buf) fatal("%s called with woefully inadequate parameters", __func__); Snprintf(buf, buflen, #if WIN32 "Raw packets sent: %I64u (%s) | Rcvd: %I64u (%s)", #else "Raw packets sent: %llu (%s) | Rcvd: %llu (%s)", #endif PktCt.sendPackets, format_bytecount(PktCt.sendBytes, sendbytesasc, sizeof(sendbytesasc)), PktCt.recvPackets, format_bytecount(PktCt.recvBytes, recvbytesasc, sizeof(recvbytesasc))); return buf; } /* Takes an ARP PACKET (not including ethernet header) and prints it if packet tracing is enabled. The direction must be PacketTrace::SENT or PacketTrace::RCVD . Optional 'now' argument makes this function slightly more efficient by avoiding a gettimeofday() call. */ void PacketTrace::traceArp(pdirection pdir, const u8 *frame, u32 len, struct timeval *now) { struct timeval tv; char arpdesc[128]; char who_has[INET_ADDRSTRLEN], tell[INET_ADDRSTRLEN]; if (pdir == SENT) { PktCt.sendPackets++; PktCt.sendBytes += len; } else { PktCt.recvPackets++; PktCt.recvBytes += len; } if (!o.packetTrace()) return; if (now) tv = *now; else gettimeofday(&tv, NULL); if (len < 28) { error("Packet tracer: Arp packets must be at least 28 bytes long. Should be exactly that length excl. ethernet padding."); return; } if (frame[7] == 1) { /* arp REQUEST */ inet_ntop(AF_INET, frame + 24, who_has, sizeof(who_has)); inet_ntop(AF_INET, frame + 14, tell, sizeof(tell)); Snprintf(arpdesc, sizeof(arpdesc), "who-has %s tell %s", who_has, tell); } else { /* ARP REPLY */ inet_ntop(AF_INET, frame + 14, who_has, sizeof(who_has)); Snprintf(arpdesc, sizeof(arpdesc), "reply %s is-at %02X:%02X:%02X:%02X:%02X:%02X", who_has, frame[8], frame[9], frame[10], frame[11], frame[12], frame[13]); } log_write(LOG_STDOUT | LOG_NORMAL, "%s (%.4fs) ARP %s\n", (pdir == SENT) ? "SENT" : "RCVD", o.TimeSinceStartMS(&tv) / 1000.0, arpdesc); return; } /* Returns a buffer of ASCII information about a packet that may look like "TCP 127.0.0.1:50923 > 127.0.0.1:3 S ttl=61 id=39516 iplen=40 seq=625950769" or "ICMP PING (0/1) ttl=61 id=39516 iplen=40". IMPORTANT: This is a wrapper for function ippackethdrinfo(). Check nbase/nbase_net.c for details on the returned buffer. */ static const char *nmap_format_ippacket(const u8 *packet, u32 len) { int detail=LOW_DETAIL; if(o.debugging==2){ detail=MEDIUM_DETAIL; }else if(o.debugging>=3){ detail=HIGH_DETAIL; } return ippackethdrinfo(packet, len, detail); } /* Takes an IP PACKET and prints it if packet tracing is enabled. 'packet' must point to the IPv4 header. The direction must be PacketTrace::SENT or PacketTrace::RCVD . Optional 'now' argument makes this function slightly more efficient by avoiding a gettimeofday() call. */ void PacketTrace::trace(pdirection pdir, const u8 *packet, u32 len, struct timeval *now) { struct timeval tv; if (pdir == SENT) { PktCt.sendPackets++; PktCt.sendBytes += len; } else { PktCt.recvPackets++; PktCt.recvBytes += len; } if (!o.packetTrace()) return; if (now) tv = *now; else gettimeofday(&tv, NULL); if (len < 20) { error("Packet tracer: tiny packet encountered"); return; } log_write(LOG_STDOUT | LOG_NORMAL, "%s (%.4fs) %s\n", (pdir == SENT) ? "SENT" : "RCVD", o.TimeSinceStartMS(&tv) / 1000.0, nmap_format_ippacket(packet, len)); return; } /* Adds a trace entry when a connect() is attempted if packet tracing is enabled. Pass IPPROTO_TCP or IPPROTO_UDP as the protocol. The sock may be a sockaddr_in or sockaddr_in6. The return code of connect is passed in connectrc. If the return code is -1, get the errno and pass that as connect_errno. */ void PacketTrace::traceConnect(u8 proto, const struct sockaddr *sock, int socklen, int connectrc, int connect_errno, const struct timeval *now) { struct sockaddr_in *sin = (struct sockaddr_in *) sock; #if HAVE_IPV6 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) sock; #endif struct timeval tv; char errbuf[64] = ""; char targetipstr[INET6_ADDRSTRLEN] = ""; u16 targetport = 0; if (!o.packetTrace()) return; if (now) tv = *now; else gettimeofday(&tv, NULL); assert(proto == IPPROTO_TCP || proto == IPPROTO_UDP); if (connectrc == 0) { Strncpy(errbuf, "Connected", sizeof(errbuf)); } #if WIN32 else if (connect_errno == WSAEWOULDBLOCK) { /* Special case for WSAEWOULDBLOCK. socket_strerror returns the unwieldy "A non-blocking socket operation could not be completed immediately." */ Strncpy(errbuf, "Operation now in progress", sizeof(errbuf)); } #endif else { Snprintf(errbuf, sizeof(errbuf), "%s", socket_strerror(connect_errno)); } if (sin->sin_family == AF_INET) { if (inet_ntop(sin->sin_family, (char *) &sin->sin_addr, targetipstr, sizeof(targetipstr)) == NULL) fatal("Failed to convert target IPv4 address to presentation format!?!"); targetport = ntohs(sin->sin_port); } else { #if HAVE_IPV6 assert(sin->sin_family == AF_INET6); if (inet_ntop(sin->sin_family, (char *) &sin6->sin6_addr, targetipstr, sizeof(targetipstr)) == NULL) fatal("Failed to convert target IPv6 address to presentation format!?!"); targetport = ntohs(sin6->sin6_port); #else assert(0); #endif } log_write(LOG_STDOUT | LOG_NORMAL, "CONN (%.4fs) %s localhost > %s:%d => %s\n", o.TimeSinceStartMS(&tv) / 1000.0, (proto == IPPROTO_TCP) ? "TCP" : "UDP", targetipstr, targetport, errbuf); } /* Converts an IP address given in a sockaddr_storage to an IPv4 or IPv6 IP address string. Since a static buffer is returned, this is not thread-safe and can only be used once in calls like printf() */ const char *inet_socktop(struct sockaddr_storage *ss) { static char buf[INET6_ADDRSTRLEN]; struct sockaddr_in *sin = (struct sockaddr_in *) ss; #if HAVE_IPV6 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) ss; #endif if (inet_ntop(sin->sin_family, (sin->sin_family == AF_INET) ? (char *) &sin->sin_addr : #if HAVE_IPV6 (char *) &sin6->sin6_addr, #else (char *) NULL, #endif /* HAVE_IPV6 */ buf, sizeof(buf)) == NULL) { fatal("Failed to convert target address to presentation format in %s!?! Error: %s", __func__, strerror(socket_errno())); } return buf; } /* Tries to resolve the given name (or literal IP) into a sockaddr structure. This function calls getaddrinfo and returns the same addrinfo linked list that getaddrinfo produces. Returns NULL for any error or failure to resolve. You need to call freeaddrinfo on the result if non-NULL. */ struct addrinfo *resolve_all(char *hostname, int pf) { struct addrinfo hints; struct addrinfo *result; int rc; memset(&hints, 0, sizeof(hints)); hints.ai_family = pf; /* Otherwise we get multiple identical addresses with different socktypes. */ hints.ai_socktype = SOCK_DGRAM; rc = getaddrinfo(hostname, NULL, &hints, &result); if (rc != 0) return NULL; return result; } // fill ip header. no error check. // This function is also changing what's needed from host to network order. static inline int fill_ip_raw(struct ip *ip, int packetlen, const u8 *ipopt, int ipoptlen, int ip_tos, int ip_id, int ip_off, int ip_ttl, int ip_p, const struct in_addr *ip_src, const struct in_addr *ip_dst) { ip->ip_v = 4; ip->ip_hl = 5 + (ipoptlen / 4); ip->ip_tos = ip_tos; ip->ip_len = htons(packetlen); ip->ip_id = htons(ip_id); ip->ip_off = htons(ip_off); ip->ip_ttl = ip_ttl; ip->ip_p = ip_p; ip->ip_src.s_addr = ip_src->s_addr; ip->ip_dst.s_addr = ip_dst->s_addr; if (ipoptlen) memcpy((u8 *) ip + sizeof(struct ip), ipopt, ipoptlen); // ip options source routing hack: if (ipoptlen && o.ipopt_firsthop && o.ipopt_lasthop) { u8 *ipo = (u8 *) ip + sizeof(struct ip); struct in_addr *newdst = (struct in_addr *) &ipo[o.ipopt_firsthop]; struct in_addr *olddst = (struct in_addr *) &ipo[o.ipopt_lasthop]; // our destination is somewhere else :) ip->ip_dst.s_addr = newdst->s_addr; // and last hop should be destination olddst->s_addr = ip_dst->s_addr; } #if HAVE_IP_IP_SUM ip->ip_sum = 0; ip->ip_sum = in_cksum((unsigned short *) ip, sizeof(struct ip) + ipoptlen); #endif return (sizeof(struct ip) + ipoptlen); } int send_tcp_raw_decoys(int sd, struct eth_nfo *eth, const struct in_addr *victim, int ttl, bool df, u8 *ipopt, int ipoptlen, u16 sport, u16 dport, u32 seq, u32 ack, u8 reserved, u8 flags, u16 window, u16 urp, u8 *options, int optlen, char *data, u16 datalen) { int decoy; for (decoy = 0; decoy < o.numdecoys; decoy++) if (send_tcp_raw(sd, eth, &o.decoys[decoy], victim, ttl, df, ipopt, ipoptlen, sport, dport, seq, ack, reserved, flags, window, urp, options, optlen, data, datalen) == -1) return -1; return 0; } /* Builds a TCP packet (including an IP header) by packing the fields with the given information. It allocates a new buffer to store the packet contents, and then returns that buffer. The packet is not actually sent by this function. Caller must delete the buffer when finished with the packet. The packet length is returned in packetlen, which must be a valid int pointer. */ u8 *build_tcp_raw(const struct in_addr *source, const struct in_addr *victim, int ttl, u16 ipid, u8 tos, bool df, const u8 *ipopt, int ipoptlen, u16 sport, u16 dport, u32 seq, u32 ack, u8 reserved, u8 flags, u16 window, u16 urp, const u8 *tcpopt, int tcpoptlen, char *data, u16 datalen, u32 *outpacketlen) { int packetlen = sizeof(struct ip) + ipoptlen + sizeof(struct tcp_hdr) + tcpoptlen + datalen; u8 *packet = (u8 *) safe_malloc(packetlen); struct ip *ip = (struct ip *) packet; struct tcp_hdr *tcp = (struct tcp_hdr *) ((u8 *) ip + sizeof(struct ip) + ipoptlen); static int myttl = 0; assert(victim); assert(source); assert(ipoptlen % 4 == 0); if (tcpoptlen % 4) fatal("%s() called with an option length argument of %d which is illegal because it is not divisible by 4. Just add \\0 padding to the end.", __func__, tcpoptlen); /* Time to live */ if (ttl == -1) { myttl = (get_random_uint() % 23) + 37; } else { myttl = ttl; } /* Fill tcp header */ memset(tcp, 0, sizeof(struct tcp_hdr)); tcp->th_sport = htons(sport); tcp->th_dport = htons(dport); if (seq) { tcp->th_seq = htonl(seq); } else if (flags & TH_SYN) { get_random_bytes(&(tcp->th_seq), 4); } if (ack) tcp->th_ack = htonl(ack); if (reserved) tcp->th_x2 = reserved & 0x0F; tcp->th_off = 5 + (tcpoptlen / 4) /*words */ ; tcp->th_flags = flags; if (window) tcp->th_win = htons(window); else tcp->th_win = htons(1024 * (myttl % 4 + 1)); /* Who cares */ /* Urgent pointer */ if (urp) tcp->th_urp = htons(urp); /* And the options */ if (tcpoptlen) memcpy((u8 *) tcp + sizeof(struct tcp_hdr), tcpopt, tcpoptlen); /* We should probably copy the data over too */ if (data && datalen) memcpy((u8 *) tcp + sizeof(struct tcp_hdr) + tcpoptlen, data, datalen); #if STUPID_SOLARIS_CHECKSUM_BUG tcp->th_sum = sizeof(struct tcp_hdr) + tcpoptlen + datalen; #else tcp->th_sum = tcpudp_cksum(source, victim, IPPROTO_TCP, sizeof(struct tcp_hdr) + tcpoptlen + datalen, (char *) tcp); #endif if (o.badsum) --tcp->th_sum; fill_ip_raw(ip, packetlen, ipopt, ipoptlen, tos, ipid, df ? IP_DF : 0, myttl, IPPROTO_TCP, source, victim); *outpacketlen = packetlen; return packet; } /* You need to call sethdrinclude(sd) on the sending sd before calling this */ int send_tcp_raw(int sd, struct eth_nfo *eth, const struct in_addr *source, const struct in_addr *victim, int ttl, bool df, u8 *ipops, int ipoptlen, u16 sport, u16 dport, u32 seq, u32 ack, u8 reserved, u8 flags, u16 window, u16 urp, u8 *options, int optlen, char *data, u16 datalen) { unsigned int packetlen; int res = -1; u8 *packet = build_tcp_raw(source, victim, ttl, get_random_u16(), IP_TOS_DEFAULT, df, ipops, ipoptlen, sport, dport, seq, ack, reserved, flags, window, urp, options, optlen, data, datalen, &packetlen); if (!packet) return -1; res = send_ip_packet(sd, eth, packet, packetlen); free(packet); return res; } /* Send a pre-built IPv4 packet. Handles fragmentation and whether to send with an ethernet handle or a socket. */ int send_ip_packet(int sd, struct eth_nfo *eth, u8 *packet, unsigned int packetlen) { struct ip *ip = (struct ip *) packet; int res; assert(packet); assert((int) packetlen > 0); /* Fragmentation requested && packet is bigger than MTU */ if(o.fragscan && !(ntohs(ip->ip_off) & IP_DF) && (packetlen - ip->ip_hl * 4 > (unsigned int) o.fragscan)){ res = send_frag_ip_packet(sd, eth, packet, packetlen, o.fragscan); }else{ res = send_ip_packet_eth_or_sd(sd, eth, packet, packetlen); } if (res != -1) PacketTrace::trace(PacketTrace::SENT, packet, packetlen); return res; } /* Builds an ICMP packet (including an IP header) by packing the fields with the given information. It allocates a new buffer to store the packet contents, and then returns that buffer. The packet is not actually sent by this function. Caller must delete the buffer when finished with the packet. The packet length is returned in packetlen, which must be a valid int pointer. The id/seq will be converted to network byte order (if it differs from HBO) */ u8 *build_icmp_raw(const struct in_addr *source, const struct in_addr *victim, int ttl, u16 ipid, u8 tos, bool df, u8 *ipopt, int ipoptlen, u16 seq, unsigned short id, u8 ptype, u8 pcode, char *data, u16 datalen, u32 *packetlen) { struct ppkt { u8 type; u8 code; u16 checksum; u16 id; u16 seq; u8 data[1500]; /* Note -- first 4-12 bytes can be used for ICMP header */ } pingpkt; u8 *datastart = pingpkt.data; /* dlen is the amount of space remaining in the data buffer; it may be reduced depending on type. */ int dlen = sizeof(pingpkt.data); int icmplen = 0; char *ping = (char *) &pingpkt; pingpkt.type = ptype; pingpkt.code = pcode; if (ptype == 8) { /* echo request */ icmplen = 8; } else if (ptype == 13 && pcode == 0) { /* ICMP timestamp req */ icmplen = 20; memset(datastart, 0, 12); datastart += 12; dlen -= 12; } else if (ptype == 17 && pcode == 0) { /* icmp netmask req */ icmplen = 12; memset(datastart, 0, 4); datastart += 4; dlen -= 4; } else { fatal("Unknown icmp type/code (%d/%d) in %s", ptype, pcode, __func__); } if (datalen > 0) { icmplen += MIN(dlen, datalen); memset(datastart, 0, MIN(dlen, datalen)); } /* Fill out the ping packet. All the ICMP types handled by this function have the id and seq fields. */ pingpkt.id = htons(id); pingpkt.seq = htons(seq); pingpkt.checksum = 0; pingpkt.checksum = in_cksum((unsigned short *) ping, icmplen); if (o.badsum) --pingpkt.checksum; return build_ip_raw(source, victim, IPPROTO_ICMP, ttl, ipid, tos, df, ipopt, ipoptlen, ping, icmplen, packetlen); } /* Builds an IGMP packet (including an IP header) by packing the fields with the given information. It allocates a new buffer to store the packet contents, and then returns that buffer. The packet is not actually sent by this function. Caller must delete the buffer when finished with the packet. The packet length is returned in packetlen, which must be a valid int pointer. */ u8 *build_igmp_raw(const struct in_addr *source, const struct in_addr *victim, int ttl, u16 ipid, u8 tos, bool df, u8 *ipopt, int ipoptlen, u8 ptype, u8 pcode, char *data, u16 datalen, u32 *packetlen) { struct { u8 igmp_type; u8 igmp_code; u16 igmp_cksum; u32 var; /* changes between types, unused. usually group address. */ u8 data[1500]; } igmp; u32 *datastart = (u32 *) igmp.data; int dlen = sizeof(igmp.data); int igmplen = 0; char *pkt = (char *) &igmp; igmp.igmp_type = ptype; igmp.igmp_code = pcode; if (ptype == 0x11) { /* Membership Query */ igmplen = 8; } else if (ptype == 0x12) { /* v1 Membership Report */ igmplen = 8; } else if (ptype == 0x16) { /* v2 Membership Report */ igmplen = 8; } else if (ptype == 0x17) { /* v2 Leave Group */ igmplen = 8; } else if (ptype == 0x22) { /* v3 Membership Report */ igmplen = 8; } else { fatal("Unknown igmp type (%d) in %s", ptype, __func__); } if (datalen > 0) { igmplen += MIN(dlen, datalen); memset(datastart, 0, MIN(dlen, datalen)); } igmp.igmp_cksum = 0; igmp.igmp_cksum = in_cksum((unsigned short *) pkt, igmplen); if (o.badsum) --igmp.igmp_cksum; return build_ip_raw(source, victim, IPPROTO_IGMP, ttl, ipid, tos, df, ipopt, ipoptlen, pkt, igmplen, packetlen); } /* A simple function I wrote to help in debugging, shows the important fields of a TCP packet*/ int readtcppacket(const u8 *packet, int readdata) { struct ip *ip = (struct ip *) packet; struct tcp_hdr *tcp = (struct tcp_hdr *) (packet + sizeof(struct ip)); const unsigned char *data = packet + sizeof(struct ip) + sizeof(struct tcp_hdr); int tot_len; struct in_addr bullshit, bullshit2; char sourcehost[16]; int i; int realfrag = 0; if (!packet) { error("%s: packet is NULL!", __func__); return -1; } bullshit.s_addr = ip->ip_src.s_addr; bullshit2.s_addr = ip->ip_dst.s_addr; /* this is gay */ realfrag = htons(ntohs(ip->ip_off) & IP_OFFMASK); tot_len = htons(ip->ip_len); strncpy(sourcehost, inet_ntoa(bullshit), 16); i = 4 * (ntohs(ip->ip_hl) + ntohs(tcp->th_off)); if (ip->ip_p == IPPROTO_TCP) { if (realfrag) log_write(LOG_PLAIN, "Packet is fragmented, offset field: %u\n", realfrag); else { log_write(LOG_PLAIN, "TCP packet: %s:%d -> %s:%d (total: %d bytes)\n", sourcehost, ntohs(tcp->th_sport), inet_ntoa(bullshit2), ntohs(tcp->th_dport), tot_len); log_write(LOG_PLAIN, "Flags: "); if (!tcp->th_flags) log_write(LOG_PLAIN, "(none)"); if (tcp->th_flags & TH_RST) log_write(LOG_PLAIN, "RST "); if (tcp->th_flags & TH_SYN) log_write(LOG_PLAIN, "SYN "); if (tcp->th_flags & TH_ACK) log_write(LOG_PLAIN, "ACK "); if (tcp->th_flags & TH_PUSH) log_write(LOG_PLAIN, "PSH "); if (tcp->th_flags & TH_FIN) log_write(LOG_PLAIN, "FIN "); if (tcp->th_flags & TH_URG) log_write(LOG_PLAIN, "URG "); log_write(LOG_PLAIN, "\n"); log_write(LOG_PLAIN, "ipid: %hu ttl: %hu ", ntohs(ip->ip_id), ip->ip_ttl); if (tcp->th_flags & (TH_SYN | TH_ACK)) log_write(LOG_PLAIN, "Seq: %u\tAck: %u\n", (unsigned int) ntohl(tcp->th_seq), (unsigned int) ntohl(tcp->th_ack)); else if (tcp->th_flags & TH_SYN) log_write(LOG_PLAIN, "Seq: %u\n", (unsigned int) ntohl(tcp->th_seq)); else if (tcp->th_flags & TH_ACK) log_write(LOG_PLAIN, "Ack: %u\n", (unsigned int) ntohl(tcp->th_ack)); } } if (readdata && i < tot_len) { log_write(LOG_PLAIN, "Data portion:\n"); while (i < tot_len) { log_write(LOG_PLAIN, "%2X%c", data[i], ((i + 1) % 16) ? ' ' : '\n'); i++; } log_write(LOG_PLAIN, "\n"); } return 0; } /* A simple function I wrote to help in debugging, shows the important fields of a UDP packet*/ int readudppacket(const u8 *packet, int readdata) { struct ip *ip = (struct ip *) packet; struct udp_hdr *udp = (struct udp_hdr *) (packet + sizeof(struct ip)); const unsigned char *data = packet + sizeof(struct ip) + sizeof(struct udp_hdr); int tot_len; struct in_addr bullshit, bullshit2; char sourcehost[16]; int i; int realfrag = 0; if (!packet) { error("%s: packet is NULL!", __func__); return -1; } bullshit.s_addr = ip->ip_src.s_addr; bullshit2.s_addr = ip->ip_dst.s_addr; /* this is gay */ realfrag = htons(ntohs(ip->ip_off) & IP_OFFMASK); tot_len = htons(ip->ip_len); strncpy(sourcehost, inet_ntoa(bullshit), 16); i = 4 * (ntohs(ip->ip_hl)) + 8; if (ip->ip_p == IPPROTO_UDP) { if (realfrag) log_write(LOG_PLAIN, "Packet is fragmented, offset field: %u\n", realfrag); else { log_write(LOG_PLAIN, "UDP packet: %s:%d -> %s:%d (total: %d bytes)\n", sourcehost, ntohs(udp->uh_sport), inet_ntoa(bullshit2), ntohs(udp->uh_dport), tot_len); log_write(LOG_PLAIN, "ttl: %hu ", ip->ip_ttl); } } if (readdata && i < tot_len) { log_write(LOG_PLAIN, "Data portion:\n"); while (i < tot_len) { log_write(LOG_PLAIN, "%2X%c", data[i], ((i + 1) % 16) ? ' ' : '\n'); i++; } log_write(LOG_PLAIN, "\n"); } return 0; } int send_udp_raw_decoys(int sd, struct eth_nfo *eth, const struct in_addr *victim, int ttl, u16 ipid, u8 *ipops, int ipoptlen, u16 sport, u16 dport, char *data, u16 datalen) { int decoy; for (decoy = 0; decoy < o.numdecoys; decoy++) if (send_udp_raw(sd, eth, &o.decoys[decoy], victim, ttl, ipid, ipops, ipoptlen, sport, dport, data, datalen) == -1) return -1; return 0; } /* Builds a UDP packet (including an IP header) by packing the fields with the given information. It allocates a new buffer to store the packet contents, and then returns that buffer. The packet is not actually sent by this function. Caller must delete the buffer when finished with the packet. The packet length is returned in packetlen, which must be a valid int pointer. */ u8 *build_udp_raw(const struct in_addr *source, const struct in_addr *victim, int ttl, u16 ipid, u8 tos, bool df, u8 *ipopt, int ipoptlen, u16 sport, u16 dport, const char *data, u16 datalen, u32 *outpacketlen) { int packetlen = sizeof(struct ip) + ipoptlen + sizeof(struct udp_hdr) + datalen; u8 *packet = (u8 *) safe_malloc(packetlen); struct ip *ip = (struct ip *) packet; struct udp_hdr *udp = (struct udp_hdr *) ((u8 *) ip + sizeof(struct ip) + ipoptlen); static int myttl = 0; /* check that required fields are there and not too silly */ assert(victim); assert(source); assert(ipoptlen % 4 == 0); /* Time to live */ if (ttl == -1) { myttl = (get_random_uint() % 23) + 37; } else { myttl = ttl; } udp->uh_sport = htons(sport); udp->uh_dport = htons(dport); udp->uh_sum = 0; udp->uh_ulen = htons(sizeof(struct udp_hdr) + datalen); /* We should probably copy the data over too */ if (data) memcpy((u8 *) udp + sizeof(struct udp_hdr), data, datalen); /* OK, now we should be able to compute a valid checksum */ #if STUPID_SOLARIS_CHECKSUM_BUG udp->uh_sum = sizeof(struct udp_hdr) + datalen; #else udp->uh_sum = tcpudp_cksum(source, victim, IPPROTO_UDP, sizeof(struct udp_hdr) + datalen, (char *) udp); #endif if (o.badsum) { --udp->uh_sum; if (udp->uh_sum == 0) udp->uh_sum = 0xffff; // UDP checksum=0 means no checksum } fill_ip_raw(ip, packetlen, ipopt, ipoptlen, tos, ipid, df ? IP_DF : 0, myttl, IPPROTO_UDP, source, victim); *outpacketlen = packetlen; return packet; } int send_udp_raw(int sd, struct eth_nfo *eth, struct in_addr *source, const struct in_addr *victim, int ttl, u16 ipid, u8 *ipopt, int ipoptlen, u16 sport, u16 dport, char *data, u16 datalen) { unsigned int packetlen; int res = -1; u8 *packet = build_udp_raw(source, victim, ttl, ipid, IP_TOS_DEFAULT, false, ipopt, ipoptlen, sport, dport, data, datalen, &packetlen); if (!packet) return -1; res = send_ip_packet(sd, eth, packet, packetlen); free(packet); return res; } /* Builds an SCTP packet (including an IP header) by packing the fields with the given information. It allocates a new buffer to store the packet contents, and then returns that buffer. The packet is not actually sent by this function. Caller must delete the buffer when finished with the packet. The packet length is returned in packetlen, which must be a valid int pointer. */ u8 *build_sctp_raw(const struct in_addr *source, const struct in_addr *victim, int ttl, u16 ipid, u8 tos, bool df, u8 *ipopt, int ipoptlen, u16 sport, u16 dport, u32 vtag, char *chunks, int chunkslen, char *data, u16 datalen, u32 *outpacketlen) { int packetlen = sizeof(struct ip) + ipoptlen + sizeof(struct sctp_hdr) + chunkslen + datalen; u8 *packet = (u8 *) safe_malloc(packetlen); struct ip *ip = (struct ip *) packet; struct sctp_hdr *sctp = (struct sctp_hdr *) ((u8 *) ip + sizeof(struct ip) + ipoptlen); static int myttl = 0; /* check that required fields are there and not too silly */ assert(victim); assert(source); assert(ipoptlen % 4 == 0); /* Time to live */ if (ttl == -1) { myttl = (get_random_uint() % 23) + 37; } else { myttl = ttl; } sctp->sh_sport = htons(sport); sctp->sh_dport = htons(dport); sctp->sh_sum = 0; sctp->sh_vtag = htonl(vtag); if (chunks) memcpy((u8 *) sctp + sizeof(struct sctp_hdr), chunks, chunkslen); if (data) memcpy((u8 *) sctp + sizeof(struct sctp_hdr) + chunkslen, data, datalen); /* RFC 2960 originally defined Adler32 checksums, which was later * revised to CRC32C in RFC 3309 and RFC 4960 respectively. * Nmap uses CRC32C by default, unless --adler32 is given. */ if (o.adler32) sctp->sh_sum = htonl(nbase_adler32((unsigned char *) sctp, sizeof(struct sctp_hdr) + chunkslen + datalen)); else sctp->sh_sum = htonl(nbase_crc32c((unsigned char *) sctp, sizeof(struct sctp_hdr) + chunkslen + datalen)); if (o.badsum) --sctp->sh_sum; fill_ip_raw(ip, packetlen, ipopt, ipoptlen, tos, ipid, df ? IP_DF : 0, myttl, IPPROTO_SCTP, source, victim); *outpacketlen = packetlen; return packet; } /* Builds an IP packet (including an IP header) by packing the fields with the given information. It allocates a new buffer to store the packet contents, and then returns that buffer. The packet is not actually sent by this function. Caller must delete the buffer when finished with the packet. The packet length is returned in packetlen, which must be a valid int pointer. */ u8 *build_ip_raw(const struct in_addr *source, const struct in_addr *victim, u8 proto, int ttl, u16 ipid, u8 tos, bool df, u8 *ipopt, int ipoptlen, char *data, u16 datalen, u32 *outpacketlen) { int packetlen = sizeof(struct ip) + ipoptlen + datalen; u8 *packet = (u8 *) safe_malloc(packetlen); struct ip *ip = (struct ip *) packet; static int myttl = 0; /* check that required fields are there and not too silly */ assert(source); assert(victim); assert(ipoptlen % 4 == 0); /* Time to live */ if (ttl == -1) { myttl = (get_random_uint() % 23) + 37; } else { myttl = ttl; } fill_ip_raw(ip, packetlen, ipopt, ipoptlen, tos, ipid, df ? IP_DF : 0, myttl, proto, source, victim); /* We should probably copy the data over too */ if (data) memcpy((u8 *) ip + sizeof(struct ip) + ipoptlen, data, datalen); *outpacketlen = packetlen; return packet; } /* You need to call sethdrinclude(sd) on the sending sd before calling this */ int send_ip_raw(int sd, struct eth_nfo *eth, struct in_addr *source, const struct in_addr *victim, u8 proto, int ttl, u8 *ipopt, int ipoptlen, char *data, u16 datalen) { unsigned int packetlen; int res = -1; u8 *packet = build_ip_raw(source, victim, proto, ttl, get_random_u16(), IP_TOS_DEFAULT, false, ipopt, ipoptlen, data, datalen, &packetlen); if (!packet) return -1; res = send_ip_packet(sd, eth, packet, packetlen); free(packet); return res; } /* Used by validatepkt() to validate the TCP header (including option lengths). The options checked are MSS, WScale, SackOK, Sack, and Timestamp. */ static bool validateTCPhdr(u8 *tcpc, unsigned len) { struct tcp_hdr *tcp = (struct tcp_hdr *) tcpc; unsigned hdrlen, optlen; hdrlen = tcp->th_off * 4; /* Check header length */ if (hdrlen > len || hdrlen < sizeof(struct tcp_hdr)) return false; /* Get to the options */ tcpc += sizeof(struct tcp_hdr); optlen = hdrlen - sizeof(struct tcp_hdr); while (optlen > 0) { switch (*tcpc) { case 2: /* MSS */ if (optlen < 4) return false; optlen -= 4; tcpc += 4; break; case 3: /* Window Scale */ if (optlen < 3) return false; optlen -= 3; tcpc += 3; break; case 4: /* SACK Permitted */ if (optlen < 2) return false; optlen -= 2; tcpc += 2; break; case 5: /* SACK */ if (optlen < *++tcpc) return false; if (!(*tcpc - 2) || ((*tcpc - 2) % 8)) return false; optlen -= *tcpc; tcpc += (*tcpc - 1); break; case 8: /* Timestamp */ if (optlen < 10) return false; optlen -= 10; tcpc += 10; break; default: optlen--; tcpc++; break; } } return true; } /* Used by readip_pcap() to validate an IP packet. It checks to make sure: * * 1) there is enough room for an IP header in the amount of bytes read * 2) the IP version number is correct * 3) the IP length fields are at least as big as the standard header * 4) the IP packet received isn't a fragment, or is the initial fragment * 5) that next level headers seem reasonable (e.g. validateTCPhdr()) * * Checking the IP total length (iplen) to see if its at least as large as the * number of bytes read (len) does not work because things like the Ethernet * CRC also get captured and are counted in len. However, since the IP total * length field can't be trusted, we use len instead of iplen when doing any * further checks on lengths. readip_pcap fixes the length on it's end if we * read more than the IP header says we should have so as to not pass garbage * data to the caller. */ static bool validatepkt(u8 *ipc, unsigned len) { struct ip *ip = (struct ip *) ipc; unsigned fragoff, iphdrlen, iplen; if (len < sizeof(struct ip)) { if (o.debugging >= 3) error("Rejecting tiny, supposed IP packet (size %u)", len); return false; } if (ip->ip_v != 4) { if (o.debugging >= 3) error("Rejecting IP packet because of invalid version number %u", ip->ip_v); return false; } iphdrlen = ip->ip_hl * 4; if (iphdrlen < sizeof(struct ip)) { if (o.debugging >= 3) error("Rejecting IP packet because of invalid header length %u", iphdrlen); return false; } iplen = ntohs(ip->ip_len); if (iplen < iphdrlen) { if (o.debugging >= 3) error("Rejecting IP packet because of invalid total length %u", iplen); return false; } fragoff = 8 * (ntohs(ip->ip_off) & IP_OFFMASK); if (fragoff) { if (o.debugging >= 3) error("Rejecting IP fragment (offset %u)", fragoff); return false; } switch (ip->ip_p) { case IPPROTO_TCP: if (iphdrlen + sizeof(struct tcp_hdr) > len) { if (o.debugging >= 3) error("Rejecting TCP packet because of incomplete header"); return false; } if (!validateTCPhdr(ipc + iphdrlen, len - iphdrlen)) { if (o.debugging >= 3) error("Rejecting TCP packet because of bad TCP header"); return false; } break; case IPPROTO_UDP: if (iphdrlen + sizeof(struct udp_hdr) < len) break; if (o.debugging >= 3) error("Rejecting UDP packet because of incomplete header"); return false; default: break; } return true; } /* Read an IP packet using libpcap . We return the packet and take a pcap descriptor and a pointer to the packet length (which we set in the function. If you want a maximum length returned, you should specify that in pcap_open_live() */ /* to_usec is the timeout period in microseconds -- use 0 to skip the test and -1 to block forever. Note that we don't interrupt pcap, so low values (and 0) degenerate to the timeout specified in pcap_open_live() */ /* If rcvdtime is non-null and a packet is returned, rcvd will be filled with the time that packet was captured from the wire by pcap. If linknfo is not NULL, linknfo->headerlen and linknfo->header will be filled with the appropriate values. */ /* Specifying true for validate will enable validity checks against the received IP packet. See validatepkt() for a list of checks. */ char *readip_pcap(pcap_t *pd, unsigned int *len, long to_usec, struct timeval *rcvdtime, struct link_header *linknfo, bool validate) { unsigned int offset = 0; struct pcap_pkthdr head; char *p; int datalink; int timedout = 0; struct timeval tv_start, tv_end; static char *alignedbuf = NULL; static unsigned int alignedbufsz = 0; static int warning = 0; struct ip *iphdr; if (linknfo) { memset(linknfo, 0, sizeof(*linknfo)); } if (!pd) fatal("NULL packet device passed to %s", __func__); if (to_usec < 0) { if (!warning) { warning = 1; error("WARNING: Negative timeout value (%lu) passed to %s() -- using 0", to_usec, __func__); } to_usec = 0; } /* New packet capture device, need to recompute offset */ if ((datalink = pcap_datalink(pd)) < 0) fatal("Cannot obtain datalink information: %s", pcap_geterr(pd)); /* NOTE: IF A NEW OFFSET EVER EXCEEDS THE CURRENT MAX (24), ADJUST MAX_LINK_HEADERSZ in tcpip.h */ switch (datalink) { case DLT_EN10MB: offset = 14; break; case DLT_IEEE802: offset = 22; break; #ifdef __amigaos__ case DLT_MIAMI: offset = 16; break; #endif #ifdef DLT_LOOP case DLT_LOOP: #endif case DLT_NULL: offset = 4; break; case DLT_SLIP: #ifdef DLT_SLIP_BSDOS case DLT_SLIP_BSDOS: #endif #if (FREEBSD || OPENBSD || NETBSD || BSDI || MACOSX) offset = 16; #else offset = 24; /* Anyone use this??? */ #endif break; case DLT_PPP: #ifdef DLT_PPP_BSDOS case DLT_PPP_BSDOS: #endif #ifdef DLT_PPP_SERIAL case DLT_PPP_SERIAL: #endif #ifdef DLT_PPP_ETHER case DLT_PPP_ETHER: #endif #if (FREEBSD || OPENBSD || NETBSD || BSDI || MACOSX) offset = 4; #else #ifdef SOLARIS offset = 8; #else offset = 24; /* Anyone use this? */ #endif /* ifdef solaris */ #endif /* if freebsd || openbsd || netbsd || bsdi */ break; case DLT_RAW: offset = 0; break; case DLT_FDDI: offset = 21; break; #ifdef DLT_ENC case DLT_ENC: offset = 12; break; #endif /* DLT_ENC */ #ifdef DLT_LINUX_SLL case DLT_LINUX_SLL: offset = 16; break; #endif default: p = (char *) pcap_next(pd, &head); if (head.caplen == 0) { /* Lets sleep a brief time and try again to increase the chance of seeing a real packet ... */ usleep(500000); p = (char *) pcap_next(pd, &head); } if (head.caplen > 100000) { fatal("FATAL: %s: bogus caplen from libpcap (%d) on interface type %d", __func__, head.caplen, datalink); } error("FATAL: Unknown datalink type (%d). Caplen: %d; Packet:", datalink, head.caplen); nmap_hexdump((unsigned char *) p, head.caplen); exit(1); } if (to_usec > 0) { gettimeofday(&tv_start, NULL); } do { #ifdef WIN32 long to_left; if (to_usec > 0) { gettimeofday(&tv_end, NULL); to_left = MAX(1, (to_usec - TIMEVAL_SUBTRACT(tv_end, tv_start)) / 1000); } else { to_left = 1; } // Set the timeout (BUGBUG: this is cheating) PacketSetReadTimeout(pd->adapter, to_left); #endif p = NULL; if (pcap_select(pd, to_usec) == 0) timedout = 1; else p = (char *) pcap_next(pd, &head); if (p) { if (head.caplen <= offset) { *len = 0; return NULL; } if (offset && linknfo) { linknfo->datalinktype = datalink; linknfo->headerlen = offset; assert(offset < MAX_LINK_HEADERSZ); memcpy(linknfo->header, p, MIN(sizeof(linknfo->header), offset)); } p += offset; } if (!p || (*p & 0xF0) != 0x40) { /* Should we timeout? */ if (to_usec == 0) { timedout = 1; } else if (to_usec > 0) { gettimeofday(&tv_end, NULL); if (TIMEVAL_SUBTRACT(tv_end, tv_start) >= to_usec) { timedout = 1; } } } } while (!timedout && (!p || (*p & 0xF0) != 0x40)); /* Go until we get IPv4 packet */ if (timedout) { *len = 0; return NULL; } *len = head.caplen - offset; if (*len > alignedbufsz) { alignedbuf = (char *) safe_realloc(alignedbuf, *len); alignedbufsz = *len; } memcpy(alignedbuf, p, *len); if (validate) { /* Let's see if this packet passes inspection.. */ if (!validatepkt((u8 *) alignedbuf, *len)) { *len = 0; return NULL; } iphdr = (struct ip *) alignedbuf; /* OK, since the IP header has been validated, we don't want to tell * the caller they have more packet than they really have. This can * be caused by the Ethernet CRC trailer being counted, for example. */ if (*len > ntohs(iphdr->ip_len)) *len = ntohs(iphdr->ip_len); } // printf("Just got a packet at %li,%li\n", head.ts.tv_sec, head.ts.tv_usec); if (rcvdtime) { // FIXME: I eventually need to figure out why Windows head.ts time is sometimes BEFORE the time I // sent the packet (which is according to gettimeofday() in nbase). For now, I will sadly have to // use gettimeofday() for Windows in this case // Actually I now allow .05 discrepancy. So maybe this isn't needed. I'll comment out for now. // Nope: it is still needed at least for Windows. Sometimes the time from he pcap header is a // COUPLE SECONDS before the gettimeofday() results :(. #if defined(WIN32) || defined(__amigaos__) gettimeofday(&tv_end, NULL); *rcvdtime = tv_end; #else rcvdtime->tv_sec = head.ts.tv_sec; rcvdtime->tv_usec = head.ts.tv_usec; assert(head.ts.tv_sec); #endif } if (rcvdtime) PacketTrace::trace(PacketTrace::RCVD, (u8 *) alignedbuf, *len, rcvdtime); else PacketTrace::trace(PacketTrace::RCVD, (u8 *) alignedbuf, *len); return alignedbuf; } // Returns whether the packet receive time value obtained from libpcap // (and thus by readip_pcap()) should be considered valid. When // invalid (Windows and Amiga), readip_pcap returns the time you called it. bool pcap_recv_timeval_valid() { #if defined(WIN32) || defined(__amigaos__) return false; #else return true; #endif } /* Prints stats from a pcap descriptor (number of received and dropped packets). */ void pcap_print_stats(int logt, pcap_t *pd) { struct pcap_stat stat; assert(pd != NULL); if (pcap_stats(pd, &stat) < 0) { error("%s: %s", __func__, pcap_geterr(pd)); return; } log_write(logt, "pcap stats: %u packets received by filter, %u dropped by kernel.\n", stat.ps_recv, stat.ps_drop); } /* This function tries to determine the target's ethernet MAC address from a received packet as follows: 1) If linkhdr is an ethernet header, grab the src mac (otherwise give up) 2) If overwrite is 0 and a MAC is already set for this target, give up. 3) If the packet source address is not the target, give up. 4) Use the routing table to try to determine rather target is directly connected to the src host running Nmap. If it is, set the MAC. This function returns 0 if it ends up setting the MAC, nonzero otherwise This function assumes that ip has already been verified as containing a complete IP header (or at least the first 20 bytes). */ int setTargetMACIfAvailable(Target *target, struct link_header *linkhdr, struct ip *ip, int overwrite) { if (!linkhdr || !target || !ip) return 1; if (linkhdr->datalinktype != DLT_EN10MB || linkhdr->headerlen != 14) return 2; if (!overwrite && target->MACAddress()) return 3; if (ip->ip_src.s_addr != target->v4host().s_addr) return 4; /* Sometimes bogus MAC address still gets through, like during some localhost scans */ if (memcmp(linkhdr->header + 6, "\0\0\0\0\0\0", 6) == 0) return 5; if (target->ifType() == devt_ethernet && target->directlyConnected()) { /* Yay! This MAC address seems valid */ target->setMACAddress(linkhdr->header + 6); return 0; } return 5; } /* This function ensures that the next hop MAC address for a target is filled in. This address is the target's own MAC if it is directly connected, and the next hop mac otherwise. Returns true if the address is set when the function ends, false if not. This function firt checks if it is already set, if not it tries the arp cache, and if that fails it sends an ARP request itself. This should be called after an ARP scan if many directly connected machines are involved. setDirectlyConnected() (whether true or false) should have already been called on target before this. The target device and src mac address should also already be set. */ bool setTargetNextHopMAC(Target *target) { struct sockaddr_storage targetss, srcss; size_t sslen; arp_t *a; u8 mac[6]; struct arp_entry ae; if (target->ifType() != devt_ethernet) return false; /* Duh. */ /* First check if we already have it, duh. */ if (target->NextHopMACAddress()) return true; /* For connected machines, it is the same as the target addy */ if (target->directlyConnected() && target->MACAddress()) { target->setNextHopMACAddress(target->MACAddress()); return true; } if (target->directlyConnected()) { target->TargetSockAddr(&targetss, &sslen); } else { if (!target->nextHop(&targetss, &sslen)) fatal("%s: Failed to determine nextHop to target", __func__); } /* First, let us check the Nmap arp cache ... */ if (arp_cache_get(&targetss, mac)) { target->setNextHopMACAddress(mac); return true; } /* Maybe the system ARP cache will be more helpful */ a = arp_open(); addr_ston((sockaddr *) & targetss, &ae.arp_pa); if (arp_get(a, &ae) == 0) { arp_cache_set(&targetss, ae.arp_ha.addr_eth.data); target->setNextHopMACAddress(ae.arp_ha.addr_eth.data); arp_close(a); return true; } arp_close(a); /* OK, the last choice is to send our own damn ARP request (and retransmissions if necessary) to determine the MAC */ target->SourceSockAddr(&srcss, NULL); if (doArp(target->deviceFullName(), target->SrcMACAddress(), &srcss, &targetss, mac, PacketTrace::traceArp)) { arp_cache_set(&targetss, mac); target->setNextHopMACAddress(mac); return true; } /* I'm afraid that we couldn't find it! Maybe it doesn't exist? */ return false; } /* Like to getTargetNextHopMAC(), but for arbitrary hosts (not Targets) */ bool getNextHopMAC(char *iface, u8 *srcmac, struct sockaddr_storage *srcss, struct sockaddr_storage *dstss, u8 *dstmac) { arp_t *a; struct arp_entry ae; /* Nmap's ARP cache */ if (arp_cache_get(dstss, dstmac)) return true; /* System ARP cache */ a = arp_open(); addr_ston((sockaddr *) dstss, &ae.arp_pa); if (arp_get(a, &ae) == 0) { arp_cache_set(dstss, ae.arp_ha.addr_eth.data); memcpy(dstmac, ae.arp_ha.addr_eth.data, 6); arp_close(a); return true; } arp_close(a); /* Send ARP */ if (doArp(iface, srcmac, srcss, dstss, dstmac, PacketTrace::traceArp)) { arp_cache_set(dstss, dstmac); return true; } return false; } pcap_if_t *getpcapinterfaces() { #ifndef WIN32 return NULL; #endif pcap_if_t *p_ifaces; if ((pcap_findalldevs(&p_ifaces, NULL)) == -1) { fatal("pcap_findalldevs() : Cannot retrieve pcap interfaces"); return NULL; } return p_ifaces; } int nmap_route_dst(const struct sockaddr_storage * const dst, struct route_nfo *rnfo){ struct sockaddr_storage spoofss; size_t spoofsslen; if(o.spoofsource){ o.SourceSockAddr(&spoofss, &spoofsslen); return route_dst(dst, rnfo, o.device, &spoofss); }else{ return route_dst(dst, rnfo, o.device, NULL); } } /* Maximize the receive buffer of a socket descriptor (up to 500K) */ void max_rcvbuf(int sd) { int optval = 524288; /* 2^19 */ recvfrom6_t optlen = sizeof(int); #ifndef WIN32 if (setsockopt (sd, SOL_SOCKET, SO_RCVBUF, (const char *) &optval, optlen)) if (o.debugging) perror("Problem setting large socket receive buffer"); if (o.debugging) { getsockopt(sd, SOL_SOCKET, SO_RCVBUF, (char *) &optval, &optlen); log_write(LOG_STDOUT, "Our buffer size is now %d\n", optval); } #endif /* WIN32 */ } /* Give broadcast permission to a socket */ void broadcast_socket(int sd) { int one = 1; #ifdef WIN32 if (sd == 501) return; #endif if (setsockopt (sd, SOL_SOCKET, SO_BROADCAST, (const char *) &one, sizeof(int)) != 0) { error("Failed to secure socket broadcasting permission"); perror("setsockopt"); } } /* Do a receive (recv()) on a socket and stick the results (up to len) into buf . Give up after 'seconds'. Returns the number of bytes read (or -1 in the case of an error. It only does one recv (it will not keep going until len bytes are read). If timedout is not NULL, it will be set to zero (no timeout occured) or 1 (it did). */ int recvtime(int sd, char *buf, int len, int seconds, int *timedout) { int res; struct timeval timeout; fd_set readfd; timeout.tv_sec = seconds; timeout.tv_usec = 0; FD_ZERO(&readfd); FD_SET(sd, &readfd); if (timedout) *timedout = 0; res = select(sd + 1, &readfd, NULL, NULL, &timeout); if (res > 0) { res = recv(sd, buf, len, 0); if (res >= 0) return res; gh_perror("recv in %s", __func__); return 0; } else if (!res) { if (timedout) *timedout = 1; return 0; } gh_perror("select() in %s", __func__); return -1; } /* Examines the given tcp packet and obtains the TCP timestamp option information if available. Note that the CALLER must ensure that "tcp" contains a valid header (in particular the th_off must be the true packet length and tcp must contain it). If a valid timestamp option is found in the header, nonzero is returned and the 'timestamp' and 'echots' parameters are filled in with the appropriate value (if non-null). Otherwise 0 is returned and the parameters (if non-null) are filled with 0. Remember that the correct way to check for errors is to look at the return value since a zero ts or echots could possibly be valid. */ int gettcpopt_ts(struct tcp_hdr *tcp, u32 *timestamp, u32 *echots) { unsigned char *p; int len = 0; int op; int oplen; /* first we find where the tcp options start ... */ p = ((unsigned char *) tcp) + 20; len = 4 * tcp->th_off - 20; while (len > 0 && *p != 0 /* TCPOPT_EOL */ ) { op = *p++; if (op == 0 /* TCPOPT_EOL */ ) break; if (op == 1 /* TCPOPT_NOP */ ) { len--; continue; } oplen = *p++; if (oplen < 2) break; /* No infinite loops, please */ if (oplen > len) break; /* Not enough space */ if (op == 8 /* TCPOPT_TIMESTAMP */ && oplen == 10) { /* Legitimate ts option */ if (timestamp) { memcpy((char *) timestamp, p, 4); *timestamp = ntohl(*timestamp); } p += 4; if (echots) { memcpy((char *) echots, p, 4); *echots = ntohl(*echots); } return 1; } len -= oplen; p += oplen - 2; } /* Didn't find anything */ if (timestamp) *timestamp = 0; if (echots) *echots = 0; return 0; }