Zephyr Project API  3.3.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>
24
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
207 /* Total number of flags - must be at the end of the enum */
208 NET_IF_NUM_FLAGS
210};
211
221} __packed;
222
223#if defined(CONFIG_NET_OFFLOAD)
224struct net_offload;
225#endif /* CONFIG_NET_OFFLOAD */
226
228#if defined(CONFIG_NET_NATIVE_IPV6)
229#define NET_IF_MAX_IPV6_ADDR CONFIG_NET_IF_UNICAST_IPV6_ADDR_COUNT
230#define NET_IF_MAX_IPV6_MADDR CONFIG_NET_IF_MCAST_IPV6_ADDR_COUNT
231#define NET_IF_MAX_IPV6_PREFIX CONFIG_NET_IF_IPV6_PREFIX_COUNT
232#else
233#define NET_IF_MAX_IPV6_ADDR 0
234#define NET_IF_MAX_IPV6_MADDR 0
235#define NET_IF_MAX_IPV6_PREFIX 0
236#endif
237/* @endcond */
238
241 struct net_if_addr unicast[NET_IF_MAX_IPV6_ADDR];
242
244 struct net_if_mcast_addr mcast[NET_IF_MAX_IPV6_MADDR];
245
247 struct net_if_ipv6_prefix prefix[NET_IF_MAX_IPV6_PREFIX];
248
251
254
257#if defined(CONFIG_NET_IPV6_ND) && defined(CONFIG_NET_NATIVE_IPV6)
259 sys_snode_t rs_node;
260
261 /* RS start time */
262 uint32_t rs_start;
263
265 uint8_t rs_count;
266#endif
267
270};
271
273#if defined(CONFIG_NET_NATIVE_IPV4)
274#define NET_IF_MAX_IPV4_ADDR CONFIG_NET_IF_UNICAST_IPV4_ADDR_COUNT
275#define NET_IF_MAX_IPV4_MADDR CONFIG_NET_IF_MCAST_IPV4_ADDR_COUNT
276#else
277#define NET_IF_MAX_IPV4_ADDR 0
278#define NET_IF_MAX_IPV4_MADDR 0
279#endif
284 struct net_if_addr unicast[NET_IF_MAX_IPV4_ADDR];
285
287 struct net_if_mcast_addr mcast[NET_IF_MAX_IPV4_MADDR];
288
290 struct in_addr gw;
291
294
297};
298
299#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
300struct net_if_dhcpv4 {
302 sys_snode_t node;
303
305 int64_t timer_start;
306
308 uint32_t request_time;
309
310 uint32_t xid;
311
313 uint32_t lease_time;
314
316 uint32_t renewal_time;
317
319 uint32_t rebinding_time;
320
322 struct in_addr server_id;
323
325 struct in_addr requested_ip;
326
331 enum net_dhcpv4_state state;
332
334 uint8_t attempts;
335
337 struct in_addr request_server_addr;
338
340 struct in_addr response_src_addr;
341};
342#endif /* CONFIG_NET_DHCPV4 */
343
344#if defined(CONFIG_NET_IPV4_AUTO) && defined(CONFIG_NET_NATIVE_IPV4)
345struct net_if_ipv4_autoconf {
347 sys_snode_t node;
348
350 struct net_if *iface;
351
353 int64_t timer_start;
354
356 uint32_t timer_timeout;
357
359 struct in_addr current_ip;
360
362 struct in_addr requested_ip;
363
367
369 uint8_t probe_cnt;
370
372 uint8_t announce_cnt;
373
375 uint8_t conflict_cnt;
376};
377#endif /* CONFIG_NET_IPV4_AUTO */
378
380/* We always need to have at least one IP config */
381#define NET_IF_MAX_CONFIGS 1
387struct net_if_ip {
388#if defined(CONFIG_NET_NATIVE_IPV6)
389 struct net_if_ipv6 *ipv6;
390#endif /* CONFIG_NET_IPV6 */
391
392#if defined(CONFIG_NET_NATIVE_IPV4)
393 struct net_if_ipv4 *ipv4;
394#endif /* CONFIG_NET_IPV4 */
395};
396
401#if defined(CONFIG_NET_IP)
403 struct net_if_ip ip;
404#endif
405
406#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
407 struct net_if_dhcpv4 dhcpv4;
408#endif /* CONFIG_NET_DHCPV4 */
409
410#if defined(CONFIG_NET_IPV4_AUTO) && defined(CONFIG_NET_NATIVE_IPV4)
411 struct net_if_ipv4_autoconf ipv4auto;
412#endif /* CONFIG_NET_IPV4_AUTO */
413
414#if defined(CONFIG_NET_L2_VIRTUAL)
419 sys_slist_t virtual_interfaces;
420#endif /* CONFIG_NET_L2_VIRTUAL */
421};
422
434 struct k_fifo fifo;
435
438
441};
442
449typedef int (*net_socket_create_t)(int, int, int);
450
466 const struct device *dev;
467
469 const struct net_l2 * const l2;
470
472 void *l2_data;
473
474 /* For internal use */
475 ATOMIC_DEFINE(flags, NET_IF_NUM_FLAGS);
476
479
480#if defined(CONFIG_NET_OFFLOAD)
486 struct net_offload *offload;
487#endif /* CONFIG_NET_OFFLOAD */
488
491
492#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
496 net_socket_create_t socket_offload;
497#endif /* CONFIG_NET_SOCKETS_OFFLOAD */
498
501};
502
510struct net_if {
513
514#if defined(CONFIG_NET_STATISTICS_PER_INTERFACE)
516 struct net_stats stats;
517#endif /* CONFIG_NET_STATISTICS_PER_INTERFACE */
518
521
522#if defined(CONFIG_NET_POWER_MANAGEMENT)
527 int tx_pending;
528#endif
529};
530
537static inline void net_if_flag_set(struct net_if *iface,
538 enum net_if_flag value)
539{
540 NET_ASSERT(iface);
541
542 atomic_set_bit(iface->if_dev->flags, value);
543}
544
553static inline bool net_if_flag_test_and_set(struct net_if *iface,
554 enum net_if_flag value)
555{
556 NET_ASSERT(iface);
557
558 return atomic_test_and_set_bit(iface->if_dev->flags, value);
559}
560
567static inline void net_if_flag_clear(struct net_if *iface,
568 enum net_if_flag value)
569{
570 NET_ASSERT(iface);
571
572 atomic_clear_bit(iface->if_dev->flags, value);
573}
574
583static inline bool net_if_flag_test_and_clear(struct net_if *iface,
584 enum net_if_flag value)
585{
586 NET_ASSERT(iface);
587
588 return atomic_test_and_clear_bit(iface->if_dev->flags, value);
589}
590
599static inline bool net_if_flag_is_set(struct net_if *iface,
600 enum net_if_flag value)
601{
602 if (iface == NULL) {
603 return false;
604 }
605
606 return atomic_test_bit(iface->if_dev->flags, value);
607}
608
618 struct net_if *iface, enum net_if_oper_state oper_state)
619{
620 NET_ASSERT(iface);
621
622 if (oper_state >= NET_IF_OPER_UNKNOWN && oper_state <= NET_IF_OPER_UP) {
623 iface->if_dev->oper_state = oper_state;
624 }
625
626 return iface->if_dev->oper_state;
627}
628
636static inline enum net_if_oper_state net_if_oper_state(struct net_if *iface)
637{
638 NET_ASSERT(iface);
639
640 return iface->if_dev->oper_state;
641}
642
651enum net_verdict net_if_send_data(struct net_if *iface, struct net_pkt *pkt);
652
660static inline const struct net_l2 *net_if_l2(struct net_if *iface)
661{
662 if (!iface || !iface->if_dev) {
663 return NULL;
664 }
665
666 return iface->if_dev->l2;
667}
668
677enum net_verdict net_if_recv_data(struct net_if *iface, struct net_pkt *pkt);
678
686static inline void *net_if_l2_data(struct net_if *iface)
687{
688 return iface->if_dev->l2_data;
689}
690
698static inline const struct device *net_if_get_device(struct net_if *iface)
699{
700 return iface->if_dev->dev;
701}
702
709void net_if_queue_tx(struct net_if *iface, struct net_pkt *pkt);
710
718static inline bool net_if_is_ip_offloaded(struct net_if *iface)
719{
720#if defined(CONFIG_NET_OFFLOAD)
721 return (iface->if_dev->offload != NULL);
722#else
723 ARG_UNUSED(iface);
724
725 return false;
726#endif
727}
728
736static inline struct net_offload *net_if_offload(struct net_if *iface)
737{
738#if defined(CONFIG_NET_OFFLOAD)
739 return iface->if_dev->offload;
740#else
741 ARG_UNUSED(iface);
742
743 return NULL;
744#endif
745}
746
754static inline bool net_if_is_socket_offloaded(struct net_if *iface)
755{
756#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
757 return (iface->if_dev->socket_offload != NULL);
758#else
759 ARG_UNUSED(iface);
760
761 return false;
762#endif
763}
764
771static inline void net_if_socket_offload_set(
772 struct net_if *iface, net_socket_create_t socket_offload)
773{
774#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
775 iface->if_dev->socket_offload = socket_offload;
776#else
777 ARG_UNUSED(iface);
778 ARG_UNUSED(socket_offload);
779#endif
780}
781
790{
791#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
792 return iface->if_dev->socket_offload;
793#else
794 ARG_UNUSED(iface);
795
796 return NULL;
797#endif
798}
799
807static inline struct net_linkaddr *net_if_get_link_addr(struct net_if *iface)
808{
809 return &iface->if_dev->link_addr;
810}
811
819static inline struct net_if_config *net_if_get_config(struct net_if *iface)
820{
821 return &iface->config;
822}
823
829#if defined(CONFIG_NET_IPV6_DAD) && defined(CONFIG_NET_NATIVE_IPV6)
830void net_if_start_dad(struct net_if *iface);
831#else
832static inline void net_if_start_dad(struct net_if *iface)
833{
834 ARG_UNUSED(iface);
835}
836#endif
837
843void net_if_start_rs(struct net_if *iface);
844
845
851#if defined(CONFIG_NET_IPV6_ND) && defined(CONFIG_NET_NATIVE_IPV6)
852void net_if_stop_rs(struct net_if *iface);
853#else
854static inline void net_if_stop_rs(struct net_if *iface)
855{
856 ARG_UNUSED(iface);
857}
858#endif /* CONFIG_NET_IPV6_ND */
859
862static inline int net_if_set_link_addr_unlocked(struct net_if *iface,
863 uint8_t *addr, uint8_t len,
864 enum net_link_type type)
865{
867 return -EPERM;
868 }
869
870 net_if_get_link_addr(iface)->addr = addr;
871 net_if_get_link_addr(iface)->len = len;
872 net_if_get_link_addr(iface)->type = type;
873
874 net_hostname_set_postfix(addr, len);
875
876 return 0;
877}
878
879int net_if_set_link_addr_locked(struct net_if *iface,
880 uint8_t *addr, uint8_t len,
881 enum net_link_type type);
895static inline int net_if_set_link_addr(struct net_if *iface,
896 uint8_t *addr, uint8_t len,
897 enum net_link_type type)
898{
899#if defined(CONFIG_NET_RAW_MODE)
900 return net_if_set_link_addr_unlocked(iface, addr, len, type);
901#else
902 return net_if_set_link_addr_locked(iface, addr, len, type);
903#endif
904}
905
913static inline uint16_t net_if_get_mtu(struct net_if *iface)
914{
915 if (iface == NULL) {
916 return 0U;
917 }
918
919 return iface->if_dev->mtu;
920}
921
928static inline void net_if_set_mtu(struct net_if *iface,
929 uint16_t mtu)
930{
931 if (iface == NULL) {
932 return;
933 }
934
935 iface->if_dev->mtu = mtu;
936}
937
944static inline void net_if_addr_set_lf(struct net_if_addr *ifaddr,
945 bool is_infinite)
946{
947 ifaddr->is_infinite = is_infinite;
948}
949
958
966struct net_if *net_if_lookup_by_dev(const struct device *dev);
967
975static inline struct net_if_config *net_if_config_get(struct net_if *iface)
976{
977 return &iface->config;
978}
979
985void net_if_router_rm(struct net_if_router *router);
986
992void net_if_set_default(struct net_if *iface);
993
1000
1009struct net_if *net_if_get_first_by_type(const struct net_l2 *l2);
1010
1018
1019#if defined(CONFIG_NET_L2_IEEE802154)
1026static inline struct net_if *net_if_get_ieee802154(void)
1027{
1028 return net_if_get_first_by_type(&NET_L2_GET_NAME(IEEE802154));
1029}
1030#endif /* CONFIG_NET_L2_IEEE802154 */
1031
1043 struct net_if_ipv6 **ipv6);
1044
1053
1063 struct net_if **iface);
1064
1074 struct in6_addr *addr);
1075
1084__syscall int net_if_ipv6_addr_lookup_by_index(const struct in6_addr *addr);
1085
1097 struct in6_addr *addr,
1099 uint32_t vlifetime);
1100
1112 struct in6_addr *addr,
1114 uint32_t vlifetime);
1115
1123 uint32_t vlifetime);
1124
1133bool net_if_ipv6_addr_rm(struct net_if *iface, const struct in6_addr *addr);
1134
1144 const struct in6_addr *addr);
1145
1155 const struct in6_addr *addr);
1156
1165bool net_if_ipv6_maddr_rm(struct net_if *iface, const struct in6_addr *addr);
1166
1178 struct net_if **iface);
1179
1191typedef void (*net_if_mcast_callback_t)(struct net_if *iface,
1192 const struct net_addr *addr,
1193 bool is_joined);
1194
1206
1208 struct net_if *iface;
1209
1212};
1213
1223 struct net_if *iface,
1225
1232
1240void net_if_mcast_monitor(struct net_if *iface, const struct net_addr *addr,
1241 bool is_joined);
1242
1249
1257static inline bool net_if_ipv6_maddr_is_joined(struct net_if_mcast_addr *addr)
1258{
1259 NET_ASSERT(addr);
1260
1261 return addr->is_joined;
1262}
1263
1270
1280 struct in6_addr *addr);
1281
1292 struct in6_addr *addr,
1293 uint8_t len);
1294
1306 struct in6_addr *prefix,
1307 uint8_t len,
1309
1319bool net_if_ipv6_prefix_rm(struct net_if *iface, struct in6_addr *addr,
1320 uint8_t len);
1321
1329 bool is_infinite)
1330{
1331 prefix->is_infinite = is_infinite;
1332}
1333
1342
1349
1360bool net_if_ipv6_addr_onlink(struct net_if **iface, struct in6_addr *addr);
1361
1368#if defined(CONFIG_NET_NATIVE_IPV6)
1369static inline struct in6_addr *net_if_router_ipv6(struct net_if_router *router)
1370{
1371 return &router->address.in6_addr;
1372}
1373#else
1374static inline struct in6_addr *net_if_router_ipv6(struct net_if_router *router)
1375{
1376 static struct in6_addr addr;
1377
1378 ARG_UNUSED(router);
1379
1380 return &addr;
1381}
1382#endif
1383
1394 struct in6_addr *addr);
1395
1406 struct in6_addr *addr);
1407
1416
1427 struct in6_addr *addr,
1428 uint16_t router_lifetime);
1429
1438
1448
1456
1464 uint32_t reachable_time)
1465{
1466#if defined(CONFIG_NET_NATIVE_IPV6)
1467 if (!iface->config.ip.ipv6) {
1468 return;
1469 }
1470
1471 iface->config.ip.ipv6->base_reachable_time = reachable_time;
1472#endif
1473}
1474
1483{
1484#if defined(CONFIG_NET_NATIVE_IPV6)
1485 if (!iface->config.ip.ipv6) {
1486 return 0;
1487 }
1488
1489 return iface->config.ip.ipv6->reachable_time;
1490#else
1491 return 0;
1492#endif
1493}
1494
1503
1510static inline void net_if_ipv6_set_reachable_time(struct net_if_ipv6 *ipv6)
1511{
1512#if defined(CONFIG_NET_NATIVE_IPV6)
1513 if (ipv6 == NULL) {
1514 return;
1515 }
1516
1518#endif
1519}
1520
1527static inline void net_if_ipv6_set_retrans_timer(struct net_if *iface,
1528 uint32_t retrans_timer)
1529{
1530#if defined(CONFIG_NET_NATIVE_IPV6)
1531 if (!iface->config.ip.ipv6) {
1532 return;
1533 }
1534
1535 iface->config.ip.ipv6->retrans_timer = retrans_timer;
1536#endif
1537}
1538
1547{
1548#if defined(CONFIG_NET_NATIVE_IPV6)
1549 if (!iface->config.ip.ipv6) {
1550 return 0;
1551 }
1552
1553 return iface->config.ip.ipv6->retrans_timer;
1554#else
1555 return 0;
1556#endif
1557}
1558
1570#if defined(CONFIG_NET_NATIVE_IPV6)
1571const struct in6_addr *net_if_ipv6_select_src_addr(struct net_if *iface,
1572 const struct in6_addr *dst);
1573#else
1574static inline const struct in6_addr *net_if_ipv6_select_src_addr(
1575 struct net_if *iface, const struct in6_addr *dst)
1576{
1577 ARG_UNUSED(iface);
1578 ARG_UNUSED(dst);
1579
1580 return NULL;
1581}
1582#endif
1583
1593#if defined(CONFIG_NET_NATIVE_IPV6)
1594struct net_if *net_if_ipv6_select_src_iface(const struct in6_addr *dst);
1595#else
1597 const struct in6_addr *dst)
1598{
1599 ARG_UNUSED(dst);
1600
1601 return NULL;
1602}
1603#endif
1604
1614struct in6_addr *net_if_ipv6_get_ll(struct net_if *iface,
1615 enum net_addr_state addr_state);
1616
1627 struct net_if **iface);
1628
1636void net_if_ipv6_dad_failed(struct net_if *iface, const struct in6_addr *addr);
1637
1650 struct net_if **iface);
1651
1663 struct net_if_ipv4 **ipv4);
1664
1673
1682
1689void net_if_ipv4_set_ttl(struct net_if *iface, uint8_t ttl);
1690
1700 struct net_if **iface);
1701
1713 struct in_addr *addr,
1715 uint32_t vlifetime);
1716
1725bool net_if_ipv4_addr_rm(struct net_if *iface, const struct in_addr *addr);
1726
1735__syscall int net_if_ipv4_addr_lookup_by_index(const struct in_addr *addr);
1736
1748 struct in_addr *addr,
1750 uint32_t vlifetime);
1751
1761 const struct in_addr *addr);
1762
1772 const struct in_addr *addr);
1773
1782bool net_if_ipv4_maddr_rm(struct net_if *iface, const struct in_addr *addr);
1783
1795 struct net_if **iface);
1796
1803
1811static inline bool net_if_ipv4_maddr_is_joined(struct net_if_mcast_addr *addr)
1812{
1813 NET_ASSERT(addr);
1814
1815 return addr->is_joined;
1816}
1817
1824
1831#if defined(CONFIG_NET_NATIVE_IPV4)
1832static inline struct in_addr *net_if_router_ipv4(struct net_if_router *router)
1833{
1834 return &router->address.in_addr;
1835}
1836#else
1837static inline struct in_addr *net_if_router_ipv4(struct net_if_router *router)
1838{
1839 static struct in_addr addr;
1840
1841 ARG_UNUSED(router);
1842
1843 return &addr;
1844}
1845#endif
1846
1857 struct in_addr *addr);
1858
1869 struct in_addr *addr);
1881 struct in_addr *addr,
1882 bool is_default,
1883 uint16_t router_lifetime);
1884
1893
1903 const struct in_addr *addr);
1904
1914 const struct in_addr *addr);
1915
1925#if defined(CONFIG_NET_NATIVE_IPV4)
1926struct net_if *net_if_ipv4_select_src_iface(const struct in_addr *dst);
1927#else
1929 const struct in_addr *dst)
1930{
1931 ARG_UNUSED(dst);
1932
1933 return NULL;
1934}
1935#endif
1936
1948#if defined(CONFIG_NET_NATIVE_IPV4)
1949const struct in_addr *net_if_ipv4_select_src_addr(struct net_if *iface,
1950 const struct in_addr *dst);
1951#else
1952static inline const struct in_addr *net_if_ipv4_select_src_addr(
1953 struct net_if *iface, const struct in_addr *dst)
1954{
1955 ARG_UNUSED(iface);
1956 ARG_UNUSED(dst);
1957
1958 return NULL;
1959}
1960#endif
1961
1971struct in_addr *net_if_ipv4_get_ll(struct net_if *iface,
1972 enum net_addr_state addr_state);
1973
1984 enum net_addr_state addr_state);
1985
1993 const struct in_addr *netmask);
1994
2004 const struct in_addr *netmask);
2005
2012void net_if_ipv4_set_gw(struct net_if *iface, const struct in_addr *gw);
2013
2022__syscall bool net_if_ipv4_set_gw_by_index(int index, const struct in_addr *gw);
2023
2034struct net_if *net_if_select_src_iface(const struct sockaddr *dst);
2035
2044typedef void (*net_if_link_callback_t)(struct net_if *iface,
2045 struct net_linkaddr *dst,
2046 int status);
2047
2059
2062};
2063
2072
2079
2087void net_if_call_link_cb(struct net_if *iface, struct net_linkaddr *lladdr,
2088 int status);
2089
2100
2112
2123__syscall struct net_if *net_if_get_by_index(int index);
2124
2132int net_if_get_by_iface(struct net_if *iface);
2133
2141typedef void (*net_if_cb_t)(struct net_if *iface, void *user_data);
2142
2151
2159int net_if_up(struct net_if *iface);
2160
2168static inline bool net_if_is_up(struct net_if *iface)
2169{
2170 NET_ASSERT(iface);
2171
2172 return net_if_flag_is_set(iface, NET_IF_UP) &&
2174}
2175
2183int net_if_down(struct net_if *iface);
2184
2192static inline bool net_if_is_admin_up(struct net_if *iface)
2193{
2194 NET_ASSERT(iface);
2195
2196 return net_if_flag_is_set(iface, NET_IF_UP);
2197}
2198
2207void net_if_carrier_on(struct net_if *iface);
2208
2217void net_if_carrier_off(struct net_if *iface);
2218
2226static inline bool net_if_is_carrier_ok(struct net_if *iface)
2227{
2228 NET_ASSERT(iface);
2229
2230 return net_if_flag_is_set(iface, NET_IF_LOWER_UP);
2231}
2232
2243void net_if_dormant_on(struct net_if *iface);
2244
2253void net_if_dormant_off(struct net_if *iface);
2254
2262static inline bool net_if_is_dormant(struct net_if *iface)
2263{
2264 NET_ASSERT(iface);
2265
2266 return net_if_flag_is_set(iface, NET_IF_DORMANT);
2267}
2268
2269#if defined(CONFIG_NET_PKT_TIMESTAMP) && defined(CONFIG_NET_NATIVE)
2277typedef void (*net_if_timestamp_callback_t)(struct net_pkt *pkt);
2278
2287struct net_if_timestamp_cb {
2289 sys_snode_t node;
2290
2294 struct net_pkt *pkt;
2295
2299 struct net_if *iface;
2300
2302 net_if_timestamp_callback_t cb;
2303};
2304
2315void net_if_register_timestamp_cb(struct net_if_timestamp_cb *handle,
2316 struct net_pkt *pkt,
2317 struct net_if *iface,
2318 net_if_timestamp_callback_t cb);
2319
2325void net_if_unregister_timestamp_cb(struct net_if_timestamp_cb *handle);
2326
2332void net_if_call_timestamp_cb(struct net_pkt *pkt);
2333
2334/*
2335 * @brief Add timestamped TX buffer to be handled
2336 *
2337 * @param pkt Timestamped buffer
2338 */
2339void net_if_add_tx_timestamp(struct net_pkt *pkt);
2340#endif /* CONFIG_NET_PKT_TIMESTAMP */
2341
2351int net_if_set_promisc(struct net_if *iface);
2352
2358void net_if_unset_promisc(struct net_if *iface);
2359
2368bool net_if_is_promisc(struct net_if *iface);
2369
2379static inline bool net_if_are_pending_tx_packets(struct net_if *iface)
2380{
2381#if defined(CONFIG_NET_POWER_MANAGEMENT)
2382 return !!iface->tx_pending;
2383#else
2384 ARG_UNUSED(iface);
2385
2386 return false;
2387#endif
2388}
2389
2390#ifdef CONFIG_NET_POWER_MANAGEMENT
2398int net_if_suspend(struct net_if *iface);
2399
2407int net_if_resume(struct net_if *iface);
2408
2416bool net_if_is_suspended(struct net_if *iface);
2417#endif /* CONFIG_NET_POWER_MANAGEMENT */
2418
2420struct net_if_api {
2421 void (*init)(struct net_if *iface);
2422};
2423
2424#if defined(CONFIG_NET_IP)
2425#define NET_IF_IP_INIT .ip = {},
2426#else
2427#define NET_IF_IP_INIT
2428#endif
2429
2430#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
2431#define NET_IF_DHCPV4_INIT .dhcpv4.state = NET_DHCPV4_DISABLED,
2432#else
2433#define NET_IF_DHCPV4_INIT
2434#endif
2435
2436#define NET_IF_CONFIG_INIT \
2437 .config = { \
2438 NET_IF_IP_INIT \
2439 NET_IF_DHCPV4_INIT \
2440 }
2441
2442#define NET_IF_GET_NAME(dev_id, sfx) __net_if_##dev_id##_##sfx
2443#define NET_IF_DEV_GET_NAME(dev_id, sfx) __net_if_dev_##dev_id##_##sfx
2444
2445#define NET_IF_GET(dev_id, sfx) \
2446 ((struct net_if *)&NET_IF_GET_NAME(dev_id, sfx))
2447
2448#define NET_IF_INIT(dev_id, sfx, _l2, _mtu, _num_configs) \
2449 static STRUCT_SECTION_ITERABLE(net_if_dev, \
2450 NET_IF_DEV_GET_NAME(dev_id, sfx)) = { \
2451 .dev = &(DEVICE_NAME_GET(dev_id)), \
2452 .l2 = &(NET_L2_GET_NAME(_l2)), \
2453 .l2_data = &(NET_L2_GET_DATA(dev_id, sfx)), \
2454 .mtu = _mtu, \
2455 }; \
2456 static Z_DECL_ALIGN(struct net_if) \
2457 NET_IF_GET_NAME(dev_id, sfx)[_num_configs] \
2458 __used __in_section(_net_if, static, \
2459 dev_id) = { \
2460 [0 ... (_num_configs - 1)] = { \
2461 .if_dev = &(NET_IF_DEV_GET_NAME(dev_id, sfx)), \
2462 NET_IF_CONFIG_INIT \
2463 } \
2464 }
2465
2466#define NET_IF_OFFLOAD_INIT(dev_id, sfx, _mtu) \
2467 static STRUCT_SECTION_ITERABLE(net_if_dev, \
2468 NET_IF_DEV_GET_NAME(dev_id, sfx)) = { \
2469 .dev = &(DEVICE_NAME_GET(dev_id)), \
2470 .mtu = _mtu, \
2471 }; \
2472 static Z_DECL_ALIGN(struct net_if) \
2473 NET_IF_GET_NAME(dev_id, sfx)[NET_IF_MAX_CONFIGS] \
2474 __used __in_section(_net_if, static, \
2475 dev_id) = { \
2476 [0 ... (NET_IF_MAX_CONFIGS - 1)] = { \
2477 .if_dev = &(NET_IF_DEV_GET_NAME(dev_id, sfx)), \
2478 NET_IF_CONFIG_INIT \
2479 } \
2480 }
2481
2484/* Network device initialization macros */
2485
2486#define Z_NET_DEVICE_INIT(node_id, dev_id, name, init_fn, pm, data, \
2487 config, prio, api, l2, l2_ctx_type, mtu) \
2488 Z_DEVICE_STATE_DEFINE(dev_id); \
2489 Z_DEVICE_DEFINE(node_id, dev_id, name, init_fn, pm, data, \
2490 config, POST_KERNEL, prio, api, \
2491 &Z_DEVICE_STATE_NAME(dev_id)); \
2492 NET_L2_DATA_INIT(dev_id, 0, l2_ctx_type); \
2493 NET_IF_INIT(dev_id, 0, l2, mtu, NET_IF_MAX_CONFIGS)
2494
2514#define NET_DEVICE_INIT(dev_id, name, init_fn, pm, data, config, prio, \
2515 api, l2, l2_ctx_type, mtu) \
2516 Z_NET_DEVICE_INIT(DT_INVALID_NODE, dev_id, name, init_fn, pm, \
2517 data, config, prio, api, l2, l2_ctx_type, mtu)
2518
2537#define NET_DEVICE_DT_DEFINE(node_id, init_fn, pm, data, \
2538 config, prio, api, l2, l2_ctx_type, mtu) \
2539 Z_NET_DEVICE_INIT(node_id, Z_DEVICE_DT_DEV_ID(node_id), \
2540 DEVICE_DT_NAME(node_id), init_fn, pm, data, \
2541 config, prio, api, l2, l2_ctx_type, mtu)
2542
2551#define NET_DEVICE_DT_INST_DEFINE(inst, ...) \
2552 NET_DEVICE_DT_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
2553
2554#define Z_NET_DEVICE_INIT_INSTANCE(node_id, dev_id, name, instance, \
2555 init_fn, pm, data, config, prio, \
2556 api, l2, l2_ctx_type, mtu) \
2557 Z_DEVICE_STATE_DEFINE(dev_id); \
2558 Z_DEVICE_DEFINE(node_id, dev_id, name, init_fn, pm, data, \
2559 config, POST_KERNEL, prio, api, \
2560 &Z_DEVICE_STATE_NAME(dev_id)); \
2561 NET_L2_DATA_INIT(dev_id, instance, l2_ctx_type); \
2562 NET_IF_INIT(dev_id, instance, l2, mtu, NET_IF_MAX_CONFIGS)
2563
2587#define NET_DEVICE_INIT_INSTANCE(dev_id, name, instance, init_fn, pm, \
2588 data, config, prio, api, l2, \
2589 l2_ctx_type, mtu) \
2590 Z_NET_DEVICE_INIT_INSTANCE(DT_INVALID_NODE, dev_id, name, \
2591 instance, init_fn, pm, data, config, \
2592 prio, api, l2, l2_ctx_type, mtu)
2593
2616#define NET_DEVICE_DT_DEFINE_INSTANCE(node_id, instance, init_fn, pm, \
2617 data, config, prio, api, l2, \
2618 l2_ctx_type, mtu) \
2619 Z_NET_DEVICE_INIT_INSTANCE(node_id, \
2620 Z_DEVICE_DT_DEV_ID(node_id), \
2621 DEVICE_DT_NAME(node_id), instance, \
2622 init_fn, pm, data, config, prio, \
2623 api, l2, l2_ctx_type, mtu)
2624
2634#define NET_DEVICE_DT_INST_DEFINE_INSTANCE(inst, ...) \
2635 NET_DEVICE_DT_DEFINE_INSTANCE(DT_DRV_INST(inst), __VA_ARGS__)
2636
2637#define Z_NET_DEVICE_OFFLOAD_INIT(node_id, dev_id, name, init_fn, pm, \
2638 data, config, prio, api, mtu) \
2639 Z_DEVICE_STATE_DEFINE(dev_id); \
2640 Z_DEVICE_DEFINE(node_id, dev_id, name, init_fn, pm, data, \
2641 config, POST_KERNEL, prio, api, \
2642 &Z_DEVICE_STATE_NAME(dev_id)); \
2643 NET_IF_OFFLOAD_INIT(dev_id, 0, mtu)
2644
2664#define NET_DEVICE_OFFLOAD_INIT(dev_id, name, init_fn, pm, data, \
2665 config, prio, api, mtu) \
2666 Z_NET_DEVICE_OFFLOAD_INIT(DT_INVALID_NODE, dev_id, name, \
2667 init_fn, pm, data, config, prio, api, \
2668 mtu)
2669
2688#define NET_DEVICE_DT_OFFLOAD_DEFINE(node_id, init_fn, pm, data, \
2689 config, prio, api, mtu) \
2690 Z_NET_DEVICE_OFFLOAD_INIT(node_id, Z_DEVICE_DT_DEV_ID(node_id), \
2691 DEVICE_DT_NAME(node_id), init_fn, pm, \
2692 data, config, prio, api, mtu)
2693
2703#define NET_DEVICE_DT_INST_OFFLOAD_DEFINE(inst, ...) \
2704 NET_DEVICE_DT_OFFLOAD_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
2705
2706#ifdef __cplusplus
2707}
2708#endif
2709
2710#include <syscalls/net_if.h>
2711
2716#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
net_addr_state
Definition: net_ip.h:442
net_addr_type
Definition: net_ip.h:450
net_verdict
Net Verdict.
Definition: net_core.h:97
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:2226
static bool net_if_is_admin_up(struct net_if *iface)
Check if interface was brought up by the administrator.
Definition: net_if.h:2192
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:449
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.
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:617
int net_if_down(struct net_if *iface)
Bring interface down.
void net_if_unset_promisc(struct net_if *iface)
Set network interface into normal mode.
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:1837
void net_if_ipv6_prefix_unset_timer(struct net_if_ipv6_prefix *prefix)
Unset the prefix lifetime timer.
void net_if_ipv4_maddr_leave(struct net_if_mcast_addr *addr)
Mark a given multicast address to be left.
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:2044
static void * net_if_l2_data(struct net_if *iface)
Get a pointer to the interface L2 private data.
Definition: net_if.h:686
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:2379
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:553
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:807
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:1574
static struct net_offload * net_if_offload(struct net_if *iface)
Return the IP offload plugin.
Definition: net_if.h:736
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:895
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:537
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:718
static bool net_if_is_dormant(struct net_if *iface)
Check if the interface is dormant.
Definition: net_if.h:2262
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:1191
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:928
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:2168
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:1510
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.
void net_if_ipv6_maddr_join(struct net_if_mcast_addr *addr)
Mark a given multicast address to be joined.
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:832
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_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:771
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:1482
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:1811
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:1328
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.
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:854
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:1463
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.
int net_if_set_promisc(struct net_if *iface)
Set network interface into promiscuous mode.
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:583
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:1257
bool net_if_is_promisc(struct net_if *iface)
Check if promiscuous mode is set or not.
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:913
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.
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_ipv6_maddr_leave(struct net_if_mcast_addr *addr)
Mark a given multicast address to be left.
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:1952
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:1527
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:1374
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:1546
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:213
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:1596
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:599
static struct net_if_config * net_if_config_get(struct net_if *iface)
Get network interface IP config.
Definition: net_if.h:975
static struct net_if_config * net_if_get_config(struct net_if *iface)
Return network configuration for this network interface.
Definition: net_if.h:819
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:944
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:698
void(* net_if_cb_t)(struct net_if *iface, void *user_data)
Callback used while iterating over network interfaces.
Definition: net_if.h:2141
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:754
void net_if_ipv4_maddr_join(struct net_if_mcast_addr *addr)
Mark a given multicast address to be joined.
static const struct net_l2 * net_if_l2(struct net_if *iface)
Get a pointer to the interface L2.
Definition: net_if.h:660
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:789
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:1928
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:567
@ NET_IF_OPER_TESTING
Definition: net_if.h:218
@ NET_IF_OPER_DORMANT
Definition: net_if.h:219
@ NET_IF_OPER_UP
Definition: net_if.h:220
@ NET_IF_OPER_NOTPRESENT
Definition: net_if.h:215
@ NET_IF_OPER_UNKNOWN
Definition: net_if.h:214
@ NET_IF_OPER_DOWN
Definition: net_if.h:216
@ NET_IF_OPER_LOWERLAYERDOWN
Definition: net_if.h:217
@ NET_IF_NO_AUTO_START
Definition: net_if.h:180
@ NET_IF_POINTOPOINT
Definition: net_if.h:169
@ 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 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:378
Definition: net_ip.h:139
Definition: net_ip.h:151
Definition: kernel.h:2252
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:400
Network Interface Device structure.
Definition: net_if.h:464
enum net_if_oper_state oper_state
Definition: net_if.h:500
const struct net_l2 *const l2
Definition: net_if.h:469
void * l2_data
Definition: net_if.h:472
uint16_t mtu
Definition: net_if.h:490
const struct device * dev
Definition: net_if.h:466
struct net_linkaddr link_addr
Definition: net_if.h:478
atomic_t flags[ATOMIC_BITMAP_SIZE(NET_IF_NUM_FLAGS)]
Definition: net_if.h:475
Network interface IP address configuration.
Definition: net_if.h:387
Definition: net_if.h:282
struct net_if_addr unicast[NET_IF_MAX_IPV4_ADDR]
Definition: net_if.h:284
struct in_addr netmask
Definition: net_if.h:293
struct in_addr gw
Definition: net_if.h:290
uint8_t ttl
Definition: net_if.h:296
struct net_if_mcast_addr mcast[NET_IF_MAX_IPV4_MADDR]
Definition: net_if.h:287
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:239
struct net_if_ipv6_prefix prefix[NET_IF_MAX_IPV6_PREFIX]
Definition: net_if.h:247
uint32_t base_reachable_time
Definition: net_if.h:250
uint8_t hop_limit
Definition: net_if.h:269
struct net_if_mcast_addr mcast[NET_IF_MAX_IPV6_MADDR]
Definition: net_if.h:244
uint32_t retrans_timer
Definition: net_if.h:256
struct net_if_addr unicast[NET_IF_MAX_IPV6_ADDR]
Definition: net_if.h:241
uint32_t reachable_time
Definition: net_if.h:253
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:1203
sys_snode_t node
Definition: net_if.h:1205
net_if_mcast_callback_t cb
Definition: net_if.h:1211
struct net_if * iface
Definition: net_if.h:1208
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:510
struct net_if_dev * if_dev
Definition: net_if.h:512
struct net_if_config config
Definition: net_if.h:520
Network L2 structure.
Definition: net_l2.h:54
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:432
k_thread_stack_t * stack
Definition: net_if.h:440
struct k_thread handler
Definition: net_if.h:437
struct k_fifo fifo
Definition: net_if.h:434
Definition: net_ip.h:344
static const intptr_t user_data[5]
Definition: main.c:588