19#ifndef ZEPHYR_INCLUDE_NET_NET_PKT_H_
20#define ZEPHYR_INCLUDE_NET_NET_PKT_H_
27#if defined(CONFIG_IEEE802154)
57#if defined(CONFIG_NET_PKT_ALLOC_STATS)
58struct net_pkt_alloc_stats {
64struct net_pkt_alloc_stats_slab {
65 struct net_pkt_alloc_stats ok;
66 struct net_pkt_alloc_stats fail;
67 struct k_mem_slab *slab;
70#define NET_PKT_ALLOC_STATS_DEFINE(alloc_name, slab_name) \
71 STRUCT_SECTION_ITERABLE(net_pkt_alloc_stats_slab, alloc_name) = { \
76#define NET_PKT_ALLOC_STATS_DEFINE(name, slab)
80struct net_pkt_cursor {
122#if defined(CONFIG_NET_TCP)
126#if defined(CONFIG_NET_ROUTING) || defined(CONFIG_NET_ETHERNET_BRIDGE)
127 struct net_if *orig_iface;
130#if defined(CONFIG_NET_VPN)
135 union net_ip_header ip_hdr;
137 union net_proto_header proto_hdr;
143#if defined(CONFIG_NET_PKT_TIMESTAMP) || defined(CONFIG_NET_PKT_TXTIME)
165#if defined(CONFIG_NET_PKT_RXTIME_STATS) || defined(CONFIG_NET_PKT_TXTIME_STATS) || \
166 defined(CONFIG_TRACING_NET_CORE)
171#if defined(CONFIG_NET_PKT_TXTIME_STATS_DETAIL) || \
172 defined(CONFIG_NET_PKT_RXTIME_STATS_DETAIL)
187#if defined(CONFIG_NET_PKT_ALLOC_STATS)
188 struct net_pkt_alloc_stats_slab *alloc_stats;
195 struct net_linkaddr lladdr_src;
196 struct net_linkaddr lladdr_dst;
199#if defined(CONFIG_NET_IP)
216#if defined(CONFIG_NET_IPV4_ACD)
223#if defined(CONFIG_NET_LLDP)
245#if defined(CONFIG_NET_IP_FRAGMENT)
248#if defined(CONFIG_NET_PKT_TIMESTAMP)
254#if defined(CONFIG_NET_IP)
259#if defined(CONFIG_NET_IPV6)
262#if defined(CONFIG_NET_IPV4)
268#if defined(CONFIG_NET_IPV4)
271#if defined(CONFIG_NET_IPV6)
276#if defined(CONFIG_NET_IP_FRAGMENT)
278#if defined(CONFIG_NET_IPV4_FRAGMENT)
284#if defined(CONFIG_NET_IPV6_FRAGMENT)
294#if defined(CONFIG_NET_IPV6)
306#if defined(CONFIG_NET_IP_DSCP_ECN)
315#if defined(CONFIG_NET_VLAN)
324#if defined(CONFIG_NET_PKT_CONTROL_BLOCK)
327 uint8_t cb[CONFIG_NET_PKT_CONTROL_BLOCK_SIZE];
328#if defined(CONFIG_IEEE802154)
332 struct net_pkt_cb_ieee802154 cb_ieee802154;
342#if defined(CONFIG_NET_OFFLOAD) || defined(CONFIG_NET_L2_IPIP)
348 struct net_sockaddr remote;
354 struct net_sockaddr_storage remote_storage;
358#if defined(CONFIG_NET_CAPTURE_COOKED_MODE)
363#if defined(CONFIG_NET_IPV4_PMTU)
384static inline void net_pkt_set_context(
struct net_pkt *pkt,
390static inline struct net_if *net_pkt_iface(
struct net_pkt *pkt)
395static inline void net_pkt_set_iface(
struct net_pkt *pkt,
struct net_if *iface)
406 pkt->lladdr_src.type = type;
407 pkt->lladdr_dst.type = type;
411static inline struct net_if *net_pkt_orig_iface(
struct net_pkt *pkt)
413#if defined(CONFIG_NET_ROUTING) || defined(CONFIG_NET_ETHERNET_BRIDGE)
414 return pkt->orig_iface;
420static inline void net_pkt_set_orig_iface(
struct net_pkt *pkt,
423#if defined(CONFIG_NET_ROUTING) || defined(CONFIG_NET_ETHERNET_BRIDGE)
424 pkt->orig_iface = iface;
431#if defined(CONFIG_NET_VPN)
432static inline struct net_if *net_pkt_vpn_iface(
struct net_pkt *pkt)
434 return pkt->vpn.
iface;
437static inline void net_pkt_set_vpn_iface(
struct net_pkt *pkt,
440 pkt->vpn.
iface = iface;
443static inline union net_ip_header *net_pkt_vpn_ip_hdr(
struct net_pkt *pkt)
445 return &pkt->vpn.ip_hdr;
448static inline void net_pkt_set_vpn_ip_hdr(
struct net_pkt *pkt,
449 union net_ip_header *ip_hdr)
451 pkt->vpn.ip_hdr = *ip_hdr;
454static inline union net_proto_header *net_pkt_vpn_udp_hdr(
struct net_pkt *pkt)
456 return &pkt->vpn.proto_hdr;
459static inline void net_pkt_set_vpn_udp_hdr(
struct net_pkt *pkt,
460 union net_proto_header *proto_hdr)
462 pkt->vpn.proto_hdr = *proto_hdr;
465static inline int net_pkt_vpn_peer_id(
struct net_pkt *pkt)
467 return pkt->vpn.peer_id;
470static inline void net_pkt_set_vpn_peer_id(
struct net_pkt *pkt,
473 pkt->vpn.peer_id = peer_id;
482static inline void net_pkt_set_family(
struct net_pkt *pkt,
uint8_t family)
484 pkt->family = family;
487static inline bool net_pkt_is_ptp(
struct net_pkt *pkt)
489 return !!(pkt->ptp_pkt);
492static inline void net_pkt_set_ptp(
struct net_pkt *pkt,
bool is_ptp)
494 pkt->ptp_pkt = is_ptp;
497static inline bool net_pkt_is_tx_timestamping(
struct net_pkt *pkt)
499#if defined(CONFIG_NET_PKT_TIMESTAMP)
500 return !!(pkt->tx_timestamping);
508static inline void net_pkt_set_tx_timestamping(
struct net_pkt *pkt,
bool is_timestamping)
510#if defined(CONFIG_NET_PKT_TIMESTAMP)
511 pkt->tx_timestamping = is_timestamping;
514 ARG_UNUSED(is_timestamping);
518static inline bool net_pkt_is_rx_timestamping(
struct net_pkt *pkt)
520#if defined(CONFIG_NET_PKT_TIMESTAMP)
521 return !!(pkt->rx_timestamping);
529static inline void net_pkt_set_rx_timestamping(
struct net_pkt *pkt,
bool is_timestamping)
531#if defined(CONFIG_NET_PKT_TIMESTAMP)
532 pkt->rx_timestamping = is_timestamping;
535 ARG_UNUSED(is_timestamping);
539static inline bool net_pkt_is_captured(
struct net_pkt *pkt)
541 return !!(pkt->captured);
544static inline void net_pkt_set_captured(
struct net_pkt *pkt,
bool is_captured)
546 pkt->captured = is_captured;
549static inline bool net_pkt_is_l2_bridged(
struct net_pkt *pkt)
551 return IS_ENABLED(CONFIG_NET_ETHERNET_BRIDGE) ? !!(pkt->l2_bridged) : 0;
554static inline void net_pkt_set_l2_bridged(
struct net_pkt *pkt,
bool is_l2_bridged)
557 pkt->l2_bridged = is_l2_bridged;
561static inline bool net_pkt_is_l2_processed(
struct net_pkt *pkt)
563 return !!(pkt->l2_processed);
566static inline void net_pkt_set_l2_processed(
struct net_pkt *pkt,
567 bool is_l2_processed)
569 pkt->l2_processed = is_l2_processed;
572static inline bool net_pkt_is_chksum_done(
struct net_pkt *pkt)
574 return !!(pkt->chksum_done);
577static inline void net_pkt_set_chksum_done(
struct net_pkt *pkt,
580 pkt->chksum_done = is_chksum_done;
585#if defined(CONFIG_NET_IP)
586 return pkt->ip_hdr_len;
594static inline void net_pkt_set_ip_hdr_len(
struct net_pkt *pkt,
uint8_t len)
596#if defined(CONFIG_NET_IP)
597 pkt->ip_hdr_len = len;
606#if defined(CONFIG_NET_IP_DSCP_ECN)
615static inline void net_pkt_set_ip_dscp(
struct net_pkt *pkt,
uint8_t dscp)
617#if defined(CONFIG_NET_IP_DSCP_ECN)
627#if defined(CONFIG_NET_IP_DSCP_ECN)
636static inline void net_pkt_set_ip_ecn(
struct net_pkt *pkt,
uint8_t ecn)
638#if defined(CONFIG_NET_IP_DSCP_ECN)
651static inline void net_pkt_set_eof(
struct net_pkt *pkt,
bool eof)
656static inline bool net_pkt_forwarding(
struct net_pkt *pkt)
658 return !!(pkt->forwarding);
661static inline void net_pkt_set_forwarding(
struct net_pkt *pkt,
bool forward)
663 pkt->forwarding = forward;
666#if defined(CONFIG_NET_IPV4)
669 return pkt->ipv4_ttl;
672static inline void net_pkt_set_ipv4_ttl(
struct net_pkt *pkt,
680 return pkt->ipv4_opts_len;
683static inline void net_pkt_set_ipv4_opts_len(
struct net_pkt *pkt,
686 pkt->ipv4_opts_len = opts_len;
696static inline void net_pkt_set_ipv4_ttl(
struct net_pkt *pkt,
709static inline void net_pkt_set_ipv4_opts_len(
struct net_pkt *pkt,
713 ARG_UNUSED(opts_len);
717#if defined(CONFIG_NET_IPV6)
718static inline uint8_t net_pkt_ipv6_ext_opt_len(
struct net_pkt *pkt)
720 return pkt->ipv6_ext_opt_len;
723static inline void net_pkt_set_ipv6_ext_opt_len(
struct net_pkt *pkt,
726 pkt->ipv6_ext_opt_len = len;
731 return pkt->ipv6_next_hdr;
734static inline void net_pkt_set_ipv6_next_hdr(
struct net_pkt *pkt,
737 pkt->ipv6_next_hdr = next_hdr;
742 return pkt->ipv6_ext_len;
745static inline void net_pkt_set_ipv6_ext_len(
struct net_pkt *pkt,
uint16_t len)
747 pkt->ipv6_ext_len = len;
752 return pkt->ipv6_prev_hdr_start;
755static inline void net_pkt_set_ipv6_hdr_prev(
struct net_pkt *pkt,
758 pkt->ipv6_prev_hdr_start = offset;
763 return pkt->ipv6_hop_limit;
766static inline void net_pkt_set_ipv6_hop_limit(
struct net_pkt *pkt,
769 pkt->ipv6_hop_limit = hop_limit;
772static inline uint8_t net_pkt_ipv6_ext_opt_len(
struct net_pkt *pkt)
779static inline void net_pkt_set_ipv6_ext_opt_len(
struct net_pkt *pkt,
793static inline void net_pkt_set_ipv6_next_hdr(
struct net_pkt *pkt,
797 ARG_UNUSED(next_hdr);
807static inline void net_pkt_set_ipv6_ext_len(
struct net_pkt *pkt,
uint16_t len)
820static inline void net_pkt_set_ipv6_hdr_prev(
struct net_pkt *pkt,
834static inline void net_pkt_set_ipv6_hop_limit(
struct net_pkt *pkt,
838 ARG_UNUSED(hop_limit);
844#if defined(CONFIG_NET_IPV6)
845 return pkt->ipv6_ext_len;
846#elif defined(CONFIG_NET_IPV4)
847 return pkt->ipv4_opts_len;
855#if defined(CONFIG_NET_IPV4_PMTU)
856static inline bool net_pkt_ipv4_pmtu(
struct net_pkt *pkt)
858 return !!pkt->ipv4_pmtu;
861static inline void net_pkt_set_ipv4_pmtu(
struct net_pkt *pkt,
bool value)
863 pkt->ipv4_pmtu = value;
866static inline bool net_pkt_ipv4_pmtu(
struct net_pkt *pkt)
873static inline void net_pkt_set_ipv4_pmtu(
struct net_pkt *pkt,
bool value)
880#if defined(CONFIG_NET_IPV4_FRAGMENT)
881static inline uint16_t net_pkt_ipv4_fragment_offset(
struct net_pkt *pkt)
883 return (pkt->ipv4_fragment.flags & NET_IPV4_FRAGH_OFFSET_MASK) * 8;
886static inline bool net_pkt_ipv4_fragment_more(
struct net_pkt *pkt)
888 return (pkt->ipv4_fragment.flags & NET_IPV4_MORE_FRAG_MASK) != 0;
893 pkt->ipv4_fragment.flags =
flags;
898 return pkt->ipv4_fragment.id;
901static inline void net_pkt_set_ipv4_fragment_id(
struct net_pkt *pkt,
uint32_t id)
903 pkt->ipv4_fragment.id = id;
906static inline uint16_t net_pkt_ipv4_fragment_offset(
struct net_pkt *pkt)
913static inline bool net_pkt_ipv4_fragment_more(
struct net_pkt *pkt)
933static inline void net_pkt_set_ipv4_fragment_id(
struct net_pkt *pkt,
uint32_t id)
940#if defined(CONFIG_NET_IPV6_FRAGMENT)
943 return pkt->ipv6_fragment.hdr_start;
946static inline void net_pkt_set_ipv6_fragment_start(
struct net_pkt *pkt,
949 pkt->ipv6_fragment.hdr_start = start;
952static inline uint16_t net_pkt_ipv6_fragment_offset(
struct net_pkt *pkt)
954 return pkt->ipv6_fragment.flags & NET_IPV6_FRAGH_OFFSET_MASK;
956static inline bool net_pkt_ipv6_fragment_more(
struct net_pkt *pkt)
958 return (pkt->ipv6_fragment.flags & 0x01) != 0;
961static inline void net_pkt_set_ipv6_fragment_flags(
struct net_pkt *pkt,
964 pkt->ipv6_fragment.flags =
flags;
969 return pkt->ipv6_fragment.id;
972static inline void net_pkt_set_ipv6_fragment_id(
struct net_pkt *pkt,
975 pkt->ipv6_fragment.id = id;
985static inline void net_pkt_set_ipv6_fragment_start(
struct net_pkt *pkt,
992static inline uint16_t net_pkt_ipv6_fragment_offset(
struct net_pkt *pkt)
999static inline bool net_pkt_ipv6_fragment_more(
struct net_pkt *pkt)
1006static inline void net_pkt_set_ipv6_fragment_flags(
struct net_pkt *pkt,
1020static inline void net_pkt_set_ipv6_fragment_id(
struct net_pkt *pkt,
1028static inline bool net_pkt_is_loopback(
struct net_pkt *pkt)
1030 return !!(pkt->loopback);
1033static inline void net_pkt_set_loopback(
struct net_pkt *pkt,
1036 pkt->loopback = loopback;
1039#if defined(CONFIG_NET_IP_FRAGMENT)
1040static inline bool net_pkt_is_ip_reassembled(
struct net_pkt *pkt)
1042 return !!(pkt->ip_reassembled);
1045static inline void net_pkt_set_ip_reassembled(
struct net_pkt *pkt,
1048 pkt->ip_reassembled = reassembled;
1051static inline bool net_pkt_is_ip_reassembled(
struct net_pkt *pkt)
1058static inline void net_pkt_set_ip_reassembled(
struct net_pkt *pkt,
1062 ARG_UNUSED(reassembled);
1068 return pkt->priority;
1071static inline void net_pkt_set_priority(
struct net_pkt *pkt,
1074 pkt->priority = priority;
1077#if defined(CONFIG_NET_CAPTURE_COOKED_MODE)
1078static inline bool net_pkt_is_cooked_mode(
struct net_pkt *pkt)
1080 return pkt->cooked_mode_pkt;
1083static inline void net_pkt_set_cooked_mode(
struct net_pkt *pkt,
bool value)
1085 pkt->cooked_mode_pkt = value;
1088static inline bool net_pkt_is_cooked_mode(
struct net_pkt *pkt)
1095static inline void net_pkt_set_cooked_mode(
struct net_pkt *pkt,
bool value)
1102#if defined(CONFIG_NET_VLAN)
1108static inline void net_pkt_set_vlan_tag(
struct net_pkt *pkt,
uint16_t tag)
1118static inline void net_pkt_set_vlan_priority(
struct net_pkt *pkt,
1124static inline bool net_pkt_vlan_dei(
struct net_pkt *pkt)
1129static inline void net_pkt_set_vlan_dei(
struct net_pkt *pkt,
bool dei)
1134static inline void net_pkt_set_vlan_tci(
struct net_pkt *pkt,
uint16_t tci)
1136 pkt->vlan_tci = tci;
1141 return pkt->vlan_tci;
1151static inline void net_pkt_set_vlan_tag(
struct net_pkt *pkt,
uint16_t tag)
1164static inline bool net_pkt_vlan_dei(
struct net_pkt *pkt)
1171static inline void net_pkt_set_vlan_dei(
struct net_pkt *pkt,
bool dei)
1184static inline void net_pkt_set_vlan_tci(
struct net_pkt *pkt,
uint16_t tci)
1191#if defined(CONFIG_NET_PKT_TIMESTAMP) || defined(CONFIG_NET_PKT_TXTIME)
1194 return &pkt->timestamp;
1197static inline void net_pkt_set_timestamp(
struct net_pkt *pkt,
1200 pkt->timestamp.second = timestamp->
second;
1201 pkt->timestamp.nanosecond = timestamp->
nanosecond;
1209static inline void net_pkt_set_timestamp_ns(
struct net_pkt *pkt,
net_time_t timestamp)
1221static inline void net_pkt_set_timestamp(
struct net_pkt *pkt,
1225 ARG_UNUSED(timestamp);
1235static inline void net_pkt_set_timestamp_ns(
struct net_pkt *pkt,
net_time_t timestamp)
1238 ARG_UNUSED(timestamp);
1242#if defined(CONFIG_NET_PKT_RXTIME_STATS) || defined(CONFIG_NET_PKT_TXTIME_STATS) || \
1243 defined(CONFIG_TRACING_NET_CORE)
1247 return pkt->create_time;
1250static inline void net_pkt_set_create_time(
struct net_pkt *pkt,
1253 pkt->create_time = create_time;
1263static inline void net_pkt_set_create_time(
struct net_pkt *pkt,
1267 ARG_UNUSED(create_time);
1273#if defined(CONFIG_NET_PKT_TXTIME_STATS_DETAIL) || \
1274 defined(CONFIG_NET_PKT_RXTIME_STATS_DETAIL)
1277 return pkt->detail.stat;
1280static inline int net_pkt_stats_tick_count(
struct net_pkt *pkt)
1282 return pkt->detail.count;
1285static inline void net_pkt_stats_tick_reset(
struct net_pkt *pkt)
1287 memset(&pkt->detail, 0,
sizeof(pkt->detail));
1293 if (pkt->detail.count >= NET_PKT_DETAIL_STATS_COUNT) {
1294 LOG_ERR(
"Detail stats count overflow (%d >= %d)",
1295 pkt->detail.count, NET_PKT_DETAIL_STATS_COUNT);
1299 pkt->detail.stat[pkt->detail.count++] = tick;
1302#define net_pkt_set_tx_stats_tick(pkt, tick) net_pkt_set_stats_tick(pkt, tick)
1303#define net_pkt_set_rx_stats_tick(pkt, tick) net_pkt_set_stats_tick(pkt, tick)
1312static inline int net_pkt_stats_tick_count(
struct net_pkt *pkt)
1319static inline void net_pkt_stats_tick_reset(
struct net_pkt *pkt)
1324static inline void net_pkt_set_stats_tick(
struct net_pkt *pkt,
uint32_t tick)
1330#define net_pkt_set_tx_stats_tick(pkt, tick)
1331#define net_pkt_set_rx_stats_tick(pkt, tick)
1345static inline bool net_pkt_is_empty(
struct net_pkt *pkt)
1352 return &pkt->lladdr_src;
1357 return &pkt->lladdr_dst;
1360static inline void net_pkt_lladdr_swap(
struct net_pkt *pkt)
1365 net_pkt_lladdr_src(pkt)->
addr,
1366 net_pkt_lladdr_src(pkt)->
len);
1368 net_pkt_lladdr_dst(pkt)->
addr,
1369 net_pkt_lladdr_dst(pkt)->
len);
1372 net_pkt_lladdr_src(pkt)->
len);
1375static inline void net_pkt_lladdr_clear(
struct net_pkt *pkt)
1383 return pkt->ll_proto_type;
1388 pkt->ll_proto_type =
type;
1391#if defined(CONFIG_NET_IPV4_ACD)
1392static inline bool net_pkt_ipv4_acd(
struct net_pkt *pkt)
1394 return !!(pkt->ipv4_acd_arp_msg);
1397static inline void net_pkt_set_ipv4_acd(
struct net_pkt *pkt,
1398 bool is_acd_arp_msg)
1400 pkt->ipv4_acd_arp_msg = is_acd_arp_msg;
1403static inline bool net_pkt_ipv4_acd(
struct net_pkt *pkt)
1410static inline void net_pkt_set_ipv4_acd(
struct net_pkt *pkt,
1411 bool is_acd_arp_msg)
1414 ARG_UNUSED(is_acd_arp_msg);
1418#if defined(CONFIG_NET_LLDP)
1419static inline bool net_pkt_is_lldp(
struct net_pkt *pkt)
1421 return !!(pkt->lldp_pkt);
1424static inline void net_pkt_set_lldp(
struct net_pkt *pkt,
bool is_lldp)
1426 pkt->lldp_pkt = is_lldp;
1429static inline bool net_pkt_is_lldp(
struct net_pkt *pkt)
1436static inline void net_pkt_set_lldp(
struct net_pkt *pkt,
bool is_lldp)
1439 ARG_UNUSED(is_lldp);
1443#if defined(CONFIG_NET_L2_PPP)
1444static inline bool net_pkt_is_ppp(
struct net_pkt *pkt)
1446 return !!(pkt->ppp_msg);
1449static inline void net_pkt_set_ppp(
struct net_pkt *pkt,
1452 pkt->ppp_msg = is_ppp_msg;
1455static inline bool net_pkt_is_ppp(
struct net_pkt *pkt)
1462static inline void net_pkt_set_ppp(
struct net_pkt *pkt,
1466 ARG_UNUSED(is_ppp_msg);
1470#if defined(CONFIG_NET_PKT_CONTROL_BLOCK)
1471static inline void *net_pkt_cb(
struct net_pkt *pkt)
1476static inline void *net_pkt_cb(
struct net_pkt *pkt)
1484#define NET_IPV6_HDR(pkt) ((struct net_ipv6_hdr *)net_pkt_ip_data(pkt))
1485#define NET_IPV4_HDR(pkt) ((struct net_ipv4_hdr *)net_pkt_ip_data(pkt))
1487static inline void net_pkt_set_src_ipv6_addr(
struct net_pkt *pkt)
1490 net_pkt_context(pkt)),
1494static inline void net_pkt_set_overwrite(
struct net_pkt *pkt,
bool overwrite)
1496 pkt->overwrite = overwrite;
1499static inline bool net_pkt_is_being_overwritten(
struct net_pkt *pkt)
1501 return !!(pkt->overwrite);
1504#ifdef CONFIG_NET_PKT_FILTER
1506bool net_pkt_filter_send_ok(
struct net_pkt *pkt);
1507bool net_pkt_filter_recv_ok(
struct net_pkt *pkt);
1511static inline bool net_pkt_filter_send_ok(
struct net_pkt *pkt)
1518static inline bool net_pkt_filter_recv_ok(
struct net_pkt *pkt)
1527#if defined(CONFIG_NET_PKT_FILTER) && \
1528 (defined(CONFIG_NET_PKT_FILTER_IPV4_HOOK) || defined(CONFIG_NET_PKT_FILTER_IPV6_HOOK))
1530bool net_pkt_filter_ip_recv_ok(
struct net_pkt *pkt);
1534static inline bool net_pkt_filter_ip_recv_ok(
struct net_pkt *pkt)
1543#if defined(CONFIG_NET_PKT_FILTER) && defined(CONFIG_NET_PKT_FILTER_LOCAL_IN_HOOK)
1545bool net_pkt_filter_local_in_recv_ok(
struct net_pkt *pkt);
1549static inline bool net_pkt_filter_local_in_recv_ok(
struct net_pkt *pkt)
1558#if defined(CONFIG_NET_OFFLOAD) || defined(CONFIG_NET_L2_IPIP)
1561 return &pkt->remote;
1564static inline void net_pkt_set_remote_address(
struct net_pkt *pkt,
1568 memcpy(&pkt->remote, address, len);
1587#define NET_PKT_SLAB_DEFINE(name, count) \
1588 K_MEM_SLAB_DEFINE(name, sizeof(struct net_pkt), count, 4); \
1589 NET_PKT_ALLOC_STATS_DEFINE(pkt_alloc_stats_##name, name)
1594#define NET_PKT_TX_SLAB_DEFINE(name, count) NET_PKT_SLAB_DEFINE(name, count)
1611#define NET_PKT_DATA_POOL_DEFINE(name, count) \
1612 NET_BUF_POOL_DEFINE(name, count, CONFIG_NET_BUF_DATA_SIZE, \
1617#if defined(CONFIG_NET_DEBUG_NET_PKT_ALLOC) || \
1618 (CONFIG_NET_PKT_LOG_LEVEL >= LOG_LEVEL_DBG)
1619#define NET_PKT_DEBUG_ENABLED
1622#if defined(NET_PKT_DEBUG_ENABLED)
1634#define net_pkt_get_reserve_data(pool, min_len, timeout) \
1635 net_pkt_get_reserve_data_debug(pool, min_len, timeout, __func__, __LINE__)
1637struct net_buf *net_pkt_get_reserve_rx_data_debug(
size_t min_len,
1641#define net_pkt_get_reserve_rx_data(min_len, timeout) \
1642 net_pkt_get_reserve_rx_data_debug(min_len, timeout, __func__, __LINE__)
1644struct net_buf *net_pkt_get_reserve_tx_data_debug(
size_t min_len,
1648#define net_pkt_get_reserve_tx_data(min_len, timeout) \
1649 net_pkt_get_reserve_tx_data_debug(min_len, timeout, __func__, __LINE__)
1651struct net_buf *net_pkt_get_frag_debug(
struct net_pkt *pkt,
size_t min_len,
1653 const char *caller,
int line);
1654#define net_pkt_get_frag(pkt, min_len, timeout) \
1655 net_pkt_get_frag_debug(pkt, min_len, timeout, __func__, __LINE__)
1657void net_pkt_unref_debug(
struct net_pkt *pkt,
const char *caller,
int line);
1658#define net_pkt_unref(pkt) net_pkt_unref_debug(pkt, __func__, __LINE__)
1660struct net_pkt *net_pkt_ref_debug(
struct net_pkt *pkt,
const char *caller,
1662#define net_pkt_ref(pkt) net_pkt_ref_debug(pkt, __func__, __LINE__)
1665 const char *caller,
int line);
1666#define net_pkt_frag_ref(frag) net_pkt_frag_ref_debug(frag, __func__, __LINE__)
1668void net_pkt_frag_unref_debug(
struct net_buf *frag,
1669 const char *caller,
int line);
1670#define net_pkt_frag_unref(frag) \
1671 net_pkt_frag_unref_debug(frag, __func__, __LINE__)
1676 const char *caller,
int line);
1677#define net_pkt_frag_del(pkt, parent, frag) \
1678 net_pkt_frag_del_debug(pkt, parent, frag, __func__, __LINE__)
1680void net_pkt_frag_add_debug(
struct net_pkt *pkt,
struct net_buf *frag,
1681 const char *caller,
int line);
1682#define net_pkt_frag_add(pkt, frag) \
1683 net_pkt_frag_add_debug(pkt, frag, __func__, __LINE__)
1685void net_pkt_frag_insert_debug(
struct net_pkt *pkt,
struct net_buf *frag,
1686 const char *caller,
int line);
1687#define net_pkt_frag_insert(pkt, frag) \
1688 net_pkt_frag_insert_debug(pkt, frag, __func__, __LINE__)
1694#if defined(NET_PKT_DEBUG_ENABLED)
1704#define net_pkt_print_frags(pkt)
1707#if !defined(NET_PKT_DEBUG_ENABLED)
1726#if !defined(NET_PKT_DEBUG_ENABLED)
1744#if !defined(NET_PKT_DEBUG_ENABLED)
1762#if !defined(NET_PKT_DEBUG_ENABLED)
1779#if !defined(NET_PKT_DEBUG_ENABLED)
1792#if !defined(NET_PKT_DEBUG_ENABLED)
1805#if !defined(NET_PKT_DEBUG_ENABLED)
1818#if !defined(NET_PKT_DEBUG_ENABLED)
1827#if !defined(NET_PKT_DEBUG_ENABLED)
1843#if !defined(NET_PKT_DEBUG_ENABLED)
1853#if !defined(NET_PKT_DEBUG_ENABLED)
1880 struct k_mem_slab **tx,
1886#if defined(CONFIG_NET_DEBUG_NET_PKT_ALLOC)
1890void net_pkt_print(
void);
1892typedef void (*net_pkt_allocs_cb_t)(
struct net_pkt *pkt,
1894 const char *func_alloc,
1896 const char *func_free,
1901void net_pkt_allocs_foreach(net_pkt_allocs_cb_t cb,
void *
user_data);
1903const char *net_pkt_slab2str(
struct k_mem_slab *slab);
1904const char *net_pkt_pool2str(
struct net_buf_pool *pool);
1907#define net_pkt_print(...)
1913#if defined(NET_PKT_DEBUG_ENABLED)
1916 const char *caller,
int line);
1917#define net_pkt_alloc(_timeout) \
1918 net_pkt_alloc_debug(_timeout, __func__, __LINE__)
1920struct net_pkt *net_pkt_alloc_from_slab_debug(
struct k_mem_slab *
slab,
1922 const char *caller,
int line);
1923#define net_pkt_alloc_from_slab(_slab, _timeout) \
1924 net_pkt_alloc_from_slab_debug(_slab, _timeout, __func__, __LINE__)
1927 const char *caller,
int line);
1928#define net_pkt_rx_alloc(_timeout) \
1929 net_pkt_rx_alloc_debug(_timeout, __func__, __LINE__)
1935#define net_pkt_alloc_on_iface(_iface, _timeout) \
1936 net_pkt_alloc_on_iface_debug(_iface, _timeout, __func__, __LINE__)
1942#define net_pkt_rx_alloc_on_iface(_iface, _timeout) \
1943 net_pkt_rx_alloc_on_iface_debug(_iface, _timeout, \
1946int net_pkt_alloc_buffer_debug(
struct net_pkt *pkt,
1950 const char *caller,
int line);
1951#define net_pkt_alloc_buffer(_pkt, _size, _proto, _timeout) \
1952 net_pkt_alloc_buffer_debug(_pkt, _size, _proto, _timeout, \
1955int net_pkt_alloc_buffer_raw_debug(
struct net_pkt *pkt,
size_t size,
1957 const char *caller,
int line);
1958#define net_pkt_alloc_buffer_raw(_pkt, _size, _timeout) \
1959 net_pkt_alloc_buffer_raw_debug(_pkt, _size, _timeout, \
1969#define net_pkt_alloc_with_buffer(_iface, _size, _family, \
1971 net_pkt_alloc_with_buffer_debug(_iface, _size, _family, \
1982#define net_pkt_rx_alloc_with_buffer(_iface, _size, _family, \
1984 net_pkt_rx_alloc_with_buffer_debug(_iface, _size, _family, \
1988int net_pkt_alloc_buffer_with_reserve_debug(
struct net_pkt *pkt,
1995#define net_pkt_alloc_buffer_with_reserve(_pkt, _size, _reserve, _proto, _timeout) \
1996 net_pkt_alloc_buffer_with_reserve_debug(_pkt, _size, _reserve, _proto, \
1997 _timeout, __func__, __LINE__)
2002#if !defined(NET_PKT_DEBUG_ENABLED)
2016#if !defined(NET_PKT_DEBUG_ENABLED)
2035#if !defined(NET_PKT_DEBUG_ENABLED)
2049#if !defined(NET_PKT_DEBUG_ENABLED)
2070#if !defined(NET_PKT_DEBUG_ENABLED)
2092#if !defined(NET_PKT_DEBUG_ENABLED)
2110#if !defined(NET_PKT_DEBUG_ENABLED)
2135#if !defined(NET_PKT_DEBUG_ENABLED)
2246 struct net_pkt_cursor *backup)
2248 backup->buf = pkt->
cursor.buf;
2249 backup->pos = pkt->
cursor.pos;
2259 struct net_pkt_cursor *backup)
2261 pkt->
cursor.buf = backup->buf;
2262 pkt->
cursor.pos = backup->pos;
2671struct net_pkt_data_access {
2672#if !defined(CONFIG_NET_HEADERS_ALWAYS_CONTIGUOUS)
2678#if defined(CONFIG_NET_HEADERS_ALWAYS_CONTIGUOUS)
2679#define NET_PKT_DATA_ACCESS_DEFINE(_name, _type) \
2680 struct net_pkt_data_access _name = { \
2681 .size = sizeof(_type), \
2684#define NET_PKT_DATA_ACCESS_CONTIGUOUS_DEFINE(_name, _type) \
2685 NET_PKT_DATA_ACCESS_DEFINE(_name, _type)
2688#define NET_PKT_DATA_ACCESS_DEFINE(_name, _type) \
2689 _type _hdr_##_name; \
2690 struct net_pkt_data_access _name = { \
2691 .data = &_hdr_##_name, \
2692 .size = sizeof(_type), \
2695#define NET_PKT_DATA_ACCESS_CONTIGUOUS_DEFINE(_name, _type) \
2696 struct net_pkt_data_access _name = { \
2698 .size = sizeof(_type), \
2719 struct net_pkt_data_access *access);
2735 struct net_pkt_data_access *access);
2742 struct net_pkt_data_access *access)
long atomic_t
Definition atomic_types.h:15
VLAN specific definitions.
uint32_t net_socklen_t
Length of a socket address.
Definition net_ip.h:171
#define net_htonl(x)
Convert 32-bit value from host to network byte order.
Definition net_ip.h:132
unsigned short int net_sa_family_t
Socket address family type.
Definition net_ip.h:168
#define net_htons(x)
Convert 16-bit value from host to network byte order.
Definition net_ip.h:124
net_ip_protocol
Protocol numbers from IANA/BSD.
Definition net_ip.h:64
#define LOG_ERR(...)
Writes an ERROR level message to the log.
Definition log.h:62
static size_t net_buf_frags_len(const struct net_buf *buf)
Calculate amount of bytes stored in fragments.
Definition net_buf.h:2756
static struct net_if * net_context_get_iface(struct net_context *context)
Get network interface for this context.
Definition net_context.h:752
static struct net_linkaddr * net_if_get_link_addr(struct net_if *iface)
Get an network interface's link address.
Definition net_if.h:1229
static const struct net_in6_addr * net_if_ipv6_select_src_addr(struct net_if *iface, const struct net_in6_addr *dst)
Get a IPv6 source address that should be used when sending network data to destination.
Definition net_if.h:2238
static int net_linkaddr_clear(struct net_linkaddr *lladdr)
Clear link address.
Definition net_linkaddr.h:209
void net_pkt_frag_add(struct net_pkt *pkt, struct net_buf *frag)
Add a fragment to a packet at the end of its fragment list.
static int net_pkt_write_be32(struct net_pkt *pkt, uint32_t data)
Write a uint32_t big endian data to a net_pkt.
Definition net_pkt.h:2541
int net_pkt_alloc_buffer_with_reserve(struct net_pkt *pkt, size_t size, size_t reserve, enum net_ip_protocol proto, k_timeout_t timeout)
Allocate buffer for a net_pkt and reserve some space in the first net_buf.
void net_pkt_cursor_init(struct net_pkt *pkt)
Initialize net_pkt cursor.
int net_pkt_read_le32(struct net_pkt *pkt, uint32_t *data)
Read uint32_t little endian data from a net_pkt.
int net_pkt_skip(struct net_pkt *pkt, size_t length)
Skip some data from a net_pkt.
struct net_pkt * net_pkt_shallow_clone(struct net_pkt *pkt, k_timeout_t timeout)
Clone pkt and increase the refcount of its buffer.
void net_pkt_append_buffer(struct net_pkt *pkt, struct net_buf *buffer)
Append a buffer in packet.
#define net_pkt_print_frags(pkt)
Definition net_pkt.h:1704
int net_pkt_update_length(struct net_pkt *pkt, size_t length)
Update the overall length of a packet.
int net_pkt_pull(struct net_pkt *pkt, size_t length)
Remove data from the start of the packet.
int net_pkt_copy(struct net_pkt *pkt_dst, struct net_pkt *pkt_src, size_t length)
Copy data from a packet into another one.
struct net_pkt * net_pkt_rx_alloc(k_timeout_t timeout)
Allocate an initialized net_pkt for RX.
struct net_pkt * net_pkt_ref(struct net_pkt *pkt)
Increase the packet ref count.
struct net_pkt * net_pkt_alloc_with_buffer(struct net_if *iface, size_t size, net_sa_family_t family, enum net_ip_protocol proto, k_timeout_t timeout)
Allocate a network packet and buffer at once.
int net_pkt_read_be16(struct net_pkt *pkt, uint16_t *data)
Read uint16_t big endian data from a net_pkt.
int net_pkt_alloc_buffer_raw(struct net_pkt *pkt, size_t size, k_timeout_t timeout)
Allocate buffer for a net_pkt, of specified size, w/o any additional preconditions.
void net_pkt_frag_unref(struct net_buf *frag)
Decrease the packet fragment ref count.
struct net_pkt * net_pkt_rx_clone(struct net_pkt *pkt, k_timeout_t timeout)
Clone pkt and its buffer.
struct net_buf * net_pkt_get_reserve_data(struct net_buf_pool *pool, size_t min_len, k_timeout_t timeout)
Get a data buffer from a given pool.
void net_pkt_trim_buffer(struct net_pkt *pkt)
Trim net_pkt buffer.
struct net_pkt * net_pkt_alloc_on_iface(struct net_if *iface, k_timeout_t timeout)
Allocate a network packet for a specific network interface.
void net_pkt_get_info(struct k_mem_slab **rx, struct k_mem_slab **tx, struct net_buf_pool **rx_data, struct net_buf_pool **tx_data)
Get information about predefined RX, TX and DATA pools.
void net_pkt_unref(struct net_pkt *pkt)
Place packet back into the available packets slab.
static int net_pkt_write_be16(struct net_pkt *pkt, uint16_t data)
Write a uint16_t big endian data to a net_pkt.
Definition net_pkt.h:2522
struct net_pkt * net_pkt_alloc(k_timeout_t timeout)
Allocate an initialized net_pkt.
int net_pkt_read(struct net_pkt *pkt, void *data, size_t length)
Read some data from a net_pkt.
static size_t net_pkt_get_len(struct net_pkt *pkt)
Get the total amount of bytes stored in a packet.
Definition net_pkt.h:2602
struct net_buf * net_pkt_frag_del(struct net_pkt *pkt, struct net_buf *parent, struct net_buf *frag)
Delete existing fragment from a packet.
int net_pkt_set_data(struct net_pkt *pkt, struct net_pkt_data_access *access)
Set contiguous data into a network packet.
int net_pkt_read_le64(struct net_pkt *pkt, uint64_t *data)
Read uint64_t little endian data from a net_pkt.
void * net_pkt_get_data(struct net_pkt *pkt, struct net_pkt_data_access *access)
Get data from a network packet in a contiguous way.
static int net_pkt_write_u8(struct net_pkt *pkt, uint8_t data)
Write a byte (uint8_t) data to a net_pkt.
Definition net_pkt.h:2505
size_t net_pkt_available_payload_buffer(struct net_pkt *pkt, enum net_ip_protocol proto)
Get available buffer space for payload from a pkt.
int net_pkt_read_le16(struct net_pkt *pkt, uint16_t *data)
Read uint16_t little endian data from a net_pkt.
int net_pkt_read_be32(struct net_pkt *pkt, uint32_t *data)
Read uint32_t big endian data from a net_pkt.
int net_pkt_remove_tail(struct net_pkt *pkt, size_t length)
Remove length bytes from tail of packet.
struct net_buf * net_pkt_get_reserve_tx_data(size_t min_len, k_timeout_t timeout)
Get TX DATA buffer from pool.
static void * net_pkt_cursor_get_pos(struct net_pkt *pkt)
Returns current position of the cursor.
Definition net_pkt.h:2272
void net_pkt_frag_insert(struct net_pkt *pkt, struct net_buf *frag)
Insert a fragment to a packet at the beginning of its fragment list.
int net_pkt_memset(struct net_pkt *pkt, int byte, size_t length)
Memset some data in a net_pkt.
static void net_pkt_cursor_backup(struct net_pkt *pkt, struct net_pkt_cursor *backup)
Backup net_pkt cursor.
Definition net_pkt.h:2245
void net_pkt_compact(struct net_pkt *pkt)
Compact the fragment list of a packet.
static int net_pkt_acknowledge_data(struct net_pkt *pkt, struct net_pkt_data_access *access)
Acknowledge previously contiguous data taken from a network packet Packet needs to be set to overwrit...
Definition net_pkt.h:2741
static int net_pkt_write_le16(struct net_pkt *pkt, uint16_t data)
Write a uint16_t little endian data to a net_pkt.
Definition net_pkt.h:2579
static void net_pkt_cursor_restore(struct net_pkt *pkt, struct net_pkt_cursor *backup)
Restore net_pkt cursor from a backup.
Definition net_pkt.h:2258
uint16_t net_pkt_get_current_offset(struct net_pkt *pkt)
Get the actual offset in the packet from its cursor.
size_t net_pkt_remaining_data(struct net_pkt *pkt)
Get the amount of data which can be read from current cursor position.
int net_pkt_alloc_buffer(struct net_pkt *pkt, size_t size, enum net_ip_protocol proto, k_timeout_t timeout)
Allocate buffer for a net_pkt.
int net_pkt_write(struct net_pkt *pkt, const void *data, size_t length)
Write data into a net_pkt.
struct net_buf * net_pkt_frag_ref(struct net_buf *frag)
Increase the packet fragment ref count.
size_t net_pkt_available_buffer(struct net_pkt *pkt)
Get available buffer space from a pkt.
struct net_pkt * net_pkt_clone(struct net_pkt *pkt, k_timeout_t timeout)
Clone pkt and its buffer.
struct net_pkt * net_pkt_alloc_from_slab(struct k_mem_slab *slab, k_timeout_t timeout)
Allocate an initialized net_pkt from a specific slab.
static int net_pkt_write_le32(struct net_pkt *pkt, uint32_t data)
Write a uint32_t little endian data to a net_pkt.
Definition net_pkt.h:2560
int net_pkt_read_be64(struct net_pkt *pkt, uint64_t *data)
Read uint64_t big endian data from a net_pkt.
struct net_buf * net_pkt_get_reserve_rx_data(size_t min_len, k_timeout_t timeout)
Get RX DATA buffer from pool.
bool net_pkt_is_contiguous(struct net_pkt *pkt, size_t size)
Check if a data size could fit contiguously.
static int net_pkt_read_u8(struct net_pkt *pkt, uint8_t *data)
Read a byte (uint8_t) from a net_pkt.
Definition net_pkt.h:2389
struct net_buf * net_pkt_get_frag(struct net_pkt *pkt, size_t min_len, k_timeout_t timeout)
Get a data fragment that might be from user specific buffer pool or from global DATA pool.
size_t net_pkt_get_contiguous_len(struct net_pkt *pkt)
Get the contiguous buffer space.
int64_t net_time_t
Any occurrence of net_time_t specifies a concept of nanosecond resolution scalar time span,...
Definition net_time.h:103
static net_time_t net_ptp_time_to_ns(struct net_ptp_time *ts)
Convert a PTP timestamp to a nanosecond precision timestamp, both related to the local network refere...
Definition ptp_time.h:210
static struct net_ptp_time ns_to_net_ptp_time(net_time_t nsec)
Convert a nanosecond precision timestamp to a PTP timestamp, both related to the local network refere...
Definition ptp_time.h:231
struct _snode sys_snode_t
Single-linked list node structure.
Definition slist.h:39
#define IS_ENABLED(config_macro)
Check for macro definition in compiler-visible expressions.
Definition util_macro.h:154
static uint16_t net_eth_vlan_set_vid(uint16_t tci, uint16_t vid)
Set VLAN identifier to TCI.
Definition ethernet_vlan.h:81
static uint8_t net_eth_vlan_get_dei(uint16_t tci)
Get Drop Eligible Indicator from TCI.
Definition ethernet_vlan.h:56
#define NET_VLAN_TAG_UNSPEC
Unspecified VLAN tag value.
Definition ethernet_vlan.h:32
static uint16_t net_eth_vlan_set_dei(uint16_t tci, bool dei)
Set Drop Eligible Indicator to TCI.
Definition ethernet_vlan.h:94
static uint16_t net_eth_vlan_get_vid(uint16_t tci)
Get VLAN identifier from TCI.
Definition ethernet_vlan.h:44
static uint16_t net_eth_vlan_set_pcp(uint16_t tci, uint8_t pcp)
Set Priority Code Point to TCI.
Definition ethernet_vlan.h:107
static uint8_t net_eth_vlan_get_pcp(uint16_t tci)
Get Priority Code Point from TCI.
Definition ethernet_vlan.h:68
#define NULL
Definition iar_missing_defs.h:20
Packet data common to all IEEE 802.15.4 L2 layers.
Network context definitions.
Network core definitions.
Public API for network interface.
IPv6 and IPv4 definitions.
Public API for network link address.
Representation of nanosecond resolution elapsed time and timestamps in the network stack.
flags
Definition parser.h:97
Public functions for the Precision Time Protocol time specification.
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
__INTPTR_TYPE__ intptr_t
Definition stdint.h:104
__UINT64_TYPE__ uint64_t
Definition stdint.h:91
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
__UINT16_TYPE__ uint16_t
Definition stdint.h:89
void * memset(void *buf, int c, size_t n)
void * memcpy(void *ZRESTRICT d, const void *ZRESTRICT s, size_t n)
Kernel timeout type.
Definition clock.h:65
Network buffer pool representation.
Definition net_buf.h:1088
Network buffer representation.
Definition net_buf.h:1015
uint8_t * data
Pointer to the start of data in the buffer.
Definition net_buf.h:1041
uint8_t user_data[]
System metadata for this buffer.
Definition net_buf.h:1062
uint16_t len
Length of the data behind the data pointer.
Definition net_buf.h:1044
Note that we do not store the actual source IP address in the context because the address is already ...
Definition net_context.h:209
Network Interface structure.
Definition net_if.h:731
IPv6 address struct.
Definition net_ip.h:143
Hardware link address structure.
Definition net_linkaddr.h:83
uint8_t addr[6]
The array of bytes representing the address.
Definition net_linkaddr.h:91
uint8_t type
What kind of address is this for.
Definition net_linkaddr.h:85
uint8_t len
The real length of the ll address.
Definition net_linkaddr.h:88
Network packet.
Definition net_pkt.h:95
struct net_buf * frags
buffer fragment
Definition net_pkt.h:107
struct net_context * context
Network connection context.
Definition net_pkt.h:115
struct net_pkt_cursor cursor
Internal buffer iterator used for reading/writing.
Definition net_pkt.h:112
struct net_if * iface
Network interface.
Definition net_pkt.h:118
intptr_t fifo
The fifo is used by RX/TX threads and by socket layer.
Definition net_pkt.h:100
struct net_buf * buffer
alias to a buffer fragment
Definition net_pkt.h:108
struct k_mem_slab * slab
Slab pointer from where it belongs to.
Definition net_pkt.h:103
(Generalized) Precision Time Protocol Timestamp format.
Definition ptp_time.h:111
uint32_t nanosecond
Nanoseconds.
Definition ptp_time.h:134
uint64_t second
Second value.
Definition ptp_time.h:130
Generic sockaddr struct.
Definition net_ip.h:448
#define sys_cpu_to_le32(val)
Convert 32-bit integer from host endianness to little-endian.
Definition byteorder.h:272
#define sys_cpu_to_le16(val)
Convert 16-bit integer from host endianness to little-endian.
Definition byteorder.h:268