inetdevice.h 7.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5
#ifndef _LINUX_INETDEVICE_H
#define _LINUX_INETDEVICE_H

#ifdef __KERNEL__

6
#include <linux/bitmap.h>
L
Linus Torvalds 已提交
7
#include <linux/if.h>
S
stephen hemminger 已提交
8
#include <linux/ip.h>
L
Linus Torvalds 已提交
9 10 11
#include <linux/netdevice.h>
#include <linux/rcupdate.h>
#include <linux/timer.h>
12
#include <linux/sysctl.h>
E
Eric Dumazet 已提交
13
#include <linux/rtnetlink.h>
L
Linus Torvalds 已提交
14

E
Eric Dumazet 已提交
15
struct ipv4_devconf {
L
Linus Torvalds 已提交
16
	void	*sysctl;
T
Thomas Graf 已提交
17 18
	int	data[IPV4_DEVCONF_MAX];
	DECLARE_BITMAP(state, IPV4_DEVCONF_MAX);
L
Linus Torvalds 已提交
19 20
};

21 22
#define MC_HASH_SZ_LOG 9

E
Eric Dumazet 已提交
23
struct in_device {
L
Linus Torvalds 已提交
24 25 26 27
	struct net_device	*dev;
	atomic_t		refcnt;
	int			dead;
	struct in_ifaddr	*ifa_list;	/* IP ifaddr chain		*/
28

29
	struct ip_mc_list __rcu	*mc_list;	/* IP multicast filter chain    */
30 31
	struct ip_mc_list __rcu	* __rcu *mc_hash;

32
	int			mc_count;	/* Number of installed mcasts	*/
L
Linus Torvalds 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
	spinlock_t		mc_tomb_lock;
	struct ip_mc_list	*mc_tomb;
	unsigned long		mr_v1_seen;
	unsigned long		mr_v2_seen;
	unsigned long		mr_maxdelay;
	unsigned char		mr_qrv;
	unsigned char		mr_gq_running;
	unsigned char		mr_ifc_count;
	struct timer_list	mr_gq_timer;	/* general query timer */
	struct timer_list	mr_ifc_timer;	/* interface change timer */

	struct neigh_parms	*arp_parms;
	struct ipv4_devconf	cnf;
	struct rcu_head		rcu_head;
};

49
#define IPV4_DEVCONF(cnf, attr) ((cnf).data[IPV4_DEVCONF_ ## attr - 1])
50 51
#define IPV4_DEVCONF_ALL(net, attr) \
	IPV4_DEVCONF((*(net)->ipv4.devconf_all), attr)
52 53 54 55 56 57 58 59 60 61 62

static inline int ipv4_devconf_get(struct in_device *in_dev, int index)
{
	index--;
	return in_dev->cnf.data[index];
}

static inline void ipv4_devconf_set(struct in_device *in_dev, int index,
				    int val)
{
	index--;
63
	set_bit(index, in_dev->cnf.state);
64 65 66
	in_dev->cnf.data[index] = val;
}

67 68
static inline void ipv4_devconf_setall(struct in_device *in_dev)
{
T
Thomas Graf 已提交
69
	bitmap_fill(in_dev->cnf.state, IPV4_DEVCONF_MAX);
70 71
}

72
#define IN_DEV_CONF_GET(in_dev, attr) \
73
	ipv4_devconf_get((in_dev), IPV4_DEVCONF_ ## attr)
74
#define IN_DEV_CONF_SET(in_dev, attr, val) \
75
	ipv4_devconf_set((in_dev), IPV4_DEVCONF_ ## attr, (val))
76 77

#define IN_DEV_ANDCONF(in_dev, attr) \
78
	(IPV4_DEVCONF_ALL(dev_net(in_dev->dev), attr) && \
79
	 IN_DEV_CONF_GET((in_dev), attr))
80 81 82

#define IN_DEV_NET_ORCONF(in_dev, net, attr) \
	(IPV4_DEVCONF_ALL(net, attr) || \
83
	 IN_DEV_CONF_GET((in_dev), attr))
84 85 86 87

#define IN_DEV_ORCONF(in_dev, attr) \
	IN_DEV_NET_ORCONF(in_dev, dev_net(in_dev->dev), attr)

88
#define IN_DEV_MAXCONF(in_dev, attr) \
89
	(max(IPV4_DEVCONF_ALL(dev_net(in_dev->dev), attr), \
90
	     IN_DEV_CONF_GET((in_dev), attr)))
91 92

#define IN_DEV_FORWARD(in_dev)		IN_DEV_CONF_GET((in_dev), FORWARDING)
93
#define IN_DEV_MFORWARD(in_dev)		IN_DEV_ANDCONF((in_dev), MC_FORWARDING)
94
#define IN_DEV_RPFILTER(in_dev)		IN_DEV_MAXCONF((in_dev), RP_FILTER)
95
#define IN_DEV_SRC_VMARK(in_dev)    	IN_DEV_ORCONF((in_dev), SRC_VMARK)
96 97
#define IN_DEV_SOURCE_ROUTE(in_dev)	IN_DEV_ANDCONF((in_dev), \
						       ACCEPT_SOURCE_ROUTE)
98
#define IN_DEV_ACCEPT_LOCAL(in_dev)	IN_DEV_ORCONF((in_dev), ACCEPT_LOCAL)
99 100 101 102
#define IN_DEV_BOOTP_RELAY(in_dev)	IN_DEV_ANDCONF((in_dev), BOOTP_RELAY)

#define IN_DEV_LOG_MARTIANS(in_dev)	IN_DEV_ORCONF((in_dev), LOG_MARTIANS)
#define IN_DEV_PROXY_ARP(in_dev)	IN_DEV_ORCONF((in_dev), PROXY_ARP)
103
#define IN_DEV_PROXY_ARP_PVLAN(in_dev)	IN_DEV_CONF_GET(in_dev, PROXY_ARP_PVLAN)
104 105 106 107 108 109 110 111 112
#define IN_DEV_SHARED_MEDIA(in_dev)	IN_DEV_ORCONF((in_dev), SHARED_MEDIA)
#define IN_DEV_TX_REDIRECTS(in_dev)	IN_DEV_ORCONF((in_dev), SEND_REDIRECTS)
#define IN_DEV_SEC_REDIRECTS(in_dev)	IN_DEV_ORCONF((in_dev), \
						      SECURE_REDIRECTS)
