Zephyr API Documentation 4.1.99
A Scalable Open Source RTOS
 4.1.99
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
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
12#ifndef ZEPHYR_INCLUDE_NET_NET_IF_H_
13#define ZEPHYR_INCLUDE_NET_NET_IF_H_
14
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 };
129
130#if defined(CONFIG_NET_IPV6_DAD) || defined(CONFIG_NET_IPV4_ACD)
132 uint8_t ifindex;
133#endif
134
137
140
143
148
151
152 uint8_t _unused : 3;
153};
154
162 struct net_addr address;
163
166
167#if defined(CONFIG_NET_IPV4_IGMPV3)
169 struct net_addr sources[CONFIG_NET_IF_MCAST_IPV4_SOURCE_COUNT];
170
172 uint16_t sources_len;
173
175 uint8_t record_type;
176#endif
177
180
183
184 uint8_t _unused : 6;
185};
186
195
198
200 struct net_if *iface;
201
204
207
210
211 uint8_t _unused : 6;
212};
213
222
224 struct net_addr address;
225
227 struct net_if *iface;
228
231
234
237
240
243
244 uint8_t _unused : 5;
245};
246
304
315
316#if defined(CONFIG_NET_OFFLOAD)
317struct net_offload;
318#endif /* CONFIG_NET_OFFLOAD */
319
321#if defined(CONFIG_NET_IPV6)
322#define NET_IF_MAX_IPV6_ADDR CONFIG_NET_IF_UNICAST_IPV6_ADDR_COUNT
323#define NET_IF_MAX_IPV6_MADDR CONFIG_NET_IF_MCAST_IPV6_ADDR_COUNT
324#define NET_IF_MAX_IPV6_PREFIX CONFIG_NET_IF_IPV6_PREFIX_COUNT
325#else
326#define NET_IF_MAX_IPV6_ADDR 0
327#define NET_IF_MAX_IPV6_MADDR 0
328#define NET_IF_MAX_IPV6_PREFIX 0
329#endif
330/* @endcond */
331
335 struct net_if_addr unicast[NET_IF_MAX_IPV6_ADDR];
336
338 struct net_if_mcast_addr mcast[NET_IF_MAX_IPV6_MADDR];
339
341 struct net_if_ipv6_prefix prefix[NET_IF_MAX_IPV6_PREFIX];
342
345
348
351
352#if defined(CONFIG_NET_IPV6_IID_STABLE)
354 struct net_if_addr *iid;
355
359 uint32_t network_counter;
360#endif /* CONFIG_NET_IPV6_IID_STABLE */
361
362#if defined(CONFIG_NET_IPV6_PE)
367 uint32_t desync_factor;
368#endif /* CONFIG_NET_IPV6_PE */
369
370#if defined(CONFIG_NET_IPV6_ND) && defined(CONFIG_NET_NATIVE_IPV6)
372 sys_snode_t rs_node;
373
374 /* RS start time */
375 uint32_t rs_start;
376
378 uint8_t rs_count;
379#endif
380
383
386};
387
388#if defined(CONFIG_NET_DHCPV6) && defined(CONFIG_NET_NATIVE_IPV6)
390struct net_if_dhcpv6 {
392 sys_snode_t node;
393
395 struct net_dhcpv6_duid_storage clientid;
396
398 struct net_dhcpv6_duid_storage serverid;
399
401 enum net_dhcpv6_state state;
402
404 struct net_dhcpv6_params params;
405
407 uint64_t timeout;
408
410 uint64_t exchange_start;
411
413 uint64_t t1;
414
416 uint64_t t2;
417
421 uint64_t expire;
422
424 uint32_t addr_iaid;
425
427 uint32_t prefix_iaid;
428
430 uint32_t retransmit_timeout;
431
433 int16_t server_preference;
434
436 uint8_t retransmissions;
437
439 uint8_t tid[DHCPV6_TID_SIZE];
440
442 uint8_t prefix_len;
443
445 struct in6_addr prefix;
446
448 struct in6_addr addr;
449};
450#endif /* defined(CONFIG_NET_DHCPV6) && defined(CONFIG_NET_NATIVE_IPV6) */
451
453#if defined(CONFIG_NET_IPV4)
454#define NET_IF_MAX_IPV4_ADDR CONFIG_NET_IF_UNICAST_IPV4_ADDR_COUNT
455#define NET_IF_MAX_IPV4_MADDR CONFIG_NET_IF_MCAST_IPV4_ADDR_COUNT
456#else
457#define NET_IF_MAX_IPV4_ADDR 0
458#define NET_IF_MAX_IPV4_MADDR 0
459#endif
473
477 struct net_if_addr_ipv4 unicast[NET_IF_MAX_IPV4_ADDR];
478
480 struct net_if_mcast_addr mcast[NET_IF_MAX_IPV4_MADDR];
481
483 struct in_addr gw;
484
487
490
491#if defined(CONFIG_NET_IPV4_ACD)
493 uint8_t conflict_cnt;
494#endif
495};
496
497#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
498struct net_if_dhcpv4 {
500 sys_snode_t node;
501
503 int64_t timer_start;
504
506 uint32_t request_time;
507
508 uint32_t xid;
509
511 uint32_t lease_time;
512
514 uint32_t renewal_time;
515
517 uint32_t rebinding_time;
518
520 struct in_addr server_id;
521
523 struct in_addr requested_ip;
524
526 struct in_addr netmask;
527
532 enum net_dhcpv4_state state;
533
535 uint8_t attempts;
536
538 struct in_addr request_server_addr;
539
541 struct in_addr response_src_addr;
542
543#ifdef CONFIG_NET_DHCPV4_OPTION_NTP_SERVER
545 struct in_addr ntp_addr;
546#endif
547};
548#endif /* CONFIG_NET_DHCPV4 */
549
550#if defined(CONFIG_NET_IPV4_AUTO) && defined(CONFIG_NET_NATIVE_IPV4)
551struct net_if_ipv4_autoconf {
553 struct net_if *iface;
554
556 struct in_addr requested_ip;
557
561};
562#endif /* CONFIG_NET_IPV4_AUTO */
563
565/* We always need to have at least one IP config */
566#define NET_IF_MAX_CONFIGS 1
572struct net_if_ip {
573#if defined(CONFIG_NET_IPV6)
574 struct net_if_ipv6 *ipv6;
575#endif /* CONFIG_NET_IPV6 */
576
577#if defined(CONFIG_NET_IPV4)
578 struct net_if_ipv4 *ipv4;
579#endif /* CONFIG_NET_IPV4 */
580};
581
586#if defined(CONFIG_NET_IP)
588 struct net_if_ip ip;
589#endif
590
591#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
592 struct net_if_dhcpv4 dhcpv4;
593#endif /* CONFIG_NET_DHCPV4 */
594
595#if defined(CONFIG_NET_DHCPV6) && defined(CONFIG_NET_NATIVE_IPV6)
596 struct net_if_dhcpv6 dhcpv6;
597#endif /* CONFIG_NET_DHCPV6 */
598
599#if defined(CONFIG_NET_IPV4_AUTO) && defined(CONFIG_NET_NATIVE_IPV4)
600 struct net_if_ipv4_autoconf ipv4auto;
601#endif /* CONFIG_NET_IPV4_AUTO */
602
603#if defined(CONFIG_NET_L2_VIRTUAL)
608 sys_slist_t virtual_interfaces;
609#endif /* CONFIG_NET_L2_VIRTUAL */
610
611#if defined(CONFIG_NET_INTERFACE_NAME)
616 char name[CONFIG_NET_INTERFACE_NAME_LEN + 1];
617#endif
618};
619
631 struct k_fifo fifo;
632
633#if NET_TC_COUNT > 1 || defined(CONFIG_NET_TC_TX_SKIP_FOR_HIGH_PRIO) \
634 || defined(CONFIG_NET_TC_RX_SKIP_FOR_HIGH_PRIO)
636 struct k_sem fifo_slot;
637#endif
638
641
644};
645
652typedef int (*net_socket_create_t)(int, int, int);
653
670 const struct device *dev;
671
673 const struct net_l2 * const l2;
674
676 void *l2_data;
677
679 ATOMIC_DEFINE(flags, NET_IF_NUM_FLAGS);
680
683
684#if defined(CONFIG_NET_OFFLOAD)
690 struct net_offload *offload;
691#endif /* CONFIG_NET_OFFLOAD */
692
695
696#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
700 net_socket_create_t socket_offload;
701#endif /* CONFIG_NET_SOCKETS_OFFLOAD */
702
705};
706
714struct net_if {
717
718#if defined(CONFIG_NET_STATISTICS_PER_INTERFACE)
720 struct net_stats stats;
721
723 IF_ENABLED(CONFIG_NET_STATISTICS_VIA_PROMETHEUS,
724 (struct prometheus_collector *collector);)
725#endif /* CONFIG_NET_STATISTICS_PER_INTERFACE */
726
729
730#if defined(CONFIG_NET_POWER_MANAGEMENT)
735 int tx_pending;
736#endif
737
739 struct k_mutex lock;
740
743
749
754
756 uint8_t _unused : 6;
757};
758
761static inline void net_if_lock(struct net_if *iface)
762{
763 NET_ASSERT(iface);
764
765 (void)k_mutex_lock(&iface->lock, K_FOREVER);
766}
767
768static inline void net_if_unlock(struct net_if *iface)
769{
770 NET_ASSERT(iface);
771
772 k_mutex_unlock(&iface->lock);
773}
774
775static inline bool net_if_flag_is_set(struct net_if *iface,
776 enum net_if_flag value);
777
778static inline void net_if_tx_lock(struct net_if *iface)
779{
780 NET_ASSERT(iface);
781
783 return;
784 }
785
786 (void)k_mutex_lock(&iface->tx_lock, K_FOREVER);
787}
788
789static inline void net_if_tx_unlock(struct net_if *iface)
790{
791 NET_ASSERT(iface);
792
794 return;
795 }
796
797 k_mutex_unlock(&iface->tx_lock);
798}
799
808static inline void net_if_flag_set(struct net_if *iface,
809 enum net_if_flag value)
810{
811 if (iface == NULL || iface->if_dev == NULL) {
812 return;
813 }
814
815 atomic_set_bit(iface->if_dev->flags, value);
816}
817
826static inline bool net_if_flag_test_and_set(struct net_if *iface,
827 enum net_if_flag value)
828{
829 if (iface == NULL || iface->if_dev == NULL) {
830 return false;
831 }
832
833 return atomic_test_and_set_bit(iface->if_dev->flags, value);
834}
835
842static inline void net_if_flag_clear(struct net_if *iface,
843 enum net_if_flag value)
844{
845 if (iface == NULL || iface->if_dev == NULL) {
846 return;
847 }
848
849 atomic_clear_bit(iface->if_dev->flags, value);
850}
851
860static inline bool net_if_flag_test_and_clear(struct net_if *iface,
861 enum net_if_flag value)
862{
863 if (iface == NULL || iface->if_dev == NULL) {
864 return false;
865 }
866
867 return atomic_test_and_clear_bit(iface->if_dev->flags, value);
868}
869
878static inline bool net_if_flag_is_set(struct net_if *iface,
879 enum net_if_flag value)
880{
881 if (iface == NULL || iface->if_dev == NULL) {
882 return false;
883 }
884
885 return atomic_test_bit(iface->if_dev->flags, value);
886}
887
897 struct net_if *iface, enum net_if_oper_state oper_state)
898{
899 if (iface == NULL || iface->if_dev == NULL) {
900 return NET_IF_OPER_UNKNOWN;
901 }
902
903 BUILD_ASSERT((enum net_if_oper_state)(-1) > 0 && NET_IF_OPER_UNKNOWN == 0);
904 if (oper_state <= NET_IF_OPER_UP) {
905 iface->if_dev->oper_state = oper_state;
906 }
907
908 return iface->if_dev->oper_state;
909}
910
918static inline enum net_if_oper_state net_if_oper_state(struct net_if *iface)
919{
920 if (iface == NULL || iface->if_dev == NULL) {
921 return NET_IF_OPER_UNKNOWN;
922 }
923
924 return iface->if_dev->oper_state;
925}
926
937 struct net_pkt *pkt, k_timeout_t timeout);
938
948static inline enum net_verdict net_if_send_data(struct net_if *iface,
949 struct net_pkt *pkt)
950{
952
953 return net_if_try_send_data(iface, pkt, timeout);
954}
955
963static inline const struct net_l2 *net_if_l2(struct net_if *iface)
964{
965 if (iface == NULL || iface->if_dev == NULL) {
966 return NULL;
967 }
968
969 return iface->if_dev->l2;
970}
971
980enum net_verdict net_if_recv_data(struct net_if *iface, struct net_pkt *pkt);
981
989static inline void *net_if_l2_data(struct net_if *iface)
990{
991 if (iface == NULL || iface->if_dev == NULL) {
992 return NULL;
993 }
994
995 return iface->if_dev->l2_data;
996}
997
1005static inline const struct device *net_if_get_device(struct net_if *iface)
1006{
1007 if (iface == NULL || iface->if_dev == NULL) {
1008 return NULL;
1009 }
1010
1011 return iface->if_dev->dev;
1012}
1013
1021void net_if_try_queue_tx(struct net_if *iface, struct net_pkt *pkt, k_timeout_t timeout);
1022
1030static inline void net_if_queue_tx(struct net_if *iface, struct net_pkt *pkt)
1031{
1033
1034 net_if_try_queue_tx(iface, pkt, timeout);
1035}
1036
1044static inline bool net_if_is_ip_offloaded(struct net_if *iface)
1045{
1046#if defined(CONFIG_NET_OFFLOAD)
1047 return (iface != NULL && iface->if_dev != NULL &&
1048 iface->if_dev->offload != NULL);
1049#else
1050 ARG_UNUSED(iface);
1051
1052 return false;
1053#endif
1054}
1055
1063bool net_if_is_offloaded(struct net_if *iface);
1064
1072static inline struct net_offload *net_if_offload(struct net_if *iface)
1073{
1074#if defined(CONFIG_NET_OFFLOAD)
1075 if (iface == NULL || iface->if_dev == NULL) {
1076 return NULL;
1077 }
1078
1079 return iface->if_dev->offload;
1080#else
1081 ARG_UNUSED(iface);
1082
1083 return NULL;
1084#endif
1085}
1086
1094static inline bool net_if_is_socket_offloaded(struct net_if *iface)
1095{
1096#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
1097 if (iface == NULL || iface->if_dev == NULL) {
1098 return false;
1099 }
1100
1101 return (iface->if_dev->socket_offload != NULL);
1102#else
1103 ARG_UNUSED(iface);
1104
1105 return false;
1106#endif
1107}
1108
1115static inline void net_if_socket_offload_set(
1116 struct net_if *iface, net_socket_create_t socket_offload)
1117{
1118#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
1119 if (iface == NULL || iface->if_dev == NULL) {
1120 return;
1121 }
1122
1123 iface->if_dev->socket_offload = socket_offload;
1124#else
1125 ARG_UNUSED(iface);
1126 ARG_UNUSED(socket_offload);
1127#endif
1128}
1129
1138{
1139#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
1140 if (iface == NULL || iface->if_dev == NULL) {
1141 return NULL;
1142 }
1143
1144 return iface->if_dev->socket_offload;
1145#else
1146 ARG_UNUSED(iface);
1147
1148 return NULL;
1149#endif
1150}
1151
1159static inline struct net_linkaddr *net_if_get_link_addr(struct net_if *iface)
1160{
1161 if (iface == NULL || iface->if_dev == NULL) {
1162 return NULL;
1163 }
1164
1165 return &iface->if_dev->link_addr;
1166}
1167
1175static inline struct net_if_config *net_if_get_config(struct net_if *iface)
1176{
1177 if (iface == NULL) {
1178 return NULL;
1179 }
1180
1181 return &iface->config;
1182}
1183
1189#if defined(CONFIG_NET_IPV6_DAD) && defined(CONFIG_NET_NATIVE_IPV6)
1190void net_if_start_dad(struct net_if *iface);
1191#else
1192static inline void net_if_start_dad(struct net_if *iface)
1193{
1194 ARG_UNUSED(iface);
1195}
1196#endif
1197
1203void net_if_start_rs(struct net_if *iface);
1204
1205
1211#if defined(CONFIG_NET_IPV6_ND) && defined(CONFIG_NET_NATIVE_IPV6)
1212void net_if_stop_rs(struct net_if *iface);
1213#else
1214static inline void net_if_stop_rs(struct net_if *iface)
1215{
1216 ARG_UNUSED(iface);
1217}
1218#endif /* CONFIG_NET_IPV6_ND */
1219
1232#if defined(CONFIG_NET_IPV6_ND) && defined(CONFIG_NET_NATIVE_IPV6)
1233void net_if_nbr_reachability_hint(struct net_if *iface, const struct in6_addr *ipv6_addr);
1234#else
1235static inline void net_if_nbr_reachability_hint(struct net_if *iface,
1236 const struct in6_addr *ipv6_addr)
1237{
1238 ARG_UNUSED(iface);
1239 ARG_UNUSED(ipv6_addr);
1240}
1241#endif
1242
1245static inline int net_if_set_link_addr_unlocked(struct net_if *iface,
1246 uint8_t *addr, uint8_t len,
1247 enum net_link_type type)
1248{
1249 int ret;
1250
1251 if (net_if_flag_is_set(iface, NET_IF_RUNNING)) {
1252 return -EPERM;
1253 }
1254
1255 if (len > sizeof(net_if_get_link_addr(iface)->addr)) {
1256 return -EINVAL;
1257 }
1258
1259 ret = net_linkaddr_create(net_if_get_link_addr(iface), addr, len, type);
1260 if (ret < 0) {
1261 return ret;
1262 }
1263
1264 net_hostname_set_postfix(addr, len);
1265
1266 return 0;
1267}
1268
1269int net_if_set_link_addr_locked(struct net_if *iface,
1270 uint8_t *addr, uint8_t len,
1271 enum net_link_type type);
1272
1273#if CONFIG_NET_IF_LOG_LEVEL >= LOG_LEVEL_DBG
1274extern int net_if_addr_unref_debug(struct net_if *iface,
1275 sa_family_t family,
1276 const void *addr,
1277 struct net_if_addr **ifaddr,
1278 const char *caller, int line);
1279#define net_if_addr_unref(iface, family, addr, ifaddr) \
1280 net_if_addr_unref_debug(iface, family, addr, ifaddr, __func__, __LINE__)
1281
1282extern struct net_if_addr *net_if_addr_ref_debug(struct net_if *iface,
1283 sa_family_t family,
1284 const void *addr,
1285 const char *caller,
1286 int line);
1287#define net_if_addr_ref(iface, family, addr) \
1288 net_if_addr_ref_debug(iface, family, addr, __func__, __LINE__)
1289#else
1290extern int net_if_addr_unref(struct net_if *iface,
1291 sa_family_t family,
1292 const void *addr,
1293 struct net_if_addr **ifaddr);
1294extern struct net_if_addr *net_if_addr_ref(struct net_if *iface,
1295 sa_family_t family,
1296 const void *addr);
1297#endif /* CONFIG_NET_IF_LOG_LEVEL */
1298
1312static inline int net_if_set_link_addr(struct net_if *iface,
1313 uint8_t *addr, uint8_t len,
1314 enum net_link_type type)
1315{
1316#if defined(CONFIG_NET_RAW_MODE)
1317 return net_if_set_link_addr_unlocked(iface, addr, len, type);
1318#else
1319 return net_if_set_link_addr_locked(iface, addr, len, type);
1320#endif
1321}
1322
1330static inline uint16_t net_if_get_mtu(struct net_if *iface)
1331{
1332 if (iface == NULL || iface->if_dev == NULL) {
1333 return 0U;
1334 }
1335
1336 return iface->if_dev->mtu;
1337}
1338
1345static inline void net_if_set_mtu(struct net_if *iface,
1346 uint16_t mtu)
1347{
1348 if (iface == NULL || iface->if_dev == NULL) {
1349 return;
1350 }
1351
1352 iface->if_dev->mtu = mtu;
1353}
1354
1361static inline void net_if_addr_set_lf(struct net_if_addr *ifaddr,
1362 bool is_infinite)
1363{
1364 if (ifaddr == NULL) {
1365 return;
1366 }
1367
1368 ifaddr->is_infinite = is_infinite;
1369}
1370
1379
1387struct net_if *net_if_lookup_by_dev(const struct device *dev);
1388
1396static inline struct net_if_config *net_if_config_get(struct net_if *iface)
1397{
1398 if (iface == NULL) {
1399 return NULL;
1400 }
1401
1402 return &iface->config;
1403}
1404
1410void net_if_router_rm(struct net_if_router *router);
1411
1417void net_if_set_default(struct net_if *iface);
1418
1425
1434struct net_if *net_if_get_first_by_type(const struct net_l2 *l2);
1435
1443
1444#if defined(CONFIG_NET_L2_IEEE802154)
1451static inline struct net_if *net_if_get_ieee802154(void)
1452{
1453 return net_if_get_first_by_type(&NET_L2_GET_NAME(IEEE802154));
1454}
1455#endif /* CONFIG_NET_L2_IEEE802154 */
1456
1468 struct net_if_ipv6 **ipv6);
1469
1478
1488 struct net_if **iface);
1489
1499 struct in6_addr *addr);
1500
1509__syscall int net_if_ipv6_addr_lookup_by_index(const struct in6_addr *addr);
1510
1522 struct in6_addr *addr,
1524 uint32_t vlifetime);
1525
1536__syscall bool net_if_ipv6_addr_add_by_index(int index,
1537 struct in6_addr *addr,
1539 uint32_t vlifetime);
1540
1548 uint32_t vlifetime);
1549
1558bool net_if_ipv6_addr_rm(struct net_if *iface, const struct in6_addr *addr);
1559
1568__syscall bool net_if_ipv6_addr_rm_by_index(int index,
1569 const struct in6_addr *addr);
1570
1579typedef void (*net_if_ip_addr_cb_t)(struct net_if *iface,
1580 struct net_if_addr *addr,
1581 void *user_data);
1582
1592 void *user_data);
1593
1603 const struct in6_addr *addr);
1604
1613bool net_if_ipv6_maddr_rm(struct net_if *iface, const struct in6_addr *addr);
1614
1623typedef void (*net_if_ip_maddr_cb_t)(struct net_if *iface,
1624 struct net_if_mcast_addr *maddr,
1625 void *user_data);
1626
1636 void *user_data);
1637
1649 struct net_if **iface);
1650
1661typedef void (*net_if_mcast_callback_t)(struct net_if *iface,
1662 const struct net_addr *addr,
1663 bool is_joined);
1664
1683
1693 struct net_if *iface,
1695
1702
1710void net_if_mcast_monitor(struct net_if *iface, const struct net_addr *addr,
1711 bool is_joined);
1712
1720 struct net_if_mcast_addr *addr);
1721
1729static inline bool net_if_ipv6_maddr_is_joined(struct net_if_mcast_addr *addr)
1730{
1731 if (addr == NULL) {
1732 return false;
1733 }
1734
1735 return addr->is_joined;
1736}
1737
1745 struct net_if_mcast_addr *addr);
1746
1756 const struct in6_addr *addr);
1757
1768 struct in6_addr *addr,
1769 uint8_t len);
1770
1782 struct in6_addr *prefix,
1783 uint8_t len,
1785
1795bool net_if_ipv6_prefix_rm(struct net_if *iface, struct in6_addr *addr,
1796 uint8_t len);
1797
1805 bool is_infinite)
1806{
1807 prefix->is_infinite = is_infinite;
1808}
1809
1818
1825
1836bool net_if_ipv6_addr_onlink(struct net_if **iface, struct in6_addr *addr);
1837
1844#if defined(CONFIG_NET_NATIVE_IPV6)
1845static inline struct in6_addr *net_if_router_ipv6(struct net_if_router *router)
1846{
1847 if (router == NULL) {
1848 return NULL;
1849 }
1850
1851 return &router->address.in6_addr;
1852}
1853#else
1854static inline struct in6_addr *net_if_router_ipv6(struct net_if_router *router)
1855{
1856 static struct in6_addr addr;
1857
1858 ARG_UNUSED(router);
1859
1860 return &addr;
1861}
1862#endif
1863
1874 struct in6_addr *addr);
1875
1886 struct in6_addr *addr);
1887
1896
1907 struct in6_addr *addr,
1908 uint16_t router_lifetime);
1909
1918
1927#if defined(CONFIG_NET_NATIVE_IPV6)
1929#else
1931{
1932 ARG_UNUSED(iface);
1933
1934 return 0;
1935}
1936#endif /* CONFIG_NET_NATIVE_IPV6 */
1937
1944#if defined(CONFIG_NET_NATIVE_IPV6)
1945void net_if_ipv6_set_hop_limit(struct net_if *iface, uint8_t hop_limit);
1946#else
1947static inline void net_if_ipv6_set_hop_limit(struct net_if *iface,
1948 uint8_t hop_limit)
1949{
1950 ARG_UNUSED(iface);
1951 ARG_UNUSED(hop_limit);
1952}
1953#endif /* CONFIG_NET_NATIVE_IPV6 */
1954
1957/* The old hop limit setter function is deprecated because the naming
1958 * of it was incorrect. The API name was missing "_if_" so this function
1959 * should not be used.
1960 */
1961__deprecated
1962static inline void net_ipv6_set_hop_limit(struct net_if *iface,
1963 uint8_t hop_limit)
1964{
1965 net_if_ipv6_set_hop_limit(iface, hop_limit);
1966}
1967
1978#if defined(CONFIG_NET_NATIVE_IPV6)
1980#else
1982{
1983 ARG_UNUSED(iface);
1984
1985 return 0;
1986}
1987#endif /* CONFIG_NET_NATIVE_IPV6 */
1988
1995#if defined(CONFIG_NET_NATIVE_IPV6)
1996void net_if_ipv6_set_mcast_hop_limit(struct net_if *iface, uint8_t hop_limit);
1997#else
1999 uint8_t hop_limit)
2000{
2001 ARG_UNUSED(iface);
2002 ARG_UNUSED(hop_limit);
2003}
2004#endif /* CONFIG_NET_NATIVE_IPV6 */
2005
2013 uint32_t reachable_time)
2014{
2015#if defined(CONFIG_NET_NATIVE_IPV6)
2016 if (iface == NULL) {
2017 return;
2018 }
2019
2020 if (!iface->config.ip.ipv6) {
2021 return;
2022 }
2023
2024 iface->config.ip.ipv6->base_reachable_time = reachable_time;
2025#else
2026 ARG_UNUSED(iface);
2027 ARG_UNUSED(reachable_time);
2028
2029#endif
2030}
2031
2040{
2041#if defined(CONFIG_NET_NATIVE_IPV6)
2042 if (iface == NULL) {
2043 return 0;
2044 }
2045
2046 if (!iface->config.ip.ipv6) {
2047 return 0;
2048 }
2049
2050 return iface->config.ip.ipv6->reachable_time;
2051#else
2052 ARG_UNUSED(iface);
2053 return 0;
2054#endif
2055}
2056
2065
2072static inline void net_if_ipv6_set_reachable_time(struct net_if_ipv6 *ipv6)
2073{
2074#if defined(CONFIG_NET_NATIVE_IPV6)
2075 if (ipv6 == NULL) {
2076 return;
2077 }
2078
2080#else
2081 ARG_UNUSED(ipv6);
2082#endif
2083}
2084
2091static inline void net_if_ipv6_set_retrans_timer(struct net_if *iface,
2092 uint32_t retrans_timer)
2093{
2094#if defined(CONFIG_NET_NATIVE_IPV6)
2095 if (iface == NULL) {
2096 return;
2097 }
2098
2099 if (!iface->config.ip.ipv6) {
2100 return;
2101 }
2102
2103 iface->config.ip.ipv6->retrans_timer = retrans_timer;
2104#else
2105 ARG_UNUSED(iface);
2106 ARG_UNUSED(retrans_timer);
2107#endif
2108}
2109
2118{
2119#if defined(CONFIG_NET_NATIVE_IPV6)
2120 if (iface == NULL) {
2121 return 0;
2122 }
2123
2124 if (!iface->config.ip.ipv6) {
2125 return 0;
2126 }
2127
2128 return iface->config.ip.ipv6->retrans_timer;
2129#else
2130 ARG_UNUSED(iface);
2131 return 0;
2132#endif
2133}
2134
2146#if defined(CONFIG_NET_IPV6)
2147const struct in6_addr *net_if_ipv6_select_src_addr(struct net_if *iface,
2148 const struct in6_addr *dst);
2149#else
2150static inline const struct in6_addr *net_if_ipv6_select_src_addr(
2151 struct net_if *iface, const struct in6_addr *dst)
2152{
2153 ARG_UNUSED(iface);
2154 ARG_UNUSED(dst);
2155
2156 return NULL;
2157}
2158#endif
2159
2173#if defined(CONFIG_NET_IPV6)
2174const struct in6_addr *net_if_ipv6_select_src_addr_hint(struct net_if *iface,
2175 const struct in6_addr *dst,
2176 int flags);
2177#else
2178static inline const struct in6_addr *net_if_ipv6_select_src_addr_hint(
2179 struct net_if *iface, const struct in6_addr *dst, int flags)
2180{
2181 ARG_UNUSED(iface);
2182 ARG_UNUSED(dst);
2183 ARG_UNUSED(flags);
2184
2185 return NULL;
2186}
2187#endif
2188
2198#if defined(CONFIG_NET_IPV6)
2199struct net_if *net_if_ipv6_select_src_iface(const struct in6_addr *dst);
2200#else
2202 const struct in6_addr *dst)
2203{
2204 ARG_UNUSED(dst);
2205
2206 return NULL;
2207}
2208#endif
2209
2222#if defined(CONFIG_NET_IPV6)
2223struct net_if *net_if_ipv6_select_src_iface_addr(const struct in6_addr *dst,
2224 const struct in6_addr **src_addr);
2225#else
2227 const struct in6_addr *dst, const struct in6_addr **src_addr)
2228{
2229 ARG_UNUSED(dst);
2230 ARG_UNUSED(src_addr);
2231
2232 return NULL;
2233}
2234#endif /* CONFIG_NET_IPV6 */
2235
2245struct in6_addr *net_if_ipv6_get_ll(struct net_if *iface,
2246 enum net_addr_state addr_state);
2247
2258 struct net_if **iface);
2259
2267void net_if_ipv6_dad_failed(struct net_if *iface, const struct in6_addr *addr);
2268
2281 struct net_if **iface);
2282
2294 struct net_if_ipv4 **ipv4);
2295
2304
2313
2320void net_if_ipv4_set_ttl(struct net_if *iface, uint8_t ttl);
2321
2330
2338
2348 struct net_if **iface);
2349
2361 struct in_addr *addr,
2363 uint32_t vlifetime);
2364
2373bool net_if_ipv4_addr_rm(struct net_if *iface, const struct in_addr *addr);
2374
2383__syscall int net_if_ipv4_addr_lookup_by_index(const struct in_addr *addr);
2384
2395__syscall bool net_if_ipv4_addr_add_by_index(int index,
2396 struct in_addr *addr,
2398 uint32_t vlifetime);
2399
2408__syscall bool net_if_ipv4_addr_rm_by_index(int index,
2409 const struct in_addr *addr);
2410
2420 void *user_data);
2421
2431 const struct in_addr *addr);
2432
2441bool net_if_ipv4_maddr_rm(struct net_if *iface, const struct in_addr *addr);
2442
2452 void *user_data);
2453
2465 struct net_if **iface);
2466
2474 struct net_if_mcast_addr *addr);
2475
2483static inline bool net_if_ipv4_maddr_is_joined(struct net_if_mcast_addr *addr)
2484{
2485 if (addr == NULL) {
2486 return false;
2487 }
2488
2489 return addr->is_joined;
2490}
2491
2499 struct net_if_mcast_addr *addr);
2500
2507#if defined(CONFIG_NET_NATIVE_IPV4)
2508static inline struct in_addr *net_if_router_ipv4(struct net_if_router *router)
2509{
2510 if (router == NULL) {
2511 return NULL;
2512 }
2513
2514 return &router->address.in_addr;
2515}
2516#else
2517static inline struct in_addr *net_if_router_ipv4(struct net_if_router *router)
2518{
2519 static struct in_addr addr;
2520
2521 ARG_UNUSED(router);
2522
2523 return &addr;
2524}
2525#endif
2526
2537 struct in_addr *addr);
2538
2549 struct in_addr *addr);
2561 struct in_addr *addr,
2562 bool is_default,
2563 uint16_t router_lifetime);
2564
2573
2583 const struct in_addr *addr);
2584
2594 const struct in_addr *addr);
2595
2605#if defined(CONFIG_NET_IPV4)
2606struct net_if *net_if_ipv4_select_src_iface(const struct in_addr *dst);
2607#else
2609 const struct in_addr *dst)
2610{
2611 ARG_UNUSED(dst);
2612
2613 return NULL;
2614}
2615#endif
2616
2629#if defined(CONFIG_NET_IPV4)
2630struct net_if *net_if_ipv4_select_src_iface_addr(const struct in_addr *dst,
2631 const struct in_addr **src_addr);
2632#else
2634 const struct in_addr *dst, const struct in_addr **src_addr)
2635{
2636 ARG_UNUSED(dst);
2637 ARG_UNUSED(src_addr);
2638
2639 return NULL;
2640}
2641#endif /* CONFIG_NET_IPV4 */
2642
2654#if defined(CONFIG_NET_IPV4)
2655const struct in_addr *net_if_ipv4_select_src_addr(struct net_if *iface,
2656 const struct in_addr *dst);
2657#else
2658static inline const struct in_addr *net_if_ipv4_select_src_addr(
2659 struct net_if *iface, const struct in_addr *dst)
2660{
2661 ARG_UNUSED(iface);
2662 ARG_UNUSED(dst);
2663
2664 return NULL;
2665}
2666#endif
2667
2677struct in_addr *net_if_ipv4_get_ll(struct net_if *iface,
2678 enum net_addr_state addr_state);
2679
2690 enum net_addr_state addr_state);
2691
2702 const struct in_addr *addr);
2703
2713__deprecated struct in_addr net_if_ipv4_get_netmask(struct net_if *iface);
2714
2723__deprecated void net_if_ipv4_set_netmask(struct net_if *iface,
2724 const struct in_addr *netmask);
2725
2736__deprecated __syscall bool net_if_ipv4_set_netmask_by_index(int index,
2737 const struct in_addr *netmask);
2738
2749 const struct in_addr *addr,
2750 const struct in_addr *netmask);
2751
2762 const struct in_addr *addr,
2763 const struct in_addr *netmask);
2764
2772struct in_addr net_if_ipv4_get_gw(struct net_if *iface);
2773
2780void net_if_ipv4_set_gw(struct net_if *iface, const struct in_addr *gw);
2781
2790__syscall bool net_if_ipv4_set_gw_by_index(int index, const struct in_addr *gw);
2791
2802struct net_if *net_if_select_src_iface(const struct sockaddr *dst);
2803
2812typedef void (*net_if_link_callback_t)(struct net_if *iface,
2813 struct net_linkaddr *dst,
2814 int status);
2815
2831
2840
2847
2855void net_if_call_link_cb(struct net_if *iface, struct net_linkaddr *lladdr,
2856 int status);
2857
2860/* used to ensure encoding of checksum support in net_if.h and
2861 * ethernet.h is the same
2862 */
2863#define NET_IF_CHECKSUM_NONE_BIT 0
2864#define NET_IF_CHECKSUM_IPV4_HEADER_BIT BIT(0)
2865#define NET_IF_CHECKSUM_IPV4_ICMP_BIT BIT(1)
2866/* Space for future protocols and restrictions for IPV4 */
2867#define NET_IF_CHECKSUM_IPV6_HEADER_BIT BIT(10)
2868#define NET_IF_CHECKSUM_IPV6_ICMP_BIT BIT(11)
2869/* Space for future protocols and restrictions for IPV6 */
2870#define NET_IF_CHECKSUM_TCP_BIT BIT(21)
2871#define NET_IF_CHECKSUM_UDP_BIT BIT(22)
2872
2880 NET_IF_CHECKSUM_IPV4_HEADER = NET_IF_CHECKSUM_IPV4_HEADER_BIT,
2882 NET_IF_CHECKSUM_IPV4_TCP = NET_IF_CHECKSUM_IPV4_HEADER_BIT |
2883 NET_IF_CHECKSUM_TCP_BIT,
2885 NET_IF_CHECKSUM_IPV4_UDP = NET_IF_CHECKSUM_IPV4_HEADER_BIT |
2886 NET_IF_CHECKSUM_UDP_BIT,
2888 NET_IF_CHECKSUM_IPV4_ICMP = NET_IF_CHECKSUM_IPV4_ICMP_BIT,
2890 NET_IF_CHECKSUM_IPV6_HEADER = NET_IF_CHECKSUM_IPV6_HEADER_BIT,
2892 NET_IF_CHECKSUM_IPV6_TCP = NET_IF_CHECKSUM_IPV6_HEADER_BIT |
2893 NET_IF_CHECKSUM_TCP_BIT,
2895 NET_IF_CHECKSUM_IPV6_UDP = NET_IF_CHECKSUM_IPV6_HEADER_BIT |
2896 NET_IF_CHECKSUM_UDP_BIT,
2898 NET_IF_CHECKSUM_IPV6_ICMP = NET_IF_CHECKSUM_IPV6_ICMP_BIT
2900
2912 enum net_if_checksum_type chksum_type);
2913
2926 enum net_if_checksum_type chksum_type);
2927
2938__syscall struct net_if *net_if_get_by_index(int index);
2939
2947int net_if_get_by_iface(struct net_if *iface);
2948
2956typedef void (*net_if_cb_t)(struct net_if *iface, void *user_data);
2957
2965void net_if_foreach(net_if_cb_t cb, void *user_data);
2966
2974int net_if_up(struct net_if *iface);
2975
2983static inline bool net_if_is_up(struct net_if *iface)
2984{
2985 if (iface == NULL) {
2986 return false;
2987 }
2988
2989 return net_if_flag_is_set(iface, NET_IF_UP) &&
2991}
2992
3000int net_if_down(struct net_if *iface);
3001
3009static inline bool net_if_is_admin_up(struct net_if *iface)
3010{
3011 if (iface == NULL) {
3012 return false;
3013 }
3014
3015 return net_if_flag_is_set(iface, NET_IF_UP);
3016}
3017
3026void net_if_carrier_on(struct net_if *iface);
3027
3036void net_if_carrier_off(struct net_if *iface);
3037
3045static inline bool net_if_is_carrier_ok(struct net_if *iface)
3046{
3047 if (iface == NULL) {
3048 return false;
3049 }
3050
3051 return net_if_flag_is_set(iface, NET_IF_LOWER_UP);
3052}
3053
3064void net_if_dormant_on(struct net_if *iface);
3065
3074void net_if_dormant_off(struct net_if *iface);
3075
3083static inline bool net_if_is_dormant(struct net_if *iface)
3084{
3085 if (iface == NULL) {
3086 return false;
3087 }
3088
3089 return net_if_flag_is_set(iface, NET_IF_DORMANT);
3090}
3091
3092#if defined(CONFIG_NET_PKT_TIMESTAMP) && defined(CONFIG_NET_NATIVE)
3100typedef void (*net_if_timestamp_callback_t)(struct net_pkt *pkt);
3101
3110struct net_if_timestamp_cb {
3112 sys_snode_t node;
3113
3117 struct net_pkt *pkt;
3118
3122 struct net_if *iface;
3123
3125 net_if_timestamp_callback_t cb;
3126};
3127
3138void net_if_register_timestamp_cb(struct net_if_timestamp_cb *handle,
3139 struct net_pkt *pkt,
3140 struct net_if *iface,
3141 net_if_timestamp_callback_t cb);
3142
3148void net_if_unregister_timestamp_cb(struct net_if_timestamp_cb *handle);
3149
3155void net_if_call_timestamp_cb(struct net_pkt *pkt);
3156
3157/*
3158 * @brief Add timestamped TX buffer to be handled
3159 *
3160 * @param pkt Timestamped buffer
3161 */
3162void net_if_add_tx_timestamp(struct net_pkt *pkt);
3163#endif /* CONFIG_NET_PKT_TIMESTAMP */
3164
3174#if defined(CONFIG_NET_PROMISCUOUS_MODE)
3175int net_if_set_promisc(struct net_if *iface);
3176#else
3177static inline int net_if_set_promisc(struct net_if *iface)
3178{
3179 ARG_UNUSED(iface);
3180
3181 return -ENOTSUP;
3182}
3183#endif
3184
3190#if defined(CONFIG_NET_PROMISCUOUS_MODE)
3191void net_if_unset_promisc(struct net_if *iface);
3192#else
3193static inline void net_if_unset_promisc(struct net_if *iface)
3194{
3195 ARG_UNUSED(iface);
3196}
3197#endif
3198
3207#if defined(CONFIG_NET_PROMISCUOUS_MODE)
3208bool net_if_is_promisc(struct net_if *iface);
3209#else
3210static inline bool net_if_is_promisc(struct net_if *iface)
3211{
3212 ARG_UNUSED(iface);
3213
3214 return false;
3215}
3216#endif
3217
3227static inline bool net_if_are_pending_tx_packets(struct net_if *iface)
3228{
3229#if defined(CONFIG_NET_POWER_MANAGEMENT)
3230 return !!iface->tx_pending;
3231#else
3232 ARG_UNUSED(iface);
3233
3234 return false;
3235#endif
3236}
3237
3238#ifdef CONFIG_NET_POWER_MANAGEMENT
3246int net_if_suspend(struct net_if *iface);
3247
3255int net_if_resume(struct net_if *iface);
3256
3264bool net_if_is_suspended(struct net_if *iface);
3265#endif /* CONFIG_NET_POWER_MANAGEMENT */
3266
3274bool net_if_is_wifi(struct net_if *iface);
3275
3282
3289
3296
3311int net_if_get_name(struct net_if *iface, char *buf, int len);
3312
3327int net_if_set_name(struct net_if *iface, const char *buf);
3328
3336int net_if_get_by_name(const char *name);
3337
3339struct net_if_api {
3340 void (*init)(struct net_if *iface);
3341};
3342
3343#define NET_IF_DHCPV4_INIT \
3344 IF_ENABLED(UTIL_AND(IS_ENABLED(CONFIG_NET_DHCPV4), \
3345 IS_ENABLED(CONFIG_NET_NATIVE_IPV4)), \
3346 (.dhcpv4.state = NET_DHCPV4_DISABLED,))
3347
3348#define NET_IF_DHCPV6_INIT \
3349 IF_ENABLED(UTIL_AND(IS_ENABLED(CONFIG_NET_DHCPV6), \
3350 IS_ENABLED(CONFIG_NET_NATIVE_IPV6)), \
3351 (.dhcpv6.state = NET_DHCPV6_DISABLED,))
3352
3353#define NET_IF_CONFIG_INIT \
3354 .config = { \
3355 IF_ENABLED(CONFIG_NET_IP, (.ip = {},)) \
3356 NET_IF_DHCPV4_INIT \
3357 NET_IF_DHCPV6_INIT \
3358 }
3359
3360#define NET_PROMETHEUS_GET_COLLECTOR_NAME(dev_id, sfx) \
3361 net_stats_##dev_id##_##sfx##_collector
3362#define NET_PROMETHEUS_INIT(dev_id, sfx) \
3363 IF_ENABLED(CONFIG_NET_STATISTICS_VIA_PROMETHEUS, \
3364 (.collector = &NET_PROMETHEUS_GET_COLLECTOR_NAME(dev_id, sfx),))
3365
3366#define NET_IF_GET_NAME(dev_id, sfx) __net_if_##dev_id##_##sfx
3367#define NET_IF_DEV_GET_NAME(dev_id, sfx) __net_if_dev_##dev_id##_##sfx
3368
3369#define NET_IF_GET(dev_id, sfx) \
3370 ((struct net_if *)&NET_IF_GET_NAME(dev_id, sfx))
3371
3372#if defined(CONFIG_NET_STATISTICS_VIA_PROMETHEUS)
3373extern int net_stats_prometheus_scrape(struct prometheus_collector *collector,
3374 struct prometheus_metric *metric,
3375 void *user_data);
3376#endif /* CONFIG_NET_STATISTICS_VIA_PROMETHEUS */
3377
3378#define NET_IF_INIT(dev_id, sfx, _l2, _mtu, _num_configs) \
3379 static STRUCT_SECTION_ITERABLE(net_if_dev, \
3380 NET_IF_DEV_GET_NAME(dev_id, sfx)) = { \
3381 .dev = &(DEVICE_NAME_GET(dev_id)), \
3382 .l2 = &(NET_L2_GET_NAME(_l2)), \
3383 .l2_data = &(NET_L2_GET_DATA(dev_id, sfx)), \
3384 .mtu = _mtu, \
3385 .flags = {BIT(NET_IF_LOWER_UP)}, \
3386 }; \
3387 static Z_DECL_ALIGN(struct net_if) \
3388 NET_IF_GET_NAME(dev_id, sfx)[_num_configs] \
3389 __used __noasan __in_section(_net_if, static, \
3390 dev_id) = { \
3391 [0 ... (_num_configs - 1)] = { \
3392 .if_dev = &(NET_IF_DEV_GET_NAME(dev_id, sfx)), \
3393 NET_IF_CONFIG_INIT \
3394 } \
3395 }; \
3396 IF_ENABLED(CONFIG_NET_STATISTICS_VIA_PROMETHEUS, \
3397 (static PROMETHEUS_COLLECTOR_DEFINE( \
3398 NET_PROMETHEUS_GET_COLLECTOR_NAME(dev_id, \
3399 sfx), \
3400 net_stats_prometheus_scrape, \
3401 NET_IF_GET(dev_id, sfx)); \
3402 NET_STATS_PROMETHEUS(NET_IF_GET(dev_id, sfx), \
3403 dev_id, sfx);))
3404
3405#define NET_IF_OFFLOAD_INIT(dev_id, sfx, _mtu) \
3406 static STRUCT_SECTION_ITERABLE(net_if_dev, \
3407 NET_IF_DEV_GET_NAME(dev_id, sfx)) = { \
3408 .dev = &(DEVICE_NAME_GET(dev_id)), \
3409 .mtu = _mtu, \
3410 .l2 = &(NET_L2_GET_NAME(OFFLOADED_NETDEV)), \
3411 .flags = {BIT(NET_IF_LOWER_UP)}, \
3412 }; \
3413 static Z_DECL_ALIGN(struct net_if) \
3414 NET_IF_GET_NAME(dev_id, sfx)[NET_IF_MAX_CONFIGS] \
3415 __used __in_section(_net_if, static, \
3416 dev_id) = { \
3417 [0 ... (NET_IF_MAX_CONFIGS - 1)] = { \
3418 .if_dev = &(NET_IF_DEV_GET_NAME(dev_id, sfx)), \
3419 NET_IF_CONFIG_INIT \
3420 } \
3421 }; \
3422 IF_ENABLED(CONFIG_NET_STATISTICS_VIA_PROMETHEUS, \
3423 (static PROMETHEUS_COLLECTOR_DEFINE( \
3424 NET_PROMETHEUS_GET_COLLECTOR_NAME(dev_id, \
3425 sfx), \
3426 net_stats_prometheus_scrape, \
3427 NET_IF_GET(dev_id, sfx)); \
3428 NET_STATS_PROMETHEUS(NET_IF_GET(dev_id, sfx), \
3429 dev_id, sfx);))
3430
3431
3434/* Network device initialization macros */
3435
3436#define Z_NET_DEVICE_INIT_INSTANCE(node_id, dev_id, name, instance, \
3437 init_fn, pm, data, config, prio, \
3438 api, l2, l2_ctx_type, mtu) \
3439 Z_DEVICE_STATE_DEFINE(dev_id); \
3440 Z_DEVICE_DEFINE(node_id, dev_id, name, init_fn, NULL, \
3441 Z_DEVICE_DT_FLAGS(node_id), pm, data, \
3442 config, POST_KERNEL, prio, api, \
3443 &Z_DEVICE_STATE_NAME(dev_id)); \
3444 NET_L2_DATA_INIT(dev_id, instance, l2_ctx_type); \
3445 NET_IF_INIT(dev_id, instance, l2, mtu, NET_IF_MAX_CONFIGS)
3446
3447#define Z_NET_DEVICE_INIT(node_id, dev_id, name, init_fn, pm, data, \
3448 config, prio, api, l2, l2_ctx_type, mtu) \
3449 Z_NET_DEVICE_INIT_INSTANCE(node_id, dev_id, name, 0, init_fn, \
3450 pm, data, config, prio, api, l2, \
3451 l2_ctx_type, mtu)
3452
3472#define NET_DEVICE_INIT(dev_id, name, init_fn, pm, data, config, prio, \
3473 api, l2, l2_ctx_type, mtu) \
3474 Z_NET_DEVICE_INIT(DT_INVALID_NODE, dev_id, name, init_fn, pm, \
3475 data, config, prio, api, l2, l2_ctx_type, mtu)
3476
3495#define NET_DEVICE_DT_DEFINE(node_id, init_fn, pm, data, \
3496 config, prio, api, l2, l2_ctx_type, mtu) \
3497 Z_NET_DEVICE_INIT(node_id, Z_DEVICE_DT_DEV_ID(node_id), \
3498 DEVICE_DT_NAME(node_id), init_fn, pm, data, \
3499 config, prio, api, l2, l2_ctx_type, mtu)
3500
3509#define NET_DEVICE_DT_INST_DEFINE(inst, ...) \
3510 NET_DEVICE_DT_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
3511
3535#define NET_DEVICE_INIT_INSTANCE(dev_id, name, instance, init_fn, pm, \
3536 data, config, prio, api, l2, \
3537 l2_ctx_type, mtu) \
3538 Z_NET_DEVICE_INIT_INSTANCE(DT_INVALID_NODE, dev_id, name, \
3539 instance, init_fn, pm, data, config, \
3540 prio, api, l2, l2_ctx_type, mtu)
3541
3564#define NET_DEVICE_DT_DEFINE_INSTANCE(node_id, instance, init_fn, pm, \
3565 data, config, prio, api, l2, \
3566 l2_ctx_type, mtu) \
3567 Z_NET_DEVICE_INIT_INSTANCE(node_id, \
3568 Z_DEVICE_DT_DEV_ID(node_id), \
3569 DEVICE_DT_NAME(node_id), instance, \
3570 init_fn, pm, data, config, prio, \
3571 api, l2, l2_ctx_type, mtu)
3572
3582#define NET_DEVICE_DT_INST_DEFINE_INSTANCE(inst, ...) \
3583 NET_DEVICE_DT_DEFINE_INSTANCE(DT_DRV_INST(inst), __VA_ARGS__)
3584
3585#define Z_NET_DEVICE_OFFLOAD_INIT(node_id, dev_id, name, init_fn, pm, \
3586 data, config, prio, api, mtu) \
3587 Z_DEVICE_STATE_DEFINE(dev_id); \
3588 Z_DEVICE_DEFINE(node_id, dev_id, name, init_fn, NULL, \
3589 Z_DEVICE_DT_FLAGS(node_id), pm, data, \
3590 config, POST_KERNEL, prio, api, \
3591 &Z_DEVICE_STATE_NAME(dev_id)); \
3592 NET_IF_OFFLOAD_INIT(dev_id, 0, mtu)
3593
3613#define NET_DEVICE_OFFLOAD_INIT(dev_id, name, init_fn, pm, data, \
3614 config, prio, api, mtu) \
3615 Z_NET_DEVICE_OFFLOAD_INIT(DT_INVALID_NODE, dev_id, name, \
3616 init_fn, pm, data, config, prio, api, \
3617 mtu)
3618
3637#define NET_DEVICE_DT_OFFLOAD_DEFINE(node_id, init_fn, pm, data, \
3638 config, prio, api, mtu) \
3639 Z_NET_DEVICE_OFFLOAD_INIT(node_id, Z_DEVICE_DT_DEV_ID(node_id), \
3640 DEVICE_DT_NAME(node_id), init_fn, pm, \
3641 data, config, prio, api, mtu)
3642
3652#define NET_DEVICE_DT_INST_OFFLOAD_DEFINE(inst, ...) \
3653 NET_DEVICE_DT_OFFLOAD_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
3654
3660#define NET_IFACE_COUNT(_dst) \
3661 do { \
3662 extern struct net_if _net_if_list_start[]; \
3663 extern struct net_if _net_if_list_end[]; \
3664 *(_dst) = ((uintptr_t)_net_if_list_end - \
3665 (uintptr_t)_net_if_list_start) / \
3666 sizeof(struct net_if); \
3667 } while (0)
3668
3669#ifdef __cplusplus
3670}
3671#endif
3672
3673#include <zephyr/syscalls/net_if.h>
3674
3679#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
long atomic_t
Definition atomic_types.h:15
Prometheus collector APIs.
DHCPv4 Client Handler.
DHCPv6 client.
static void atomic_set_bit(atomic_t *target, int bit)
Atomically set a bit.
Definition atomic.h:209
static bool atomic_test_bit(const atomic_t *target, int bit)
Atomically get and test a bit.
Definition atomic.h:127
static void atomic_clear_bit(atomic_t *target, int bit)
Atomically clear a bit.
Definition atomic.h:191
#define ATOMIC_DEFINE(name, num_bits)
Define an array of atomic variables.
Definition atomic.h:111
static bool atomic_test_and_clear_bit(atomic_t *target, int bit)
Atomically clear a bit and test it.
Definition atomic.h:147
static bool atomic_test_and_set_bit(atomic_t *target, int bit)
Atomically set a bit and test it.
Definition atomic.h:170
#define K_FOREVER
Generate infinite timeout delay.
Definition kernel.h:1481
#define K_NO_WAIT
Generate null timeout delay.
Definition kernel.h:1371
unsigned short int sa_family_t
Socket address family type.
Definition net_ip.h:168
net_addr_state
What is the current state of the network address.
Definition net_ip.h:530
net_addr_type
How the network address is assigned to network interface.
Definition net_ip.h:538
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:103
static int net_hostname_set_postfix(const uint8_t *hostname_postfix, int postfix_len)
Set the device hostname postfix.
Definition hostname.h:113
struct net_if * net_if_select_src_iface(const struct sockaddr *dst)
Get a network interface that should be used when sending IPv6 or IPv4 network data to destination.
struct net_if_router * net_if_ipv4_router_lookup(struct net_if *iface, struct in_addr *addr)
Check if IPv4 address is one of the routers configured in the system.
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.
struct net_if_addr * net_if_ipv4_addr_lookup(const struct in_addr *addr, struct net_if **iface)
Check if this IPv4 address belongs to one of the interfaces.
int net_if_set_name(struct net_if *iface, const char *buf)
Set network interface name.
static struct net_if * net_if_ipv4_select_src_iface_addr(const struct in_addr *dst, const struct in_addr **src_addr)
Get a network interface that should be used when sending IPv4 network data to destination.
Definition net_if.h:2633
static bool net_if_is_carrier_ok(struct net_if *iface)
Check if carrier is present on network device.
Definition net_if.h:3045
static bool net_if_is_admin_up(struct net_if *iface)
Check if interface was brought up by the administrator.
Definition net_if.h:3009
void net_if_set_default(struct net_if *iface)
Set the default network interface.
int net_if_ipv4_addr_lookup_by_index(const struct in_addr *addr)
Check if this IPv4 address belongs to one of the interface indices.
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:1661
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:2812
struct net_if * net_if_get_wifi_sta(void)
Get Wi-Fi network station interface.
struct net_if_addr * net_if_ipv6_addr_lookup(const struct in6_addr *addr, struct net_if **iface)
Check if this IPv6 address belongs to one of the interfaces.
void net_if_ipv4_maddr_leave(struct net_if *iface, struct net_if_mcast_addr *addr)
Mark a given multicast address to be left.
int net_if_ipv6_addr_lookup_by_index(const struct in6_addr *addr)
Check if this IPv6 address belongs to one of the interface indices.
int net_if_get_by_name(const char *name)
Get interface index according to its name.
struct net_if * net_if_get_by_link_addr(struct net_linkaddr *ll_addr)
Get an interface according to link layer address.
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.
bool net_if_ipv4_maddr_rm(struct net_if *iface, const struct in_addr *addr)
Remove an IPv4 multicast address from an interface.
void net_if_ipv6_dad_failed(struct net_if *iface, const struct in6_addr *addr)
Stop IPv6 Duplicate Address Detection (DAD) procedure if we find out that our IPv6 address is already...
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:896
int net_if_down(struct net_if *iface)
Bring interface down.
struct net_if_router * net_if_ipv4_router_find_default(struct net_if *iface, struct in_addr *addr)
Find default router for this IPv4 address.
bool net_if_ipv6_addr_onlink(struct net_if **iface, struct in6_addr *addr)
Check if this IPv6 address is part of the subnet of our network interface.
static struct in_addr * net_if_router_ipv4(struct net_if_router *router)
Get the IPv4 address of the given router.
Definition net_if.h:2517
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:1030
void net_if_ipv6_prefix_unset_timer(struct net_if_ipv6_prefix *prefix)
Unset the prefix lifetime timer.
struct net_if_ipv6_prefix * net_if_ipv6_prefix_add(struct net_if *iface, struct in6_addr *prefix, uint8_t len, uint32_t lifetime)
Add a IPv6 prefix to an network interface.
void net_if_ipv4_set_gw(struct net_if *iface, const struct in_addr *gw)
Set IPv4 gateway for an interface.
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.
struct net_if_router * net_if_ipv6_router_find_default(struct net_if *iface, struct in6_addr *addr)
Find default router for this IPv6 address.
bool net_if_ipv6_prefix_rm(struct net_if *iface, struct in6_addr *addr, uint8_t len)
Remove an IPv6 prefix from an interface.
void net_if_mcast_monitor(struct net_if *iface, const struct net_addr *addr, bool is_joined)
Call registered multicast monitors.
static void * net_if_l2_data(struct net_if *iface)
Get a pointer to the interface L2 private data.
Definition net_if.h:989
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:3227
struct in_addr net_if_ipv4_get_netmask(struct net_if *iface)
Get IPv4 netmask of an interface.
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:826
bool net_if_ipv4_addr_rm(struct net_if *iface, const struct in_addr *addr)
Remove a IPv4 address from an interface.
struct net_if_router * net_if_ipv4_router_add(struct net_if *iface, struct in_addr *addr, bool is_default, uint16_t router_lifetime)
Add IPv4 router to the system.
static struct net_linkaddr * net_if_get_link_addr(struct net_if *iface)
Get an network interface's link address.
Definition net_if.h:1159
void net_if_ipv6_maddr_join(struct net_if *iface, struct net_if_mcast_addr *addr)
Mark a given multicast address to be joined.
static const struct in6_addr * net_if_ipv6_select_src_addr(struct net_if *iface, const struct in6_addr *dst)
Get a IPv6 source address that should be used when sending network data to destination.
Definition net_if.h:2150
static void net_if_nbr_reachability_hint(struct net_if *iface, const struct in6_addr *ipv6_addr)
Provide a reachability hint for IPv6 Neighbor Discovery.
Definition net_if.h:1235
static struct net_offload * net_if_offload(struct net_if *iface)
Return the IP offload plugin.
Definition net_if.h:1072
static int net_if_set_link_addr(struct net_if *iface, uint8_t *addr, uint8_t len, enum net_link_type type)
Set a network interface's link address.
Definition net_if.h:1312
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:808
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.
bool net_if_ipv4_addr_mask_cmp(struct net_if *iface, const struct in_addr *addr)
Check if the given IPv4 address belongs to local subnet.
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:1981
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:1947
static const struct in6_addr * net_if_ipv6_select_src_addr_hint(struct net_if *iface, const struct in6_addr *dst, int flags)
Get a IPv6 source address that should be used when sending network data to destination.
Definition net_if.h:2178
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.
bool net_if_ipv6_addr_rm(struct net_if *iface, const struct in6_addr *addr)
Remove an IPv6 address from an interface.
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:1930
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:1044
static bool net_if_is_dormant(struct net_if *iface)
Check if the interface is dormant.
Definition net_if.h:3083
struct net_if * net_if_get_first_wifi(void)
Get first Wi-Fi network interface.
struct net_if_addr * net_if_ipv4_addr_add(struct net_if *iface, struct in_addr *addr, enum net_addr_type addr_type, uint32_t vlifetime)
Add a IPv4 address to an interface.
uint8_t net_if_ipv4_get_mcast_ttl(struct net_if *iface)
Get IPv4 multicast time-to-live value specified for a given 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:1623
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.
static void net_if_set_mtu(struct net_if *iface, uint16_t mtu)
Set an network interface's MTU.
Definition net_if.h:1345
struct net_if_mcast_addr * net_if_ipv6_maddr_add(struct net_if *iface, const struct in6_addr *addr)
Add a IPv6 multicast address to an interface.
bool net_if_ipv4_set_netmask_by_addr(struct net_if *iface, const struct in_addr *addr, const struct in_addr *netmask)
Set IPv4 netmask for an interface index for a given address.
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:2983
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.
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:2072
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:948
struct 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_ipv4_put(struct net_if *iface)
Release network interface IPv4 config.
bool net_if_ipv4_set_netmask_by_addr_by_index(int index, const struct in_addr *addr, const struct in_addr *netmask)
Set IPv4 netmask for an interface index for a given address.
void net_if_dormant_on(struct net_if *iface)
Mark interface as dormant.
int net_if_config_ipv6_put(struct net_if *iface)
Release network interface IPv6 config.
net_if_checksum_type
Type of checksum for which support in the interface will be queried.
Definition net_if.h:2878
bool net_if_ipv4_is_addr_bcast(struct net_if *iface, const struct in_addr *addr)
Check if the given IPv4 address is a broadcast address.
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.
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.
bool net_if_ipv4_set_netmask_by_index(int index, const struct in_addr *netmask)
Set IPv4 netmask for an interface index.
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.
static void net_if_start_dad(struct net_if *iface)
Start duplicate address detection procedure.
Definition net_if.h:1192
void net_if_foreach(net_if_cb_t cb, void *user_data)
Go through all the network interfaces and call callback for each interface.
bool net_if_ipv6_addr_add_by_index(int index, struct in6_addr *addr, enum net_addr_type addr_type, uint32_t vlifetime)
Add a IPv6 address to an interface by index.
struct net_if_router * net_if_ipv6_router_add(struct net_if *iface, struct in6_addr *addr, uint16_t router_lifetime)
Add IPv6 router to the system.
static void net_if_unset_promisc(struct net_if *iface)
Set network interface into normal mode.
Definition net_if.h:3193
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:1115
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:2039
static bool net_if_is_promisc(struct net_if *iface)
Check if promiscuous mode is set or not.
Definition net_if.h:3210
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:2483
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:1804
struct net_if_mcast_addr * net_if_ipv4_maddr_add(struct net_if *iface, const struct in_addr *addr)
Add a IPv4 multicast address to an interface.
bool net_if_is_wifi(struct net_if *iface)
Check if the network interface supports Wi-Fi.
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.
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_if_ipv6_prefix * net_if_ipv6_prefix_lookup(struct net_if *iface, struct in6_addr *addr, uint8_t len)
Check if this IPv6 prefix belongs to this interface.
static void net_if_stop_rs(struct net_if *iface)
Stop neighbor discovery.
Definition net_if.h:1214
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:2012
struct net_if_addr * net_if_ipv6_addr_lookup_by_iface(struct net_if *iface, struct in6_addr *addr)
Check if this IPv6 address belongs to this specific interfaces.
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:1579
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...
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:860
void net_if_start_rs(struct net_if *iface)
Start neighbor discovery and send router solicitation message.
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:1729
bool net_if_ipv6_addr_rm_by_index(int index, const struct in6_addr *addr)
Remove an IPv6 address from an interface by index.
void(* net_if_cb_t)(struct net_if *iface, void *user_data)
Callback used while iterating over network interfaces.
Definition net_if.h:2956
bool net_if_ipv4_addr_rm_by_index(int index, const struct in_addr *addr)
Remove a IPv4 address from an interface by interface index.
struct 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 uint16_t net_if_get_mtu(struct net_if *iface)
Get an network interface's MTU.
Definition net_if.h:1330
struct net_if_router * net_if_ipv6_router_lookup(struct net_if *iface, struct in6_addr *addr)
Check if IPv6 address is one of the routers configured in the system.
bool net_if_ipv4_addr_add_by_index(int index, struct in_addr *addr, enum net_addr_type addr_type, uint32_t vlifetime)
Add a IPv4 address to an interface by network interface index.
void net_if_ipv6_maddr_leave(struct net_if *iface, struct net_if_mcast_addr *addr)
Mark a given multicast address to be left.
struct 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.
void net_if_mcast_mon_unregister(struct net_if_mcast_monitor *mon)
Unregister a multicast monitor.
void net_if_ipv4_set_netmask(struct net_if *iface, const struct in_addr *netmask)
Set IPv4 netmask for an interface.
static const struct in_addr * net_if_ipv4_select_src_addr(struct net_if *iface, const struct in_addr *dst)
Get a IPv4 source address that should be used when sending network data to destination.
Definition net_if.h:2658
struct 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.
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:2091
struct 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.
struct net_if_mcast_addr * net_if_ipv6_maddr_lookup(const struct in6_addr *addr, struct net_if **iface)
Check if this IPv6 multicast address belongs to a specific interface or one of the interfaces.
struct net_if * net_if_lookup_by_dev(const struct device *dev)
Find an interface from it's related device.
static struct in6_addr * net_if_router_ipv6(struct net_if_router *router)
Get the IPv6 address of the given router.
Definition net_if.h:1854
struct net_if_mcast_addr * net_if_ipv4_maddr_lookup(const struct in_addr *addr, struct net_if **iface)
Check if this IPv4 multicast address belongs to a specific interface or one of the interfaces.
void net_if_router_rm(struct net_if_router *router)
Remove a router from the system.
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:2117
bool net_if_ipv4_set_gw_by_index(int index, const struct in_addr *gw)
Set IPv4 gateway for an interface index.
struct in_addr net_if_ipv4_get_netmask_by_addr(struct net_if *iface, const struct in_addr *addr)
Get IPv4 netmask related to an address of an interface.
net_if_oper_state
Network interface operational status (RFC 2863).
Definition net_if.h:306
struct net_if_addr * net_if_ipv6_addr_add(struct net_if *iface, struct in6_addr *addr, enum net_addr_type addr_type, uint32_t vlifetime)
Add a IPv6 address to an interface.
static struct net_if * net_if_ipv6_select_src_iface_addr(const struct in6_addr *dst, const struct in6_addr **src_addr)
Get a network interface that should be used when sending IPv6 network data to destination.
Definition net_if.h:2226
static struct net_if * net_if_ipv6_select_src_iface(const struct in6_addr *dst)
Get a network interface that should be used when sending IPv6 network data to destination.
Definition net_if.h:2201
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:878
static struct net_if_config * net_if_config_get(struct net_if *iface)
Get network interface IP config.
Definition net_if.h:1396
static struct net_if_config * net_if_get_config(struct net_if *iface)
Return network configuration for this network interface.
Definition net_if.h:1175
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 in_addr net_if_ipv4_get_gw(struct net_if *iface)
Get IPv4 gateway of an interface.
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:1361
net_if_flag
Network interface flags.
Definition net_if.h:248
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...
struct net_if_ipv6_prefix * net_if_ipv6_prefix_get(struct net_if *iface, const struct in6_addr *addr)
Return prefix that corresponds to this IPv6 address.
static const struct device * net_if_get_device(struct net_if *iface)
Get an network interface's device.
Definition net_if.h:1005
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:652
void net_if_ipv6_addr_update_lifetime(struct net_if_addr *ifaddr, uint32_t vlifetime)
Update validity lifetime time of an IPv6 address.
bool net_if_ipv6_maddr_rm(struct net_if *iface, const struct in6_addr *addr)
Remove an IPv6 multicast address from an interface.
static bool net_if_is_socket_offloaded(struct net_if *iface)
Return the socket offload status.
Definition net_if.h:1094
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:1998
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:3177
static const struct net_l2 * net_if_l2(struct net_if *iface)
Get a pointer to the interface L2.
Definition net_if.h:963
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:1137
static struct net_if * net_if_ipv4_select_src_iface(const struct in_addr *dst)
Get a network interface that should be used when sending IPv4 network data to destination.
Definition net_if.h:2608
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:842
@ NET_IF_CHECKSUM_IPV4_ICMP
Interface supports checksum calculation for ICMP4 payload in IPv4.
Definition net_if.h:2888
@ NET_IF_CHECKSUM_IPV6_TCP
Interface supports checksum calculation for TCP payload in IPv6.
Definition net_if.h:2892
@ NET_IF_CHECKSUM_IPV6_UDP
Interface supports checksum calculation for UDP payload in IPv6.
Definition net_if.h:2895
@ NET_IF_CHECKSUM_IPV4_HEADER
Interface supports IP version 4 header checksum calculation.
Definition net_if.h:2880
@ NET_IF_CHECKSUM_IPV4_TCP
Interface supports checksum calculation for TCP payload in IPv4.
Definition net_if.h:2882
@ NET_IF_CHECKSUM_IPV6_HEADER
Interface supports IP version 6 header checksum calculation.
Definition net_if.h:2890
@ NET_IF_CHECKSUM_IPV6_ICMP
Interface supports checksum calculation for ICMP6 payload in IPv6.
Definition net_if.h:2898
@ NET_IF_CHECKSUM_IPV4_UDP
Interface supports checksum calculation for UDP payload in IPv4.
Definition net_if.h:2885
@ NET_IF_OPER_TESTING
Training mode.
Definition net_if.h:311
@ NET_IF_OPER_DORMANT
Waiting external action.
Definition net_if.h:312
@ NET_IF_OPER_UP
Interface is up.
Definition net_if.h:313
@ NET_IF_OPER_NOTPRESENT
Hardware missing.
Definition net_if.h:308
@ NET_IF_OPER_UNKNOWN
Initial (unknown) value.
Definition net_if.h:307
@ NET_IF_OPER_DOWN
Interface is down.
Definition net_if.h:309
@ NET_IF_OPER_LOWERLAYERDOWN
Lower layer interface is down.
Definition net_if.h:310
@ NET_IF_NO_AUTO_START
Do not start the interface immediately after initialization.
Definition net_if.h:264
@ NET_IF_IPV6_NO_MLD
IPv6 Multicast Listener Discovery disabled.
Definition net_if.h:294
@ NET_IF_POINTOPOINT
Interface is pointopoint.
Definition net_if.h:253
@ NET_IF_IPV6_NO_ND
IPv6 Neighbor Discovery disabled.
Definition net_if.h:291
@ NET_IF_FORWARD_MULTICASTS
Flag defines if received multicasts of other interface are forwarded on this interface.
Definition net_if.h:273
@ NET_IF_IPV4
Interface supports IPv4.
Definition net_if.h:276
@ NET_IF_PROMISC
Interface is in promiscuous mode.
Definition net_if.h:256
@ NET_IF_DORMANT
Driver signals dormant.
Definition net_if.h:288
@ NET_IF_SUSPENDED
Power management specific: interface is being suspended.
Definition net_if.h:267
@ NET_IF_IPV6
Interface supports IPv6.
Definition net_if.h:279
@ NET_IF_UP
Interface is admin up.
Definition net_if.h:250
@ NET_IF_LOWER_UP
Driver signals L1 is up.
Definition net_if.h:285
@ NET_IF_RUNNING
Interface up and running (ready to receive and transmit).
Definition net_if.h:282
@ NET_IF_NO_TX_LOCK
Mutex locking on TX data path disabled on the interface.
Definition net_if.h:297
net_link_type
Type of the link address.
Definition net_linkaddr.h:49
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:170
struct _slist sys_slist_t
Single-linked list structure.
Definition slist.h:49
struct _snode sys_snode_t
Single-linked list node structure.
Definition slist.h:39
#define IF_ENABLED(_flag, _code)
Insert code if _flag is defined and equals 1.
Definition util_macro.h:247
#define EINVAL
Invalid argument.
Definition errno.h:60
#define ENOTSUP
Unsupported value.
Definition errno.h:114
#define EPERM
Not owner.
Definition errno.h:39
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
__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:504
IPv6 address struct.
Definition net_ip.h:143
IPv4 address struct.
Definition net_ip.h:155
Definition kernel.h:2524
Mutex Structure.
Definition kernel.h:3054
Thread Structure.
Definition thread.h:262
Kernel timeout type.
Definition sys_clock.h:65
Kernel timepoint type.
Definition sys_clock.h:235
DHCPv6 client configuration parameters.
Definition dhcpv6.h:63
Network Interface unicast IPv4 address and netmask.
Definition net_if.h:467
struct net_if_addr ipv4
IPv4 address.
Definition net_if.h:469
struct in_addr netmask
Netmask.
Definition net_if.h:471
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:142
uint8_t is_temporary
Is this IP address temporary and generated for example by IPv6 privacy extension (RFC 8981)
Definition net_if.h:147
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:136
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:150
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:139
IP and other configuration related data for network interface.
Definition net_if.h:585
Network Interface Device structure.
Definition net_if.h:668
enum net_if_oper_state oper_state
RFC 2863 operational status.
Definition net_if.h:704
const struct net_l2 *const l2
Interface's L2 layer.
Definition net_if.h:673
void * l2_data
Interface's private L2 data pointer.
Definition net_if.h:676
uint16_t mtu
The hardware MTU.
Definition net_if.h:694
const struct device * dev
The actually device driver instance the net_if is related to.
Definition net_if.h:670
struct net_linkaddr link_addr
The hardware link address.
Definition net_if.h:682
atomic_t flags[ATOMIC_BITMAP_SIZE(NET_IF_NUM_FLAGS)]
For internal use.
Definition net_if.h:679
Network interface IP address configuration.
Definition net_if.h:572
IPv4 configuration.
Definition net_if.h:475
uint8_t mcast_ttl
IPv4 time-to-live for multicast packets.
Definition net_if.h:489
struct net_if_addr_ipv4 unicast[NET_IF_MAX_IPV4_ADDR]
Unicast IP addresses.
Definition net_if.h:477
struct in_addr gw
Gateway.
Definition net_if.h:483
uint8_t ttl
IPv4 time-to-live.
Definition net_if.h:486
struct net_if_mcast_addr mcast[NET_IF_MAX_IPV4_MADDR]
Multicast IP addresses.
Definition net_if.h:480
Network Interface IPv6 prefixes.
Definition net_if.h:192
struct net_if * iface
Backpointer to network interface where this prefix is used.
Definition net_if.h:200
uint8_t is_infinite
Is the IP prefix valid forever.
Definition net_if.h:206
uint8_t len
Prefix length.
Definition net_if.h:203
struct in6_addr prefix
IPv6 prefix.
Definition net_if.h:197
uint8_t is_used
Is this prefix used or not.
Definition net_if.h:209
struct net_timeout lifetime
Prefix lifetime.
Definition net_if.h:194
IPv6 configuration.
Definition net_if.h:333
struct net_if_ipv6_prefix prefix[NET_IF_MAX_IPV6_PREFIX]
Prefixes.
Definition net_if.h:341
uint32_t base_reachable_time
Default reachable time (RFC 4861, page 52)
Definition net_if.h:344
uint8_t hop_limit
IPv6 hop limit.
Definition net_if.h:382
struct net_if_mcast_addr mcast[NET_IF_MAX_IPV6_MADDR]
Multicast IP addresses.
Definition net_if.h:338
uint32_t retrans_timer
Retransmit timer (RFC 4861, page 52)
Definition net_if.h:350
struct net_if_addr unicast[NET_IF_MAX_IPV6_ADDR]
Unicast IP addresses.
Definition net_if.h:335
uint8_t mcast_hop_limit
IPv6 multicast hop limit.
Definition net_if.h:385
uint32_t reachable_time
Reachable time (RFC 4861, page 20)
Definition net_if.h:347
Network Interface multicast IP addresses.
Definition net_if.h:160
struct net_addr address
IP address.
Definition net_if.h:162
uint8_t is_joined
Did we join to this group.
Definition net_if.h:182
sys_snode_t rejoin_node
Rejoining multicast groups list node.
Definition net_if.h:165
uint8_t is_used
Is this multicast IP address used or not.
Definition net_if.h:179
Multicast monitor handler struct.
Definition net_if.h:1673
sys_snode_t node
Node information for the slist.
Definition net_if.h:1675
net_if_mcast_callback_t cb
Multicast callback.
Definition net_if.h:1681
struct net_if * iface
Network interface.
Definition net_if.h:1678
Information about routers in the system.
Definition net_if.h:219
struct net_if * iface
Network interface the router is connected to.
Definition net_if.h:227
uint8_t is_default
Is default router.
Definition net_if.h:239
uint16_t lifetime
Router lifetime.
Definition net_if.h:233
uint8_t is_infinite
Is the router valid forever.
Definition net_if.h:242
uint8_t is_used
Is this router used or not.
Definition net_if.h:236
struct net_addr address
IP address.
Definition net_if.h:224
sys_snode_t node
Slist lifetime timer node.
Definition net_if.h:221
uint32_t life_start
Router life timer start.
Definition net_if.h:230
Network Interface structure.
Definition net_if.h:714
struct net_if_dev * if_dev
The net_if_dev instance the net_if is related to.
Definition net_if.h:716
struct net_if_config config
Network interface instance configuration.
Definition net_if.h:728
uint8_t pe_enabled
Network interface specific flags.
Definition net_if.h:748
struct k_mutex lock
Mutex protecting this network interface instance.
Definition net_if.h:739
uint8_t pe_prefer_public
If PE is enabled, then this tells whether public addresses are preferred over temporary ones for this...
Definition net_if.h:753
struct k_mutex tx_lock
Mutex used when sending data.
Definition net_if.h:742
Network L2 structure.
Definition net_l2.h:58
Hardware link address structure.
Definition net_linkaddr.h:74
Network packet.
Definition net_pkt.h:91
All network statistics in one struct.
Definition net_stats.h:406
Generic struct for handling network timeouts.
Definition net_timeout.h:57
Network traffic class.
Definition net_if.h:629
k_thread_stack_t * stack
Stack for this handler.
Definition net_if.h:643
struct k_thread handler
Traffic class handler thread.
Definition net_if.h:640
struct k_fifo fifo
Fifo for handling this Tx or Rx packet.
Definition net_if.h:631
Prometheus collector definition.
Definition collector.h:50
Type used to represent a Prometheus metric base.
Definition metric.h:47
Generic sockaddr struct.
Definition net_ip.h:408