Zephyr API Documentation  3.5.0
A Scalable Open Source RTOS
3.5.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
net_if.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2016 Intel Corporation.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
12#ifndef ZEPHYR_INCLUDE_NET_NET_IF_H_
13#define ZEPHYR_INCLUDE_NET_NET_IF_H_
14
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_DHCPV6) && defined(CONFIG_NET_NATIVE_IPV6)
37#include <zephyr/net/dhcpv6.h>
38#endif
39#if defined(CONFIG_NET_IPV4_AUTO) && defined(CONFIG_NET_NATIVE_IPV4)
41#endif
42
43#ifdef __cplusplus
44extern "C" {
45#endif
46
54 struct net_addr address;
55
56#if defined(CONFIG_NET_NATIVE_IPV6)
57 struct net_timeout lifetime;
58#endif
59
60#if defined(CONFIG_NET_IPV6_DAD) && defined(CONFIG_NET_NATIVE_IPV6)
62 sys_snode_t dad_node;
63 uint32_t dad_start;
64#endif
67
70
71#if defined(CONFIG_NET_IPV6_DAD) && defined(CONFIG_NET_NATIVE_IPV6)
73 uint8_t dad_count;
74#endif
75
78
81
84
85 uint8_t _unused : 5;
86};
87
95 struct net_addr address;
96
99
102
103 uint8_t _unused : 6;
104};
105
114
117
119 struct net_if *iface;
120
123
126
129
130 uint8_t _unused : 6;
131};
132
141
143 struct net_addr address;
144
146 struct net_if *iface;
147
150
153
156
159
162
163 uint8_t _unused : 5;
164};
165
170
173
176
184
187
193
196
199
202
205
208
211
214
216 /* Total number of flags - must be at the end of the enum */
217 NET_IF_NUM_FLAGS
219};
220
230} __packed;
231
232#if defined(CONFIG_NET_OFFLOAD)
233struct net_offload;
234#endif /* CONFIG_NET_OFFLOAD */
235
237#if defined(CONFIG_NET_NATIVE_IPV6)
238#define NET_IF_MAX_IPV6_ADDR CONFIG_NET_IF_UNICAST_IPV6_ADDR_COUNT
239#define NET_IF_MAX_IPV6_MADDR CONFIG_NET_IF_MCAST_IPV6_ADDR_COUNT
240#define NET_IF_MAX_IPV6_PREFIX CONFIG_NET_IF_IPV6_PREFIX_COUNT
241#else
242#define NET_IF_MAX_IPV6_ADDR 0
243#define NET_IF_MAX_IPV6_MADDR 0
244#define NET_IF_MAX_IPV6_PREFIX 0
245#endif
246/* @endcond */
247
250 struct net_if_addr unicast[NET_IF_MAX_IPV6_ADDR];
251
253 struct net_if_mcast_addr mcast[NET_IF_MAX_IPV6_MADDR];
254
256 struct net_if_ipv6_prefix prefix[NET_IF_MAX_IPV6_PREFIX];
257
260
263
266#if defined(CONFIG_NET_IPV6_ND) && defined(CONFIG_NET_NATIVE_IPV6)
268 sys_snode_t rs_node;
269
270 /* RS start time */
271 uint32_t rs_start;
272
274 uint8_t rs_count;
275#endif
276
279};
280
281#if defined(CONFIG_NET_DHCPV6) && defined(CONFIG_NET_NATIVE_IPV6)
282struct net_if_dhcpv6 {
284 sys_snode_t node;
285
287 struct net_dhcpv6_duid_storage clientid;
288
290 struct net_dhcpv6_duid_storage serverid;
291
293 enum net_dhcpv6_state state;
294
296 struct net_dhcpv6_params params;
297
299 uint64_t timeout;
300
302 uint64_t exchange_start;
303
305 uint64_t t1;
306
308 uint64_t t2;
309
313 uint64_t expire;
314
316 uint32_t addr_iaid;
317
319 uint32_t prefix_iaid;
320
322 uint32_t retransmit_timeout;
323
325 int16_t server_preference;
326
328 uint8_t retransmissions;
329
331 uint8_t tid[DHCPV6_TID_SIZE];
332
334 uint8_t prefix_len;
335
337 struct in6_addr prefix;
338
340 struct in6_addr addr;
341};
342#endif /* defined(CONFIG_NET_DHCPV6) && defined(CONFIG_NET_NATIVE_IPV6) */
343
345#if defined(CONFIG_NET_NATIVE_IPV4)
346#define NET_IF_MAX_IPV4_ADDR CONFIG_NET_IF_UNICAST_IPV4_ADDR_COUNT
347#define NET_IF_MAX_IPV4_MADDR CONFIG_NET_IF_MCAST_IPV4_ADDR_COUNT
348#else
349#define NET_IF_MAX_IPV4_ADDR 0
350#define NET_IF_MAX_IPV4_MADDR 0
351#endif
356 struct net_if_addr unicast[NET_IF_MAX_IPV4_ADDR];
357
359 struct net_if_mcast_addr mcast[NET_IF_MAX_IPV4_MADDR];
360
362 struct in_addr gw;
363
366
369};
370
371#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
372struct net_if_dhcpv4 {
374 sys_snode_t node;
375
377 int64_t timer_start;
378
380 uint32_t request_time;
381
382 uint32_t xid;
383
385 uint32_t lease_time;
386
388 uint32_t renewal_time;
389
391 uint32_t rebinding_time;
392
394 struct in_addr server_id;
395
397 struct in_addr requested_ip;
398
403 enum net_dhcpv4_state state;
404
406 uint8_t attempts;
407
409 struct in_addr request_server_addr;
410
412 struct in_addr response_src_addr;
413};
414#endif /* CONFIG_NET_DHCPV4 */
415
416#if defined(CONFIG_NET_IPV4_AUTO) && defined(CONFIG_NET_NATIVE_IPV4)
417struct net_if_ipv4_autoconf {
419 sys_snode_t node;
420
422 struct net_if *iface;
423
425 int64_t timer_start;
426
428 uint32_t timer_timeout;
429
431 struct in_addr current_ip;
432
434 struct in_addr requested_ip;
435
439
441 uint8_t probe_cnt;
442
444 uint8_t announce_cnt;
445
447 uint8_t conflict_cnt;
448};
449#endif /* CONFIG_NET_IPV4_AUTO */
450
452/* We always need to have at least one IP config */
453#define NET_IF_MAX_CONFIGS 1
459struct net_if_ip {
460#if defined(CONFIG_NET_NATIVE_IPV6)
461 struct net_if_ipv6 *ipv6;
462#endif /* CONFIG_NET_IPV6 */
463
464#if defined(CONFIG_NET_NATIVE_IPV4)
465 struct net_if_ipv4 *ipv4;
466#endif /* CONFIG_NET_IPV4 */
467};
468
473#if defined(CONFIG_NET_IP)
475 struct net_if_ip ip;
476#endif
477
478#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
479 struct net_if_dhcpv4 dhcpv4;
480#endif /* CONFIG_NET_DHCPV4 */
481
482#if defined(CONFIG_NET_DHCPV6) && defined(CONFIG_NET_NATIVE_IPV6)
483 struct net_if_dhcpv6 dhcpv6;
484#endif /* CONFIG_NET_DHCPV6 */
485
486#if defined(CONFIG_NET_IPV4_AUTO) && defined(CONFIG_NET_NATIVE_IPV4)
487 struct net_if_ipv4_autoconf ipv4auto;
488#endif /* CONFIG_NET_IPV4_AUTO */
489
490#if defined(CONFIG_NET_L2_VIRTUAL)
495 sys_slist_t virtual_interfaces;
496#endif /* CONFIG_NET_L2_VIRTUAL */
497
498#if defined(CONFIG_NET_INTERFACE_NAME)
503 char name[CONFIG_NET_INTERFACE_NAME_LEN + 1];
504#endif
505};
506
518 struct k_fifo fifo;
519
522
525};
526
533typedef int (*net_socket_create_t)(int, int, int);
534
551 const struct device *dev;
552
554 const struct net_l2 * const l2;
555
557 void *l2_data;
558
559 /* For internal use */
560 ATOMIC_DEFINE(flags, NET_IF_NUM_FLAGS);
561
564
565#if defined(CONFIG_NET_OFFLOAD)
571 struct net_offload *offload;
572#endif /* CONFIG_NET_OFFLOAD */
573
576
577#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
581 net_socket_create_t socket_offload;
582#endif /* CONFIG_NET_SOCKETS_OFFLOAD */
583
586};
587
595struct net_if {
598
599#if defined(CONFIG_NET_STATISTICS_PER_INTERFACE)
601 struct net_stats stats;
602#endif /* CONFIG_NET_STATISTICS_PER_INTERFACE */
603
606
607#if defined(CONFIG_NET_POWER_MANAGEMENT)
612 int tx_pending;
613#endif
614
615 struct k_mutex lock;
616};
617
618static inline void net_if_lock(struct net_if *iface)
619{
620 NET_ASSERT(iface);
621
622 (void)k_mutex_lock(&iface->lock, K_FOREVER);
623}
624
625static inline void net_if_unlock(struct net_if *iface)
626{
627 NET_ASSERT(iface);
628
629 k_mutex_unlock(&iface->lock);
630}
631
638static inline void net_if_flag_set(struct net_if *iface,
639 enum net_if_flag value)
640{
641 NET_ASSERT(iface);
642 NET_ASSERT(iface->if_dev);
643
644 atomic_set_bit(iface->if_dev->flags, value);
645}
646
655static inline bool net_if_flag_test_and_set(struct net_if *iface,
656 enum net_if_flag value)
657{
658 NET_ASSERT(iface);
659 NET_ASSERT(iface->if_dev);
660
661 return atomic_test_and_set_bit(iface->if_dev->flags, value);
662}
663
670static inline void net_if_flag_clear(struct net_if *iface,
671 enum net_if_flag value)
672{
673 NET_ASSERT(iface);
674 NET_ASSERT(iface->if_dev);
675
676 atomic_clear_bit(iface->if_dev->flags, value);
677}
678
687static inline bool net_if_flag_test_and_clear(struct net_if *iface,
688 enum net_if_flag value)
689{
690 NET_ASSERT(iface);
691 NET_ASSERT(iface->if_dev);
692
693 return atomic_test_and_clear_bit(iface->if_dev->flags, value);
694}
695
704static inline bool net_if_flag_is_set(struct net_if *iface,
705 enum net_if_flag value)
706{
707 NET_ASSERT(iface);
708 NET_ASSERT(iface->if_dev);
709
710 if (iface == NULL) {
711 return false;
712 }
713
714 return atomic_test_bit(iface->if_dev->flags, value);
715}
716
726 struct net_if *iface, enum net_if_oper_state oper_state)
727{
728 NET_ASSERT(iface);
729 NET_ASSERT(iface->if_dev);
730
731 if (oper_state >= NET_IF_OPER_UNKNOWN && oper_state <= NET_IF_OPER_UP) {
732 iface->if_dev->oper_state = oper_state;
733 }
734
735 return iface->if_dev->oper_state;
736}
737
745static inline enum net_if_oper_state net_if_oper_state(struct net_if *iface)
746{
747 NET_ASSERT(iface);
748 NET_ASSERT(iface->if_dev);
749
750 return iface->if_dev->oper_state;
751}
752
761enum net_verdict net_if_send_data(struct net_if *iface, struct net_pkt *pkt);
762
770static inline const struct net_l2 *net_if_l2(struct net_if *iface)
771{
772 if (!iface || !iface->if_dev) {
773 return NULL;
774 }
775
776 return iface->if_dev->l2;
777}
778
787enum net_verdict net_if_recv_data(struct net_if *iface, struct net_pkt *pkt);
788
796static inline void *net_if_l2_data(struct net_if *iface)
797{
798 NET_ASSERT(iface);
799 NET_ASSERT(iface->if_dev);
800
801 return iface->if_dev->l2_data;
802}
803
811static inline const struct device *net_if_get_device(struct net_if *iface)
812{
813 NET_ASSERT(iface);
814 NET_ASSERT(iface->if_dev);
815
816 return iface->if_dev->dev;
817}
818
825void net_if_queue_tx(struct net_if *iface, struct net_pkt *pkt);
826
834static inline bool net_if_is_ip_offloaded(struct net_if *iface)
835{
836#if defined(CONFIG_NET_OFFLOAD)
837 return (iface != NULL && iface->if_dev != NULL &&
838 iface->if_dev->offload != NULL);
839#else
840 ARG_UNUSED(iface);
841
842 return false;
843#endif
844}
845
853bool net_if_is_offloaded(struct net_if *iface);
854
862static inline struct net_offload *net_if_offload(struct net_if *iface)
863{
864#if defined(CONFIG_NET_OFFLOAD)
865 NET_ASSERT(iface);
866 NET_ASSERT(iface->if_dev);
867
868 return iface->if_dev->offload;
869#else
870 ARG_UNUSED(iface);
871
872 return NULL;
873#endif
874}
875
883static inline bool net_if_is_socket_offloaded(struct net_if *iface)
884{
885#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
886 NET_ASSERT(iface);
887 NET_ASSERT(iface->if_dev);
888
889 return (iface->if_dev->socket_offload != NULL);
890#else
891 ARG_UNUSED(iface);
892
893 return false;
894#endif
895}
896
903static inline void net_if_socket_offload_set(
904 struct net_if *iface, net_socket_create_t socket_offload)
905{
906#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
907 NET_ASSERT(iface);
908 NET_ASSERT(iface->if_dev);
909
910 iface->if_dev->socket_offload = socket_offload;
911#else
912 ARG_UNUSED(iface);
913 ARG_UNUSED(socket_offload);
914#endif
915}
916
925{
926#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
927 NET_ASSERT(iface);
928 NET_ASSERT(iface->if_dev);
929
930 return iface->if_dev->socket_offload;
931#else
932 ARG_UNUSED(iface);
933
934 return NULL;
935#endif
936}
937
945static inline struct net_linkaddr *net_if_get_link_addr(struct net_if *iface)
946{
947 NET_ASSERT(iface);
948 NET_ASSERT(iface->if_dev);
949
950 return &iface->if_dev->link_addr;
951}
952
960static inline struct net_if_config *net_if_get_config(struct net_if *iface)
961{
962 NET_ASSERT(iface);
963
964 return &iface->config;
965}
966
972#if defined(CONFIG_NET_IPV6_DAD) && defined(CONFIG_NET_NATIVE_IPV6)
973void net_if_start_dad(struct net_if *iface);
974#else
975static inline void net_if_start_dad(struct net_if *iface)
976{
977 ARG_UNUSED(iface);
978}
979#endif
980
986void net_if_start_rs(struct net_if *iface);
987
988
994#if defined(CONFIG_NET_IPV6_ND) && defined(CONFIG_NET_NATIVE_IPV6)
995void net_if_stop_rs(struct net_if *iface);
996#else
997static inline void net_if_stop_rs(struct net_if *iface)
998{
999 ARG_UNUSED(iface);
1000}
1001#endif /* CONFIG_NET_IPV6_ND */
1002
1005static inline int net_if_set_link_addr_unlocked(struct net_if *iface,
1006 uint8_t *addr, uint8_t len,
1007 enum net_link_type type)
1008{
1009 if (net_if_flag_is_set(iface, NET_IF_RUNNING)) {
1010 return -EPERM;
1011 }
1012
1013 net_if_get_link_addr(iface)->addr = addr;
1014 net_if_get_link_addr(iface)->len = len;
1015 net_if_get_link_addr(iface)->type = type;
1016
1017 net_hostname_set_postfix(addr, len);
1018
1019 return 0;
1020}
1021
1022int net_if_set_link_addr_locked(struct net_if *iface,
1023 uint8_t *addr, uint8_t len,
1024 enum net_link_type type);
1038static inline int net_if_set_link_addr(struct net_if *iface,
1039 uint8_t *addr, uint8_t len,
1040 enum net_link_type type)
1041{
1042#if defined(CONFIG_NET_RAW_MODE)
1043 return net_if_set_link_addr_unlocked(iface, addr, len, type);
1044#else
1045 return net_if_set_link_addr_locked(iface, addr, len, type);
1046#endif
1047}
1048
1056static inline uint16_t net_if_get_mtu(struct net_if *iface)
1057{
1058 if (iface == NULL) {
1059 return 0U;
1060 }
1061
1062 NET_ASSERT(iface->if_dev);
1063
1064 return iface->if_dev->mtu;
1065}
1066
1073static inline void net_if_set_mtu(struct net_if *iface,
1074 uint16_t mtu)
1075{
1076 if (iface == NULL) {
1077 return;
1078 }
1079
1080 NET_ASSERT(iface->if_dev);
1081
1082 iface->if_dev->mtu = mtu;
1083}
1084
1091static inline void net_if_addr_set_lf(struct net_if_addr *ifaddr,
1092 bool is_infinite)
1093{
1094 NET_ASSERT(ifaddr);
1095
1096 ifaddr->is_infinite = is_infinite;
1097}
1098
1107
1115struct net_if *net_if_lookup_by_dev(const struct device *dev);
1116
1124static inline struct net_if_config *net_if_config_get(struct net_if *iface)
1125{
1126 NET_ASSERT(iface);
1127
1128 return &iface->config;
1129}
1130
1136void net_if_router_rm(struct net_if_router *router);
1137
1143void net_if_set_default(struct net_if *iface);
1144
1151
1160struct net_if *net_if_get_first_by_type(const struct net_l2 *l2);
1161
1169
1170#if defined(CONFIG_NET_L2_IEEE802154)
1177static inline struct net_if *net_if_get_ieee802154(void)
1178{
1179 return net_if_get_first_by_type(&NET_L2_GET_NAME(IEEE802154));
1180}
1181#endif /* CONFIG_NET_L2_IEEE802154 */
1182
1194 struct net_if_ipv6 **ipv6);
1195
1204
1214 struct net_if **iface);
1215
1225 struct in6_addr *addr);
1226
1235__syscall int net_if_ipv6_addr_lookup_by_index(const struct in6_addr *addr);
1236
1248 struct in6_addr *addr,
1250 uint32_t vlifetime);
1251
1262__syscall bool net_if_ipv6_addr_add_by_index(int index,
1263 struct in6_addr *addr,
1265 uint32_t vlifetime);
1266
1274 uint32_t vlifetime);
1275
1284bool net_if_ipv6_addr_rm(struct net_if *iface, const struct in6_addr *addr);
1285
1294__syscall bool net_if_ipv6_addr_rm_by_index(int index,
1295 const struct in6_addr *addr);
1296
1305typedef void (*net_if_ip_addr_cb_t)(struct net_if *iface,
1306 struct net_if_addr *addr,
1307 void *user_data);
1308
1318 void *user_data);
1319
1329 const struct in6_addr *addr);
1330
1339bool net_if_ipv6_maddr_rm(struct net_if *iface, const struct in6_addr *addr);
1340
1352 struct net_if **iface);
1353
1365typedef void (*net_if_mcast_callback_t)(struct net_if *iface,
1366 const struct net_addr *addr,
1367 bool is_joined);
1368
1380
1382 struct net_if *iface;
1383
1386};
1387
1397 struct net_if *iface,
1399
1406
1414void net_if_mcast_monitor(struct net_if *iface, const struct net_addr *addr,
1415 bool is_joined);
1416
1424 struct net_if_mcast_addr *addr);
1425
1433static inline bool net_if_ipv6_maddr_is_joined(struct net_if_mcast_addr *addr)
1434{
1435 NET_ASSERT(addr);
1436
1437 return addr->is_joined;
1438}
1439
1447 struct net_if_mcast_addr *addr);
1448
1458 struct in6_addr *addr);
1459
1470 struct in6_addr *addr,
1471 uint8_t len);
1472
1484 struct in6_addr *prefix,
1485 uint8_t len,
1487
1497bool net_if_ipv6_prefix_rm(struct net_if *iface, struct in6_addr *addr,
1498 uint8_t len);
1499
1507 bool is_infinite)
1508{
1509 prefix->is_infinite = is_infinite;
1510}
1511
1520
1527
1538bool net_if_ipv6_addr_onlink(struct net_if **iface, struct in6_addr *addr);
1539
1546#if defined(CONFIG_NET_NATIVE_IPV6)
1547static inline struct in6_addr *net_if_router_ipv6(struct net_if_router *router)
1548{
1549 NET_ASSERT(router);
1550
1551 return &router->address.in6_addr;
1552}
1553#else
1554static inline struct in6_addr *net_if_router_ipv6(struct net_if_router *router)
1555{
1556 static struct in6_addr addr;
1557
1558 ARG_UNUSED(router);
1559
1560 return &addr;
1561}
1562#endif
1563
1574 struct in6_addr *addr);
1575
1586 struct in6_addr *addr);
1587
1596
1607 struct in6_addr *addr,
1608 uint16_t router_lifetime);
1609
1618
1628
1636
1644 uint32_t reachable_time)
1645{
1646#if defined(CONFIG_NET_NATIVE_IPV6)
1647 NET_ASSERT(iface);
1648
1649 if (!iface->config.ip.ipv6) {
1650 return;
1651 }
1652
1653 iface->config.ip.ipv6->base_reachable_time = reachable_time;
1654#endif
1655}
1656
1665{
1666#if defined(CONFIG_NET_NATIVE_IPV6)
1667 NET_ASSERT(iface);
1668
1669 if (!iface->config.ip.ipv6) {
1670 return 0;
1671 }
1672
1673 return iface->config.ip.ipv6->reachable_time;
1674#else
1675 return 0;
1676#endif
1677}
1678
1687
1694static inline void net_if_ipv6_set_reachable_time(struct net_if_ipv6 *ipv6)
1695{
1696#if defined(CONFIG_NET_NATIVE_IPV6)
1697 if (ipv6 == NULL) {
1698 return;
1699 }
1700
1702#endif
1703}
1704
1711static inline void net_if_ipv6_set_retrans_timer(struct net_if *iface,
1712 uint32_t retrans_timer)
1713{
1714#if defined(CONFIG_NET_NATIVE_IPV6)
1715 NET_ASSERT(iface);
1716
1717 if (!iface->config.ip.ipv6) {
1718 return;
1719 }
1720
1721 iface->config.ip.ipv6->retrans_timer = retrans_timer;
1722#endif
1723}
1724
1733{
1734#if defined(CONFIG_NET_NATIVE_IPV6)
1735 NET_ASSERT(iface);
1736
1737 if (!iface->config.ip.ipv6) {
1738 return 0;
1739 }
1740
1741 return iface->config.ip.ipv6->retrans_timer;
1742#else
1743 return 0;
1744#endif
1745}
1746
1758#if defined(CONFIG_NET_NATIVE_IPV6)
1759const struct in6_addr *net_if_ipv6_select_src_addr(struct net_if *iface,
1760 const struct in6_addr *dst);
1761#else
1762static inline const struct in6_addr *net_if_ipv6_select_src_addr(
1763 struct net_if *iface, const struct in6_addr *dst)
1764{
1765 ARG_UNUSED(iface);
1766 ARG_UNUSED(dst);
1767
1768 return NULL;
1769}
1770#endif
1771
1781#if defined(CONFIG_NET_NATIVE_IPV6)
1782struct net_if *net_if_ipv6_select_src_iface(const struct in6_addr *dst);
1783#else
1785 const struct in6_addr *dst)
1786{
1787 ARG_UNUSED(dst);
1788
1789 return NULL;
1790}
1791#endif
1792
1802struct in6_addr *net_if_ipv6_get_ll(struct net_if *iface,
1803 enum net_addr_state addr_state);
1804
1815 struct net_if **iface);
1816
1824void net_if_ipv6_dad_failed(struct net_if *iface, const struct in6_addr *addr);
1825
1838 struct net_if **iface);
1839
1851 struct net_if_ipv4 **ipv4);
1852
1861
1870
1877void net_if_ipv4_set_ttl(struct net_if *iface, uint8_t ttl);
1878
1888 struct net_if **iface);
1889
1901 struct in_addr *addr,
1903 uint32_t vlifetime);
1904
1913bool net_if_ipv4_addr_rm(struct net_if *iface, const struct in_addr *addr);
1914
1923__syscall int net_if_ipv4_addr_lookup_by_index(const struct in_addr *addr);
1924
1935__syscall bool net_if_ipv4_addr_add_by_index(int index,
1936 struct in_addr *addr,
1938 uint32_t vlifetime);
1939
1948__syscall bool net_if_ipv4_addr_rm_by_index(int index,
1949 const struct in_addr *addr);
1950
1960 void *user_data);
1961
1971 const struct in_addr *addr);
1972
1981bool net_if_ipv4_maddr_rm(struct net_if *iface, const struct in_addr *addr);
1982
1994 struct net_if **iface);
1995
2003 struct net_if_mcast_addr *addr);
2004
2012static inline bool net_if_ipv4_maddr_is_joined(struct net_if_mcast_addr *addr)
2013{
2014 NET_ASSERT(addr);
2015
2016 return addr->is_joined;
2017}
2018
2026 struct net_if_mcast_addr *addr);
2027
2034#if defined(CONFIG_NET_NATIVE_IPV4)
2035static inline struct in_addr *net_if_router_ipv4(struct net_if_router *router)
2036{
2037 NET_ASSERT(router);
2038
2039 return &router->address.in_addr;
2040}
2041#else
2042static inline struct in_addr *net_if_router_ipv4(struct net_if_router *router)
2043{
2044 static struct in_addr addr;
2045
2046 ARG_UNUSED(router);
2047
2048 return &addr;
2049}
2050#endif
2051
2062 struct in_addr *addr);
2063
2074 struct in_addr *addr);
2086 struct in_addr *addr,
2087 bool is_default,
2088 uint16_t router_lifetime);
2089
2098
2108 const struct in_addr *addr);
2109
2119 const struct in_addr *addr);
2120
2130#if defined(CONFIG_NET_NATIVE_IPV4)
2131struct net_if *net_if_ipv4_select_src_iface(const struct in_addr *dst);
2132#else
2134 const struct in_addr *dst)
2135{
2136 ARG_UNUSED(dst);
2137
2138 return NULL;
2139}
2140#endif
2141
2153#if defined(CONFIG_NET_NATIVE_IPV4)
2154const struct in_addr *net_if_ipv4_select_src_addr(struct net_if *iface,
2155 const struct in_addr *dst);
2156#else
2157static inline const struct in_addr *net_if_ipv4_select_src_addr(
2158 struct net_if *iface, const struct in_addr *dst)
2159{
2160 ARG_UNUSED(iface);
2161 ARG_UNUSED(dst);
2162
2163 return NULL;
2164}
2165#endif
2166
2176struct in_addr *net_if_ipv4_get_ll(struct net_if *iface,
2177 enum net_addr_state addr_state);
2178
2189 enum net_addr_state addr_state);
2190
2198 const struct in_addr *netmask);
2199
2208__syscall bool net_if_ipv4_set_netmask_by_index(int index,
2209 const struct in_addr *netmask);
2210
2217void net_if_ipv4_set_gw(struct net_if *iface, const struct in_addr *gw);
2218
2227__syscall bool net_if_ipv4_set_gw_by_index(int index, const struct in_addr *gw);
2228
2239struct net_if *net_if_select_src_iface(const struct sockaddr *dst);
2240
2249typedef void (*net_if_link_callback_t)(struct net_if *iface,
2250 struct net_linkaddr *dst,
2251 int status);
2252
2264
2267};
2268
2277
2284
2292void net_if_call_link_cb(struct net_if *iface, struct net_linkaddr *lladdr,
2293 int status);
2294
2305
2317
2328__syscall struct net_if *net_if_get_by_index(int index);
2329
2337int net_if_get_by_iface(struct net_if *iface);
2338
2346typedef void (*net_if_cb_t)(struct net_if *iface, void *user_data);
2347
2355void net_if_foreach(net_if_cb_t cb, void *user_data);
2356
2364int net_if_up(struct net_if *iface);
2365
2373static inline bool net_if_is_up(struct net_if *iface)
2374{
2375 NET_ASSERT(iface);
2376
2377 return net_if_flag_is_set(iface, NET_IF_UP) &&
2379}
2380
2388int net_if_down(struct net_if *iface);
2389
2397static inline bool net_if_is_admin_up(struct net_if *iface)
2398{
2399 NET_ASSERT(iface);
2400
2401 return net_if_flag_is_set(iface, NET_IF_UP);
2402}
2403
2412void net_if_carrier_on(struct net_if *iface);
2413
2422void net_if_carrier_off(struct net_if *iface);
2423
2431static inline bool net_if_is_carrier_ok(struct net_if *iface)
2432{
2433 NET_ASSERT(iface);
2434
2435 return net_if_flag_is_set(iface, NET_IF_LOWER_UP);
2436}
2437
2448void net_if_dormant_on(struct net_if *iface);
2449
2458void net_if_dormant_off(struct net_if *iface);
2459
2467static inline bool net_if_is_dormant(struct net_if *iface)
2468{
2469 NET_ASSERT(iface);
2470
2471 return net_if_flag_is_set(iface, NET_IF_DORMANT);
2472}
2473
2474#if defined(CONFIG_NET_PKT_TIMESTAMP) && defined(CONFIG_NET_NATIVE)
2482typedef void (*net_if_timestamp_callback_t)(struct net_pkt *pkt);
2483
2492struct net_if_timestamp_cb {
2494 sys_snode_t node;
2495
2499 struct net_pkt *pkt;
2500
2504 struct net_if *iface;
2505
2507 net_if_timestamp_callback_t cb;
2508};
2509
2520void net_if_register_timestamp_cb(struct net_if_timestamp_cb *handle,
2521 struct net_pkt *pkt,
2522 struct net_if *iface,
2523 net_if_timestamp_callback_t cb);
2524
2530void net_if_unregister_timestamp_cb(struct net_if_timestamp_cb *handle);
2531
2537void net_if_call_timestamp_cb(struct net_pkt *pkt);
2538
2539/*
2540 * @brief Add timestamped TX buffer to be handled
2541 *
2542 * @param pkt Timestamped buffer
2543 */
2544void net_if_add_tx_timestamp(struct net_pkt *pkt);
2545#endif /* CONFIG_NET_PKT_TIMESTAMP */
2546
2556#if defined(CONFIG_NET_PROMISCUOUS_MODE)
2557int net_if_set_promisc(struct net_if *iface);
2558#else
2559static inline int net_if_set_promisc(struct net_if *iface)
2560{
2561 ARG_UNUSED(iface);
2562
2563 return -ENOTSUP;
2564}
2565#endif
2566
2572#if defined(CONFIG_NET_PROMISCUOUS_MODE)
2573void net_if_unset_promisc(struct net_if *iface);
2574#else
2575static inline void net_if_unset_promisc(struct net_if *iface)
2576{
2577 ARG_UNUSED(iface);
2578}
2579#endif
2580
2589#if defined(CONFIG_NET_PROMISCUOUS_MODE)
2590bool net_if_is_promisc(struct net_if *iface);
2591#else
2592static inline bool net_if_is_promisc(struct net_if *iface)
2593{
2594 ARG_UNUSED(iface);
2595
2596 return false;
2597}
2598#endif
2599
2609static inline bool net_if_are_pending_tx_packets(struct net_if *iface)
2610{
2611#if defined(CONFIG_NET_POWER_MANAGEMENT)
2612 return !!iface->tx_pending;
2613#else
2614 ARG_UNUSED(iface);
2615
2616 return false;
2617#endif
2618}
2619
2620#ifdef CONFIG_NET_POWER_MANAGEMENT
2628int net_if_suspend(struct net_if *iface);
2629
2637int net_if_resume(struct net_if *iface);
2638
2646bool net_if_is_suspended(struct net_if *iface);
2647#endif /* CONFIG_NET_POWER_MANAGEMENT */
2648
2656bool net_if_is_wifi(struct net_if *iface);
2657
2664
2679int net_if_get_name(struct net_if *iface, char *buf, int len);
2680
2695int net_if_set_name(struct net_if *iface, const char *buf);
2696
2704int net_if_get_by_name(const char *name);
2705
2707struct net_if_api {
2708 void (*init)(struct net_if *iface);
2709};
2710
2711#if defined(CONFIG_NET_IP)
2712#define NET_IF_IP_INIT .ip = {},
2713#else
2714#define NET_IF_IP_INIT
2715#endif
2716
2717#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
2718#define NET_IF_DHCPV4_INIT .dhcpv4.state = NET_DHCPV4_DISABLED,
2719#else
2720#define NET_IF_DHCPV4_INIT
2721#endif
2722
2723#define NET_IF_CONFIG_INIT \
2724 .config = { \
2725 NET_IF_IP_INIT \
2726 NET_IF_DHCPV4_INIT \
2727 }
2728
2729#define NET_IF_GET_NAME(dev_id, sfx) __net_if_##dev_id##_##sfx
2730#define NET_IF_DEV_GET_NAME(dev_id, sfx) __net_if_dev_##dev_id##_##sfx
2731
2732#define NET_IF_GET(dev_id, sfx) \
2733 ((struct net_if *)&NET_IF_GET_NAME(dev_id, sfx))
2734
2735#define NET_IF_INIT(dev_id, sfx, _l2, _mtu, _num_configs) \
2736 static STRUCT_SECTION_ITERABLE(net_if_dev, \
2737 NET_IF_DEV_GET_NAME(dev_id, sfx)) = { \
2738 .dev = &(DEVICE_NAME_GET(dev_id)), \
2739 .l2 = &(NET_L2_GET_NAME(_l2)), \
2740 .l2_data = &(NET_L2_GET_DATA(dev_id, sfx)), \
2741 .mtu = _mtu, \
2742 .flags = {BIT(NET_IF_LOWER_UP)}, \
2743 }; \
2744 static Z_DECL_ALIGN(struct net_if) \
2745 NET_IF_GET_NAME(dev_id, sfx)[_num_configs] \
2746 __used __in_section(_net_if, static, \
2747 dev_id) = { \
2748 [0 ... (_num_configs - 1)] = { \
2749 .if_dev = &(NET_IF_DEV_GET_NAME(dev_id, sfx)), \
2750 NET_IF_CONFIG_INIT \
2751 } \
2752 }
2753
2754#define NET_IF_OFFLOAD_INIT(dev_id, sfx, _mtu) \
2755 static STRUCT_SECTION_ITERABLE(net_if_dev, \
2756 NET_IF_DEV_GET_NAME(dev_id, sfx)) = { \
2757 .dev = &(DEVICE_NAME_GET(dev_id)), \
2758 .mtu = _mtu, \
2759 .l2 = &(NET_L2_GET_NAME(OFFLOADED_NETDEV)), \
2760 .flags = {BIT(NET_IF_LOWER_UP)}, \
2761 }; \
2762 static Z_DECL_ALIGN(struct net_if) \
2763 NET_IF_GET_NAME(dev_id, sfx)[NET_IF_MAX_CONFIGS] \
2764 __used __in_section(_net_if, static, \
2765 dev_id) = { \
2766 [0 ... (NET_IF_MAX_CONFIGS - 1)] = { \
2767 .if_dev = &(NET_IF_DEV_GET_NAME(dev_id, sfx)), \
2768 NET_IF_CONFIG_INIT \
2769 } \
2770 }
2771
2774/* Network device initialization macros */
2775
2776#define Z_NET_DEVICE_INIT(node_id, dev_id, name, init_fn, pm, data, \
2777 config, prio, api, l2, l2_ctx_type, mtu) \
2778 Z_DEVICE_STATE_DEFINE(dev_id); \
2779 Z_DEVICE_DEFINE(node_id, dev_id, name, init_fn, pm, data, \
2780 config, POST_KERNEL, prio, api, \
2781 &Z_DEVICE_STATE_NAME(dev_id)); \
2782 NET_L2_DATA_INIT(dev_id, 0, l2_ctx_type); \
2783 NET_IF_INIT(dev_id, 0, l2, mtu, NET_IF_MAX_CONFIGS)
2784
2804#define NET_DEVICE_INIT(dev_id, name, init_fn, pm, data, config, prio, \
2805 api, l2, l2_ctx_type, mtu) \
2806 Z_NET_DEVICE_INIT(DT_INVALID_NODE, dev_id, name, init_fn, pm, \
2807 data, config, prio, api, l2, l2_ctx_type, mtu)
2808
2827#define NET_DEVICE_DT_DEFINE(node_id, init_fn, pm, data, \
2828 config, prio, api, l2, l2_ctx_type, mtu) \
2829 Z_NET_DEVICE_INIT(node_id, Z_DEVICE_DT_DEV_ID(node_id), \
2830 DEVICE_DT_NAME(node_id), init_fn, pm, data, \
2831 config, prio, api, l2, l2_ctx_type, mtu)
2832
2841#define NET_DEVICE_DT_INST_DEFINE(inst, ...) \
2842 NET_DEVICE_DT_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
2843
2844#define Z_NET_DEVICE_INIT_INSTANCE(node_id, dev_id, name, instance, \
2845 init_fn, pm, data, config, prio, \
2846 api, l2, l2_ctx_type, mtu) \
2847 Z_DEVICE_STATE_DEFINE(dev_id); \
2848 Z_DEVICE_DEFINE(node_id, dev_id, name, init_fn, pm, data, \
2849 config, POST_KERNEL, prio, api, \
2850 &Z_DEVICE_STATE_NAME(dev_id)); \
2851 NET_L2_DATA_INIT(dev_id, instance, l2_ctx_type); \
2852 NET_IF_INIT(dev_id, instance, l2, mtu, NET_IF_MAX_CONFIGS)
2853
2877#define NET_DEVICE_INIT_INSTANCE(dev_id, name, instance, init_fn, pm, \
2878 data, config, prio, api, l2, \
2879 l2_ctx_type, mtu) \
2880 Z_NET_DEVICE_INIT_INSTANCE(DT_INVALID_NODE, dev_id, name, \
2881 instance, init_fn, pm, data, config, \
2882 prio, api, l2, l2_ctx_type, mtu)
2883
2906#define NET_DEVICE_DT_DEFINE_INSTANCE(node_id, instance, init_fn, pm, \
2907 data, config, prio, api, l2, \
2908 l2_ctx_type, mtu) \
2909 Z_NET_DEVICE_INIT_INSTANCE(node_id, \
2910 Z_DEVICE_DT_DEV_ID(node_id), \
2911 DEVICE_DT_NAME(node_id), instance, \
2912 init_fn, pm, data, config, prio, \
2913 api, l2, l2_ctx_type, mtu)
2914
2924#define NET_DEVICE_DT_INST_DEFINE_INSTANCE(inst, ...) \
2925 NET_DEVICE_DT_DEFINE_INSTANCE(DT_DRV_INST(inst), __VA_ARGS__)
2926
2927#define Z_NET_DEVICE_OFFLOAD_INIT(node_id, dev_id, name, init_fn, pm, \
2928 data, config, prio, api, mtu) \
2929 Z_DEVICE_STATE_DEFINE(dev_id); \
2930 Z_DEVICE_DEFINE(node_id, dev_id, name, init_fn, pm, data, \
2931 config, POST_KERNEL, prio, api, \
2932 &Z_DEVICE_STATE_NAME(dev_id)); \
2933 NET_IF_OFFLOAD_INIT(dev_id, 0, mtu)
2934
2954#define NET_DEVICE_OFFLOAD_INIT(dev_id, name, init_fn, pm, data, \
2955 config, prio, api, mtu) \
2956 Z_NET_DEVICE_OFFLOAD_INIT(DT_INVALID_NODE, dev_id, name, \
2957 init_fn, pm, data, config, prio, api, \
2958 mtu)
2959
2978#define NET_DEVICE_DT_OFFLOAD_DEFINE(node_id, init_fn, pm, data, \
2979 config, prio, api, mtu) \
2980 Z_NET_DEVICE_OFFLOAD_INIT(node_id, Z_DEVICE_DT_DEV_ID(node_id), \
2981 DEVICE_DT_NAME(node_id), init_fn, pm, \
2982 data, config, prio, api, mtu)
2983
2993#define NET_DEVICE_DT_INST_OFFLOAD_DEFINE(inst, ...) \
2994 NET_DEVICE_DT_OFFLOAD_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
2995
2996#ifdef __cplusplus
2997}
2998#endif
2999
3000#include <syscalls/net_if.h>
3001
3006#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
DHCPv4 Client Handler.
DHCPv6 client.
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:1372
net_addr_state
What is the current state of the network address.
Definition: net_ip.h:445
net_addr_type
How the network address is assigned to network interface.
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.
int net_if_set_name(struct net_if *iface, const char *buf)
Set network interface name.
static bool net_if_is_carrier_ok(struct net_if *iface)
Check if carrier is present on network device.
Definition: net_if.h:2431
static bool net_if_is_admin_up(struct net_if *iface)
Check if interface was brought up by the administrator.
Definition: net_if.h:2397
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.
Definition: net_if.h:533
struct net_if_addr * net_if_ipv6_addr_lookup(const struct in6_addr *addr, struct net_if **iface)
Check if this IPv6 address belongs to one of the interfaces.
void net_if_ipv4_maddr_leave(struct net_if *iface, struct net_if_mcast_addr *addr)
Mark a given multicast address to be left.
int net_if_ipv6_addr_lookup_by_index(const struct in6_addr *addr)
Check if this IPv6 address belongs to one of the interface indices.
int net_if_get_by_name(const char *name)
Get interface index according to its name.
struct net_if * net_if_get_by_link_addr(struct net_linkaddr *ll_addr)
Get an interface according to link layer address.
void net_if_dormant_off(struct net_if *iface)
Mark interface as not dormant.
bool net_if_ipv6_router_rm(struct net_if_router *router)
Remove IPv6 router from the system.
bool net_if_ipv4_maddr_rm(struct net_if *iface, const struct in_addr *addr)
Remove an IPv4 multicast address from an interface.
void net_if_ipv6_dad_failed(struct net_if *iface, const struct in6_addr *addr)
Stop IPv6 Duplicate Address Detection (DAD) procedure if we find out that our IPv6 address is already...
static enum net_if_oper_state net_if_oper_state_set(struct net_if *iface, enum net_if_oper_state oper_state)
Set an operational state on an interface.
Definition: net_if.h:725
static void net_if_unlock(struct net_if *iface)
Definition: net_if.h:625
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:2042
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_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:2249
static void * net_if_l2_data(struct net_if *iface)
Get a pointer to the interface L2 private data.
Definition: net_if.h:796
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:2609
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:655
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:945
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:1762
static struct net_offload * net_if_offload(struct net_if *iface)
Return the IP offload plugin.
Definition: net_if.h:862
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:1038
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:638
uint8_t net_if_ipv6_get_hop_limit(struct net_if *iface)
Get IPv6 hop limit specified for a given interface.
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.
void net_if_ipv6_addr_foreach(struct net_if *iface, net_if_ip_addr_cb_t cb, void *user_data)
Go through all IPv6 addresses on a network interface and call callback for each used address.
int net_if_get_name(struct net_if *iface, char *buf, int len)
Get network interface name.
bool net_if_ipv6_addr_rm(struct net_if *iface, const struct in6_addr *addr)
Remove an IPv6 address from an interface.
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:834
static bool net_if_is_dormant(struct net_if *iface)
Check if the interface is dormant.
Definition: net_if.h:2467
struct net_if * net_if_get_first_wifi(void)
Get first Wi-Fi network interface.
struct net_if_addr * net_if_ipv4_addr_add(struct net_if *iface, struct in_addr *addr, enum net_addr_type addr_type, uint32_t vlifetime)
Add a IPv4 address to an interface.
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:1365
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:1073
bool net_if_need_calc_rx_checksum(struct net_if *iface)
Check if received network packet checksum calculation can be avoided or not.
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:2373
static void net_if_ipv6_set_reachable_time(struct net_if_ipv6 *ipv6)
Set IPv6 reachable time for a given interface.
Definition: net_if.h:1694
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.
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:975
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:2575
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:903
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:1664
static bool net_if_is_promisc(struct net_if *iface)
Check if promiscuous mode is set or not.
Definition: net_if.h:2592
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:2012
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:1506
struct net_if_mcast_addr * net_if_ipv4_maddr_add(struct net_if *iface, const struct in_addr *addr)
Add a IPv4 multicast address to an interface.
bool net_if_is_wifi(struct net_if *iface)
Check if the network interface supports Wi-Fi.
void net_if_register_link_cb(struct net_if_link_cb *link, net_if_link_callback_t cb)
Register a link callback.
static void net_if_lock(struct net_if *iface)
Definition: net_if.h:618
void net_if_call_link_cb(struct net_if *iface, struct net_linkaddr *lladdr, int status)
Call a link callback function.
void net_if_ipv6_router_update_lifetime(struct net_if_router *router, uint16_t lifetime)
Update validity lifetime time of a router.
void net_if_ipv4_addr_foreach(struct net_if *iface, net_if_ip_addr_cb_t cb, void *user_data)
Go through all IPv4 addresses on a network interface and call callback for each used address.
struct net_if_ipv6_prefix * net_if_ipv6_prefix_lookup(struct net_if *iface, struct in6_addr *addr, uint8_t len)
Check if this IPv6 prefix belongs to this interface.
static void net_if_stop_rs(struct net_if *iface)
Stop neighbor discovery.
Definition: net_if.h:997
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:1643
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:687
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:1433
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:1056
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:2157
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:1711
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:1554
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:1732
void(* net_if_ip_addr_cb_t)(struct net_if *iface, struct net_if_addr *addr, void *user_data)
Callback used while iterating over network interface IP addresses.
Definition: net_if.h:1305
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
Network interface operational status (RFC 2863).
Definition: net_if.h:222
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:1784
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:704
static struct net_if_config * net_if_config_get(struct net_if *iface)
Get network interface IP config.
Definition: net_if.h:1124
static struct net_if_config * net_if_get_config(struct net_if *iface)
Return network configuration for this network interface.
Definition: net_if.h:960
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:1091
net_if_flag
Network interface flags.
Definition: net_if.h:167
static const struct device * net_if_get_device(struct net_if *iface)
Get an network interface's device.
Definition: net_if.h:811
void(* net_if_cb_t)(struct net_if *iface, void *user_data)
Callback used while iterating over network interfaces.
Definition: net_if.h:2346
bool net_if_is_offloaded(struct net_if *iface)
Return offload status of a given network interface.
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:883
static int net_if_set_promisc(struct net_if *iface)
Set network interface into promiscuous mode.
Definition: net_if.h:2559
static const struct net_l2 * net_if_l2(struct net_if *iface)
Get a pointer to the interface L2.
Definition: net_if.h:770
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:924
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:2133
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:670
@ NET_IF_OPER_TESTING
Definition: net_if.h:227
@ NET_IF_OPER_DORMANT
Definition: net_if.h:228
@ NET_IF_OPER_UP
Definition: net_if.h:229
@ NET_IF_OPER_NOTPRESENT
Definition: net_if.h:224
@ NET_IF_OPER_UNKNOWN
Definition: net_if.h:223
@ NET_IF_OPER_DOWN
Definition: net_if.h:225
@ NET_IF_OPER_LOWERLAYERDOWN
Definition: net_if.h:226
@ NET_IF_NO_AUTO_START
Do not start the interface immediately after initialization.
Definition: net_if.h:183
@ NET_IF_IPV6_NO_MLD
IPv6 Multicast Listener Discovery disabled.
Definition: net_if.h:213
@ NET_IF_POINTOPOINT
Interface is pointopoint.
Definition: net_if.h:172
@ NET_IF_IPV6_NO_ND
IPv6 Neighbor Discovery disabled.
Definition: net_if.h:210
@ NET_IF_FORWARD_MULTICASTS
Flag defines if received multicasts of other interface are forwarded on this interface.
Definition: net_if.h:192
@ NET_IF_IPV4
Interface supports IPv4.
Definition: net_if.h:195
@ NET_IF_PROMISC
Interface is in promiscuous mode.
Definition: net_if.h:175
@ NET_IF_DORMANT
Driver signals dormant.
Definition: net_if.h:207
@ NET_IF_SUSPENDED
Power management specific: interface is being suspended.
Definition: net_if.h:186
@ NET_IF_IPV6
Interface supports IPv6.
Definition: net_if.h:198
@ NET_IF_UP
Interface is admin up.
Definition: net_if.h:169
@ NET_IF_LOWER_UP
Driver signals L1 is up.
Definition: net_if.h:204
@ NET_IF_RUNNING
Interface up and running (ready to receive and transmit).
Definition: net_if.h:201
net_link_type
Type of the link address.
Definition: net_linkaddr.h:47
struct _slist sys_slist_t
Single-linked list structure.
Definition: slist.h:49
struct _snode sys_snode_t
Single-linked list node structure.
Definition: slist.h:39
#define ENOTSUP
Unsupported value.
Definition: errno.h:115
#define EPERM
Not owner.
Definition: errno.h:40
Hostname configuration definitions.
IPv4 Autoconfiguration.
net_ipv4_autoconf_state
Current state of IPv4 Autoconfiguration.
Definition: ipv4_autoconf.h:15
Network core definitions.
IPv6 and IPv4 definitions.
Public API for network L2 interface.
Public API for network link address.
Network statistics.
Network timer with wrap around.
flags
Definition: parser.h:96
state
Definition: parser_state.h:29
__UINT32_TYPE__ uint32_t
Definition: stdint.h:90
__UINT64_TYPE__ uint64_t
Definition: stdint.h:91
__UINT8_TYPE__ uint8_t
Definition: stdint.h:88
__UINT16_TYPE__ uint16_t
Definition: stdint.h:89
__INT64_TYPE__ int64_t
Definition: stdint.h:75
__INT16_TYPE__ int16_t
Definition: stdint.h:73
Runtime device structure (in ROM) per driver instance.
Definition: device.h:381
IPv6 address struct.
Definition: net_ip.h:139
IPv4 address struct.
Definition: net_ip.h:151
Definition: kernel.h:2385
Mutex Structure.
Definition: kernel.h:2911
Thread Structure.
Definition: thread.h:250
DHCPv6 client configuration parameters.
Definition: dhcpv6.h:58
Network Interface unicast IP addresses.
Definition: net_if.h:52
struct net_addr address
IP address.
Definition: net_if.h:54
uint8_t is_mesh_local
Is this IP address usage limited to the subnet (mesh) or not.
Definition: net_if.h:83
enum net_addr_state addr_state
What is the current state of the address.
Definition: net_if.h:69
uint8_t is_infinite
Is the IP address valid forever.
Definition: net_if.h:77
enum net_addr_type addr_type
How the IP address was set.
Definition: net_if.h:66
uint8_t is_used
Is this IP address used or not.
Definition: net_if.h:80
IP and other configuration related data for network interface.
Definition: net_if.h:472
Network Interface Device structure.
Definition: net_if.h:549
enum net_if_oper_state oper_state
RFC 2863 operational status.
Definition: net_if.h:585
const struct net_l2 *const l2
Interface's L2 layer.
Definition: net_if.h:554
void * l2_data
Interface's private L2 data pointer.
Definition: net_if.h:557
uint16_t mtu
The hardware MTU.
Definition: net_if.h:575
const struct device * dev
The actually device driver instance the net_if is related to.
Definition: net_if.h:551
struct net_linkaddr link_addr
The hardware link address.
Definition: net_if.h:563
atomic_t flags[ATOMIC_BITMAP_SIZE(NET_IF_NUM_FLAGS)]
Definition: net_if.h:560
Network interface IP address configuration.
Definition: net_if.h:459
Definition: net_if.h:354
struct net_if_addr unicast[NET_IF_MAX_IPV4_ADDR]
Unicast IP addresses.
Definition: net_if.h:356
struct in_addr netmask
Netmask.
Definition: net_if.h:365
struct in_addr gw
Gateway.
Definition: net_if.h:362
uint8_t ttl
IPv4 time-to-live.
Definition: net_if.h:368
struct net_if_mcast_addr mcast[NET_IF_MAX_IPV4_MADDR]
Multicast IP addresses.
Definition: net_if.h:359
Network Interface IPv6 prefixes.
Definition: net_if.h:111
struct net_if * iface
Backpointer to network interface where this prefix is used.
Definition: net_if.h:119
uint8_t is_infinite
Is the IP prefix valid forever.
Definition: net_if.h:125
uint8_t len
Prefix length.
Definition: net_if.h:122
struct in6_addr prefix
IPv6 prefix.
Definition: net_if.h:116
uint8_t is_used
Is this prefix used or not.
Definition: net_if.h:128
struct net_timeout lifetime
Prefix lifetime.
Definition: net_if.h:113
Definition: net_if.h:248
struct net_if_ipv6_prefix prefix[NET_IF_MAX_IPV6_PREFIX]
Prefixes.
Definition: net_if.h:256
uint32_t base_reachable_time
Default reachable time (RFC 4861, page 52)
Definition: net_if.h:259
uint8_t hop_limit
IPv6 hop limit.
Definition: net_if.h:278
struct net_if_mcast_addr mcast[NET_IF_MAX_IPV6_MADDR]
Multicast IP addresses.
Definition: net_if.h:253
uint32_t retrans_timer
Retransmit timer (RFC 4861, page 52)
Definition: net_if.h:265
struct net_if_addr unicast[NET_IF_MAX_IPV6_ADDR]
Unicast IP addresses.
Definition: net_if.h:250
uint32_t reachable_time
Reachable time (RFC 4861, page 20)
Definition: net_if.h:262
Network Interface multicast IP addresses.
Definition: net_if.h:93
struct net_addr address
IP address.
Definition: net_if.h:95
uint8_t is_joined
Did we join to this group.
Definition: net_if.h:101
uint8_t is_used
Is this multicast IP address used or not.
Definition: net_if.h:98
Multicast monitor handler struct.
Definition: net_if.h:1377
sys_snode_t node
Node information for the slist.
Definition: net_if.h:1379
net_if_mcast_callback_t cb
Multicast callback.
Definition: net_if.h:1385
struct net_if * iface
Network interface.
Definition: net_if.h:1382
Information about routers in the system.
Definition: net_if.h:138
struct net_if * iface
Network interface the router is connected to.
Definition: net_if.h:146
uint8_t is_default
Is default router.
Definition: net_if.h:158
uint16_t lifetime
Router lifetime.
Definition: net_if.h:152
uint8_t is_infinite
Is the router valid forever.
Definition: net_if.h:161
uint8_t is_used
Is this router used or not.
Definition: net_if.h:155
struct net_addr address
IP address.
Definition: net_if.h:143
sys_snode_t node
Slist lifetime timer node.
Definition: net_if.h:140
uint32_t life_start
Router life timer start.
Definition: net_if.h:149
Network Interface structure.
Definition: net_if.h:595
struct net_if_dev * if_dev
The net_if_dev instance the net_if is related to.
Definition: net_if.h:597
struct net_if_config config
Network interface instance configuration.
Definition: net_if.h:605
struct k_mutex lock
Definition: net_if.h:615
Network L2 structure.
Definition: net_l2.h:55
Hardware link address structure.
Definition: net_linkaddr.h:67
uint8_t * addr
The array of byte representing the address.
Definition: net_linkaddr.h:69
uint8_t type
What kind of address is this for.
Definition: net_linkaddr.h:75
uint8_t len
Length of that address array.
Definition: net_linkaddr.h:72
Network packet.
Definition: net_pkt.h:63
All network statistics in one struct.
Definition: net_stats.h:292
Generic struct for handling network timeouts.
Definition: net_timeout.h:55
Network traffic class.
Definition: net_if.h:516
k_thread_stack_t * stack
Stack for this handler.
Definition: net_if.h:524
struct k_thread handler
Traffic class handler thread.
Definition: net_if.h:521
struct k_fifo fifo
Fifo for handling this Tx or Rx packet.
Definition: net_if.h:518
Generic sockaddr struct.
Definition: net_ip.h:347