blob: b99cd23f347489ea0a3c2a14d58193c6e1117331 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_INETDEVICE_H
2#define _LINUX_INETDEVICE_H
3
4#ifdef __KERNEL__
5
Herbert Xu31be3082007-06-04 23:35:37 -07006#include <linux/bitmap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/if.h>
8#include <linux/netdevice.h>
9#include <linux/rcupdate.h>
10#include <linux/timer.h>
Satyam Sharma8bfe6d62007-06-22 17:04:27 -070011#include <linux/sysctl.h>
Eric Dumazet95ae6b22010-09-15 04:04:31 +000012#include <linux/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
Eric W. Biederman02291682010-02-14 03:25:51 +000014enum
15{
16 IPV4_DEVCONF_FORWARDING=1,
17 IPV4_DEVCONF_MC_FORWARDING,
18 IPV4_DEVCONF_PROXY_ARP,
19 IPV4_DEVCONF_ACCEPT_REDIRECTS,
20 IPV4_DEVCONF_SECURE_REDIRECTS,
21 IPV4_DEVCONF_SEND_REDIRECTS,
22 IPV4_DEVCONF_SHARED_MEDIA,
23 IPV4_DEVCONF_RP_FILTER,
24 IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE,
25 IPV4_DEVCONF_BOOTP_RELAY,
26 IPV4_DEVCONF_LOG_MARTIANS,
27 IPV4_DEVCONF_TAG,
28 IPV4_DEVCONF_ARPFILTER,
29 IPV4_DEVCONF_MEDIUM_ID,
30 IPV4_DEVCONF_NOXFRM,
31 IPV4_DEVCONF_NOPOLICY,
32 IPV4_DEVCONF_FORCE_IGMP_VERSION,
33 IPV4_DEVCONF_ARP_ANNOUNCE,
34 IPV4_DEVCONF_ARP_IGNORE,
35 IPV4_DEVCONF_PROMOTE_SECONDARIES,
36 IPV4_DEVCONF_ARP_ACCEPT,
37 IPV4_DEVCONF_ARP_NOTIFY,
38 IPV4_DEVCONF_ACCEPT_LOCAL,
39 IPV4_DEVCONF_SRC_VMARK,
40 IPV4_DEVCONF_PROXY_ARP_PVLAN,
Thomas Grafd0daebc32012-06-12 00:44:01 +000041 IPV4_DEVCONF_ROUTE_LOCALNET,
Eric W. Biederman02291682010-02-14 03:25:51 +000042 __IPV4_DEVCONF_MAX
43};
44
Thomas Grafca7479e2010-11-16 04:31:20 +000045#define IPV4_DEVCONF_MAX (__IPV4_DEVCONF_MAX - 1)
46
Eric Dumazetd94d9fe2009-11-04 09:50:58 -080047struct ipv4_devconf {
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 void *sysctl;
Thomas Grafca7479e2010-11-16 04:31:20 +000049 int data[IPV4_DEVCONF_MAX];
50 DECLARE_BITMAP(state, IPV4_DEVCONF_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051};
52
Eric Dumazete9897072013-06-07 08:48:57 -070053#define MC_HASH_SZ_LOG 9
54
Eric Dumazetd94d9fe2009-11-04 09:50:58 -080055struct in_device {
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 struct net_device *dev;
57 atomic_t refcnt;
58 int dead;
59 struct in_ifaddr *ifa_list; /* IP ifaddr chain */
Eric Dumazete9897072013-06-07 08:48:57 -070060
Eric Dumazet1d7138d2010-11-12 05:46:50 +000061 struct ip_mc_list __rcu *mc_list; /* IP multicast filter chain */
Eric Dumazete9897072013-06-07 08:48:57 -070062 struct ip_mc_list __rcu * __rcu *mc_hash;
63
Eric Dumazet1d7138d2010-11-12 05:46:50 +000064 int mc_count; /* Number of installed mcasts */
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 spinlock_t mc_tomb_lock;
66 struct ip_mc_list *mc_tomb;
67 unsigned long mr_v1_seen;
68 unsigned long mr_v2_seen;
69 unsigned long mr_maxdelay;
70 unsigned char mr_qrv;
71 unsigned char mr_gq_running;
72 unsigned char mr_ifc_count;
73 struct timer_list mr_gq_timer; /* general query timer */
74 struct timer_list mr_ifc_timer; /* interface change timer */
75
76 struct neigh_parms *arp_parms;
77 struct ipv4_devconf cnf;
78 struct rcu_head rcu_head;
79};
80
Eric W. Biederman02291682010-02-14 03:25:51 +000081#define IPV4_DEVCONF(cnf, attr) ((cnf).data[IPV4_DEVCONF_ ## attr - 1])
Pavel Emelyanov586f1212007-12-16 13:32:48 -080082#define IPV4_DEVCONF_ALL(net, attr) \
83 IPV4_DEVCONF((*(net)->ipv4.devconf_all), attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Herbert Xu42f811b2007-06-04 23:34:44 -070085static inline int ipv4_devconf_get(struct in_device *in_dev, int index)
86{
87 index--;
88 return in_dev->cnf.data[index];
89}
90
91static inline void ipv4_devconf_set(struct in_device *in_dev, int index,
92 int val)
93{
94 index--;
Herbert Xu31be3082007-06-04 23:35:37 -070095 set_bit(index, in_dev->cnf.state);
Herbert Xu42f811b2007-06-04 23:34:44 -070096 in_dev->cnf.data[index] = val;
97}
98
Herbert Xu71e27da2007-06-04 23:36:06 -070099static inline void ipv4_devconf_setall(struct in_device *in_dev)
100{
Thomas Grafca7479e2010-11-16 04:31:20 +0000101 bitmap_fill(in_dev->cnf.state, IPV4_DEVCONF_MAX);
Herbert Xu71e27da2007-06-04 23:36:06 -0700102}
103
Herbert Xu42f811b2007-06-04 23:34:44 -0700104#define IN_DEV_CONF_GET(in_dev, attr) \
Eric W. Biederman02291682010-02-14 03:25:51 +0000105 ipv4_devconf_get((in_dev), IPV4_DEVCONF_ ## attr)
Herbert Xu42f811b2007-06-04 23:34:44 -0700106#define IN_DEV_CONF_SET(in_dev, attr, val) \
Eric W. Biederman02291682010-02-14 03:25:51 +0000107 ipv4_devconf_set((in_dev), IPV4_DEVCONF_ ## attr, (val))
Herbert Xu42f811b2007-06-04 23:34:44 -0700108
109#define IN_DEV_ANDCONF(in_dev, attr) \
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900110 (IPV4_DEVCONF_ALL(dev_net(in_dev->dev), attr) && \
Pavel Emelyanov586f1212007-12-16 13:32:48 -0800111 IN_DEV_CONF_GET((in_dev), attr))
Eric Dumazet9eb43e72012-08-03 21:27:25 +0000112
113#define IN_DEV_NET_ORCONF(in_dev, net, attr) \
114 (IPV4_DEVCONF_ALL(net, attr) || \
Pavel Emelyanov586f1212007-12-16 13:32:48 -0800115 IN_DEV_CONF_GET((in_dev), attr))
Eric Dumazet9eb43e72012-08-03 21:27:25 +0000116
117#define IN_DEV_ORCONF(in_dev, attr) \
118 IN_DEV_NET_ORCONF(in_dev, dev_net(in_dev->dev), attr)
119
Herbert Xu42f811b2007-06-04 23:34:44 -0700120#define IN_DEV_MAXCONF(in_dev, attr) \
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900121 (max(IPV4_DEVCONF_ALL(dev_net(in_dev->dev), attr), \
Pavel Emelyanov586f1212007-12-16 13:32:48 -0800122 IN_DEV_CONF_GET((in_dev), attr)))
Herbert Xu42f811b2007-06-04 23:34:44 -0700123
124#define IN_DEV_FORWARD(in_dev) IN_DEV_CONF_GET((in_dev), FORWARDING)
Pavel Emelyanov01ecfe92007-12-11 02:16:47 -0800125#define IN_DEV_MFORWARD(in_dev) IN_DEV_ANDCONF((in_dev), MC_FORWARDING)
Stephen Hemminger27fed412009-07-27 18:39:45 -0700126#define IN_DEV_RPFILTER(in_dev) IN_DEV_MAXCONF((in_dev), RP_FILTER)
Jamal Hadi Salim28f6aee2009-12-25 17:30:22 -0800127#define IN_DEV_SRC_VMARK(in_dev) IN_DEV_ORCONF((in_dev), SRC_VMARK)
Herbert Xu42f811b2007-06-04 23:34:44 -0700128#define IN_DEV_SOURCE_ROUTE(in_dev) IN_DEV_ANDCONF((in_dev), \
129 ACCEPT_SOURCE_ROUTE)
Patrick McHardy8153a102009-12-03 01:25:58 +0000130#define IN_DEV_ACCEPT_LOCAL(in_dev) IN_DEV_ORCONF((in_dev), ACCEPT_LOCAL)
Herbert Xu42f811b2007-06-04 23:34:44 -0700131#define IN_DEV_BOOTP_RELAY(in_dev) IN_DEV_ANDCONF((in_dev), BOOTP_RELAY)
132
133#define IN_DEV_LOG_MARTIANS(in_dev) IN_DEV_ORCONF((in_dev), LOG_MARTIANS)
134#define IN_DEV_PROXY_ARP(in_dev) IN_DEV_ORCONF((in_dev), PROXY_ARP)
Jesper Dangaard Brouer65324142010-01-05 05:50:47 +0000135#define IN_DEV_PROXY_ARP_PVLAN(in_dev) IN_DEV_CONF_GET(in_dev, PROXY_ARP_PVLAN)
Herbert Xu42f811b2007-06-04 23:34:44 -0700136#define IN_DEV_SHARED_MEDIA(in_dev) IN_DEV_ORCONF((in_dev), SHARED_MEDIA)
137#define IN_DEV_TX_REDIRECTS(in_dev) IN_DEV_ORCONF((in_dev), SEND_REDIRECTS)
138#define IN_DEV_SEC_REDIRECTS(in_dev) IN_DEV_ORCONF((in_dev), \
139 SECURE_REDIRECTS)
140#define IN_DEV_IDTAG(in_dev) IN_DEV_CONF_GET(in_dev, TAG)
141#define IN_DEV_MEDIUM_ID(in_dev) IN_DEV_CONF_GET(in_dev, MEDIUM_ID)
142#define IN_DEV_PROMOTE_SECONDARIES(in_dev) \
143 IN_DEV_ORCONF((in_dev), \
144 PROMOTE_SECONDARIES)
Thomas Grafd0daebc32012-06-12 00:44:01 +0000145#define IN_DEV_ROUTE_LOCALNET(in_dev) IN_DEV_ORCONF(in_dev, ROUTE_LOCALNET)
Eric Dumazet9eb43e72012-08-03 21:27:25 +0000146#define IN_DEV_NET_ROUTE_LOCALNET(in_dev, net) \
147 IN_DEV_NET_ORCONF(in_dev, net, ROUTE_LOCALNET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149#define IN_DEV_RX_REDIRECTS(in_dev) \
150 ((IN_DEV_FORWARD(in_dev) && \
Herbert Xu42f811b2007-06-04 23:34:44 -0700151 IN_DEV_ANDCONF((in_dev), ACCEPT_REDIRECTS)) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 || (!IN_DEV_FORWARD(in_dev) && \
Herbert Xu42f811b2007-06-04 23:34:44 -0700153 IN_DEV_ORCONF((in_dev), ACCEPT_REDIRECTS)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Herbert Xu42f811b2007-06-04 23:34:44 -0700155#define IN_DEV_ARPFILTER(in_dev) IN_DEV_ORCONF((in_dev), ARPFILTER)
Neil Horman124d37e2012-03-15 05:25:58 +0000156#define IN_DEV_ARP_ACCEPT(in_dev) IN_DEV_ORCONF((in_dev), ARP_ACCEPT)
Herbert Xu42f811b2007-06-04 23:34:44 -0700157#define IN_DEV_ARP_ANNOUNCE(in_dev) IN_DEV_MAXCONF((in_dev), ARP_ANNOUNCE)
158#define IN_DEV_ARP_IGNORE(in_dev) IN_DEV_MAXCONF((in_dev), ARP_IGNORE)
Stephen Hemmingereefef1c2009-02-01 01:04:33 -0800159#define IN_DEV_ARP_NOTIFY(in_dev) IN_DEV_MAXCONF((in_dev), ARP_NOTIFY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800161struct in_ifaddr {
David S. Millerfd23c3b2011-02-18 12:42:28 -0800162 struct hlist_node hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 struct in_ifaddr *ifa_next;
164 struct in_device *ifa_dev;
165 struct rcu_head rcu_head;
Al Viroa144ea42006-09-28 18:00:55 -0700166 __be32 ifa_local;
167 __be32 ifa_address;
168 __be32 ifa_mask;
169 __be32 ifa_broadcast;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 unsigned char ifa_scope;
171 unsigned char ifa_flags;
172 unsigned char ifa_prefixlen;
173 char ifa_label[IFNAMSIZ];
Jiri Pirko5c766d62013-01-24 09:41:41 +0000174
175 /* In seconds, relative to tstamp. Expiry is at tstamp + HZ * lft. */
176 __u32 ifa_valid_lft;
177 __u32 ifa_preferred_lft;
178 unsigned long ifa_cstamp; /* created timestamp */
179 unsigned long ifa_tstamp; /* updated timestamp */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180};
181
182extern int register_inetaddr_notifier(struct notifier_block *nb);
183extern int unregister_inetaddr_notifier(struct notifier_block *nb);
184
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000185extern void inet_netconf_notify_devconf(struct net *net, int type, int ifindex,
186 struct ipv4_devconf *devconf);
187
Eric Dumazet82efee12010-09-30 03:31:56 +0000188extern struct net_device *__ip_dev_find(struct net *net, __be32 addr, bool devref);
189static inline struct net_device *ip_dev_find(struct net *net, __be32 addr)
190{
191 return __ip_dev_find(net, addr, true);
192}
193
Al Viroff428d72006-09-26 22:13:35 -0700194extern int inet_addr_onlink(struct in_device *in_dev, __be32 a, __be32 b);
Denis V. Luneve5b13cb2008-02-28 20:51:43 -0800195extern int devinet_ioctl(struct net *net, unsigned int cmd, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196extern void devinet_init(void);
Denis V. Lunev7fee0ca2008-01-21 17:32:38 -0800197extern struct in_device *inetdev_by_index(struct net *, int);
Al Viroa61ced52006-09-26 21:27:54 -0700198extern __be32 inet_select_addr(const struct net_device *dev, __be32 dst, int scope);
Denis V. Lunev9bd85e32008-01-14 23:05:55 -0800199extern __be32 inet_confirm_addr(struct in_device *in_dev, __be32 dst, __be32 local, int scope);
Al Viro60cad5d2006-09-26 22:17:09 -0700200extern struct in_ifaddr *inet_ifa_byprefix(struct in_device *in_dev, __be32 prefix, __be32 mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Al Viro60cad5d2006-09-26 22:17:09 -0700202static __inline__ int inet_ifa_match(__be32 addr, struct in_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
204 return !((addr^ifa->ifa_address)&ifa->ifa_mask);
205}
206
207/*
208 * Check if a mask is acceptable.
209 */
210
Al Viro714e85b2006-11-14 20:51:49 -0800211static __inline__ int bad_mask(__be32 mask, __be32 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Al Viro714e85b2006-11-14 20:51:49 -0800213 __u32 hmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 if (addr & (mask = ~mask))
215 return 1;
Al Viro714e85b2006-11-14 20:51:49 -0800216 hmask = ntohl(mask);
217 if (hmask & (hmask+1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 return 1;
219 return 0;
220}
221
222#define for_primary_ifa(in_dev) { struct in_ifaddr *ifa; \
223 for (ifa = (in_dev)->ifa_list; ifa && !(ifa->ifa_flags&IFA_F_SECONDARY); ifa = ifa->ifa_next)
224
225#define for_ifa(in_dev) { struct in_ifaddr *ifa; \
226 for (ifa = (in_dev)->ifa_list; ifa; ifa = ifa->ifa_next)
227
228
229#define endfor_ifa(in_dev) }
230
Herbert Xue5ed6392005-10-03 14:35:55 -0700231static inline struct in_device *__in_dev_get_rcu(const struct net_device *dev)
232{
Eric Dumazet95ae6b22010-09-15 04:04:31 +0000233 return rcu_dereference(dev->ip_ptr);
Herbert Xue5ed6392005-10-03 14:35:55 -0700234}
235
Eric Dumazet95ae6b22010-09-15 04:04:31 +0000236static inline struct in_device *in_dev_get(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
238 struct in_device *in_dev;
239
240 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -0700241 in_dev = __in_dev_get_rcu(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 if (in_dev)
243 atomic_inc(&in_dev->refcnt);
244 rcu_read_unlock();
245 return in_dev;
246}
247
Eric Dumazet95ae6b22010-09-15 04:04:31 +0000248static inline struct in_device *__in_dev_get_rtnl(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
Eric Dumazet06a97012010-12-01 01:37:42 +0000250 return rtnl_dereference(dev->ip_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
253extern void in_dev_finish_destroy(struct in_device *idev);
254
255static inline void in_dev_put(struct in_device *idev)
256{
257 if (atomic_dec_and_test(&idev->refcnt))
258 in_dev_finish_destroy(idev);
259}
260
261#define __in_dev_put(idev) atomic_dec(&(idev)->refcnt)
262#define in_dev_hold(idev) atomic_inc(&(idev)->refcnt)
263
264#endif /* __KERNEL__ */
265
Al Viro60cad5d2006-09-26 22:17:09 -0700266static __inline__ __be32 inet_make_mask(int logmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
268 if (logmask)
269 return htonl(~((1<<(32-logmask))-1));
270 return 0;
271}
272
Al Viro714e85b2006-11-14 20:51:49 -0800273static __inline__ int inet_mask_len(__be32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
Al Viro714e85b2006-11-14 20:51:49 -0800275 __u32 hmask = ntohl(mask);
276 if (!hmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 return 0;
Al Viro714e85b2006-11-14 20:51:49 -0800278 return 32 - ffz(~hmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
281
282#endif /* _LINUX_INETDEVICE_H */