// See the file "COPYING" in the main distribution directory for copyright. #ifndef netutil_h #define netutil_h #include "config.h" // Define first. typedef enum { TRANSPORT_UNKNOWN, TRANSPORT_TCP, TRANSPORT_UDP, TRANSPORT_ICMP, } TransportProto; typedef enum { IPv4, IPv6 } IPFamily; #include #include #include #include #include #include #ifdef HAVE_LINUX #define __FAVOR_BSD #endif #include #include #include #include "util.h" #ifdef HAVE_NETINET_IP6_H #include #ifndef HAVE_IP6_OPT struct ip6_opt { uint8 ip6o_type; uint8 ip6o_len; }; #endif // HAVE_IP6_OPT #ifndef HAVE_IP6_EXT struct ip6_ext { uint8 ip6e_nxt; uint8 ip6e_len; }; #endif // HAVE_IP6_EXT #else struct ip6_hdr { union { struct ip6_hdrctl { uint32 ip6_un1_flow; /* 4 bits version, 8 bits TC, 20 bits flow-ID */ uint16 ip6_un1_plen; /* payload length */ uint8 ip6_un1_nxt; /* next header */ uint8 ip6_un1_hlim; /* hop limit */ } ip6_un1; uint8 ip6_un2_vfc; /* 4 bits version, top 4 bits tclass */ } ip6_ctlun; struct in6_addr ip6_src; /* source address */ struct in6_addr ip6_dst; /* destination address */ }; #define ip6_vfc ip6_ctlun.ip6_un2_vfc #define ip6_flow ip6_ctlun.ip6_un1.ip6_un1_flow #define ip6_plen ip6_ctlun.ip6_un1.ip6_un1_plen #define ip6_nxt ip6_ctlun.ip6_un1.ip6_un1_nxt #define ip6_hlim ip6_ctlun.ip6_un1.ip6_un1_hlim #define ip6_hops ip6_ctlun.ip6_un1.ip6_un1_hlim struct ip6_opt { uint8 ip6o_type; uint8 ip6o_len; }; struct ip6_ext { uint8 ip6e_nxt; uint8 ip6e_len; }; struct ip6_frag { uint8 ip6f_nxt; /* next header */ uint8 ip6f_reserved; /* reserved field */ uint16 ip6f_offlg; /* offset, reserved, and flag */ uint32 ip6f_ident; /* identification */ }; struct ip6_hbh { uint8 ip6h_nxt; /* next header */ uint8 ip6h_len; /* length in units of 8 octets */ /* followed by options */ }; struct ip6_dest { uint8 ip6d_nxt; /* next header */ uint8 ip6d_len; /* length in units of 8 octets */ /* followed by options */ }; struct ip6_rthdr { uint8 ip6r_nxt; /* next header */ uint8 ip6r_len; /* length in units of 8 octets */ uint8 ip6r_type; /* routing type */ uint8 ip6r_segleft; /* segments left */ /* followed by routing type specific data */ }; #endif // HAVE_NETINET_IP6_H // For Solaris. #if !defined(TCPOPT_WINDOW) && defined(TCPOPT_WSCALE) #define TCPOPT_WINDOW TCPOPT_WSCALE #endif #if !defined(TCPOPT_TIMESTAMP) && defined(TCPOPT_TSTAMP) #define TCPOPT_TIMESTAMP TCPOPT_TSTAMP #endif // True if sequence # a is between b and c (b <= a <= c). It must be true // that b <= c in the sequence space. inline bool seq_between(uint32 a, uint32 b, uint32 c) { if ( b <= c ) return a >= b && a <= c; else return a >= b || a <= c; } // Returns a - b, adjusted for sequence wraparound. inline int32 seq_delta(uint32 a, uint32 b) { return a - b; } class IPAddr; class IP_Hdr; // Returns the ones-complement checksum of a chunk of b short-aligned bytes. extern int ones_complement_checksum(const void* p, int b, uint32 sum); extern int ones_complement_checksum(const IPAddr& a, uint32 sum); extern int icmp6_checksum(const struct icmp* icmpp, const IP_Hdr* ip, int len); extern int icmp_checksum(const struct icmp* icmpp, int len); #ifdef ENABLE_MOBILE_IPV6 extern int mobility_header_checksum(const IP_Hdr* ip); #endif // Returns 'A', 'B', 'C' or 'D' extern char addr_to_class(uint32 addr); extern const char* fmt_conn_id(const IPAddr& src_addr, uint32 src_port, const IPAddr& dst_addr, uint32 dst_port); extern const char* fmt_conn_id(const uint32* src_addr, uint32 src_port, const uint32* dst_addr, uint32 dst_port); /** * Given a MAC address, formats it in hex as 00:de:ad:be:ef. * Supports both EUI-48 and EUI-64. If it's neither, returns * an empty string. * * @param m EUI-48 or EUI-64 MAC address to format, as a char array * @param len Number of bytes valid starting at *n*. This must be at * least 8 for a valid address. * @return A string of the formatted MAC. Passes ownership to caller. */ extern char* fmt_mac(const unsigned char* m, int len); // Read 4 bytes from data and return in network order. extern uint32 extract_uint32(const u_char* data); // Endian conversions for double. // This is certainly not a very clean solution but should work on the // major platforms. Alternativly, we could use a string format or the // XDR library. #ifdef WORDS_BIGENDIAN inline double ntohd(double d) { return d; } inline double htond(double d) { return d; } #ifndef HAVE_BYTEORDER_64 inline uint64 ntohll(uint64 i) { return i; } inline uint64 htonll(uint64 i) { return i; } #endif #else inline double ntohd(double d) { assert(sizeof(d) == 8); double tmp; char* src = (char*) &d; char* dst = (char*) &tmp; dst[0] = src[7]; dst[1] = src[6]; dst[2] = src[5]; dst[3] = src[4]; dst[4] = src[3]; dst[5] = src[2]; dst[6] = src[1]; dst[7] = src[0]; return tmp; } inline double htond(double d) { return ntohd(d); } #ifndef HAVE_BYTEORDER_64 inline uint64 ntohll(uint64 i) { u_char c; union { uint64 i; u_char c[8]; } x; x.i = i; c = x.c[0]; x.c[0] = x.c[7]; x.c[7] = c; c = x.c[1]; x.c[1] = x.c[6]; x.c[6] = c; c = x.c[2]; x.c[2] = x.c[5]; x.c[5] = c; c = x.c[3]; x.c[3] = x.c[4]; x.c[4] = c; return x.i; } inline uint64 htonll(uint64 i) { return ntohll(i); } #endif #endif #endif