Merge branch 'next' of git://git.monstr.eu/linux-2.6-microblaze
[deliverable/linux.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
LT
7#include <linux/if.h>
8#include <linux/netdevice.h>
9#include <linux/rcupdate.h>
10#include <linux/timer.h>
8bfe6d68 11#include <linux/sysctl.h>
95ae6b22 12#include <linux/rtnetlink.h>
1da177e4 13
02291680
EB
14enum
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,
d0daebc3 41 IPV4_DEVCONF_ROUTE_LOCALNET,
02291680
EB
42 __IPV4_DEVCONF_MAX
43};
44
ca7479eb
TG
45#define IPV4_DEVCONF_MAX (__IPV4_DEVCONF_MAX - 1)
46
d94d9fee 47struct ipv4_devconf {
1da177e4 48 void *sysctl;
ca7479eb
TG
49 int data[IPV4_DEVCONF_MAX];
50 DECLARE_BITMAP(state, IPV4_DEVCONF_MAX);
1da177e4
LT
51};
52
d94d9fee 53struct in_device {
1da177e4
LT
54 struct net_device *dev;
55 atomic_t refcnt;
56 int dead;
57 struct in_ifaddr *ifa_list; /* IP ifaddr chain */
1d7138de
ED
58 struct ip_mc_list __rcu *mc_list; /* IP multicast filter chain */
59 int mc_count; /* Number of installed mcasts */
1da177e4
LT
60 spinlock_t mc_tomb_lock;
61 struct ip_mc_list *mc_tomb;
62 unsigned long mr_v1_seen;
63 unsigned long mr_v2_seen;
64 unsigned long mr_maxdelay;
65 unsigned char mr_qrv;
66 unsigned char mr_gq_running;
67 unsigned char mr_ifc_count;
68 struct timer_list mr_gq_timer; /* general query timer */
69 struct timer_list mr_ifc_timer; /* interface change timer */
70
71 struct neigh_parms *arp_parms;
72 struct ipv4_devconf cnf;
73 struct rcu_head rcu_head;
74};
75
02291680 76#define IPV4_DEVCONF(cnf, attr) ((cnf).data[IPV4_DEVCONF_ ## attr - 1])
586f1211
PE
77#define IPV4_DEVCONF_ALL(net, attr) \
78 IPV4_DEVCONF((*(net)->ipv4.devconf_all), attr)
42f811b8
HX
79
80static inline int ipv4_devconf_get(struct in_device *in_dev, int index)
81{
82 index--;
83 return in_dev->cnf.data[index];
84}
85
86static inline void ipv4_devconf_set(struct in_device *in_dev, int index,
87 int val)
88{
89 index--;
31be3085 90 set_bit(index, in_dev->cnf.state);
42f811b8
HX
91 in_dev->cnf.data[index] = val;
92}
93
71e27da9
HX
94static inline void ipv4_devconf_setall(struct in_device *in_dev)
95{
ca7479eb 96 bitmap_fill(in_dev->cnf.state, IPV4_DEVCONF_MAX);
71e27da9
HX
97}
98
42f811b8 99#define IN_DEV_CONF_GET(in_dev, attr) \
02291680 100 ipv4_devconf_get((in_dev), IPV4_DEVCONF_ ## attr)
42f811b8 101#define IN_DEV_CONF_SET(in_dev, attr, val) \
02291680 102 ipv4_devconf_set((in_dev), IPV4_DEVCONF_ ## attr, (val))
42f811b8
HX
103
104#define IN_DEV_ANDCONF(in_dev, attr) \
c346dca1 105 (IPV4_DEVCONF_ALL(dev_net(in_dev->dev), attr) && \
586f1211 106 IN_DEV_CONF_GET((in_dev), attr))
9eb43e76
ED
107
108#define IN_DEV_NET_ORCONF(in_dev, net, attr) \
109 (IPV4_DEVCONF_ALL(net, attr) || \
586f1211 110 IN_DEV_CONF_GET((in_dev), attr))
9eb43e76
ED
111
112#define IN_DEV_ORCONF(in_dev, attr) \
113 IN_DEV_NET_ORCONF(in_dev, dev_net(in_dev->dev), attr)
114
42f811b8 115#define IN_DEV_MAXCONF(in_dev, attr) \
c346dca1 116 (max(IPV4_DEVCONF_ALL(dev_net(in_dev->dev), attr), \
586f1211 117 IN_DEV_CONF_GET((in_dev), attr)))
42f811b8
HX
118
119#define IN_DEV_FORWARD(in_dev) IN_DEV_CONF_GET((in_dev), FORWARDING)
01ecfe9b 120#define IN_DEV_MFORWARD(in_dev) IN_DEV_ANDCONF((in_dev), MC_FORWARDING)
27fed417 121#define IN_DEV_RPFILTER(in_dev) IN_DEV_MAXCONF((in_dev), RP_FILTER)
28f6aeea 122#define IN_DEV_SRC_VMARK(in_dev) IN_DEV_ORCONF((in_dev), SRC_VMARK)
42f811b8
HX
123#define IN_DEV_SOURCE_ROUTE(in_dev) IN_DEV_ANDCONF((in_dev), \
124 ACCEPT_SOURCE_ROUTE)
8153a10c 125#define IN_DEV_ACCEPT_LOCAL(in_dev) IN_DEV_ORCONF((in_dev), ACCEPT_LOCAL)
42f811b8
HX
126#define IN_DEV_BOOTP_RELAY(in_dev) IN_DEV_ANDCONF((in_dev), BOOTP_RELAY)
127
128#define IN_DEV_LOG_MARTIANS(in_dev) IN_DEV_ORCONF((in_dev), LOG_MARTIANS)
129#define IN_DEV_PROXY_ARP(in_dev) IN_DEV_ORCONF((in_dev), PROXY_ARP)
65324144 130#define IN_DEV_PROXY_ARP_PVLAN(in_dev) IN_DEV_CONF_GET(in_dev, PROXY_ARP_PVLAN)
42f811b8
HX
131#define IN_DEV_SHARED_MEDIA(in_dev) IN_DEV_ORCONF((in_dev), SHARED_MEDIA)
132#define IN_DEV_TX_REDIRECTS(in_dev) IN_DEV_ORCONF((in_dev), SEND_REDIRECTS)
133#define IN_DEV_SEC_REDIRECTS(in_dev) IN_DEV_ORCONF((in_dev), \
134 SECURE_REDIRECTS)
135#define IN_DEV_IDTAG(in_dev) IN_DEV_CONF_GET(in_dev, TAG)
136#define IN_DEV_MEDIUM_ID(in_dev) IN_DEV_CONF_GET(in_dev, MEDIUM_ID)
137#define IN_DEV_PROMOTE_SECONDARIES(in_dev) \
138 IN_DEV_ORCONF((in_dev), \
139 PROMOTE_SECONDARIES)
d0daebc3 140#define IN_DEV_ROUTE_LOCALNET(in_dev) IN_DEV_ORCONF(in_dev, ROUTE_LOCALNET)
9eb43e76
ED
141#define IN_DEV_NET_ROUTE_LOCALNET(in_dev, net) \
142 IN_DEV_NET_ORCONF(in_dev, net, ROUTE_LOCALNET)
1da177e4
LT
143
144#define IN_DEV_RX_REDIRECTS(in_dev) \
145 ((IN_DEV_FORWARD(in_dev) && \
42f811b8 146 IN_DEV_ANDCONF((in_dev), ACCEPT_REDIRECTS)) \
1da177e4 147 || (!IN_DEV_FORWARD(in_dev) && \
42f811b8 148 IN_DEV_ORCONF((in_dev), ACCEPT_REDIRECTS)))
1da177e4 149
42f811b8 150#define IN_DEV_ARPFILTER(in_dev) IN_DEV_ORCONF((in_dev), ARPFILTER)
124d37e9 151#define IN_DEV_ARP_ACCEPT(in_dev) IN_DEV_ORCONF((in_dev), ARP_ACCEPT)
42f811b8
HX
152#define IN_DEV_ARP_ANNOUNCE(in_dev) IN_DEV_MAXCONF((in_dev), ARP_ANNOUNCE)
153#define IN_DEV_ARP_IGNORE(in_dev) IN_DEV_MAXCONF((in_dev), ARP_IGNORE)
eefef1cf 154#define IN_DEV_ARP_NOTIFY(in_dev) IN_DEV_MAXCONF((in_dev), ARP_NOTIFY)
1da177e4 155
d94d9fee 156struct in_ifaddr {
fd23c3b3 157 struct hlist_node hash;
1da177e4
LT
158 struct in_ifaddr *ifa_next;
159 struct in_device *ifa_dev;
160 struct rcu_head rcu_head;
a144ea4b
AV
161 __be32 ifa_local;
162 __be32 ifa_address;
163 __be32 ifa_mask;
164 __be32 ifa_broadcast;
1da177e4
LT
165 unsigned char ifa_scope;
166 unsigned char ifa_flags;
167 unsigned char ifa_prefixlen;
168 char ifa_label[IFNAMSIZ];
169};
170
171extern int register_inetaddr_notifier(struct notifier_block *nb);
172extern int unregister_inetaddr_notifier(struct notifier_block *nb);
173
82efee14
ED
174extern struct net_device *__ip_dev_find(struct net *net, __be32 addr, bool devref);
175static inline struct net_device *ip_dev_find(struct net *net, __be32 addr)
176{
177 return __ip_dev_find(net, addr, true);
178}
179
ff428d72 180extern int inet_addr_onlink(struct in_device *in_dev, __be32 a, __be32 b);
e5b13cb1 181extern int devinet_ioctl(struct net *net, unsigned int cmd, void __user *);
1da177e4 182extern void devinet_init(void);
7fee0ca2 183extern struct in_device *inetdev_by_index(struct net *, int);
a61ced5d 184extern __be32 inet_select_addr(const struct net_device *dev, __be32 dst, int scope);
9bd85e32 185extern __be32 inet_confirm_addr(struct in_device *in_dev, __be32 dst, __be32 local, int scope);
60cad5da 186extern struct in_ifaddr *inet_ifa_byprefix(struct in_device *in_dev, __be32 prefix, __be32 mask);
1da177e4 187
60cad5da 188static __inline__ int inet_ifa_match(__be32 addr, struct in_ifaddr *ifa)
1da177e4
LT
189{
190 return !((addr^ifa->ifa_address)&ifa->ifa_mask);
191}
192
193/*
194 * Check if a mask is acceptable.
195 */
196
714e85be 197static __inline__ int bad_mask(__be32 mask, __be32 addr)
1da177e4 198{
714e85be 199 __u32 hmask;
1da177e4
LT
200 if (addr & (mask = ~mask))
201 return 1;
714e85be
AV
202 hmask = ntohl(mask);
203 if (hmask & (hmask+1))
1da177e4
LT
204 return 1;
205 return 0;
206}
207
208#define for_primary_ifa(in_dev) { struct in_ifaddr *ifa; \
209 for (ifa = (in_dev)->ifa_list; ifa && !(ifa->ifa_flags&IFA_F_SECONDARY); ifa = ifa->ifa_next)
210
211#define for_ifa(in_dev) { struct in_ifaddr *ifa; \
212 for (ifa = (in_dev)->ifa_list; ifa; ifa = ifa->ifa_next)
213
214
215#define endfor_ifa(in_dev) }
216
e5ed6399
HX
217static inline struct in_device *__in_dev_get_rcu(const struct net_device *dev)
218{
95ae6b22 219 return rcu_dereference(dev->ip_ptr);
e5ed6399
HX
220}
221
95ae6b22 222static inline struct in_device *in_dev_get(const struct net_device *dev)
1da177e4
LT
223{
224 struct in_device *in_dev;
225
226 rcu_read_lock();
e5ed6399 227 in_dev = __in_dev_get_rcu(dev);
1da177e4
LT
228 if (in_dev)
229 atomic_inc(&in_dev->refcnt);
230 rcu_read_unlock();
231 return in_dev;
232}
233
95ae6b22 234static inline struct in_device *__in_dev_get_rtnl(const struct net_device *dev)
1da177e4 235{
06a9701f 236 return rtnl_dereference(dev->ip_ptr);
1da177e4
LT
237}
238
239extern void in_dev_finish_destroy(struct in_device *idev);
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)
255 return htonl(~((1<<(32-logmask))-1));
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 */
This page took 0.904932 seconds and 5 git commands to generate.