Zephyr Project API  3.4.0
A Scalable Open Source RTOS
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
22#include <zephyr/device.h>
23#include <zephyr/sys/slist.h>
25#include <zephyr/net/net_core.h>
26#include <zephyr/net/hostname.h>
28#include <zephyr/net/net_ip.h>
29#include <zephyr/net/net_l2.h>
32
33#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
34#include <zephyr/net/dhcpv4.h>
35#endif
36#if defined(CONFIG_NET_IPV4_AUTO) && defined(CONFIG_NET_NATIVE_IPV4)
38#endif
39
40#ifdef __cplusplus
41extern "C" {
42#endif
43
51 struct net_addr address;
52
53#if defined(CONFIG_NET_NATIVE_IPV6)
54 struct net_timeout lifetime;
55#endif
56
57#if defined(CONFIG_NET_IPV6_DAD) && defined(CONFIG_NET_NATIVE_IPV6)
59 sys_snode_t dad_node;
60 uint32_t dad_start;
61#endif
64
67
68#if defined(CONFIG_NET_IPV6_DAD) && defined(CONFIG_NET_NATIVE_IPV6)
70 uint8_t dad_count;
71#endif
72
75
78
81
82 uint8_t _unused : 5;
83};
84
92 struct net_addr address;
93
96
99
100 uint8_t _unused : 6;
101};
102
111
114
116 struct net_if *iface;
117
120
123
126
127 uint8_t _unused : 6;
128};
129
138
140 struct net_addr address;
141
143 struct net_if *iface;
144
147
150
153
156
159
160 uint8_t _unused : 5;
161};
162
167
170
173
181
184
190
193
196
199
202
205
208
211
213 /* Total number of flags - must be at the end of the enum */
214 NET_IF_NUM_FLAGS
216};
217
227} __packed;
228
229#if defined(CONFIG_NET_OFFLOAD)
230struct net_offload;
231#endif /* CONFIG_NET_OFFLOAD */
232
234#if defined(CONFIG_NET_NATIVE_IPV6)
235#define NET_IF_MAX_IPV6_ADDR CONFIG_NET_IF_UNICAST_IPV6_ADDR_COUNT
236#define NET_IF_MAX_IPV6_MADDR CONFIG_NET_IF_MCAST_IPV6_ADDR_COUNT
237#define NET_IF_MAX_IPV6_PREFIX CONFIG_NET_IF_IPV6_PREFIX_COUNT
238#else
239#define NET_IF_MAX_IPV6_ADDR 0
240#define NET_IF_MAX_IPV6_MADDR 0
241#define NET_IF_MAX_IPV6_PREFIX 0
242#endif
243/* @endcond */
244
247 struct net_if_addr unicast[NET_IF_MAX_IPV6_ADDR];
248
250 struct net_if_mcast_addr mcast[NET_IF_MAX_IPV6_MADDR];
251
253 struct net_if_ipv6_prefix prefix[NET_IF_MAX_IPV6_PREFIX];
254
257
260
263#if defined(CONFIG_NET_IPV6_ND) && defined(CONFIG_NET_NATIVE_IPV6)
265 sys_snode_t rs_node;
266
267 /* RS start time */
268 uint32_t rs_start;
269
271 uint8_t rs_count;
272#endif
273
276};
277
279#if defined(CONFIG_NET_NATIVE_IPV4)
280#define NET_IF_MAX_IPV4_ADDR CONFIG_NET_IF_UNICAST_IPV4_ADDR_COUNT
281#define NET_IF_MAX_IPV4_MADDR CONFIG_NET_IF_MCAST_IPV4_ADDR_COUNT
282#else
283#define NET_IF_MAX_IPV4_ADDR 0
284#define NET_IF_MAX_IPV4_MADDR 0
285#endif
290 struct net_if_addr unicast[NET_IF_MAX_IPV4_ADDR];
291
293 struct net_if_mcast_addr mcast[NET_IF_MAX_IPV4_MADDR];
294
296 struct in_addr gw;
297
300
303};
304
305#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
306struct net_if_dhcpv4 {
308 sys_snode_t node;
309
311 int64_t timer_start;
312
314 uint32_t request_time;
315
316 uint32_t xid;
317
319 uint32_t lease_time;
320
322 uint32_t renewal_time;
323
325 uint32_t rebinding_time;
326
328 struct in_addr server_id;
329
331 struct in_addr requested_ip;
332
337 enum net_dhcpv4_state state;
338
340 uint8_t attempts;
341
343 struct in_addr request_server_addr;
344
346 struct in_addr response_src_addr;
347};
348#endif /* CONFIG_NET_DHCPV4 */
349
350#if defined(CONFIG_NET_IPV4_AUTO) && defined(CONFIG_NET_NATIVE_IPV4)
351struct net_if_ipv4_autoconf {
353 sys_snode_t node;
354
356 struct net_if *iface;
357
359 int64_t timer_start;
360
362 uint32_t timer_timeout;
363
365 struct in_addr current_ip;
366
368 struct in_addr requested_ip;
369
373
375 uint8_t probe_cnt;
376
378 uint8_t announce_cnt;
379
381 uint8_t conflict_cnt;
382};
383#endif /* CONFIG_NET_IPV4_AUTO */
384
386/* We always need to have at least one IP config */
387#define NET_IF_MAX_CONFIGS 1
393struct net_if_ip {
394#if defined(CONFIG_NET_NATIVE_IPV6)
395 struct net_if_ipv6 *ipv6;
396#endif /* CONFIG_NET_IPV6 */
397
398#if defined(CONFIG_NET_NATIVE_IPV4)
399 struct net_if_ipv4 *ipv4;
400#endif /* CONFIG_NET_IPV4 */
401};
402
407#if defined(CONFIG_NET_IP)
409 struct net_if_ip ip;
410#endif
411
412#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
413 struct net_if_dhcpv4 dhcpv4;
414#endif /* CONFIG_NET_DHCPV4 */
415
416#if defined(CONFIG_NET_IPV4_AUTO) && defined(CONFIG_NET_NATIVE_IPV4)
417 struct net_if_ipv4_autoconf ipv4auto;
418#endif /* CONFIG_NET_IPV4_AUTO */
419
420#if defined(CONFIG_NET_L2_VIRTUAL)
425 sys_slist_t virtual_interfaces;
426#endif /* CONFIG_NET_L2_VIRTUAL */
427};
428
440 struct k_fifo fifo;
441
444
447};
448
455typedef int (*net_socket_create_t)(int, int, int);
456
472 const struct device *dev;
473
475 const struct net_l2 * const l2;
476
478 void *l2_data;
479
480 /* For internal use */
481 ATOMIC_DEFINE(flags, NET_IF_NUM_FLAGS);
482
485
486#if defined(CONFIG_NET_OFFLOAD)
492 struct net_offload *offload;
493#endif /* CONFIG_NET_OFFLOAD */
494
497
498#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
502 net_socket_create_t socket_offload;
503#endif /* CONFIG_NET_SOCKETS_OFFLOAD */
504
507};
508
516struct net_if {
519
520#if defined(CONFIG_NET_STATISTICS_PER_INTERFACE)
522 struct net_stats stats;
523#endif /* CONFIG_NET_STATISTICS_PER_INTERFACE */
524
527
528#if defined(CONFIG_NET_POWER_MANAGEMENT)
533 int tx_pending;
534#endif
535
536 struct k_mutex lock;
537};
538
539static inline void net_if_lock(struct net_if *iface)
540{
541 NET_ASSERT(iface);
542
543 (void)k_mutex_lock(&iface->lock, K_FOREVER);
544}
545
546static inline void net_if_unlock(struct net_if *iface)
547{
548 NET_ASSERT(iface);
549
550 k_mutex_unlock(&iface->lock);
551}
552
559static inline void net_if_flag_set(struct net_if *iface,
560 enum net_if_flag value)
561{
562 NET_ASSERT(iface);
563 NET_ASSERT(iface->if_dev);
564
565 atomic_set_bit(iface->if_dev->flags, value);
566}
567
576static inline bool net_if_flag_test_and_set(struct net_if *iface,
577 enum net_if_flag value)
578{
579 NET_ASSERT(iface);
580 NET_ASSERT(iface->if_dev);
581
582 return atomic_test_and_set_bit(iface->if_dev->flags, value);
583}
584
591static inline void net_if_flag_clear(struct net_if *iface,
592 enum net_if_flag value)
593{
594 NET_ASSERT(iface);
595 NET_ASSERT(iface->if_dev);
596
597 atomic_clear_bit(iface->if_dev->flags, value);
598}
599
608static inline bool net_if_flag_test_and_clear(struct net_if *iface,
609 enum net_if_flag value)
610{
611 NET_ASSERT(iface);
612 NET_ASSERT(iface->if_dev);
613
614 return atomic_test_and_clear_bit(iface->if_dev->flags, value);
615}
616
625static inline bool net_if_flag_is_set(struct net_if *iface,
626 enum net_if_flag value)
627{
628 NET_ASSERT(iface);
629 NET_ASSERT(iface->if_dev);
630
631 if (iface == NULL) {
632 return false;
633 }
634
635 return atomic_test_bit(iface->if_dev->flags, value);
636}
637
647 struct net_if *iface, enum net_if_oper_state oper_state)
648{
649 NET_ASSERT(iface);
650 NET_ASSERT(iface->if_dev);
651
652 if (oper_state >= NET_IF_OPER_UNKNOWN && oper_state <= NET_IF_OPER_UP) {
653 iface->if_dev->oper_state = oper_state;
654 }
655
656 return iface->if_dev->oper_state;
657}
658
666static inline enum net_if_oper_state net_if_oper_state(struct net_if *iface)
667{
668 NET_ASSERT(iface);
669 NET_ASSERT(iface->if_dev);
670
671 return iface->if_dev->oper_state;
672}
673
682enum net_verdict net_if_send_data(struct net_if *iface, struct net_pkt *pkt);
683
691static inline const struct net_l2 *net_if_l2(struct net_if *iface)
692{
693 if (!iface || !iface->if_dev) {
694 return NULL;
695 }
696
697 return iface->if_dev->l2;
698}
699
708enum net_verdict net_if_recv_data(struct net_if *iface, struct net_pkt *pkt);
709
717static inline void *net_if_l2_data(struct net_if *iface)
718{
719 NET_ASSERT(iface);
720 NET_ASSERT(iface->if_dev);
721
722 return iface->if_dev->l2_data;
723}
724
732static inline const struct device *net_if_get_device(struct net_if *iface)
733{
734 NET_ASSERT(iface);
735 NET_ASSERT(iface->if_dev);
736
737 return iface->if_dev->dev;
738}
739
746void net_if_queue_tx(struct net_if *iface, struct net_pkt *pkt);
747
755static inline bool net_if_is_ip_offloaded(struct net_if *iface)
756{
757#if defined(CONFIG_NET_OFFLOAD)
758 NET_ASSERT(iface);
759 NET_ASSERT(iface->if_dev);
760
761 return (iface->if_dev->offload != NULL);
762#else
763 ARG_UNUSED(iface);
764
765 return false;
766#endif
767}
768
776static inline struct net_offload *net_if_offload(struct net_if *iface)
777{
778#if defined(CONFIG_NET_OFFLOAD)
779 NET_ASSERT(iface);
780 NET_ASSERT(iface->if_dev);
781
782 return iface->if_dev->offload;
783#else
784 ARG_UNUSED(iface);
785
786 return NULL;
787#endif
788}
789
797static inline bool net_if_is_socket_offloaded(struct net_if *iface)
798{
799#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
800 NET_ASSERT(iface);
801 NET_ASSERT(iface->if_dev);
802
803 return (iface->if_dev->socket_offload != NULL);
804#else
805 ARG_UNUSED(iface);
806
807 return false;
808#endif
809}
810
817static inline void net_if_socket_offload_set(
818 struct net_if *iface, net_socket_create_t socket_offload)
819{
820#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
821 NET_ASSERT(iface);
822 NET_ASSERT(iface->if_dev);
823
824 iface->if_dev->socket_offload = socket_offload;
825#else
826 ARG_UNUSED(iface);
827 ARG_UNUSED(socket_offload);
828#endif
829}
830
839{
840#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
841 NET_ASSERT(iface);
842 NET_ASSERT(iface->if_dev);
843
844 return iface->if_dev->socket_offload;
845#else
846 ARG_UNUSED(iface);
847
848 return NULL;
849#endif
850}
851
859static inline struct net_linkaddr *net_if_get_link_addr(struct net_if *iface)
860{
861 NET_ASSERT(iface);
862 NET_ASSERT(iface->if_dev);
863
864 return &iface->if_dev->link_addr;
865}
866
874static inline struct net_if_config *net_if_get_config(struct net_if *iface)
875{
876 NET_ASSERT(iface);
877
878 return &iface->config;
879}
880
886#if defined(CONFIG_NET_IPV6_DAD) && defined(CONFIG_NET_NATIVE_IPV6)
887void net_if_start_dad(struct net_if *iface);
888#else
889static inline void net_if_start_dad(struct net_if *iface)
890{
891 ARG_UNUSED(iface);
892}
893#endif
894
900void net_if_start_rs(struct net_if *iface);
901
902
908#if defined(CONFIG_NET_IPV6_ND) && defined(CONFIG_NET_NATIVE_IPV6)
909void net_if_stop_rs(struct net_if *iface);
910#else
911static inline void net_if_stop_rs(struct net_if *iface)
912{
913 ARG_UNUSED(iface);
914}
915#endif /* CONFIG_NET_IPV6_ND */
916
919static inline int net_if_set_link_addr_unlocked(struct net_if *iface,
920 uint8_t *addr, uint8_t len,
921 enum net_link_type type)
922{
924 return -EPERM;
925 }
926
927 net_if_get_link_addr(iface)->addr = addr;
928 net_if_get_link_addr(iface)->len = len;
929 net_if_get_link_addr(iface)->type = type;
930
931 net_hostname_set_postfix(addr, len);
932
933 return 0;
934}
935
936int net_if_set_link_addr_locked(struct net_if *iface,
937 uint8_t *addr, uint8_t len,
938 enum net_link_type type);
952static inline int net_if_set_link_addr(struct net_if *iface,
953 uint8_t *addr, uint8_t len,
954 enum net_link_type type)
955{
956#if defined(CONFIG_NET_RAW_MODE)
957 return net_if_set_link_addr_unlocked(iface, addr, len, type);
958#else
959 return net_if_set_link_addr_locked(iface, addr, len, type);
960#endif
961}
962
970static inline uint16_t net_if_get_mtu(struct net_if *iface)
971{
972 if (iface == NULL) {
973 return 0U;
974 }
975
976 NET_ASSERT(iface->if_dev);
977
978 return iface->if_dev->mtu;
979}
980
987static inline void net_if_set_mtu(struct net_if *iface,
988 uint16_t mtu)
989{
990 if (iface == NULL) {
991 return;
992 }
993
994 NET_ASSERT(iface->if_dev);
995
996 iface->if_dev->mtu = mtu;
997}
998
1005static inline void net_if_addr_set_lf(struct net_if_addr *ifaddr,
1006 bool is_infinite)
1007{
1008 NET_ASSERT(ifaddr);
1009
1010 ifaddr->is_infinite = is_infinite;
1011}
1012
1021
1029struct net_if *net_if_lookup_by_dev(const struct device *dev);
1030
1038static inline struct net_if_config *net_if_config_get(struct net_if *iface)
1039{
1040 NET_ASSERT(iface);
1041
1042 return &iface->config;
1043}
1044
1050void net_if_router_rm(struct net_if_router *router);
1051
1057void net_if_set_default(struct net_if *iface);
1058
1065
1074struct net_if *net_if_get_first_by_type(const struct net_l2 *l2);
1075
1083
1084#if defined(CONFIG_NET_L2_IEEE802154)
1091static inline struct net_if *net_if_get_ieee802154(void)
1092{
1093 return net_if_get_first_by_type(&NET_L2_GET_NAME(IEEE802154));
1094}
1095#endif /* CONFIG_NET_L2_IEEE802154 */
1096
1108 struct net_if_ipv6 **ipv6);
1109
1118
1128 struct net_if **iface);
1129
1139 struct in6_addr *addr);
1140
1149__syscall int net_if_ipv6_addr_lookup_by_index(const struct in6_addr *addr);
1150
1162 struct in6_addr *addr,
1164 uint32_t vlifetime);
1165
1177 struct in6_addr *addr,
1179 uint32_t vlifetime);
1180
1188 uint32_t vlifetime);
1189
1198bool net_if_ipv6_addr_rm(struct net_if *iface, const struct in6_addr *addr);
1199
1209 const struct in6_addr *addr);
1210
1220 const struct in6_addr *addr);
1221
1230bool net_if_ipv6_maddr_rm(struct net_if *iface, const struct in6_addr *addr);
1231
1243 struct net_if **iface);
1244
1256typedef void (*net_if_mcast_callback_t)(struct net_if *iface,
1257 const struct net_addr *addr,
1258 bool is_joined);
1259
1271
1273 struct net_if *iface;
1274
1277};
1278
1288 struct net_if *iface,
1290
1297
1305void net_if_mcast_monitor(struct net_if *iface, const struct net_addr *addr,
1306 bool is_joined);
1307
1315 struct net_if_mcast_addr *addr);
1316
1324static inline bool net_if_ipv6_maddr_is_joined(struct net_if_mcast_addr *addr)
1325{
1326 NET_ASSERT(addr);
1327
1328 return addr->is_joined;
1329}
1330
1338 struct net_if_mcast_addr *addr);
1339
1349 struct in6_addr *addr);
1350
1361 struct in6_addr *addr,
1362 uint8_t len);
1363
1375 struct in6_addr *prefix,
1376 uint8_t len,
1378
1388bool net_if_ipv6_prefix_rm(struct net_if *iface, struct in6_addr *addr,
1389 uint8_t len);
1390
1398 bool is_infinite)
1399{
1400 prefix->is_infinite = is_infinite;
1401}
1402
1411
1418
1429bool net_if_ipv6_addr_onlink(struct net_if **iface, struct in6_addr *addr);
1430
1437#if defined(CONFIG_NET_NATIVE_IPV6)
1438static inline struct in6_addr *net_if_router_ipv6(struct net_if_router *router)
1439{
1440 NET_ASSERT(router);
1441
1442 return &router->address.in6_addr;
1443}
1444#else
1445static inline struct in6_addr *net_if_router_ipv6(struct net_if_router *router)
1446{
1447 static struct in6_addr addr;
1448
1449 ARG_UNUSED(router);
1450
1451 return &addr;
1452}
1453#endif
1454
1465 struct in6_addr *addr);
1466
1477 struct in6_addr *addr);
1478
1487
1498 struct in6_addr *addr,
1499 uint16_t router_lifetime);
1500
1509
1519
1527
1535 uint32_t reachable_time)
1536{
1537#if defined(CONFIG_NET_NATIVE_IPV6)
1538 NET_ASSERT(iface);
1539
1540 if (!iface->config.ip.ipv6) {
1541 return;
1542 }
1543
1544 iface->config.ip.ipv6->base_reachable_time = reachable_time;
1545#endif
1546}
1547
1556{
1557#if defined(CONFIG_NET_NATIVE_IPV6)
1558 NET_ASSERT(iface);
1559
1560 if (!iface->config.ip.ipv6) {
1561 return 0;
1562 }
1563
1564 return iface->config.ip.ipv6->reachable_time;
1565#else
1566 return 0;
1567#endif
1568}
1569
1578
1585static inline void net_if_ipv6_set_reachable_time(struct net_if_ipv6 *ipv6)
1586{
1587#if defined(CONFIG_NET_NATIVE_IPV6)
1588 if (ipv6 == NULL) {
1589 return;
1590 }
1591
1593#endif
1594}
1595
1602static inline void net_if_ipv6_set_retrans_timer(struct net_if *iface,
1603 uint32_t retrans_timer)
1604{
1605#if defined(CONFIG_NET_NATIVE_IPV6)
1606 NET_ASSERT(iface);
1607
1608 if (!iface->config.ip.ipv6) {
1609 return;
1610 }
1611
1612 iface->config.ip.ipv6->retrans_timer = retrans_timer;
1613#endif
1614}
1615
1624{
1625#if defined(CONFIG_NET_NATIVE_IPV6)
1626 NET_ASSERT(iface);
1627
1628 if (!iface->config.ip.ipv6) {
1629 return 0;
1630 }
1631
1632 return iface->config.ip.ipv6->retrans_timer;
1633#else
1634 return 0;
1635#endif
1636}
1637
1649#if defined(CONFIG_NET_NATIVE_IPV6)
1650const struct in6_addr *net_if_ipv6_select_src_addr(struct net_if *iface,
1651 const struct in6_addr *dst);
1652#else
1653static inline const struct in6_addr *net_if_ipv6_select_src_addr(
1654 struct net_if *iface, const struct in6_addr *dst)
1655{
1656 ARG_UNUSED(iface);
1657 ARG_UNUSED(dst);
1658
1659 return NULL;
1660}
1661#endif
1662
1672#if defined(CONFIG_NET_NATIVE_IPV6)
1673struct net_if *net_if_ipv6_select_src_iface(const struct in6_addr *dst);
1674#else
1676 const struct in6_addr *dst)
1677{
1678 ARG_UNUSED(dst);
1679
1680 return NULL;
1681}
1682#endif
1683
1693struct in6_addr *net_if_ipv6_get_ll(struct net_if *iface,
1694 enum net_addr_state addr_state);
1695
1706 struct net_if **iface);
1707
1715void net_if_ipv6_dad_failed(struct net_if *iface, const struct in6_addr *addr);
1716
1729 struct net_if **iface);
1730
1742 struct net_if_ipv4 **ipv4);
1743
1752
1761
1768void net_if_ipv4_set_ttl(struct net_if *iface, uint8_t ttl);
1769
1779 struct net_if **iface);
1780
1792 struct in_addr *addr,
1794 uint32_t vlifetime);
1795
1804bool net_if_ipv4_addr_rm(struct net_if *iface, const struct in_addr *addr);
1805
1814__syscall int net_if_ipv4_addr_lookup_by_index(const struct in_addr *addr);
1815
1827 struct in_addr *addr,
1829 uint32_t vlifetime);
1830
1840 const struct in_addr *addr);
1841
1851 const struct in_addr *addr);
1852
1861bool net_if_ipv4_maddr_rm(struct net_if *iface, const struct in_addr *addr);
1862
1874 struct net_if **iface);
1875
1883 struct net_if_mcast_addr *addr);
1884
1892static inline bool net_if_ipv4_maddr_is_joined(struct net_if_mcast_addr *addr)
1893{
1894 NET_ASSERT(addr);
1895
1896 return addr->is_joined;
1897}
1898
1906 struct net_if_mcast_addr *addr);
1907
1914#if defined(CONFIG_NET_NATIVE_IPV4)
1915static inline struct in_addr *net_if_router_ipv4(struct net_if_router *router)
1916{
1917 NET_ASSERT(router);
1918
1919 return &router->address.in_addr;
1920}
1921#else
1922static inline struct in_addr *net_if_router_ipv4(struct net_if_router *router)
1923{
1924 static struct in_addr addr;
1925
1926 ARG_UNUSED(router);
1927
1928 return &addr;
1929}
1930#endif
1931
1942 struct in_addr *addr);
1943
1954 struct in_addr *addr);
1966 struct in_addr *addr,
1967 bool is_default,
1968 uint16_t router_lifetime);
1969
1978
1988 const struct in_addr *addr);
1989
1999 const struct in_addr *addr);
2000
2010#if defined(CONFIG_NET_NATIVE_IPV4)
2011struct net_if *net_if_ipv4_select_src_iface(const struct in_addr *dst);
2012#else
2014 const struct in_addr *dst)
2015{
2016 ARG_UNUSED(dst);
2017
2018 return NULL;
2019}
2020#endif
2021
2033#if defined(CONFIG_NET_NATIVE_IPV4)
2034const struct in_addr *net_if_ipv4_select_src_addr(struct net_if *iface,
2035 const struct in_addr *dst);
2036#else
2037static inline const struct in_addr *net_if_ipv4_select_src_addr(
2038 struct net_if *iface, const struct in_addr *dst)
2039{
2040 ARG_UNUSED(iface);
2041 ARG_UNUSED(dst);
2042
2043 return NULL;
2044}
2045#endif
2046
2056struct in_addr *net_if_ipv4_get_ll(struct net_if *iface,
2057 enum net_addr_state addr_state);
2058
2069 enum net_addr_state addr_state);
2070
2078 const struct in_addr *netmask);
2079
2089 const struct in_addr *netmask);
2090
2097void net_if_ipv4_set_gw(struct net_if *iface, const struct in_addr *gw);
2098
2107__syscall bool net_if_ipv4_set_gw_by_index(int index, const struct in_addr *gw);
2108
2119struct net_if *net_if_select_src_iface(const struct sockaddr *dst);
2120
2129typedef void (*net_if_link_callback_t)(struct net_if *iface,
2130 struct net_linkaddr *dst,
2131 int status);
2132
2144
2147};
2148
2157
2164
2172void net_if_call_link_cb(struct net_if *iface, struct net_linkaddr *lladdr,
2173 int status);
2174
2185
2197
2208__syscall struct net_if *net_if_get_by_index(int index);
2209
2217int net_if_get_by_iface(struct net_if *iface);
2218
2226typedef void (*net_if_cb_t)(struct net_if *iface, void *user_data);
2227
2236
2244int net_if_up(struct net_if *iface);
2245
2253static inline bool net_if_is_up(struct net_if *iface)
2254{
2255 NET_ASSERT(iface);
2256
2257 return net_if_flag_is_set(iface, NET_IF_UP) &&
2259}
2260
2268int net_if_down(struct net_if *iface);
2269
2277static inline bool net_if_is_admin_up(struct net_if *iface)
2278{
2279 NET_ASSERT(iface);
2280
2281 return net_if_flag_is_set(iface, NET_IF_UP);
2282}
2283
2292void net_if_carrier_on(struct net_if *iface);
2293
2302void net_if_carrier_off(struct net_if *iface);
2303
2311static inline bool net_if_is_carrier_ok(struct net_if *iface)
2312{
2313 NET_ASSERT(iface);
2314
2315 return net_if_flag_is_set(iface, NET_IF_LOWER_UP);
2316}
2317
2328void net_if_dormant_on(struct net_if *iface);
2329
2338void net_if_dormant_off(struct net_if *iface);
2339
2347static inline bool net_if_is_dormant(struct net_if *iface)
2348{
2349 NET_ASSERT(iface);
2350
2351 return net_if_flag_is_set(iface, NET_IF_DORMANT);
2352}
2353
2354#if defined(CONFIG_NET_PKT_TIMESTAMP) && defined(CONFIG_NET_NATIVE)
2362typedef void (*net_if_timestamp_callback_t)(struct net_pkt *pkt);
2363
2372struct net_if_timestamp_cb {
2374 sys_snode_t node;
2375
2379 struct net_pkt *pkt;
2380
2384 struct net_if *iface;
2385
2387 net_if_timestamp_callback_t cb;
2388};
2389
2400void net_if_register_timestamp_cb(struct net_if_timestamp_cb *handle,
2401 struct net_pkt *pkt,
2402 struct net_if *iface,
2403 net_if_timestamp_callback_t cb);
2404
2410void net_if_unregister_timestamp_cb(struct net_if_timestamp_cb *handle);
2411
2417void net_if_call_timestamp_cb(struct net_pkt *pkt);
2418
2419/*
2420 * @brief Add timestamped TX buffer to be handled
2421 *
2422 * @param pkt Timestamped buffer
2423 */
2424void net_if_add_tx_timestamp(struct net_pkt *pkt);
2425#endif /* CONFIG_NET_PKT_TIMESTAMP */
2426
2436#if defined(CONFIG_NET_PROMISCUOUS_MODE)
2437int net_if_set_promisc(struct net_if *iface);
2438#else
2439static inline int net_if_set_promisc(struct net_if *iface)
2440{
2441 ARG_UNUSED(iface);
2442
2443 return -ENOTSUP;
2444}
2445#endif
2446
2452#if defined(CONFIG_NET_PROMISCUOUS_MODE)
2453void net_if_unset_promisc(struct net_if *iface);
2454#else
2455static inline void net_if_unset_promisc(struct net_if *iface)
2456{
2457 ARG_UNUSED(iface);
2458}
2459#endif
2460
2469#if defined(CONFIG_NET_PROMISCUOUS_MODE)
2470bool net_if_is_promisc(struct net_if *iface);
2471#else
2472static inline bool net_if_is_promisc(struct net_if *iface)
2473{
2474 ARG_UNUSED(iface);
2475
2476 return false;
2477}
2478#endif
2479
2489static inline bool net_if_are_pending_tx_packets(struct net_if *iface)
2490{
2491#if defined(CONFIG_NET_POWER_MANAGEMENT)
2492 return !!iface->tx_pending;
2493#else
2494 ARG_UNUSED(iface);
2495
2496 return false;
2497#endif
2498}
2499
2500#ifdef CONFIG_NET_POWER_MANAGEMENT
2508int net_if_suspend(struct net_if *iface);
2509
2517int net_if_resume(struct net_if *iface);
2518
2526bool net_if_is_suspended(struct net_if *iface);
2527#endif /* CONFIG_NET_POWER_MANAGEMENT */
2528
2530struct net_if_api {
2531 void (*init)(struct net_if *iface);
2532};
2533
2534#if defined(CONFIG_NET_IP)
2535#define NET_IF_IP_INIT .ip = {},
2536#else
2537#define NET_IF_IP_INIT
2538#endif
2539
2540#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
2541#define NET_IF_DHCPV4_INIT .dhcpv4.state = NET_DHCPV4_DISABLED,
2542#else
2543#define NET_IF_DHCPV4_INIT
2544#endif
2545
2546#define NET_IF_CONFIG_INIT \
2547 .config = { \
2548 NET_IF_IP_INIT \
2549 NET_IF_DHCPV4_INIT \
2550 }
2551
2552#define NET_IF_GET_NAME(dev_id, sfx) __net_if_##dev_id##_##sfx
2553#define NET_IF_DEV_GET_NAME(dev_id, sfx) __net_if_dev_##dev_id##_##sfx
2554
2555#define NET_IF_GET(dev_id, sfx) \
2556 ((struct net_if *)&NET_IF_GET_NAME(dev_id, sfx))
2557
2558#define NET_IF_INIT(dev_id, sfx, _l2, _mtu, _num_configs) \
2559 static STRUCT_SECTION_ITERABLE(net_if_dev, \
2560 NET_IF_DEV_GET_NAME(dev_id, sfx)) = { \
2561 .dev = &(DEVICE_NAME_GET(dev_id)), \
2562 .l2 = &(NET_L2_GET_NAME(_l2)), \
2563 .l2_data = &(NET_L2_GET_DATA(dev_id, sfx)), \
2564 .mtu = _mtu, \
2565 }; \
2566 static Z_DECL_ALIGN(struct net_if) \
2567 NET_IF_GET_NAME(dev_id, sfx)[_num_configs] \
2568 __used __in_section(_net_if, static, \
2569 dev_id) = { \
2570 [0 ... (_num_configs - 1)] = { \
2571 .if_dev = &(NET_IF_DEV_GET_NAME(dev_id, sfx)), \
2572 NET_IF_CONFIG_INIT \
2573 } \
2574 }
2575
2576#define NET_IF_OFFLOAD_INIT(dev_id, sfx, _mtu) \
2577 static STRUCT_SECTION_ITERABLE(net_if_dev, \
2578 NET_IF_DEV_GET_NAME(dev_id, sfx)) = { \
2579 .dev = &(DEVICE_NAME_GET(dev_id)), \
2580 .mtu = _mtu, \
2581 .l2 = &(NET_L2_GET_NAME(OFFLOADED_NETDEV)), \
2582 }; \
2583 static Z_DECL_ALIGN(struct net_if) \
2584 NET_IF_GET_NAME(dev_id, sfx)[NET_IF_MAX_CONFIGS] \
2585 __used __in_section(_net_if, static, \
2586 dev_id) = { \
2587 [0 ... (NET_IF_MAX_CONFIGS - 1)] = { \
2588 .if_dev = &(NET_IF_DEV_GET_NAME(dev_id, sfx)), \
2589 NET_IF_CONFIG_INIT \
2590 } \
2591 }
2592
2595/* Network device initialization macros */
2596
2597#define Z_NET_DEVICE_INIT(node_id, dev_id, name, init_fn, pm, data, \
2598 config, prio, api, l2, l2_ctx_type, mtu) \
2599 Z_DEVICE_STATE_DEFINE(dev_id); \
2600 Z_DEVICE_DEFINE(node_id, dev_id, name, init_fn, pm, data, \
2601 config, POST_KERNEL, prio, api, \
2602 &Z_DEVICE_STATE_NAME(dev_id)); \
2603 NET_L2_DATA_INIT(dev_id, 0, l2_ctx_type); \
2604 NET_IF_INIT(dev_id, 0, l2, mtu, NET_IF_MAX_CONFIGS)
2605
2625#define NET_DEVICE_INIT(dev_id, name, init_fn, pm, data, config, prio, \
2626 api, l2, l2_ctx_type, mtu) \
2627 Z_NET_DEVICE_INIT(DT_INVALID_NODE, dev_id, name, init_fn, pm, \
2628 data, config, prio, api, l2, l2_ctx_type, mtu)
2629
2648#define NET_DEVICE_DT_DEFINE(node_id, init_fn, pm, data, \
2649 config, prio, api, l2, l2_ctx_type, mtu) \
2650 Z_NET_DEVICE_INIT(node_id, Z_DEVICE_DT_DEV_ID(node_id), \
2651 DEVICE_DT_NAME(node_id), init_fn, pm, data, \
2652 config, prio, api, l2, l2_ctx_type, mtu)
2653
2662#define NET_DEVICE_DT_INST_DEFINE(inst, ...) \
2663 NET_DEVICE_DT_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
2664
2665#define Z_NET_DEVICE_INIT_INSTANCE(node_id, dev_id, name, instance, \
2666 init_fn, pm, data, config, prio, \
2667 api, l2, l2_ctx_type, mtu) \
2668 Z_DEVICE_STATE_DEFINE(dev_id); \
2669 Z_DEVICE_DEFINE(node_id, dev_id, name, init_fn, pm, data, \
2670 config, POST_KERNEL, prio, api, \
2671 &Z_DEVICE_STATE_NAME(dev_id)); \
2672 NET_L2_DATA_INIT(dev_id, instance, l2_ctx_type); \
2673 NET_IF_INIT(dev_id, instance, l2, mtu, NET_IF_MAX_CONFIGS)
2674
2698#define NET_DEVICE_INIT_INSTANCE(dev_id, name, instance, init_fn, pm, \
2699 data, config, prio, api, l2, \
2700 l2_ctx_type, mtu) \
2701 Z_NET_DEVICE_INIT_INSTANCE(DT_INVALID_NODE, dev_id, name, \
2702 instance, init_fn, pm, data, config, \
2703 prio, api, l2, l2_ctx_type, mtu)
2704
2727#define NET_DEVICE_DT_DEFINE_INSTANCE(node_id, instance, init_fn, pm, \
2728 data, config, prio, api, l2, \
2729 l2_ctx_type, mtu) \
2730 Z_NET_DEVICE_INIT_INSTANCE(node_id, \
2731 Z_DEVICE_DT_DEV_ID(node_id), \
2732 DEVICE_DT_NAME(node_id), instance, \
2733 init_fn, pm, data, config, prio, \
2734 api, l2, l2_ctx_type, mtu)
2735
2745#define NET_DEVICE_DT_INST_DEFINE_INSTANCE(inst, ...) \
2746 NET_DEVICE_DT_DEFINE_INSTANCE(DT_DRV_INST(inst), __VA_ARGS__)
2747
2748#define Z_NET_DEVICE_OFFLOAD_INIT(node_id, dev_id, name, init_fn, pm, \
2749 data, config, prio, api, mtu) \
2750 Z_DEVICE_STATE_DEFINE(dev_id); \
2751 Z_DEVICE_DEFINE(node_id, dev_id, name, init_fn, pm, data, \
2752 config, POST_KERNEL, prio, api, \
2753 &Z_DEVICE_STATE_NAME(dev_id)); \
2754 NET_IF_OFFLOAD_INIT(dev_id, 0, mtu)
2755
2775#define NET_DEVICE_OFFLOAD_INIT(dev_id, name, init_fn, pm, data, \
2776 config, prio, api, mtu) \
2777 Z_NET_DEVICE_OFFLOAD_INIT(DT_INVALID_NODE, dev_id, name, \
2778 init_fn, pm, data, config, prio, api, \
2779 mtu)
2780
2799#define NET_DEVICE_DT_OFFLOAD_DEFINE(node_id, init_fn, pm, data, \
2800 config, prio, api, mtu) \
2801 Z_NET_DEVICE_OFFLOAD_INIT(node_id, Z_DEVICE_DT_DEV_ID(node_id), \
2802 DEVICE_DT_NAME(node_id), init_fn, pm, \
2803 data, config, prio, api, mtu)
2804
2814#define NET_DEVICE_DT_INST_OFFLOAD_DEFINE(inst, ...) \
2815 NET_DEVICE_DT_OFFLOAD_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
2816
2817#ifdef __cplusplus
2818}
2819#endif
2820
2821#include <syscalls/net_if.h>
2822
2827#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:44
ZTEST_BMEM int index[(3)]
Definition: main.c:32
DHCPv4 Client Handler.
static void atomic_set_bit(atomic_t *target, int bit)
Atomically set a bit.
Definition: atomic.h:217
static bool atomic_test_bit(const atomic_t *target, int bit)
Atomically test a bit.
Definition: atomic.h:131
static void atomic_clear_bit(atomic_t *target, int bit)
Atomically clear a bit.
Definition: atomic.h:198
#define ATOMIC_DEFINE(name, num_bits)
Define an array of atomic variables.
Definition: atomic.h:114
static bool atomic_test_and_clear_bit(atomic_t *target, int bit)
Atomically test and clear a bit.
Definition: atomic.h:152
static bool atomic_test_and_set_bit(atomic_t *target, int bit)
Atomically set a bit.
Definition: atomic.h:176
#define K_FOREVER
Generate infinite timeout delay.
Definition: kernel.h:1325
net_addr_state
Definition: net_ip.h:445
net_addr_type
Definition: net_ip.h:453
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:98
static int net_hostname_set_postfix(const uint8_t *hostname_postfix, int postfix_len)
Set the device hostname postfix.
Definition: hostname.h:74
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.
static bool net_if_is_carrier_ok(struct net_if *iface)
Check if carrier is present on network device.
Definition: net_if.h:2311
static bool net_if_is_admin_up(struct net_if *iface)
Check if interface was brought up by the administrator.
Definition: net_if.h:2277
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.
int(* net_socket_create_t)(int, int, int)
A function prototype to create an offloaded socket. The prototype is compatible with socket() functio...
Definition: net_if.h:455
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.
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:646
static void net_if_unlock(struct net_if *iface)
Definition: net_if.h:546
int net_if_down(struct net_if *iface)
Bring interface down.
bool net_if_need_calc_tx_checksum(struct net_if *iface)
Check if network packet checksum calculation can be avoided or not when sending the packet....
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:1922
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).
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.
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:2129
static void * net_if_l2_data(struct net_if *iface)
Get a pointer to the interface L2 private data.
Definition: net_if.h:717
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:2489
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:576
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:859
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:1653
static struct net_offload * net_if_offload(struct net_if *iface)
Return the IP offload plugin.
Definition: net_if.h:776
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:952
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:559
uint8_t net_if_ipv6_get_hop_limit(struct net_if *iface)
Get IPv6 hop limit specified for a given interface. This is the default value but can be overridden b...
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.
void net_if_queue_tx(struct net_if *iface, struct net_pkt *pkt)
Queue a packet to the net interface TX queue.
int net_if_config_ipv6_get(struct net_if *iface, struct net_if_ipv6 **ipv6)
Allocate network interface IPv6 config.
struct net_if_ipv6_prefix * net_if_ipv6_prefix_get(struct net_if *iface, struct in6_addr *addr)
Return prefix that corresponds to this IPv6 address.
bool net_if_ipv6_addr_rm(struct net_if *iface, const struct in6_addr *addr)
Remove an IPv6 address from an interface.
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:755
static bool net_if_is_dormant(struct net_if *iface)
Check if the interface is dormant.
Definition: net_if.h:2347
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.
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.
void(* net_if_mcast_callback_t)(struct net_if *iface, const struct net_addr *addr, bool is_joined)
Define callback that is called whenever IPv6 multicast address group is joined or left.
Definition: net_if.h:1256
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:987
bool net_if_need_calc_rx_checksum(struct net_if *iface)
Check if received network packet checksum calculation can be avoided or not. For example many etherne...
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.
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 is up and running.
Definition: net_if.h:2253
static void net_if_ipv6_set_reachable_time(struct net_if_ipv6 *ipv6)
Set IPv6 reachable time for a given interface. This requires that base reachable time is set for the ...
Definition: net_if.h:1585
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.
void net_if_dormant_on(struct net_if *iface)
Mark interface as dormant. Dormant state indicates that the interface is not ready to pass packets ye...
int net_if_config_ipv6_put(struct net_if *iface)
Release network interface IPv6 config.
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.
bool net_if_ipv4_set_netmask_by_index(int index, const struct in_addr *netmask)
Set IPv4 netmask for an interface index.
static void net_if_start_dad(struct net_if *iface)
Start duplicate address detection procedure.
Definition: net_if.h:889
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:2455
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:817
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:1555
static bool net_if_is_promisc(struct net_if *iface)
Check if promiscuous mode is set or not.
Definition: net_if.h:2472
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:1892
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:1397
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.
void net_if_register_link_cb(struct net_if_link_cb *link, net_if_link_callback_t cb)
Register a link callback.
static void net_if_lock(struct net_if *iface)
Definition: net_if.h:539
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.
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:911
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:1534
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.
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:608
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:1324
bool net_if_ipv6_addr_rm_by_index(int index, const struct in6_addr *addr)
Remove an IPv6 address from an interface by index.
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.
void net_ipv6_set_hop_limit(struct net_if *iface, uint8_t hop_limit)
Set the default IPv6 hop limit of a given interface.
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:970
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:2037
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:1602
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.
enum net_verdict net_if_send_data(struct net_if *iface, struct net_pkt *pkt)
Send a packet through a net iface.
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:1445
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:1623
bool net_if_ipv4_set_gw_by_index(int index, const struct in_addr *gw)
Set IPv4 gateway for an interface index.
net_if_oper_state
Definition: net_if.h:219
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(const struct in6_addr *dst)
Get a network interface that should be used when sending IPv6 network data to destination.
Definition: net_if.h:1675
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:625
static struct net_if_config * net_if_config_get(struct net_if *iface)
Get network interface IP config.
Definition: net_if.h:1038
static struct net_if_config * net_if_get_config(struct net_if *iface)
Return network configuration for this network interface.
Definition: net_if.h:874
void net_if_ipv4_maddr_join(struct net_if *iface, struct net_if_mcast_addr *addr)
Mark a given multicast address to be joined.
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:1005
net_if_flag
Definition: net_if.h:164
static const struct device * net_if_get_device(struct net_if *iface)
Get an network interface's device.
Definition: net_if.h:732
void(* net_if_cb_t)(struct net_if *iface, void *user_data)
Callback used while iterating over network interfaces.
Definition: net_if.h:2226
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:797
static int net_if_set_promisc(struct net_if *iface)
Set network interface into promiscuous mode.
Definition: net_if.h:2439
static const struct net_l2 * net_if_l2(struct net_if *iface)
Get a pointer to the interface L2.
Definition: net_if.h:691
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:838
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:2013
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:591
@ NET_IF_OPER_TESTING
Definition: net_if.h:224
@ NET_IF_OPER_DORMANT
Definition: net_if.h:225
@ NET_IF_OPER_UP
Definition: net_if.h:226
@ NET_IF_OPER_NOTPRESENT
Definition: net_if.h:221
@ NET_IF_OPER_UNKNOWN
Definition: net_if.h:220
@ NET_IF_OPER_DOWN
Definition: net_if.h:222
@ NET_IF_OPER_LOWERLAYERDOWN
Definition: net_if.h:223
@ NET_IF_NO_AUTO_START
Definition: net_if.h:180
@ NET_IF_IPV6_NO_MLD
Definition: net_if.h:210
@ NET_IF_POINTOPOINT
Definition: net_if.h:169
@ NET_IF_IPV6_NO_ND
Definition: net_if.h:207
@ NET_IF_FORWARD_MULTICASTS
Definition: net_if.h:189
@ NET_IF_IPV4
Definition: net_if.h:192
@ NET_IF_PROMISC
Definition: net_if.h:172
@ NET_IF_DORMANT
Definition: net_if.h:204
@ NET_IF_SUSPENDED
Definition: net_if.h:183
@ NET_IF_IPV6
Definition: net_if.h:195
@ NET_IF_UP
Definition: net_if.h:166
@ NET_IF_LOWER_UP
Definition: net_if.h:201
@ NET_IF_RUNNING
Definition: net_if.h:198
net_link_type
Definition: net_linkaddr.h:47
#define ENOTSUP
Definition: errno.h:115
#define EPERM
Definition: errno.h:40
Hostname configuration definitions.
IPv4 Autoconfiguration.
net_ipv4_autoconf_state
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:96
state
Definition: parser_state.h:29
Single-linked list implementation.
struct _slist sys_slist_t
Definition: slist.h:40
struct _snode sys_snode_t
Definition: slist.h:33
__UINT32_TYPE__ uint32_t
Definition: stdint.h:90
__UINT8_TYPE__ uint8_t
Definition: stdint.h:88
__UINT16_TYPE__ uint16_t
Definition: stdint.h:89
__INT64_TYPE__ int64_t
Definition: stdint.h:75
Runtime device structure (in ROM) per driver instance.
Definition: device.h:380
Definition: net_ip.h:139
Definition: net_ip.h:151
Definition: kernel.h:2310
Definition: kernel.h:2822
Definition: thread.h:245
Network Interface unicast IP addresses.
Definition: net_if.h:49
struct net_addr address
Definition: net_if.h:51
uint8_t is_mesh_local
Definition: net_if.h:80
enum net_addr_state addr_state
Definition: net_if.h:66
uint8_t is_infinite
Definition: net_if.h:74
enum net_addr_type addr_type
Definition: net_if.h:63
uint8_t is_used
Definition: net_if.h:77
IP and other configuration related data for network interface.
Definition: net_if.h:406
Network Interface Device structure.
Definition: net_if.h:470
enum net_if_oper_state oper_state
Definition: net_if.h:506
const struct net_l2 *const l2
Definition: net_if.h:475
void * l2_data
Definition: net_if.h:478
uint16_t mtu
Definition: net_if.h:496
const struct device * dev
Definition: net_if.h:472
struct net_linkaddr link_addr
Definition: net_if.h:484
atomic_t flags[ATOMIC_BITMAP_SIZE(NET_IF_NUM_FLAGS)]
Definition: net_if.h:481
Network interface IP address configuration.
Definition: net_if.h:393
Definition: net_if.h:288
struct net_if_addr unicast[NET_IF_MAX_IPV4_ADDR]
Definition: net_if.h:290
struct in_addr netmask
Definition: net_if.h:299
struct in_addr gw
Definition: net_if.h:296
uint8_t ttl
Definition: net_if.h:302
struct net_if_mcast_addr mcast[NET_IF_MAX_IPV4_MADDR]
Definition: net_if.h:293
Network Interface IPv6 prefixes.
Definition: net_if.h:108
struct net_if * iface
Definition: net_if.h:116
uint8_t is_infinite
Definition: net_if.h:122
uint8_t len
Definition: net_if.h:119
struct in6_addr prefix
Definition: net_if.h:113
uint8_t is_used
Definition: net_if.h:125
struct net_timeout lifetime
Definition: net_if.h:110
Definition: net_if.h:245
struct net_if_ipv6_prefix prefix[NET_IF_MAX_IPV6_PREFIX]
Definition: net_if.h:253
uint32_t base_reachable_time
Definition: net_if.h:256
uint8_t hop_limit
Definition: net_if.h:275
struct net_if_mcast_addr mcast[NET_IF_MAX_IPV6_MADDR]
Definition: net_if.h:250
uint32_t retrans_timer
Definition: net_if.h:262
struct net_if_addr unicast[NET_IF_MAX_IPV6_ADDR]
Definition: net_if.h:247
uint32_t reachable_time
Definition: net_if.h:259
Network Interface multicast IP addresses.
Definition: net_if.h:90
struct net_addr address
Definition: net_if.h:92
uint8_t is_joined
Definition: net_if.h:98
uint8_t is_used
Definition: net_if.h:95
Multicast monitor handler struct.
Definition: net_if.h:1268
sys_snode_t node
Definition: net_if.h:1270
net_if_mcast_callback_t cb
Definition: net_if.h:1276
struct net_if * iface
Definition: net_if.h:1273
Information about routers in the system.
Definition: net_if.h:135
struct net_if * iface
Definition: net_if.h:143
uint8_t is_default
Definition: net_if.h:155
uint16_t lifetime
Definition: net_if.h:149
uint8_t is_infinite
Definition: net_if.h:158
uint8_t is_used
Definition: net_if.h:152
struct net_addr address
Definition: net_if.h:140
sys_snode_t node
Definition: net_if.h:137
uint32_t life_start
Definition: net_if.h:146
Network Interface structure.
Definition: net_if.h:516
struct net_if_dev * if_dev
Definition: net_if.h:518
struct net_if_config config
Definition: net_if.h:526
struct k_mutex lock
Definition: net_if.h:536
Network L2 structure.
Definition: net_l2.h:55
Hardware link address structure.
Definition: net_linkaddr.h:67
uint8_t * addr
Definition: net_linkaddr.h:69
uint8_t type
Definition: net_linkaddr.h:75
uint8_t len
Definition: net_linkaddr.h:72
Network packet.
Definition: net_pkt.h:62
All network statistics in one struct.
Definition: net_stats.h:292
Definition: net_timeout.h:55
Network traffic class.
Definition: net_if.h:438
k_thread_stack_t * stack
Definition: net_if.h:446
struct k_thread handler
Definition: net_if.h:443
struct k_fifo fifo
Definition: net_if.h:440
Definition: net_ip.h:347
static const intptr_t user_data[5]
Definition: main.c:588