Zephyr Project API 4.4.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
net_if.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2016 Intel Corporation.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
11
12#ifndef ZEPHYR_INCLUDE_NET_NET_IF_H_
13#define ZEPHYR_INCLUDE_NET_NET_IF_H_
14
23
24#include <zephyr/device.h>
25#include <zephyr/sys/slist.h>
27#include <zephyr/net/net_core.h>
28#include <zephyr/net/hostname.h>
30#include <zephyr/net/net_ip.h>
31#include <zephyr/net/net_l2.h>
34
35#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
36#include <zephyr/net/dhcpv4.h>
37#endif
38#if defined(CONFIG_NET_DHCPV6) && defined(CONFIG_NET_NATIVE_IPV6)
39#include <zephyr/net/dhcpv6.h>
40#endif
41#if defined(CONFIG_NET_IPV4_AUTO) && defined(CONFIG_NET_NATIVE_IPV4)
43#endif
44
46
47#ifdef __cplusplus
48extern "C" {
49#endif
50
58 struct net_addr address;
59
64
65#if defined(CONFIG_NET_NATIVE_IPV6)
66 struct net_timeout lifetime;
67#endif
68
71
74
75#if defined(CONFIG_NET_NATIVE_IPV6)
76#if defined(CONFIG_NET_IPV6_PE)
80 uint32_t addr_create_time;
81
84 uint32_t addr_preferred_lifetime;
85
90 int32_t addr_timeout;
91#endif
92#endif /* CONFIG_NET_NATIVE_IPV6 */
93
94 union {
95#if defined(CONFIG_NET_IPV6_DAD)
96 struct {
98 sys_snode_t dad_node;
99
101 sys_snode_t dad_need_node;
102
104 uint32_t dad_start;
105
107 uint8_t dad_count;
108 };
109#endif /* CONFIG_NET_IPV6_DAD */
110#if defined(CONFIG_NET_IPV4_ACD)
111 struct {
113 sys_snode_t acd_node;
114
116 sys_snode_t acd_need_node;
117
119 k_timepoint_t acd_timeout;
120
122 uint8_t acd_count;
123
125 uint8_t acd_state;
126 };
127#endif /* CONFIG_NET_IPV4_ACD */
128 uint8_t _dummy;
129 };
130
131#if defined(CONFIG_NET_IPV6_DAD) || defined(CONFIG_NET_IPV4_ACD)
133 uint8_t ifindex;
134#endif
135
138
141
144
149
152
153 uint8_t _unused : 3;
154};
155
163 struct net_addr address;
164
169
172
173#if defined(CONFIG_NET_IPV4_IGMPV3)
175 struct net_addr sources[CONFIG_NET_IF_MCAST_IPV4_SOURCE_COUNT];
176
178 uint16_t sources_len;
179
181 uint8_t record_type;
182#endif
183
186
189
190 uint8_t _unused : 6;
191};
192
201
204
206 struct net_if *iface;
207
210
213
216
219
220 uint8_t _unused : 5;
221};
222
231
233 struct net_addr address;
234
236 struct net_if *iface;
237
240
243
246
249
252
253 uint8_t _unused : 5;
254};
255
311
322
323#if defined(CONFIG_NET_OFFLOAD)
324struct net_offload;
325#endif /* CONFIG_NET_OFFLOAD */
326
328#if defined(CONFIG_NET_IPV6)
329#define NET_IF_MAX_IPV6_ADDR CONFIG_NET_IF_UNICAST_IPV6_ADDR_COUNT
330#define NET_IF_MAX_IPV6_MADDR CONFIG_NET_IF_MCAST_IPV6_ADDR_COUNT
331#define NET_IF_MAX_IPV6_PREFIX CONFIG_NET_IF_IPV6_PREFIX_COUNT
332#else
333#define NET_IF_MAX_IPV6_ADDR 0
334#define NET_IF_MAX_IPV6_MADDR 0
335#define NET_IF_MAX_IPV6_PREFIX 0
336#endif
337/* @endcond */
338
342 struct net_if_addr unicast[NET_IF_MAX_IPV6_ADDR];
343
345 struct net_if_mcast_addr mcast[NET_IF_MAX_IPV6_MADDR];
346
348 struct net_if_ipv6_prefix prefix[NET_IF_MAX_IPV6_PREFIX];
349
352
355
358
359#if defined(CONFIG_NET_IPV6_IID_STABLE)
361 struct net_if_addr *iid;
362
366 uint32_t network_counter;
367#endif /* CONFIG_NET_IPV6_IID_STABLE */
368
369#if defined(CONFIG_NET_IPV6_PE)
374 uint32_t desync_factor;
375#endif /* CONFIG_NET_IPV6_PE */
376
377#if defined(CONFIG_NET_IPV6_ND) && defined(CONFIG_NET_NATIVE_IPV6)
379 sys_snode_t rs_node;
380
381 /* RS start time */
382 uint32_t rs_start;
383
385 uint8_t rs_count;
386#endif
387
390
393
394#if defined(CONFIG_NET_IPV6_ND_RA_TX) && defined(CONFIG_NET_NATIVE_IPV6)
398 int64_t ra_last_sent;
399
403 int64_t ra_pending_at;
404
408 uint8_t is_router : 1;
409#endif
410};
411
412#if defined(CONFIG_NET_DHCPV6) && defined(CONFIG_NET_NATIVE_IPV6)
414struct net_if_dhcpv6 {
416 sys_snode_t node;
417
419 struct net_dhcpv6_duid_storage clientid;
420
422 struct net_dhcpv6_duid_storage serverid;
423
425 enum net_dhcpv6_state state;
426
428 struct net_dhcpv6_params params;
429
431 uint64_t timeout;
432
434 uint64_t exchange_start;
435
437 uint64_t t1;
438
440 uint64_t t2;
441
445 uint64_t expire;
446
448 uint32_t addr_iaid;
449
451 uint32_t prefix_iaid;
452
454 uint32_t retransmit_timeout;
455
457 uint32_t sol_max_rt;
458
460 uint32_t inf_max_rt;
461
465 uint32_t info_refresh_time;
466
468 int16_t server_preference;
469
471 uint8_t retransmissions;
472
474 uint8_t tid[DHCPV6_TID_SIZE];
475
477 uint8_t prefix_len;
478
480 struct net_in6_addr prefix;
481
483 struct net_in6_addr addr;
484};
485#endif /* defined(CONFIG_NET_DHCPV6) && defined(CONFIG_NET_NATIVE_IPV6) */
486
488#if defined(CONFIG_NET_IPV4)
489#define NET_IF_MAX_IPV4_ADDR CONFIG_NET_IF_UNICAST_IPV4_ADDR_COUNT
490#define NET_IF_MAX_IPV4_MADDR CONFIG_NET_IF_MCAST_IPV4_ADDR_COUNT
491#else
492#define NET_IF_MAX_IPV4_ADDR 0
493#define NET_IF_MAX_IPV4_MADDR 0
494#endif
496
508
512 struct net_if_addr_ipv4 unicast[NET_IF_MAX_IPV4_ADDR];
513
515 struct net_if_mcast_addr mcast[NET_IF_MAX_IPV4_MADDR];
516
519
522
525
526#if defined(CONFIG_NET_IPV4_ACD)
528 uint8_t conflict_cnt;
529#endif
530};
531
532#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
533struct net_if_dhcpv4 {
535 sys_snode_t node;
536
538 int64_t timer_start;
539
541 uint32_t request_time;
542
543 uint32_t xid;
544
546 uint32_t lease_time;
547
549 uint32_t renewal_time;
550
552 uint32_t rebinding_time;
553
555 struct net_in_addr server_id;
556
558 struct net_in_addr requested_ip;
559
561 struct net_in_addr netmask;
562
567 enum net_dhcpv4_state state;
568
570 uint8_t attempts;
571
573 struct net_in_addr request_server_addr;
574
576 struct net_in_addr response_src_addr;
577
578#ifdef CONFIG_NET_DHCPV4_OPTION_NTP_SERVER
580 struct net_in_addr ntp_addr;
581#endif
582};
583#endif /* CONFIG_NET_DHCPV4 */
584
585#if defined(CONFIG_NET_IPV4_AUTO) && defined(CONFIG_NET_NATIVE_IPV4)
586struct net_if_ipv4_autoconf {
588 struct net_if *iface;
589
591 struct net_in_addr requested_ip;
592
596};
597#endif /* CONFIG_NET_IPV4_AUTO */
598
602struct net_if_ip {
603#if defined(CONFIG_NET_IPV6)
604 struct net_if_ipv6 *ipv6;
605#endif /* CONFIG_NET_IPV6 */
606
607#if defined(CONFIG_NET_IPV4)
608 struct net_if_ipv4 *ipv4;
609#endif /* CONFIG_NET_IPV4 */
610};
611
616#if defined(CONFIG_NET_IP)
618 struct net_if_ip ip;
619#endif
620
621#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
622 struct net_if_dhcpv4 dhcpv4;
623#endif /* CONFIG_NET_DHCPV4 */
624
625#if defined(CONFIG_NET_DHCPV6) && defined(CONFIG_NET_NATIVE_IPV6)
626 struct net_if_dhcpv6 dhcpv6;
627#endif /* CONFIG_NET_DHCPV6 */
628
629#if defined(CONFIG_NET_IPV4_AUTO) && defined(CONFIG_NET_NATIVE_IPV4)
630 struct net_if_ipv4_autoconf ipv4auto;
631#endif /* CONFIG_NET_IPV4_AUTO */
632
633#if defined(CONFIG_NET_L2_VIRTUAL)
638 sys_slist_t virtual_interfaces;
639#endif /* CONFIG_NET_L2_VIRTUAL */
640
641#if defined(CONFIG_NET_INTERFACE_NAME)
646 char name[CONFIG_NET_INTERFACE_NAME_LEN + 1];
647#endif
648};
649
661 struct k_fifo fifo;
662
663#if NET_TC_COUNT > 1 || defined(CONFIG_NET_TC_TX_SKIP_FOR_HIGH_PRIO) \
664 || defined(CONFIG_NET_TC_RX_SKIP_FOR_HIGH_PRIO)
666 struct k_sem fifo_slot;
667#endif
668
671
674};
675
682typedef int (*net_socket_create_t)(int, int, int);
683
705 const struct device *dev;
706
708 const struct net_l2 * const l2;
709
711 void *l2_data;
712
714 ATOMIC_DEFINE(flags, NET_IF_NUM_FLAGS);
715
717 struct net_linkaddr link_addr;
718
719#if defined(CONFIG_NET_OFFLOAD)
725 struct net_offload *offload;
726#endif /* CONFIG_NET_OFFLOAD */
727
729 uint16_t mtu;
730
731#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
735 net_socket_create_t socket_offload;
736#endif /* CONFIG_NET_SOCKETS_OFFLOAD */
737
739 enum net_if_oper_state oper_state;
740
750 int64_t oper_state_change_time;
754};
755
764struct net_if {
769 struct net_if_dev *if_dev;
770
771#if defined(CONFIG_NET_STATISTICS_PER_INTERFACE)
773 struct net_stats stats;
774
776 IF_ENABLED(CONFIG_NET_STATISTICS_VIA_PROMETHEUS,
777 (struct prometheus_collector *collector);)
778#endif /* CONFIG_NET_STATISTICS_PER_INTERFACE */
779
781 struct net_if_config config;
782
783#if defined(CONFIG_NET_POWER_MANAGEMENT)
788 int tx_pending;
789#endif
790
792 struct k_mutex lock;
793
795 struct k_mutex tx_lock;
796
801 uint8_t pe_enabled : 1;
802
806 uint8_t pe_prefer_public : 1;
807
809 uint8_t _unused : 6;
813};
814
816
817static inline void net_if_lock(struct net_if *iface)
818{
819 NET_ASSERT(iface);
820
821 (void)k_mutex_lock(&iface->lock, K_FOREVER);
822}
823
824static inline void net_if_unlock(struct net_if *iface)
825{
826 NET_ASSERT(iface);
827
828 k_mutex_unlock(&iface->lock);
829}
830
831static inline bool net_if_flag_is_set(struct net_if *iface,
832 enum net_if_flag value);
833
834static inline void net_if_tx_lock(struct net_if *iface)
835{
836 NET_ASSERT(iface);
837
839 return;
840 }
841
842 (void)k_mutex_lock(&iface->tx_lock, K_FOREVER);
843}
844
845static inline void net_if_tx_unlock(struct net_if *iface)
846{
847 NET_ASSERT(iface);
848
850 return;
851 }
852
853 k_mutex_unlock(&iface->tx_lock);
854}
855
857
864static inline void net_if_flag_set(struct net_if *iface,
865 enum net_if_flag value)
866{
867 if (iface == NULL) {
868 return;
869 }
870
871 NET_ASSERT(iface->if_dev != NULL);
872
873 atomic_set_bit(iface->if_dev->flags, value);
874}
875
884static inline bool net_if_flag_test_and_set(struct net_if *iface,
885 enum net_if_flag value)
886{
887 if (iface == NULL) {
888 return false;
889 }
890
891 NET_ASSERT(iface->if_dev != NULL);
892
893 return atomic_test_and_set_bit(iface->if_dev->flags, value);
894}
895
902static inline void net_if_flag_clear(struct net_if *iface,
903 enum net_if_flag value)
904{
905 if (iface == NULL) {
906 return;
907 }
908
909 NET_ASSERT(iface->if_dev != NULL);
910
911 atomic_clear_bit(iface->if_dev->flags, value);
912}
913
922static inline bool net_if_flag_test_and_clear(struct net_if *iface,
923 enum net_if_flag value)
924{
925 if (iface == NULL) {
926 return false;
927 }
928
929 NET_ASSERT(iface->if_dev != NULL);
930
931 return atomic_test_and_clear_bit(iface->if_dev->flags, value);
932}
933
942static inline bool net_if_flag_is_set(struct net_if *iface,
943 enum net_if_flag value)
944{
945 if (iface == NULL) {
946 return false;
947 }
948
949 NET_ASSERT(iface->if_dev != NULL);
950
951 return atomic_test_bit(iface->if_dev->flags, value);
952}
953
963 struct net_if *iface, enum net_if_oper_state oper_state)
964{
965 if (iface == NULL) {
966 return NET_IF_OPER_UNKNOWN;
967 }
968
969 NET_ASSERT(iface->if_dev != NULL);
970
971 if (oper_state <= NET_IF_OPER_UP) {
972 iface->if_dev->oper_state = oper_state;
973 }
974
975 net_if_lock(iface);
976
977 iface->if_dev->oper_state_change_time = k_uptime_get();
978
979 net_if_unlock(iface);
980
981 return iface->if_dev->oper_state;
982}
983
991static inline enum net_if_oper_state net_if_oper_state(struct net_if *iface)
992{
993 if (iface == NULL) {
994 return NET_IF_OPER_UNKNOWN;
995 }
996
997 NET_ASSERT(iface->if_dev != NULL);
998
999 return iface->if_dev->oper_state;
1000}
1001
1014static inline int net_if_oper_state_change_time(struct net_if *iface,
1015 int64_t *change_time)
1016{
1017 if (iface == NULL || change_time == NULL) {
1018 return -EINVAL;
1019 }
1020
1021 NET_ASSERT(iface->if_dev != NULL);
1022
1023 net_if_lock(iface);
1024
1025 *change_time = iface->if_dev->oper_state_change_time;
1026
1027 net_if_unlock(iface);
1028
1029 return 0;
1030}
1031
1042 struct net_pkt *pkt, k_timeout_t timeout);
1043
1053static inline enum net_verdict net_if_send_data(struct net_if *iface,
1054 struct net_pkt *pkt)
1055{
1057
1058 return net_if_try_send_data(iface, pkt, timeout);
1059}
1060
1068static inline const struct net_l2 *net_if_l2(struct net_if *iface)
1069{
1070 if (iface == NULL) {
1071 return NULL;
1072 }
1073
1074 NET_ASSERT(iface->if_dev != NULL);
1075
1076 return iface->if_dev->l2;
1077}
1078
1087enum net_verdict net_if_recv_data(struct net_if *iface, struct net_pkt *pkt);
1088
1096static inline void *net_if_l2_data(struct net_if *iface)
1097{
1098 if (iface == NULL) {
1099 return NULL;
1100 }
1101
1102 NET_ASSERT(iface->if_dev != NULL);
1103
1104 return iface->if_dev->l2_data;
1105}
1106
1114static inline const struct device *net_if_get_device(struct net_if *iface)
1115{
1116 if (iface == NULL) {
1117 return NULL;
1118 }
1119
1120 NET_ASSERT(iface->if_dev != NULL);
1121
1122 return iface->if_dev->dev;
1123}
1124
1132void net_if_try_queue_tx(struct net_if *iface, struct net_pkt *pkt, k_timeout_t timeout);
1133
1141static inline void net_if_queue_tx(struct net_if *iface, struct net_pkt *pkt)
1142{
1144
1145 net_if_try_queue_tx(iface, pkt, timeout);
1146}
1147
1155static inline bool net_if_is_ip_offloaded(struct net_if *iface)
1156{
1157#if defined(CONFIG_NET_OFFLOAD)
1158 __ASSERT_NO_MSG(iface == NULL || iface->if_dev != NULL);
1159 return (iface != NULL && iface->if_dev->offload != NULL);
1160#else
1161 ARG_UNUSED(iface);
1162
1163 return false;
1164#endif
1165}
1166
1174bool net_if_is_offloaded(struct net_if *iface);
1175
1183static inline struct net_offload *net_if_offload(struct net_if *iface)
1184{
1185#if defined(CONFIG_NET_OFFLOAD)
1186 if (iface == NULL) {
1187 return NULL;
1188 }
1189
1190 NET_ASSERT(iface->if_dev != NULL);
1191
1192 return iface->if_dev->offload;
1193#else
1194 ARG_UNUSED(iface);
1195
1196 return NULL;
1197#endif
1198}
1199
1206static inline void net_if_offload_set(struct net_if *iface, struct net_offload *offload)
1207{
1208#if defined(CONFIG_NET_OFFLOAD)
1209 if (iface == NULL) {
1210 return;
1211 }
1212
1213 NET_ASSERT(iface->if_dev != NULL);
1214
1215 iface->if_dev->offload = offload;
1216#else
1217 ARG_UNUSED(iface);
1218 ARG_UNUSED(offload);
1219#endif
1220}
1221
1229static inline bool net_if_is_socket_offloaded(struct net_if *iface)
1230{
1231#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
1232 if (iface == NULL) {
1233 return false;
1234 }
1235
1236 NET_ASSERT(iface->if_dev != NULL);
1237
1238 return (iface->if_dev->socket_offload != NULL);
1239#else
1240 ARG_UNUSED(iface);
1241
1242 return false;
1243#endif
1244}
1245
1252static inline void net_if_socket_offload_set(
1253 struct net_if *iface, net_socket_create_t socket_offload)
1254{
1255#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
1256 if (iface == NULL) {
1257 return;
1258 }
1259
1260 NET_ASSERT(iface->if_dev != NULL);
1261
1262 iface->if_dev->socket_offload = socket_offload;
1263#else
1264 ARG_UNUSED(iface);
1265 ARG_UNUSED(socket_offload);
1266#endif
1267}
1268
1277{
1278#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
1279 if (iface == NULL) {
1280 return NULL;
1281 }
1282
1283 NET_ASSERT(iface->if_dev != NULL);
1284
1285 return iface->if_dev->socket_offload;
1286#else
1287 ARG_UNUSED(iface);
1288
1289 return NULL;
1290#endif
1291}
1292
1300static inline struct net_linkaddr *net_if_get_link_addr(struct net_if *iface)
1301{
1302 if (iface == NULL) {
1303 return NULL;
1304 }
1305
1306 NET_ASSERT(iface->if_dev != NULL);
1307
1308 return &iface->if_dev->link_addr;
1309}
1310
1318static inline struct net_if_config *net_if_get_config(struct net_if *iface)
1319{
1320 if (iface == NULL) {
1321 return NULL;
1322 }
1323
1324 return &iface->config;
1325}
1326
1332#if defined(CONFIG_NET_IPV6_DAD) && defined(CONFIG_NET_NATIVE_IPV6)
1333void net_if_start_dad(struct net_if *iface);
1334#else
1335static inline void net_if_start_dad(struct net_if *iface)
1336{
1337 ARG_UNUSED(iface);
1338}
1339#endif
1340
1346void net_if_start_rs(struct net_if *iface);
1347
1348
1354#if defined(CONFIG_NET_IPV6_ND) && defined(CONFIG_NET_NATIVE_IPV6)
1355void net_if_stop_rs(struct net_if *iface);
1356#else
1357static inline void net_if_stop_rs(struct net_if *iface)
1358{
1359 ARG_UNUSED(iface);
1360}
1361#endif /* CONFIG_NET_IPV6_ND */
1362
1375#if defined(CONFIG_NET_IPV6_ND) && defined(CONFIG_NET_NATIVE_IPV6)
1376void net_if_nbr_reachability_hint(struct net_if *iface, const struct net_in6_addr *ipv6_addr);
1377#else
1378static inline void net_if_nbr_reachability_hint(struct net_if *iface,
1379 const struct net_in6_addr *ipv6_addr)
1380{
1381 ARG_UNUSED(iface);
1382 ARG_UNUSED(ipv6_addr);
1383}
1384#endif
1385
1387
1388static inline int net_if_set_link_addr_unlocked(struct net_if *iface,
1389 const uint8_t *addr, uint8_t len,
1390 enum net_link_type type)
1391{
1392 int ret;
1393
1394 if (net_if_flag_is_set(iface, NET_IF_RUNNING)) {
1395 return -EPERM;
1396 }
1397
1398 if (len > sizeof(net_if_get_link_addr(iface)->addr)) {
1399 return -EINVAL;
1400 }
1401
1402 ret = net_linkaddr_create(net_if_get_link_addr(iface), addr, len, type);
1403 if (ret < 0) {
1404 return ret;
1405 }
1406
1407 net_hostname_set_postfix(addr, len);
1408
1409 return 0;
1410}
1411
1412int net_if_set_link_addr_locked(struct net_if *iface,
1413 const uint8_t *addr, uint8_t len,
1414 enum net_link_type type);
1415
1416#if CONFIG_NET_IF_LOG_LEVEL >= LOG_LEVEL_DBG
1417extern int net_if_addr_unref_debug(struct net_if *iface,
1418 net_sa_family_t family,
1419 const void *addr,
1420 struct net_if_addr **ifaddr,
1421 const char *caller, int line);
1422#define net_if_addr_unref(iface, family, addr, ifaddr) \
1423 net_if_addr_unref_debug(iface, family, addr, ifaddr, __func__, __LINE__)
1424
1425extern struct net_if_addr *net_if_addr_ref_debug(struct net_if *iface,
1426 net_sa_family_t family,
1427 const void *addr,
1428 const char *caller,
1429 int line);
1430#define net_if_addr_ref(iface, family, addr) \
1431 net_if_addr_ref_debug(iface, family, addr, __func__, __LINE__)
1432#else
1433extern int net_if_addr_unref(struct net_if *iface,
1434 net_sa_family_t family,
1435 const void *addr,
1436 struct net_if_addr **ifaddr);
1437extern struct net_if_addr *net_if_addr_ref(struct net_if *iface,
1438 net_sa_family_t family,
1439 const void *addr);
1440#endif /* CONFIG_NET_IF_LOG_LEVEL */
1441
1443
1454static inline int net_if_set_link_addr(struct net_if *iface,
1455 const uint8_t *addr, uint8_t len,
1456 enum net_link_type type)
1457{
1458#if defined(CONFIG_NET_RAW_MODE)
1459 return net_if_set_link_addr_unlocked(iface, addr, len, type);
1460#else
1461 return net_if_set_link_addr_locked(iface, addr, len, type);
1462#endif
1463}
1464
1472static inline uint16_t net_if_get_mtu(struct net_if *iface)
1473{
1474 if (iface == NULL) {
1475 return 0U;
1476 }
1477
1478 NET_ASSERT(iface->if_dev != NULL);
1479
1480 return iface->if_dev->mtu;
1481}
1482
1489static inline void net_if_set_mtu(struct net_if *iface,
1490 uint16_t mtu)
1491{
1492 if (iface == NULL) {
1493 return;
1494 }
1495
1496 NET_ASSERT(iface->if_dev != NULL);
1497
1498 iface->if_dev->mtu = mtu;
1499}
1500
1507static inline void net_if_addr_set_lf(struct net_if_addr *ifaddr,
1508 bool is_infinite)
1509{
1510 if (ifaddr == NULL) {
1511 return;
1512 }
1513
1514 ifaddr->is_infinite = is_infinite;
1515}
1516
1525
1533struct net_if *net_if_lookup_by_dev(const struct device *dev);
1534
1540void net_if_router_rm(struct net_if_router *router);
1541
1547void net_if_set_default(struct net_if *iface);
1548
1555
1564struct net_if *net_if_get_first_by_type(const struct net_l2 *l2);
1565
1573
1574#if defined(CONFIG_NET_L2_IEEE802154)
1581static inline struct net_if *net_if_get_ieee802154(void)
1582{
1583 return net_if_get_first_by_type(&NET_L2_GET_NAME(IEEE802154));
1584}
1585#endif /* CONFIG_NET_L2_IEEE802154 */
1586
1598 struct net_if_ipv6 **ipv6);
1599
1616
1617
1619struct net_if_addr *net_if_ipv6_addr_lookup_raw(const uint8_t *addr,
1620 struct net_if **ret);
1622
1632 struct net_if **iface);
1633
1635struct net_if_addr *net_if_ipv6_addr_lookup_by_iface_raw(struct net_if *iface,
1636 const uint8_t *addr);
1638
1648 const struct net_in6_addr *addr);
1649
1658__syscall int net_if_ipv6_addr_lookup_by_index(const struct net_in6_addr *addr);
1659
1671 const struct net_in6_addr *addr,
1673 uint32_t vlifetime);
1674
1685__syscall bool net_if_ipv6_addr_add_by_index(int index,
1686 const struct net_in6_addr *addr,
1688 uint32_t vlifetime);
1689
1697 uint32_t vlifetime);
1698
1707bool net_if_ipv6_addr_rm(struct net_if *iface, const struct net_in6_addr *addr);
1708
1717__syscall bool net_if_ipv6_addr_rm_by_index(int index,
1718 const struct net_in6_addr *addr);
1719
1728typedef void (*net_if_ip_addr_cb_t)(struct net_if *iface,
1729 struct net_if_addr *addr,
1730 void *user_data);
1731
1741 void *user_data);
1742
1752 const struct net_in6_addr *addr);
1753
1762bool net_if_ipv6_maddr_rm(struct net_if *iface, const struct net_in6_addr *addr);
1763
1772typedef void (*net_if_ip_maddr_cb_t)(struct net_if *iface,
1773 struct net_if_mcast_addr *maddr,
1774 void *user_data);
1775
1785 void *user_data);
1786
1787
1789struct net_if_mcast_addr *net_if_ipv6_maddr_lookup_raw(const uint8_t *maddr,
1790 struct net_if **ret);
1792
1804 struct net_if **iface);
1805
1816typedef void (*net_if_mcast_callback_t)(struct net_if *iface,
1817 const struct net_addr *addr,
1818 bool is_joined);
1819
1838
1848 struct net_if *iface,
1850
1857
1865void net_if_mcast_monitor(struct net_if *iface, const struct net_addr *addr,
1866 bool is_joined);
1867
1875 struct net_if_mcast_addr *addr);
1876
1884static inline bool net_if_ipv6_maddr_is_joined(struct net_if_mcast_addr *addr)
1885{
1886 if (addr == NULL) {
1887 return false;
1888 }
1889
1890 return addr->is_joined;
1891}
1892
1900 struct net_if_mcast_addr *addr);
1901
1911 const struct net_in6_addr *addr);
1912
1923 const struct net_in6_addr *addr,
1924 uint8_t len);
1925
1937 const struct net_in6_addr *prefix,
1938 uint8_t len,
1940
1950bool net_if_ipv6_prefix_rm(struct net_if *iface, const struct net_in6_addr *addr,
1951 uint8_t len);
1952
1960 bool is_infinite)
1961{
1962 prefix->is_infinite = is_infinite;
1963}
1964
1973
1980
1996 const struct net_in6_addr *prefix,
1997 uint8_t len, bool advertise);
1998
2012
2021
2032bool net_if_ipv6_addr_onlink(struct net_if **iface, const struct net_in6_addr *addr);
2033
2040#if defined(CONFIG_NET_NATIVE_IPV6)
2041static inline struct net_in6_addr *net_if_router_ipv6(struct net_if_router *router)
2042{
2043 if (router == NULL) {
2044 return NULL;
2045 }
2046
2047 return &router->address.in6_addr;
2048}
2049#else
2050static inline struct net_in6_addr *net_if_router_ipv6(struct net_if_router *router)
2051{
2052 static struct net_in6_addr addr;
2053
2054 ARG_UNUSED(router);
2055
2056 return &addr;
2057}
2058#endif
2059
2070 const struct net_in6_addr *addr);
2071
2082 const struct net_in6_addr *addr);
2083
2092
2104 const struct net_in6_addr *addr,
2105 bool is_default,
2106 uint16_t router_lifetime);
2107
2116
2125#if defined(CONFIG_NET_NATIVE_IPV6)
2127#else
2129{
2130 ARG_UNUSED(iface);
2131
2132 return 0;
2133}
2134#endif /* CONFIG_NET_NATIVE_IPV6 */
2135
2142#if defined(CONFIG_NET_NATIVE_IPV6)
2143void net_if_ipv6_set_hop_limit(struct net_if *iface, uint8_t hop_limit);
2144#else
2145static inline void net_if_ipv6_set_hop_limit(struct net_if *iface,
2146 uint8_t hop_limit)
2147{
2148 ARG_UNUSED(iface);
2149 ARG_UNUSED(hop_limit);
2150}
2151#endif /* CONFIG_NET_NATIVE_IPV6 */
2152
2161#if defined(CONFIG_NET_NATIVE_IPV6)
2163#else
2165{
2166 ARG_UNUSED(iface);
2167
2168 return 0;
2169}
2170#endif /* CONFIG_NET_NATIVE_IPV6 */
2171
2178#if defined(CONFIG_NET_NATIVE_IPV6)
2179void net_if_ipv6_set_mcast_hop_limit(struct net_if *iface, uint8_t hop_limit);
2180#else
2182 uint8_t hop_limit)
2183{
2184 ARG_UNUSED(iface);
2185 ARG_UNUSED(hop_limit);
2186}
2187#endif /* CONFIG_NET_NATIVE_IPV6 */
2188
2198#define NET_IPV6_MAX_REACHABLE_TIME 3600000U
2199
2208 uint32_t reachable_time)
2209{
2210#if defined(CONFIG_NET_NATIVE_IPV6)
2211 if (iface == NULL) {
2212 return;
2213 }
2214
2215 if (!iface->config.ip.ipv6) {
2216 return;
2217 }
2218
2219 if (reachable_time > NET_IPV6_MAX_REACHABLE_TIME) {
2220 reachable_time = NET_IPV6_MAX_REACHABLE_TIME;
2221 }
2222
2223 iface->config.ip.ipv6->base_reachable_time = reachable_time;
2224#else
2225 ARG_UNUSED(iface);
2226 ARG_UNUSED(reachable_time);
2227
2228#endif
2229}
2230
2239{
2240#if defined(CONFIG_NET_NATIVE_IPV6)
2241 if (iface == NULL) {
2242 return 0;
2243 }
2244
2245 if (iface->config.ip.ipv6 == NULL) {
2246 return 0;
2247 }
2248
2249 return iface->config.ip.ipv6->base_reachable_time;
2250#else
2251 ARG_UNUSED(iface);
2252 return 0;
2253#endif
2254}
2255
2264{
2265#if defined(CONFIG_NET_NATIVE_IPV6)
2266 if (iface == NULL) {
2267 return 0;
2268 }
2269
2270 if (!iface->config.ip.ipv6) {
2271 return 0;
2272 }
2273
2274 return iface->config.ip.ipv6->reachable_time;
2275#else
2276 ARG_UNUSED(iface);
2277 return 0;
2278#endif
2279}
2280
2289
2296static inline void net_if_ipv6_set_reachable_time(struct net_if_ipv6 *ipv6)
2297{
2298#if defined(CONFIG_NET_NATIVE_IPV6)
2299 if (ipv6 == NULL) {
2300 return;
2301 }
2302
2304#else
2305 ARG_UNUSED(ipv6);
2306#endif
2307}
2308
2315static inline void net_if_ipv6_set_retrans_timer(struct net_if *iface,
2316 uint32_t retrans_timer)
2317{
2318#if defined(CONFIG_NET_NATIVE_IPV6)
2319 if (iface == NULL) {
2320 return;
2321 }
2322
2323 if (!iface->config.ip.ipv6) {
2324 return;
2325 }
2326
2327 iface->config.ip.ipv6->retrans_timer = retrans_timer;
2328#else
2329 ARG_UNUSED(iface);
2330 ARG_UNUSED(retrans_timer);
2331#endif
2332}
2333
2342{
2343#if defined(CONFIG_NET_NATIVE_IPV6)
2344 if (iface == NULL) {
2345 return 0;
2346 }
2347
2348 if (!iface->config.ip.ipv6) {
2349 return 0;
2350 }
2351
2352 return iface->config.ip.ipv6->retrans_timer;
2353#else
2354 ARG_UNUSED(iface);
2355 return 0;
2356#endif
2357}
2358
2370#if defined(CONFIG_NET_IPV6)
2371const struct net_in6_addr *net_if_ipv6_select_src_addr(struct net_if *iface,
2372 const struct net_in6_addr *dst);
2373#else
2374static inline const struct net_in6_addr *net_if_ipv6_select_src_addr(
2375 struct net_if *iface, const struct net_in6_addr *dst)
2376{
2377 ARG_UNUSED(iface);
2378 ARG_UNUSED(dst);
2379
2380 return NULL;
2381}
2382#endif
2383
2397#if defined(CONFIG_NET_IPV6)
2398const struct net_in6_addr *net_if_ipv6_select_src_addr_hint(struct net_if *iface,
2399 const struct net_in6_addr *dst,
2400 int flags);
2401#else
2403 struct net_if *iface, const struct net_in6_addr *dst, int flags)
2404{
2405 ARG_UNUSED(iface);
2406 ARG_UNUSED(dst);
2407 ARG_UNUSED(flags);
2408
2409 return NULL;
2410}
2411#endif
2412
2422#if defined(CONFIG_NET_IPV6)
2423struct net_if *net_if_ipv6_select_src_iface(const struct net_in6_addr *dst);
2424#else
2426 const struct net_in6_addr *dst)
2427{
2428 ARG_UNUSED(dst);
2429
2430 return NULL;
2431}
2432#endif
2433
2446#if defined(CONFIG_NET_IPV6)
2447struct net_if *net_if_ipv6_select_src_iface_addr(const struct net_in6_addr *dst,
2448 const struct net_in6_addr **src_addr);
2449#else
2451 const struct net_in6_addr *dst, const struct net_in6_addr **src_addr)
2452{
2453 ARG_UNUSED(dst);
2454 ARG_UNUSED(src_addr);
2455
2456 return NULL;
2457}
2458#endif /* CONFIG_NET_IPV6 */
2459
2470 enum net_addr_state addr_state);
2471
2482 struct net_if **iface);
2483
2491void net_if_ipv6_dad_failed(struct net_if *iface, const struct net_in6_addr *addr);
2492
2505 struct net_if **iface);
2506
2518 struct net_if_ipv4 **ipv4);
2519
2536
2545
2552void net_if_ipv4_set_ttl(struct net_if *iface, uint8_t ttl);
2553
2562
2570
2581bool net_if_ipv4_addr_onlink(struct net_if **iface, const struct net_in_addr *addr);
2582
2592 struct net_if **iface);
2593
2595struct net_if_addr *net_if_ipv4_addr_lookup_by_iface_raw(struct net_if *iface,
2596 const uint8_t *addr);
2598
2608 const struct net_in_addr *addr);
2609
2621 const struct net_in_addr *addr,
2623 uint32_t vlifetime);
2624
2633bool net_if_ipv4_addr_rm(struct net_if *iface, const struct net_in_addr *addr);
2634
2643__syscall int net_if_ipv4_addr_lookup_by_index(const struct net_in_addr *addr);
2644
2655__syscall bool net_if_ipv4_addr_add_by_index(int index,
2656 const struct net_in_addr *addr,
2658 uint32_t vlifetime);
2659
2668__syscall bool net_if_ipv4_addr_rm_by_index(int index,
2669 const struct net_in_addr *addr);
2670
2680 void *user_data);
2681
2691 const struct net_in_addr *addr);
2692
2701bool net_if_ipv4_maddr_rm(struct net_if *iface, const struct net_in_addr *addr);
2702
2712 void *user_data);
2713
2725 struct net_if **iface);
2726
2734 struct net_if_mcast_addr *addr);
2735
2743static inline bool net_if_ipv4_maddr_is_joined(struct net_if_mcast_addr *addr)
2744{
2745 if (addr == NULL) {
2746 return false;
2747 }
2748
2749 return addr->is_joined;
2750}
2751
2759 struct net_if_mcast_addr *addr);
2760
2767#if defined(CONFIG_NET_NATIVE_IPV4)
2768static inline struct net_in_addr *net_if_router_ipv4(struct net_if_router *router)
2769{
2770 if (router == NULL) {
2771 return NULL;
2772 }
2773
2774 return &router->address.in_addr;
2775}
2776#else
2777static inline struct net_in_addr *net_if_router_ipv4(struct net_if_router *router)
2778{
2779 static struct net_in_addr addr;
2780
2781 ARG_UNUSED(router);
2782
2783 return &addr;
2784}
2785#endif
2786
2797 const struct net_in_addr *addr);
2798
2809 const struct net_in_addr *addr);
2821 const struct net_in_addr *addr,
2822 bool is_default,
2823 uint16_t router_lifetime);
2824
2833
2847int net_if_ipv4_route_add(struct net_if *iface, const struct net_in_addr *addr, uint8_t mask_len,
2848 const struct net_in_addr *nexthop, uint32_t lifetime);
2849
2859 const struct net_in_addr *addr);
2860
2870 const struct net_in_addr *addr);
2871
2881#if defined(CONFIG_NET_IPV4)
2882struct net_if *net_if_ipv4_select_src_iface(const struct net_in_addr *dst);
2883#else
2885 const struct net_in_addr *dst)
2886{
2887 ARG_UNUSED(dst);
2888
2889 return NULL;
2890}
2891#endif
2892
2905#if defined(CONFIG_NET_IPV4)
2906struct net_if *net_if_ipv4_select_src_iface_addr(const struct net_in_addr *dst,
2907 const struct net_in_addr **src_addr);
2908#else
2910 const struct net_in_addr *dst, const struct net_in_addr **src_addr)
2911{
2912 ARG_UNUSED(dst);
2913 ARG_UNUSED(src_addr);
2914
2915 return NULL;
2916}
2917#endif /* CONFIG_NET_IPV4 */
2918
2930#if defined(CONFIG_NET_IPV4)
2931const struct net_in_addr *net_if_ipv4_select_src_addr(struct net_if *iface,
2932 const struct net_in_addr *dst);
2933#else
2934static inline const struct net_in_addr *net_if_ipv4_select_src_addr(
2935 struct net_if *iface, const struct net_in_addr *dst)
2936{
2937 ARG_UNUSED(iface);
2938 ARG_UNUSED(dst);
2939
2940 return NULL;
2941}
2942#endif
2943
2954 enum net_addr_state addr_state);
2955
2966 enum net_addr_state addr_state);
2967
2978 const struct net_in_addr *addr);
2979
2990 const struct net_in_addr *addr,
2991 const struct net_in_addr *netmask);
2992
3003 const struct net_in_addr *addr,
3004 const struct net_in_addr *netmask);
3005
3014
3021void net_if_ipv4_set_gw(struct net_if *iface, const struct net_in_addr *gw);
3022
3031__syscall bool net_if_ipv4_set_gw_by_index(int index, const struct net_in_addr *gw);
3032
3044
3053typedef void (*net_if_link_callback_t)(struct net_if *iface,
3054 struct net_linkaddr *dst,
3055 int status);
3056
3072
3081
3088
3096void net_if_call_link_cb(struct net_if *iface, struct net_linkaddr *lladdr,
3097 int status);
3098
3100
3101/* used to ensure encoding of checksum support in net_if.h and
3102 * ethernet.h is the same
3103 */
3104#define NET_IF_CHECKSUM_NONE_BIT 0
3105#define NET_IF_CHECKSUM_IPV4_HEADER_BIT BIT(0)
3106#define NET_IF_CHECKSUM_IPV4_ICMP_BIT BIT(1)
3107/* Space for future protocols and restrictions for IPV4 */
3108#define NET_IF_CHECKSUM_IPV6_HEADER_BIT BIT(10)
3109#define NET_IF_CHECKSUM_IPV6_ICMP_BIT BIT(11)
3110/* Space for future protocols and restrictions for IPV6 */
3111#define NET_IF_CHECKSUM_TCP_BIT BIT(21)
3112#define NET_IF_CHECKSUM_UDP_BIT BIT(22)
3113
3115
3121 NET_IF_CHECKSUM_IPV4_HEADER = NET_IF_CHECKSUM_IPV4_HEADER_BIT,
3123 NET_IF_CHECKSUM_IPV4_TCP = NET_IF_CHECKSUM_IPV4_HEADER_BIT |
3124 NET_IF_CHECKSUM_TCP_BIT,
3126 NET_IF_CHECKSUM_IPV4_UDP = NET_IF_CHECKSUM_IPV4_HEADER_BIT |
3127 NET_IF_CHECKSUM_UDP_BIT,
3129 NET_IF_CHECKSUM_IPV4_ICMP = NET_IF_CHECKSUM_IPV4_ICMP_BIT,
3131 NET_IF_CHECKSUM_IPV6_HEADER = NET_IF_CHECKSUM_IPV6_HEADER_BIT,
3133 NET_IF_CHECKSUM_IPV6_TCP = NET_IF_CHECKSUM_IPV6_HEADER_BIT |
3134 NET_IF_CHECKSUM_TCP_BIT,
3136 NET_IF_CHECKSUM_IPV6_UDP = NET_IF_CHECKSUM_IPV6_HEADER_BIT |
3137 NET_IF_CHECKSUM_UDP_BIT,
3139 NET_IF_CHECKSUM_IPV6_ICMP = NET_IF_CHECKSUM_IPV6_ICMP_BIT
3140};
3141
3152#if defined(CONFIG_NET_CHECKSUM_OFFLOAD)
3153bool net_if_need_calc_rx_checksum(struct net_if *iface,
3154 enum net_if_checksum_type chksum_type);
3155#else /* CONFIG_NET_CHECKSUM_OFFLOAD */
3156static inline bool net_if_need_calc_rx_checksum(struct net_if *iface,
3157 enum net_if_checksum_type chksum_type)
3158{
3159 ARG_UNUSED(iface);
3160 ARG_UNUSED(chksum_type);
3161 return true;
3162}
3163#endif /* CONFIG_NET_CHECKSUM_OFFLOAD */
3164
3176#if defined(CONFIG_NET_CHECKSUM_OFFLOAD)
3177bool net_if_need_calc_tx_checksum(struct net_if *iface,
3178 enum net_if_checksum_type chksum_type);
3179#else /* CONFIG_NET_CHECKSUM_OFFLOAD */
3180static inline bool net_if_need_calc_tx_checksum(struct net_if *iface,
3181 enum net_if_checksum_type chksum_type)
3182{
3183 ARG_UNUSED(iface);
3184 ARG_UNUSED(chksum_type);
3185 return true;
3186}
3187#endif /* CONFIG_NET_CHECKSUM_OFFLOAD */
3188
3199__syscall struct net_if *net_if_get_by_index(int index);
3200
3208int net_if_get_by_iface(struct net_if *iface);
3209
3217typedef void (*net_if_cb_t)(struct net_if *iface, void *user_data);
3218
3226void net_if_foreach(net_if_cb_t cb, void *user_data);
3227
3235int net_if_up(struct net_if *iface);
3236
3244static inline bool net_if_is_up(struct net_if *iface)
3245{
3246 if (iface == NULL) {
3247 return false;
3248 }
3249
3250 return net_if_flag_is_set(iface, NET_IF_UP) &&
3252}
3253
3261int net_if_down(struct net_if *iface);
3262
3270static inline bool net_if_is_admin_up(struct net_if *iface)
3271{
3272 if (iface == NULL) {
3273 return false;
3274 }
3275
3276 return net_if_flag_is_set(iface, NET_IF_UP);
3277}
3278
3287void net_if_carrier_on(struct net_if *iface);
3288
3297void net_if_carrier_off(struct net_if *iface);
3298
3306static inline bool net_if_is_carrier_ok(struct net_if *iface)
3307{
3308 if (iface == NULL) {
3309 return false;
3310 }
3311
3312 return net_if_flag_is_set(iface, NET_IF_LOWER_UP);
3313}
3314
3325void net_if_dormant_on(struct net_if *iface);
3326
3335void net_if_dormant_off(struct net_if *iface);
3336
3344static inline bool net_if_is_dormant(struct net_if *iface)
3345{
3346 if (iface == NULL) {
3347 return false;
3348 }
3349
3350 return net_if_flag_is_set(iface, NET_IF_DORMANT);
3351}
3352
3353#if defined(CONFIG_NET_PKT_TIMESTAMP_THREAD) || defined(__DOXYGEN__)
3361typedef void (*net_if_timestamp_callback_t)(struct net_pkt *pkt);
3362
3388
3400 struct net_pkt *pkt,
3401 struct net_if *iface,
3403
3410
3417
3418/*
3419 * @brief Add timestamped TX buffer to be handled
3420 *
3421 * @param pkt Timestamped buffer
3422 */
3424#endif /* CONFIG_NET_PKT_TIMESTAMP_THREAD */
3425
3435#if defined(CONFIG_NET_PROMISCUOUS_MODE)
3436int net_if_set_promisc(struct net_if *iface);
3437#else
3438static inline int net_if_set_promisc(struct net_if *iface)
3439{
3440 ARG_UNUSED(iface);
3441
3442 return -ENOTSUP;
3443}
3444#endif
3445
3451#if defined(CONFIG_NET_PROMISCUOUS_MODE)
3452void net_if_unset_promisc(struct net_if *iface);
3453#else
3454static inline void net_if_unset_promisc(struct net_if *iface)
3455{
3456 ARG_UNUSED(iface);
3457}
3458#endif
3459
3468#if defined(CONFIG_NET_PROMISCUOUS_MODE)
3469bool net_if_is_promisc(struct net_if *iface);
3470#else
3471static inline bool net_if_is_promisc(struct net_if *iface)
3472{
3473 ARG_UNUSED(iface);
3474
3475 return false;
3476}
3477#endif
3478
3488static inline bool net_if_are_pending_tx_packets(struct net_if *iface)
3489{
3490#if defined(CONFIG_NET_POWER_MANAGEMENT)
3491 return !!iface->tx_pending;
3492#else
3493 ARG_UNUSED(iface);
3494
3495 return false;
3496#endif
3497}
3498
3499#ifdef CONFIG_NET_POWER_MANAGEMENT
3507int net_if_suspend(struct net_if *iface);
3508
3516int net_if_resume(struct net_if *iface);
3517
3525bool net_if_is_suspended(struct net_if *iface);
3526#endif /* CONFIG_NET_POWER_MANAGEMENT */
3527
3535bool net_if_is_ethernet(struct net_if *iface);
3536
3543
3551bool net_if_is_wifi(struct net_if *iface);
3552
3559
3566
3573
3588int net_if_get_name(struct net_if *iface, char *buf, int len);
3589
3604int net_if_set_name(struct net_if *iface, const char *buf);
3605
3613int net_if_get_by_name(const char *name);
3614
3616struct net_if_api {
3617 void (*init)(struct net_if *iface);
3618};
3619
3620#define NET_IF_DHCPV4_INIT \
3621 IF_ENABLED(UTIL_AND(IS_ENABLED(CONFIG_NET_DHCPV4), \
3622 IS_ENABLED(CONFIG_NET_NATIVE_IPV4)), \
3623 (.dhcpv4.state = NET_DHCPV4_DISABLED,))
3624
3625#define NET_IF_DHCPV6_INIT \
3626 IF_ENABLED(UTIL_AND(IS_ENABLED(CONFIG_NET_DHCPV6), \
3627 IS_ENABLED(CONFIG_NET_NATIVE_IPV6)), \
3628 (.dhcpv6.state = NET_DHCPV6_DISABLED,))
3629
3630#define NET_IF_CONFIG_INIT \
3631 .config = { \
3632 IF_ENABLED(CONFIG_NET_IP, (.ip = {},)) \
3633 NET_IF_DHCPV4_INIT \
3634 NET_IF_DHCPV6_INIT \
3635 }
3636
3637#define NET_PROMETHEUS_GET_COLLECTOR_NAME(dev_id, sfx) \
3638 net_stats_##dev_id##_##sfx##_collector
3639#define NET_PROMETHEUS_INIT(dev_id, sfx) \
3640 IF_ENABLED(CONFIG_NET_STATISTICS_VIA_PROMETHEUS, \
3641 (.collector = &NET_PROMETHEUS_GET_COLLECTOR_NAME(dev_id, sfx),))
3642
3643#define NET_IF_GET_NAME(dev_id, sfx) __net_if_##dev_id##_##sfx
3644#define NET_IF_DEV_GET_NAME(dev_id, sfx) __net_if_dev_##dev_id##_##sfx
3645
3646#define NET_IF_GET(dev_id, sfx) \
3647 ((struct net_if *)&NET_IF_GET_NAME(dev_id, sfx))
3648
3649#if defined(CONFIG_NET_STATISTICS_VIA_PROMETHEUS)
3650extern int net_stats_prometheus_scrape(struct prometheus_collector *collector,
3651 struct prometheus_metric *metric,
3652 void *user_data);
3653#endif /* CONFIG_NET_STATISTICS_VIA_PROMETHEUS */
3654
3655#define NET_IF_INIT(dev_id, sfx, _l2, _mtu) \
3656 static STRUCT_SECTION_ITERABLE(net_if_dev, \
3657 NET_IF_DEV_GET_NAME(dev_id, sfx)) = { \
3658 .dev = &(DEVICE_NAME_GET(dev_id)), \
3659 .l2 = &(NET_L2_GET_NAME(_l2)), \
3660 .l2_data = &(NET_L2_GET_DATA(dev_id, sfx)), \
3661 .mtu = _mtu, \
3662 .flags = {BIT(NET_IF_LOWER_UP)}, \
3663 }; \
3664 static STRUCT_SECTION_ITERABLE(net_if, \
3665 NET_IF_GET_NAME(dev_id, sfx)) = { \
3666 .if_dev = &(NET_IF_DEV_GET_NAME(dev_id, sfx)), \
3667 NET_IF_CONFIG_INIT \
3668 }; \
3669 IF_ENABLED(CONFIG_NET_STATISTICS_VIA_PROMETHEUS, \
3670 (static PROMETHEUS_COLLECTOR_DEFINE( \
3671 NET_PROMETHEUS_GET_COLLECTOR_NAME(dev_id, \
3672 sfx), \
3673 net_stats_prometheus_scrape, \
3674 NET_IF_GET(dev_id, sfx)); \
3675 NET_STATS_PROMETHEUS(NET_IF_GET(dev_id, sfx), \
3676 dev_id, sfx);))
3677
3678#define NET_IF_OFFLOAD_INIT(dev_id, sfx, _mtu) \
3679 static STRUCT_SECTION_ITERABLE(net_if_dev, \
3680 NET_IF_DEV_GET_NAME(dev_id, sfx)) = { \
3681 .dev = &(DEVICE_NAME_GET(dev_id)), \
3682 .mtu = _mtu, \
3683 .l2 = &(NET_L2_GET_NAME(OFFLOADED_NETDEV)), \
3684 .flags = {BIT(NET_IF_LOWER_UP)}, \
3685 }; \
3686 static STRUCT_SECTION_ITERABLE(net_if, \
3687 NET_IF_GET_NAME(dev_id, sfx)) = { \
3688 .if_dev = &(NET_IF_DEV_GET_NAME(dev_id, sfx)), \
3689 NET_IF_CONFIG_INIT \
3690 }; \
3691 IF_ENABLED(CONFIG_NET_STATISTICS_VIA_PROMETHEUS, \
3692 (static PROMETHEUS_COLLECTOR_DEFINE( \
3693 NET_PROMETHEUS_GET_COLLECTOR_NAME(dev_id, \
3694 sfx), \
3695 net_stats_prometheus_scrape, \
3696 NET_IF_GET(dev_id, sfx)); \
3697 NET_STATS_PROMETHEUS(NET_IF_GET(dev_id, sfx), \
3698 dev_id, sfx);))
3699
3700
3702
3703/* Network device initialization macros */
3704
3713#define NET_IF_DECLARE(dev_id, inst) \
3714 static struct net_if NET_IF_GET_NAME(dev_id, inst)
3715
3716#define Z_NET_DEVICE_IF_INIT_INSTANCE(dev_id, instance, l2, \
3717 l2_ctx_type, mtu) \
3718 NET_L2_DATA_INIT(dev_id, instance, l2_ctx_type); \
3719 NET_IF_INIT(dev_id, instance, l2, mtu)
3720
3721#define Z_NET_DEVICE_INIT_INSTANCE(node_id, dev_id, name, instance, \
3722 init_fn, pm, data, config, prio, \
3723 api, l2, l2_ctx_type, mtu) \
3724 Z_DEVICE_STATE_DEFINE(dev_id); \
3725 Z_DEVICE_DEFINE(node_id, dev_id, name, init_fn, NULL, \
3726 Z_DEVICE_DT_FLAGS(node_id), pm, data, \
3727 config, POST_KERNEL, prio, api, \
3728 &Z_DEVICE_STATE_NAME(dev_id)); \
3729 Z_NET_DEVICE_IF_INIT_INSTANCE(dev_id, instance, l2, \
3730 l2_ctx_type, mtu)
3731
3732#define Z_NET_DEVICE_INIT(node_id, dev_id, name, init_fn, pm, data, \
3733 config, prio, api, l2, l2_ctx_type, mtu) \
3734 Z_NET_DEVICE_INIT_INSTANCE(node_id, dev_id, name, 0, init_fn, \
3735 pm, data, config, prio, api, l2, \
3736 l2_ctx_type, mtu)
3737
3744#define NET_IF_DT_DECLARE(node_id, instance) \
3745 NET_IF_DECLARE(Z_DEVICE_DT_DEV_ID(node_id), instance)
3746
3754#define NET_IF_DT_INST_DECLARE(inst, ...) NET_IF_DT_DECLARE(DT_DRV_INST(inst), __VA_ARGS__)
3755
3763#define NET_IF_DT_GET(node_id, instance) NET_IF_GET(Z_DEVICE_DT_DEV_ID(node_id), instance)
3764
3773#define NET_IF_DT_INST_GET(inst, ...) NET_IF_DT_GET(DT_DRV_INST(inst), __VA_ARGS__)
3774
3794#define NET_DEVICE_INIT(dev_id, name, init_fn, pm, data, config, prio, \
3795 api, l2, l2_ctx_type, mtu) \
3796 Z_NET_DEVICE_INIT(DT_INVALID_NODE, dev_id, name, init_fn, pm, \
3797 data, config, prio, api, l2, l2_ctx_type, mtu)
3798
3810#define NET_DEVICE_DT_ADD_IFACE(node_id, l2, l2_ctx_type, mtu, instance) \
3811 Z_NET_DEVICE_IF_INIT_INSTANCE(Z_DEVICE_DT_DEV_ID(node_id), instance, l2, l2_ctx_type, mtu)
3812
3821#define NET_DEVICE_DT_INST_ADD_IFACE(inst, ...) \
3822 NET_DEVICE_DT_ADD_IFACE(DT_DRV_INST(inst), __VA_ARGS__)
3823
3842#define NET_DEVICE_DT_DEFINE(node_id, init_fn, pm, data, \
3843 config, prio, api, l2, l2_ctx_type, mtu) \
3844 Z_NET_DEVICE_INIT(node_id, Z_DEVICE_DT_DEV_ID(node_id), \
3845 DEVICE_DT_NAME(node_id), init_fn, pm, data, \
3846 config, prio, api, l2, l2_ctx_type, mtu)
3847
3856#define NET_DEVICE_DT_INST_DEFINE(inst, ...) \
3857 NET_DEVICE_DT_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
3858
3882#define NET_DEVICE_INIT_INSTANCE(dev_id, name, instance, init_fn, pm, \
3883 data, config, prio, api, l2, \
3884 l2_ctx_type, mtu) \
3885 Z_NET_DEVICE_INIT_INSTANCE(DT_INVALID_NODE, dev_id, name, \
3886 instance, init_fn, pm, data, config, \
3887 prio, api, l2, l2_ctx_type, mtu)
3888
3911#define NET_DEVICE_DT_DEFINE_INSTANCE(node_id, instance, init_fn, pm, \
3912 data, config, prio, api, l2, \
3913 l2_ctx_type, mtu) \
3914 Z_NET_DEVICE_INIT_INSTANCE(node_id, \
3915 Z_DEVICE_DT_DEV_ID(node_id), \
3916 DEVICE_DT_NAME(node_id), instance, \
3917 init_fn, pm, data, config, prio, \
3918 api, l2, l2_ctx_type, mtu)
3919
3929#define NET_DEVICE_DT_INST_DEFINE_INSTANCE(inst, ...) \
3930 NET_DEVICE_DT_DEFINE_INSTANCE(DT_DRV_INST(inst), __VA_ARGS__)
3931
3932#define Z_NET_DEVICE_OFFLOAD_INIT(node_id, dev_id, name, init_fn, pm, \
3933 data, config, prio, api, mtu) \
3934 Z_DEVICE_STATE_DEFINE(dev_id); \
3935 Z_DEVICE_DEFINE(node_id, dev_id, name, init_fn, NULL, \
3936 Z_DEVICE_DT_FLAGS(node_id), pm, data, \
3937 config, POST_KERNEL, prio, api, \
3938 &Z_DEVICE_STATE_NAME(dev_id)); \
3939 NET_IF_OFFLOAD_INIT(dev_id, 0, mtu)
3940
3960#define NET_DEVICE_OFFLOAD_INIT(dev_id, name, init_fn, pm, data, \
3961 config, prio, api, mtu) \
3962 Z_NET_DEVICE_OFFLOAD_INIT(DT_INVALID_NODE, dev_id, name, \
3963 init_fn, pm, data, config, prio, api, \
3964 mtu)
3965
3984#define NET_DEVICE_DT_OFFLOAD_DEFINE(node_id, init_fn, pm, data, \
3985 config, prio, api, mtu) \
3986 Z_NET_DEVICE_OFFLOAD_INIT(node_id, Z_DEVICE_DT_DEV_ID(node_id), \
3987 DEVICE_DT_NAME(node_id), init_fn, pm, \
3988 data, config, prio, api, mtu)
3989
3999#define NET_DEVICE_DT_INST_OFFLOAD_DEFINE(inst, ...) \
4000 NET_DEVICE_DT_OFFLOAD_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
4001
4007#define NET_IFACE_COUNT(_dst) \
4008 do { \
4009 extern struct net_if _net_if_list_start[]; \
4010 extern struct net_if _net_if_list_end[]; \
4011 *(_dst) = ((uintptr_t)_net_if_list_end - \
4012 (uintptr_t)_net_if_list_start) / \
4013 sizeof(struct net_if); \
4014 } while (0)
4015
4016#ifdef __cplusplus
4017}
4018#endif
4019
4020#include <zephyr/syscalls/net_if.h>
4021
4025
4026#endif /* ZEPHYR_INCLUDE_NET_NET_IF_H_ */
struct z_thread_stack_element k_thread_stack_t
Typedef of struct z_thread_stack_element.
Definition arch_interface.h:46
Prometheus collector APIs.
DHCPv4 Client Handler.
DHCPv6 client.
long atomic_t
Atomic integer variable.
Definition atomic_types.h:31
static void atomic_set_bit(atomic_t *target, int bit)
Atomically set a bit.
Definition atomic.h:242
static bool atomic_test_bit(const atomic_t *target, int bit)
Atomically get and test a bit.
Definition atomic.h:135
static void atomic_clear_bit(atomic_t *target, int bit)
Atomically clear a bit.
Definition atomic.h:224
#define ATOMIC_DEFINE(name, num_bits)
Define an array of atomic variables.
Definition atomic.h:119
static bool atomic_test_and_clear_bit(atomic_t *target, int bit)
Atomically clear a bit and test it.
Definition atomic.h:155
static bool atomic_test_and_set_bit(atomic_t *target, int bit)
Atomically set a bit and test it.
Definition atomic.h:178
#define K_FOREVER
Generate infinite timeout delay.
Definition kernel.h:1761
#define K_NO_WAIT
Generate null timeout delay.
Definition kernel.h:1651
static int64_t k_uptime_get(void)
Get system uptime.
Definition kernel.h:2265
net_addr_state
What is the current state of the network address.
Definition net_ip.h:583
unsigned short int net_sa_family_t
Socket address family type.
Definition net_ip.h:169
net_addr_type
How the network address is assigned to network interface.
Definition net_ip.h:591
bool k_is_in_isr(void)
Determine if code is running at interrupt level.
int k_mutex_unlock(struct k_mutex *mutex)
Unlock a mutex.
int k_mutex_lock(struct k_mutex *mutex, k_timeout_t timeout)
Lock a mutex.
net_verdict
Net Verdict.
Definition net_core.h:84
static int net_hostname_set_postfix(const uint8_t *hostname_postfix, int postfix_len)
Set the device hostname postfix.
Definition hostname.h:118
#define NET_IPV6_MAX_REACHABLE_TIME
Maximum IPv6 base reachable time in milliseconds.
Definition net_if.h:2198
int net_if_get_by_iface(struct net_if *iface)
Get interface index according to pointer.
int net_if_up(struct net_if *iface)
Bring interface up.
struct net_if * net_if_get_first_up(void)
Get the first network interface which is up.
int net_if_set_name(struct net_if *iface, const char *buf)
Set network interface name.
struct net_if_router * net_if_ipv4_router_add(struct net_if *iface, const struct net_in_addr *addr, bool is_default, uint16_t router_lifetime)
Add IPv4 router to the system.
void net_if_ipv4_set_gw(struct net_if *iface, const struct net_in_addr *gw)
Set IPv4 gateway for an interface.
static bool net_if_is_carrier_ok(struct net_if *iface)
Check if carrier is present on network device.
Definition net_if.h:3306
static bool net_if_is_admin_up(struct net_if *iface)
Check if interface was brought up by the administrator.
Definition net_if.h:3270
void net_if_set_default(struct net_if *iface)
Set the default network interface.
void(* net_if_mcast_callback_t)(struct net_if *iface, const struct net_addr *addr, bool is_joined)
Define a callback that is called whenever a IPv6 or IPv4 multicast address group is joined or left.
Definition net_if.h:1816
static bool net_if_need_calc_tx_checksum(struct net_if *iface, enum net_if_checksum_type chksum_type)
Check if network packet checksum calculation can be avoided or not when sending the packet.
Definition net_if.h:3180
bool net_if_ipv4_addr_onlink(struct net_if **iface, const struct net_in_addr *addr)
Check if this IPv4 address is part of the subnet of our network interface.
void(* net_if_link_callback_t)(struct net_if *iface, struct net_linkaddr *dst, int status)
Define callback that is called after a network packet has been sent.
Definition net_if.h:3053
struct net_if * net_if_get_wifi_sta(void)
Get Wi-Fi network station interface.
struct net_in_addr net_if_ipv4_get_gw(struct net_if *iface)
Get IPv4 gateway of an interface.
void net_if_add_tx_timestamp(struct net_pkt *pkt)
void net_if_ipv4_maddr_leave(struct net_if *iface, struct net_if_mcast_addr *addr)
Mark a given multicast address to be left.
struct net_if_mcast_addr * net_if_ipv6_maddr_add(struct net_if *iface, const struct net_in6_addr *addr)
Add a IPv6 multicast address to an interface.
int net_if_get_by_name(const char *name)
Get interface index according to its name.
static struct net_in6_addr * net_if_router_ipv6(struct net_if_router *router)
Get the IPv6 address of the given router.
Definition net_if.h:2050
void net_if_register_timestamp_cb(struct net_if_timestamp_cb *handle, struct net_pkt *pkt, struct net_if *iface, net_if_timestamp_callback_t cb)
Register a timestamp callback.
struct net_if * net_if_get_by_link_addr(struct net_linkaddr *ll_addr)
Get an interface according to link layer address.
bool net_if_ipv4_addr_rm_by_index(int index, const struct net_in_addr *addr)
Remove a IPv4 address from an interface by interface index.
int net_if_ipv6_router_start(struct net_if *iface)
Enable the IPv6 router role on the interface.
void net_if_dormant_off(struct net_if *iface)
Mark interface as not dormant.
bool net_if_ipv6_router_rm(struct net_if_router *router)
Remove IPv6 router from the system.
static struct net_if * net_if_ipv4_select_src_iface(const struct net_in_addr *dst)
Get a network interface that should be used when sending IPv4 network data to destination.
Definition net_if.h:2884
static enum net_if_oper_state net_if_oper_state_set(struct net_if *iface, enum net_if_oper_state oper_state)
Set an operational state on an interface.
Definition net_if.h:962
int net_if_down(struct net_if *iface)
Bring interface down.
struct net_if_ipv6_prefix * net_if_ipv6_prefix_add(struct net_if *iface, const struct net_in6_addr *prefix, uint8_t len, uint32_t lifetime)
Add a IPv6 prefix to an network interface.
bool net_if_ipv4_addr_rm(struct net_if *iface, const struct net_in_addr *addr)
Remove a IPv4 address from an interface.
static struct net_if * net_if_ipv4_select_src_iface_addr(const struct net_in_addr *dst, const struct net_in_addr **src_addr)
Get a network interface that should be used when sending IPv4 network data to destination.
Definition net_if.h:2909
static void net_if_queue_tx(struct net_if *iface, struct net_pkt *pkt)
Queue a packet to the net interface TX queue.
Definition net_if.h:1141
void net_if_ipv6_prefix_unset_timer(struct net_if_ipv6_prefix *prefix)
Unset the prefix lifetime timer.
bool net_if_ipv4_addr_add_by_index(int index, const struct net_in_addr *addr, enum net_addr_type addr_type, uint32_t vlifetime)
Add a IPv4 address to an interface by network interface index.
int net_if_config_ipv4_get(struct net_if *iface, struct net_if_ipv4 **ipv4)
Allocate network interface IPv4 config.
void net_if_carrier_on(struct net_if *iface)
Underlying network device has detected the carrier (cable connected).
void net_if_try_queue_tx(struct net_if *iface, struct net_pkt *pkt, k_timeout_t timeout)
Try enqueuing a packet to the net interface TX queue.
static struct net_if * net_if_ipv6_select_src_iface(const struct net_in6_addr *dst)
Get a network interface that should be used when sending IPv6 network data to destination.
Definition net_if.h:2425
void net_if_mcast_monitor(struct net_if *iface, const struct net_addr *addr, bool is_joined)
Call registered multicast monitors.
static int net_if_set_link_addr(struct net_if *iface, const uint8_t *addr, uint8_t len, enum net_link_type type)
Set a network interface's link address.
Definition net_if.h:1454
struct net_if_addr * net_if_ipv6_addr_add(struct net_if *iface, const struct net_in6_addr *addr, enum net_addr_type addr_type, uint32_t vlifetime)
Add a IPv6 address to an interface.
static void * net_if_l2_data(struct net_if *iface)
Get a pointer to the interface L2 private data.
Definition net_if.h:1096
static bool net_if_are_pending_tx_packets(struct net_if *iface)
Check if there are any pending TX network data for a given network interface.
Definition net_if.h:3488
static bool net_if_flag_test_and_set(struct net_if *iface, enum net_if_flag value)
Test and set a value in network interface flags.
Definition net_if.h:884
struct net_if_addr * net_if_ipv6_addr_lookup(const struct net_in6_addr *addr, struct net_if **iface)
Check if this IPv6 address belongs to one of the interfaces.
bool net_if_ipv4_is_addr_bcast(struct net_if *iface, const struct net_in_addr *addr)
Check if the given IPv4 address is a broadcast address.
static struct net_linkaddr * net_if_get_link_addr(struct net_if *iface)
Get an network interface's link address.
Definition net_if.h:1300
struct net_if_addr * net_if_ipv4_addr_lookup_by_iface(struct net_if *iface, const struct net_in_addr *addr)
Check if this IPv4 address belongs to this specific interfaces.
void net_if_ipv6_maddr_join(struct net_if *iface, struct net_if_mcast_addr *addr)
Mark a given multicast address to be joined.
struct net_if_router * net_if_ipv4_router_lookup(struct net_if *iface, const struct net_in_addr *addr)
Check if IPv4 address is one of the routers configured in the system.
bool net_if_ipv6_prefix_rm(struct net_if *iface, const struct net_in6_addr *addr, uint8_t len)
Remove an IPv6 prefix from an interface.
static struct net_in_addr * net_if_router_ipv4(struct net_if_router *router)
Get the IPv4 address of the given router.
Definition net_if.h:2777
static struct net_offload * net_if_offload(struct net_if *iface)
Return the IP offload plugin.
Definition net_if.h:1183
struct net_if * net_if_get_first_ethernet(void)
Get first Cabled Ethernet network interface.
static void net_if_flag_set(struct net_if *iface, enum net_if_flag value)
Set a value in network interface flags.
Definition net_if.h:864
bool net_if_ipv6_addr_onlink(struct net_if **iface, const struct net_in6_addr *addr)
Check if this IPv6 address is part of the subnet of our network interface.
struct net_if_addr * net_if_ipv4_addr_lookup(const struct net_in_addr *addr, struct net_if **iface)
Check if this IPv4 address belongs to one of the interfaces.
struct net_if * net_if_get_default(void)
Get the default network interface.
void net_if_ipv4_set_ttl(struct net_if *iface, uint8_t ttl)
Set IPv4 time-to-live value specified to a given interface.
static const struct net_in6_addr * net_if_ipv6_select_src_addr_hint(struct net_if *iface, const struct net_in6_addr *dst, int flags)
Get a IPv6 source address that should be used when sending network data to destination.
Definition net_if.h:2402
int net_if_config_ipv6_get(struct net_if *iface, struct net_if_ipv6 **ipv6)
Allocate network interface IPv6 config.
static uint8_t net_if_ipv6_get_mcast_hop_limit(struct net_if *iface)
Get IPv6 multicast hop limit specified for a given interface.
Definition net_if.h:2164
void net_if_ipv6_addr_foreach(struct net_if *iface, net_if_ip_addr_cb_t cb, void *user_data)
Go through all IPv6 addresses on a network interface and call callback for each used address.
static void net_if_ipv6_set_hop_limit(struct net_if *iface, uint8_t hop_limit)
Set the default IPv6 hop limit of a given interface.
Definition net_if.h:2145
enum net_verdict net_if_try_send_data(struct net_if *iface, struct net_pkt *pkt, k_timeout_t timeout)
Try sending a packet through a net iface.
int net_if_get_name(struct net_if *iface, char *buf, int len)
Get network interface name.
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:2374
static void net_if_nbr_reachability_hint(struct net_if *iface, const struct net_in6_addr *ipv6_addr)
Provide a reachability hint for IPv6 Neighbor Discovery.
Definition net_if.h:1378
void(* net_if_timestamp_callback_t)(struct net_pkt *pkt)
Define callback that is called after a network packet has been timestamped.
Definition net_if.h:3361
static uint8_t net_if_ipv6_get_hop_limit(struct net_if *iface)
Get IPv6 hop limit specified for a given interface.
Definition net_if.h:2128
void net_if_carrier_off(struct net_if *iface)
Underlying network device has lost the carrier (cable disconnected).
void net_if_ipv6_prefix_set_timer(struct net_if_ipv6_prefix *prefix, uint32_t lifetime)
Set the prefix lifetime timer.
void net_if_unregister_link_cb(struct net_if_link_cb *link)
Unregister a link callback.
bool net_if_ipv4_router_rm(struct net_if_router *router)
Remove IPv4 router from the system.
static bool net_if_is_ip_offloaded(struct net_if *iface)
Return the IP offload status.
Definition net_if.h:1155
bool net_if_ipv6_maddr_rm(struct net_if *iface, const struct net_in6_addr *addr)
Remove an IPv6 multicast address from an interface.
static bool net_if_is_dormant(struct net_if *iface)
Check if the interface is dormant.
Definition net_if.h:3344
struct net_if * net_if_get_first_wifi(void)
Get first Wi-Fi network interface.
struct net_in_addr * net_if_ipv4_get_ll(struct net_if *iface, enum net_addr_state addr_state)
Get a IPv4 link local address in a given state.
bool net_if_is_ethernet(struct net_if *iface)
Check if the network interface is cabled ethernet.
uint8_t net_if_ipv4_get_mcast_ttl(struct net_if *iface)
Get IPv4 multicast time-to-live value specified for a given interface.
static uint32_t net_if_ipv6_get_base_reachable_time(struct net_if *iface)
Get IPv6 base reachable time for a given interface.
Definition net_if.h:2238
struct net_if_mcast_addr * net_if_ipv4_maddr_add(struct net_if *iface, const struct net_in_addr *addr)
Add a IPv4 multicast address to an interface.
void(* net_if_ip_maddr_cb_t)(struct net_if *iface, struct net_if_mcast_addr *maddr, void *user_data)
Callback used while iterating over network interface multicast IP addresses.
Definition net_if.h:1772
struct net_if * net_if_get_by_index(int index)
Get interface according to index.
enum net_verdict net_if_recv_data(struct net_if *iface, struct net_pkt *pkt)
Input a packet through a net iface.
struct net_if * net_if_get_first_by_type(const struct net_l2 *l2)
Get the first network interface according to its type.
struct net_in_addr * net_if_ipv4_get_global_addr(struct net_if *iface, enum net_addr_state addr_state)
Get a IPv4 global address in a given state.
static void net_if_set_mtu(struct net_if *iface, uint16_t mtu)
Set an network interface's MTU.
Definition net_if.h:1489
struct net_in6_addr * net_if_ipv6_get_ll(struct net_if *iface, enum net_addr_state addr_state)
Get a IPv6 link local address in a given state.
uint8_t net_if_ipv4_get_ttl(struct net_if *iface)
Get IPv4 time-to-live value specified for a given interface.
static bool net_if_is_up(struct net_if *iface)
Check if interface is up and running.
Definition net_if.h:3244
struct net_if_addr * net_if_ipv4_addr_add(struct net_if *iface, const struct net_in_addr *addr, enum net_addr_type addr_type, uint32_t vlifetime)
Add a IPv4 address to an interface.
static void net_if_ipv6_set_reachable_time(struct net_if_ipv6 *ipv6)
Set IPv6 reachable time for a given interface.
Definition net_if.h:2296
static enum net_verdict net_if_send_data(struct net_if *iface, struct net_pkt *pkt)
Send a packet through a net iface.
Definition net_if.h:1053
bool net_if_ipv4_set_gw_by_index(int index, const struct net_in_addr *gw)
Set IPv4 gateway for an interface index.
int net_if_config_ipv4_put(struct net_if *iface)
Release network interface IPv4 config.
void net_if_dormant_on(struct net_if *iface)
Mark interface as dormant.
struct net_in6_addr * net_if_ipv6_get_ll_addr(enum net_addr_state state, struct net_if **iface)
Return link local IPv6 address from the first interface that has a link local address matching give s...
int net_if_config_ipv6_put(struct net_if *iface)
Release network interface IPv6 config.
static struct net_if * net_if_ipv6_select_src_iface_addr(const struct net_in6_addr *dst, const struct net_in6_addr **src_addr)
Get a network interface that should be used when sending IPv6 network data to destination.
Definition net_if.h:2450
struct net_if_router * net_if_ipv6_router_add(struct net_if *iface, const struct net_in6_addr *addr, bool is_default, uint16_t router_lifetime)
Add IPv6 router to the system.
net_if_checksum_type
Type of checksum for which support in the interface will be queried.
Definition net_if.h:3119
void net_if_ipv6_dad_failed(struct net_if *iface, const struct net_in6_addr *addr)
Stop IPv6 Duplicate Address Detection (DAD) procedure if we find out that our IPv6 address is already...
void net_if_mcast_mon_register(struct net_if_mcast_monitor *mon, struct net_if *iface, net_if_mcast_callback_t cb)
Register a multicast monitor.
bool net_if_ipv4_addr_mask_cmp(struct net_if *iface, const struct net_in_addr *addr)
Check if the given IPv4 address belongs to local subnet.
void net_if_ipv4_set_mcast_ttl(struct net_if *iface, uint8_t ttl)
Set IPv4 multicast time-to-live value specified to a given interface.
static void net_if_start_dad(struct net_if *iface)
Start duplicate address detection procedure.
Definition net_if.h:1335
void net_if_foreach(net_if_cb_t cb, void *user_data)
Go through all the network interfaces and call callback for each interface.
struct net_if_ipv6_prefix * net_if_ipv6_prefix_lookup(struct net_if *iface, const struct net_in6_addr *addr, uint8_t len)
Check if this IPv6 prefix belongs to this interface.
struct net_if_ipv6_prefix * net_if_ipv6_prefix_get(struct net_if *iface, const struct net_in6_addr *addr)
Return prefix that corresponds to this IPv6 address.
static void net_if_unset_promisc(struct net_if *iface)
Set network interface into normal mode.
Definition net_if.h:3454
static void net_if_socket_offload_set(struct net_if *iface, net_socket_create_t socket_offload)
Set the function to create an offloaded socket.
Definition net_if.h:1252
static uint32_t net_if_ipv6_get_reachable_time(struct net_if *iface)
Get IPv6 reachable timeout specified for a given interface.
Definition net_if.h:2263
static bool net_if_is_promisc(struct net_if *iface)
Check if promiscuous mode is set or not.
Definition net_if.h:3471
int net_if_ipv6_prefix_set_advertise(struct net_if *iface, const struct net_in6_addr *prefix, uint8_t len, bool advertise)
Mark (or unmark) an IPv6 prefix for advertisement in Router Advertisements sent on the interface.
static bool net_if_ipv4_maddr_is_joined(struct net_if_mcast_addr *addr)
Check if given multicast address is joined or not.
Definition net_if.h:2743
static void net_if_ipv6_prefix_set_lf(struct net_if_ipv6_prefix *prefix, bool is_infinite)
Set the infinite status of the prefix.
Definition net_if.h:1959
bool net_if_ipv4_set_netmask_by_addr(struct net_if *iface, const struct net_in_addr *addr, const struct net_in_addr *netmask)
Set IPv4 netmask for an interface index for a given address.
bool net_if_is_wifi(struct net_if *iface)
Check if the network interface supports Wi-Fi.
bool net_if_ipv4_set_netmask_by_addr_by_index(int index, const struct net_in_addr *addr, const struct net_in_addr *netmask)
Set IPv4 netmask for an interface index for a given address.
int net_if_ipv6_router_stop(struct net_if *iface)
Disable the IPv6 router role on the interface.
void net_if_unregister_timestamp_cb(struct net_if_timestamp_cb *handle)
Unregister a timestamp callback.
bool net_if_ipv4_maddr_rm(struct net_if *iface, const struct net_in_addr *addr)
Remove an IPv4 multicast address from an interface.
void net_if_register_link_cb(struct net_if_link_cb *link, net_if_link_callback_t cb)
Register a link callback.
void net_if_call_link_cb(struct net_if *iface, struct net_linkaddr *lladdr, int status)
Call a link callback function.
int net_if_ipv6_addr_lookup_by_index(const struct net_in6_addr *addr)
Check if this IPv6 address belongs to one of the interface indices.
void net_if_ipv6_router_update_lifetime(struct net_if_router *router, uint16_t lifetime)
Update validity lifetime time of a router.
void net_if_ipv4_addr_foreach(struct net_if *iface, net_if_ip_addr_cb_t cb, void *user_data)
Go through all IPv4 addresses on a network interface and call callback for each used address.
struct net_in_addr net_if_ipv4_get_netmask_by_addr(struct net_if *iface, const struct net_in_addr *addr)
Get IPv4 netmask related to an address of an interface.
static void net_if_stop_rs(struct net_if *iface)
Stop neighbor discovery.
Definition net_if.h:1357
uint32_t net_if_ipv6_calc_reachable_time(struct net_if_ipv6 *ipv6)
Calculate next reachable time value for IPv6 reachable time.
static void net_if_ipv6_set_base_reachable_time(struct net_if *iface, uint32_t reachable_time)
Set IPv6 reachable time for a given interface.
Definition net_if.h:2207
struct net_if * net_if_select_src_iface(const struct net_sockaddr *dst)
Get a network interface that should be used when sending IPv6 or IPv4 network data to destination.
void(* net_if_ip_addr_cb_t)(struct net_if *iface, struct net_if_addr *addr, void *user_data)
Callback used while iterating over network interface IP addresses.
Definition net_if.h:1728
void net_if_ipv6_maddr_foreach(struct net_if *iface, net_if_ip_maddr_cb_t cb, void *user_data)
Go through all IPv6 multicast addresses on a network interface and call callback for each used addres...
struct net_if_mcast_addr * net_if_ipv4_maddr_lookup(const struct net_in_addr *addr, struct net_if **iface)
Check if this IPv4 multicast address belongs to a specific interface or one of the interfaces.
static bool net_if_flag_test_and_clear(struct net_if *iface, enum net_if_flag value)
Test and clear a value in network interface flags.
Definition net_if.h:922
void net_if_start_rs(struct net_if *iface)
Start neighbor discovery and send router solicitation message.
static int net_if_oper_state_change_time(struct net_if *iface, int64_t *change_time)
Get an operational state change time of an interface.
Definition net_if.h:1014
static bool net_if_ipv6_maddr_is_joined(struct net_if_mcast_addr *addr)
Check if given multicast address is joined or not.
Definition net_if.h:1884
struct net_if_router * net_if_ipv6_router_find_default(struct net_if *iface, const struct net_in6_addr *addr)
Find default router for this IPv6 address.
static bool net_if_need_calc_rx_checksum(struct net_if *iface, enum net_if_checksum_type chksum_type)
Check if received network packet checksum calculation can be avoided or not.
Definition net_if.h:3156
void(* net_if_cb_t)(struct net_if *iface, void *user_data)
Callback used while iterating over network interfaces.
Definition net_if.h:3217
struct net_if_router * net_if_ipv6_router_lookup(struct net_if *iface, const struct net_in6_addr *addr)
Check if IPv6 address is one of the routers configured in the system.
static uint16_t net_if_get_mtu(struct net_if *iface)
Get an network interface's MTU.
Definition net_if.h:1472
bool net_if_ipv6_addr_rm(struct net_if *iface, const struct net_in6_addr *addr)
Remove an IPv6 address from an interface.
void net_if_ipv6_maddr_leave(struct net_if *iface, struct net_if_mcast_addr *addr)
Mark a given multicast address to be left.
void net_if_mcast_mon_unregister(struct net_if_mcast_monitor *mon)
Unregister a multicast monitor.
struct net_if_mcast_addr * net_if_ipv6_maddr_lookup(const struct net_in6_addr *addr, struct net_if **iface)
Check if this IPv6 multicast address belongs to a specific interface or one of the interfaces.
bool net_if_ipv6_addr_add_by_index(int index, const struct net_in6_addr *addr, enum net_addr_type addr_type, uint32_t vlifetime)
Add a IPv6 address to an interface by index.
static void net_if_ipv6_set_retrans_timer(struct net_if *iface, uint32_t retrans_timer)
Set IPv6 retransmit timer for a given interface.
Definition net_if.h:2315
void net_if_call_timestamp_cb(struct net_pkt *pkt)
Call a timestamp callback function.
struct net_if * net_if_lookup_by_dev(const struct device *dev)
Find an interface from it's related device.
bool net_if_ipv6_addr_rm_by_index(int index, const struct net_in6_addr *addr)
Remove an IPv6 address from an interface by index.
void net_if_router_rm(struct net_if_router *router)
Remove a router from the system.
int net_if_ipv4_route_add(struct net_if *iface, const struct net_in_addr *addr, uint8_t mask_len, const struct net_in_addr *nexthop, uint32_t lifetime)
Add an IPv4 route to the system routing table.
static uint32_t net_if_ipv6_get_retrans_timer(struct net_if *iface)
Get IPv6 retransmit timer specified for a given interface.
Definition net_if.h:2341
net_if_oper_state
Network interface operational status (RFC 2863).
Definition net_if.h:313
static bool net_if_flag_is_set(struct net_if *iface, enum net_if_flag value)
Check if a value in network interface flags is set.
Definition net_if.h:942
static struct net_if_config * net_if_get_config(struct net_if *iface)
Return network configuration for this network interface.
Definition net_if.h:1318
void net_if_ipv4_maddr_join(struct net_if *iface, struct net_if_mcast_addr *addr)
Mark a given multicast address to be joined.
struct net_if_addr * net_if_ipv6_addr_lookup_by_iface(struct net_if *iface, const struct net_in6_addr *addr)
Check if this IPv6 address belongs to this specific interfaces.
static void net_if_addr_set_lf(struct net_if_addr *ifaddr, bool is_infinite)
Set the infinite status of the network interface address.
Definition net_if.h:1507
net_if_flag
Network interface flags.
Definition net_if.h:257
int net_if_ipv4_addr_lookup_by_index(const struct net_in_addr *addr)
Check if this IPv4 address belongs to one of the interface indices.
static const struct net_in_addr * net_if_ipv4_select_src_addr(struct net_if *iface, const struct net_in_addr *dst)
Get a IPv4 source address that should be used when sending network data to destination.
Definition net_if.h:2934
void net_if_ipv4_maddr_foreach(struct net_if *iface, net_if_ip_maddr_cb_t cb, void *user_data)
Go through all IPv4 multicast addresses on a network interface and call callback for each used addres...
static const struct device * net_if_get_device(struct net_if *iface)
Get an network interface's device.
Definition net_if.h:1114
bool net_if_is_offloaded(struct net_if *iface)
Return offload status of a given network interface.
int(* net_socket_create_t)(int, int, int)
A function prototype to create an offloaded socket.
Definition net_if.h:682
void net_if_ipv6_addr_update_lifetime(struct net_if_addr *ifaddr, uint32_t vlifetime)
Update validity lifetime time of an IPv6 address.
static void net_if_offload_set(struct net_if *iface, struct net_offload *offload)
Set the IP offload plugin.
Definition net_if.h:1206
static bool net_if_is_socket_offloaded(struct net_if *iface)
Return the socket offload status.
Definition net_if.h:1229
struct net_in6_addr * net_if_ipv6_get_global_addr(enum net_addr_state state, struct net_if **iface)
Return global IPv6 address from the first interface that has a global IPv6 address matching the given...
static void net_if_ipv6_set_mcast_hop_limit(struct net_if *iface, uint8_t hop_limit)
Set the default IPv6 multicast hop limit of a given interface.
Definition net_if.h:2181
struct net_if * net_if_get_wifi_sap(void)
Get first Wi-Fi network Soft-AP interface.
static int net_if_set_promisc(struct net_if *iface)
Set network interface into promiscuous mode.
Definition net_if.h:3438
static const struct net_l2 * net_if_l2(struct net_if *iface)
Get a pointer to the interface L2.
Definition net_if.h:1068
static net_socket_create_t net_if_socket_offload(struct net_if *iface)
Return the function to create an offloaded socket.
Definition net_if.h:1276
static void net_if_flag_clear(struct net_if *iface, enum net_if_flag value)
Clear a value in network interface flags.
Definition net_if.h:902
struct net_if_router * net_if_ipv4_router_find_default(struct net_if *iface, const struct net_in_addr *addr)
Find default router for this IPv4 address.
@ NET_IF_CHECKSUM_IPV4_ICMP
Interface supports checksum calculation for ICMP4 payload in IPv4.
Definition net_if.h:3129
@ NET_IF_CHECKSUM_IPV6_TCP
Interface supports checksum calculation for TCP payload in IPv6.
Definition net_if.h:3133
@ NET_IF_CHECKSUM_IPV6_UDP
Interface supports checksum calculation for UDP payload in IPv6.
Definition net_if.h:3136
@ NET_IF_CHECKSUM_IPV4_HEADER
Interface supports IP version 4 header checksum calculation.
Definition net_if.h:3121
@ NET_IF_CHECKSUM_IPV4_TCP
Interface supports checksum calculation for TCP payload in IPv4.
Definition net_if.h:3123
@ NET_IF_CHECKSUM_IPV6_HEADER
Interface supports IP version 6 header checksum calculation.
Definition net_if.h:3131
@ NET_IF_CHECKSUM_IPV6_ICMP
Interface supports checksum calculation for ICMP6 payload in IPv6.
Definition net_if.h:3139
@ NET_IF_CHECKSUM_IPV4_UDP
Interface supports checksum calculation for UDP payload in IPv4.
Definition net_if.h:3126
@ NET_IF_OPER_TESTING
Training mode.
Definition net_if.h:318
@ NET_IF_OPER_DORMANT
Waiting external action.
Definition net_if.h:319
@ NET_IF_OPER_UP
Interface is up.
Definition net_if.h:320
@ NET_IF_OPER_NOTPRESENT
Hardware missing.
Definition net_if.h:315
@ NET_IF_OPER_UNKNOWN
Initial (unknown) value.
Definition net_if.h:314
@ NET_IF_OPER_DOWN
Interface is down.
Definition net_if.h:316
@ NET_IF_OPER_LOWERLAYERDOWN
Lower layer interface is down.
Definition net_if.h:317
@ NET_IF_NO_AUTO_START
Do not bring the interface immediately up after initialization.
Definition net_if.h:271
@ NET_IF_IPV6_NO_MLD
IPv6 Multicast Listener Discovery disabled.
Definition net_if.h:301
@ NET_IF_POINTOPOINT
Interface is pointopoint.
Definition net_if.h:262
@ NET_IF_IPV6_NO_ND
IPv6 Neighbor Discovery disabled.
Definition net_if.h:298
@ NET_IF_FORWARD_MULTICASTS
Flag defines if received multicasts of other interface are forwarded on this interface.
Definition net_if.h:280
@ NET_IF_IPV4
Interface supports IPv4.
Definition net_if.h:283
@ NET_IF_PROMISC
Interface is in promiscuous mode.
Definition net_if.h:265
@ NET_IF_DORMANT
Driver signals dormant.
Definition net_if.h:295
@ NET_IF_SUSPENDED
Power management specific: interface is being suspended.
Definition net_if.h:274
@ NET_IF_IPV6
Interface supports IPv6.
Definition net_if.h:286
@ NET_IF_UP
Interface is admin up.
Definition net_if.h:259
@ NET_IF_LOWER_UP
Driver signals L1 is up.
Definition net_if.h:292
@ NET_IF_RUNNING
Interface up and running (ready to receive and transmit).
Definition net_if.h:289
@ NET_IF_NO_TX_LOCK
Mutex locking on TX data path disabled on the interface.
Definition net_if.h:304
net_link_type
Type of the link address.
Definition net_linkaddr.h:58
static int net_linkaddr_create(struct net_linkaddr *lladdr, const uint8_t *addr, uint8_t len, enum net_link_type type)
Create a link address structure.
Definition net_linkaddr.h:179
struct _slist sys_slist_t
Single-linked list structure.
Definition slist.h:54
struct _snode sys_snode_t
Single-linked list node structure.
Definition slist.h:44
#define IF_ENABLED(_flag, _code)
Insert code if _flag is defined and equals 1.
Definition util_macro.h:278
#define EINVAL
Invalid argument.
Definition errno.h:61
#define ENOTSUP
Unsupported value.
Definition errno.h:115
#define EPERM
Not owner.
Definition errno.h:40
Hostname configuration definitions.
#define NULL
Definition iar_missing_defs.h:20
IPv4 Autoconfiguration.
net_ipv4_autoconf_state
Current state of IPv4 Autoconfiguration.
Definition ipv4_autoconf.h:15
Network core definitions.
IPv6 and IPv4 definitions.
Public API for network L2 interface.
Public API for network link address.
Network statistics.
Network timer with wrap around.
flags
Definition parser.h:97
state
Definition parser_state.h:29
Header file for the single-linked list API.
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
__INT32_TYPE__ int32_t
Definition stdint.h:74
__UINT64_TYPE__ uint64_t
Definition stdint.h:91
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
__UINT16_TYPE__ uint16_t
Definition stdint.h:89
__INT64_TYPE__ int64_t
Definition stdint.h:75
__INT16_TYPE__ int16_t
Definition stdint.h:73
Runtime device structure (in ROM) per driver instance.
Definition device.h:513
Kernel FIFO structure.
Definition kernel.h:3023
Kernel mutex structure.
Definition kernel.h:3572
Semaphore structure.
Definition kernel.h:3798
Thread Structure.
Definition thread.h:259
Kernel timeout type.
Definition clock.h:65
Kernel timepoint type.
Definition clock.h:291
DHCPv6 client configuration parameters.
Definition dhcpv6.h:71
Network Interface unicast IPv4 address and netmask.
Definition net_if.h:502
struct net_in_addr netmask
Netmask.
Definition net_if.h:506
struct net_if_addr ipv4
IPv4 address.
Definition net_if.h:504
Network Interface unicast IP addresses.
Definition net_if.h:56
struct net_addr address
IP address.
Definition net_if.h:58
uint8_t is_mesh_local
Is this IP address usage limited to the subnet (mesh) or not.
Definition net_if.h:143
uint8_t is_temporary
Is this IP address temporary and generated for example by IPv6 privacy extension (RFC 8981).
Definition net_if.h:148
enum net_addr_state addr_state
What is the current state of the address.
Definition net_if.h:73
uint8_t is_infinite
Is the IP address valid forever.
Definition net_if.h:137
atomic_t atomic_ref
Reference counter.
Definition net_if.h:63
uint8_t is_added
Was this address added or not.
Definition net_if.h:151
enum net_addr_type addr_type
How the IP address was set.
Definition net_if.h:70
uint8_t is_used
Is this IP address used or not.
Definition net_if.h:140
IP and other configuration related data for network interface.
Definition net_if.h:615
Network Interface Device structure.
Definition net_if.h:700
Network interface IP address configuration.
Definition net_if.h:602
IPv4 configuration.
Definition net_if.h:510
uint8_t mcast_ttl
IPv4 time-to-live for multicast packets.
Definition net_if.h:524
struct net_if_addr_ipv4 unicast[NET_IF_MAX_IPV4_ADDR]
Unicast IP addresses.
Definition net_if.h:512
struct net_in_addr gw
Gateway.
Definition net_if.h:518
uint8_t ttl
IPv4 time-to-live.
Definition net_if.h:521
struct net_if_mcast_addr mcast[NET_IF_MAX_IPV4_MADDR]
Multicast IP addresses.
Definition net_if.h:515
Network Interface IPv6 prefixes.
Definition net_if.h:198
struct net_if * iface
Backpointer to network interface where this prefix is used.
Definition net_if.h:206
uint8_t is_infinite
Is the IP prefix valid forever.
Definition net_if.h:212
uint8_t len
Prefix length.
Definition net_if.h:209
uint8_t is_used
Is this prefix used or not.
Definition net_if.h:215
struct net_timeout lifetime
Prefix lifetime.
Definition net_if.h:200
struct net_in6_addr prefix
IPv6 prefix.
Definition net_if.h:203
uint8_t is_advertised
Is this prefix advertised in Router Advertisements.
Definition net_if.h:218
IPv6 configuration.
Definition net_if.h:340
struct net_if_ipv6_prefix prefix[NET_IF_MAX_IPV6_PREFIX]
Prefixes.
Definition net_if.h:348
uint32_t base_reachable_time
Default reachable time (RFC 4861, page 52).
Definition net_if.h:351
uint8_t hop_limit
IPv6 hop limit.
Definition net_if.h:389
struct net_if_mcast_addr mcast[NET_IF_MAX_IPV6_MADDR]
Multicast IP addresses.
Definition net_if.h:345
uint32_t retrans_timer
Retransmit timer (RFC 4861, page 52).
Definition net_if.h:357
struct net_if_addr unicast[NET_IF_MAX_IPV6_ADDR]
Unicast IP addresses.
Definition net_if.h:342
uint8_t mcast_hop_limit
IPv6 multicast hop limit.
Definition net_if.h:392
uint32_t reachable_time
Reachable time (RFC 4861, page 20).
Definition net_if.h:354
Network Interface multicast IP addresses.
Definition net_if.h:161
struct net_addr address
IP address.
Definition net_if.h:163
uint8_t is_joined
Did we join to this group.
Definition net_if.h:188
sys_snode_t rejoin_node
Rejoining multicast groups list node.
Definition net_if.h:171
atomic_t atomic_ref
Reference counter.
Definition net_if.h:168
uint8_t is_used
Is this multicast IP address used or not.
Definition net_if.h:185
Multicast monitor handler struct.
Definition net_if.h:1828
sys_snode_t node
Node information for the slist.
Definition net_if.h:1830
net_if_mcast_callback_t cb
Multicast callback.
Definition net_if.h:1836
struct net_if * iface
Network interface.
Definition net_if.h:1833
Information about routers in the system.
Definition net_if.h:228
struct net_if * iface
Network interface the router is connected to.
Definition net_if.h:236
uint8_t is_default
Is default router.
Definition net_if.h:248
uint16_t lifetime
Router lifetime.
Definition net_if.h:242
uint8_t is_infinite
Is the router valid forever.
Definition net_if.h:251
uint8_t is_used
Is this router used or not.
Definition net_if.h:245
struct net_addr address
IP address.
Definition net_if.h:233
sys_snode_t node
Slist lifetime timer node.
Definition net_if.h:230
uint32_t life_start
Router life timer start.
Definition net_if.h:239
Timestamp callback handler struct.
Definition net_if.h:3371
sys_snode_t node
Node information for the slist.
Definition net_if.h:3373
struct net_if * iface
Net interface for which the callback is needed.
Definition net_if.h:3383
struct net_pkt * pkt
Packet for which the callback is needed.
Definition net_if.h:3378
net_if_timestamp_callback_t cb
Timestamp callback.
Definition net_if.h:3386
Network Interface structure.
Definition net_if.h:764
IPv6 address struct.
Definition net_ip.h:144
IPv4 address struct.
Definition net_ip.h:156
Network L2 structure.
Definition net_l2.h:58
Hardware link address structure.
Definition net_linkaddr.h:83
Network packet.
Definition net_pkt.h:119
Generic sockaddr struct.
Definition net_ip.h:455
All network statistics in one struct.
Definition net_stats.h:423
Generic struct for handling network timeouts.
Definition net_timeout.h:57
Network traffic class.
Definition net_if.h:659
k_thread_stack_t * stack
Stack for this handler.
Definition net_if.h:673
struct k_thread handler
Traffic class handler thread.
Definition net_if.h:670
struct k_fifo fifo
Fifo for handling this Tx or Rx packet.
Definition net_if.h:661
Prometheus collector definition.
Definition collector.h:50
Type used to represent a Prometheus metric base.
Definition metric.h:47
Iterable sections helpers.