62 memset(
data, 0, ETH_ADDR_LEN);
65 EthAddr::EthAddr(
const uint8_t
ea[ETH_ADDR_LEN])
67 for (
int i = 0;
i < ETH_ADDR_LEN; ++
i)
71 EthAddr::EthAddr(
const eth_addr &
ea)
73 for (
int i = 0;
i < ETH_ADDR_LEN; ++
i)
77 EthAddr::EthAddr(
const std::string &
addr)
83 EthAddr::operator=(
const eth_addr &
ea)
90 EthAddr::operator=(
const std::string &
addr)
97 EthAddr::parse(
const std::string &
addr)
101 int bytes[ETH_ADDR_LEN == 6 ? ETH_ADDR_LEN : -1];
102 if (sscanf(addr.c_str(),
"%x:%x:%x:%x:%x:%x", &bytes[0], &bytes[1],
103 &bytes[2], &bytes[3], &bytes[4], &bytes[5]) != ETH_ADDR_LEN) {
104 memset(
data, 0xff, ETH_ADDR_LEN);
108 for (
int i = 0;
i < ETH_ADDR_LEN; ++
i) {
109 if (bytes[
i] & ~0xff) {
110 memset(
data, 0xff, ETH_ADDR_LEN);
119 EthAddr::string()
const 129 return !memcmp(left.
bytes(), right.
bytes(), ETH_ADDR_LEN);
135 const uint8_t *
a = ea.
addr();
136 ccprintf(stream,
"%x:%x:%x:%x:%x:%x", a[0], a[1], a[2], a[3], a[4], a[5]);
141 IpAddress::string()
const 151 return left.
ip() == right.
ip();
157 uint32_t
ip = ia.
ip();
159 (uint8_t)(ip >> 24), (uint8_t)(ip >> 16),
160 (uint8_t)(ip >> 8), (uint8_t)(ip >> 0));
165 IpNetmask::string()
const 175 return (left.
ip() == right.
ip()) &&
187 IpWithPort::string()
const 197 return (left.
ip() == right.
ip()) && (left.
port() == right.
port());
211 return ip_cksum_carry(sum);
217 int tcplen = ip->
len() - ip->
hlen();
218 int sum = ip_cksum_add(ip->
payload(), tcplen, 0);
219 sum = ip_cksum_add(&ip->ip_src, 8, sum);
220 sum += htons(ip->ip_p + tcplen);
221 return ip_cksum_carry(sum);
228 int sum = ip_cksum_add(ip6->
payload(), tcplen, 0);
229 sum = ip_cksum_add(ip6->
src(), 32,
sum);
230 sum += htons(ip6->
proto() + tcplen);
231 return ip_cksum_carry(sum);
242 panic(
"Unrecognized IP packet format");
256 panic(
"Unrecognized IP packet format");
266 const uint8_t *
data = bytes() +
sizeof(
struct ip_hdr);
267 int all = hlen() -
sizeof(
struct ip_hdr);
282 #define IP6_EXTENSION(nxt) (nxt == IP_PROTO_HOPOPTS) ? true : \ 283 (nxt == IP_PROTO_ROUTING) ? true : \ 284 (nxt == IP_PROTO_FRAGMENT) ? true : \ 285 (nxt == IP_PROTO_AH) ? true : \ 286 (nxt == IP_PROTO_ESP) ? true: \ 287 (nxt == IP_PROTO_DSTOPTS) ? true : false 293 Ip6Hdr::extensionLength()
const 295 const uint8_t *
data = bytes() + IP6_HDR_LEN;
296 uint8_t nxt = ip6_nxt;
316 Ip6Hdr::getExt(uint8_t ext_type)
const 318 const uint8_t *
data = bytes() + IP6_HDR_LEN;
319 uint8_t nxt = ip6_nxt;
325 if (nxt == ext_type) {
334 return (
const Ip6Opt*)opt;
342 Ip6Hdr::proto()
const 344 const uint8_t *
data = bytes() + IP6_HDR_LEN;
345 uint8_t nxt = ip6_nxt;
363 const uint8_t *
data = bytes() +
sizeof(
struct tcp_hdr);
364 int all = off() -
sizeof(
struct tcp_hdr);
387 split_point = ip.
pstart();
391 split_point = tcp.
pstart();
395 split_point = udp.
pstart();
397 split_point = ip6.
pstart();
401 split_point = tcp.
pstart();
404 split_point = udp.
pstart();
#define panic(...)
This implements a cprintf based panic() function.
void ccprintf(cp::Print &print)
const uint8_t * bytes() const
const uint8_t * addr() const
int hsplit(const EthPacketPtr &ptr)
int extensionLength() const
Overload hash function for BasicBlockRange type.
const uint8_t * src() const
uint16_t cksum(const UdpPtr &udp)
const EthPacketPtr packet() const
const uint8_t * bytes() const
ostream & operator<<(ostream &stream, const IpWithPort &iwp)
std::shared_ptr< EthPacketData > EthPacketPtr
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
const uint8_t * payload() const
const EthPacketPtr packet() const
#define IP6_EXTENSION(nxt)
uint16_t __tu_cksum6(const Ip6Ptr &ip6)
bool operator==(const IpWithPort &left, const IpWithPort &right)
const uint8_t * payload() const
uint16_t __tu_cksum(const IpPtr &ip)