Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef _LINUX_INETDEVICE_H |
| 3 | #define _LINUX_INETDEVICE_H |
| 4 | |
| 5 | #ifdef __KERNEL__ |
| 6 | |
Herbert Xu | 31be308 | 2007-06-04 23:35:37 -0700 | [diff] [blame] | 7 | #include <linux/bitmap.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <linux/if.h> |
stephen hemminger | 4a5a8aa | 2013-08-21 21:09:47 -0700 | [diff] [blame] | 9 | #include <linux/ip.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/netdevice.h> |
| 11 | #include <linux/rcupdate.h> |
| 12 | #include <linux/timer.h> |
Satyam Sharma | 8bfe6d6 | 2007-06-22 17:04:27 -0700 | [diff] [blame] | 13 | #include <linux/sysctl.h> |
Eric Dumazet | 95ae6b2 | 2010-09-15 04:04:31 +0000 | [diff] [blame] | 14 | #include <linux/rtnetlink.h> |
Reshetova, Elena | 7658b36 | 2017-06-30 13:08:03 +0300 | [diff] [blame] | 15 | #include <linux/refcount.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
Eric Dumazet | d94d9fe | 2009-11-04 09:50:58 -0800 | [diff] [blame] | 17 | struct ipv4_devconf { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | void *sysctl; |
Thomas Graf | ca7479e | 2010-11-16 04:31:20 +0000 | [diff] [blame] | 19 | int data[IPV4_DEVCONF_MAX]; |
| 20 | DECLARE_BITMAP(state, IPV4_DEVCONF_MAX); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | }; |
| 22 | |
Eric Dumazet | e989707 | 2013-06-07 08:48:57 -0700 | [diff] [blame] | 23 | #define MC_HASH_SZ_LOG 9 |
| 24 | |
Eric Dumazet | d94d9fe | 2009-11-04 09:50:58 -0800 | [diff] [blame] | 25 | struct in_device { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | struct net_device *dev; |
Reshetova, Elena | 7658b36 | 2017-06-30 13:08:03 +0300 | [diff] [blame] | 27 | refcount_t refcnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | int dead; |
Florian Westphal | 2638eb8b | 2019-05-31 18:27:09 +0200 | [diff] [blame] | 29 | struct in_ifaddr __rcu *ifa_list;/* IP ifaddr chain */ |
Eric Dumazet | e989707 | 2013-06-07 08:48:57 -0700 | [diff] [blame] | 30 | |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 31 | struct ip_mc_list __rcu *mc_list; /* IP multicast filter chain */ |
Eric Dumazet | e989707 | 2013-06-07 08:48:57 -0700 | [diff] [blame] | 32 | struct ip_mc_list __rcu * __rcu *mc_hash; |
| 33 | |
Eric Dumazet | 1d7138d | 2010-11-12 05:46:50 +0000 | [diff] [blame] | 34 | int mc_count; /* Number of installed mcasts */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | spinlock_t mc_tomb_lock; |
| 36 | struct ip_mc_list *mc_tomb; |
| 37 | unsigned long mr_v1_seen; |
| 38 | unsigned long mr_v2_seen; |
| 39 | unsigned long mr_maxdelay; |
Hangbin Liu | 966c37f | 2018-10-26 11:30:35 +0800 | [diff] [blame] | 40 | unsigned long mr_qi; /* Query Interval */ |
| 41 | unsigned long mr_qri; /* Query Response Interval */ |
| 42 | unsigned char mr_qrv; /* Query Robustness Variable */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | unsigned char mr_gq_running; |
| 44 | unsigned char mr_ifc_count; |
| 45 | struct timer_list mr_gq_timer; /* general query timer */ |
| 46 | struct timer_list mr_ifc_timer; /* interface change timer */ |
| 47 | |
| 48 | struct neigh_parms *arp_parms; |
| 49 | struct ipv4_devconf cnf; |
| 50 | struct rcu_head rcu_head; |
| 51 | }; |
| 52 | |
Eric W. Biederman | 0229168 | 2010-02-14 03:25:51 +0000 | [diff] [blame] | 53 | #define IPV4_DEVCONF(cnf, attr) ((cnf).data[IPV4_DEVCONF_ ## attr - 1]) |
Pavel Emelyanov | 586f121 | 2007-12-16 13:32:48 -0800 | [diff] [blame] | 54 | #define IPV4_DEVCONF_ALL(net, attr) \ |
| 55 | IPV4_DEVCONF((*(net)->ipv4.devconf_all), attr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Herbert Xu | 42f811b | 2007-06-04 23:34:44 -0700 | [diff] [blame] | 57 | static inline int ipv4_devconf_get(struct in_device *in_dev, int index) |
| 58 | { |
| 59 | index--; |
| 60 | return in_dev->cnf.data[index]; |
| 61 | } |
| 62 | |
| 63 | static inline void ipv4_devconf_set(struct in_device *in_dev, int index, |
| 64 | int val) |
| 65 | { |
| 66 | index--; |
Herbert Xu | 31be308 | 2007-06-04 23:35:37 -0700 | [diff] [blame] | 67 | set_bit(index, in_dev->cnf.state); |
Herbert Xu | 42f811b | 2007-06-04 23:34:44 -0700 | [diff] [blame] | 68 | in_dev->cnf.data[index] = val; |
| 69 | } |
| 70 | |
Herbert Xu | 71e27da | 2007-06-04 23:36:06 -0700 | [diff] [blame] | 71 | static inline void ipv4_devconf_setall(struct in_device *in_dev) |
| 72 | { |
Thomas Graf | ca7479e | 2010-11-16 04:31:20 +0000 | [diff] [blame] | 73 | bitmap_fill(in_dev->cnf.state, IPV4_DEVCONF_MAX); |
Herbert Xu | 71e27da | 2007-06-04 23:36:06 -0700 | [diff] [blame] | 74 | } |
| 75 | |
Herbert Xu | 42f811b | 2007-06-04 23:34:44 -0700 | [diff] [blame] | 76 | #define IN_DEV_CONF_GET(in_dev, attr) \ |
Eric W. Biederman | 0229168 | 2010-02-14 03:25:51 +0000 | [diff] [blame] | 77 | ipv4_devconf_get((in_dev), IPV4_DEVCONF_ ## attr) |
Herbert Xu | 42f811b | 2007-06-04 23:34:44 -0700 | [diff] [blame] | 78 | #define IN_DEV_CONF_SET(in_dev, attr, val) \ |
Eric W. Biederman | 0229168 | 2010-02-14 03:25:51 +0000 | [diff] [blame] | 79 | ipv4_devconf_set((in_dev), IPV4_DEVCONF_ ## attr, (val)) |
Herbert Xu | 42f811b | 2007-06-04 23:34:44 -0700 | [diff] [blame] | 80 | |
| 81 | #define IN_DEV_ANDCONF(in_dev, attr) \ |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 82 | (IPV4_DEVCONF_ALL(dev_net(in_dev->dev), attr) && \ |
Pavel Emelyanov | 586f121 | 2007-12-16 13:32:48 -0800 | [diff] [blame] | 83 | IN_DEV_CONF_GET((in_dev), attr)) |
Eric Dumazet | 9eb43e7 | 2012-08-03 21:27:25 +0000 | [diff] [blame] | 84 | |
| 85 | #define IN_DEV_NET_ORCONF(in_dev, net, attr) \ |
| 86 | (IPV4_DEVCONF_ALL(net, attr) || \ |
Pavel Emelyanov | 586f121 | 2007-12-16 13:32:48 -0800 | [diff] [blame] | 87 | IN_DEV_CONF_GET((in_dev), attr)) |
Eric Dumazet | 9eb43e7 | 2012-08-03 21:27:25 +0000 | [diff] [blame] | 88 | |
| 89 | #define IN_DEV_ORCONF(in_dev, attr) \ |
| 90 | IN_DEV_NET_ORCONF(in_dev, dev_net(in_dev->dev), attr) |
| 91 | |
Herbert Xu | 42f811b | 2007-06-04 23:34:44 -0700 | [diff] [blame] | 92 | #define IN_DEV_MAXCONF(in_dev, attr) \ |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 93 | (max(IPV4_DEVCONF_ALL(dev_net(in_dev->dev), attr), \ |
Pavel Emelyanov | 586f121 | 2007-12-16 13:32:48 -0800 | [diff] [blame] | 94 | IN_DEV_CONF_GET((in_dev), attr))) |
Herbert Xu | 42f811b | 2007-06-04 23:34:44 -0700 | [diff] [blame] | 95 | |
| 96 | #define IN_DEV_FORWARD(in_dev) IN_DEV_CONF_GET((in_dev), FORWARDING) |
Pavel Emelyanov | 01ecfe9 | 2007-12-11 02:16:47 -0800 | [diff] [blame] | 97 | #define IN_DEV_MFORWARD(in_dev) IN_DEV_ANDCONF((in_dev), MC_FORWARDING) |
Xin Long | 5cbf777 | 2018-07-27 16:37:28 +0800 | [diff] [blame] | 98 | #define IN_DEV_BFORWARD(in_dev) IN_DEV_ANDCONF((in_dev), BC_FORWARDING) |
Stephen Hemminger | 27fed41 | 2009-07-27 18:39:45 -0700 | [diff] [blame] | 99 | #define IN_DEV_RPFILTER(in_dev) IN_DEV_MAXCONF((in_dev), RP_FILTER) |
Jamal Hadi Salim | 28f6aee | 2009-12-25 17:30:22 -0800 | [diff] [blame] | 100 | #define IN_DEV_SRC_VMARK(in_dev) IN_DEV_ORCONF((in_dev), SRC_VMARK) |
Herbert Xu | 42f811b | 2007-06-04 23:34:44 -0700 | [diff] [blame] | 101 | #define IN_DEV_SOURCE_ROUTE(in_dev) IN_DEV_ANDCONF((in_dev), \ |
| 102 | ACCEPT_SOURCE_ROUTE) |
Patrick McHardy | 8153a10 | 2009-12-03 01:25:58 +0000 | [diff] [blame] | 103 | #define IN_DEV_ACCEPT_LOCAL(in_dev) IN_DEV_ORCONF((in_dev), ACCEPT_LOCAL) |
Herbert Xu | 42f811b | 2007-06-04 23:34:44 -0700 | [diff] [blame] | 104 | #define IN_DEV_BOOTP_RELAY(in_dev) IN_DEV_ANDCONF((in_dev), BOOTP_RELAY) |
| 105 | |
| 106 | #define IN_DEV_LOG_MARTIANS(in_dev) IN_DEV_ORCONF((in_dev), LOG_MARTIANS) |
| 107 | #define IN_DEV_PROXY_ARP(in_dev) IN_DEV_ORCONF((in_dev), PROXY_ARP) |
Jesper Dangaard Brouer | 6532414 | 2010-01-05 05:50:47 +0000 | [diff] [blame] | 108 | #define IN_DEV_PROXY_ARP_PVLAN(in_dev) IN_DEV_CONF_GET(in_dev, PROXY_ARP_PVLAN) |
Herbert Xu | 42f811b | 2007-06-04 23:34:44 -0700 | [diff] [blame] | 109 | #define IN_DEV_SHARED_MEDIA(in_dev) IN_DEV_ORCONF((in_dev), SHARED_MEDIA) |
| 110 | #define IN_DEV_TX_REDIRECTS(in_dev) IN_DEV_ORCONF((in_dev), SEND_REDIRECTS) |
| 111 | #define IN_DEV_SEC_REDIRECTS(in_dev) IN_DEV_ORCONF((in_dev), \ |
| 112 | SECURE_REDIRECTS) |
| 113 | #define IN_DEV_IDTAG(in_dev) IN_DEV_CONF_GET(in_dev, TAG) |
| 114 | #define IN_DEV_MEDIUM_ID(in_dev) IN_DEV_CONF_GET(in_dev, MEDIUM_ID) |
| 115 | #define IN_DEV_PROMOTE_SECONDARIES(in_dev) \ |
| 116 | IN_DEV_ORCONF((in_dev), \ |
| 117 | PROMOTE_SECONDARIES) |
Thomas Graf | d0daebc3 | 2012-06-12 00:44:01 +0000 | [diff] [blame] | 118 | #define IN_DEV_ROUTE_LOCALNET(in_dev) IN_DEV_ORCONF(in_dev, ROUTE_LOCALNET) |
Eric Dumazet | 9eb43e7 | 2012-08-03 21:27:25 +0000 | [diff] [blame] | 119 | #define IN_DEV_NET_ROUTE_LOCALNET(in_dev, net) \ |
| 120 | IN_DEV_NET_ORCONF(in_dev, net, ROUTE_LOCALNET) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | |
| 122 | #define IN_DEV_RX_REDIRECTS(in_dev) \ |
| 123 | ((IN_DEV_FORWARD(in_dev) && \ |
Herbert Xu | 42f811b | 2007-06-04 23:34:44 -0700 | [diff] [blame] | 124 | IN_DEV_ANDCONF((in_dev), ACCEPT_REDIRECTS)) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | || (!IN_DEV_FORWARD(in_dev) && \ |
Herbert Xu | 42f811b | 2007-06-04 23:34:44 -0700 | [diff] [blame] | 126 | IN_DEV_ORCONF((in_dev), ACCEPT_REDIRECTS))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
Andy Gospodarek | 0eeb075 | 2015-06-23 13:45:37 -0400 | [diff] [blame] | 128 | #define IN_DEV_IGNORE_ROUTES_WITH_LINKDOWN(in_dev) \ |
| 129 | IN_DEV_CONF_GET((in_dev), IGNORE_ROUTES_WITH_LINKDOWN) |
| 130 | |
Herbert Xu | 42f811b | 2007-06-04 23:34:44 -0700 | [diff] [blame] | 131 | #define IN_DEV_ARPFILTER(in_dev) IN_DEV_ORCONF((in_dev), ARPFILTER) |
Neil Horman | 124d37e | 2012-03-15 05:25:58 +0000 | [diff] [blame] | 132 | #define IN_DEV_ARP_ACCEPT(in_dev) IN_DEV_ORCONF((in_dev), ARP_ACCEPT) |
Herbert Xu | 42f811b | 2007-06-04 23:34:44 -0700 | [diff] [blame] | 133 | #define IN_DEV_ARP_ANNOUNCE(in_dev) IN_DEV_MAXCONF((in_dev), ARP_ANNOUNCE) |
| 134 | #define IN_DEV_ARP_IGNORE(in_dev) IN_DEV_MAXCONF((in_dev), ARP_IGNORE) |
Stephen Hemminger | eefef1c | 2009-02-01 01:04:33 -0800 | [diff] [blame] | 135 | #define IN_DEV_ARP_NOTIFY(in_dev) IN_DEV_MAXCONF((in_dev), ARP_NOTIFY) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | |
Eric Dumazet | d94d9fe | 2009-11-04 09:50:58 -0800 | [diff] [blame] | 137 | struct in_ifaddr { |
David S. Miller | fd23c3b | 2011-02-18 12:42:28 -0800 | [diff] [blame] | 138 | struct hlist_node hash; |
Florian Westphal | 2638eb8b | 2019-05-31 18:27:09 +0200 | [diff] [blame] | 139 | struct in_ifaddr __rcu *ifa_next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | struct in_device *ifa_dev; |
| 141 | struct rcu_head rcu_head; |
Al Viro | a144ea4 | 2006-09-28 18:00:55 -0700 | [diff] [blame] | 142 | __be32 ifa_local; |
| 143 | __be32 ifa_address; |
| 144 | __be32 ifa_mask; |
David Ahern | af4d768 | 2018-05-27 08:09:57 -0700 | [diff] [blame] | 145 | __u32 ifa_rt_priority; |
Al Viro | a144ea4 | 2006-09-28 18:00:55 -0700 | [diff] [blame] | 146 | __be32 ifa_broadcast; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | unsigned char ifa_scope; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | unsigned char ifa_prefixlen; |
Jiri Pirko | ad6c813 | 2013-12-08 12:16:10 +0100 | [diff] [blame] | 149 | __u32 ifa_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | char ifa_label[IFNAMSIZ]; |
Jiri Pirko | 5c766d6 | 2013-01-24 09:41:41 +0000 | [diff] [blame] | 151 | |
| 152 | /* In seconds, relative to tstamp. Expiry is at tstamp + HZ * lft. */ |
| 153 | __u32 ifa_valid_lft; |
| 154 | __u32 ifa_preferred_lft; |
| 155 | unsigned long ifa_cstamp; /* created timestamp */ |
| 156 | unsigned long ifa_tstamp; /* updated timestamp */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | }; |
| 158 | |
Krister Johansen | 3ad7d24 | 2017-06-08 13:12:14 -0700 | [diff] [blame] | 159 | struct in_validator_info { |
| 160 | __be32 ivi_addr; |
| 161 | struct in_device *ivi_dev; |
David Ahern | de95e04 | 2017-10-18 09:56:54 -0700 | [diff] [blame] | 162 | struct netlink_ext_ack *extack; |
Krister Johansen | 3ad7d24 | 2017-06-08 13:12:14 -0700 | [diff] [blame] | 163 | }; |
| 164 | |
Joe Perches | f629d20 | 2013-09-26 14:48:15 -0700 | [diff] [blame] | 165 | int register_inetaddr_notifier(struct notifier_block *nb); |
| 166 | int unregister_inetaddr_notifier(struct notifier_block *nb); |
Krister Johansen | 3ad7d24 | 2017-06-08 13:12:14 -0700 | [diff] [blame] | 167 | int register_inetaddr_validator_notifier(struct notifier_block *nb); |
| 168 | int unregister_inetaddr_validator_notifier(struct notifier_block *nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | |
David Ahern | 3b02286 | 2017-03-28 14:28:02 -0700 | [diff] [blame] | 170 | void inet_netconf_notify_devconf(struct net *net, int event, int type, |
| 171 | int ifindex, struct ipv4_devconf *devconf); |
Nicolas Dichtel | d67b8c6 | 2012-12-04 01:13:35 +0000 | [diff] [blame] | 172 | |
Joe Perches | f629d20 | 2013-09-26 14:48:15 -0700 | [diff] [blame] | 173 | struct net_device *__ip_dev_find(struct net *net, __be32 addr, bool devref); |
Eric Dumazet | 82efee1 | 2010-09-30 03:31:56 +0000 | [diff] [blame] | 174 | static inline struct net_device *ip_dev_find(struct net *net, __be32 addr) |
| 175 | { |
| 176 | return __ip_dev_find(net, addr, true); |
| 177 | } |
| 178 | |
Joe Perches | f629d20 | 2013-09-26 14:48:15 -0700 | [diff] [blame] | 179 | int inet_addr_onlink(struct in_device *in_dev, __be32 a, __be32 b); |
Al Viro | 03aef17 | 2017-07-01 07:53:12 -0400 | [diff] [blame] | 180 | int devinet_ioctl(struct net *net, unsigned int cmd, struct ifreq *); |
Joe Perches | f629d20 | 2013-09-26 14:48:15 -0700 | [diff] [blame] | 181 | void devinet_init(void); |
| 182 | struct in_device *inetdev_by_index(struct net *, int); |
| 183 | __be32 inet_select_addr(const struct net_device *dev, __be32 dst, int scope); |
Nicolas Dichtel | b601fa19 | 2013-12-10 15:02:40 +0100 | [diff] [blame] | 184 | __be32 inet_confirm_addr(struct net *net, struct in_device *in_dev, __be32 dst, |
| 185 | __be32 local, int scope); |
Joe Perches | f629d20 | 2013-09-26 14:48:15 -0700 | [diff] [blame] | 186 | struct in_ifaddr *inet_ifa_byprefix(struct in_device *in_dev, __be32 prefix, |
| 187 | __be32 mask); |
Paolo Abeni | 6e617de | 2017-09-20 18:26:53 +0200 | [diff] [blame] | 188 | struct in_ifaddr *inet_lookup_ifaddr_rcu(struct net *net, __be32 addr); |
Florian Westphal | ef11db3 | 2019-05-31 18:27:04 +0200 | [diff] [blame] | 189 | static inline bool inet_ifa_match(__be32 addr, const struct in_ifaddr *ifa) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | { |
| 191 | return !((addr^ifa->ifa_address)&ifa->ifa_mask); |
| 192 | } |
| 193 | |
| 194 | /* |
| 195 | * Check if a mask is acceptable. |
| 196 | */ |
| 197 | |
Yaowei Bai | f06cc7b | 2015-10-08 21:29:01 +0800 | [diff] [blame] | 198 | static __inline__ bool bad_mask(__be32 mask, __be32 addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | { |
Al Viro | 714e85b | 2006-11-14 20:51:49 -0800 | [diff] [blame] | 200 | __u32 hmask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | if (addr & (mask = ~mask)) |
Yaowei Bai | f06cc7b | 2015-10-08 21:29:01 +0800 | [diff] [blame] | 202 | return true; |
Al Viro | 714e85b | 2006-11-14 20:51:49 -0800 | [diff] [blame] | 203 | hmask = ntohl(mask); |
| 204 | if (hmask & (hmask+1)) |
Yaowei Bai | f06cc7b | 2015-10-08 21:29:01 +0800 | [diff] [blame] | 205 | return true; |
| 206 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | } |
| 208 | |
Florian Westphal | ef11db3 | 2019-05-31 18:27:04 +0200 | [diff] [blame] | 209 | #define in_dev_for_each_ifa_rtnl(ifa, in_dev) \ |
Florian Westphal | 2638eb8b | 2019-05-31 18:27:09 +0200 | [diff] [blame] | 210 | for (ifa = rtnl_dereference((in_dev)->ifa_list); ifa; \ |
| 211 | ifa = rtnl_dereference(ifa->ifa_next)) |
Florian Westphal | ef11db3 | 2019-05-31 18:27:04 +0200 | [diff] [blame] | 212 | |
| 213 | #define in_dev_for_each_ifa_rcu(ifa, in_dev) \ |
Florian Westphal | 2638eb8b | 2019-05-31 18:27:09 +0200 | [diff] [blame] | 214 | for (ifa = rcu_dereference((in_dev)->ifa_list); ifa; \ |
| 215 | ifa = rcu_dereference(ifa->ifa_next)) |
Florian Westphal | ef11db3 | 2019-05-31 18:27:04 +0200 | [diff] [blame] | 216 | |
Herbert Xu | e5ed639 | 2005-10-03 14:35:55 -0700 | [diff] [blame] | 217 | static inline struct in_device *__in_dev_get_rcu(const struct net_device *dev) |
| 218 | { |
Eric Dumazet | 95ae6b2 | 2010-09-15 04:04:31 +0000 | [diff] [blame] | 219 | return rcu_dereference(dev->ip_ptr); |
Herbert Xu | e5ed639 | 2005-10-03 14:35:55 -0700 | [diff] [blame] | 220 | } |
| 221 | |
Eric Dumazet | 95ae6b2 | 2010-09-15 04:04:31 +0000 | [diff] [blame] | 222 | static inline struct in_device *in_dev_get(const struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | { |
| 224 | struct in_device *in_dev; |
| 225 | |
| 226 | rcu_read_lock(); |
Herbert Xu | e5ed639 | 2005-10-03 14:35:55 -0700 | [diff] [blame] | 227 | in_dev = __in_dev_get_rcu(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | if (in_dev) |
Reshetova, Elena | 7658b36 | 2017-06-30 13:08:03 +0300 | [diff] [blame] | 229 | refcount_inc(&in_dev->refcnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | rcu_read_unlock(); |
| 231 | return in_dev; |
| 232 | } |
| 233 | |
Eric Dumazet | 95ae6b2 | 2010-09-15 04:04:31 +0000 | [diff] [blame] | 234 | static inline struct in_device *__in_dev_get_rtnl(const struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | { |
Eric Dumazet | 06a9701 | 2010-12-01 01:37:42 +0000 | [diff] [blame] | 236 | return rtnl_dereference(dev->ip_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | } |
| 238 | |
David Ahern | 331c7a4 | 2019-03-27 20:53:47 -0700 | [diff] [blame] | 239 | /* called with rcu_read_lock or rtnl held */ |
| 240 | static inline bool ip_ignore_linkdown(const struct net_device *dev) |
| 241 | { |
| 242 | struct in_device *in_dev; |
| 243 | bool rc = false; |
| 244 | |
| 245 | in_dev = rcu_dereference_rtnl(dev->ip_ptr); |
| 246 | if (in_dev && |
| 247 | IN_DEV_IGNORE_ROUTES_WITH_LINKDOWN(in_dev)) |
| 248 | rc = true; |
| 249 | |
| 250 | return rc; |
| 251 | } |
| 252 | |
Jiri Pirko | 1d4c8c2 | 2013-12-07 19:26:56 +0100 | [diff] [blame] | 253 | static inline struct neigh_parms *__in_dev_arp_parms_get_rcu(const struct net_device *dev) |
| 254 | { |
| 255 | struct in_device *in_dev = __in_dev_get_rcu(dev); |
| 256 | |
| 257 | return in_dev ? in_dev->arp_parms : NULL; |
| 258 | } |
| 259 | |
Joe Perches | f629d20 | 2013-09-26 14:48:15 -0700 | [diff] [blame] | 260 | void in_dev_finish_destroy(struct in_device *idev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | |
| 262 | static inline void in_dev_put(struct in_device *idev) |
| 263 | { |
Reshetova, Elena | 7658b36 | 2017-06-30 13:08:03 +0300 | [diff] [blame] | 264 | if (refcount_dec_and_test(&idev->refcnt)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | in_dev_finish_destroy(idev); |
| 266 | } |
| 267 | |
Reshetova, Elena | 7658b36 | 2017-06-30 13:08:03 +0300 | [diff] [blame] | 268 | #define __in_dev_put(idev) refcount_dec(&(idev)->refcnt) |
| 269 | #define in_dev_hold(idev) refcount_inc(&(idev)->refcnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | |
| 271 | #endif /* __KERNEL__ */ |
| 272 | |
Al Viro | 60cad5d | 2006-09-26 22:17:09 -0700 | [diff] [blame] | 273 | static __inline__ __be32 inet_make_mask(int logmask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | { |
| 275 | if (logmask) |
Vincent BENAYOUN | 84bc886 | 2014-11-13 13:47:26 +0100 | [diff] [blame] | 276 | return htonl(~((1U<<(32-logmask))-1)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | return 0; |
| 278 | } |
| 279 | |
Al Viro | 714e85b | 2006-11-14 20:51:49 -0800 | [diff] [blame] | 280 | static __inline__ int inet_mask_len(__be32 mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | { |
Al Viro | 714e85b | 2006-11-14 20:51:49 -0800 | [diff] [blame] | 282 | __u32 hmask = ntohl(mask); |
| 283 | if (!hmask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | return 0; |
Al Viro | 714e85b | 2006-11-14 20:51:49 -0800 | [diff] [blame] | 285 | return 32 - ffz(~hmask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | } |
| 287 | |
| 288 | |
| 289 | #endif /* _LINUX_INETDEVICE_H */ |