Go to the documentation of this file.
57 std::memset(
data, 0, ETH_ADDR_LEN);
62 for (
int i = 0;
i < ETH_ADDR_LEN; ++
i)
68 for (
int i = 0;
i < ETH_ADDR_LEN; ++
i)
96 int bytes[ETH_ADDR_LEN == 6 ? ETH_ADDR_LEN : -1];
97 if (sscanf(
addr.c_str(),
"%x:%x:%x:%x:%x:%x", &
bytes[0], &
bytes[1],
99 std::memset(
data, 0xff, ETH_ADDR_LEN);
103 for (
int i = 0;
i < ETH_ADDR_LEN; ++
i) {
105 std::memset(
data, 0xff, ETH_ADDR_LEN);
116 std::stringstream stream;
124 return !std::memcmp(left.
bytes(), right.
bytes(), ETH_ADDR_LEN);
130 const uint8_t *
a =
ea.addr();
131 ccprintf(stream,
"%x:%x:%x:%x:%x:%x",
a[0],
a[1],
a[2],
a[3],
a[4],
a[5]);
138 std::stringstream stream;
146 return left.
ip() == right.
ip();
152 uint32_t
ip =
ia.ip();
154 (uint8_t)(
ip >> 24), (uint8_t)(
ip >> 16),
155 (uint8_t)(
ip >> 8), (uint8_t)(
ip >> 0));
162 std::stringstream stream;
170 return (left.
ip() == right.
ip()) &&
184 std::stringstream stream;
192 return (left.
ip() == right.
ip()) && (left.
port() == right.
port());
206 return ip_cksum_carry(
sum);
212 int tcplen =
ip->len() -
ip->hlen();
213 int sum = ip_cksum_add(
ip->payload(), tcplen, 0);
214 sum = ip_cksum_add(&
ip->ip_src, 8,
sum);
215 sum += htons(
ip->ip_p + tcplen);
216 return ip_cksum_carry(
sum);
222 int tcplen =
ip6->plen() -
ip6->extensionLength();
223 int sum = ip_cksum_add(
ip6->payload(), tcplen, 0);
225 sum += htons(
ip6->proto() + tcplen);
226 return ip_cksum_carry(
sum);
237 panic(
"Unrecognized IP packet format");
251 panic(
"Unrecognized IP packet format");
261 const uint8_t *
data =
bytes() +
sizeof(
struct ip_hdr);
262 int all =
hlen() -
sizeof(
struct ip_hdr);
277 #define IP6_EXTENSION(nxt) (nxt == IP_PROTO_HOPOPTS) ? true : \
278 (nxt == IP_PROTO_ROUTING) ? true : \
279 (nxt == IP_PROTO_FRAGMENT) ? true : \
280 (nxt == IP_PROTO_AH) ? true : \
281 (nxt == IP_PROTO_ESP) ? true: \
282 (nxt == IP_PROTO_DSTOPTS) ? true : false
290 const uint8_t *
data =
bytes() + IP6_HDR_LEN;
291 uint8_t
nxt = ip6_nxt;
313 const uint8_t *
data =
bytes() + IP6_HDR_LEN;
314 uint8_t
nxt = ip6_nxt;
320 if (
nxt == ext_type) {
329 return (
const Ip6Opt*)opt;
339 const uint8_t *
data =
bytes() + IP6_HDR_LEN;
340 uint8_t
nxt = ip6_nxt;
358 const uint8_t *
data =
bytes() +
sizeof(
struct tcp_hdr);
359 int all =
off() -
sizeof(
struct tcp_hdr);
382 split_point =
ip.pstart();
386 split_point =
tcp.pstart();
390 split_point = udp.
pstart();
392 split_point =
ip6.pstart();
396 split_point =
tcp.pstart();
399 split_point = udp.
pstart();
std::string string() const
int extensionLength() const
bool options(std::vector< const IpOpt * > &vec) const
bool options(std::vector< const TcpOpt * > &vec) const
bool operator==(const EthAddr &left, const EthAddr &right)
const uint8_t * bytes() const
const uint8_t * bytes() const
const Ip6Opt * getExt(uint8_t ext) const
std::string string() const
const uint8_t * bytes() const
std::string string() const
std::ostream & operator<<(std::ostream &stream, const EthAddr &ea)
#define IP6_EXTENSION(nxt)
const uint8_t * addr() const
uint16_t __tu_cksum6(const Ip6Ptr &ip6)
uint16_t __tu_cksum(const IpPtr &ip)
const EthAddr & operator=(const eth_addr &ea)
uint16_t cksum(const IpPtr &ptr)
std::string string() const
std::shared_ptr< EthPacketData > EthPacketPtr
void ccprintf(cp::Print &print)
const EthPacketPtr packet() const
const uint8_t * bytes() const
int hsplit(const EthPacketPtr &ptr)
void parse(const std::string &addr)
#define panic(...)
This implements a cprintf based panic() function.
Generated on Tue Jun 22 2021 15:28:25 for gem5 by doxygen 1.8.17