1 #ifndef _NET_NEIGHBOUR_H
2 #define _NET_NEIGHBOUR_H
4 #include <linux/neighbour.h>
7 * Generic neighbour manipulation
10 * Pedro Roque <roque@di.fc.ul.pt>
11 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
15 * Harald Welte: <laforge@gnumonks.org>
16 * - Add neighbour cache statistics like rtstat
19 #include <asm/atomic.h>
20 #include <linux/netdevice.h>
21 #include <linux/skbuff.h>
22 #include <linux/rcupdate.h>
23 #include <linux/seq_file.h>
25 #include <linux/err.h>
26 #include <linux/sysctl.h>
27 #include <linux/workqueue.h>
28 #include <net/rtnetlink.h>
30 #define NUD_IN_TIMER (NUD_INCOMPLETE|NUD_REACHABLE|NUD_DELAY|NUD_PROBE)
31 #define NUD_VALID (NUD_PERMANENT|NUD_NOARP|NUD_REACHABLE|NUD_PROBE|NUD_STALE|NUD_DELAY)
32 #define NUD_CONNECTED (NUD_PERMANENT|NUD_NOARP|NUD_REACHABLE)
38 struct net_device
*dev
;
39 struct neigh_parms
*next
;
40 int (*neigh_setup
)(struct neighbour
*);
41 void (*neigh_cleanup
)(struct neighbour
*);
42 struct neigh_table
*tbl
;
48 struct rcu_head rcu_head
;
50 int base_reachable_time
;
66 struct neigh_statistics
68 unsigned long allocs
; /* number of allocated neighs */
69 unsigned long destroys
; /* number of destroyed neighs */
70 unsigned long hash_grows
; /* number of hash resizes */
72 unsigned long res_failed
; /* nomber of failed resolutions */
74 unsigned long lookups
; /* number of lookups */
75 unsigned long hits
; /* number of hits (among lookups) */
77 unsigned long rcv_probes_mcast
; /* number of received mcast ipv6 */
78 unsigned long rcv_probes_ucast
; /* number of received ucast ipv6 */
80 unsigned long periodic_gc_runs
; /* number of periodic GC runs */
81 unsigned long forced_gc_runs
; /* number of forced GC runs */
84 #define NEIGH_CACHE_STAT_INC(tbl, field) \
87 (per_cpu_ptr((tbl)->stats, smp_processor_id())->field)++; \
93 struct neighbour
*next
;
94 struct neigh_table
*tbl
;
95 struct neigh_parms
*parms
;
96 struct net_device
*dev
;
98 unsigned long confirmed
;
99 unsigned long updated
;
106 unsigned char ha
[ALIGN(MAX_ADDR_LEN
, sizeof(unsigned long))];
109 int (*output
)(struct sk_buff
*skb
);
110 struct sk_buff_head arp_queue
;
111 struct timer_list timer
;
112 struct neigh_ops
*ops
;
119 void (*solicit
)(struct neighbour
*, struct sk_buff
*);
120 void (*error_report
)(struct neighbour
*, struct sk_buff
*);
121 int (*output
)(struct sk_buff
*);
122 int (*connected_output
)(struct sk_buff
*);
123 int (*hh_output
)(struct sk_buff
*);
124 int (*queue_xmit
)(struct sk_buff
*);
129 struct pneigh_entry
*next
;
130 struct net_device
*dev
;
136 * neighbour table manipulation
142 struct neigh_table
*next
;
146 __u32 (*hash
)(const void *pkey
, const struct net_device
*);
147 int (*constructor
)(struct neighbour
*);
148 int (*pconstructor
)(struct pneigh_entry
*);
149 void (*pdestructor
)(struct pneigh_entry
*);
150 void (*proxy_redo
)(struct sk_buff
*skb
);
152 struct neigh_parms parms
;
153 /* HACK. gc_* shoul follow parms without a gap! */
158 unsigned long last_flush
;
159 struct delayed_work gc_work
;
160 struct timer_list proxy_timer
;
161 struct sk_buff_head proxy_queue
;
164 unsigned long last_rand
;
165 struct kmem_cache
*kmem_cachep
;
166 struct neigh_statistics
*stats
;
167 struct neighbour
**hash_buckets
;
168 unsigned int hash_mask
;
170 struct pneigh_entry
**phash_buckets
;
171 #ifdef CONFIG_PROC_FS
172 struct proc_dir_entry
*pde
;
176 /* flags for neigh_update() */
177 #define NEIGH_UPDATE_F_OVERRIDE 0x00000001
178 #define NEIGH_UPDATE_F_WEAK_OVERRIDE 0x00000002
179 #define NEIGH_UPDATE_F_OVERRIDE_ISROUTER 0x00000004
180 #define NEIGH_UPDATE_F_ISROUTER 0x40000000
181 #define NEIGH_UPDATE_F_ADMIN 0x80000000
183 extern void neigh_table_init(struct neigh_table
*tbl
);
184 extern void neigh_table_init_no_netlink(struct neigh_table
*tbl
);
185 extern int neigh_table_clear(struct neigh_table
*tbl
);
186 extern struct neighbour
* neigh_lookup(struct neigh_table
*tbl
,
188 struct net_device
*dev
);
189 extern struct neighbour
* neigh_lookup_nodev(struct neigh_table
*tbl
,
191 extern struct neighbour
* neigh_create(struct neigh_table
*tbl
,
193 struct net_device
*dev
);
194 extern void neigh_destroy(struct neighbour
*neigh
);
195 extern int __neigh_event_send(struct neighbour
*neigh
, struct sk_buff
*skb
);
196 extern int neigh_update(struct neighbour
*neigh
, const u8
*lladdr
, u8
new,
198 extern void neigh_changeaddr(struct neigh_table
*tbl
, struct net_device
*dev
);
199 extern int neigh_ifdown(struct neigh_table
*tbl
, struct net_device
*dev
);
200 extern int neigh_resolve_output(struct sk_buff
*skb
);
201 extern int neigh_connected_output(struct sk_buff
*skb
);
202 extern int neigh_compat_output(struct sk_buff
*skb
);
203 extern struct neighbour
*neigh_event_ns(struct neigh_table
*tbl
,
204 u8
*lladdr
, void *saddr
,
205 struct net_device
*dev
);
207 extern struct neigh_parms
*neigh_parms_alloc(struct net_device
*dev
, struct neigh_table
*tbl
);
208 extern void neigh_parms_release(struct neigh_table
*tbl
, struct neigh_parms
*parms
);
209 extern void neigh_parms_destroy(struct neigh_parms
*parms
);
210 extern unsigned long neigh_rand_reach_time(unsigned long base
);
212 extern void pneigh_enqueue(struct neigh_table
*tbl
, struct neigh_parms
*p
,
213 struct sk_buff
*skb
);
214 extern struct pneigh_entry
*pneigh_lookup(struct neigh_table
*tbl
, const void *key
, struct net_device
*dev
, int creat
);
215 extern int pneigh_delete(struct neigh_table
*tbl
, const void *key
, struct net_device
*dev
);
217 extern void neigh_app_ns(struct neighbour
*n
);
218 extern void neigh_for_each(struct neigh_table
*tbl
, void (*cb
)(struct neighbour
*, void *), void *cookie
);
219 extern void __neigh_for_each_release(struct neigh_table
*tbl
, int (*cb
)(struct neighbour
*));
220 extern void pneigh_for_each(struct neigh_table
*tbl
, void (*cb
)(struct pneigh_entry
*));
222 struct neigh_seq_state
{
223 struct neigh_table
*tbl
;
224 void *(*neigh_sub_iter
)(struct neigh_seq_state
*state
,
225 struct neighbour
*n
, loff_t
*pos
);
228 #define NEIGH_SEQ_NEIGH_ONLY 0x00000001
229 #define NEIGH_SEQ_IS_PNEIGH 0x00000002
230 #define NEIGH_SEQ_SKIP_NOARP 0x00000004
232 extern void *neigh_seq_start(struct seq_file
*, loff_t
*, struct neigh_table
*, unsigned int);
233 extern void *neigh_seq_next(struct seq_file
*, void *, loff_t
*);
234 extern void neigh_seq_stop(struct seq_file
*, void *);
236 extern int neigh_sysctl_register(struct net_device
*dev
,
237 struct neigh_parms
*p
,
238 int p_id
, int pdev_id
,
240 proc_handler
*proc_handler
,
241 ctl_handler
*strategy
);
242 extern void neigh_sysctl_unregister(struct neigh_parms
*p
);
244 static inline void __neigh_parms_put(struct neigh_parms
*parms
)
246 atomic_dec(&parms
->refcnt
);
249 static inline void neigh_parms_put(struct neigh_parms
*parms
)
251 if (atomic_dec_and_test(&parms
->refcnt
))
252 neigh_parms_destroy(parms
);
255 static inline struct neigh_parms
*neigh_parms_clone(struct neigh_parms
*parms
)
257 atomic_inc(&parms
->refcnt
);
262 * Neighbour references
265 static inline void neigh_release(struct neighbour
*neigh
)
267 if (atomic_dec_and_test(&neigh
->refcnt
))
268 neigh_destroy(neigh
);
271 static inline struct neighbour
* neigh_clone(struct neighbour
*neigh
)
274 atomic_inc(&neigh
->refcnt
);
278 #define neigh_hold(n) atomic_inc(&(n)->refcnt)
280 static inline void neigh_confirm(struct neighbour
*neigh
)
283 neigh
->confirmed
= jiffies
;
286 static inline int neigh_is_connected(struct neighbour
*neigh
)
288 return neigh
->nud_state
&NUD_CONNECTED
;
291 static inline int neigh_is_valid(struct neighbour
*neigh
)
293 return neigh
->nud_state
&NUD_VALID
;
296 static inline int neigh_event_send(struct neighbour
*neigh
, struct sk_buff
*skb
)
298 neigh
->used
= jiffies
;
299 if (!(neigh
->nud_state
&(NUD_CONNECTED
|NUD_DELAY
|NUD_PROBE
)))
300 return __neigh_event_send(neigh
, skb
);
304 static inline int neigh_hh_output(struct hh_cache
*hh
, struct sk_buff
*skb
)
312 seq
= read_seqbegin(&hh
->hh_lock
);
314 hh_alen
= HH_DATA_ALIGN(hh_len
);
315 memcpy(skb
->data
- hh_alen
, hh
->hh_data
, hh_alen
);
316 } while (read_seqretry(&hh
->hh_lock
, seq
));
318 skb_push(skb
, hh_len
);
319 return hh
->hh_output(skb
);
322 static inline struct neighbour
*
323 __neigh_lookup(struct neigh_table
*tbl
, const void *pkey
, struct net_device
*dev
, int creat
)
325 struct neighbour
*n
= neigh_lookup(tbl
, pkey
, dev
);
330 n
= neigh_create(tbl
, pkey
, dev
);
331 return IS_ERR(n
) ? NULL
: n
;
334 static inline struct neighbour
*
335 __neigh_lookup_errno(struct neigh_table
*tbl
, const void *pkey
,
336 struct net_device
*dev
)
338 struct neighbour
*n
= neigh_lookup(tbl
, pkey
, dev
);
343 return neigh_create(tbl
, pkey
, dev
);
346 struct neighbour_cb
{
347 unsigned long sched_next
;
351 #define LOCALLY_ENQUEUED 0x1
353 #define NEIGH_CB(skb) ((struct neighbour_cb *)(skb)->cb)