Zephyr API Documentation 4.3.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
167
168#if defined(CONFIG_NET_IPV4_IGMPV3)
170 struct net_addr sources[CONFIG_NET_IF_MCAST_IPV4_SOURCE_COUNT];
171
173 uint16_t sources_len;
174
176 uint8_t record_type;
177#endif
178
181
184
185 uint8_t _unused : 6;
186};
187
196
199
201 struct net_if *iface;
202
205
208
211
212 uint8_t _unused : 6;
213};
214
223
225 struct net_addr address;
226
228 struct net_if *iface;
229
232
235
238
241
244
245 uint8_t _unused : 5;
246};
247
305
316
317#if defined(CONFIG_NET_OFFLOAD)
318struct net_offload;
319#endif /* CONFIG_NET_OFFLOAD */
320
322#if defined(CONFIG_NET_IPV6)
323#define NET_IF_MAX_IPV6_ADDR CONFIG_NET_IF_UNICAST_IPV6_ADDR_COUNT
324#define NET_IF_MAX_IPV6_MADDR CONFIG_NET_IF_MCAST_IPV6_ADDR_COUNT
325#define NET_IF_MAX_IPV6_PREFIX CONFIG_NET_IF_IPV6_PREFIX_COUNT
326#else
327#define NET_IF_MAX_IPV6_ADDR 0
328#define NET_IF_MAX_IPV6_MADDR 0
329#define NET_IF_MAX_IPV6_PREFIX 0
330#endif
331/* @endcond */
332
336 struct net_if_addr unicast[NET_IF_MAX_IPV6_ADDR];
337
339 struct net_if_mcast_addr mcast[NET_IF_MAX_IPV6_MADDR];
340
342 struct net_if_ipv6_prefix prefix[NET_IF_MAX_IPV6_PREFIX];
343
346
349
352
353#if defined(CONFIG_NET_IPV6_IID_STABLE)
355 struct net_if_addr *iid;
356
360 uint32_t network_counter;
361#endif /* CONFIG_NET_IPV6_IID_STABLE */
362
363#if defined(CONFIG_NET_IPV6_PE)
368 uint32_t desync_factor;
369#endif /* CONFIG_NET_IPV6_PE */
370
371#if defined(CONFIG_NET_IPV6_ND) && defined(CONFIG_NET_NATIVE_IPV6)
373 sys_snode_t rs_node;
374
375 /* RS start time */
376 uint32_t rs_start;
377
379 uint8_t rs_count;
380#endif
381
384
387};
388
389#if defined(CONFIG_NET_DHCPV6) && defined(CONFIG_NET_NATIVE_IPV6)
391struct net_if_dhcpv6 {
393 sys_snode_t node;
394
396 struct net_dhcpv6_duid_storage clientid;
397
399 struct net_dhcpv6_duid_storage serverid;
400
402 enum net_dhcpv6_state state;
403
405 struct net_dhcpv6_params params;
406
408 uint64_t timeout;
409
411 uint64_t exchange_start;
412
414 uint64_t t1;
415
417 uint64_t t2;
418
422 uint64_t expire;
423
425 uint32_t addr_iaid;
426
428 uint32_t prefix_iaid;
429
431 uint32_t retransmit_timeout;
432
434 int16_t server_preference;
435
437 uint8_t retransmissions;
438
440 uint8_t tid[DHCPV6_TID_SIZE];
441
443 uint8_t prefix_len;
444
446 struct net_in6_addr prefix;
447
449 struct net_in6_addr addr;
450};
451#endif /* defined(CONFIG_NET_DHCPV6) && defined(CONFIG_NET_NATIVE_IPV6) */
452
454#if defined(CONFIG_NET_IPV4)
455#define NET_IF_MAX_IPV4_ADDR CONFIG_NET_IF_UNICAST_IPV4_ADDR_COUNT
456#define NET_IF_MAX_IPV4_MADDR CONFIG_NET_IF_MCAST_IPV4_ADDR_COUNT
457#else
458#define NET_IF_MAX_IPV4_ADDR 0
459#define NET_IF_MAX_IPV4_MADDR 0
460#endif
462
474
478 struct net_if_addr_ipv4 unicast[NET_IF_MAX_IPV4_ADDR];
479
481 struct net_if_mcast_addr mcast[NET_IF_MAX_IPV4_MADDR];
482
485
488
491
492#if defined(CONFIG_NET_IPV4_ACD)
494 uint8_t conflict_cnt;
495#endif
496};
497
498#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
499struct net_if_dhcpv4 {
501 sys_snode_t node;
502
504 int64_t timer_start;
505
507 uint32_t request_time;
508
509 uint32_t xid;
510
512 uint32_t lease_time;
513
515 uint32_t renewal_time;
516
518 uint32_t rebinding_time;
519
521 struct net_in_addr server_id;
522
524 struct net_in_addr requested_ip;
525
527 struct net_in_addr netmask;
528
533 enum net_dhcpv4_state state;
534
536 uint8_t attempts;
537
539 struct net_in_addr request_server_addr;
540
542 struct net_in_addr response_src_addr;
543
544#ifdef CONFIG_NET_DHCPV4_OPTION_NTP_SERVER
546 struct net_in_addr ntp_addr;
547#endif
548};
549#endif /* CONFIG_NET_DHCPV4 */
550
551#if defined(CONFIG_NET_IPV4_AUTO) && defined(CONFIG_NET_NATIVE_IPV4)
552struct net_if_ipv4_autoconf {
554 struct net_if *iface;
555
557 struct net_in_addr requested_ip;
558
562};
563#endif /* CONFIG_NET_IPV4_AUTO */
564
566/* We always need to have at least one IP config */
567#define NET_IF_MAX_CONFIGS 1
569
573struct net_if_ip {
574#if defined(CONFIG_NET_IPV6)
575 struct net_if_ipv6 *ipv6;
576#endif /* CONFIG_NET_IPV6 */
577
578#if defined(CONFIG_NET_IPV4)
579 struct net_if_ipv4 *ipv4;
580#endif /* CONFIG_NET_IPV4 */
581};
582
587#if defined(CONFIG_NET_IP)
589 struct net_if_ip ip;
590#endif
591
592#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
593 struct net_if_dhcpv4 dhcpv4;
594#endif /* CONFIG_NET_DHCPV4 */
595
596#if defined(CONFIG_NET_DHCPV6) && defined(CONFIG_NET_NATIVE_IPV6)
597 struct net_if_dhcpv6 dhcpv6;
598#endif /* CONFIG_NET_DHCPV6 */
599
600#if defined(CONFIG_NET_IPV4_AUTO) && defined(CONFIG_NET_NATIVE_IPV4)
601 struct net_if_ipv4_autoconf ipv4auto;
602#endif /* CONFIG_NET_IPV4_AUTO */
603
604#if defined(CONFIG_NET_L2_VIRTUAL)
609 sys_slist_t virtual_interfaces;
610#endif /* CONFIG_NET_L2_VIRTUAL */
611
612#if defined(CONFIG_NET_INTERFACE_NAME)
617 char name[CONFIG_NET_INTERFACE_NAME_LEN + 1];
618#endif
619};
620
632 struct k_fifo fifo;
633
634#if NET_TC_COUNT > 1 || defined(CONFIG_NET_TC_TX_SKIP_FOR_HIGH_PRIO) \
635 || defined(CONFIG_NET_TC_RX_SKIP_FOR_HIGH_PRIO)
637 struct k_sem fifo_slot;
638#endif
639
642
645};
646
653typedef int (*net_socket_create_t)(int, int, int);
654
671 const struct device *dev;
672
674 const struct net_l2 * const l2;
675
677 void *l2_data;
678
680 ATOMIC_DEFINE(flags, NET_IF_NUM_FLAGS);
681
684
685#if defined(CONFIG_NET_OFFLOAD)
691 struct net_offload *offload;
692#endif /* CONFIG_NET_OFFLOAD */
693
696
697#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
701 net_socket_create_t socket_offload;
702#endif /* CONFIG_NET_SOCKETS_OFFLOAD */
703
706
717};
718
726struct net_if {
729
730#if defined(CONFIG_NET_STATISTICS_PER_INTERFACE)
732 struct net_stats stats;
733
735 IF_ENABLED(CONFIG_NET_STATISTICS_VIA_PROMETHEUS,
736 (struct prometheus_collector *collector);)
737#endif /* CONFIG_NET_STATISTICS_PER_INTERFACE */
738
741
742#if defined(CONFIG_NET_POWER_MANAGEMENT)
747 int tx_pending;
748#endif
749
751 struct k_mutex lock;
752
755
761
766
768 uint8_t _unused : 6;
769};
770
772
773static inline void net_if_lock(struct net_if *iface)
774{
775 NET_ASSERT(iface);
776
777 (void)k_mutex_lock(&iface->lock, K_FOREVER);
778}
779
780static inline void net_if_unlock(struct net_if *iface)
781{
782 NET_ASSERT(iface);
783
784 k_mutex_unlock(&iface->lock);
785}
786
787static inline bool net_if_flag_is_set(struct net_if *iface,
788 enum net_if_flag value);
789
790static inline void net_if_tx_lock(struct net_if *iface)
791{
792 NET_ASSERT(iface);
793
795 return;
796 }
797
798 (void)k_mutex_lock(&iface->tx_lock, K_FOREVER);
799}
800
801static inline void net_if_tx_unlock(struct net_if *iface)
802{
803 NET_ASSERT(iface);
804
806 return;
807 }
808
809 k_mutex_unlock(&iface->tx_lock);
810}
811
813
820static inline void net_if_flag_set(struct net_if *iface,
821 enum net_if_flag value)
822{
823 if (iface == NULL || iface->if_dev == NULL) {
824 return;
825 }
826
827 atomic_set_bit(iface->if_dev->flags, value);
828}
829
838static inline bool net_if_flag_test_and_set(struct net_if *iface,
839 enum net_if_flag value)
840{
841 if (iface == NULL || iface->if_dev == NULL) {
842 return false;
843 }
844
845 return atomic_test_and_set_bit(iface->if_dev->flags, value);
846}
847
854static inline void net_if_flag_clear(struct net_if *iface,
855 enum net_if_flag value)
856{
857 if (iface == NULL || iface->if_dev == NULL) {
858 return;
859 }
860
861 atomic_clear_bit(iface->if_dev->flags, value);
862}
863
872static inline bool net_if_flag_test_and_clear(struct net_if *iface,
873 enum net_if_flag value)
874{
875 if (iface == NULL || iface->if_dev == NULL) {
876 return false;
877 }
878
879 return atomic_test_and_clear_bit(iface->if_dev->flags, value);
880}
881
890static inline bool net_if_flag_is_set(struct net_if *iface,
891 enum net_if_flag value)
892{
893 if (iface == NULL || iface->if_dev == NULL) {
894 return false;
895 }
896
897 return atomic_test_bit(iface->if_dev->flags, value);
898}
899
909 struct net_if *iface, enum net_if_oper_state oper_state)
910{
911 if (iface == NULL || iface->if_dev == NULL) {
912 return NET_IF_OPER_UNKNOWN;
913 }
914
915 if (oper_state <= NET_IF_OPER_UP) {
916 iface->if_dev->oper_state = oper_state;
917 }
918
919 net_if_lock(iface);
920
922
923 net_if_unlock(iface);
924
925 return iface->if_dev->oper_state;
926}
927
935static inline enum net_if_oper_state net_if_oper_state(struct net_if *iface)
936{
937 if (iface == NULL || iface->if_dev == NULL) {
938 return NET_IF_OPER_UNKNOWN;
939 }
940
941 return iface->if_dev->oper_state;
942}
943
956static inline int net_if_oper_state_change_time(struct net_if *iface,
957 int64_t *change_time)
958{
959 if (iface == NULL || iface->if_dev == NULL || change_time == NULL) {
960 return -EINVAL;
961 }
962
963 net_if_lock(iface);
964
965 *change_time = iface->if_dev->oper_state_change_time;
966
967 net_if_unlock(iface);
968
969 return 0;
970}
971
982 struct net_pkt *pkt, k_timeout_t timeout);
983
993static inline enum net_verdict net_if_send_data(struct net_if *iface,
994 struct net_pkt *pkt)
995{
997
998 return net_if_try_send_data(iface, pkt, timeout);
999}
1000
1008static inline const struct net_l2 *net_if_l2(struct net_if *iface)
1009{
1010 if (iface == NULL || iface->if_dev == NULL) {
1011 return NULL;
1012 }
1013
1014 return iface->if_dev->l2;
1015}
1016
1025enum net_verdict net_if_recv_data(struct net_if *iface, struct net_pkt *pkt);
1026
1034static inline void *net_if_l2_data(struct net_if *iface)
1035{
1036 if (iface == NULL || iface->if_dev == NULL) {
1037 return NULL;
1038 }
1039
1040 return iface->if_dev->l2_data;
1041}
1042
1050static inline const struct device *net_if_get_device(struct net_if *iface)
1051{
1052 if (iface == NULL || iface->if_dev == NULL) {
1053 return NULL;
1054 }
1055
1056 return iface->if_dev->dev;
1057}
1058
1066void net_if_try_queue_tx(struct net_if *iface, struct net_pkt *pkt, k_timeout_t timeout);
1067
1075static inline void net_if_queue_tx(struct net_if *iface, struct net_pkt *pkt)
1076{
1078
1079 net_if_try_queue_tx(iface, pkt, timeout);
1080}
1081
1089static inline bool net_if_is_ip_offloaded(struct net_if *iface)
1090{
1091#if defined(CONFIG_NET_OFFLOAD)
1092 return (iface != NULL && iface->if_dev != NULL &&
1093 iface->if_dev->offload != NULL);
1094#else
1095 ARG_UNUSED(iface);
1096
1097 return false;
1098#endif
1099}
1100
1108bool net_if_is_offloaded(struct net_if *iface);
1109
1117static inline struct net_offload *net_if_offload(struct net_if *iface)
1118{
1119#if defined(CONFIG_NET_OFFLOAD)
1120 if (iface == NULL || iface->if_dev == NULL) {
1121 return NULL;
1122 }
1123
1124 return iface->if_dev->offload;
1125#else
1126 ARG_UNUSED(iface);
1127
1128 return NULL;
1129#endif
1130}
1131
1139static inline bool net_if_is_socket_offloaded(struct net_if *iface)
1140{
1141#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
1142 if (iface == NULL || iface->if_dev == NULL) {
1143 return false;
1144 }
1145
1146 return (iface->if_dev->socket_offload != NULL);
1147#else
1148 ARG_UNUSED(iface);
1149
1150 return false;
1151#endif
1152}
1153
1160static inline void net_if_socket_offload_set(
1161 struct net_if *iface, net_socket_create_t socket_offload)
1162{
1163#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
1164 if (iface == NULL || iface->if_dev == NULL) {
1165 return;
1166 }
1167
1168 iface->if_dev->socket_offload = socket_offload;
1169#else
1170 ARG_UNUSED(iface);
1171 ARG_UNUSED(socket_offload);
1172#endif
1173}
1174
1183{
1184#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
1185 if (iface == NULL || iface->if_dev == NULL) {
1186 return NULL;
1187 }
1188
1189 return iface->if_dev->socket_offload;
1190#else
1191 ARG_UNUSED(iface);
1192
1193 return NULL;
1194#endif
1195}
1196
1204static inline struct net_linkaddr *net_if_get_link_addr(struct net_if *iface)
1205{
1206 if (iface == NULL || iface->if_dev == NULL) {
1207 return NULL;
1208 }
1209
1210 return &iface->if_dev->link_addr;
1211}
1212
1220static inline struct net_if_config *net_if_get_config(struct net_if *iface)
1221{
1222 if (iface == NULL) {
1223 return NULL;
1224 }
1225
1226 return &iface->config;
1227}
1228
1234#if defined(CONFIG_NET_IPV6_DAD) && defined(CONFIG_NET_NATIVE_IPV6)
1235void net_if_start_dad(struct net_if *iface);
1236#else
1237static inline void net_if_start_dad(struct net_if *iface)
1238{
1239 ARG_UNUSED(iface);
1240}
1241#endif
1242
1248void net_if_start_rs(struct net_if *iface);
1249
1250
1256#if defined(CONFIG_NET_IPV6_ND) && defined(CONFIG_NET_NATIVE_IPV6)
1257void net_if_stop_rs(struct net_if *iface);
1258#else
1259static inline void net_if_stop_rs(struct net_if *iface)
1260{
1261 ARG_UNUSED(iface);
1262}
1263#endif /* CONFIG_NET_IPV6_ND */
1264
1277#if defined(CONFIG_NET_IPV6_ND) && defined(CONFIG_NET_NATIVE_IPV6)
1278void net_if_nbr_reachability_hint(struct net_if *iface, const struct net_in6_addr *ipv6_addr);
1279#else
1280static inline void net_if_nbr_reachability_hint(struct net_if *iface,
1281 const struct net_in6_addr *ipv6_addr)
1282{
1283 ARG_UNUSED(iface);
1284 ARG_UNUSED(ipv6_addr);
1285}
1286#endif
1287
1289
1290static inline int net_if_set_link_addr_unlocked(struct net_if *iface,
1291 uint8_t *addr, uint8_t len,
1292 enum net_link_type type)
1293{
1294 int ret;
1295
1296 if (net_if_flag_is_set(iface, NET_IF_RUNNING)) {
1297 return -EPERM;
1298 }
1299
1300 if (len > sizeof(net_if_get_link_addr(iface)->addr)) {
1301 return -EINVAL;
1302 }
1303
1304 ret = net_linkaddr_create(net_if_get_link_addr(iface), addr, len, type);
1305 if (ret < 0) {
1306 return ret;
1307 }
1308
1309 net_hostname_set_postfix(addr, len);
1310
1311 return 0;
1312}
1313
1314int net_if_set_link_addr_locked(struct net_if *iface,
1315 uint8_t *addr, uint8_t len,
1316 enum net_link_type type);
1317
1318#if CONFIG_NET_IF_LOG_LEVEL >= LOG_LEVEL_DBG
1319extern int net_if_addr_unref_debug(struct net_if *iface,
1320 net_sa_family_t family,
1321 const void *addr,
1322 struct net_if_addr **ifaddr,
1323 const char *caller, int line);
1324#define net_if_addr_unref(iface, family, addr, ifaddr) \
1325 net_if_addr_unref_debug(iface, family, addr, ifaddr, __func__, __LINE__)
1326
1327extern struct net_if_addr *net_if_addr_ref_debug(struct net_if *iface,
1328 net_sa_family_t family,
1329 const void *addr,
1330 const char *caller,
1331 int line);
1332#define net_if_addr_ref(iface, family, addr) \
1333 net_if_addr_ref_debug(iface, family, addr, __func__, __LINE__)
1334#else
1335extern int net_if_addr_unref(struct net_if *iface,
1336 net_sa_family_t family,
1337 const void *addr,
1338 struct net_if_addr **ifaddr);
1339extern struct net_if_addr *net_if_addr_ref(struct net_if *iface,
1340 net_sa_family_t family,
1341 const void *addr);
1342#endif /* CONFIG_NET_IF_LOG_LEVEL */
1343
1345
1356static inline int net_if_set_link_addr(struct net_if *iface,
1357 uint8_t *addr, uint8_t len,
1358 enum net_link_type type)
1359{
1360#if defined(CONFIG_NET_RAW_MODE)
1361 return net_if_set_link_addr_unlocked(iface, addr, len, type);
1362#else
1363 return net_if_set_link_addr_locked(iface, addr, len, type);
1364#endif
1365}
1366
1374static inline uint16_t net_if_get_mtu(struct net_if *iface)
1375{
1376 if (iface == NULL || iface->if_dev == NULL) {
1377 return 0U;
1378 }
1379
1380 return iface->if_dev->mtu;
1381}
1382
1389static inline void net_if_set_mtu(struct net_if *iface,
1390 uint16_t mtu)
1391{
1392 if (iface == NULL || iface->if_dev == NULL) {
1393 return;
1394 }
1395
1396 iface->if_dev->mtu = mtu;
1397}
1398
1405static inline void net_if_addr_set_lf(struct net_if_addr *ifaddr,
1406 bool is_infinite)
1407{
1408 if (ifaddr == NULL) {
1409 return;
1410 }
1411
1412 ifaddr->is_infinite = is_infinite;
1413}
1414
1423
1431struct net_if *net_if_lookup_by_dev(const struct device *dev);
1432
1440static inline struct net_if_config *net_if_config_get(struct net_if *iface)
1441{
1442 if (iface == NULL) {
1443 return NULL;
1444 }
1445
1446 return &iface->config;
1447}
1448
1454void net_if_router_rm(struct net_if_router *router);
1455
1461void net_if_set_default(struct net_if *iface);
1462
1469
1478struct net_if *net_if_get_first_by_type(const struct net_l2 *l2);
1479
1487
1488#if defined(CONFIG_NET_L2_IEEE802154)
1495static inline struct net_if *net_if_get_ieee802154(void)
1496{
1497 return net_if_get_first_by_type(&NET_L2_GET_NAME(IEEE802154));
1498}
1499#endif /* CONFIG_NET_L2_IEEE802154 */
1500
1512 struct net_if_ipv6 **ipv6);
1513
1522
1523
1525struct net_if_addr *net_if_ipv6_addr_lookup_raw(const uint8_t *addr,
1526 struct net_if **ret);
1528
1538 struct net_if **iface);
1539
1541struct net_if_addr *net_if_ipv6_addr_lookup_by_iface_raw(struct net_if *iface,
1542 const uint8_t *addr);
1544
1554 const struct net_in6_addr *addr);
1555
1564__syscall int net_if_ipv6_addr_lookup_by_index(const struct net_in6_addr *addr);
1565
1577 const struct net_in6_addr *addr,
1579 uint32_t vlifetime);
1580
1591__syscall bool net_if_ipv6_addr_add_by_index(int index,
1592 const struct net_in6_addr *addr,
1594 uint32_t vlifetime);
1595
1603 uint32_t vlifetime);
1604
1613bool net_if_ipv6_addr_rm(struct net_if *iface, const struct net_in6_addr *addr);
1614
1623__syscall bool net_if_ipv6_addr_rm_by_index(int index,
1624 const struct net_in6_addr *addr);
1625
1634typedef void (*net_if_ip_addr_cb_t)(struct net_if *iface,
1635 struct net_if_addr *addr,
1636 void *user_data);
1637
1647 void *user_data);
1648
1658 const struct net_in6_addr *addr);
1659
1668bool net_if_ipv6_maddr_rm(struct net_if *iface, const struct net_in6_addr *addr);
1669
1678typedef void (*net_if_ip_maddr_cb_t)(struct net_if *iface,
1679 struct net_if_mcast_addr *maddr,
1680 void *user_data);
1681
1691 void *user_data);
1692
1693
1695struct net_if_mcast_addr *net_if_ipv6_maddr_lookup_raw(const uint8_t *maddr,
1696 struct net_if **ret);
1698
1710 struct net_if **iface);
1711
1722typedef void (*net_if_mcast_callback_t)(struct net_if *iface,
1723 const struct net_addr *addr,
1724 bool is_joined);
1725
1744
1754 struct net_if *iface,
1756
1763
1771void net_if_mcast_monitor(struct net_if *iface, const struct net_addr *addr,
1772 bool is_joined);
1773
1781 struct net_if_mcast_addr *addr);
1782
1790static inline bool net_if_ipv6_maddr_is_joined(struct net_if_mcast_addr *addr)
1791{
1792 if (addr == NULL) {
1793 return false;
1794 }
1795
1796 return addr->is_joined;
1797}
1798
1806 struct net_if_mcast_addr *addr);
1807
1817 const struct net_in6_addr *addr);
1818
1829 const struct net_in6_addr *addr,
1830 uint8_t len);
1831
1843 const struct net_in6_addr *prefix,
1844 uint8_t len,
1846
1856bool net_if_ipv6_prefix_rm(struct net_if *iface, const struct net_in6_addr *addr,
1857 uint8_t len);
1858
1866 bool is_infinite)
1867{
1868 prefix->is_infinite = is_infinite;
1869}
1870
1879
1886
1897bool net_if_ipv6_addr_onlink(struct net_if **iface, const struct net_in6_addr *addr);
1898
1905#if defined(CONFIG_NET_NATIVE_IPV6)
1906static inline struct net_in6_addr *net_if_router_ipv6(struct net_if_router *router)
1907{
1908 if (router == NULL) {
1909 return NULL;
1910 }
1911
1912 return &router->address.in6_addr;
1913}
1914#else
1915static inline struct net_in6_addr *net_if_router_ipv6(struct net_if_router *router)
1916{
1917 static struct net_in6_addr addr;
1918
1919 ARG_UNUSED(router);
1920
1921 return &addr;
1922}
1923#endif
1924
1935 const struct net_in6_addr *addr);
1936
1947 const struct net_in6_addr *addr);
1948
1957
1968 const struct net_in6_addr *addr,
1969 uint16_t router_lifetime);
1970
1979
1988#if defined(CONFIG_NET_NATIVE_IPV6)
1990#else
1992{
1993 ARG_UNUSED(iface);
1994
1995 return 0;
1996}
1997#endif /* CONFIG_NET_NATIVE_IPV6 */
1998
2005#if defined(CONFIG_NET_NATIVE_IPV6)
2006void net_if_ipv6_set_hop_limit(struct net_if *iface, uint8_t hop_limit);
2007#else
2008static inline void net_if_ipv6_set_hop_limit(struct net_if *iface,
2009 uint8_t hop_limit)
2010{
2011 ARG_UNUSED(iface);
2012 ARG_UNUSED(hop_limit);
2013}
2014#endif /* CONFIG_NET_NATIVE_IPV6 */
2015
2017
2018/* The old hop limit setter function is deprecated because the naming
2019 * of it was incorrect. The API name was missing "_if_" so this function
2020 * should not be used.
2021 */
2022__deprecated
2023static inline void net_ipv6_set_hop_limit(struct net_if *iface,
2024 uint8_t hop_limit)
2025{
2026 net_if_ipv6_set_hop_limit(iface, hop_limit);
2027}
2028
2030
2039#if defined(CONFIG_NET_NATIVE_IPV6)
2041#else
2043{
2044 ARG_UNUSED(iface);
2045
2046 return 0;
2047}
2048#endif /* CONFIG_NET_NATIVE_IPV6 */
2049
2056#if defined(CONFIG_NET_NATIVE_IPV6)
2057void net_if_ipv6_set_mcast_hop_limit(struct net_if *iface, uint8_t hop_limit);
2058#else
2060 uint8_t hop_limit)
2061{
2062 ARG_UNUSED(iface);
2063 ARG_UNUSED(hop_limit);
2064}
2065#endif /* CONFIG_NET_NATIVE_IPV6 */
2066
2074 uint32_t reachable_time)
2075{
2076#if defined(CONFIG_NET_NATIVE_IPV6)
2077 if (iface == NULL) {
2078 return;
2079 }
2080
2081 if (!iface->config.ip.ipv6) {
2082 return;
2083 }
2084
2085 iface->config.ip.ipv6->base_reachable_time = reachable_time;
2086#else
2087 ARG_UNUSED(iface);
2088 ARG_UNUSED(reachable_time);
2089
2090#endif
2091}
2092
2101{
2102#if defined(CONFIG_NET_NATIVE_IPV6)
2103 if (iface == NULL) {
2104 return 0;
2105 }
2106
2107 if (!iface->config.ip.ipv6) {
2108 return 0;
2109 }
2110
2111 return iface->config.ip.ipv6->reachable_time;
2112#else
2113 ARG_UNUSED(iface);
2114 return 0;
2115#endif
2116}
2117
2126
2133static inline void net_if_ipv6_set_reachable_time(struct net_if_ipv6 *ipv6)
2134{
2135#if defined(CONFIG_NET_NATIVE_IPV6)
2136 if (ipv6 == NULL) {
2137 return;
2138 }
2139
2141#else
2142 ARG_UNUSED(ipv6);
2143#endif
2144}
2145
2152static inline void net_if_ipv6_set_retrans_timer(struct net_if *iface,
2153 uint32_t retrans_timer)
2154{
2155#if defined(CONFIG_NET_NATIVE_IPV6)
2156 if (iface == NULL) {
2157 return;
2158 }
2159
2160 if (!iface->config.ip.ipv6) {
2161 return;
2162 }
2163
2164 iface->config.ip.ipv6->retrans_timer = retrans_timer;
2165#else
2166 ARG_UNUSED(iface);
2167 ARG_UNUSED(retrans_timer);
2168#endif
2169}
2170
2179{
2180#if defined(CONFIG_NET_NATIVE_IPV6)
2181 if (iface == NULL) {
2182 return 0;
2183 }
2184
2185 if (!iface->config.ip.ipv6) {
2186 return 0;
2187 }
2188
2189 return iface->config.ip.ipv6->retrans_timer;
2190#else
2191 ARG_UNUSED(iface);
2192 return 0;
2193#endif
2194}
2195
2207#if defined(CONFIG_NET_IPV6)
2208const struct net_in6_addr *net_if_ipv6_select_src_addr(struct net_if *iface,
2209 const struct net_in6_addr *dst);
2210#else
2211static inline const struct net_in6_addr *net_if_ipv6_select_src_addr(
2212 struct net_if *iface, const struct net_in6_addr *dst)
2213{
2214 ARG_UNUSED(iface);
2215 ARG_UNUSED(dst);
2216
2217 return NULL;
2218}
2219#endif
2220
2234#if defined(CONFIG_NET_IPV6)
2235const struct net_in6_addr *net_if_ipv6_select_src_addr_hint(struct net_if *iface,
2236 const struct net_in6_addr *dst,
2237 int flags);
2238#else
2240 struct net_if *iface, const struct net_in6_addr *dst, int flags)
2241{
2242 ARG_UNUSED(iface);
2243 ARG_UNUSED(dst);
2244 ARG_UNUSED(flags);
2245
2246 return NULL;
2247}
2248#endif
2249
2259#if defined(CONFIG_NET_IPV6)
2260struct net_if *net_if_ipv6_select_src_iface(const struct net_in6_addr *dst);
2261#else
2263 const struct net_in6_addr *dst)
2264{
2265 ARG_UNUSED(dst);
2266
2267 return NULL;
2268}
2269#endif
2270
2283#if defined(CONFIG_NET_IPV6)
2284struct net_if *net_if_ipv6_select_src_iface_addr(const struct net_in6_addr *dst,
2285 const struct net_in6_addr **src_addr);
2286#else
2288 const struct net_in6_addr *dst, const struct net_in6_addr **src_addr)
2289{
2290 ARG_UNUSED(dst);
2291 ARG_UNUSED(src_addr);
2292
2293 return NULL;
2294}
2295#endif /* CONFIG_NET_IPV6 */
2296
2307 enum net_addr_state addr_state);
2308
2319 struct net_if **iface);
2320
2328void net_if_ipv6_dad_failed(struct net_if *iface, const struct net_in6_addr *addr);
2329
2342 struct net_if **iface);
2343
2355 struct net_if_ipv4 **ipv4);
2356
2365
2374
2381void net_if_ipv4_set_ttl(struct net_if *iface, uint8_t ttl);
2382
2391
2399
2409 struct net_if **iface);
2410
2422 const struct net_in_addr *addr,
2424 uint32_t vlifetime);
2425
2434bool net_if_ipv4_addr_rm(struct net_if *iface, const struct net_in_addr *addr);
2435
2444__syscall int net_if_ipv4_addr_lookup_by_index(const struct net_in_addr *addr);
2445
2456__syscall bool net_if_ipv4_addr_add_by_index(int index,
2457 const struct net_in_addr *addr,
2459 uint32_t vlifetime);
2460
2469__syscall bool net_if_ipv4_addr_rm_by_index(int index,
2470 const struct net_in_addr *addr);
2471
2481 void *user_data);
2482
2492 const struct net_in_addr *addr);
2493
2502bool net_if_ipv4_maddr_rm(struct net_if *iface, const struct net_in_addr *addr);
2503
2513 void *user_data);
2514
2526 struct net_if **iface);
2527
2535 struct net_if_mcast_addr *addr);
2536
2544static inline bool net_if_ipv4_maddr_is_joined(struct net_if_mcast_addr *addr)
2545{
2546 if (addr == NULL) {
2547 return false;
2548 }
2549
2550 return addr->is_joined;
2551}
2552
2560 struct net_if_mcast_addr *addr);
2561
2568#if defined(CONFIG_NET_NATIVE_IPV4)
2569static inline struct net_in_addr *net_if_router_ipv4(struct net_if_router *router)
2570{
2571 if (router == NULL) {
2572 return NULL;
2573 }
2574
2575 return &router->address.in_addr;
2576}
2577#else
2578static inline struct net_in_addr *net_if_router_ipv4(struct net_if_router *router)
2579{
2580 static struct net_in_addr addr;
2581
2582 ARG_UNUSED(router);
2583
2584 return &addr;
2585}
2586#endif
2587
2598 const struct net_in_addr *addr);
2599
2610 const struct net_in_addr *addr);
2622 const struct net_in_addr *addr,
2623 bool is_default,
2624 uint16_t router_lifetime);
2625
2634
2644 const struct net_in_addr *addr);
2645
2655 const struct net_in_addr *addr);
2656
2666#if defined(CONFIG_NET_IPV4)
2667struct net_if *net_if_ipv4_select_src_iface(const struct net_in_addr *dst);
2668#else
2670 const struct net_in_addr *dst)
2671{
2672 ARG_UNUSED(dst);
2673
2674 return NULL;
2675}
2676#endif
2677
2690#if defined(CONFIG_NET_IPV4)
2691struct net_if *net_if_ipv4_select_src_iface_addr(const struct net_in_addr *dst,
2692 const struct net_in_addr **src_addr);
2693#else
2695 const struct net_in_addr *dst, const struct net_in_addr **src_addr)
2696{
2697 ARG_UNUSED(dst);
2698 ARG_UNUSED(src_addr);
2699
2700 return NULL;
2701}
2702#endif /* CONFIG_NET_IPV4 */
2703
2715#if defined(CONFIG_NET_IPV4)
2716const struct net_in_addr *net_if_ipv4_select_src_addr(struct net_if *iface,
2717 const struct net_in_addr *dst);
2718#else
2719static inline const struct net_in_addr *net_if_ipv4_select_src_addr(
2720 struct net_if *iface, const struct net_in_addr *dst)
2721{
2722 ARG_UNUSED(iface);
2723 ARG_UNUSED(dst);
2724
2725 return NULL;
2726}
2727#endif
2728
2739 enum net_addr_state addr_state);
2740
2751 enum net_addr_state addr_state);
2752
2763 const struct net_in_addr *addr);
2764
2774__deprecated struct net_in_addr net_if_ipv4_get_netmask(struct net_if *iface);
2775
2784__deprecated void net_if_ipv4_set_netmask(struct net_if *iface,
2785 const struct net_in_addr *netmask);
2786
2797__deprecated __syscall bool net_if_ipv4_set_netmask_by_index(int index,
2798 const struct net_in_addr *netmask);
2799
2810 const struct net_in_addr *addr,
2811 const struct net_in_addr *netmask);
2812
2823 const struct net_in_addr *addr,
2824 const struct net_in_addr *netmask);
2825
2834
2841void net_if_ipv4_set_gw(struct net_if *iface, const struct net_in_addr *gw);
2842
2851__syscall bool net_if_ipv4_set_gw_by_index(int index, const struct net_in_addr *gw);
2852
2864
2873typedef void (*net_if_link_callback_t)(struct net_if *iface,
2874 struct net_linkaddr *dst,
2875 int status);
2876
2892
2901
2908
2916void net_if_call_link_cb(struct net_if *iface, struct net_linkaddr *lladdr,
2917 int status);
2918
2920
2921/* used to ensure encoding of checksum support in net_if.h and
2922 * ethernet.h is the same
2923 */
2924#define NET_IF_CHECKSUM_NONE_BIT 0
2925#define NET_IF_CHECKSUM_IPV4_HEADER_BIT BIT(0)
2926#define NET_IF_CHECKSUM_IPV4_ICMP_BIT BIT(1)
2927/* Space for future protocols and restrictions for IPV4 */
2928#define NET_IF_CHECKSUM_IPV6_HEADER_BIT BIT(10)
2929#define NET_IF_CHECKSUM_IPV6_ICMP_BIT BIT(11)
2930/* Space for future protocols and restrictions for IPV6 */
2931#define NET_IF_CHECKSUM_TCP_BIT BIT(21)
2932#define NET_IF_CHECKSUM_UDP_BIT BIT(22)
2933
2935
2941 NET_IF_CHECKSUM_IPV4_HEADER = NET_IF_CHECKSUM_IPV4_HEADER_BIT,
2943 NET_IF_CHECKSUM_IPV4_TCP = NET_IF_CHECKSUM_IPV4_HEADER_BIT |
2944 NET_IF_CHECKSUM_TCP_BIT,
2946 NET_IF_CHECKSUM_IPV4_UDP = NET_IF_CHECKSUM_IPV4_HEADER_BIT |
2947 NET_IF_CHECKSUM_UDP_BIT,
2949 NET_IF_CHECKSUM_IPV4_ICMP = NET_IF_CHECKSUM_IPV4_ICMP_BIT,
2951 NET_IF_CHECKSUM_IPV6_HEADER = NET_IF_CHECKSUM_IPV6_HEADER_BIT,
2953 NET_IF_CHECKSUM_IPV6_TCP = NET_IF_CHECKSUM_IPV6_HEADER_BIT |
2954 NET_IF_CHECKSUM_TCP_BIT,
2956 NET_IF_CHECKSUM_IPV6_UDP = NET_IF_CHECKSUM_IPV6_HEADER_BIT |
2957 NET_IF_CHECKSUM_UDP_BIT,
2959 NET_IF_CHECKSUM_IPV6_ICMP = NET_IF_CHECKSUM_IPV6_ICMP_BIT
2960};
2961
2973 enum net_if_checksum_type chksum_type);
2974
2987 enum net_if_checksum_type chksum_type);
2988
2999__syscall struct net_if *net_if_get_by_index(int index);
3000
3008int net_if_get_by_iface(struct net_if *iface);
3009
3017typedef void (*net_if_cb_t)(struct net_if *iface, void *user_data);
3018
3026void net_if_foreach(net_if_cb_t cb, void *user_data);
3027
3035int net_if_up(struct net_if *iface);
3036
3044static inline bool net_if_is_up(struct net_if *iface)
3045{
3046 if (iface == NULL) {
3047 return false;
3048 }
3049
3050 return net_if_flag_is_set(iface, NET_IF_UP) &&
3052}
3053
3061int net_if_down(struct net_if *iface);
3062
3070static inline bool net_if_is_admin_up(struct net_if *iface)
3071{
3072 if (iface == NULL) {
3073 return false;
3074 }
3075
3076 return net_if_flag_is_set(iface, NET_IF_UP);
3077}
3078
3087void net_if_carrier_on(struct net_if *iface);
3088
3097void net_if_carrier_off(struct net_if *iface);
3098
3106static inline bool net_if_is_carrier_ok(struct net_if *iface)
3107{
3108 if (iface == NULL) {
3109 return false;
3110 }
3111
3112 return net_if_flag_is_set(iface, NET_IF_LOWER_UP);
3113}
3114
3125void net_if_dormant_on(struct net_if *iface);
3126
3135void net_if_dormant_off(struct net_if *iface);
3136
3144static inline bool net_if_is_dormant(struct net_if *iface)
3145{
3146 if (iface == NULL) {
3147 return false;
3148 }
3149
3150 return net_if_flag_is_set(iface, NET_IF_DORMANT);
3151}
3152
3153#if defined(CONFIG_NET_PKT_TIMESTAMP_THREAD) || defined(__DOXYGEN__)
3161typedef void (*net_if_timestamp_callback_t)(struct net_pkt *pkt);
3162
3188
3200 struct net_pkt *pkt,
3201 struct net_if *iface,
3203
3210
3217
3218/*
3219 * @brief Add timestamped TX buffer to be handled
3220 *
3221 * @param pkt Timestamped buffer
3222 */
3224#endif /* CONFIG_NET_PKT_TIMESTAMP_THREAD */
3225
3235#if defined(CONFIG_NET_PROMISCUOUS_MODE)
3236int net_if_set_promisc(struct net_if *iface);
3237#else
3238static inline int net_if_set_promisc(struct net_if *iface)
3239{
3240 ARG_UNUSED(iface);
3241
3242 return -ENOTSUP;
3243}
3244#endif
3245
3251#if defined(CONFIG_NET_PROMISCUOUS_MODE)
3252void net_if_unset_promisc(struct net_if *iface);
3253#else
3254static inline void net_if_unset_promisc(struct net_if *iface)
3255{
3256 ARG_UNUSED(iface);
3257}
3258#endif
3259
3268#if defined(CONFIG_NET_PROMISCUOUS_MODE)
3269bool net_if_is_promisc(struct net_if *iface);
3270#else
3271static inline bool net_if_is_promisc(struct net_if *iface)
3272{
3273 ARG_UNUSED(iface);
3274
3275 return false;
3276}
3277#endif
3278
3288static inline bool net_if_are_pending_tx_packets(struct net_if *iface)
3289{
3290#if defined(CONFIG_NET_POWER_MANAGEMENT)
3291 return !!iface->tx_pending;
3292#else
3293 ARG_UNUSED(iface);
3294
3295 return false;
3296#endif
3297}
3298
3299#ifdef CONFIG_NET_POWER_MANAGEMENT
3307int net_if_suspend(struct net_if *iface);
3308
3316int net_if_resume(struct net_if *iface);
3317
3325bool net_if_is_suspended(struct net_if *iface);
3326#endif /* CONFIG_NET_POWER_MANAGEMENT */
3327
3335bool net_if_is_wifi(struct net_if *iface);
3336
3343
3350
3357
3372int net_if_get_name(struct net_if *iface, char *buf, int len);
3373
3388int net_if_set_name(struct net_if *iface, const char *buf);
3389
3397int net_if_get_by_name(const char *name);
3398
3400struct net_if_api {
3401 void (*init)(struct net_if *iface);
3402};
3403
3404#define NET_IF_DHCPV4_INIT \
3405 IF_ENABLED(UTIL_AND(IS_ENABLED(CONFIG_NET_DHCPV4), \
3406 IS_ENABLED(CONFIG_NET_NATIVE_IPV4)), \
3407 (.dhcpv4.state = NET_DHCPV4_DISABLED,))
3408
3409#define NET_IF_DHCPV6_INIT \
3410 IF_ENABLED(UTIL_AND(IS_ENABLED(CONFIG_NET_DHCPV6), \
3411 IS_ENABLED(CONFIG_NET_NATIVE_IPV6)), \
3412 (.dhcpv6.state = NET_DHCPV6_DISABLED,))
3413
3414#define NET_IF_CONFIG_INIT \
3415 .config = { \
3416 IF_ENABLED(CONFIG_NET_IP, (.ip = {},)) \
3417 NET_IF_DHCPV4_INIT \
3418 NET_IF_DHCPV6_INIT \
3419 }
3420
3421#define NET_PROMETHEUS_GET_COLLECTOR_NAME(dev_id, sfx) \
3422 net_stats_##dev_id##_##sfx##_collector
3423#define NET_PROMETHEUS_INIT(dev_id, sfx) \
3424 IF_ENABLED(CONFIG_NET_STATISTICS_VIA_PROMETHEUS, \
3425 (.collector = &NET_PROMETHEUS_GET_COLLECTOR_NAME(dev_id, sfx),))
3426
3427#define NET_IF_GET_NAME(dev_id, sfx) __net_if_##dev_id##_##sfx
3428#define NET_IF_DEV_GET_NAME(dev_id, sfx) __net_if_dev_##dev_id##_##sfx
3429
3430#define NET_IF_GET(dev_id, sfx) \
3431 ((struct net_if *)&NET_IF_GET_NAME(dev_id, sfx))
3432
3433#if defined(CONFIG_NET_STATISTICS_VIA_PROMETHEUS)
3434extern int net_stats_prometheus_scrape(struct prometheus_collector *collector,
3435 struct prometheus_metric *metric,
3436 void *user_data);
3437#endif /* CONFIG_NET_STATISTICS_VIA_PROMETHEUS */
3438
3439#define NET_IF_INIT(dev_id, sfx, _l2, _mtu, _num_configs) \
3440 static STRUCT_SECTION_ITERABLE(net_if_dev, \
3441 NET_IF_DEV_GET_NAME(dev_id, sfx)) = { \
3442 .dev = &(DEVICE_NAME_GET(dev_id)), \
3443 .l2 = &(NET_L2_GET_NAME(_l2)), \
3444 .l2_data = &(NET_L2_GET_DATA(dev_id, sfx)), \
3445 .mtu = _mtu, \
3446 .flags = {BIT(NET_IF_LOWER_UP)}, \
3447 }; \
3448 static Z_DECL_ALIGN(struct net_if) \
3449 NET_IF_GET_NAME(dev_id, sfx)[_num_configs] \
3450 __used __noasan __in_section(_net_if, static, \
3451 dev_id) = { \
3452 [0 ... (_num_configs - 1)] = { \
3453 .if_dev = &(NET_IF_DEV_GET_NAME(dev_id, sfx)), \
3454 NET_IF_CONFIG_INIT \
3455 } \
3456 }; \
3457 IF_ENABLED(CONFIG_NET_STATISTICS_VIA_PROMETHEUS, \
3458 (static PROMETHEUS_COLLECTOR_DEFINE( \
3459 NET_PROMETHEUS_GET_COLLECTOR_NAME(dev_id, \
3460 sfx), \
3461 net_stats_prometheus_scrape, \
3462 NET_IF_GET(dev_id, sfx)); \
3463 NET_STATS_PROMETHEUS(NET_IF_GET(dev_id, sfx), \
3464 dev_id, sfx);))
3465
3466#define NET_IF_OFFLOAD_INIT(dev_id, sfx, _mtu) \
3467 static STRUCT_SECTION_ITERABLE(net_if_dev, \
3468 NET_IF_DEV_GET_NAME(dev_id, sfx)) = { \
3469 .dev = &(DEVICE_NAME_GET(dev_id)), \
3470 .mtu = _mtu, \
3471 .l2 = &(NET_L2_GET_NAME(OFFLOADED_NETDEV)), \
3472 .flags = {BIT(NET_IF_LOWER_UP)}, \
3473 }; \
3474 static Z_DECL_ALIGN(struct net_if) \
3475 NET_IF_GET_NAME(dev_id, sfx)[NET_IF_MAX_CONFIGS] \
3476 __used __noasan __in_section(_net_if, static, \
3477 dev_id) = { \
3478 [0 ... (NET_IF_MAX_CONFIGS - 1)] = { \
3479 .if_dev = &(NET_IF_DEV_GET_NAME(dev_id, sfx)), \
3480 NET_IF_CONFIG_INIT \
3481 } \
3482 }; \
3483 IF_ENABLED(CONFIG_NET_STATISTICS_VIA_PROMETHEUS, \
3484 (static PROMETHEUS_COLLECTOR_DEFINE( \
3485 NET_PROMETHEUS_GET_COLLECTOR_NAME(dev_id, \
3486 sfx), \
3487 net_stats_prometheus_scrape, \
3488 NET_IF_GET(dev_id, sfx)); \
3489 NET_STATS_PROMETHEUS(NET_IF_GET(dev_id, sfx), \
3490 dev_id, sfx);))
3491
3492
3494
3495/* Network device initialization macros */
3496
3504#define NET_IF_DECLARE(dev_id, inst) \
3505 static struct net_if NET_IF_GET_NAME(dev_id, inst)[NET_IF_MAX_CONFIGS]
3506
3507#define Z_NET_DEVICE_INIT_INSTANCE(node_id, dev_id, name, instance, \
3508 init_fn, pm, data, config, prio, \
3509 api, l2, l2_ctx_type, mtu) \
3510 Z_DEVICE_STATE_DEFINE(dev_id); \
3511 Z_DEVICE_DEFINE(node_id, dev_id, name, init_fn, NULL, \
3512 Z_DEVICE_DT_FLAGS(node_id), pm, data, \
3513 config, POST_KERNEL, prio, api, \
3514 &Z_DEVICE_STATE_NAME(dev_id)); \
3515 NET_L2_DATA_INIT(dev_id, instance, l2_ctx_type); \
3516 NET_IF_INIT(dev_id, instance, l2, mtu, NET_IF_MAX_CONFIGS)
3517
3518#define Z_NET_DEVICE_INIT(node_id, dev_id, name, init_fn, pm, data, \
3519 config, prio, api, l2, l2_ctx_type, mtu) \
3520 Z_NET_DEVICE_INIT_INSTANCE(node_id, dev_id, name, 0, init_fn, \
3521 pm, data, config, prio, api, l2, \
3522 l2_ctx_type, mtu)
3523
3543#define NET_DEVICE_INIT(dev_id, name, init_fn, pm, data, config, prio, \
3544 api, l2, l2_ctx_type, mtu) \
3545 Z_NET_DEVICE_INIT(DT_INVALID_NODE, dev_id, name, init_fn, pm, \
3546 data, config, prio, api, l2, l2_ctx_type, mtu)
3547
3566#define NET_DEVICE_DT_DEFINE(node_id, init_fn, pm, data, \
3567 config, prio, api, l2, l2_ctx_type, mtu) \
3568 Z_NET_DEVICE_INIT(node_id, Z_DEVICE_DT_DEV_ID(node_id), \
3569 DEVICE_DT_NAME(node_id), init_fn, pm, data, \
3570 config, prio, api, l2, l2_ctx_type, mtu)
3571
3580#define NET_DEVICE_DT_INST_DEFINE(inst, ...) \
3581 NET_DEVICE_DT_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
3582
3606#define NET_DEVICE_INIT_INSTANCE(dev_id, name, instance, init_fn, pm, \
3607 data, config, prio, api, l2, \
3608 l2_ctx_type, mtu) \
3609 Z_NET_DEVICE_INIT_INSTANCE(DT_INVALID_NODE, dev_id, name, \
3610 instance, init_fn, pm, data, config, \
3611 prio, api, l2, l2_ctx_type, mtu)
3612
3635#define NET_DEVICE_DT_DEFINE_INSTANCE(node_id, instance, init_fn, pm, \
3636 data, config, prio, api, l2, \
3637 l2_ctx_type, mtu) \
3638 Z_NET_DEVICE_INIT_INSTANCE(node_id, \
3639 Z_DEVICE_DT_DEV_ID(node_id), \
3640 DEVICE_DT_NAME(node_id), instance, \
3641 init_fn, pm, data, config, prio, \
3642 api, l2, l2_ctx_type, mtu)
3643
3653#define NET_DEVICE_DT_INST_DEFINE_INSTANCE(inst, ...) \
3654 NET_DEVICE_DT_DEFINE_INSTANCE(DT_DRV_INST(inst), __VA_ARGS__)
3655
3656#define Z_NET_DEVICE_OFFLOAD_INIT(node_id, dev_id, name, init_fn, pm, \
3657 data, config, prio, api, mtu) \
3658 Z_DEVICE_STATE_DEFINE(dev_id); \
3659 Z_DEVICE_DEFINE(node_id, dev_id, name, init_fn, NULL, \
3660 Z_DEVICE_DT_FLAGS(node_id), pm, data, \
3661 config, POST_KERNEL, prio, api, \
3662 &Z_DEVICE_STATE_NAME(dev_id)); \
3663 NET_IF_OFFLOAD_INIT(dev_id, 0, mtu)
3664
3684#define NET_DEVICE_OFFLOAD_INIT(dev_id, name, init_fn, pm, data, \
3685 config, prio, api, mtu) \
3686 Z_NET_DEVICE_OFFLOAD_INIT(DT_INVALID_NODE, dev_id, name, \
3687 init_fn, pm, data, config, prio, api, \
3688 mtu)
3689
3708#define NET_DEVICE_DT_OFFLOAD_DEFINE(node_id, init_fn, pm, data, \
3709 config, prio, api, mtu) \
3710 Z_NET_DEVICE_OFFLOAD_INIT(node_id, Z_DEVICE_DT_DEV_ID(node_id), \
3711 DEVICE_DT_NAME(node_id), init_fn, pm, \
3712 data, config, prio, api, mtu)
3713
3723#define NET_DEVICE_DT_INST_OFFLOAD_DEFINE(inst, ...) \
3724 NET_DEVICE_DT_OFFLOAD_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
3725
3731#define NET_IFACE_COUNT(_dst) \
3732 do { \
3733 extern struct net_if _net_if_list_start[]; \
3734 extern struct net_if _net_if_list_end[]; \
3735 *(_dst) = ((uintptr_t)_net_if_list_end - \
3736 (uintptr_t)_net_if_list_start) / \
3737 sizeof(struct net_if); \
3738 } while (0)
3739
3740#ifdef __cplusplus
3741}
3742#endif
3743
3744#include <zephyr/syscalls/net_if.h>
3745
3749
3750#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 _Bool atomic_test_and_set_bit(atomic_t *target, int bit)
Atomically set a bit and test it.
Definition atomic.h:172
static _Bool atomic_test_bit(const atomic_t *target, int bit)
Atomically get and test a bit.
Definition atomic.h:129
static void atomic_set_bit(atomic_t *target, int bit)
Atomically set a bit.
Definition atomic.h:211
static void atomic_clear_bit(atomic_t *target, int bit)
Atomically clear a bit.
Definition atomic.h:193
#define ATOMIC_DEFINE(name, num_bits)
Define an array of atomic variables.
Definition atomic.h:113
static _Bool atomic_test_and_clear_bit(atomic_t *target, int bit)
Atomically clear a bit and test it.
Definition atomic.h:149
#define K_FOREVER
Generate infinite timeout delay.
Definition kernel.h:1666
#define K_NO_WAIT
Generate null timeout delay.
Definition kernel.h:1556
static int64_t k_uptime_get(void)
Get system uptime.
Definition kernel.h:2151
net_addr_state
What is the current state of the network address.
Definition net_ip.h:536
unsigned short int net_sa_family_t
Socket address family type.
Definition net_ip.h:168
net_addr_type
How the network address is assigned to network interface.
Definition net_ip.h:544
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:109
static int net_hostname_set_postfix(const uint8_t *hostname_postfix, int postfix_len)
Set the device hostname postfix.
Definition hostname.h:118
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:3106
static bool net_if_is_admin_up(struct net_if *iface)
Check if interface was brought up by the administrator.
Definition net_if.h:3070
void net_if_set_default(struct net_if *iface)
Set the default network interface.
void net_if_ipv4_set_netmask(struct net_if *iface, const struct net_in_addr *netmask)
Set IPv4 netmask for an 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:1722
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:2873
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:1915
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.
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:2669
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:908
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:2694
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:1075
void net_if_ipv6_prefix_unset_timer(struct net_if_ipv6_prefix *prefix)
Unset the prefix lifetime timer.
struct net_in_addr net_if_ipv4_get_netmask(struct net_if *iface)
Get IPv4 netmask of an interface.
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:2262
void net_if_mcast_monitor(struct net_if *iface, const struct net_addr *addr, bool is_joined)
Call registered multicast monitors.
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:1034
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:3288
bool net_if_ipv4_set_netmask_by_index(int index, const struct net_in_addr *netmask)
Set IPv4 netmask for an interface index.
struct net_if_router * net_if_ipv6_router_add(struct net_if *iface, const struct net_in6_addr *addr, uint16_t router_lifetime)
Add IPv6 router to the system.
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:838
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:1204
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:2578
static struct net_offload * net_if_offload(struct net_if *iface)
Return the IP offload plugin.
Definition net_if.h:1117
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:1356
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:820
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:2239
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:2042
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:2008
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:2211
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:1280
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:3161
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:1991
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:1089
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:3144
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.
uint8_t net_if_ipv4_get_mcast_ttl(struct net_if *iface)
Get IPv4 multicast time-to-live value specified for a given interface.
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:1678
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:1389
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:3044
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.
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:2133
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:993
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:2287
net_if_checksum_type
Type of checksum for which support in the interface will be queried.
Definition net_if.h:2939
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.
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:1237
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:3254
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:1160
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:2100
static bool net_if_is_promisc(struct net_if *iface)
Check if promiscuous mode is set or not.
Definition net_if.h:3271
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:2544
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:1865
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.
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:1259
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:2073
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:1634
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:872
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:956
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:1790
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.
void(* net_if_cb_t)(struct net_if *iface, void *user_data)
Callback used while iterating over network interfaces.
Definition net_if.h:3017
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:1374
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:2152
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.
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:2178
net_if_oper_state
Network interface operational status (RFC 2863).
Definition net_if.h:307
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:890
static struct net_if_config * net_if_config_get(struct net_if *iface)
Get network interface IP config.
Definition net_if.h:1440
static struct net_if_config * net_if_get_config(struct net_if *iface)
Return network configuration for this network interface.
Definition net_if.h:1220
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:1405
net_if_flag
Network interface flags.
Definition net_if.h:249
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:2719
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:1050
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:653
void net_if_ipv6_addr_update_lifetime(struct net_if_addr *ifaddr, uint32_t vlifetime)
Update validity lifetime time of an IPv6 address.
static bool net_if_is_socket_offloaded(struct net_if *iface)
Return the socket offload status.
Definition net_if.h:1139
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:2059
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:3238
static const struct net_l2 * net_if_l2(struct net_if *iface)
Get a pointer to the interface L2.
Definition net_if.h:1008
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:1182
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:854
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:2949
@ NET_IF_CHECKSUM_IPV6_TCP
Interface supports checksum calculation for TCP payload in IPv6.
Definition net_if.h:2953
@ NET_IF_CHECKSUM_IPV6_UDP
Interface supports checksum calculation for UDP payload in IPv6.
Definition net_if.h:2956
@ NET_IF_CHECKSUM_IPV4_HEADER
Interface supports IP version 4 header checksum calculation.
Definition net_if.h:2941
@ NET_IF_CHECKSUM_IPV4_TCP
Interface supports checksum calculation for TCP payload in IPv4.
Definition net_if.h:2943
@ NET_IF_CHECKSUM_IPV6_HEADER
Interface supports IP version 6 header checksum calculation.
Definition net_if.h:2951
@ NET_IF_CHECKSUM_IPV6_ICMP
Interface supports checksum calculation for ICMP6 payload in IPv6.
Definition net_if.h:2959
@ NET_IF_CHECKSUM_IPV4_UDP
Interface supports checksum calculation for UDP payload in IPv4.
Definition net_if.h:2946
@ NET_IF_OPER_TESTING
Training mode.
Definition net_if.h:312
@ NET_IF_OPER_DORMANT
Waiting external action.
Definition net_if.h:313
@ NET_IF_OPER_UP
Interface is up.
Definition net_if.h:314
@ NET_IF_OPER_NOTPRESENT
Hardware missing.
Definition net_if.h:309
@ NET_IF_OPER_UNKNOWN
Initial (unknown) value.
Definition net_if.h:308
@ NET_IF_OPER_DOWN
Interface is down.
Definition net_if.h:310
@ NET_IF_OPER_LOWERLAYERDOWN
Lower layer interface is down.
Definition net_if.h:311
@ NET_IF_NO_AUTO_START
Do not start the interface immediately after initialization.
Definition net_if.h:265
@ NET_IF_IPV6_NO_MLD
IPv6 Multicast Listener Discovery disabled.
Definition net_if.h:295
@ NET_IF_POINTOPOINT
Interface is pointopoint.
Definition net_if.h:254
@ NET_IF_IPV6_NO_ND
IPv6 Neighbor Discovery disabled.
Definition net_if.h:292
@ NET_IF_FORWARD_MULTICASTS
Flag defines if received multicasts of other interface are forwarded on this interface.
Definition net_if.h:274
@ NET_IF_IPV4
Interface supports IPv4.
Definition net_if.h:277
@ NET_IF_PROMISC
Interface is in promiscuous mode.
Definition net_if.h:257
@ NET_IF_DORMANT
Driver signals dormant.
Definition net_if.h:289
@ NET_IF_SUSPENDED
Power management specific: interface is being suspended.
Definition net_if.h:268
@ NET_IF_IPV6
Interface supports IPv6.
Definition net_if.h:280
@ NET_IF_UP
Interface is admin up.
Definition net_if.h:251
@ NET_IF_LOWER_UP
Driver signals L1 is up.
Definition net_if.h:286
@ NET_IF_RUNNING
Interface up and running (ready to receive and transmit).
Definition net_if.h:283
@ NET_IF_NO_TX_LOCK
Mutex locking on TX data path disabled on the interface.
Definition net_if.h:298
net_link_type
Type of the link address.
Definition net_linkaddr.h:47
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:168
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:272
#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:513
Definition kernel.h:2874
Mutex Structure.
Definition kernel.h:3404
Semaphore structure.
Definition kernel.h:3609
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:63
Network Interface unicast IPv4 address and netmask.
Definition net_if.h:468
struct net_in_addr netmask
Netmask.
Definition net_if.h:472
struct net_if_addr ipv4
IPv4 address.
Definition net_if.h:470
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:586
Network Interface Device structure.
Definition net_if.h:669
enum net_if_oper_state oper_state
RFC 2863 operational status.
Definition net_if.h:705
const struct net_l2 *const l2
Interface's L2 layer.
Definition net_if.h:674
void * l2_data
Interface's private L2 data pointer.
Definition net_if.h:677
uint16_t mtu
The hardware MTU.
Definition net_if.h:695
const struct device * dev
The actually device driver instance the net_if is related to.
Definition net_if.h:671
struct net_linkaddr link_addr
The hardware link address.
Definition net_if.h:683
atomic_t flags[ATOMIC_BITMAP_SIZE(NET_IF_NUM_FLAGS)]
For internal use.
Definition net_if.h:680
int64_t oper_state_change_time
Last time the operational state was changed.
Definition net_if.h:716
Network interface IP address configuration.
Definition net_if.h:573
IPv4 configuration.
Definition net_if.h:476
uint8_t mcast_ttl
IPv4 time-to-live for multicast packets.
Definition net_if.h:490
struct net_if_addr_ipv4 unicast[NET_IF_MAX_IPV4_ADDR]
Unicast IP addresses.
Definition net_if.h:478
struct net_in_addr gw
Gateway.
Definition net_if.h:484
uint8_t ttl
IPv4 time-to-live.
Definition net_if.h:487
struct net_if_mcast_addr mcast[NET_IF_MAX_IPV4_MADDR]
Multicast IP addresses.
Definition net_if.h:481
Network Interface IPv6 prefixes.
Definition net_if.h:193
struct net_if * iface
Backpointer to network interface where this prefix is used.
Definition net_if.h:201
uint8_t is_infinite
Is the IP prefix valid forever.
Definition net_if.h:207
uint8_t len
Prefix length.
Definition net_if.h:204
uint8_t is_used
Is this prefix used or not.
Definition net_if.h:210
struct net_timeout lifetime
Prefix lifetime.
Definition net_if.h:195
struct net_in6_addr prefix
IPv6 prefix.
Definition net_if.h:198
IPv6 configuration.
Definition net_if.h:334
struct net_if_ipv6_prefix prefix[NET_IF_MAX_IPV6_PREFIX]
Prefixes.
Definition net_if.h:342
uint32_t base_reachable_time
Default reachable time (RFC 4861, page 52).
Definition net_if.h:345
uint8_t hop_limit
IPv6 hop limit.
Definition net_if.h:383
struct net_if_mcast_addr mcast[NET_IF_MAX_IPV6_MADDR]
Multicast IP addresses.
Definition net_if.h:339
uint32_t retrans_timer
Retransmit timer (RFC 4861, page 52).
Definition net_if.h:351
struct net_if_addr unicast[NET_IF_MAX_IPV6_ADDR]
Unicast IP addresses.
Definition net_if.h:336
uint8_t mcast_hop_limit
IPv6 multicast hop limit.
Definition net_if.h:386
uint32_t reachable_time
Reachable time (RFC 4861, page 20).
Definition net_if.h:348
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:183
sys_snode_t rejoin_node
Rejoining multicast groups list node.
Definition net_if.h:166
uint8_t is_used
Is this multicast IP address used or not.
Definition net_if.h:180
Multicast monitor handler struct.
Definition net_if.h:1734
sys_snode_t node
Node information for the slist.
Definition net_if.h:1736
net_if_mcast_callback_t cb
Multicast callback.
Definition net_if.h:1742
struct net_if * iface
Network interface.
Definition net_if.h:1739
Information about routers in the system.
Definition net_if.h:220
struct net_if * iface
Network interface the router is connected to.
Definition net_if.h:228
uint8_t is_default
Is default router.
Definition net_if.h:240
uint16_t lifetime
Router lifetime.
Definition net_if.h:234
uint8_t is_infinite
Is the router valid forever.
Definition net_if.h:243
uint8_t is_used
Is this router used or not.
Definition net_if.h:237
struct net_addr address
IP address.
Definition net_if.h:225
sys_snode_t node
Slist lifetime timer node.
Definition net_if.h:222
uint32_t life_start
Router life timer start.
Definition net_if.h:231
Timestamp callback handler struct.
Definition net_if.h:3171
sys_snode_t node
Node information for the slist.
Definition net_if.h:3173
struct net_if * iface
Net interface for which the callback is needed.
Definition net_if.h:3183
struct net_pkt * pkt
Packet for which the callback is needed.
Definition net_if.h:3178
net_if_timestamp_callback_t cb
Timestamp callback.
Definition net_if.h:3186
Network Interface structure.
Definition net_if.h:726
struct net_if_dev * if_dev
The net_if_dev instance the net_if is related to.
Definition net_if.h:728
struct net_if_config config
Network interface instance configuration.
Definition net_if.h:740
uint8_t pe_enabled
Network interface specific flags.
Definition net_if.h:760
struct k_mutex lock
Mutex protecting this network interface instance.
Definition net_if.h:751
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:765
struct k_mutex tx_lock
Mutex used when sending data.
Definition net_if.h:754
IPv6 address struct.
Definition net_ip.h:143
IPv4 address struct.
Definition net_ip.h:155
Network L2 structure.
Definition net_l2.h:58
Hardware link address structure.
Definition net_linkaddr.h:72
Network packet.
Definition net_pkt.h:91
Generic sockaddr struct.
Definition net_ip.h:408
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:630
k_thread_stack_t * stack
Stack for this handler.
Definition net_if.h:644
struct k_thread handler
Traffic class handler thread.
Definition net_if.h:641
struct k_fifo fifo
Fifo for handling this Tx or Rx packet.
Definition net_if.h:632
Prometheus collector definition.
Definition collector.h:50
Type used to represent a Prometheus metric base.
Definition metric.h:47