blob: e16fe7d44a7124d32e83a40f1c1579b06b8ff356 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef _LINUX_INETDEVICE_H
3#define _LINUX_INETDEVICE_H
4
5#ifdef __KERNEL__
6
Herbert Xu31be3082007-06-04 23:35:37 -07007#include <linux/bitmap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/if.h>
stephen hemminger4a5a8aa2013-08-21 21:09:47 -07009#include <linux/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/netdevice.h>
11#include <linux/rcupdate.h>
12#include <linux/timer.h>
Satyam Sharma8bfe6d62007-06-22 17:04:27 -070013#include <linux/sysctl.h>
Eric Dumazet95ae6b22010-09-15 04:04:31 +000014#include <linux/rtnetlink.h>
Reshetova, Elena7658b362017-06-30 13:08:03 +030015#include <linux/refcount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Eric Dumazetd94d9fe2009-11-04 09:50:58 -080017struct ipv4_devconf {
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 void *sysctl;
Thomas Grafca7479e2010-11-16 04:31:20 +000019 int data[IPV4_DEVCONF_MAX];
20 DECLARE_BITMAP(state, IPV4_DEVCONF_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -070021};
22
Eric Dumazete9897072013-06-07 08:48:57 -070023#define MC_HASH_SZ_LOG 9
24
Eric Dumazetd94d9fe2009-11-04 09:50:58 -080025struct in_device {
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 struct net_device *dev;
Reshetova, Elena7658b362017-06-30 13:08:03 +030027 refcount_t refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 int dead;
29 struct in_ifaddr *ifa_list; /* IP ifaddr chain */
Eric Dumazete9897072013-06-07 08:48:57 -070030
Eric Dumazet1d7138d2010-11-12 05:46:50 +000031 struct ip_mc_list __rcu *mc_list; /* IP multicast filter chain */
Eric Dumazete9897072013-06-07 08:48:57 -070032 struct ip_mc_list __rcu * __rcu *mc_hash;
33
Eric Dumazet1d7138d2010-11-12 05:46:50 +000034 int mc_count; /* Number of installed mcasts */
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 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;
40 unsigned char mr_qrv;
41 unsigned char mr_gq_running;
42 unsigned char mr_ifc_count;
43 struct timer_list mr_gq_timer; /* general query timer */
44 struct timer_list mr_ifc_timer; /* interface change timer */
45
46 struct neigh_parms *arp_parms;
47 struct ipv4_devconf cnf;
48 struct rcu_head rcu_head;
49};
50
Eric W. Biederman02291682010-02-14 03:25:51 +000051#define IPV4_DEVCONF(cnf, attr) ((cnf).data[IPV4_DEVCONF_ ## attr - 1])
Pavel Emelyanov586f1212007-12-16 13:32:48 -080052#define IPV4_DEVCONF_ALL(net, attr) \
53 IPV4_DEVCONF((*(net)->ipv4.devconf_all), attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Herbert Xu42f811b2007-06-04 23:34:44 -070055static inline int ipv4_devconf_get(struct in_device *in_dev, int index)
56{
57 index--;
58 return in_dev->cnf.data[index];
59}
60
61static inline void ipv4_devconf_set(struct in_device *in_dev, int index,
62 int val)
63{
64 index--;
Herbert Xu31be3082007-06-04 23:35:37 -070065 set_bit(index, in_dev->cnf.state);
Herbert Xu42f811b2007-06-04 23:34:44 -070066 in_dev->cnf.data[index] = val;
67}
68
Herbert Xu71e27da2007-06-04 23:36:06 -070069static inline void ipv4_devconf_setall(struct in_device *in_dev)
70{
Thomas Grafca7479e2010-11-16 04:31:20 +000071 bitmap_fill(in_dev->cnf.state, IPV4_DEVCONF_MAX);
Herbert Xu71e27da2007-06-04 23:36:06 -070072}
73
Herbert Xu42f811b2007-06-04 23:34:44 -070074#define IN_DEV_CONF_GET(in_dev, attr) \
Eric W. Biederman02291682010-02-14 03:25:51 +000075 ipv4_devconf_get((in_dev), IPV4_DEVCONF_ ## attr)
Herbert Xu42f811b2007-06-04 23:34:44 -070076#define IN_DEV_CONF_SET(in_dev, attr, val) \
Eric W. Biederman02291682010-02-14 03:25:51 +000077 ipv4_devconf_set((in_dev), IPV4_DEVCONF_ ## attr, (val))
Herbert Xu42f811b2007-06-04 23:34:44 -070078
79#define IN_DEV_ANDCONF(in_dev, attr) \
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +090080 (IPV4_DEVCONF_ALL(dev_net(in_dev->dev), attr) && \
Pavel Emelyanov586f1212007-12-16 13:32:48 -080081 IN_DEV_CONF_GET((in_dev), attr))
Eric Dumazet9eb43e72012-08-03 21:27:25 +000082
83#define IN_DEV_NET_ORCONF(in_dev, net, attr) \
84 (IPV4_DEVCONF_ALL(net, attr) || \
Pavel Emelyanov586f1212007-12-16 13:32:48 -080085 IN_DEV_CONF_GET((in_dev), attr))
Eric Dumazet9eb43e72012-08-03 21:27:25 +000086
87#define IN_DEV_ORCONF(in_dev, attr) \
88 IN_DEV_NET_ORCONF(in_dev, dev_net(in_dev->dev), attr)
89
Herbert Xu42f811b2007-06-04 23:34:44 -070090#define IN_DEV_MAXCONF(in_dev, attr) \
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +090091 (max(IPV4_DEVCONF_ALL(dev_net(in_dev->dev), attr), \
Pavel Emelyanov586f1212007-12-16 13:32:48 -080092 IN_DEV_CONF_GET((in_dev), attr)))
Herbert Xu42f811b2007-06-04 23:34:44 -070093
94#define IN_DEV_FORWARD(in_dev) IN_DEV_CONF_GET((in_dev), FORWARDING)
Pavel Emelyanov01ecfe92007-12-11 02:16:47 -080095#define IN_DEV_MFORWARD(in_dev) IN_DEV_ANDCONF((in_dev), MC_FORWARDING)
Stephen Hemminger27fed412009-07-27 18:39:45 -070096#define IN_DEV_RPFILTER(in_dev) IN_DEV_MAXCONF((in_dev), RP_FILTER)
Jamal Hadi Salim28f6aee2009-12-25 17:30:22 -080097#define IN_DEV_SRC_VMARK(in_dev) IN_DEV_ORCONF((in_dev), SRC_VMARK)
Herbert Xu42f811b2007-06-04 23:34:44 -070098#define IN_DEV_SOURCE_ROUTE(in_dev) IN_DEV_ANDCONF((in_dev), \
99 ACCEPT_SOURCE_ROUTE)
Patrick McHardy8153a102009-12-03 01:25:58 +0000100#define IN_DEV_ACCEPT_LOCAL(in_dev) IN_DEV_ORCONF((in_dev), ACCEPT_LOCAL)
Herbert Xu42f811b2007-06-04 23:34:44 -0700101#define IN_DEV_BOOTP_RELAY(in_dev) IN_DEV_ANDCONF((in_dev), BOOTP_RELAY)
102
103#define IN_DEV_LOG_MARTIANS(in_dev) IN_DEV_ORCONF((in_dev), LOG_MARTIANS)
104#define IN_DEV_PROXY_ARP(in_dev) IN_DEV_ORCONF((in_dev), PROXY_ARP)
Jesper Dangaard Brouer65324142010-01-05 05:50:47 +0000105#define IN_DEV_PROXY_ARP_PVLAN(in_dev) IN_DEV_CONF_GET(in_dev, PROXY_ARP_PVLAN)
Herbert Xu42f811b2007-06-04 23:34:44 -0700106#define IN_DEV_SHARED_MEDIA(in_dev) IN_DEV_ORCONF((in_dev), SHARED_MEDIA)
107#define IN_DEV_TX_REDIRECTS(in_dev) IN_DEV_ORCONF((in_dev), SEND_REDIRECTS)
108#define IN_DEV_SEC_REDIRECTS(in_dev) IN_DEV_ORCONF((in_dev), \
109 SECURE_REDIRECTS)
110#define IN_DEV_IDTAG(in_dev) IN_DEV_CONF_GET(in_dev, TAG)
111#define IN_DEV_MEDIUM_ID(in_dev) IN_DEV_CONF_GET(in_dev, MEDIUM_ID)
112#define IN_DEV_PROMOTE_SECONDARIES(in_dev) \
113 IN_DEV_ORCONF((in_dev), \
114 PROMOTE_SECONDARIES)
Thomas Grafd0daebc32012-06-12 00:44:01 +0000115#define IN_DEV_ROUTE_LOCALNET(in_dev) IN_DEV_ORCONF(in_dev, ROUTE_LOCALNET)
Eric Dumazet9eb43e72012-08-03 21:27:25 +0000116#define IN_DEV_NET_ROUTE_LOCALNET(in_dev, net) \
117 IN_DEV_NET_ORCONF(in_dev, net, ROUTE_LOCALNET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119#define IN_DEV_RX_REDIRECTS(in_dev) \
120 ((IN_DEV_FORWARD(in_dev) && \
Herbert Xu42f811b2007-06-04 23:34:44 -0700121 IN_DEV_ANDCONF((in_dev), ACCEPT_REDIRECTS)) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 || (!IN_DEV_FORWARD(in_dev) && \
Herbert Xu42f811b2007-06-04 23:34:44 -0700123 IN_DEV_ORCONF((in_dev), ACCEPT_REDIRECTS)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Andy Gospodarek0eeb0752015-06-23 13:45:37 -0400125#define IN_DEV_IGNORE_ROUTES_WITH_LINKDOWN(in_dev) \
126 IN_DEV_CONF_GET((in_dev), IGNORE_ROUTES_WITH_LINKDOWN)
127
Herbert Xu42f811b2007-06-04 23:34:44 -0700128#define IN_DEV_ARPFILTER(in_dev) IN_DEV_ORCONF((in_dev), ARPFILTER)
Neil Horman124d37e2012-03-15 05:25:58 +0000129#define IN_DEV_ARP_ACCEPT(in_dev) IN_DEV_ORCONF((in_dev), ARP_ACCEPT)
Herbert Xu42f811b2007-06-04 23:34:44 -0700130#define IN_DEV_ARP_ANNOUNCE(in_dev) IN_DEV_MAXCONF((in_dev), ARP_ANNOUNCE)
131#define IN_DEV_ARP_IGNORE(in_dev) IN_DEV_MAXCONF((in_dev), ARP_IGNORE)
Stephen Hemmingereefef1c2009-02-01 01:04:33 -0800132#define IN_DEV_ARP_NOTIFY(in_dev) IN_DEV_MAXCONF((in_dev), ARP_NOTIFY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800134struct in_ifaddr {
David S. Millerfd23c3b2011-02-18 12:42:28 -0800135 struct hlist_node hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 struct in_ifaddr *ifa_next;
137 struct in_device *ifa_dev;
138 struct rcu_head rcu_head;
Al Viroa144ea42006-09-28 18:00:55 -0700139 __be32 ifa_local;
140 __be32 ifa_address;
141 __be32 ifa_mask;
142 __be32 ifa_broadcast;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 unsigned char ifa_scope;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 unsigned char ifa_prefixlen;
Jiri Pirkoad6c8132013-12-08 12:16:10 +0100145 __u32 ifa_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 char ifa_label[IFNAMSIZ];
Jiri Pirko5c766d62013-01-24 09:41:41 +0000147
148 /* In seconds, relative to tstamp. Expiry is at tstamp + HZ * lft. */
149 __u32 ifa_valid_lft;
150 __u32 ifa_preferred_lft;
151 unsigned long ifa_cstamp; /* created timestamp */
152 unsigned long ifa_tstamp; /* updated timestamp */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153};
154
Krister Johansen3ad7d242017-06-08 13:12:14 -0700155struct in_validator_info {
156 __be32 ivi_addr;
157 struct in_device *ivi_dev;
David Ahernde95e042017-10-18 09:56:54 -0700158 struct netlink_ext_ack *extack;
Krister Johansen3ad7d242017-06-08 13:12:14 -0700159};
160
Joe Perchesf629d202013-09-26 14:48:15 -0700161int register_inetaddr_notifier(struct notifier_block *nb);
162int unregister_inetaddr_notifier(struct notifier_block *nb);
Krister Johansen3ad7d242017-06-08 13:12:14 -0700163int register_inetaddr_validator_notifier(struct notifier_block *nb);
164int unregister_inetaddr_validator_notifier(struct notifier_block *nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
David Ahern3b022862017-03-28 14:28:02 -0700166void inet_netconf_notify_devconf(struct net *net, int event, int type,
167 int ifindex, struct ipv4_devconf *devconf);
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000168
Joe Perchesf629d202013-09-26 14:48:15 -0700169struct net_device *__ip_dev_find(struct net *net, __be32 addr, bool devref);
Eric Dumazet82efee12010-09-30 03:31:56 +0000170static inline struct net_device *ip_dev_find(struct net *net, __be32 addr)
171{
172 return __ip_dev_find(net, addr, true);
173}
174
Joe Perchesf629d202013-09-26 14:48:15 -0700175int inet_addr_onlink(struct in_device *in_dev, __be32 a, __be32 b);
Al Viro03aef172017-07-01 07:53:12 -0400176int devinet_ioctl(struct net *net, unsigned int cmd, struct ifreq *);
Joe Perchesf629d202013-09-26 14:48:15 -0700177void devinet_init(void);
178struct in_device *inetdev_by_index(struct net *, int);
179__be32 inet_select_addr(const struct net_device *dev, __be32 dst, int scope);
Nicolas Dichtelb601fa192013-12-10 15:02:40 +0100180__be32 inet_confirm_addr(struct net *net, struct in_device *in_dev, __be32 dst,
181 __be32 local, int scope);
Joe Perchesf629d202013-09-26 14:48:15 -0700182struct in_ifaddr *inet_ifa_byprefix(struct in_device *in_dev, __be32 prefix,
183 __be32 mask);
Paolo Abeni6e617de2017-09-20 18:26:53 +0200184struct in_ifaddr *inet_lookup_ifaddr_rcu(struct net *net, __be32 addr);
Yaowei Baic3225162015-10-08 21:29:00 +0800185static __inline__ bool inet_ifa_match(__be32 addr, struct in_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
187 return !((addr^ifa->ifa_address)&ifa->ifa_mask);
188}
189
190/*
191 * Check if a mask is acceptable.
192 */
193
Yaowei Baif06cc7b2015-10-08 21:29:01 +0800194static __inline__ bool bad_mask(__be32 mask, __be32 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Al Viro714e85b2006-11-14 20:51:49 -0800196 __u32 hmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 if (addr & (mask = ~mask))
Yaowei Baif06cc7b2015-10-08 21:29:01 +0800198 return true;
Al Viro714e85b2006-11-14 20:51:49 -0800199 hmask = ntohl(mask);
200 if (hmask & (hmask+1))
Yaowei Baif06cc7b2015-10-08 21:29:01 +0800201 return true;
202 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
205#define for_primary_ifa(in_dev) { struct in_ifaddr *ifa; \
206 for (ifa = (in_dev)->ifa_list; ifa && !(ifa->ifa_flags&IFA_F_SECONDARY); ifa = ifa->ifa_next)
207
208#define for_ifa(in_dev) { struct in_ifaddr *ifa; \
209 for (ifa = (in_dev)->ifa_list; ifa; ifa = ifa->ifa_next)
210
211
212#define endfor_ifa(in_dev) }
213
Herbert Xue5ed6392005-10-03 14:35:55 -0700214static inline struct in_device *__in_dev_get_rcu(const struct net_device *dev)
215{
Eric Dumazet95ae6b22010-09-15 04:04:31 +0000216 return rcu_dereference(dev->ip_ptr);
Herbert Xue5ed6392005-10-03 14:35:55 -0700217}
218
Eric Dumazet95ae6b22010-09-15 04:04:31 +0000219static inline struct in_device *in_dev_get(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 struct in_device *in_dev;
222
223 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -0700224 in_dev = __in_dev_get_rcu(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 if (in_dev)
Reshetova, Elena7658b362017-06-30 13:08:03 +0300226 refcount_inc(&in_dev->refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 rcu_read_unlock();
228 return in_dev;
229}
230
Eric Dumazet95ae6b22010-09-15 04:04:31 +0000231static inline struct in_device *__in_dev_get_rtnl(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Eric Dumazet06a97012010-12-01 01:37:42 +0000233 return rtnl_dereference(dev->ip_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
Jiri Pirko1d4c8c22013-12-07 19:26:56 +0100236static inline struct neigh_parms *__in_dev_arp_parms_get_rcu(const struct net_device *dev)
237{
238 struct in_device *in_dev = __in_dev_get_rcu(dev);
239
240 return in_dev ? in_dev->arp_parms : NULL;
241}
242
Joe Perchesf629d202013-09-26 14:48:15 -0700243void in_dev_finish_destroy(struct in_device *idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245static inline void in_dev_put(struct in_device *idev)
246{
Reshetova, Elena7658b362017-06-30 13:08:03 +0300247 if (refcount_dec_and_test(&idev->refcnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 in_dev_finish_destroy(idev);
249}
250
Reshetova, Elena7658b362017-06-30 13:08:03 +0300251#define __in_dev_put(idev) refcount_dec(&(idev)->refcnt)
252#define in_dev_hold(idev) refcount_inc(&(idev)->refcnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254#endif /* __KERNEL__ */
255
Al Viro60cad5d2006-09-26 22:17:09 -0700256static __inline__ __be32 inet_make_mask(int logmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 if (logmask)
Vincent BENAYOUN84bc8862014-11-13 13:47:26 +0100259 return htonl(~((1U<<(32-logmask))-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 return 0;
261}
262
Al Viro714e85b2006-11-14 20:51:49 -0800263static __inline__ int inet_mask_len(__be32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
Al Viro714e85b2006-11-14 20:51:49 -0800265 __u32 hmask = ntohl(mask);
266 if (!hmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return 0;
Al Viro714e85b2006-11-14 20:51:49 -0800268 return 32 - ffz(~hmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
271
272#endif /* _LINUX_INETDEVICE_H */