]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/inetdevice.h
net: convert ip_mc_list.refcnt from atomic_t to refcount_t
[mirror_ubuntu-bionic-kernel.git] / include / linux / inetdevice.h
CommitLineData
1da177e4
LT
1#ifndef _LINUX_INETDEVICE_H
2#define _LINUX_INETDEVICE_H
3
4#ifdef __KERNEL__
5
31be3085 6#include <linux/bitmap.h>
1da177e4 7#include <linux/if.h>
4a5a8aa6 8#include <linux/ip.h>
1da177e4
LT
9#include <linux/netdevice.h>
10#include <linux/rcupdate.h>
11#include <linux/timer.h>
8bfe6d68 12#include <linux/sysctl.h>
95ae6b22 13#include <linux/rtnetlink.h>
1da177e4 14
d94d9fee 15struct ipv4_devconf {
1da177e4 16 void *sysctl;
ca7479eb
TG
17 int data[IPV4_DEVCONF_MAX];
18 DECLARE_BITMAP(state, IPV4_DEVCONF_MAX);
1da177e4
LT
19};
20
e9897071
ED
21#define MC_HASH_SZ_LOG 9
22
d94d9fee 23struct in_device {
1da177e4
LT
24 struct net_device *dev;
25 atomic_t refcnt;
26 int dead;
27 struct in_ifaddr *ifa_list; /* IP ifaddr chain */
e9897071 28
1d7138de 29 struct ip_mc_list __rcu *mc_list; /* IP multicast filter chain */
e9897071
ED
30 struct ip_mc_list __rcu * __rcu *mc_hash;
31
1d7138de 32 int mc_count; /* Number of installed mcasts */
1da177e4
LT
33 spinlock_t mc_tomb_lock;
34 struct ip_mc_list *mc_tomb;
35 unsigned long mr_v1_seen;
36 unsigned long mr_v2_seen;
37 unsigned long mr_maxdelay;
38 unsigned char mr_qrv;
39 unsigned char mr_gq_running;
40 unsigned char mr_ifc_count;
41 struct timer_list mr_gq_timer; /* general query timer */
42 struct timer_list mr_ifc_timer; /* interface change timer */
43
44 struct neigh_parms *arp_parms;
45 struct ipv4_devconf cnf;
46 struct rcu_head rcu_head;
47};
48
02291680 49#define IPV4_DEVCONF(cnf, attr) ((cnf).data[IPV4_DEVCONF_ ## attr - 1])
586f1211
PE
50#define IPV4_DEVCONF_ALL(net, attr) \
51 IPV4_DEVCONF((*(net)->ipv4.devconf_all), attr)
42f811b8
HX
52
53static inline int ipv4_devconf_get(struct in_device *in_dev, int index)
54{
55 index--;
56 return in_dev->cnf.data[index];
57}
58
59static inline void ipv4_devconf_set(struct in_device *in_dev, int index,
60 int val)
61{
62 index--;
31be3085 63 set_bit(index, in_dev->cnf.state);
42f811b8
HX
64 in_dev->cnf.data[index] = val;
65}
66
71e27da9
HX
67static inline void ipv4_devconf_setall(struct in_device *in_dev)
68{
ca7479eb 69 bitmap_fill(in_dev->cnf.state, IPV4_DEVCONF_MAX);
71e27da9
HX
70}
71
42f811b8 72#define IN_DEV_CONF_GET(in_dev, attr) \
02291680 73 ipv4_devconf_get((in_dev), IPV4_DEVCONF_ ## attr)
42f811b8 74#define IN_DEV_CONF_SET(in_dev, attr, val) \
02291680 75 ipv4_devconf_set((in_dev), IPV4_DEVCONF_ ## attr, (val))
42f811b8
HX
76
77#define IN_DEV_ANDCONF(in_dev, attr) \
c346dca1 78 (IPV4_DEVCONF_ALL(dev_net(in_dev->dev), attr) && \
586f1211 79 IN_DEV_CONF_GET((in_dev), attr))
9eb43e76
ED
80
81#define IN_DEV_NET_ORCONF(in_dev, net, attr) \
82 (IPV4_DEVCONF_ALL(net, attr) || \
586f1211 83 IN_DEV_CONF_GET((in_dev), attr))
9eb43e76
ED
84
85#define IN_DEV_ORCONF(in_dev, attr) \
86 IN_DEV_NET_ORCONF(in_dev, dev_net(in_dev->dev), attr)
87
42f811b8 88#define IN_DEV_MAXCONF(in_dev, attr) \
c346dca1 89 (max(IPV4_DEVCONF_ALL(dev_net(in_dev->dev), attr), \
586f1211 90 IN_DEV_CONF_GET((in_dev), attr)))
42f811b8
HX
91
92#define IN_DEV_FORWARD(in_dev) IN_DEV_CONF_GET((in_dev), FORWARDING)
01ecfe9b 93#define IN_DEV_MFORWARD(in_dev) IN_DEV_ANDCONF((in_dev), MC_FORWARDING)
27fed417 94#define IN_DEV_RPFILTER(in_dev) IN_DEV_MAXCONF((in_dev), RP_FILTER)
28f6aeea 95#define IN_DEV_SRC_VMARK(in_dev) IN_DEV_ORCONF((in_dev), SRC_VMARK)
42f811b8
HX
96#define IN_DEV_SOURCE_ROUTE(in_dev) IN_DEV_ANDCONF((in_dev), \
97 ACCEPT_SOURCE_ROUTE)
8153a10c 98#define IN_DEV_ACCEPT_LOCAL(in_dev) IN_DEV_ORCONF((in_dev), ACCEPT_LOCAL)
42f811b8
HX
99#define IN_DEV_BOOTP_RELAY(in_dev) IN_DEV_ANDCONF((in_dev), BOOTP_RELAY)
100
101#define IN_DEV_LOG_MARTIANS(in_dev) IN_DEV_ORCONF((in_dev), LOG_MARTIANS)
102#define IN_DEV_PROXY_ARP(in_dev) IN_DEV_ORCONF((in_dev), PROXY_ARP)
65324144 103#define IN_DEV_PROXY_ARP_PVLAN(in_dev) IN_DEV_CONF_GET(in_dev, PROXY_ARP_PVLAN)
42f811b8
HX
104#define IN_DEV_SHARED_MEDIA(in_dev) IN_DEV_ORCONF((in_dev), SHARED_MEDIA)
105#define IN_DEV_TX_REDIRECTS(in_dev) IN_DEV_ORCONF((in_dev), SEND_REDIRECTS)
106#define IN_DEV_SEC_REDIRECTS(in_dev) IN_DEV_ORCONF((in_dev), \
107 SECURE_REDIRECTS)
108#define IN_DEV_IDTAG(in_dev) IN_DEV_CONF_GET(in_dev, TAG)
109#define IN_DEV_MEDIUM_ID(in_dev) IN_DEV_CONF_GET(in_dev, MEDIUM_ID)
110#define IN_DEV_PROMOTE_SECONDARIES(in_dev) \
111 IN_DEV_ORCONF((in_dev), \
112 PROMOTE_SECONDARIES)
d0daebc3 113#define IN_DEV_ROUTE_LOCALNET(in_dev) IN_DEV_ORCONF(in_dev, ROUTE_LOCALNET)
9eb43e76
ED
114#define IN_DEV_NET_ROUTE_LOCALNET(in_dev, net) \
115 IN_DEV_NET_ORCONF(in_dev, net, ROUTE_LOCALNET)
1da177e4
LT
116
117#define IN_DEV_RX_REDIRECTS(in_dev) \
118 ((IN_DEV_FORWARD(in_dev) && \
42f811b8 119 IN_DEV_ANDCONF((in_dev), ACCEPT_REDIRECTS)) \
1da177e4 120 || (!IN_DEV_FORWARD(in_dev) && \
42f811b8 121 IN_DEV_ORCONF((in_dev), ACCEPT_REDIRECTS)))
1da177e4 122
0eeb075f
AG
123#define IN_DEV_IGNORE_ROUTES_WITH_LINKDOWN(in_dev) \
124 IN_DEV_CONF_GET((in_dev), IGNORE_ROUTES_WITH_LINKDOWN)
125
42f811b8 126#define IN_DEV_ARPFILTER(in_dev) IN_DEV_ORCONF((in_dev), ARPFILTER)
124d37e9 127#define IN_DEV_ARP_ACCEPT(in_dev) IN_DEV_ORCONF((in_dev), ARP_ACCEPT)
42f811b8
HX
128#define IN_DEV_ARP_ANNOUNCE(in_dev) IN_DEV_MAXCONF((in_dev), ARP_ANNOUNCE)
129#define IN_DEV_ARP_IGNORE(in_dev) IN_DEV_MAXCONF((in_dev), ARP_IGNORE)
eefef1cf 130#define IN_DEV_ARP_NOTIFY(in_dev) IN_DEV_MAXCONF((in_dev), ARP_NOTIFY)
1da177e4 131
d94d9fee 132struct in_ifaddr {
fd23c3b3 133 struct hlist_node hash;
1da177e4
LT
134 struct in_ifaddr *ifa_next;
135 struct in_device *ifa_dev;
136 struct rcu_head rcu_head;
a144ea4b
AV
137 __be32 ifa_local;
138 __be32 ifa_address;
139 __be32 ifa_mask;
140 __be32 ifa_broadcast;
1da177e4 141 unsigned char ifa_scope;
1da177e4 142 unsigned char ifa_prefixlen;
ad6c8135 143 __u32 ifa_flags;
1da177e4 144 char ifa_label[IFNAMSIZ];
5c766d64
JP
145
146 /* In seconds, relative to tstamp. Expiry is at tstamp + HZ * lft. */
147 __u32 ifa_valid_lft;
148 __u32 ifa_preferred_lft;
149 unsigned long ifa_cstamp; /* created timestamp */
150 unsigned long ifa_tstamp; /* updated timestamp */
1da177e4
LT
151};
152
3ad7d246
KJ
153struct in_validator_info {
154 __be32 ivi_addr;
155 struct in_device *ivi_dev;
156};
157
f629d208
JP
158int register_inetaddr_notifier(struct notifier_block *nb);
159int unregister_inetaddr_notifier(struct notifier_block *nb);
3ad7d246
KJ
160int register_inetaddr_validator_notifier(struct notifier_block *nb);
161int unregister_inetaddr_validator_notifier(struct notifier_block *nb);
1da177e4 162
3b022865
DA
163void inet_netconf_notify_devconf(struct net *net, int event, int type,
164 int ifindex, struct ipv4_devconf *devconf);
d67b8c61 165
f629d208 166struct net_device *__ip_dev_find(struct net *net, __be32 addr, bool devref);
82efee14
ED
167static inline struct net_device *ip_dev_find(struct net *net, __be32 addr)
168{
169 return __ip_dev_find(net, addr, true);
170}
171
f629d208
JP
172int inet_addr_onlink(struct in_device *in_dev, __be32 a, __be32 b);
173int devinet_ioctl(struct net *net, unsigned int cmd, void __user *);
174void devinet_init(void);
175struct in_device *inetdev_by_index(struct net *, int);
176__be32 inet_select_addr(const struct net_device *dev, __be32 dst, int scope);
b601fa19
ND
177__be32 inet_confirm_addr(struct net *net, struct in_device *in_dev, __be32 dst,
178 __be32 local, int scope);
f629d208
JP
179struct in_ifaddr *inet_ifa_byprefix(struct in_device *in_dev, __be32 prefix,
180 __be32 mask);
c3225164 181static __inline__ bool inet_ifa_match(__be32 addr, struct in_ifaddr *ifa)
1da177e4
LT
182{
183 return !((addr^ifa->ifa_address)&ifa->ifa_mask);
184}
185
186/*
187 * Check if a mask is acceptable.
188 */
189
f06cc7b2 190static __inline__ bool bad_mask(__be32 mask, __be32 addr)
1da177e4 191{
714e85be 192 __u32 hmask;
1da177e4 193 if (addr & (mask = ~mask))
f06cc7b2 194 return true;
714e85be
AV
195 hmask = ntohl(mask);
196 if (hmask & (hmask+1))
f06cc7b2
YB
197 return true;
198 return false;
1da177e4
LT
199}
200
201#define for_primary_ifa(in_dev) { struct in_ifaddr *ifa; \
202 for (ifa = (in_dev)->ifa_list; ifa && !(ifa->ifa_flags&IFA_F_SECONDARY); ifa = ifa->ifa_next)
203
204#define for_ifa(in_dev) { struct in_ifaddr *ifa; \
205 for (ifa = (in_dev)->ifa_list; ifa; ifa = ifa->ifa_next)
206
207
208#define endfor_ifa(in_dev) }
209
e5ed6399
HX
210static inline struct in_device *__in_dev_get_rcu(const struct net_device *dev)
211{
95ae6b22 212 return rcu_dereference(dev->ip_ptr);
e5ed6399
HX
213}
214
95ae6b22 215static inline struct in_device *in_dev_get(const struct net_device *dev)
1da177e4
LT
216{
217 struct in_device *in_dev;
218
219 rcu_read_lock();
e5ed6399 220 in_dev = __in_dev_get_rcu(dev);
1da177e4
LT
221 if (in_dev)
222 atomic_inc(&in_dev->refcnt);
223 rcu_read_unlock();
224 return in_dev;
225}
226
95ae6b22 227static inline struct in_device *__in_dev_get_rtnl(const struct net_device *dev)
1da177e4 228{
06a9701f 229 return rtnl_dereference(dev->ip_ptr);
1da177e4
LT
230}
231
1d4c8c29
JP
232static inline struct neigh_parms *__in_dev_arp_parms_get_rcu(const struct net_device *dev)
233{
234 struct in_device *in_dev = __in_dev_get_rcu(dev);
235
236 return in_dev ? in_dev->arp_parms : NULL;
237}
238
f629d208 239void in_dev_finish_destroy(struct in_device *idev);
1da177e4
LT
240
241static inline void in_dev_put(struct in_device *idev)
242{
243 if (atomic_dec_and_test(&idev->refcnt))
244 in_dev_finish_destroy(idev);
245}
246
247#define __in_dev_put(idev) atomic_dec(&(idev)->refcnt)
248#define in_dev_hold(idev) atomic_inc(&(idev)->refcnt)
249
250#endif /* __KERNEL__ */
251
60cad5da 252static __inline__ __be32 inet_make_mask(int logmask)
1da177e4
LT
253{
254 if (logmask)
84bc8868 255 return htonl(~((1U<<(32-logmask))-1));
1da177e4
LT
256 return 0;
257}
258
714e85be 259static __inline__ int inet_mask_len(__be32 mask)
1da177e4 260{
714e85be
AV
261 __u32 hmask = ntohl(mask);
262 if (!hmask)
1da177e4 263 return 0;
714e85be 264 return 32 - ffz(~hmask);
1da177e4
LT
265}
266
267
268#endif /* _LINUX_INETDEVICE_H */