#define IN_DEV_IDTAG(in_dev)		IN_DEV_CONF_GET(in_dev, TAG)
#define IN_DEV_MEDIUM_ID(in_dev)	IN_DEV_CONF_GET(in_dev, MEDIUM_ID)
#define IN_DEV_PROMOTE_SECONDARIES(in_dev) \
					IN_DEV_ORCONF((in_dev), \
						      PROMOTE_SECONDARIES)
113
#define IN_DEV_ROUTE_LOCALNET(in_dev)	IN_DEV_ORCONF(in_dev, ROUTE_LOCALNET)
114 115
#define IN_DEV_NET_ROUTE_LOCALNET(in_dev, net)	\
	IN_DEV_NET_ORCONF(in_dev, net, ROUTE_LOCALNET)
L
Linus Torvalds 已提交
116 117 118

#define IN_DEV_RX_REDIRECTS(in_dev) \
	((IN_DEV_FORWARD(in_dev) && \
119
	  IN_DEV_ANDCONF((in_dev), ACCEPT_REDIRECTS)) \
L
Linus Torvalds 已提交
120
	 || (!IN_DEV_FORWARD(in_dev) && \
121
	  IN_DEV_ORCONF((in_dev), ACCEPT_REDIRECTS)))
L
Linus Torvalds 已提交
122

123
#define IN_DEV_ARPFILTER(in_dev)	IN_DEV_ORCONF((in_dev), ARPFILTER)
124
#define IN_DEV_ARP_ACCEPT(in_dev)	IN_DEV_ORCONF((in_dev), ARP_ACCEPT)
125 126
#define IN_DEV_ARP_ANNOUNCE(in_dev)	IN_DEV_MAXCONF((in_dev), ARP_ANNOUNCE)
#define IN_DEV_ARP_IGNORE(in_dev)	IN_DEV_MAXCONF((in_dev), ARP_IGNORE)
127
#define IN_DEV_ARP_NOTIFY(in_dev)	IN_DEV_MAXCONF((in_dev), ARP_NOTIFY)
L
Linus Torvalds 已提交
128

E
Eric Dumazet 已提交
129
struct in_ifaddr {
130
	struct hlist_node	hash;
L
Linus Torvalds 已提交
131 132 133
	struct in_ifaddr	*ifa_next;
	struct in_device	*ifa_dev;
	struct rcu_head		rcu_head;
A
Al Viro 已提交
134 135 136 137
	__be32			ifa_local;
	__be32			ifa_address;
	__be32			ifa_mask;
	__be32			ifa_broadcast;
L
Linus Torvalds 已提交
138 139
	unsigned char		ifa_scope;
	unsigned char		ifa_prefixlen;
140
	__u32			ifa_flags;
L
Linus Torvalds 已提交
141
	char			ifa_label[IFNAMSIZ];
J
Jiri Pirko 已提交
142 143 144 145 146 147

	/* In seconds, relative to tstamp. Expiry is at tstamp + HZ * lft. */
	__u32			ifa_valid_lft;
	__u32			ifa_preferred_lft;
	unsigned long		ifa_cstamp; /* created timestamp */
	unsigned long		ifa_tstamp; /* updated timestamp */
L
Linus Torvalds 已提交
148 149
};

150 151
int register_inetaddr_notifier(struct notifier_block *nb);
int unregister_inetaddr_notifier(struct notifier_block *nb);
L
Linus Torvalds 已提交
152

153 154
void inet_netconf_notify_devconf(struct net *net, int type, int ifindex,
				 struct ipv4_devconf *devconf);
155

156
struct net_device *__ip_dev_find(struct net *net, __be32 addr, bool devref);
E
Eric Dumazet 已提交
157 158 159 160 161
static inline struct net_device *ip_dev_find(struct net *net, __be32 addr)
{
	return __ip_dev_find(net, addr, true);
}

162 163 164 165 166
int inet_addr_onlink(struct in_device *in_dev, __be32 a, __be32 b);
int devinet_ioctl(struct net *net, unsigned int cmd, void __user *);
void devinet_init(void);
struct in_device *inetdev_by_index(struct net *, int);
__be32 inet_select_addr(const struct net_device *dev, __be32 dst, int scope);
167 168
__be32 inet_confirm_addr(struct net *net, struct in_device *in_dev, __be32 dst,
			 __be32 local, int scope);
169 170
struct in_ifaddr *inet_ifa_byprefix(struct in_device *in_dev, __be32 prefix,
				    __be32 mask);
A
Al Viro 已提交
171
static __inline__ int inet_ifa_match(__be32 addr, struct in_ifaddr *ifa)
L
Linus Torvalds 已提交
172 173 174 175 176 177 178 179
{
	return !((addr^ifa->ifa_address)&ifa->ifa_mask);
}

/*
 *	Check if a mask is acceptable.
 */
 
180
static __inline__ int bad_mask(__be32 mask, __be32 addr)
L
Linus Torvalds 已提交
181
{
182
	__u32 hmask;
L
Linus Torvalds 已提交
183 184
	if (addr & (mask = ~mask))
		return 1;
185 186
	hmask = ntohl(mask);
	if (hmask & (hmask+1))
L
Linus Torvalds 已提交
187 188 189 190 191 192 193 194 195 196 197 198 199
		return 1;
	return 0;
}

#define for_primary_ifa(in_dev)	{ struct in_ifaddr *ifa; \
  for (ifa = (in_dev)->ifa_list; ifa && !(ifa->ifa_flags&IFA_F_SECONDARY); ifa = ifa->ifa_next)

#define for_ifa(in_dev)	{ struct in_ifaddr *ifa; \
  for (ifa = (in_dev)->ifa_list; ifa; ifa = ifa->ifa_next)


#define endfor_ifa(in_dev) }

200 201
static inline struct in_device *__in_dev_get_rcu(const struct net_device *dev)
{
E
Eric Dumazet 已提交
202
	return rcu_dereference(dev->ip_ptr);
203 204
}

E
Eric Dumazet 已提交
205
static inline struct in_device *in_dev_get(const struct net_device *dev)
L
Linus Torvalds 已提交
206 207 208 209
{
	struct in_device *in_dev;

	rcu_read_lock();
210
	in_dev = __in_dev_get_rcu(dev);
L
Linus Torvalds 已提交
211 212 213 214 215 216
	if (in_dev)
		atomic_inc(&in_dev->refcnt);
	rcu_read_unlock();
	return in_dev;
}

E
Eric Dumazet 已提交
217
static inline struct in_device *__in_dev_get_rtnl(const struct net_device *dev)
L
Linus Torvalds 已提交
218
{
219
	return rtnl_dereference(dev->ip_ptr);
L
Linus Torvalds 已提交
220 221
}

222 223 224 225 226 227 228
static inline struct neigh_parms *__in_dev_arp_parms_get_rcu(const struct net_device *dev)
{
	struct in_device *in_dev = __in_dev_get_rcu(dev);

	return in_dev ? in_dev->arp_parms : NULL;
}

229
void in_dev_finish_destroy(struct in_device *idev);
L
Linus Torvalds 已提交
230 231 232 233 234 235 236 237 238 239 240 241

static inline void in_dev_put(struct in_device *idev)
{
	if (atomic_dec_and_test(&idev->refcnt))
		in_dev_finish_destroy(idev);
}

#define __in_dev_put(idev)  atomic_dec(&(idev)->refcnt)
#define in_dev_hold(idev)   atomic_inc(&(idev)->refcnt)

#endif /* __KERNEL__ */

A
Al Viro 已提交
242
static __inline__ __be32 inet_make_mask(int logmask)
L
Linus Torvalds 已提交
243 244 245 246 247 248
{
	if (logmask)
		return htonl(~((1<<(32-logmask))-1));
	return 0;
}

249
static __inline__ int inet_mask_len(__be32 mask)
L
Linus Torvalds 已提交
250
{
251 252
	__u32 hmask = ntohl(mask);
	if (!hmask)
L
Linus Torvalds 已提交
253
		return 0;
254
	return 32 - ffz(~hmask);
L
Linus Torvalds 已提交
255 256 257 258
}


#endif /* _LINUX_INETDEVICE_H */