11da177e4SLinus Torvalds /* 21da177e4SLinus Torvalds * Generic address resolution entity 31da177e4SLinus Torvalds * 41da177e4SLinus Torvalds * Authors: 51da177e4SLinus Torvalds * Pedro Roque <roque@di.fc.ul.pt> 61da177e4SLinus Torvalds * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> 71da177e4SLinus Torvalds * 81da177e4SLinus Torvalds * This program is free software; you can redistribute it and/or 91da177e4SLinus Torvalds * modify it under the terms of the GNU General Public License 101da177e4SLinus Torvalds * as published by the Free Software Foundation; either version 111da177e4SLinus Torvalds * 2 of the License, or (at your option) any later version. 121da177e4SLinus Torvalds * 131da177e4SLinus Torvalds * Fixes: 141da177e4SLinus Torvalds * Vitaly E. Lavrov releasing NULL neighbor in neigh_add. 151da177e4SLinus Torvalds * Harald Welte Add neighbour cache statistics like rtstat 161da177e4SLinus Torvalds */ 171da177e4SLinus Torvalds 185a0e3ad6STejun Heo #include <linux/slab.h> 191da177e4SLinus Torvalds #include <linux/types.h> 201da177e4SLinus Torvalds #include <linux/kernel.h> 211da177e4SLinus Torvalds #include <linux/module.h> 221da177e4SLinus Torvalds #include <linux/socket.h> 231da177e4SLinus Torvalds #include <linux/netdevice.h> 241da177e4SLinus Torvalds #include <linux/proc_fs.h> 251da177e4SLinus Torvalds #ifdef CONFIG_SYSCTL 261da177e4SLinus Torvalds #include <linux/sysctl.h> 271da177e4SLinus Torvalds #endif 281da177e4SLinus Torvalds #include <linux/times.h> 29457c4cbcSEric W. Biederman #include <net/net_namespace.h> 301da177e4SLinus Torvalds #include <net/neighbour.h> 311da177e4SLinus Torvalds #include <net/dst.h> 321da177e4SLinus Torvalds #include <net/sock.h> 338d71740cSTom Tucker #include <net/netevent.h> 34a14a49d2SThomas Graf #include <net/netlink.h> 351da177e4SLinus Torvalds #include <linux/rtnetlink.h> 361da177e4SLinus Torvalds #include <linux/random.h> 37543537bdSPaulo Marques #include <linux/string.h> 38c3609d51Svignesh babu #include <linux/log2.h> 391da177e4SLinus Torvalds 401da177e4SLinus Torvalds #define NEIGH_DEBUG 1 411da177e4SLinus Torvalds 421da177e4SLinus Torvalds #define NEIGH_PRINTK(x...) printk(x) 431da177e4SLinus Torvalds #define NEIGH_NOPRINTK(x...) do { ; } while(0) 441da177e4SLinus Torvalds #define NEIGH_PRINTK0 NEIGH_PRINTK 451da177e4SLinus Torvalds #define NEIGH_PRINTK1 NEIGH_NOPRINTK 461da177e4SLinus Torvalds #define NEIGH_PRINTK2 NEIGH_NOPRINTK 471da177e4SLinus Torvalds 481da177e4SLinus Torvalds #if NEIGH_DEBUG >= 1 491da177e4SLinus Torvalds #undef NEIGH_PRINTK1 501da177e4SLinus Torvalds #define NEIGH_PRINTK1 NEIGH_PRINTK 511da177e4SLinus Torvalds #endif 521da177e4SLinus Torvalds #if NEIGH_DEBUG >= 2 531da177e4SLinus Torvalds #undef NEIGH_PRINTK2 541da177e4SLinus Torvalds #define NEIGH_PRINTK2 NEIGH_PRINTK 551da177e4SLinus Torvalds #endif 561da177e4SLinus Torvalds 571da177e4SLinus Torvalds #define PNEIGH_HASHMASK 0xF 581da177e4SLinus Torvalds 591da177e4SLinus Torvalds static void neigh_timer_handler(unsigned long arg); 60d961db35SThomas Graf static void __neigh_notify(struct neighbour *n, int type, int flags); 61d961db35SThomas Graf static void neigh_update_notify(struct neighbour *neigh); 621da177e4SLinus Torvalds static int pneigh_ifdown(struct neigh_table *tbl, struct net_device *dev); 631da177e4SLinus Torvalds 641da177e4SLinus Torvalds static struct neigh_table *neigh_tables; 6545fc3b11SAmos Waterland #ifdef CONFIG_PROC_FS 669a32144eSArjan van de Ven static const struct file_operations neigh_stat_seq_fops; 6745fc3b11SAmos Waterland #endif 681da177e4SLinus Torvalds 691da177e4SLinus Torvalds /* 701da177e4SLinus Torvalds Neighbour hash table buckets are protected with rwlock tbl->lock. 711da177e4SLinus Torvalds 721da177e4SLinus Torvalds - All the scans/updates to hash buckets MUST be made under this lock. 731da177e4SLinus Torvalds - NOTHING clever should be made under this lock: no callbacks 741da177e4SLinus Torvalds to protocol backends, no attempts to send something to network. 751da177e4SLinus Torvalds It will result in deadlocks, if backend/driver wants to use neighbour 761da177e4SLinus Torvalds cache. 771da177e4SLinus Torvalds - If the entry requires some non-trivial actions, increase 781da177e4SLinus Torvalds its reference count and release table lock. 791da177e4SLinus Torvalds 801da177e4SLinus Torvalds Neighbour entries are protected: 811da177e4SLinus Torvalds - with reference count. 821da177e4SLinus Torvalds - with rwlock neigh->lock 831da177e4SLinus Torvalds 841da177e4SLinus Torvalds Reference count prevents destruction. 851da177e4SLinus Torvalds 861da177e4SLinus Torvalds neigh->lock mainly serializes ll address data and its validity state. 871da177e4SLinus Torvalds However, the same lock is used to protect another entry fields: 881da177e4SLinus Torvalds - timer 891da177e4SLinus Torvalds - resolution queue 901da177e4SLinus Torvalds 911da177e4SLinus Torvalds Again, nothing clever shall be made under neigh->lock, 921da177e4SLinus Torvalds the most complicated procedure, which we allow is dev->hard_header. 931da177e4SLinus Torvalds It is supposed, that dev->hard_header is simplistic and does 941da177e4SLinus Torvalds not make callbacks to neighbour tables. 951da177e4SLinus Torvalds 961da177e4SLinus Torvalds The last lock is neigh_tbl_lock. It is pure SMP lock, protecting 971da177e4SLinus Torvalds list of neighbour tables. This list is used only in process context, 981da177e4SLinus Torvalds */ 991da177e4SLinus Torvalds 1001da177e4SLinus Torvalds static DEFINE_RWLOCK(neigh_tbl_lock); 1011da177e4SLinus Torvalds 1021da177e4SLinus Torvalds static int neigh_blackhole(struct sk_buff *skb) 1031da177e4SLinus Torvalds { 1041da177e4SLinus Torvalds kfree_skb(skb); 1051da177e4SLinus Torvalds return -ENETDOWN; 1061da177e4SLinus Torvalds } 1071da177e4SLinus Torvalds 1084f494554SThomas Graf static void neigh_cleanup_and_release(struct neighbour *neigh) 1094f494554SThomas Graf { 1104f494554SThomas Graf if (neigh->parms->neigh_cleanup) 1114f494554SThomas Graf neigh->parms->neigh_cleanup(neigh); 1124f494554SThomas Graf 113d961db35SThomas Graf __neigh_notify(neigh, RTM_DELNEIGH, 0); 1144f494554SThomas Graf neigh_release(neigh); 1154f494554SThomas Graf } 1164f494554SThomas Graf 1171da177e4SLinus Torvalds /* 1181da177e4SLinus Torvalds * It is random distribution in the interval (1/2)*base...(3/2)*base. 1191da177e4SLinus Torvalds * It corresponds to default IPv6 settings and is not overridable, 1201da177e4SLinus Torvalds * because it is really reasonable choice. 1211da177e4SLinus Torvalds */ 1221da177e4SLinus Torvalds 1231da177e4SLinus Torvalds unsigned long neigh_rand_reach_time(unsigned long base) 1241da177e4SLinus Torvalds { 125a02cec21SEric Dumazet return base ? (net_random() % base) + (base >> 1) : 0; 1261da177e4SLinus Torvalds } 1270a204500SYOSHIFUJI Hideaki EXPORT_SYMBOL(neigh_rand_reach_time); 1281da177e4SLinus Torvalds 1291da177e4SLinus Torvalds 1301da177e4SLinus Torvalds static int neigh_forced_gc(struct neigh_table *tbl) 1311da177e4SLinus Torvalds { 1321da177e4SLinus Torvalds int shrunk = 0; 1331da177e4SLinus Torvalds int i; 1341da177e4SLinus Torvalds 1351da177e4SLinus Torvalds NEIGH_CACHE_STAT_INC(tbl, forced_gc_runs); 1361da177e4SLinus Torvalds 1371da177e4SLinus Torvalds write_lock_bh(&tbl->lock); 1381da177e4SLinus Torvalds for (i = 0; i <= tbl->hash_mask; i++) { 1391da177e4SLinus Torvalds struct neighbour *n, **np; 1401da177e4SLinus Torvalds 1411da177e4SLinus Torvalds np = &tbl->hash_buckets[i]; 1421da177e4SLinus Torvalds while ((n = *np) != NULL) { 1431da177e4SLinus Torvalds /* Neighbour record may be discarded if: 1441da177e4SLinus Torvalds * - nobody refers to it. 1451da177e4SLinus Torvalds * - it is not permanent 1461da177e4SLinus Torvalds */ 1471da177e4SLinus Torvalds write_lock(&n->lock); 1481da177e4SLinus Torvalds if (atomic_read(&n->refcnt) == 1 && 1491da177e4SLinus Torvalds !(n->nud_state & NUD_PERMANENT)) { 1501da177e4SLinus Torvalds *np = n->next; 1511da177e4SLinus Torvalds n->dead = 1; 1521da177e4SLinus Torvalds shrunk = 1; 1531da177e4SLinus Torvalds write_unlock(&n->lock); 1544f494554SThomas Graf neigh_cleanup_and_release(n); 1551da177e4SLinus Torvalds continue; 1561da177e4SLinus Torvalds } 1571da177e4SLinus Torvalds write_unlock(&n->lock); 1581da177e4SLinus Torvalds np = &n->next; 1591da177e4SLinus Torvalds } 1601da177e4SLinus Torvalds } 1611da177e4SLinus Torvalds 1621da177e4SLinus Torvalds tbl->last_flush = jiffies; 1631da177e4SLinus Torvalds 1641da177e4SLinus Torvalds write_unlock_bh(&tbl->lock); 1651da177e4SLinus Torvalds 1661da177e4SLinus Torvalds return shrunk; 1671da177e4SLinus Torvalds } 1681da177e4SLinus Torvalds 169a43d8994SPavel Emelyanov static void neigh_add_timer(struct neighbour *n, unsigned long when) 170a43d8994SPavel Emelyanov { 171a43d8994SPavel Emelyanov neigh_hold(n); 172a43d8994SPavel Emelyanov if (unlikely(mod_timer(&n->timer, when))) { 173a43d8994SPavel Emelyanov printk("NEIGH: BUG, double timer add, state is %x\n", 174a43d8994SPavel Emelyanov n->nud_state); 175a43d8994SPavel Emelyanov dump_stack(); 176a43d8994SPavel Emelyanov } 177a43d8994SPavel Emelyanov } 178a43d8994SPavel Emelyanov 1791da177e4SLinus Torvalds static int neigh_del_timer(struct neighbour *n) 1801da177e4SLinus Torvalds { 1811da177e4SLinus Torvalds if ((n->nud_state & NUD_IN_TIMER) && 1821da177e4SLinus Torvalds del_timer(&n->timer)) { 1831da177e4SLinus Torvalds neigh_release(n); 1841da177e4SLinus Torvalds return 1; 1851da177e4SLinus Torvalds } 1861da177e4SLinus Torvalds return 0; 1871da177e4SLinus Torvalds } 1881da177e4SLinus Torvalds 1891da177e4SLinus Torvalds static void pneigh_queue_purge(struct sk_buff_head *list) 1901da177e4SLinus Torvalds { 1911da177e4SLinus Torvalds struct sk_buff *skb; 1921da177e4SLinus Torvalds 1931da177e4SLinus Torvalds while ((skb = skb_dequeue(list)) != NULL) { 1941da177e4SLinus Torvalds dev_put(skb->dev); 1951da177e4SLinus Torvalds kfree_skb(skb); 1961da177e4SLinus Torvalds } 1971da177e4SLinus Torvalds } 1981da177e4SLinus Torvalds 19949636bb1SHerbert Xu static void neigh_flush_dev(struct neigh_table *tbl, struct net_device *dev) 2001da177e4SLinus Torvalds { 2011da177e4SLinus Torvalds int i; 2021da177e4SLinus Torvalds 2031da177e4SLinus Torvalds for (i = 0; i <= tbl->hash_mask; i++) { 2041da177e4SLinus Torvalds struct neighbour *n, **np = &tbl->hash_buckets[i]; 2051da177e4SLinus Torvalds 2061da177e4SLinus Torvalds while ((n = *np) != NULL) { 2071da177e4SLinus Torvalds if (dev && n->dev != dev) { 2081da177e4SLinus Torvalds np = &n->next; 2091da177e4SLinus Torvalds continue; 2101da177e4SLinus Torvalds } 2111da177e4SLinus Torvalds *np = n->next; 2121da177e4SLinus Torvalds write_lock(&n->lock); 2131da177e4SLinus Torvalds neigh_del_timer(n); 2141da177e4SLinus Torvalds n->dead = 1; 2151da177e4SLinus Torvalds 2161da177e4SLinus Torvalds if (atomic_read(&n->refcnt) != 1) { 2171da177e4SLinus Torvalds /* The most unpleasant situation. 2181da177e4SLinus Torvalds We must destroy neighbour entry, 2191da177e4SLinus Torvalds but someone still uses it. 2201da177e4SLinus Torvalds 2211da177e4SLinus Torvalds The destroy will be delayed until 2221da177e4SLinus Torvalds the last user releases us, but 2231da177e4SLinus Torvalds we must kill timers etc. and move 2241da177e4SLinus Torvalds it to safe state. 2251da177e4SLinus Torvalds */ 2261da177e4SLinus Torvalds skb_queue_purge(&n->arp_queue); 2271da177e4SLinus Torvalds n->output = neigh_blackhole; 2281da177e4SLinus Torvalds if (n->nud_state & NUD_VALID) 2291da177e4SLinus Torvalds n->nud_state = NUD_NOARP; 2301da177e4SLinus Torvalds else 2311da177e4SLinus Torvalds n->nud_state = NUD_NONE; 2321da177e4SLinus Torvalds NEIGH_PRINTK2("neigh %p is stray.\n", n); 2331da177e4SLinus Torvalds } 2341da177e4SLinus Torvalds write_unlock(&n->lock); 2354f494554SThomas Graf neigh_cleanup_and_release(n); 2361da177e4SLinus Torvalds } 2371da177e4SLinus Torvalds } 23849636bb1SHerbert Xu } 2391da177e4SLinus Torvalds 24049636bb1SHerbert Xu void neigh_changeaddr(struct neigh_table *tbl, struct net_device *dev) 24149636bb1SHerbert Xu { 24249636bb1SHerbert Xu write_lock_bh(&tbl->lock); 24349636bb1SHerbert Xu neigh_flush_dev(tbl, dev); 24449636bb1SHerbert Xu write_unlock_bh(&tbl->lock); 24549636bb1SHerbert Xu } 2460a204500SYOSHIFUJI Hideaki EXPORT_SYMBOL(neigh_changeaddr); 24749636bb1SHerbert Xu 24849636bb1SHerbert Xu int neigh_ifdown(struct neigh_table *tbl, struct net_device *dev) 24949636bb1SHerbert Xu { 25049636bb1SHerbert Xu write_lock_bh(&tbl->lock); 25149636bb1SHerbert Xu neigh_flush_dev(tbl, dev); 2521da177e4SLinus Torvalds pneigh_ifdown(tbl, dev); 2531da177e4SLinus Torvalds write_unlock_bh(&tbl->lock); 2541da177e4SLinus Torvalds 2551da177e4SLinus Torvalds del_timer_sync(&tbl->proxy_timer); 2561da177e4SLinus Torvalds pneigh_queue_purge(&tbl->proxy_queue); 2571da177e4SLinus Torvalds return 0; 2581da177e4SLinus Torvalds } 2590a204500SYOSHIFUJI Hideaki EXPORT_SYMBOL(neigh_ifdown); 2601da177e4SLinus Torvalds 2611da177e4SLinus Torvalds static struct neighbour *neigh_alloc(struct neigh_table *tbl) 2621da177e4SLinus Torvalds { 2631da177e4SLinus Torvalds struct neighbour *n = NULL; 2641da177e4SLinus Torvalds unsigned long now = jiffies; 2651da177e4SLinus Torvalds int entries; 2661da177e4SLinus Torvalds 2671da177e4SLinus Torvalds entries = atomic_inc_return(&tbl->entries) - 1; 2681da177e4SLinus Torvalds if (entries >= tbl->gc_thresh3 || 2691da177e4SLinus Torvalds (entries >= tbl->gc_thresh2 && 2701da177e4SLinus Torvalds time_after(now, tbl->last_flush + 5 * HZ))) { 2711da177e4SLinus Torvalds if (!neigh_forced_gc(tbl) && 2721da177e4SLinus Torvalds entries >= tbl->gc_thresh3) 2731da177e4SLinus Torvalds goto out_entries; 2741da177e4SLinus Torvalds } 2751da177e4SLinus Torvalds 276c3762229SRobert P. J. Day n = kmem_cache_zalloc(tbl->kmem_cachep, GFP_ATOMIC); 2771da177e4SLinus Torvalds if (!n) 2781da177e4SLinus Torvalds goto out_entries; 2791da177e4SLinus Torvalds 2801da177e4SLinus Torvalds skb_queue_head_init(&n->arp_queue); 2811da177e4SLinus Torvalds rwlock_init(&n->lock); 2821da177e4SLinus Torvalds n->updated = n->used = now; 2831da177e4SLinus Torvalds n->nud_state = NUD_NONE; 2841da177e4SLinus Torvalds n->output = neigh_blackhole; 2851da177e4SLinus Torvalds n->parms = neigh_parms_clone(&tbl->parms); 286b24b8a24SPavel Emelyanov setup_timer(&n->timer, neigh_timer_handler, (unsigned long)n); 2871da177e4SLinus Torvalds 2881da177e4SLinus Torvalds NEIGH_CACHE_STAT_INC(tbl, allocs); 2891da177e4SLinus Torvalds n->tbl = tbl; 2901da177e4SLinus Torvalds atomic_set(&n->refcnt, 1); 2911da177e4SLinus Torvalds n->dead = 1; 2921da177e4SLinus Torvalds out: 2931da177e4SLinus Torvalds return n; 2941da177e4SLinus Torvalds 2951da177e4SLinus Torvalds out_entries: 2961da177e4SLinus Torvalds atomic_dec(&tbl->entries); 2971da177e4SLinus Torvalds goto out; 2981da177e4SLinus Torvalds } 2991da177e4SLinus Torvalds 3001da177e4SLinus Torvalds static struct neighbour **neigh_hash_alloc(unsigned int entries) 3011da177e4SLinus Torvalds { 3021da177e4SLinus Torvalds unsigned long size = entries * sizeof(struct neighbour *); 3031da177e4SLinus Torvalds struct neighbour **ret; 3041da177e4SLinus Torvalds 3051da177e4SLinus Torvalds if (size <= PAGE_SIZE) { 30677d04bd9SAndrew Morton ret = kzalloc(size, GFP_ATOMIC); 3071da177e4SLinus Torvalds } else { 3081da177e4SLinus Torvalds ret = (struct neighbour **) 30977d04bd9SAndrew Morton __get_free_pages(GFP_ATOMIC|__GFP_ZERO, get_order(size)); 3101da177e4SLinus Torvalds } 3111da177e4SLinus Torvalds return ret; 3121da177e4SLinus Torvalds } 3131da177e4SLinus Torvalds 3141da177e4SLinus Torvalds static void neigh_hash_free(struct neighbour **hash, unsigned int entries) 3151da177e4SLinus Torvalds { 3161da177e4SLinus Torvalds unsigned long size = entries * sizeof(struct neighbour *); 3171da177e4SLinus Torvalds 3181da177e4SLinus Torvalds if (size <= PAGE_SIZE) 3191da177e4SLinus Torvalds kfree(hash); 3201da177e4SLinus Torvalds else 3211da177e4SLinus Torvalds free_pages((unsigned long)hash, get_order(size)); 3221da177e4SLinus Torvalds } 3231da177e4SLinus Torvalds 3241da177e4SLinus Torvalds static void neigh_hash_grow(struct neigh_table *tbl, unsigned long new_entries) 3251da177e4SLinus Torvalds { 3261da177e4SLinus Torvalds struct neighbour **new_hash, **old_hash; 3271da177e4SLinus Torvalds unsigned int i, new_hash_mask, old_entries; 3281da177e4SLinus Torvalds 3291da177e4SLinus Torvalds NEIGH_CACHE_STAT_INC(tbl, hash_grows); 3301da177e4SLinus Torvalds 331c3609d51Svignesh babu BUG_ON(!is_power_of_2(new_entries)); 3321da177e4SLinus Torvalds new_hash = neigh_hash_alloc(new_entries); 3331da177e4SLinus Torvalds if (!new_hash) 3341da177e4SLinus Torvalds return; 3351da177e4SLinus Torvalds 3361da177e4SLinus Torvalds old_entries = tbl->hash_mask + 1; 3371da177e4SLinus Torvalds new_hash_mask = new_entries - 1; 3381da177e4SLinus Torvalds old_hash = tbl->hash_buckets; 3391da177e4SLinus Torvalds 3401da177e4SLinus Torvalds get_random_bytes(&tbl->hash_rnd, sizeof(tbl->hash_rnd)); 3411da177e4SLinus Torvalds for (i = 0; i < old_entries; i++) { 3421da177e4SLinus Torvalds struct neighbour *n, *next; 3431da177e4SLinus Torvalds 3441da177e4SLinus Torvalds for (n = old_hash[i]; n; n = next) { 3451da177e4SLinus Torvalds unsigned int hash_val = tbl->hash(n->primary_key, n->dev); 3461da177e4SLinus Torvalds 3471da177e4SLinus Torvalds hash_val &= new_hash_mask; 3481da177e4SLinus Torvalds next = n->next; 3491da177e4SLinus Torvalds 3501da177e4SLinus Torvalds n->next = new_hash[hash_val]; 3511da177e4SLinus Torvalds new_hash[hash_val] = n; 3521da177e4SLinus Torvalds } 3531da177e4SLinus Torvalds } 3541da177e4SLinus Torvalds tbl->hash_buckets = new_hash; 3551da177e4SLinus Torvalds tbl->hash_mask = new_hash_mask; 3561da177e4SLinus Torvalds 3571da177e4SLinus Torvalds neigh_hash_free(old_hash, old_entries); 3581da177e4SLinus Torvalds } 3591da177e4SLinus Torvalds 3601da177e4SLinus Torvalds struct neighbour *neigh_lookup(struct neigh_table *tbl, const void *pkey, 3611da177e4SLinus Torvalds struct net_device *dev) 3621da177e4SLinus Torvalds { 3631da177e4SLinus Torvalds struct neighbour *n; 3641da177e4SLinus Torvalds int key_len = tbl->key_len; 365bc4bf5f3SPavel Emelyanov u32 hash_val; 3661da177e4SLinus Torvalds 3671da177e4SLinus Torvalds NEIGH_CACHE_STAT_INC(tbl, lookups); 3681da177e4SLinus Torvalds 3691da177e4SLinus Torvalds read_lock_bh(&tbl->lock); 370bc4bf5f3SPavel Emelyanov hash_val = tbl->hash(pkey, dev); 371c5e29460SJulian Anastasov for (n = tbl->hash_buckets[hash_val & tbl->hash_mask]; n; n = n->next) { 3721da177e4SLinus Torvalds if (dev == n->dev && !memcmp(n->primary_key, pkey, key_len)) { 3731da177e4SLinus Torvalds neigh_hold(n); 3741da177e4SLinus Torvalds NEIGH_CACHE_STAT_INC(tbl, hits); 3751da177e4SLinus Torvalds break; 3761da177e4SLinus Torvalds } 3771da177e4SLinus Torvalds } 3781da177e4SLinus Torvalds read_unlock_bh(&tbl->lock); 3791da177e4SLinus Torvalds return n; 3801da177e4SLinus Torvalds } 3810a204500SYOSHIFUJI Hideaki EXPORT_SYMBOL(neigh_lookup); 3821da177e4SLinus Torvalds 383426b5303SEric W. Biederman struct neighbour *neigh_lookup_nodev(struct neigh_table *tbl, struct net *net, 384426b5303SEric W. Biederman const void *pkey) 3851da177e4SLinus Torvalds { 3861da177e4SLinus Torvalds struct neighbour *n; 3871da177e4SLinus Torvalds int key_len = tbl->key_len; 388bc4bf5f3SPavel Emelyanov u32 hash_val; 3891da177e4SLinus Torvalds 3901da177e4SLinus Torvalds NEIGH_CACHE_STAT_INC(tbl, lookups); 3911da177e4SLinus Torvalds 3921da177e4SLinus Torvalds read_lock_bh(&tbl->lock); 393bc4bf5f3SPavel Emelyanov hash_val = tbl->hash(pkey, NULL); 394c5e29460SJulian Anastasov for (n = tbl->hash_buckets[hash_val & tbl->hash_mask]; n; n = n->next) { 395426b5303SEric W. Biederman if (!memcmp(n->primary_key, pkey, key_len) && 396878628fbSYOSHIFUJI Hideaki net_eq(dev_net(n->dev), net)) { 3971da177e4SLinus Torvalds neigh_hold(n); 3981da177e4SLinus Torvalds NEIGH_CACHE_STAT_INC(tbl, hits); 3991da177e4SLinus Torvalds break; 4001da177e4SLinus Torvalds } 4011da177e4SLinus Torvalds } 4021da177e4SLinus Torvalds read_unlock_bh(&tbl->lock); 4031da177e4SLinus Torvalds return n; 4041da177e4SLinus Torvalds } 4050a204500SYOSHIFUJI Hideaki EXPORT_SYMBOL(neigh_lookup_nodev); 4061da177e4SLinus Torvalds 4071da177e4SLinus Torvalds struct neighbour *neigh_create(struct neigh_table *tbl, const void *pkey, 4081da177e4SLinus Torvalds struct net_device *dev) 4091da177e4SLinus Torvalds { 4101da177e4SLinus Torvalds u32 hash_val; 4111da177e4SLinus Torvalds int key_len = tbl->key_len; 4121da177e4SLinus Torvalds int error; 4131da177e4SLinus Torvalds struct neighbour *n1, *rc, *n = neigh_alloc(tbl); 4141da177e4SLinus Torvalds 4151da177e4SLinus Torvalds if (!n) { 4161da177e4SLinus Torvalds rc = ERR_PTR(-ENOBUFS); 4171da177e4SLinus Torvalds goto out; 4181da177e4SLinus Torvalds } 4191da177e4SLinus Torvalds 4201da177e4SLinus Torvalds memcpy(n->primary_key, pkey, key_len); 4211da177e4SLinus Torvalds n->dev = dev; 4221da177e4SLinus Torvalds dev_hold(dev); 4231da177e4SLinus Torvalds 4241da177e4SLinus Torvalds /* Protocol specific setup. */ 4251da177e4SLinus Torvalds if (tbl->constructor && (error = tbl->constructor(n)) < 0) { 4261da177e4SLinus Torvalds rc = ERR_PTR(error); 4271da177e4SLinus Torvalds goto out_neigh_release; 4281da177e4SLinus Torvalds } 4291da177e4SLinus Torvalds 4301da177e4SLinus Torvalds /* Device specific setup. */ 4311da177e4SLinus Torvalds if (n->parms->neigh_setup && 4321da177e4SLinus Torvalds (error = n->parms->neigh_setup(n)) < 0) { 4331da177e4SLinus Torvalds rc = ERR_PTR(error); 4341da177e4SLinus Torvalds goto out_neigh_release; 4351da177e4SLinus Torvalds } 4361da177e4SLinus Torvalds 4371da177e4SLinus Torvalds n->confirmed = jiffies - (n->parms->base_reachable_time << 1); 4381da177e4SLinus Torvalds 4391da177e4SLinus Torvalds write_lock_bh(&tbl->lock); 4401da177e4SLinus Torvalds 4411da177e4SLinus Torvalds if (atomic_read(&tbl->entries) > (tbl->hash_mask + 1)) 4421da177e4SLinus Torvalds neigh_hash_grow(tbl, (tbl->hash_mask + 1) << 1); 4431da177e4SLinus Torvalds 4441da177e4SLinus Torvalds hash_val = tbl->hash(pkey, dev) & tbl->hash_mask; 4451da177e4SLinus Torvalds 4461da177e4SLinus Torvalds if (n->parms->dead) { 4471da177e4SLinus Torvalds rc = ERR_PTR(-EINVAL); 4481da177e4SLinus Torvalds goto out_tbl_unlock; 4491da177e4SLinus Torvalds } 4501da177e4SLinus Torvalds 4511da177e4SLinus Torvalds for (n1 = tbl->hash_buckets[hash_val]; n1; n1 = n1->next) { 4521da177e4SLinus Torvalds if (dev == n1->dev && !memcmp(n1->primary_key, pkey, key_len)) { 4531da177e4SLinus Torvalds neigh_hold(n1); 4541da177e4SLinus Torvalds rc = n1; 4551da177e4SLinus Torvalds goto out_tbl_unlock; 4561da177e4SLinus Torvalds } 4571da177e4SLinus Torvalds } 4581da177e4SLinus Torvalds 4591da177e4SLinus Torvalds n->next = tbl->hash_buckets[hash_val]; 4601da177e4SLinus Torvalds tbl->hash_buckets[hash_val] = n; 4611da177e4SLinus Torvalds n->dead = 0; 4621da177e4SLinus Torvalds neigh_hold(n); 4631da177e4SLinus Torvalds write_unlock_bh(&tbl->lock); 4641da177e4SLinus Torvalds NEIGH_PRINTK2("neigh %p is created.\n", n); 4651da177e4SLinus Torvalds rc = n; 4661da177e4SLinus Torvalds out: 4671da177e4SLinus Torvalds return rc; 4681da177e4SLinus Torvalds out_tbl_unlock: 4691da177e4SLinus Torvalds write_unlock_bh(&tbl->lock); 4701da177e4SLinus Torvalds out_neigh_release: 4711da177e4SLinus Torvalds neigh_release(n); 4721da177e4SLinus Torvalds goto out; 4731da177e4SLinus Torvalds } 4740a204500SYOSHIFUJI Hideaki EXPORT_SYMBOL(neigh_create); 4751da177e4SLinus Torvalds 476be01d655SYOSHIFUJI Hideaki static u32 pneigh_hash(const void *pkey, int key_len) 477fa86d322SPavel Emelyanov { 478fa86d322SPavel Emelyanov u32 hash_val = *(u32 *)(pkey + key_len - 4); 479fa86d322SPavel Emelyanov hash_val ^= (hash_val >> 16); 480fa86d322SPavel Emelyanov hash_val ^= hash_val >> 8; 481fa86d322SPavel Emelyanov hash_val ^= hash_val >> 4; 482fa86d322SPavel Emelyanov hash_val &= PNEIGH_HASHMASK; 483be01d655SYOSHIFUJI Hideaki return hash_val; 484fa86d322SPavel Emelyanov } 485fa86d322SPavel Emelyanov 486be01d655SYOSHIFUJI Hideaki static struct pneigh_entry *__pneigh_lookup_1(struct pneigh_entry *n, 487be01d655SYOSHIFUJI Hideaki struct net *net, 488be01d655SYOSHIFUJI Hideaki const void *pkey, 489be01d655SYOSHIFUJI Hideaki int key_len, 490be01d655SYOSHIFUJI Hideaki struct net_device *dev) 491be01d655SYOSHIFUJI Hideaki { 492be01d655SYOSHIFUJI Hideaki while (n) { 493be01d655SYOSHIFUJI Hideaki if (!memcmp(n->key, pkey, key_len) && 494be01d655SYOSHIFUJI Hideaki net_eq(pneigh_net(n), net) && 495be01d655SYOSHIFUJI Hideaki (n->dev == dev || !n->dev)) 496fa86d322SPavel Emelyanov return n; 497be01d655SYOSHIFUJI Hideaki n = n->next; 498be01d655SYOSHIFUJI Hideaki } 499be01d655SYOSHIFUJI Hideaki return NULL; 500be01d655SYOSHIFUJI Hideaki } 501be01d655SYOSHIFUJI Hideaki 502be01d655SYOSHIFUJI Hideaki struct pneigh_entry *__pneigh_lookup(struct neigh_table *tbl, 503be01d655SYOSHIFUJI Hideaki struct net *net, const void *pkey, struct net_device *dev) 504be01d655SYOSHIFUJI Hideaki { 505be01d655SYOSHIFUJI Hideaki int key_len = tbl->key_len; 506be01d655SYOSHIFUJI Hideaki u32 hash_val = pneigh_hash(pkey, key_len); 507be01d655SYOSHIFUJI Hideaki 508be01d655SYOSHIFUJI Hideaki return __pneigh_lookup_1(tbl->phash_buckets[hash_val], 509be01d655SYOSHIFUJI Hideaki net, pkey, key_len, dev); 510fa86d322SPavel Emelyanov } 5110a204500SYOSHIFUJI Hideaki EXPORT_SYMBOL_GPL(__pneigh_lookup); 512fa86d322SPavel Emelyanov 513426b5303SEric W. Biederman struct pneigh_entry * pneigh_lookup(struct neigh_table *tbl, 514426b5303SEric W. Biederman struct net *net, const void *pkey, 5151da177e4SLinus Torvalds struct net_device *dev, int creat) 5161da177e4SLinus Torvalds { 5171da177e4SLinus Torvalds struct pneigh_entry *n; 5181da177e4SLinus Torvalds int key_len = tbl->key_len; 519be01d655SYOSHIFUJI Hideaki u32 hash_val = pneigh_hash(pkey, key_len); 5201da177e4SLinus Torvalds 5211da177e4SLinus Torvalds read_lock_bh(&tbl->lock); 522be01d655SYOSHIFUJI Hideaki n = __pneigh_lookup_1(tbl->phash_buckets[hash_val], 523be01d655SYOSHIFUJI Hideaki net, pkey, key_len, dev); 524be01d655SYOSHIFUJI Hideaki read_unlock_bh(&tbl->lock); 5251da177e4SLinus Torvalds 526be01d655SYOSHIFUJI Hideaki if (n || !creat) 5271da177e4SLinus Torvalds goto out; 5281da177e4SLinus Torvalds 5294ae28944SPavel Emelyanov ASSERT_RTNL(); 5304ae28944SPavel Emelyanov 5311da177e4SLinus Torvalds n = kmalloc(sizeof(*n) + key_len, GFP_KERNEL); 5321da177e4SLinus Torvalds if (!n) 5331da177e4SLinus Torvalds goto out; 5341da177e4SLinus Torvalds 535e42ea986SEric Dumazet write_pnet(&n->net, hold_net(net)); 5361da177e4SLinus Torvalds memcpy(n->key, pkey, key_len); 5371da177e4SLinus Torvalds n->dev = dev; 5381da177e4SLinus Torvalds if (dev) 5391da177e4SLinus Torvalds dev_hold(dev); 5401da177e4SLinus Torvalds 5411da177e4SLinus Torvalds if (tbl->pconstructor && tbl->pconstructor(n)) { 5421da177e4SLinus Torvalds if (dev) 5431da177e4SLinus Torvalds dev_put(dev); 544da12f735SDenis V. Lunev release_net(net); 5451da177e4SLinus Torvalds kfree(n); 5461da177e4SLinus Torvalds n = NULL; 5471da177e4SLinus Torvalds goto out; 5481da177e4SLinus Torvalds } 5491da177e4SLinus Torvalds 5501da177e4SLinus Torvalds write_lock_bh(&tbl->lock); 5511da177e4SLinus Torvalds n->next = tbl->phash_buckets[hash_val]; 5521da177e4SLinus Torvalds tbl->phash_buckets[hash_val] = n; 5531da177e4SLinus Torvalds write_unlock_bh(&tbl->lock); 5541da177e4SLinus Torvalds out: 5551da177e4SLinus Torvalds return n; 5561da177e4SLinus Torvalds } 5570a204500SYOSHIFUJI Hideaki EXPORT_SYMBOL(pneigh_lookup); 5581da177e4SLinus Torvalds 5591da177e4SLinus Torvalds 560426b5303SEric W. Biederman int pneigh_delete(struct neigh_table *tbl, struct net *net, const void *pkey, 5611da177e4SLinus Torvalds struct net_device *dev) 5621da177e4SLinus Torvalds { 5631da177e4SLinus Torvalds struct pneigh_entry *n, **np; 5641da177e4SLinus Torvalds int key_len = tbl->key_len; 565be01d655SYOSHIFUJI Hideaki u32 hash_val = pneigh_hash(pkey, key_len); 5661da177e4SLinus Torvalds 5671da177e4SLinus Torvalds write_lock_bh(&tbl->lock); 5681da177e4SLinus Torvalds for (np = &tbl->phash_buckets[hash_val]; (n = *np) != NULL; 5691da177e4SLinus Torvalds np = &n->next) { 570426b5303SEric W. Biederman if (!memcmp(n->key, pkey, key_len) && n->dev == dev && 571878628fbSYOSHIFUJI Hideaki net_eq(pneigh_net(n), net)) { 5721da177e4SLinus Torvalds *np = n->next; 5731da177e4SLinus Torvalds write_unlock_bh(&tbl->lock); 5741da177e4SLinus Torvalds if (tbl->pdestructor) 5751da177e4SLinus Torvalds tbl->pdestructor(n); 5761da177e4SLinus Torvalds if (n->dev) 5771da177e4SLinus Torvalds dev_put(n->dev); 57857da52c1SYOSHIFUJI Hideaki release_net(pneigh_net(n)); 5791da177e4SLinus Torvalds kfree(n); 5801da177e4SLinus Torvalds return 0; 5811da177e4SLinus Torvalds } 5821da177e4SLinus Torvalds } 5831da177e4SLinus Torvalds write_unlock_bh(&tbl->lock); 5841da177e4SLinus Torvalds return -ENOENT; 5851da177e4SLinus Torvalds } 5861da177e4SLinus Torvalds 5871da177e4SLinus Torvalds static int pneigh_ifdown(struct neigh_table *tbl, struct net_device *dev) 5881da177e4SLinus Torvalds { 5891da177e4SLinus Torvalds struct pneigh_entry *n, **np; 5901da177e4SLinus Torvalds u32 h; 5911da177e4SLinus Torvalds 5921da177e4SLinus Torvalds for (h = 0; h <= PNEIGH_HASHMASK; h++) { 5931da177e4SLinus Torvalds np = &tbl->phash_buckets[h]; 5941da177e4SLinus Torvalds while ((n = *np) != NULL) { 5951da177e4SLinus Torvalds if (!dev || n->dev == dev) { 5961da177e4SLinus Torvalds *np = n->next; 5971da177e4SLinus Torvalds if (tbl->pdestructor) 5981da177e4SLinus Torvalds tbl->pdestructor(n); 5991da177e4SLinus Torvalds if (n->dev) 6001da177e4SLinus Torvalds dev_put(n->dev); 60157da52c1SYOSHIFUJI Hideaki release_net(pneigh_net(n)); 6021da177e4SLinus Torvalds kfree(n); 6031da177e4SLinus Torvalds continue; 6041da177e4SLinus Torvalds } 6051da177e4SLinus Torvalds np = &n->next; 6061da177e4SLinus Torvalds } 6071da177e4SLinus Torvalds } 6081da177e4SLinus Torvalds return -ENOENT; 6091da177e4SLinus Torvalds } 6101da177e4SLinus Torvalds 61106f0511dSDenis V. Lunev static void neigh_parms_destroy(struct neigh_parms *parms); 61206f0511dSDenis V. Lunev 61306f0511dSDenis V. Lunev static inline void neigh_parms_put(struct neigh_parms *parms) 61406f0511dSDenis V. Lunev { 61506f0511dSDenis V. Lunev if (atomic_dec_and_test(&parms->refcnt)) 61606f0511dSDenis V. Lunev neigh_parms_destroy(parms); 61706f0511dSDenis V. Lunev } 6181da177e4SLinus Torvalds 6191da177e4SLinus Torvalds /* 6201da177e4SLinus Torvalds * neighbour must already be out of the table; 6211da177e4SLinus Torvalds * 6221da177e4SLinus Torvalds */ 6231da177e4SLinus Torvalds void neigh_destroy(struct neighbour *neigh) 6241da177e4SLinus Torvalds { 6251da177e4SLinus Torvalds struct hh_cache *hh; 6261da177e4SLinus Torvalds 6271da177e4SLinus Torvalds NEIGH_CACHE_STAT_INC(neigh->tbl, destroys); 6281da177e4SLinus Torvalds 6291da177e4SLinus Torvalds if (!neigh->dead) { 6301da177e4SLinus Torvalds printk(KERN_WARNING 6311da177e4SLinus Torvalds "Destroying alive neighbour %p\n", neigh); 6321da177e4SLinus Torvalds dump_stack(); 6331da177e4SLinus Torvalds return; 6341da177e4SLinus Torvalds } 6351da177e4SLinus Torvalds 6361da177e4SLinus Torvalds if (neigh_del_timer(neigh)) 6371da177e4SLinus Torvalds printk(KERN_WARNING "Impossible event.\n"); 6381da177e4SLinus Torvalds 6391da177e4SLinus Torvalds while ((hh = neigh->hh) != NULL) { 6401da177e4SLinus Torvalds neigh->hh = hh->hh_next; 6411da177e4SLinus Torvalds hh->hh_next = NULL; 6423644f0ceSStephen Hemminger 6433644f0ceSStephen Hemminger write_seqlock_bh(&hh->hh_lock); 6441da177e4SLinus Torvalds hh->hh_output = neigh_blackhole; 6453644f0ceSStephen Hemminger write_sequnlock_bh(&hh->hh_lock); 6461da177e4SLinus Torvalds if (atomic_dec_and_test(&hh->hh_refcnt)) 6471da177e4SLinus Torvalds kfree(hh); 6481da177e4SLinus Torvalds } 6491da177e4SLinus Torvalds 6501da177e4SLinus Torvalds skb_queue_purge(&neigh->arp_queue); 6511da177e4SLinus Torvalds 6521da177e4SLinus Torvalds dev_put(neigh->dev); 6531da177e4SLinus Torvalds neigh_parms_put(neigh->parms); 6541da177e4SLinus Torvalds 6551da177e4SLinus Torvalds NEIGH_PRINTK2("neigh %p is destroyed.\n", neigh); 6561da177e4SLinus Torvalds 6571da177e4SLinus Torvalds atomic_dec(&neigh->tbl->entries); 6581da177e4SLinus Torvalds kmem_cache_free(neigh->tbl->kmem_cachep, neigh); 6591da177e4SLinus Torvalds } 6600a204500SYOSHIFUJI Hideaki EXPORT_SYMBOL(neigh_destroy); 6611da177e4SLinus Torvalds 6621da177e4SLinus Torvalds /* Neighbour state is suspicious; 6631da177e4SLinus Torvalds disable fast path. 6641da177e4SLinus Torvalds 6651da177e4SLinus Torvalds Called with write_locked neigh. 6661da177e4SLinus Torvalds */ 6671da177e4SLinus Torvalds static void neigh_suspect(struct neighbour *neigh) 6681da177e4SLinus Torvalds { 6691da177e4SLinus Torvalds struct hh_cache *hh; 6701da177e4SLinus Torvalds 6711da177e4SLinus Torvalds NEIGH_PRINTK2("neigh %p is suspected.\n", neigh); 6721da177e4SLinus Torvalds 6731da177e4SLinus Torvalds neigh->output = neigh->ops->output; 6741da177e4SLinus Torvalds 6751da177e4SLinus Torvalds for (hh = neigh->hh; hh; hh = hh->hh_next) 6761da177e4SLinus Torvalds hh->hh_output = neigh->ops->output; 6771da177e4SLinus Torvalds } 6781da177e4SLinus Torvalds 6791da177e4SLinus Torvalds /* Neighbour state is OK; 6801da177e4SLinus Torvalds enable fast path. 6811da177e4SLinus Torvalds 6821da177e4SLinus Torvalds Called with write_locked neigh. 6831da177e4SLinus Torvalds */ 6841da177e4SLinus Torvalds static void neigh_connect(struct neighbour *neigh) 6851da177e4SLinus Torvalds { 6861da177e4SLinus Torvalds struct hh_cache *hh; 6871da177e4SLinus Torvalds 6881da177e4SLinus Torvalds NEIGH_PRINTK2("neigh %p is connected.\n", neigh); 6891da177e4SLinus Torvalds 6901da177e4SLinus Torvalds neigh->output = neigh->ops->connected_output; 6911da177e4SLinus Torvalds 6921da177e4SLinus Torvalds for (hh = neigh->hh; hh; hh = hh->hh_next) 6931da177e4SLinus Torvalds hh->hh_output = neigh->ops->hh_output; 6941da177e4SLinus Torvalds } 6951da177e4SLinus Torvalds 696e4c4e448SEric Dumazet static void neigh_periodic_work(struct work_struct *work) 6971da177e4SLinus Torvalds { 698e4c4e448SEric Dumazet struct neigh_table *tbl = container_of(work, struct neigh_table, gc_work.work); 6991da177e4SLinus Torvalds struct neighbour *n, **np; 700e4c4e448SEric Dumazet unsigned int i; 7011da177e4SLinus Torvalds 7021da177e4SLinus Torvalds NEIGH_CACHE_STAT_INC(tbl, periodic_gc_runs); 7031da177e4SLinus Torvalds 704e4c4e448SEric Dumazet write_lock_bh(&tbl->lock); 7051da177e4SLinus Torvalds 7061da177e4SLinus Torvalds /* 7071da177e4SLinus Torvalds * periodically recompute ReachableTime from random function 7081da177e4SLinus Torvalds */ 7091da177e4SLinus Torvalds 710e4c4e448SEric Dumazet if (time_after(jiffies, tbl->last_rand + 300 * HZ)) { 7111da177e4SLinus Torvalds struct neigh_parms *p; 712e4c4e448SEric Dumazet tbl->last_rand = jiffies; 7131da177e4SLinus Torvalds for (p = &tbl->parms; p; p = p->next) 7141da177e4SLinus Torvalds p->reachable_time = 7151da177e4SLinus Torvalds neigh_rand_reach_time(p->base_reachable_time); 7161da177e4SLinus Torvalds } 7171da177e4SLinus Torvalds 718e4c4e448SEric Dumazet for (i = 0 ; i <= tbl->hash_mask; i++) { 719e4c4e448SEric Dumazet np = &tbl->hash_buckets[i]; 7201da177e4SLinus Torvalds 7211da177e4SLinus Torvalds while ((n = *np) != NULL) { 7221da177e4SLinus Torvalds unsigned int state; 7231da177e4SLinus Torvalds 7241da177e4SLinus Torvalds write_lock(&n->lock); 7251da177e4SLinus Torvalds 7261da177e4SLinus Torvalds state = n->nud_state; 7271da177e4SLinus Torvalds if (state & (NUD_PERMANENT | NUD_IN_TIMER)) { 7281da177e4SLinus Torvalds write_unlock(&n->lock); 7291da177e4SLinus Torvalds goto next_elt; 7301da177e4SLinus Torvalds } 7311da177e4SLinus Torvalds 7321da177e4SLinus Torvalds if (time_before(n->used, n->confirmed)) 7331da177e4SLinus Torvalds n->used = n->confirmed; 7341da177e4SLinus Torvalds 7351da177e4SLinus Torvalds if (atomic_read(&n->refcnt) == 1 && 7361da177e4SLinus Torvalds (state == NUD_FAILED || 737e4c4e448SEric Dumazet time_after(jiffies, n->used + n->parms->gc_staletime))) { 7381da177e4SLinus Torvalds *np = n->next; 7391da177e4SLinus Torvalds n->dead = 1; 7401da177e4SLinus Torvalds write_unlock(&n->lock); 7414f494554SThomas Graf neigh_cleanup_and_release(n); 7421da177e4SLinus Torvalds continue; 7431da177e4SLinus Torvalds } 7441da177e4SLinus Torvalds write_unlock(&n->lock); 7451da177e4SLinus Torvalds 7461da177e4SLinus Torvalds next_elt: 7471da177e4SLinus Torvalds np = &n->next; 7481da177e4SLinus Torvalds } 749e4c4e448SEric Dumazet /* 750e4c4e448SEric Dumazet * It's fine to release lock here, even if hash table 751e4c4e448SEric Dumazet * grows while we are preempted. 752e4c4e448SEric Dumazet */ 753e4c4e448SEric Dumazet write_unlock_bh(&tbl->lock); 754e4c4e448SEric Dumazet cond_resched(); 755e4c4e448SEric Dumazet write_lock_bh(&tbl->lock); 756e4c4e448SEric Dumazet } 7571da177e4SLinus Torvalds /* Cycle through all hash buckets every base_reachable_time/2 ticks. 7581da177e4SLinus Torvalds * ARP entry timeouts range from 1/2 base_reachable_time to 3/2 7591da177e4SLinus Torvalds * base_reachable_time. 7601da177e4SLinus Torvalds */ 761e4c4e448SEric Dumazet schedule_delayed_work(&tbl->gc_work, 762e4c4e448SEric Dumazet tbl->parms.base_reachable_time >> 1); 763e4c4e448SEric Dumazet write_unlock_bh(&tbl->lock); 7641da177e4SLinus Torvalds } 7651da177e4SLinus Torvalds 7661da177e4SLinus Torvalds static __inline__ int neigh_max_probes(struct neighbour *n) 7671da177e4SLinus Torvalds { 7681da177e4SLinus Torvalds struct neigh_parms *p = n->parms; 769a02cec21SEric Dumazet return (n->nud_state & NUD_PROBE) ? 7701da177e4SLinus Torvalds p->ucast_probes : 771a02cec21SEric Dumazet p->ucast_probes + p->app_probes + p->mcast_probes; 7721da177e4SLinus Torvalds } 7731da177e4SLinus Torvalds 7745ef12d98STimo Teras static void neigh_invalidate(struct neighbour *neigh) 7750a141509SEric Dumazet __releases(neigh->lock) 7760a141509SEric Dumazet __acquires(neigh->lock) 7775ef12d98STimo Teras { 7785ef12d98STimo Teras struct sk_buff *skb; 7795ef12d98STimo Teras 7805ef12d98STimo Teras NEIGH_CACHE_STAT_INC(neigh->tbl, res_failed); 7815ef12d98STimo Teras NEIGH_PRINTK2("neigh %p is failed.\n", neigh); 7825ef12d98STimo Teras neigh->updated = jiffies; 7835ef12d98STimo Teras 7845ef12d98STimo Teras /* It is very thin place. report_unreachable is very complicated 7855ef12d98STimo Teras routine. Particularly, it can hit the same neighbour entry! 7865ef12d98STimo Teras 7875ef12d98STimo Teras So that, we try to be accurate and avoid dead loop. --ANK 7885ef12d98STimo Teras */ 7895ef12d98STimo Teras while (neigh->nud_state == NUD_FAILED && 7905ef12d98STimo Teras (skb = __skb_dequeue(&neigh->arp_queue)) != NULL) { 7915ef12d98STimo Teras write_unlock(&neigh->lock); 7925ef12d98STimo Teras neigh->ops->error_report(neigh, skb); 7935ef12d98STimo Teras write_lock(&neigh->lock); 7945ef12d98STimo Teras } 7955ef12d98STimo Teras skb_queue_purge(&neigh->arp_queue); 7965ef12d98STimo Teras } 7975ef12d98STimo Teras 7981da177e4SLinus Torvalds /* Called when a timer expires for a neighbour entry. */ 7991da177e4SLinus Torvalds 8001da177e4SLinus Torvalds static void neigh_timer_handler(unsigned long arg) 8011da177e4SLinus Torvalds { 8021da177e4SLinus Torvalds unsigned long now, next; 8031da177e4SLinus Torvalds struct neighbour *neigh = (struct neighbour *)arg; 8041da177e4SLinus Torvalds unsigned state; 8051da177e4SLinus Torvalds int notify = 0; 8061da177e4SLinus Torvalds 8071da177e4SLinus Torvalds write_lock(&neigh->lock); 8081da177e4SLinus Torvalds 8091da177e4SLinus Torvalds state = neigh->nud_state; 8101da177e4SLinus Torvalds now = jiffies; 8111da177e4SLinus Torvalds next = now + HZ; 8121da177e4SLinus Torvalds 8131da177e4SLinus Torvalds if (!(state & NUD_IN_TIMER)) { 8141da177e4SLinus Torvalds #ifndef CONFIG_SMP 8151da177e4SLinus Torvalds printk(KERN_WARNING "neigh: timer & !nud_in_timer\n"); 8161da177e4SLinus Torvalds #endif 8171da177e4SLinus Torvalds goto out; 8181da177e4SLinus Torvalds } 8191da177e4SLinus Torvalds 8201da177e4SLinus Torvalds if (state & NUD_REACHABLE) { 8211da177e4SLinus Torvalds if (time_before_eq(now, 8221da177e4SLinus Torvalds neigh->confirmed + neigh->parms->reachable_time)) { 8231da177e4SLinus Torvalds NEIGH_PRINTK2("neigh %p is still alive.\n", neigh); 8241da177e4SLinus Torvalds next = neigh->confirmed + neigh->parms->reachable_time; 8251da177e4SLinus Torvalds } else if (time_before_eq(now, 8261da177e4SLinus Torvalds neigh->used + neigh->parms->delay_probe_time)) { 8271da177e4SLinus Torvalds NEIGH_PRINTK2("neigh %p is delayed.\n", neigh); 8281da177e4SLinus Torvalds neigh->nud_state = NUD_DELAY; 829955aaa2fSYOSHIFUJI Hideaki neigh->updated = jiffies; 8301da177e4SLinus Torvalds neigh_suspect(neigh); 8311da177e4SLinus Torvalds next = now + neigh->parms->delay_probe_time; 8321da177e4SLinus Torvalds } else { 8331da177e4SLinus Torvalds NEIGH_PRINTK2("neigh %p is suspected.\n", neigh); 8341da177e4SLinus Torvalds neigh->nud_state = NUD_STALE; 835955aaa2fSYOSHIFUJI Hideaki neigh->updated = jiffies; 8361da177e4SLinus Torvalds neigh_suspect(neigh); 8378d71740cSTom Tucker notify = 1; 8381da177e4SLinus Torvalds } 8391da177e4SLinus Torvalds } else if (state & NUD_DELAY) { 8401da177e4SLinus Torvalds if (time_before_eq(now, 8411da177e4SLinus Torvalds neigh->confirmed + neigh->parms->delay_probe_time)) { 8421da177e4SLinus Torvalds NEIGH_PRINTK2("neigh %p is now reachable.\n", neigh); 8431da177e4SLinus Torvalds neigh->nud_state = NUD_REACHABLE; 844955aaa2fSYOSHIFUJI Hideaki neigh->updated = jiffies; 8451da177e4SLinus Torvalds neigh_connect(neigh); 8468d71740cSTom Tucker notify = 1; 8471da177e4SLinus Torvalds next = neigh->confirmed + neigh->parms->reachable_time; 8481da177e4SLinus Torvalds } else { 8491da177e4SLinus Torvalds NEIGH_PRINTK2("neigh %p is probed.\n", neigh); 8501da177e4SLinus Torvalds neigh->nud_state = NUD_PROBE; 851955aaa2fSYOSHIFUJI Hideaki neigh->updated = jiffies; 8521da177e4SLinus Torvalds atomic_set(&neigh->probes, 0); 8531da177e4SLinus Torvalds next = now + neigh->parms->retrans_time; 8541da177e4SLinus Torvalds } 8551da177e4SLinus Torvalds } else { 8561da177e4SLinus Torvalds /* NUD_PROBE|NUD_INCOMPLETE */ 8571da177e4SLinus Torvalds next = now + neigh->parms->retrans_time; 8581da177e4SLinus Torvalds } 8591da177e4SLinus Torvalds 8601da177e4SLinus Torvalds if ((neigh->nud_state & (NUD_INCOMPLETE | NUD_PROBE)) && 8611da177e4SLinus Torvalds atomic_read(&neigh->probes) >= neigh_max_probes(neigh)) { 8621da177e4SLinus Torvalds neigh->nud_state = NUD_FAILED; 8631da177e4SLinus Torvalds notify = 1; 8645ef12d98STimo Teras neigh_invalidate(neigh); 8651da177e4SLinus Torvalds } 8661da177e4SLinus Torvalds 8671da177e4SLinus Torvalds if (neigh->nud_state & NUD_IN_TIMER) { 8681da177e4SLinus Torvalds if (time_before(next, jiffies + HZ/2)) 8691da177e4SLinus Torvalds next = jiffies + HZ/2; 8706fb9974fSHerbert Xu if (!mod_timer(&neigh->timer, next)) 8716fb9974fSHerbert Xu neigh_hold(neigh); 8721da177e4SLinus Torvalds } 8731da177e4SLinus Torvalds if (neigh->nud_state & (NUD_INCOMPLETE | NUD_PROBE)) { 8741da177e4SLinus Torvalds struct sk_buff *skb = skb_peek(&neigh->arp_queue); 8759ff56607SDavid S. Miller /* keep skb alive even if arp_queue overflows */ 8769ff56607SDavid S. Miller if (skb) 8777e36763bSFrank Blaschka skb = skb_copy(skb, GFP_ATOMIC); 8789ff56607SDavid S. Miller write_unlock(&neigh->lock); 8791da177e4SLinus Torvalds neigh->ops->solicit(neigh, skb); 8801da177e4SLinus Torvalds atomic_inc(&neigh->probes); 8819ff56607SDavid S. Miller kfree_skb(skb); 8829ff56607SDavid S. Miller } else { 8831da177e4SLinus Torvalds out: 8841da177e4SLinus Torvalds write_unlock(&neigh->lock); 8859ff56607SDavid S. Miller } 8861da177e4SLinus Torvalds 887d961db35SThomas Graf if (notify) 888d961db35SThomas Graf neigh_update_notify(neigh); 889d961db35SThomas Graf 8901da177e4SLinus Torvalds neigh_release(neigh); 8911da177e4SLinus Torvalds } 8921da177e4SLinus Torvalds 8931da177e4SLinus Torvalds int __neigh_event_send(struct neighbour *neigh, struct sk_buff *skb) 8941da177e4SLinus Torvalds { 8951da177e4SLinus Torvalds int rc; 8961da177e4SLinus Torvalds unsigned long now; 8971da177e4SLinus Torvalds 8981da177e4SLinus Torvalds write_lock_bh(&neigh->lock); 8991da177e4SLinus Torvalds 9001da177e4SLinus Torvalds rc = 0; 9011da177e4SLinus Torvalds if (neigh->nud_state & (NUD_CONNECTED | NUD_DELAY | NUD_PROBE)) 9021da177e4SLinus Torvalds goto out_unlock_bh; 9031da177e4SLinus Torvalds 9041da177e4SLinus Torvalds now = jiffies; 9051da177e4SLinus Torvalds 9061da177e4SLinus Torvalds if (!(neigh->nud_state & (NUD_STALE | NUD_INCOMPLETE))) { 9071da177e4SLinus Torvalds if (neigh->parms->mcast_probes + neigh->parms->app_probes) { 9081da177e4SLinus Torvalds atomic_set(&neigh->probes, neigh->parms->ucast_probes); 9091da177e4SLinus Torvalds neigh->nud_state = NUD_INCOMPLETE; 910955aaa2fSYOSHIFUJI Hideaki neigh->updated = jiffies; 911667347f1SDavid S. Miller neigh_add_timer(neigh, now + 1); 9121da177e4SLinus Torvalds } else { 9131da177e4SLinus Torvalds neigh->nud_state = NUD_FAILED; 914955aaa2fSYOSHIFUJI Hideaki neigh->updated = jiffies; 9151da177e4SLinus Torvalds write_unlock_bh(&neigh->lock); 9161da177e4SLinus Torvalds 9171da177e4SLinus Torvalds kfree_skb(skb); 9181da177e4SLinus Torvalds return 1; 9191da177e4SLinus Torvalds } 9201da177e4SLinus Torvalds } else if (neigh->nud_state & NUD_STALE) { 9211da177e4SLinus Torvalds NEIGH_PRINTK2("neigh %p is delayed.\n", neigh); 9221da177e4SLinus Torvalds neigh->nud_state = NUD_DELAY; 923955aaa2fSYOSHIFUJI Hideaki neigh->updated = jiffies; 924667347f1SDavid S. Miller neigh_add_timer(neigh, 925667347f1SDavid S. Miller jiffies + neigh->parms->delay_probe_time); 9261da177e4SLinus Torvalds } 9271da177e4SLinus Torvalds 9281da177e4SLinus Torvalds if (neigh->nud_state == NUD_INCOMPLETE) { 9291da177e4SLinus Torvalds if (skb) { 9301da177e4SLinus Torvalds if (skb_queue_len(&neigh->arp_queue) >= 9311da177e4SLinus Torvalds neigh->parms->queue_len) { 9321da177e4SLinus Torvalds struct sk_buff *buff; 933f72051b0SDavid S. Miller buff = __skb_dequeue(&neigh->arp_queue); 9341da177e4SLinus Torvalds kfree_skb(buff); 9359a6d276eSNeil Horman NEIGH_CACHE_STAT_INC(neigh->tbl, unres_discards); 9361da177e4SLinus Torvalds } 937a4731138SEric Dumazet skb_dst_force(skb); 9381da177e4SLinus Torvalds __skb_queue_tail(&neigh->arp_queue, skb); 9391da177e4SLinus Torvalds } 9401da177e4SLinus Torvalds rc = 1; 9411da177e4SLinus Torvalds } 9421da177e4SLinus Torvalds out_unlock_bh: 9431da177e4SLinus Torvalds write_unlock_bh(&neigh->lock); 9441da177e4SLinus Torvalds return rc; 9451da177e4SLinus Torvalds } 9460a204500SYOSHIFUJI Hideaki EXPORT_SYMBOL(__neigh_event_send); 9471da177e4SLinus Torvalds 948e92b43a3SStephen Hemminger static void neigh_update_hhs(struct neighbour *neigh) 9491da177e4SLinus Torvalds { 9501da177e4SLinus Torvalds struct hh_cache *hh; 9513b04dddeSStephen Hemminger void (*update)(struct hh_cache*, const struct net_device*, const unsigned char *) 95291a72a70SDoug Kehn = NULL; 95391a72a70SDoug Kehn 95491a72a70SDoug Kehn if (neigh->dev->header_ops) 95591a72a70SDoug Kehn update = neigh->dev->header_ops->cache_update; 9561da177e4SLinus Torvalds 9571da177e4SLinus Torvalds if (update) { 9581da177e4SLinus Torvalds for (hh = neigh->hh; hh; hh = hh->hh_next) { 9593644f0ceSStephen Hemminger write_seqlock_bh(&hh->hh_lock); 9601da177e4SLinus Torvalds update(hh, neigh->dev, neigh->ha); 9613644f0ceSStephen Hemminger write_sequnlock_bh(&hh->hh_lock); 9621da177e4SLinus Torvalds } 9631da177e4SLinus Torvalds } 9641da177e4SLinus Torvalds } 9651da177e4SLinus Torvalds 9661da177e4SLinus Torvalds 9671da177e4SLinus Torvalds 9681da177e4SLinus Torvalds /* Generic update routine. 9691da177e4SLinus Torvalds -- lladdr is new lladdr or NULL, if it is not supplied. 9701da177e4SLinus Torvalds -- new is new state. 9711da177e4SLinus Torvalds -- flags 9721da177e4SLinus Torvalds NEIGH_UPDATE_F_OVERRIDE allows to override existing lladdr, 9731da177e4SLinus Torvalds if it is different. 9741da177e4SLinus Torvalds NEIGH_UPDATE_F_WEAK_OVERRIDE will suspect existing "connected" 9751da177e4SLinus Torvalds lladdr instead of overriding it 9761da177e4SLinus Torvalds if it is different. 9771da177e4SLinus Torvalds It also allows to retain current state 9781da177e4SLinus Torvalds if lladdr is unchanged. 9791da177e4SLinus Torvalds NEIGH_UPDATE_F_ADMIN means that the change is administrative. 9801da177e4SLinus Torvalds 9811da177e4SLinus Torvalds NEIGH_UPDATE_F_OVERRIDE_ISROUTER allows to override existing 9821da177e4SLinus Torvalds NTF_ROUTER flag. 9831da177e4SLinus Torvalds NEIGH_UPDATE_F_ISROUTER indicates if the neighbour is known as 9841da177e4SLinus Torvalds a router. 9851da177e4SLinus Torvalds 9861da177e4SLinus Torvalds Caller MUST hold reference count on the entry. 9871da177e4SLinus Torvalds */ 9881da177e4SLinus Torvalds 9891da177e4SLinus Torvalds int neigh_update(struct neighbour *neigh, const u8 *lladdr, u8 new, 9901da177e4SLinus Torvalds u32 flags) 9911da177e4SLinus Torvalds { 9921da177e4SLinus Torvalds u8 old; 9931da177e4SLinus Torvalds int err; 9941da177e4SLinus Torvalds int notify = 0; 9951da177e4SLinus Torvalds struct net_device *dev; 9961da177e4SLinus Torvalds int update_isrouter = 0; 9971da177e4SLinus Torvalds 9981da177e4SLinus Torvalds write_lock_bh(&neigh->lock); 9991da177e4SLinus Torvalds 10001da177e4SLinus Torvalds dev = neigh->dev; 10011da177e4SLinus Torvalds old = neigh->nud_state; 10021da177e4SLinus Torvalds err = -EPERM; 10031da177e4SLinus Torvalds 10041da177e4SLinus Torvalds if (!(flags & NEIGH_UPDATE_F_ADMIN) && 10051da177e4SLinus Torvalds (old & (NUD_NOARP | NUD_PERMANENT))) 10061da177e4SLinus Torvalds goto out; 10071da177e4SLinus Torvalds 10081da177e4SLinus Torvalds if (!(new & NUD_VALID)) { 10091da177e4SLinus Torvalds neigh_del_timer(neigh); 10101da177e4SLinus Torvalds if (old & NUD_CONNECTED) 10111da177e4SLinus Torvalds neigh_suspect(neigh); 10121da177e4SLinus Torvalds neigh->nud_state = new; 10131da177e4SLinus Torvalds err = 0; 10141da177e4SLinus Torvalds notify = old & NUD_VALID; 10155ef12d98STimo Teras if ((old & (NUD_INCOMPLETE | NUD_PROBE)) && 10165ef12d98STimo Teras (new & NUD_FAILED)) { 10175ef12d98STimo Teras neigh_invalidate(neigh); 10185ef12d98STimo Teras notify = 1; 10195ef12d98STimo Teras } 10201da177e4SLinus Torvalds goto out; 10211da177e4SLinus Torvalds } 10221da177e4SLinus Torvalds 10231da177e4SLinus Torvalds /* Compare new lladdr with cached one */ 10241da177e4SLinus Torvalds if (!dev->addr_len) { 10251da177e4SLinus Torvalds /* First case: device needs no address. */ 10261da177e4SLinus Torvalds lladdr = neigh->ha; 10271da177e4SLinus Torvalds } else if (lladdr) { 10281da177e4SLinus Torvalds /* The second case: if something is already cached 10291da177e4SLinus Torvalds and a new address is proposed: 10301da177e4SLinus Torvalds - compare new & old 10311da177e4SLinus Torvalds - if they are different, check override flag 10321da177e4SLinus Torvalds */ 10331da177e4SLinus Torvalds if ((old & NUD_VALID) && 10341da177e4SLinus Torvalds !memcmp(lladdr, neigh->ha, dev->addr_len)) 10351da177e4SLinus Torvalds lladdr = neigh->ha; 10361da177e4SLinus Torvalds } else { 10371da177e4SLinus Torvalds /* No address is supplied; if we know something, 10381da177e4SLinus Torvalds use it, otherwise discard the request. 10391da177e4SLinus Torvalds */ 10401da177e4SLinus Torvalds err = -EINVAL; 10411da177e4SLinus Torvalds if (!(old & NUD_VALID)) 10421da177e4SLinus Torvalds goto out; 10431da177e4SLinus Torvalds lladdr = neigh->ha; 10441da177e4SLinus Torvalds } 10451da177e4SLinus Torvalds 10461da177e4SLinus Torvalds if (new & NUD_CONNECTED) 10471da177e4SLinus Torvalds neigh->confirmed = jiffies; 10481da177e4SLinus Torvalds neigh->updated = jiffies; 10491da177e4SLinus Torvalds 10501da177e4SLinus Torvalds /* If entry was valid and address is not changed, 10511da177e4SLinus Torvalds do not change entry state, if new one is STALE. 10521da177e4SLinus Torvalds */ 10531da177e4SLinus Torvalds err = 0; 10541da177e4SLinus Torvalds update_isrouter = flags & NEIGH_UPDATE_F_OVERRIDE_ISROUTER; 10551da177e4SLinus Torvalds if (old & NUD_VALID) { 10561da177e4SLinus Torvalds if (lladdr != neigh->ha && !(flags & NEIGH_UPDATE_F_OVERRIDE)) { 10571da177e4SLinus Torvalds update_isrouter = 0; 10581da177e4SLinus Torvalds if ((flags & NEIGH_UPDATE_F_WEAK_OVERRIDE) && 10591da177e4SLinus Torvalds (old & NUD_CONNECTED)) { 10601da177e4SLinus Torvalds lladdr = neigh->ha; 10611da177e4SLinus Torvalds new = NUD_STALE; 10621da177e4SLinus Torvalds } else 10631da177e4SLinus Torvalds goto out; 10641da177e4SLinus Torvalds } else { 10651da177e4SLinus Torvalds if (lladdr == neigh->ha && new == NUD_STALE && 10661da177e4SLinus Torvalds ((flags & NEIGH_UPDATE_F_WEAK_OVERRIDE) || 10671da177e4SLinus Torvalds (old & NUD_CONNECTED)) 10681da177e4SLinus Torvalds ) 10691da177e4SLinus Torvalds new = old; 10701da177e4SLinus Torvalds } 10711da177e4SLinus Torvalds } 10721da177e4SLinus Torvalds 10731da177e4SLinus Torvalds if (new != old) { 10741da177e4SLinus Torvalds neigh_del_timer(neigh); 1075a43d8994SPavel Emelyanov if (new & NUD_IN_TIMER) 1076667347f1SDavid S. Miller neigh_add_timer(neigh, (jiffies + 10771da177e4SLinus Torvalds ((new & NUD_REACHABLE) ? 1078667347f1SDavid S. Miller neigh->parms->reachable_time : 1079667347f1SDavid S. Miller 0))); 10801da177e4SLinus Torvalds neigh->nud_state = new; 10811da177e4SLinus Torvalds } 10821da177e4SLinus Torvalds 10831da177e4SLinus Torvalds if (lladdr != neigh->ha) { 10841da177e4SLinus Torvalds memcpy(&neigh->ha, lladdr, dev->addr_len); 10851da177e4SLinus Torvalds neigh_update_hhs(neigh); 10861da177e4SLinus Torvalds if (!(new & NUD_CONNECTED)) 10871da177e4SLinus Torvalds neigh->confirmed = jiffies - 10881da177e4SLinus Torvalds (neigh->parms->base_reachable_time << 1); 10891da177e4SLinus Torvalds notify = 1; 10901da177e4SLinus Torvalds } 10911da177e4SLinus Torvalds if (new == old) 10921da177e4SLinus Torvalds goto out; 10931da177e4SLinus Torvalds if (new & NUD_CONNECTED) 10941da177e4SLinus Torvalds neigh_connect(neigh); 10951da177e4SLinus Torvalds else 10961da177e4SLinus Torvalds neigh_suspect(neigh); 10971da177e4SLinus Torvalds if (!(old & NUD_VALID)) { 10981da177e4SLinus Torvalds struct sk_buff *skb; 10991da177e4SLinus Torvalds 11001da177e4SLinus Torvalds /* Again: avoid dead loop if something went wrong */ 11011da177e4SLinus Torvalds 11021da177e4SLinus Torvalds while (neigh->nud_state & NUD_VALID && 11031da177e4SLinus Torvalds (skb = __skb_dequeue(&neigh->arp_queue)) != NULL) { 11041da177e4SLinus Torvalds struct neighbour *n1 = neigh; 11051da177e4SLinus Torvalds write_unlock_bh(&neigh->lock); 11061da177e4SLinus Torvalds /* On shaper/eql skb->dst->neighbour != neigh :( */ 1107adf30907SEric Dumazet if (skb_dst(skb) && skb_dst(skb)->neighbour) 1108adf30907SEric Dumazet n1 = skb_dst(skb)->neighbour; 11091da177e4SLinus Torvalds n1->output(skb); 11101da177e4SLinus Torvalds write_lock_bh(&neigh->lock); 11111da177e4SLinus Torvalds } 11121da177e4SLinus Torvalds skb_queue_purge(&neigh->arp_queue); 11131da177e4SLinus Torvalds } 11141da177e4SLinus Torvalds out: 11151da177e4SLinus Torvalds if (update_isrouter) { 11161da177e4SLinus Torvalds neigh->flags = (flags & NEIGH_UPDATE_F_ISROUTER) ? 11171da177e4SLinus Torvalds (neigh->flags | NTF_ROUTER) : 11181da177e4SLinus Torvalds (neigh->flags & ~NTF_ROUTER); 11191da177e4SLinus Torvalds } 11201da177e4SLinus Torvalds write_unlock_bh(&neigh->lock); 11218d71740cSTom Tucker 11228d71740cSTom Tucker if (notify) 1123d961db35SThomas Graf neigh_update_notify(neigh); 1124d961db35SThomas Graf 11251da177e4SLinus Torvalds return err; 11261da177e4SLinus Torvalds } 11270a204500SYOSHIFUJI Hideaki EXPORT_SYMBOL(neigh_update); 11281da177e4SLinus Torvalds 11291da177e4SLinus Torvalds struct neighbour *neigh_event_ns(struct neigh_table *tbl, 11301da177e4SLinus Torvalds u8 *lladdr, void *saddr, 11311da177e4SLinus Torvalds struct net_device *dev) 11321da177e4SLinus Torvalds { 11331da177e4SLinus Torvalds struct neighbour *neigh = __neigh_lookup(tbl, saddr, dev, 11341da177e4SLinus Torvalds lladdr || !dev->addr_len); 11351da177e4SLinus Torvalds if (neigh) 11361da177e4SLinus Torvalds neigh_update(neigh, lladdr, NUD_STALE, 11371da177e4SLinus Torvalds NEIGH_UPDATE_F_OVERRIDE); 11381da177e4SLinus Torvalds return neigh; 11391da177e4SLinus Torvalds } 11400a204500SYOSHIFUJI Hideaki EXPORT_SYMBOL(neigh_event_ns); 11411da177e4SLinus Torvalds 11421da177e4SLinus Torvalds static void neigh_hh_init(struct neighbour *n, struct dst_entry *dst, 1143d77072ecSAl Viro __be16 protocol) 11441da177e4SLinus Torvalds { 11451da177e4SLinus Torvalds struct hh_cache *hh; 11461da177e4SLinus Torvalds struct net_device *dev = dst->dev; 11471da177e4SLinus Torvalds 11481da177e4SLinus Torvalds for (hh = n->hh; hh; hh = hh->hh_next) 11491da177e4SLinus Torvalds if (hh->hh_type == protocol) 11501da177e4SLinus Torvalds break; 11511da177e4SLinus Torvalds 115277d04bd9SAndrew Morton if (!hh && (hh = kzalloc(sizeof(*hh), GFP_ATOMIC)) != NULL) { 11533644f0ceSStephen Hemminger seqlock_init(&hh->hh_lock); 11541da177e4SLinus Torvalds hh->hh_type = protocol; 11551da177e4SLinus Torvalds atomic_set(&hh->hh_refcnt, 0); 11561da177e4SLinus Torvalds hh->hh_next = NULL; 11573b04dddeSStephen Hemminger 11583b04dddeSStephen Hemminger if (dev->header_ops->cache(n, hh)) { 11591da177e4SLinus Torvalds kfree(hh); 11601da177e4SLinus Torvalds hh = NULL; 11611da177e4SLinus Torvalds } else { 11621da177e4SLinus Torvalds atomic_inc(&hh->hh_refcnt); 11631da177e4SLinus Torvalds hh->hh_next = n->hh; 11641da177e4SLinus Torvalds n->hh = hh; 11651da177e4SLinus Torvalds if (n->nud_state & NUD_CONNECTED) 11661da177e4SLinus Torvalds hh->hh_output = n->ops->hh_output; 11671da177e4SLinus Torvalds else 11681da177e4SLinus Torvalds hh->hh_output = n->ops->output; 11691da177e4SLinus Torvalds } 11701da177e4SLinus Torvalds } 11711da177e4SLinus Torvalds if (hh) { 11721da177e4SLinus Torvalds atomic_inc(&hh->hh_refcnt); 11731da177e4SLinus Torvalds dst->hh = hh; 11741da177e4SLinus Torvalds } 11751da177e4SLinus Torvalds } 11761da177e4SLinus Torvalds 11771da177e4SLinus Torvalds /* This function can be used in contexts, where only old dev_queue_xmit 11781da177e4SLinus Torvalds worked, f.e. if you want to override normal output path (eql, shaper), 11791da177e4SLinus Torvalds but resolution is not made yet. 11801da177e4SLinus Torvalds */ 11811da177e4SLinus Torvalds 11821da177e4SLinus Torvalds int neigh_compat_output(struct sk_buff *skb) 11831da177e4SLinus Torvalds { 11841da177e4SLinus Torvalds struct net_device *dev = skb->dev; 11851da177e4SLinus Torvalds 1186bbe735e4SArnaldo Carvalho de Melo __skb_pull(skb, skb_network_offset(skb)); 11871da177e4SLinus Torvalds 11880c4e8581SStephen Hemminger if (dev_hard_header(skb, dev, ntohs(skb->protocol), NULL, NULL, 11891da177e4SLinus Torvalds skb->len) < 0 && 11903b04dddeSStephen Hemminger dev->header_ops->rebuild(skb)) 11911da177e4SLinus Torvalds return 0; 11921da177e4SLinus Torvalds 11931da177e4SLinus Torvalds return dev_queue_xmit(skb); 11941da177e4SLinus Torvalds } 11950a204500SYOSHIFUJI Hideaki EXPORT_SYMBOL(neigh_compat_output); 11961da177e4SLinus Torvalds 11971da177e4SLinus Torvalds /* Slow and careful. */ 11981da177e4SLinus Torvalds 11991da177e4SLinus Torvalds int neigh_resolve_output(struct sk_buff *skb) 12001da177e4SLinus Torvalds { 1201adf30907SEric Dumazet struct dst_entry *dst = skb_dst(skb); 12021da177e4SLinus Torvalds struct neighbour *neigh; 12031da177e4SLinus Torvalds int rc = 0; 12041da177e4SLinus Torvalds 12051da177e4SLinus Torvalds if (!dst || !(neigh = dst->neighbour)) 12061da177e4SLinus Torvalds goto discard; 12071da177e4SLinus Torvalds 1208bbe735e4SArnaldo Carvalho de Melo __skb_pull(skb, skb_network_offset(skb)); 12091da177e4SLinus Torvalds 12101da177e4SLinus Torvalds if (!neigh_event_send(neigh, skb)) { 12111da177e4SLinus Torvalds int err; 12121da177e4SLinus Torvalds struct net_device *dev = neigh->dev; 12133b04dddeSStephen Hemminger if (dev->header_ops->cache && !dst->hh) { 12141da177e4SLinus Torvalds write_lock_bh(&neigh->lock); 12151da177e4SLinus Torvalds if (!dst->hh) 12161da177e4SLinus Torvalds neigh_hh_init(neigh, dst, dst->ops->protocol); 12170c4e8581SStephen Hemminger err = dev_hard_header(skb, dev, ntohs(skb->protocol), 12181da177e4SLinus Torvalds neigh->ha, NULL, skb->len); 12191da177e4SLinus Torvalds write_unlock_bh(&neigh->lock); 12201da177e4SLinus Torvalds } else { 12211da177e4SLinus Torvalds read_lock_bh(&neigh->lock); 12220c4e8581SStephen Hemminger err = dev_hard_header(skb, dev, ntohs(skb->protocol), 12231da177e4SLinus Torvalds neigh->ha, NULL, skb->len); 12241da177e4SLinus Torvalds read_unlock_bh(&neigh->lock); 12251da177e4SLinus Torvalds } 12261da177e4SLinus Torvalds if (err >= 0) 12271da177e4SLinus Torvalds rc = neigh->ops->queue_xmit(skb); 12281da177e4SLinus Torvalds else 12291da177e4SLinus Torvalds goto out_kfree_skb; 12301da177e4SLinus Torvalds } 12311da177e4SLinus Torvalds out: 12321da177e4SLinus Torvalds return rc; 12331da177e4SLinus Torvalds discard: 12341da177e4SLinus Torvalds NEIGH_PRINTK1("neigh_resolve_output: dst=%p neigh=%p\n", 12351da177e4SLinus Torvalds dst, dst ? dst->neighbour : NULL); 12361da177e4SLinus Torvalds out_kfree_skb: 12371da177e4SLinus Torvalds rc = -EINVAL; 12381da177e4SLinus Torvalds kfree_skb(skb); 12391da177e4SLinus Torvalds goto out; 12401da177e4SLinus Torvalds } 12410a204500SYOSHIFUJI Hideaki EXPORT_SYMBOL(neigh_resolve_output); 12421da177e4SLinus Torvalds 12431da177e4SLinus Torvalds /* As fast as possible without hh cache */ 12441da177e4SLinus Torvalds 12451da177e4SLinus Torvalds int neigh_connected_output(struct sk_buff *skb) 12461da177e4SLinus Torvalds { 12471da177e4SLinus Torvalds int err; 1248adf30907SEric Dumazet struct dst_entry *dst = skb_dst(skb); 12491da177e4SLinus Torvalds struct neighbour *neigh = dst->neighbour; 12501da177e4SLinus Torvalds struct net_device *dev = neigh->dev; 12511da177e4SLinus Torvalds 1252bbe735e4SArnaldo Carvalho de Melo __skb_pull(skb, skb_network_offset(skb)); 12531da177e4SLinus Torvalds 12541da177e4SLinus Torvalds read_lock_bh(&neigh->lock); 12550c4e8581SStephen Hemminger err = dev_hard_header(skb, dev, ntohs(skb->protocol), 12561da177e4SLinus Torvalds neigh->ha, NULL, skb->len); 12571da177e4SLinus Torvalds read_unlock_bh(&neigh->lock); 12581da177e4SLinus Torvalds if (err >= 0) 12591da177e4SLinus Torvalds err = neigh->ops->queue_xmit(skb); 12601da177e4SLinus Torvalds else { 12611da177e4SLinus Torvalds err = -EINVAL; 12621da177e4SLinus Torvalds kfree_skb(skb); 12631da177e4SLinus Torvalds } 12641da177e4SLinus Torvalds return err; 12651da177e4SLinus Torvalds } 12660a204500SYOSHIFUJI Hideaki EXPORT_SYMBOL(neigh_connected_output); 12671da177e4SLinus Torvalds 12681da177e4SLinus Torvalds static void neigh_proxy_process(unsigned long arg) 12691da177e4SLinus Torvalds { 12701da177e4SLinus Torvalds struct neigh_table *tbl = (struct neigh_table *)arg; 12711da177e4SLinus Torvalds long sched_next = 0; 12721da177e4SLinus Torvalds unsigned long now = jiffies; 1273f72051b0SDavid S. Miller struct sk_buff *skb, *n; 12741da177e4SLinus Torvalds 12751da177e4SLinus Torvalds spin_lock(&tbl->proxy_queue.lock); 12761da177e4SLinus Torvalds 1277f72051b0SDavid S. Miller skb_queue_walk_safe(&tbl->proxy_queue, skb, n) { 1278f72051b0SDavid S. Miller long tdif = NEIGH_CB(skb)->sched_next - now; 12791da177e4SLinus Torvalds 12801da177e4SLinus Torvalds if (tdif <= 0) { 1281f72051b0SDavid S. Miller struct net_device *dev = skb->dev; 1282f72051b0SDavid S. Miller __skb_unlink(skb, &tbl->proxy_queue); 12831da177e4SLinus Torvalds if (tbl->proxy_redo && netif_running(dev)) 1284f72051b0SDavid S. Miller tbl->proxy_redo(skb); 12851da177e4SLinus Torvalds else 1286f72051b0SDavid S. Miller kfree_skb(skb); 12871da177e4SLinus Torvalds 12881da177e4SLinus Torvalds dev_put(dev); 12891da177e4SLinus Torvalds } else if (!sched_next || tdif < sched_next) 12901da177e4SLinus Torvalds sched_next = tdif; 12911da177e4SLinus Torvalds } 12921da177e4SLinus Torvalds del_timer(&tbl->proxy_timer); 12931da177e4SLinus Torvalds if (sched_next) 12941da177e4SLinus Torvalds mod_timer(&tbl->proxy_timer, jiffies + sched_next); 12951da177e4SLinus Torvalds spin_unlock(&tbl->proxy_queue.lock); 12961da177e4SLinus Torvalds } 12971da177e4SLinus Torvalds 12981da177e4SLinus Torvalds void pneigh_enqueue(struct neigh_table *tbl, struct neigh_parms *p, 12991da177e4SLinus Torvalds struct sk_buff *skb) 13001da177e4SLinus Torvalds { 13011da177e4SLinus Torvalds unsigned long now = jiffies; 13021da177e4SLinus Torvalds unsigned long sched_next = now + (net_random() % p->proxy_delay); 13031da177e4SLinus Torvalds 13041da177e4SLinus Torvalds if (tbl->proxy_queue.qlen > p->proxy_qlen) { 13051da177e4SLinus Torvalds kfree_skb(skb); 13061da177e4SLinus Torvalds return; 13071da177e4SLinus Torvalds } 1308a61bbcf2SPatrick McHardy 1309a61bbcf2SPatrick McHardy NEIGH_CB(skb)->sched_next = sched_next; 1310a61bbcf2SPatrick McHardy NEIGH_CB(skb)->flags |= LOCALLY_ENQUEUED; 13111da177e4SLinus Torvalds 13121da177e4SLinus Torvalds spin_lock(&tbl->proxy_queue.lock); 13131da177e4SLinus Torvalds if (del_timer(&tbl->proxy_timer)) { 13141da177e4SLinus Torvalds if (time_before(tbl->proxy_timer.expires, sched_next)) 13151da177e4SLinus Torvalds sched_next = tbl->proxy_timer.expires; 13161da177e4SLinus Torvalds } 1317adf30907SEric Dumazet skb_dst_drop(skb); 13181da177e4SLinus Torvalds dev_hold(skb->dev); 13191da177e4SLinus Torvalds __skb_queue_tail(&tbl->proxy_queue, skb); 13201da177e4SLinus Torvalds mod_timer(&tbl->proxy_timer, sched_next); 13211da177e4SLinus Torvalds spin_unlock(&tbl->proxy_queue.lock); 13221da177e4SLinus Torvalds } 13230a204500SYOSHIFUJI Hideaki EXPORT_SYMBOL(pneigh_enqueue); 13241da177e4SLinus Torvalds 132597fd5bc7STobias Klauser static inline struct neigh_parms *lookup_neigh_parms(struct neigh_table *tbl, 1326426b5303SEric W. Biederman struct net *net, int ifindex) 1327426b5303SEric W. Biederman { 1328426b5303SEric W. Biederman struct neigh_parms *p; 1329426b5303SEric W. Biederman 1330426b5303SEric W. Biederman for (p = &tbl->parms; p; p = p->next) { 1331878628fbSYOSHIFUJI Hideaki if ((p->dev && p->dev->ifindex == ifindex && net_eq(neigh_parms_net(p), net)) || 1332426b5303SEric W. Biederman (!p->dev && !ifindex)) 1333426b5303SEric W. Biederman return p; 1334426b5303SEric W. Biederman } 1335426b5303SEric W. Biederman 1336426b5303SEric W. Biederman return NULL; 1337426b5303SEric W. Biederman } 13381da177e4SLinus Torvalds 13391da177e4SLinus Torvalds struct neigh_parms *neigh_parms_alloc(struct net_device *dev, 13401da177e4SLinus Torvalds struct neigh_table *tbl) 13411da177e4SLinus Torvalds { 1342426b5303SEric W. Biederman struct neigh_parms *p, *ref; 134300829823SStephen Hemminger struct net *net = dev_net(dev); 134400829823SStephen Hemminger const struct net_device_ops *ops = dev->netdev_ops; 13451da177e4SLinus Torvalds 134697fd5bc7STobias Klauser ref = lookup_neigh_parms(tbl, net, 0); 1347426b5303SEric W. Biederman if (!ref) 1348426b5303SEric W. Biederman return NULL; 1349426b5303SEric W. Biederman 1350426b5303SEric W. Biederman p = kmemdup(ref, sizeof(*p), GFP_KERNEL); 13511da177e4SLinus Torvalds if (p) { 13521da177e4SLinus Torvalds p->tbl = tbl; 13531da177e4SLinus Torvalds atomic_set(&p->refcnt, 1); 13541da177e4SLinus Torvalds p->reachable_time = 13551da177e4SLinus Torvalds neigh_rand_reach_time(p->base_reachable_time); 1356486b51d3SDenis V. Lunev 135700829823SStephen Hemminger if (ops->ndo_neigh_setup && ops->ndo_neigh_setup(dev, p)) { 13581da177e4SLinus Torvalds kfree(p); 13591da177e4SLinus Torvalds return NULL; 13601da177e4SLinus Torvalds } 1361c7fb64dbSThomas Graf 1362c7fb64dbSThomas Graf dev_hold(dev); 1363c7fb64dbSThomas Graf p->dev = dev; 1364e42ea986SEric Dumazet write_pnet(&p->net, hold_net(net)); 13651da177e4SLinus Torvalds p->sysctl_table = NULL; 13661da177e4SLinus Torvalds write_lock_bh(&tbl->lock); 13671da177e4SLinus Torvalds p->next = tbl->parms.next; 13681da177e4SLinus Torvalds tbl->parms.next = p; 13691da177e4SLinus Torvalds write_unlock_bh(&tbl->lock); 13701da177e4SLinus Torvalds } 13711da177e4SLinus Torvalds return p; 13721da177e4SLinus Torvalds } 13730a204500SYOSHIFUJI Hideaki EXPORT_SYMBOL(neigh_parms_alloc); 13741da177e4SLinus Torvalds 13751da177e4SLinus Torvalds static void neigh_rcu_free_parms(struct rcu_head *head) 13761da177e4SLinus Torvalds { 13771da177e4SLinus Torvalds struct neigh_parms *parms = 13781da177e4SLinus Torvalds container_of(head, struct neigh_parms, rcu_head); 13791da177e4SLinus Torvalds 13801da177e4SLinus Torvalds neigh_parms_put(parms); 13811da177e4SLinus Torvalds } 13821da177e4SLinus Torvalds 13831da177e4SLinus Torvalds void neigh_parms_release(struct neigh_table *tbl, struct neigh_parms *parms) 13841da177e4SLinus Torvalds { 13851da177e4SLinus Torvalds struct neigh_parms **p; 13861da177e4SLinus Torvalds 13871da177e4SLinus Torvalds if (!parms || parms == &tbl->parms) 13881da177e4SLinus Torvalds return; 13891da177e4SLinus Torvalds write_lock_bh(&tbl->lock); 13901da177e4SLinus Torvalds for (p = &tbl->parms.next; *p; p = &(*p)->next) { 13911da177e4SLinus Torvalds if (*p == parms) { 13921da177e4SLinus Torvalds *p = parms->next; 13931da177e4SLinus Torvalds parms->dead = 1; 13941da177e4SLinus Torvalds write_unlock_bh(&tbl->lock); 1395cecbb639SDavid S. Miller if (parms->dev) 1396cecbb639SDavid S. Miller dev_put(parms->dev); 13971da177e4SLinus Torvalds call_rcu(&parms->rcu_head, neigh_rcu_free_parms); 13981da177e4SLinus Torvalds return; 13991da177e4SLinus Torvalds } 14001da177e4SLinus Torvalds } 14011da177e4SLinus Torvalds write_unlock_bh(&tbl->lock); 14021da177e4SLinus Torvalds NEIGH_PRINTK1("neigh_parms_release: not found\n"); 14031da177e4SLinus Torvalds } 14040a204500SYOSHIFUJI Hideaki EXPORT_SYMBOL(neigh_parms_release); 14051da177e4SLinus Torvalds 140606f0511dSDenis V. Lunev static void neigh_parms_destroy(struct neigh_parms *parms) 14071da177e4SLinus Torvalds { 140857da52c1SYOSHIFUJI Hideaki release_net(neigh_parms_net(parms)); 14091da177e4SLinus Torvalds kfree(parms); 14101da177e4SLinus Torvalds } 14111da177e4SLinus Torvalds 1412c2ecba71SPavel Emelianov static struct lock_class_key neigh_table_proxy_queue_class; 1413c2ecba71SPavel Emelianov 1414bd89efc5SSimon Kelley void neigh_table_init_no_netlink(struct neigh_table *tbl) 14151da177e4SLinus Torvalds { 14161da177e4SLinus Torvalds unsigned long now = jiffies; 14171da177e4SLinus Torvalds unsigned long phsize; 14181da177e4SLinus Torvalds 1419e42ea986SEric Dumazet write_pnet(&tbl->parms.net, &init_net); 14201da177e4SLinus Torvalds atomic_set(&tbl->parms.refcnt, 1); 14211da177e4SLinus Torvalds tbl->parms.reachable_time = 14221da177e4SLinus Torvalds neigh_rand_reach_time(tbl->parms.base_reachable_time); 14231da177e4SLinus Torvalds 14241da177e4SLinus Torvalds if (!tbl->kmem_cachep) 1425e5d679f3SAlexey Dobriyan tbl->kmem_cachep = 1426e5d679f3SAlexey Dobriyan kmem_cache_create(tbl->id, tbl->entry_size, 0, 1427e5d679f3SAlexey Dobriyan SLAB_HWCACHE_ALIGN|SLAB_PANIC, 142820c2df83SPaul Mundt NULL); 14291da177e4SLinus Torvalds tbl->stats = alloc_percpu(struct neigh_statistics); 14301da177e4SLinus Torvalds if (!tbl->stats) 14311da177e4SLinus Torvalds panic("cannot create neighbour cache statistics"); 14321da177e4SLinus Torvalds 14331da177e4SLinus Torvalds #ifdef CONFIG_PROC_FS 14349b739ba5SAlexey Dobriyan if (!proc_create_data(tbl->id, 0, init_net.proc_net_stat, 14359b739ba5SAlexey Dobriyan &neigh_stat_seq_fops, tbl)) 14361da177e4SLinus Torvalds panic("cannot create neighbour proc dir entry"); 14371da177e4SLinus Torvalds #endif 14381da177e4SLinus Torvalds 14391da177e4SLinus Torvalds tbl->hash_mask = 1; 14401da177e4SLinus Torvalds tbl->hash_buckets = neigh_hash_alloc(tbl->hash_mask + 1); 14411da177e4SLinus Torvalds 14421da177e4SLinus Torvalds phsize = (PNEIGH_HASHMASK + 1) * sizeof(struct pneigh_entry *); 144377d04bd9SAndrew Morton tbl->phash_buckets = kzalloc(phsize, GFP_KERNEL); 14441da177e4SLinus Torvalds 14451da177e4SLinus Torvalds if (!tbl->hash_buckets || !tbl->phash_buckets) 14461da177e4SLinus Torvalds panic("cannot allocate neighbour cache hashes"); 14471da177e4SLinus Torvalds 14481da177e4SLinus Torvalds get_random_bytes(&tbl->hash_rnd, sizeof(tbl->hash_rnd)); 14491da177e4SLinus Torvalds 14501da177e4SLinus Torvalds rwlock_init(&tbl->lock); 1451e4c4e448SEric Dumazet INIT_DELAYED_WORK_DEFERRABLE(&tbl->gc_work, neigh_periodic_work); 1452e4c4e448SEric Dumazet schedule_delayed_work(&tbl->gc_work, tbl->parms.reachable_time); 1453b24b8a24SPavel Emelyanov setup_timer(&tbl->proxy_timer, neigh_proxy_process, (unsigned long)tbl); 1454c2ecba71SPavel Emelianov skb_queue_head_init_class(&tbl->proxy_queue, 1455c2ecba71SPavel Emelianov &neigh_table_proxy_queue_class); 14561da177e4SLinus Torvalds 14571da177e4SLinus Torvalds tbl->last_flush = now; 14581da177e4SLinus Torvalds tbl->last_rand = now + tbl->parms.reachable_time * 20; 1459bd89efc5SSimon Kelley } 14600a204500SYOSHIFUJI Hideaki EXPORT_SYMBOL(neigh_table_init_no_netlink); 1461bd89efc5SSimon Kelley 1462bd89efc5SSimon Kelley void neigh_table_init(struct neigh_table *tbl) 1463bd89efc5SSimon Kelley { 1464bd89efc5SSimon Kelley struct neigh_table *tmp; 1465bd89efc5SSimon Kelley 1466bd89efc5SSimon Kelley neigh_table_init_no_netlink(tbl); 14671da177e4SLinus Torvalds write_lock(&neigh_tbl_lock); 1468bd89efc5SSimon Kelley for (tmp = neigh_tables; tmp; tmp = tmp->next) { 1469bd89efc5SSimon Kelley if (tmp->family == tbl->family) 1470bd89efc5SSimon Kelley break; 1471bd89efc5SSimon Kelley } 14721da177e4SLinus Torvalds tbl->next = neigh_tables; 14731da177e4SLinus Torvalds neigh_tables = tbl; 14741da177e4SLinus Torvalds write_unlock(&neigh_tbl_lock); 1475bd89efc5SSimon Kelley 1476bd89efc5SSimon Kelley if (unlikely(tmp)) { 1477bd89efc5SSimon Kelley printk(KERN_ERR "NEIGH: Registering multiple tables for " 1478bd89efc5SSimon Kelley "family %d\n", tbl->family); 1479bd89efc5SSimon Kelley dump_stack(); 1480bd89efc5SSimon Kelley } 14811da177e4SLinus Torvalds } 14820a204500SYOSHIFUJI Hideaki EXPORT_SYMBOL(neigh_table_init); 14831da177e4SLinus Torvalds 14841da177e4SLinus Torvalds int neigh_table_clear(struct neigh_table *tbl) 14851da177e4SLinus Torvalds { 14861da177e4SLinus Torvalds struct neigh_table **tp; 14871da177e4SLinus Torvalds 14881da177e4SLinus Torvalds /* It is not clean... Fix it to unload IPv6 module safely */ 1489e4c4e448SEric Dumazet cancel_delayed_work(&tbl->gc_work); 1490e4c4e448SEric Dumazet flush_scheduled_work(); 14911da177e4SLinus Torvalds del_timer_sync(&tbl->proxy_timer); 14921da177e4SLinus Torvalds pneigh_queue_purge(&tbl->proxy_queue); 14931da177e4SLinus Torvalds neigh_ifdown(tbl, NULL); 14941da177e4SLinus Torvalds if (atomic_read(&tbl->entries)) 14951da177e4SLinus Torvalds printk(KERN_CRIT "neighbour leakage\n"); 14961da177e4SLinus Torvalds write_lock(&neigh_tbl_lock); 14971da177e4SLinus Torvalds for (tp = &neigh_tables; *tp; tp = &(*tp)->next) { 14981da177e4SLinus Torvalds if (*tp == tbl) { 14991da177e4SLinus Torvalds *tp = tbl->next; 15001da177e4SLinus Torvalds break; 15011da177e4SLinus Torvalds } 15021da177e4SLinus Torvalds } 15031da177e4SLinus Torvalds write_unlock(&neigh_tbl_lock); 15041da177e4SLinus Torvalds 15051da177e4SLinus Torvalds neigh_hash_free(tbl->hash_buckets, tbl->hash_mask + 1); 15061da177e4SLinus Torvalds tbl->hash_buckets = NULL; 15071da177e4SLinus Torvalds 15081da177e4SLinus Torvalds kfree(tbl->phash_buckets); 15091da177e4SLinus Torvalds tbl->phash_buckets = NULL; 15101da177e4SLinus Torvalds 15113f192b5cSAlexey Dobriyan remove_proc_entry(tbl->id, init_net.proc_net_stat); 15123f192b5cSAlexey Dobriyan 15133fcde74bSKirill Korotaev free_percpu(tbl->stats); 15143fcde74bSKirill Korotaev tbl->stats = NULL; 15153fcde74bSKirill Korotaev 1516bfb85c9fSRandy Dunlap kmem_cache_destroy(tbl->kmem_cachep); 1517bfb85c9fSRandy Dunlap tbl->kmem_cachep = NULL; 1518bfb85c9fSRandy Dunlap 15191da177e4SLinus Torvalds return 0; 15201da177e4SLinus Torvalds } 15210a204500SYOSHIFUJI Hideaki EXPORT_SYMBOL(neigh_table_clear); 15221da177e4SLinus Torvalds 1523c8822a4eSThomas Graf static int neigh_delete(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg) 15241da177e4SLinus Torvalds { 15253b1e0a65SYOSHIFUJI Hideaki struct net *net = sock_net(skb->sk); 1526a14a49d2SThomas Graf struct ndmsg *ndm; 1527a14a49d2SThomas Graf struct nlattr *dst_attr; 15281da177e4SLinus Torvalds struct neigh_table *tbl; 15291da177e4SLinus Torvalds struct net_device *dev = NULL; 1530a14a49d2SThomas Graf int err = -EINVAL; 15311da177e4SLinus Torvalds 1532a14a49d2SThomas Graf if (nlmsg_len(nlh) < sizeof(*ndm)) 15331da177e4SLinus Torvalds goto out; 15341da177e4SLinus Torvalds 1535a14a49d2SThomas Graf dst_attr = nlmsg_find_attr(nlh, sizeof(*ndm), NDA_DST); 1536a14a49d2SThomas Graf if (dst_attr == NULL) 1537a14a49d2SThomas Graf goto out; 1538a14a49d2SThomas Graf 1539a14a49d2SThomas Graf ndm = nlmsg_data(nlh); 1540a14a49d2SThomas Graf if (ndm->ndm_ifindex) { 1541881d966bSEric W. Biederman dev = dev_get_by_index(net, ndm->ndm_ifindex); 1542a14a49d2SThomas Graf if (dev == NULL) { 1543a14a49d2SThomas Graf err = -ENODEV; 1544a14a49d2SThomas Graf goto out; 1545a14a49d2SThomas Graf } 1546a14a49d2SThomas Graf } 1547a14a49d2SThomas Graf 15481da177e4SLinus Torvalds read_lock(&neigh_tbl_lock); 15491da177e4SLinus Torvalds for (tbl = neigh_tables; tbl; tbl = tbl->next) { 1550a14a49d2SThomas Graf struct neighbour *neigh; 15511da177e4SLinus Torvalds 15521da177e4SLinus Torvalds if (tbl->family != ndm->ndm_family) 15531da177e4SLinus Torvalds continue; 15541da177e4SLinus Torvalds read_unlock(&neigh_tbl_lock); 15551da177e4SLinus Torvalds 1556a14a49d2SThomas Graf if (nla_len(dst_attr) < tbl->key_len) 15571da177e4SLinus Torvalds goto out_dev_put; 15581da177e4SLinus Torvalds 15591da177e4SLinus Torvalds if (ndm->ndm_flags & NTF_PROXY) { 1560426b5303SEric W. Biederman err = pneigh_delete(tbl, net, nla_data(dst_attr), dev); 15611da177e4SLinus Torvalds goto out_dev_put; 15621da177e4SLinus Torvalds } 15631da177e4SLinus Torvalds 1564a14a49d2SThomas Graf if (dev == NULL) 1565a14a49d2SThomas Graf goto out_dev_put; 15661da177e4SLinus Torvalds 1567a14a49d2SThomas Graf neigh = neigh_lookup(tbl, nla_data(dst_attr), dev); 1568a14a49d2SThomas Graf if (neigh == NULL) { 1569a14a49d2SThomas Graf err = -ENOENT; 1570a14a49d2SThomas Graf goto out_dev_put; 1571a14a49d2SThomas Graf } 1572a14a49d2SThomas Graf 1573a14a49d2SThomas Graf err = neigh_update(neigh, NULL, NUD_FAILED, 15741da177e4SLinus Torvalds NEIGH_UPDATE_F_OVERRIDE | 15751da177e4SLinus Torvalds NEIGH_UPDATE_F_ADMIN); 1576a14a49d2SThomas Graf neigh_release(neigh); 15771da177e4SLinus Torvalds goto out_dev_put; 15781da177e4SLinus Torvalds } 15791da177e4SLinus Torvalds read_unlock(&neigh_tbl_lock); 1580a14a49d2SThomas Graf err = -EAFNOSUPPORT; 1581a14a49d2SThomas Graf 15821da177e4SLinus Torvalds out_dev_put: 15831da177e4SLinus Torvalds if (dev) 15841da177e4SLinus Torvalds dev_put(dev); 15851da177e4SLinus Torvalds out: 15861da177e4SLinus Torvalds return err; 15871da177e4SLinus Torvalds } 15881da177e4SLinus Torvalds 1589c8822a4eSThomas Graf static int neigh_add(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg) 15901da177e4SLinus Torvalds { 15913b1e0a65SYOSHIFUJI Hideaki struct net *net = sock_net(skb->sk); 15925208debdSThomas Graf struct ndmsg *ndm; 15935208debdSThomas Graf struct nlattr *tb[NDA_MAX+1]; 15941da177e4SLinus Torvalds struct neigh_table *tbl; 15951da177e4SLinus Torvalds struct net_device *dev = NULL; 15965208debdSThomas Graf int err; 15971da177e4SLinus Torvalds 15985208debdSThomas Graf err = nlmsg_parse(nlh, sizeof(*ndm), tb, NDA_MAX, NULL); 15995208debdSThomas Graf if (err < 0) 16001da177e4SLinus Torvalds goto out; 16011da177e4SLinus Torvalds 16025208debdSThomas Graf err = -EINVAL; 16035208debdSThomas Graf if (tb[NDA_DST] == NULL) 16045208debdSThomas Graf goto out; 16055208debdSThomas Graf 16065208debdSThomas Graf ndm = nlmsg_data(nlh); 16075208debdSThomas Graf if (ndm->ndm_ifindex) { 1608881d966bSEric W. Biederman dev = dev_get_by_index(net, ndm->ndm_ifindex); 16095208debdSThomas Graf if (dev == NULL) { 16105208debdSThomas Graf err = -ENODEV; 16115208debdSThomas Graf goto out; 16125208debdSThomas Graf } 16135208debdSThomas Graf 16145208debdSThomas Graf if (tb[NDA_LLADDR] && nla_len(tb[NDA_LLADDR]) < dev->addr_len) 16155208debdSThomas Graf goto out_dev_put; 16165208debdSThomas Graf } 16175208debdSThomas Graf 16181da177e4SLinus Torvalds read_lock(&neigh_tbl_lock); 16191da177e4SLinus Torvalds for (tbl = neigh_tables; tbl; tbl = tbl->next) { 16205208debdSThomas Graf int flags = NEIGH_UPDATE_F_ADMIN | NEIGH_UPDATE_F_OVERRIDE; 16215208debdSThomas Graf struct neighbour *neigh; 16225208debdSThomas Graf void *dst, *lladdr; 16231da177e4SLinus Torvalds 16241da177e4SLinus Torvalds if (tbl->family != ndm->ndm_family) 16251da177e4SLinus Torvalds continue; 16261da177e4SLinus Torvalds read_unlock(&neigh_tbl_lock); 16271da177e4SLinus Torvalds 16285208debdSThomas Graf if (nla_len(tb[NDA_DST]) < tbl->key_len) 16291da177e4SLinus Torvalds goto out_dev_put; 16305208debdSThomas Graf dst = nla_data(tb[NDA_DST]); 16315208debdSThomas Graf lladdr = tb[NDA_LLADDR] ? nla_data(tb[NDA_LLADDR]) : NULL; 16321da177e4SLinus Torvalds 16331da177e4SLinus Torvalds if (ndm->ndm_flags & NTF_PROXY) { 163462dd9318SVille Nuorvala struct pneigh_entry *pn; 163562dd9318SVille Nuorvala 16365208debdSThomas Graf err = -ENOBUFS; 1637426b5303SEric W. Biederman pn = pneigh_lookup(tbl, net, dst, dev, 1); 163862dd9318SVille Nuorvala if (pn) { 163962dd9318SVille Nuorvala pn->flags = ndm->ndm_flags; 164062dd9318SVille Nuorvala err = 0; 164162dd9318SVille Nuorvala } 16421da177e4SLinus Torvalds goto out_dev_put; 16431da177e4SLinus Torvalds } 16441da177e4SLinus Torvalds 16455208debdSThomas Graf if (dev == NULL) 16461da177e4SLinus Torvalds goto out_dev_put; 16471da177e4SLinus Torvalds 16485208debdSThomas Graf neigh = neigh_lookup(tbl, dst, dev); 16495208debdSThomas Graf if (neigh == NULL) { 16505208debdSThomas Graf if (!(nlh->nlmsg_flags & NLM_F_CREATE)) { 16511da177e4SLinus Torvalds err = -ENOENT; 16521da177e4SLinus Torvalds goto out_dev_put; 16535208debdSThomas Graf } 16545208debdSThomas Graf 16555208debdSThomas Graf neigh = __neigh_lookup_errno(tbl, dst, dev); 16565208debdSThomas Graf if (IS_ERR(neigh)) { 16575208debdSThomas Graf err = PTR_ERR(neigh); 16581da177e4SLinus Torvalds goto out_dev_put; 16591da177e4SLinus Torvalds } 16605208debdSThomas Graf } else { 16615208debdSThomas Graf if (nlh->nlmsg_flags & NLM_F_EXCL) { 16625208debdSThomas Graf err = -EEXIST; 16635208debdSThomas Graf neigh_release(neigh); 16645208debdSThomas Graf goto out_dev_put; 16651da177e4SLinus Torvalds } 16661da177e4SLinus Torvalds 16675208debdSThomas Graf if (!(nlh->nlmsg_flags & NLM_F_REPLACE)) 16685208debdSThomas Graf flags &= ~NEIGH_UPDATE_F_OVERRIDE; 16695208debdSThomas Graf } 16701da177e4SLinus Torvalds 16710c5c2d30SEric Biederman if (ndm->ndm_flags & NTF_USE) { 16720c5c2d30SEric Biederman neigh_event_send(neigh, NULL); 16730c5c2d30SEric Biederman err = 0; 16740c5c2d30SEric Biederman } else 16755208debdSThomas Graf err = neigh_update(neigh, lladdr, ndm->ndm_state, flags); 16765208debdSThomas Graf neigh_release(neigh); 16771da177e4SLinus Torvalds goto out_dev_put; 16781da177e4SLinus Torvalds } 16791da177e4SLinus Torvalds 16801da177e4SLinus Torvalds read_unlock(&neigh_tbl_lock); 16815208debdSThomas Graf err = -EAFNOSUPPORT; 16825208debdSThomas Graf 16831da177e4SLinus Torvalds out_dev_put: 16841da177e4SLinus Torvalds if (dev) 16851da177e4SLinus Torvalds dev_put(dev); 16861da177e4SLinus Torvalds out: 16871da177e4SLinus Torvalds return err; 16881da177e4SLinus Torvalds } 16891da177e4SLinus Torvalds 1690c7fb64dbSThomas Graf static int neightbl_fill_parms(struct sk_buff *skb, struct neigh_parms *parms) 1691c7fb64dbSThomas Graf { 1692ca860fb3SThomas Graf struct nlattr *nest; 1693e386c6ebSThomas Graf 1694ca860fb3SThomas Graf nest = nla_nest_start(skb, NDTA_PARMS); 1695ca860fb3SThomas Graf if (nest == NULL) 1696ca860fb3SThomas Graf return -ENOBUFS; 1697c7fb64dbSThomas Graf 1698c7fb64dbSThomas Graf if (parms->dev) 1699ca860fb3SThomas Graf NLA_PUT_U32(skb, NDTPA_IFINDEX, parms->dev->ifindex); 1700c7fb64dbSThomas Graf 1701ca860fb3SThomas Graf NLA_PUT_U32(skb, NDTPA_REFCNT, atomic_read(&parms->refcnt)); 1702ca860fb3SThomas Graf NLA_PUT_U32(skb, NDTPA_QUEUE_LEN, parms->queue_len); 1703ca860fb3SThomas Graf NLA_PUT_U32(skb, NDTPA_PROXY_QLEN, parms->proxy_qlen); 1704ca860fb3SThomas Graf NLA_PUT_U32(skb, NDTPA_APP_PROBES, parms->app_probes); 1705ca860fb3SThomas Graf NLA_PUT_U32(skb, NDTPA_UCAST_PROBES, parms->ucast_probes); 1706ca860fb3SThomas Graf NLA_PUT_U32(skb, NDTPA_MCAST_PROBES, parms->mcast_probes); 1707ca860fb3SThomas Graf NLA_PUT_MSECS(skb, NDTPA_REACHABLE_TIME, parms->reachable_time); 1708ca860fb3SThomas Graf NLA_PUT_MSECS(skb, NDTPA_BASE_REACHABLE_TIME, 1709c7fb64dbSThomas Graf parms->base_reachable_time); 1710ca860fb3SThomas Graf NLA_PUT_MSECS(skb, NDTPA_GC_STALETIME, parms->gc_staletime); 1711ca860fb3SThomas Graf NLA_PUT_MSECS(skb, NDTPA_DELAY_PROBE_TIME, parms->delay_probe_time); 1712ca860fb3SThomas Graf NLA_PUT_MSECS(skb, NDTPA_RETRANS_TIME, parms->retrans_time); 1713ca860fb3SThomas Graf NLA_PUT_MSECS(skb, NDTPA_ANYCAST_DELAY, parms->anycast_delay); 1714ca860fb3SThomas Graf NLA_PUT_MSECS(skb, NDTPA_PROXY_DELAY, parms->proxy_delay); 1715ca860fb3SThomas Graf NLA_PUT_MSECS(skb, NDTPA_LOCKTIME, parms->locktime); 1716c7fb64dbSThomas Graf 1717ca860fb3SThomas Graf return nla_nest_end(skb, nest); 1718c7fb64dbSThomas Graf 1719ca860fb3SThomas Graf nla_put_failure: 1720bc3ed28cSThomas Graf nla_nest_cancel(skb, nest); 1721bc3ed28cSThomas Graf return -EMSGSIZE; 1722c7fb64dbSThomas Graf } 1723c7fb64dbSThomas Graf 1724ca860fb3SThomas Graf static int neightbl_fill_info(struct sk_buff *skb, struct neigh_table *tbl, 1725ca860fb3SThomas Graf u32 pid, u32 seq, int type, int flags) 1726c7fb64dbSThomas Graf { 1727c7fb64dbSThomas Graf struct nlmsghdr *nlh; 1728c7fb64dbSThomas Graf struct ndtmsg *ndtmsg; 1729c7fb64dbSThomas Graf 1730ca860fb3SThomas Graf nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndtmsg), flags); 1731ca860fb3SThomas Graf if (nlh == NULL) 173226932566SPatrick McHardy return -EMSGSIZE; 1733c7fb64dbSThomas Graf 1734ca860fb3SThomas Graf ndtmsg = nlmsg_data(nlh); 1735c7fb64dbSThomas Graf 1736c7fb64dbSThomas Graf read_lock_bh(&tbl->lock); 1737c7fb64dbSThomas Graf ndtmsg->ndtm_family = tbl->family; 17389ef1d4c7SPatrick McHardy ndtmsg->ndtm_pad1 = 0; 17399ef1d4c7SPatrick McHardy ndtmsg->ndtm_pad2 = 0; 1740c7fb64dbSThomas Graf 1741ca860fb3SThomas Graf NLA_PUT_STRING(skb, NDTA_NAME, tbl->id); 1742ca860fb3SThomas Graf NLA_PUT_MSECS(skb, NDTA_GC_INTERVAL, tbl->gc_interval); 1743ca860fb3SThomas Graf NLA_PUT_U32(skb, NDTA_THRESH1, tbl->gc_thresh1); 1744ca860fb3SThomas Graf NLA_PUT_U32(skb, NDTA_THRESH2, tbl->gc_thresh2); 1745ca860fb3SThomas Graf NLA_PUT_U32(skb, NDTA_THRESH3, tbl->gc_thresh3); 1746c7fb64dbSThomas Graf 1747c7fb64dbSThomas Graf { 1748c7fb64dbSThomas Graf unsigned long now = jiffies; 1749c7fb64dbSThomas Graf unsigned int flush_delta = now - tbl->last_flush; 1750c7fb64dbSThomas Graf unsigned int rand_delta = now - tbl->last_rand; 1751c7fb64dbSThomas Graf 1752c7fb64dbSThomas Graf struct ndt_config ndc = { 1753c7fb64dbSThomas Graf .ndtc_key_len = tbl->key_len, 1754c7fb64dbSThomas Graf .ndtc_entry_size = tbl->entry_size, 1755c7fb64dbSThomas Graf .ndtc_entries = atomic_read(&tbl->entries), 1756c7fb64dbSThomas Graf .ndtc_last_flush = jiffies_to_msecs(flush_delta), 1757c7fb64dbSThomas Graf .ndtc_last_rand = jiffies_to_msecs(rand_delta), 1758c7fb64dbSThomas Graf .ndtc_hash_rnd = tbl->hash_rnd, 1759c7fb64dbSThomas Graf .ndtc_hash_mask = tbl->hash_mask, 1760c7fb64dbSThomas Graf .ndtc_proxy_qlen = tbl->proxy_queue.qlen, 1761c7fb64dbSThomas Graf }; 1762c7fb64dbSThomas Graf 1763ca860fb3SThomas Graf NLA_PUT(skb, NDTA_CONFIG, sizeof(ndc), &ndc); 1764c7fb64dbSThomas Graf } 1765c7fb64dbSThomas Graf 1766c7fb64dbSThomas Graf { 1767c7fb64dbSThomas Graf int cpu; 1768c7fb64dbSThomas Graf struct ndt_stats ndst; 1769c7fb64dbSThomas Graf 1770c7fb64dbSThomas Graf memset(&ndst, 0, sizeof(ndst)); 1771c7fb64dbSThomas Graf 17726f912042SKAMEZAWA Hiroyuki for_each_possible_cpu(cpu) { 1773c7fb64dbSThomas Graf struct neigh_statistics *st; 1774c7fb64dbSThomas Graf 1775c7fb64dbSThomas Graf st = per_cpu_ptr(tbl->stats, cpu); 1776c7fb64dbSThomas Graf ndst.ndts_allocs += st->allocs; 1777c7fb64dbSThomas Graf ndst.ndts_destroys += st->destroys; 1778c7fb64dbSThomas Graf ndst.ndts_hash_grows += st->hash_grows; 1779c7fb64dbSThomas Graf ndst.ndts_res_failed += st->res_failed; 1780c7fb64dbSThomas Graf ndst.ndts_lookups += st->lookups; 1781c7fb64dbSThomas Graf ndst.ndts_hits += st->hits; 1782c7fb64dbSThomas Graf ndst.ndts_rcv_probes_mcast += st->rcv_probes_mcast; 1783c7fb64dbSThomas Graf ndst.ndts_rcv_probes_ucast += st->rcv_probes_ucast; 1784c7fb64dbSThomas Graf ndst.ndts_periodic_gc_runs += st->periodic_gc_runs; 1785c7fb64dbSThomas Graf ndst.ndts_forced_gc_runs += st->forced_gc_runs; 1786c7fb64dbSThomas Graf } 1787c7fb64dbSThomas Graf 1788ca860fb3SThomas Graf NLA_PUT(skb, NDTA_STATS, sizeof(ndst), &ndst); 1789c7fb64dbSThomas Graf } 1790c7fb64dbSThomas Graf 1791c7fb64dbSThomas Graf BUG_ON(tbl->parms.dev); 1792c7fb64dbSThomas Graf if (neightbl_fill_parms(skb, &tbl->parms) < 0) 1793ca860fb3SThomas Graf goto nla_put_failure; 1794c7fb64dbSThomas Graf 1795c7fb64dbSThomas Graf read_unlock_bh(&tbl->lock); 1796ca860fb3SThomas Graf return nlmsg_end(skb, nlh); 1797c7fb64dbSThomas Graf 1798ca860fb3SThomas Graf nla_put_failure: 1799c7fb64dbSThomas Graf read_unlock_bh(&tbl->lock); 180026932566SPatrick McHardy nlmsg_cancel(skb, nlh); 180126932566SPatrick McHardy return -EMSGSIZE; 1802c7fb64dbSThomas Graf } 1803c7fb64dbSThomas Graf 1804ca860fb3SThomas Graf static int neightbl_fill_param_info(struct sk_buff *skb, 1805ca860fb3SThomas Graf struct neigh_table *tbl, 1806c7fb64dbSThomas Graf struct neigh_parms *parms, 1807ca860fb3SThomas Graf u32 pid, u32 seq, int type, 1808ca860fb3SThomas Graf unsigned int flags) 1809c7fb64dbSThomas Graf { 1810c7fb64dbSThomas Graf struct ndtmsg *ndtmsg; 1811c7fb64dbSThomas Graf struct nlmsghdr *nlh; 1812c7fb64dbSThomas Graf 1813ca860fb3SThomas Graf nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndtmsg), flags); 1814ca860fb3SThomas Graf if (nlh == NULL) 181526932566SPatrick McHardy return -EMSGSIZE; 1816c7fb64dbSThomas Graf 1817ca860fb3SThomas Graf ndtmsg = nlmsg_data(nlh); 1818c7fb64dbSThomas Graf 1819c7fb64dbSThomas Graf read_lock_bh(&tbl->lock); 1820c7fb64dbSThomas Graf ndtmsg->ndtm_family = tbl->family; 18219ef1d4c7SPatrick McHardy ndtmsg->ndtm_pad1 = 0; 18229ef1d4c7SPatrick McHardy ndtmsg->ndtm_pad2 = 0; 1823c7fb64dbSThomas Graf 1824ca860fb3SThomas Graf if (nla_put_string(skb, NDTA_NAME, tbl->id) < 0 || 1825ca860fb3SThomas Graf neightbl_fill_parms(skb, parms) < 0) 1826ca860fb3SThomas Graf goto errout; 1827c7fb64dbSThomas Graf 1828c7fb64dbSThomas Graf read_unlock_bh(&tbl->lock); 1829ca860fb3SThomas Graf return nlmsg_end(skb, nlh); 1830ca860fb3SThomas Graf errout: 1831c7fb64dbSThomas Graf read_unlock_bh(&tbl->lock); 183226932566SPatrick McHardy nlmsg_cancel(skb, nlh); 183326932566SPatrick McHardy return -EMSGSIZE; 1834c7fb64dbSThomas Graf } 1835c7fb64dbSThomas Graf 1836ef7c79edSPatrick McHardy static const struct nla_policy nl_neightbl_policy[NDTA_MAX+1] = { 18376b3f8674SThomas Graf [NDTA_NAME] = { .type = NLA_STRING }, 18386b3f8674SThomas Graf [NDTA_THRESH1] = { .type = NLA_U32 }, 18396b3f8674SThomas Graf [NDTA_THRESH2] = { .type = NLA_U32 }, 18406b3f8674SThomas Graf [NDTA_THRESH3] = { .type = NLA_U32 }, 18416b3f8674SThomas Graf [NDTA_GC_INTERVAL] = { .type = NLA_U64 }, 18426b3f8674SThomas Graf [NDTA_PARMS] = { .type = NLA_NESTED }, 18436b3f8674SThomas Graf }; 18446b3f8674SThomas Graf 1845ef7c79edSPatrick McHardy static const struct nla_policy nl_ntbl_parm_policy[NDTPA_MAX+1] = { 18466b3f8674SThomas Graf [NDTPA_IFINDEX] = { .type = NLA_U32 }, 18476b3f8674SThomas Graf [NDTPA_QUEUE_LEN] = { .type = NLA_U32 }, 18486b3f8674SThomas Graf [NDTPA_PROXY_QLEN] = { .type = NLA_U32 }, 18496b3f8674SThomas Graf [NDTPA_APP_PROBES] = { .type = NLA_U32 }, 18506b3f8674SThomas Graf [NDTPA_UCAST_PROBES] = { .type = NLA_U32 }, 18516b3f8674SThomas Graf [NDTPA_MCAST_PROBES] = { .type = NLA_U32 }, 18526b3f8674SThomas Graf [NDTPA_BASE_REACHABLE_TIME] = { .type = NLA_U64 }, 18536b3f8674SThomas Graf [NDTPA_GC_STALETIME] = { .type = NLA_U64 }, 18546b3f8674SThomas Graf [NDTPA_DELAY_PROBE_TIME] = { .type = NLA_U64 }, 18556b3f8674SThomas Graf [NDTPA_RETRANS_TIME] = { .type = NLA_U64 }, 18566b3f8674SThomas Graf [NDTPA_ANYCAST_DELAY] = { .type = NLA_U64 }, 18576b3f8674SThomas Graf [NDTPA_PROXY_DELAY] = { .type = NLA_U64 }, 18586b3f8674SThomas Graf [NDTPA_LOCKTIME] = { .type = NLA_U64 }, 18596b3f8674SThomas Graf }; 18606b3f8674SThomas Graf 1861c8822a4eSThomas Graf static int neightbl_set(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg) 1862c7fb64dbSThomas Graf { 18633b1e0a65SYOSHIFUJI Hideaki struct net *net = sock_net(skb->sk); 1864c7fb64dbSThomas Graf struct neigh_table *tbl; 18656b3f8674SThomas Graf struct ndtmsg *ndtmsg; 18666b3f8674SThomas Graf struct nlattr *tb[NDTA_MAX+1]; 18676b3f8674SThomas Graf int err; 1868c7fb64dbSThomas Graf 18696b3f8674SThomas Graf err = nlmsg_parse(nlh, sizeof(*ndtmsg), tb, NDTA_MAX, 18706b3f8674SThomas Graf nl_neightbl_policy); 18716b3f8674SThomas Graf if (err < 0) 18726b3f8674SThomas Graf goto errout; 1873c7fb64dbSThomas Graf 18746b3f8674SThomas Graf if (tb[NDTA_NAME] == NULL) { 18756b3f8674SThomas Graf err = -EINVAL; 18766b3f8674SThomas Graf goto errout; 18776b3f8674SThomas Graf } 18786b3f8674SThomas Graf 18796b3f8674SThomas Graf ndtmsg = nlmsg_data(nlh); 1880c7fb64dbSThomas Graf read_lock(&neigh_tbl_lock); 1881c7fb64dbSThomas Graf for (tbl = neigh_tables; tbl; tbl = tbl->next) { 1882c7fb64dbSThomas Graf if (ndtmsg->ndtm_family && tbl->family != ndtmsg->ndtm_family) 1883c7fb64dbSThomas Graf continue; 1884c7fb64dbSThomas Graf 18856b3f8674SThomas Graf if (nla_strcmp(tb[NDTA_NAME], tbl->id) == 0) 1886c7fb64dbSThomas Graf break; 1887c7fb64dbSThomas Graf } 1888c7fb64dbSThomas Graf 1889c7fb64dbSThomas Graf if (tbl == NULL) { 1890c7fb64dbSThomas Graf err = -ENOENT; 18916b3f8674SThomas Graf goto errout_locked; 1892c7fb64dbSThomas Graf } 1893c7fb64dbSThomas Graf 1894c7fb64dbSThomas Graf /* 1895c7fb64dbSThomas Graf * We acquire tbl->lock to be nice to the periodic timers and 1896c7fb64dbSThomas Graf * make sure they always see a consistent set of values. 1897c7fb64dbSThomas Graf */ 1898c7fb64dbSThomas Graf write_lock_bh(&tbl->lock); 1899c7fb64dbSThomas Graf 19006b3f8674SThomas Graf if (tb[NDTA_PARMS]) { 19016b3f8674SThomas Graf struct nlattr *tbp[NDTPA_MAX+1]; 1902c7fb64dbSThomas Graf struct neigh_parms *p; 19036b3f8674SThomas Graf int i, ifindex = 0; 1904c7fb64dbSThomas Graf 19056b3f8674SThomas Graf err = nla_parse_nested(tbp, NDTPA_MAX, tb[NDTA_PARMS], 19066b3f8674SThomas Graf nl_ntbl_parm_policy); 19076b3f8674SThomas Graf if (err < 0) 19086b3f8674SThomas Graf goto errout_tbl_lock; 1909c7fb64dbSThomas Graf 19106b3f8674SThomas Graf if (tbp[NDTPA_IFINDEX]) 19116b3f8674SThomas Graf ifindex = nla_get_u32(tbp[NDTPA_IFINDEX]); 1912c7fb64dbSThomas Graf 191397fd5bc7STobias Klauser p = lookup_neigh_parms(tbl, net, ifindex); 1914c7fb64dbSThomas Graf if (p == NULL) { 1915c7fb64dbSThomas Graf err = -ENOENT; 19166b3f8674SThomas Graf goto errout_tbl_lock; 1917c7fb64dbSThomas Graf } 1918c7fb64dbSThomas Graf 19196b3f8674SThomas Graf for (i = 1; i <= NDTPA_MAX; i++) { 19206b3f8674SThomas Graf if (tbp[i] == NULL) 19216b3f8674SThomas Graf continue; 1922c7fb64dbSThomas Graf 19236b3f8674SThomas Graf switch (i) { 19246b3f8674SThomas Graf case NDTPA_QUEUE_LEN: 19256b3f8674SThomas Graf p->queue_len = nla_get_u32(tbp[i]); 19266b3f8674SThomas Graf break; 19276b3f8674SThomas Graf case NDTPA_PROXY_QLEN: 19286b3f8674SThomas Graf p->proxy_qlen = nla_get_u32(tbp[i]); 19296b3f8674SThomas Graf break; 19306b3f8674SThomas Graf case NDTPA_APP_PROBES: 19316b3f8674SThomas Graf p->app_probes = nla_get_u32(tbp[i]); 19326b3f8674SThomas Graf break; 19336b3f8674SThomas Graf case NDTPA_UCAST_PROBES: 19346b3f8674SThomas Graf p->ucast_probes = nla_get_u32(tbp[i]); 19356b3f8674SThomas Graf break; 19366b3f8674SThomas Graf case NDTPA_MCAST_PROBES: 19376b3f8674SThomas Graf p->mcast_probes = nla_get_u32(tbp[i]); 19386b3f8674SThomas Graf break; 19396b3f8674SThomas Graf case NDTPA_BASE_REACHABLE_TIME: 19406b3f8674SThomas Graf p->base_reachable_time = nla_get_msecs(tbp[i]); 19416b3f8674SThomas Graf break; 19426b3f8674SThomas Graf case NDTPA_GC_STALETIME: 19436b3f8674SThomas Graf p->gc_staletime = nla_get_msecs(tbp[i]); 19446b3f8674SThomas Graf break; 19456b3f8674SThomas Graf case NDTPA_DELAY_PROBE_TIME: 19466b3f8674SThomas Graf p->delay_probe_time = nla_get_msecs(tbp[i]); 19476b3f8674SThomas Graf break; 19486b3f8674SThomas Graf case NDTPA_RETRANS_TIME: 19496b3f8674SThomas Graf p->retrans_time = nla_get_msecs(tbp[i]); 19506b3f8674SThomas Graf break; 19516b3f8674SThomas Graf case NDTPA_ANYCAST_DELAY: 19526b3f8674SThomas Graf p->anycast_delay = nla_get_msecs(tbp[i]); 19536b3f8674SThomas Graf break; 19546b3f8674SThomas Graf case NDTPA_PROXY_DELAY: 19556b3f8674SThomas Graf p->proxy_delay = nla_get_msecs(tbp[i]); 19566b3f8674SThomas Graf break; 19576b3f8674SThomas Graf case NDTPA_LOCKTIME: 19586b3f8674SThomas Graf p->locktime = nla_get_msecs(tbp[i]); 19596b3f8674SThomas Graf break; 1960c7fb64dbSThomas Graf } 19616b3f8674SThomas Graf } 19626b3f8674SThomas Graf } 19636b3f8674SThomas Graf 19646b3f8674SThomas Graf if (tb[NDTA_THRESH1]) 19656b3f8674SThomas Graf tbl->gc_thresh1 = nla_get_u32(tb[NDTA_THRESH1]); 19666b3f8674SThomas Graf 19676b3f8674SThomas Graf if (tb[NDTA_THRESH2]) 19686b3f8674SThomas Graf tbl->gc_thresh2 = nla_get_u32(tb[NDTA_THRESH2]); 19696b3f8674SThomas Graf 19706b3f8674SThomas Graf if (tb[NDTA_THRESH3]) 19716b3f8674SThomas Graf tbl->gc_thresh3 = nla_get_u32(tb[NDTA_THRESH3]); 19726b3f8674SThomas Graf 19736b3f8674SThomas Graf if (tb[NDTA_GC_INTERVAL]) 19746b3f8674SThomas Graf tbl->gc_interval = nla_get_msecs(tb[NDTA_GC_INTERVAL]); 1975c7fb64dbSThomas Graf 1976c7fb64dbSThomas Graf err = 0; 1977c7fb64dbSThomas Graf 19786b3f8674SThomas Graf errout_tbl_lock: 1979c7fb64dbSThomas Graf write_unlock_bh(&tbl->lock); 19806b3f8674SThomas Graf errout_locked: 1981c7fb64dbSThomas Graf read_unlock(&neigh_tbl_lock); 19826b3f8674SThomas Graf errout: 1983c7fb64dbSThomas Graf return err; 1984c7fb64dbSThomas Graf } 1985c7fb64dbSThomas Graf 1986c8822a4eSThomas Graf static int neightbl_dump_info(struct sk_buff *skb, struct netlink_callback *cb) 1987c7fb64dbSThomas Graf { 19883b1e0a65SYOSHIFUJI Hideaki struct net *net = sock_net(skb->sk); 1989ca860fb3SThomas Graf int family, tidx, nidx = 0; 1990ca860fb3SThomas Graf int tbl_skip = cb->args[0]; 1991ca860fb3SThomas Graf int neigh_skip = cb->args[1]; 1992c7fb64dbSThomas Graf struct neigh_table *tbl; 1993c7fb64dbSThomas Graf 1994ca860fb3SThomas Graf family = ((struct rtgenmsg *) nlmsg_data(cb->nlh))->rtgen_family; 1995c7fb64dbSThomas Graf 1996c7fb64dbSThomas Graf read_lock(&neigh_tbl_lock); 1997ca860fb3SThomas Graf for (tbl = neigh_tables, tidx = 0; tbl; tbl = tbl->next, tidx++) { 1998c7fb64dbSThomas Graf struct neigh_parms *p; 1999c7fb64dbSThomas Graf 2000ca860fb3SThomas Graf if (tidx < tbl_skip || (family && tbl->family != family)) 2001c7fb64dbSThomas Graf continue; 2002c7fb64dbSThomas Graf 2003ca860fb3SThomas Graf if (neightbl_fill_info(skb, tbl, NETLINK_CB(cb->skb).pid, 2004ca860fb3SThomas Graf cb->nlh->nlmsg_seq, RTM_NEWNEIGHTBL, 2005ca860fb3SThomas Graf NLM_F_MULTI) <= 0) 2006c7fb64dbSThomas Graf break; 2007c7fb64dbSThomas Graf 2008426b5303SEric W. Biederman for (nidx = 0, p = tbl->parms.next; p; p = p->next) { 2009878628fbSYOSHIFUJI Hideaki if (!net_eq(neigh_parms_net(p), net)) 2010426b5303SEric W. Biederman continue; 2011426b5303SEric W. Biederman 2012efc683fcSGautam Kachroo if (nidx < neigh_skip) 2013efc683fcSGautam Kachroo goto next; 2014c7fb64dbSThomas Graf 2015ca860fb3SThomas Graf if (neightbl_fill_param_info(skb, tbl, p, 2016ca860fb3SThomas Graf NETLINK_CB(cb->skb).pid, 2017ca860fb3SThomas Graf cb->nlh->nlmsg_seq, 2018ca860fb3SThomas Graf RTM_NEWNEIGHTBL, 2019ca860fb3SThomas Graf NLM_F_MULTI) <= 0) 2020c7fb64dbSThomas Graf goto out; 2021efc683fcSGautam Kachroo next: 2022efc683fcSGautam Kachroo nidx++; 2023c7fb64dbSThomas Graf } 2024c7fb64dbSThomas Graf 2025ca860fb3SThomas Graf neigh_skip = 0; 2026c7fb64dbSThomas Graf } 2027c7fb64dbSThomas Graf out: 2028c7fb64dbSThomas Graf read_unlock(&neigh_tbl_lock); 2029ca860fb3SThomas Graf cb->args[0] = tidx; 2030ca860fb3SThomas Graf cb->args[1] = nidx; 2031c7fb64dbSThomas Graf 2032c7fb64dbSThomas Graf return skb->len; 2033c7fb64dbSThomas Graf } 20341da177e4SLinus Torvalds 20358b8aec50SThomas Graf static int neigh_fill_info(struct sk_buff *skb, struct neighbour *neigh, 20368b8aec50SThomas Graf u32 pid, u32 seq, int type, unsigned int flags) 20371da177e4SLinus Torvalds { 20381da177e4SLinus Torvalds unsigned long now = jiffies; 20391da177e4SLinus Torvalds struct nda_cacheinfo ci; 20408b8aec50SThomas Graf struct nlmsghdr *nlh; 20418b8aec50SThomas Graf struct ndmsg *ndm; 20421da177e4SLinus Torvalds 20438b8aec50SThomas Graf nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndm), flags); 20448b8aec50SThomas Graf if (nlh == NULL) 204526932566SPatrick McHardy return -EMSGSIZE; 20468b8aec50SThomas Graf 20478b8aec50SThomas Graf ndm = nlmsg_data(nlh); 20488b8aec50SThomas Graf ndm->ndm_family = neigh->ops->family; 20499ef1d4c7SPatrick McHardy ndm->ndm_pad1 = 0; 20509ef1d4c7SPatrick McHardy ndm->ndm_pad2 = 0; 20518b8aec50SThomas Graf ndm->ndm_flags = neigh->flags; 20528b8aec50SThomas Graf ndm->ndm_type = neigh->type; 20538b8aec50SThomas Graf ndm->ndm_ifindex = neigh->dev->ifindex; 20541da177e4SLinus Torvalds 20558b8aec50SThomas Graf NLA_PUT(skb, NDA_DST, neigh->tbl->key_len, neigh->primary_key); 20568b8aec50SThomas Graf 20578b8aec50SThomas Graf read_lock_bh(&neigh->lock); 20588b8aec50SThomas Graf ndm->ndm_state = neigh->nud_state; 20598b8aec50SThomas Graf if ((neigh->nud_state & NUD_VALID) && 20608b8aec50SThomas Graf nla_put(skb, NDA_LLADDR, neigh->dev->addr_len, neigh->ha) < 0) { 20618b8aec50SThomas Graf read_unlock_bh(&neigh->lock); 20628b8aec50SThomas Graf goto nla_put_failure; 20638b8aec50SThomas Graf } 20648b8aec50SThomas Graf 2065b9f5f52cSStephen Hemminger ci.ndm_used = jiffies_to_clock_t(now - neigh->used); 2066b9f5f52cSStephen Hemminger ci.ndm_confirmed = jiffies_to_clock_t(now - neigh->confirmed); 2067b9f5f52cSStephen Hemminger ci.ndm_updated = jiffies_to_clock_t(now - neigh->updated); 20688b8aec50SThomas Graf ci.ndm_refcnt = atomic_read(&neigh->refcnt) - 1; 20698b8aec50SThomas Graf read_unlock_bh(&neigh->lock); 20708b8aec50SThomas Graf 20718b8aec50SThomas Graf NLA_PUT_U32(skb, NDA_PROBES, atomic_read(&neigh->probes)); 20728b8aec50SThomas Graf NLA_PUT(skb, NDA_CACHEINFO, sizeof(ci), &ci); 20738b8aec50SThomas Graf 20748b8aec50SThomas Graf return nlmsg_end(skb, nlh); 20758b8aec50SThomas Graf 20768b8aec50SThomas Graf nla_put_failure: 207726932566SPatrick McHardy nlmsg_cancel(skb, nlh); 207826932566SPatrick McHardy return -EMSGSIZE; 20791da177e4SLinus Torvalds } 20801da177e4SLinus Torvalds 2081d961db35SThomas Graf static void neigh_update_notify(struct neighbour *neigh) 2082d961db35SThomas Graf { 2083d961db35SThomas Graf call_netevent_notifiers(NETEVENT_NEIGH_UPDATE, neigh); 2084d961db35SThomas Graf __neigh_notify(neigh, RTM_NEWNEIGH, 0); 2085d961db35SThomas Graf } 20861da177e4SLinus Torvalds 20871da177e4SLinus Torvalds static int neigh_dump_table(struct neigh_table *tbl, struct sk_buff *skb, 20881da177e4SLinus Torvalds struct netlink_callback *cb) 20891da177e4SLinus Torvalds { 20903b1e0a65SYOSHIFUJI Hideaki struct net * net = sock_net(skb->sk); 20911da177e4SLinus Torvalds struct neighbour *n; 20921da177e4SLinus Torvalds int rc, h, s_h = cb->args[1]; 20931da177e4SLinus Torvalds int idx, s_idx = idx = cb->args[2]; 20941da177e4SLinus Torvalds 2095c5e29460SJulian Anastasov read_lock_bh(&tbl->lock); 20961da177e4SLinus Torvalds for (h = 0; h <= tbl->hash_mask; h++) { 20971da177e4SLinus Torvalds if (h < s_h) 20981da177e4SLinus Torvalds continue; 20991da177e4SLinus Torvalds if (h > s_h) 21001da177e4SLinus Torvalds s_idx = 0; 2101426b5303SEric W. Biederman for (n = tbl->hash_buckets[h], idx = 0; n; n = n->next) { 210209ad9bc7SOctavian Purdila if (!net_eq(dev_net(n->dev), net)) 2103426b5303SEric W. Biederman continue; 2104efc683fcSGautam Kachroo if (idx < s_idx) 2105efc683fcSGautam Kachroo goto next; 21061da177e4SLinus Torvalds if (neigh_fill_info(skb, n, NETLINK_CB(cb->skb).pid, 21071da177e4SLinus Torvalds cb->nlh->nlmsg_seq, 2108b6544c0bSJamal Hadi Salim RTM_NEWNEIGH, 2109b6544c0bSJamal Hadi Salim NLM_F_MULTI) <= 0) { 21101da177e4SLinus Torvalds read_unlock_bh(&tbl->lock); 21111da177e4SLinus Torvalds rc = -1; 21121da177e4SLinus Torvalds goto out; 21131da177e4SLinus Torvalds } 2114efc683fcSGautam Kachroo next: 2115efc683fcSGautam Kachroo idx++; 21161da177e4SLinus Torvalds } 21171da177e4SLinus Torvalds } 2118c5e29460SJulian Anastasov read_unlock_bh(&tbl->lock); 21191da177e4SLinus Torvalds rc = skb->len; 21201da177e4SLinus Torvalds out: 21211da177e4SLinus Torvalds cb->args[1] = h; 21221da177e4SLinus Torvalds cb->args[2] = idx; 21231da177e4SLinus Torvalds return rc; 21241da177e4SLinus Torvalds } 21251da177e4SLinus Torvalds 2126c8822a4eSThomas Graf static int neigh_dump_info(struct sk_buff *skb, struct netlink_callback *cb) 21271da177e4SLinus Torvalds { 21281da177e4SLinus Torvalds struct neigh_table *tbl; 21291da177e4SLinus Torvalds int t, family, s_t; 21301da177e4SLinus Torvalds 21311da177e4SLinus Torvalds read_lock(&neigh_tbl_lock); 21328b8aec50SThomas Graf family = ((struct rtgenmsg *) nlmsg_data(cb->nlh))->rtgen_family; 21331da177e4SLinus Torvalds s_t = cb->args[0]; 21341da177e4SLinus Torvalds 21351da177e4SLinus Torvalds for (tbl = neigh_tables, t = 0; tbl; tbl = tbl->next, t++) { 21361da177e4SLinus Torvalds if (t < s_t || (family && tbl->family != family)) 21371da177e4SLinus Torvalds continue; 21381da177e4SLinus Torvalds if (t > s_t) 21391da177e4SLinus Torvalds memset(&cb->args[1], 0, sizeof(cb->args) - 21401da177e4SLinus Torvalds sizeof(cb->args[0])); 21411da177e4SLinus Torvalds if (neigh_dump_table(tbl, skb, cb) < 0) 21421da177e4SLinus Torvalds break; 21431da177e4SLinus Torvalds } 21441da177e4SLinus Torvalds read_unlock(&neigh_tbl_lock); 21451da177e4SLinus Torvalds 21461da177e4SLinus Torvalds cb->args[0] = t; 21471da177e4SLinus Torvalds return skb->len; 21481da177e4SLinus Torvalds } 21491da177e4SLinus Torvalds 21501da177e4SLinus Torvalds void neigh_for_each(struct neigh_table *tbl, void (*cb)(struct neighbour *, void *), void *cookie) 21511da177e4SLinus Torvalds { 21521da177e4SLinus Torvalds int chain; 21531da177e4SLinus Torvalds 21541da177e4SLinus Torvalds read_lock_bh(&tbl->lock); 21551da177e4SLinus Torvalds for (chain = 0; chain <= tbl->hash_mask; chain++) { 21561da177e4SLinus Torvalds struct neighbour *n; 21571da177e4SLinus Torvalds 21581da177e4SLinus Torvalds for (n = tbl->hash_buckets[chain]; n; n = n->next) 21591da177e4SLinus Torvalds cb(n, cookie); 21601da177e4SLinus Torvalds } 21611da177e4SLinus Torvalds read_unlock_bh(&tbl->lock); 21621da177e4SLinus Torvalds } 21631da177e4SLinus Torvalds EXPORT_SYMBOL(neigh_for_each); 21641da177e4SLinus Torvalds 21651da177e4SLinus Torvalds /* The tbl->lock must be held as a writer and BH disabled. */ 21661da177e4SLinus Torvalds void __neigh_for_each_release(struct neigh_table *tbl, 21671da177e4SLinus Torvalds int (*cb)(struct neighbour *)) 21681da177e4SLinus Torvalds { 21691da177e4SLinus Torvalds int chain; 21701da177e4SLinus Torvalds 21711da177e4SLinus Torvalds for (chain = 0; chain <= tbl->hash_mask; chain++) { 21721da177e4SLinus Torvalds struct neighbour *n, **np; 21731da177e4SLinus Torvalds 21741da177e4SLinus Torvalds np = &tbl->hash_buckets[chain]; 21751da177e4SLinus Torvalds while ((n = *np) != NULL) { 21761da177e4SLinus Torvalds int release; 21771da177e4SLinus Torvalds 21781da177e4SLinus Torvalds write_lock(&n->lock); 21791da177e4SLinus Torvalds release = cb(n); 21801da177e4SLinus Torvalds if (release) { 21811da177e4SLinus Torvalds *np = n->next; 21821da177e4SLinus Torvalds n->dead = 1; 21831da177e4SLinus Torvalds } else 21841da177e4SLinus Torvalds np = &n->next; 21851da177e4SLinus Torvalds write_unlock(&n->lock); 21864f494554SThomas Graf if (release) 21874f494554SThomas Graf neigh_cleanup_and_release(n); 21881da177e4SLinus Torvalds } 21891da177e4SLinus Torvalds } 2190ecbb4169SAlexey Kuznetsov } 21911da177e4SLinus Torvalds EXPORT_SYMBOL(__neigh_for_each_release); 21921da177e4SLinus Torvalds 21931da177e4SLinus Torvalds #ifdef CONFIG_PROC_FS 21941da177e4SLinus Torvalds 21951da177e4SLinus Torvalds static struct neighbour *neigh_get_first(struct seq_file *seq) 21961da177e4SLinus Torvalds { 21971da177e4SLinus Torvalds struct neigh_seq_state *state = seq->private; 21981218854aSYOSHIFUJI Hideaki struct net *net = seq_file_net(seq); 21991da177e4SLinus Torvalds struct neigh_table *tbl = state->tbl; 22001da177e4SLinus Torvalds struct neighbour *n = NULL; 22011da177e4SLinus Torvalds int bucket = state->bucket; 22021da177e4SLinus Torvalds 22031da177e4SLinus Torvalds state->flags &= ~NEIGH_SEQ_IS_PNEIGH; 22041da177e4SLinus Torvalds for (bucket = 0; bucket <= tbl->hash_mask; bucket++) { 22051da177e4SLinus Torvalds n = tbl->hash_buckets[bucket]; 22061da177e4SLinus Torvalds 22071da177e4SLinus Torvalds while (n) { 2208878628fbSYOSHIFUJI Hideaki if (!net_eq(dev_net(n->dev), net)) 2209426b5303SEric W. Biederman goto next; 22101da177e4SLinus Torvalds if (state->neigh_sub_iter) { 22111da177e4SLinus Torvalds loff_t fakep = 0; 22121da177e4SLinus Torvalds void *v; 22131da177e4SLinus Torvalds 22141da177e4SLinus Torvalds v = state->neigh_sub_iter(state, n, &fakep); 22151da177e4SLinus Torvalds if (!v) 22161da177e4SLinus Torvalds goto next; 22171da177e4SLinus Torvalds } 22181da177e4SLinus Torvalds if (!(state->flags & NEIGH_SEQ_SKIP_NOARP)) 22191da177e4SLinus Torvalds break; 22201da177e4SLinus Torvalds if (n->nud_state & ~NUD_NOARP) 22211da177e4SLinus Torvalds break; 22221da177e4SLinus Torvalds next: 22231da177e4SLinus Torvalds n = n->next; 22241da177e4SLinus Torvalds } 22251da177e4SLinus Torvalds 22261da177e4SLinus Torvalds if (n) 22271da177e4SLinus Torvalds break; 22281da177e4SLinus Torvalds } 22291da177e4SLinus Torvalds state->bucket = bucket; 22301da177e4SLinus Torvalds 22311da177e4SLinus Torvalds return n; 22321da177e4SLinus Torvalds } 22331da177e4SLinus Torvalds 22341da177e4SLinus Torvalds static struct neighbour *neigh_get_next(struct seq_file *seq, 22351da177e4SLinus Torvalds struct neighbour *n, 22361da177e4SLinus Torvalds loff_t *pos) 22371da177e4SLinus Torvalds { 22381da177e4SLinus Torvalds struct neigh_seq_state *state = seq->private; 22391218854aSYOSHIFUJI Hideaki struct net *net = seq_file_net(seq); 22401da177e4SLinus Torvalds struct neigh_table *tbl = state->tbl; 22411da177e4SLinus Torvalds 22421da177e4SLinus Torvalds if (state->neigh_sub_iter) { 22431da177e4SLinus Torvalds void *v = state->neigh_sub_iter(state, n, pos); 22441da177e4SLinus Torvalds if (v) 22451da177e4SLinus Torvalds return n; 22461da177e4SLinus Torvalds } 22471da177e4SLinus Torvalds n = n->next; 22481da177e4SLinus Torvalds 22491da177e4SLinus Torvalds while (1) { 22501da177e4SLinus Torvalds while (n) { 2251878628fbSYOSHIFUJI Hideaki if (!net_eq(dev_net(n->dev), net)) 2252426b5303SEric W. Biederman goto next; 22531da177e4SLinus Torvalds if (state->neigh_sub_iter) { 22541da177e4SLinus Torvalds void *v = state->neigh_sub_iter(state, n, pos); 22551da177e4SLinus Torvalds if (v) 22561da177e4SLinus Torvalds return n; 22571da177e4SLinus Torvalds goto next; 22581da177e4SLinus Torvalds } 22591da177e4SLinus Torvalds if (!(state->flags & NEIGH_SEQ_SKIP_NOARP)) 22601da177e4SLinus Torvalds break; 22611da177e4SLinus Torvalds 22621da177e4SLinus Torvalds if (n->nud_state & ~NUD_NOARP) 22631da177e4SLinus Torvalds break; 22641da177e4SLinus Torvalds next: 22651da177e4SLinus Torvalds n = n->next; 22661da177e4SLinus Torvalds } 22671da177e4SLinus Torvalds 22681da177e4SLinus Torvalds if (n) 22691da177e4SLinus Torvalds break; 22701da177e4SLinus Torvalds 22711da177e4SLinus Torvalds if (++state->bucket > tbl->hash_mask) 22721da177e4SLinus Torvalds break; 22731da177e4SLinus Torvalds 22741da177e4SLinus Torvalds n = tbl->hash_buckets[state->bucket]; 22751da177e4SLinus Torvalds } 22761da177e4SLinus Torvalds 22771da177e4SLinus Torvalds if (n && pos) 22781da177e4SLinus Torvalds --(*pos); 22791da177e4SLinus Torvalds return n; 22801da177e4SLinus Torvalds } 22811da177e4SLinus Torvalds 22821da177e4SLinus Torvalds static struct neighbour *neigh_get_idx(struct seq_file *seq, loff_t *pos) 22831da177e4SLinus Torvalds { 22841da177e4SLinus Torvalds struct neighbour *n = neigh_get_first(seq); 22851da177e4SLinus Torvalds 22861da177e4SLinus Torvalds if (n) { 2287745e2031SChris Larson --(*pos); 22881da177e4SLinus Torvalds while (*pos) { 22891da177e4SLinus Torvalds n = neigh_get_next(seq, n, pos); 22901da177e4SLinus Torvalds if (!n) 22911da177e4SLinus Torvalds break; 22921da177e4SLinus Torvalds } 22931da177e4SLinus Torvalds } 22941da177e4SLinus Torvalds return *pos ? NULL : n; 22951da177e4SLinus Torvalds } 22961da177e4SLinus Torvalds 22971da177e4SLinus Torvalds static struct pneigh_entry *pneigh_get_first(struct seq_file *seq) 22981da177e4SLinus Torvalds { 22991da177e4SLinus Torvalds struct neigh_seq_state *state = seq->private; 23001218854aSYOSHIFUJI Hideaki struct net *net = seq_file_net(seq); 23011da177e4SLinus Torvalds struct neigh_table *tbl = state->tbl; 23021da177e4SLinus Torvalds struct pneigh_entry *pn = NULL; 23031da177e4SLinus Torvalds int bucket = state->bucket; 23041da177e4SLinus Torvalds 23051da177e4SLinus Torvalds state->flags |= NEIGH_SEQ_IS_PNEIGH; 23061da177e4SLinus Torvalds for (bucket = 0; bucket <= PNEIGH_HASHMASK; bucket++) { 23071da177e4SLinus Torvalds pn = tbl->phash_buckets[bucket]; 2308878628fbSYOSHIFUJI Hideaki while (pn && !net_eq(pneigh_net(pn), net)) 2309426b5303SEric W. Biederman pn = pn->next; 23101da177e4SLinus Torvalds if (pn) 23111da177e4SLinus Torvalds break; 23121da177e4SLinus Torvalds } 23131da177e4SLinus Torvalds state->bucket = bucket; 23141da177e4SLinus Torvalds 23151da177e4SLinus Torvalds return pn; 23161da177e4SLinus Torvalds } 23171da177e4SLinus Torvalds 23181da177e4SLinus Torvalds static struct pneigh_entry *pneigh_get_next(struct seq_file *seq, 23191da177e4SLinus Torvalds struct pneigh_entry *pn, 23201da177e4SLinus Torvalds loff_t *pos) 23211da177e4SLinus Torvalds { 23221da177e4SLinus Torvalds struct neigh_seq_state *state = seq->private; 23231218854aSYOSHIFUJI Hideaki struct net *net = seq_file_net(seq); 23241da177e4SLinus Torvalds struct neigh_table *tbl = state->tbl; 23251da177e4SLinus Torvalds 23261da177e4SLinus Torvalds pn = pn->next; 23271da177e4SLinus Torvalds while (!pn) { 23281da177e4SLinus Torvalds if (++state->bucket > PNEIGH_HASHMASK) 23291da177e4SLinus Torvalds break; 23301da177e4SLinus Torvalds pn = tbl->phash_buckets[state->bucket]; 2331878628fbSYOSHIFUJI Hideaki while (pn && !net_eq(pneigh_net(pn), net)) 2332426b5303SEric W. Biederman pn = pn->next; 23331da177e4SLinus Torvalds if (pn) 23341da177e4SLinus Torvalds break; 23351da177e4SLinus Torvalds } 23361da177e4SLinus Torvalds 23371da177e4SLinus Torvalds if (pn && pos) 23381da177e4SLinus Torvalds --(*pos); 23391da177e4SLinus Torvalds 23401da177e4SLinus Torvalds return pn; 23411da177e4SLinus Torvalds } 23421da177e4SLinus Torvalds 23431da177e4SLinus Torvalds static struct pneigh_entry *pneigh_get_idx(struct seq_file *seq, loff_t *pos) 23441da177e4SLinus Torvalds { 23451da177e4SLinus Torvalds struct pneigh_entry *pn = pneigh_get_first(seq); 23461da177e4SLinus Torvalds 23471da177e4SLinus Torvalds if (pn) { 2348745e2031SChris Larson --(*pos); 23491da177e4SLinus Torvalds while (*pos) { 23501da177e4SLinus Torvalds pn = pneigh_get_next(seq, pn, pos); 23511da177e4SLinus Torvalds if (!pn) 23521da177e4SLinus Torvalds break; 23531da177e4SLinus Torvalds } 23541da177e4SLinus Torvalds } 23551da177e4SLinus Torvalds return *pos ? NULL : pn; 23561da177e4SLinus Torvalds } 23571da177e4SLinus Torvalds 23581da177e4SLinus Torvalds static void *neigh_get_idx_any(struct seq_file *seq, loff_t *pos) 23591da177e4SLinus Torvalds { 23601da177e4SLinus Torvalds struct neigh_seq_state *state = seq->private; 23611da177e4SLinus Torvalds void *rc; 2362745e2031SChris Larson loff_t idxpos = *pos; 23631da177e4SLinus Torvalds 2364745e2031SChris Larson rc = neigh_get_idx(seq, &idxpos); 23651da177e4SLinus Torvalds if (!rc && !(state->flags & NEIGH_SEQ_NEIGH_ONLY)) 2366745e2031SChris Larson rc = pneigh_get_idx(seq, &idxpos); 23671da177e4SLinus Torvalds 23681da177e4SLinus Torvalds return rc; 23691da177e4SLinus Torvalds } 23701da177e4SLinus Torvalds 23711da177e4SLinus Torvalds void *neigh_seq_start(struct seq_file *seq, loff_t *pos, struct neigh_table *tbl, unsigned int neigh_seq_flags) 23729a429c49SEric Dumazet __acquires(tbl->lock) 23731da177e4SLinus Torvalds { 23741da177e4SLinus Torvalds struct neigh_seq_state *state = seq->private; 23751da177e4SLinus Torvalds 23761da177e4SLinus Torvalds state->tbl = tbl; 23771da177e4SLinus Torvalds state->bucket = 0; 23781da177e4SLinus Torvalds state->flags = (neigh_seq_flags & ~NEIGH_SEQ_IS_PNEIGH); 23791da177e4SLinus Torvalds 23801da177e4SLinus Torvalds read_lock_bh(&tbl->lock); 23811da177e4SLinus Torvalds 2382745e2031SChris Larson return *pos ? neigh_get_idx_any(seq, pos) : SEQ_START_TOKEN; 23831da177e4SLinus Torvalds } 23841da177e4SLinus Torvalds EXPORT_SYMBOL(neigh_seq_start); 23851da177e4SLinus Torvalds 23861da177e4SLinus Torvalds void *neigh_seq_next(struct seq_file *seq, void *v, loff_t *pos) 23871da177e4SLinus Torvalds { 23881da177e4SLinus Torvalds struct neigh_seq_state *state; 23891da177e4SLinus Torvalds void *rc; 23901da177e4SLinus Torvalds 23911da177e4SLinus Torvalds if (v == SEQ_START_TOKEN) { 2392bff69732SChris Larson rc = neigh_get_first(seq); 23931da177e4SLinus Torvalds goto out; 23941da177e4SLinus Torvalds } 23951da177e4SLinus Torvalds 23961da177e4SLinus Torvalds state = seq->private; 23971da177e4SLinus Torvalds if (!(state->flags & NEIGH_SEQ_IS_PNEIGH)) { 23981da177e4SLinus Torvalds rc = neigh_get_next(seq, v, NULL); 23991da177e4SLinus Torvalds if (rc) 24001da177e4SLinus Torvalds goto out; 24011da177e4SLinus Torvalds if (!(state->flags & NEIGH_SEQ_NEIGH_ONLY)) 24021da177e4SLinus Torvalds rc = pneigh_get_first(seq); 24031da177e4SLinus Torvalds } else { 24041da177e4SLinus Torvalds BUG_ON(state->flags & NEIGH_SEQ_NEIGH_ONLY); 24051da177e4SLinus Torvalds rc = pneigh_get_next(seq, v, NULL); 24061da177e4SLinus Torvalds } 24071da177e4SLinus Torvalds out: 24081da177e4SLinus Torvalds ++(*pos); 24091da177e4SLinus Torvalds return rc; 24101da177e4SLinus Torvalds } 24111da177e4SLinus Torvalds EXPORT_SYMBOL(neigh_seq_next); 24121da177e4SLinus Torvalds 24131da177e4SLinus Torvalds void neigh_seq_stop(struct seq_file *seq, void *v) 24149a429c49SEric Dumazet __releases(tbl->lock) 24151da177e4SLinus Torvalds { 24161da177e4SLinus Torvalds struct neigh_seq_state *state = seq->private; 24171da177e4SLinus Torvalds struct neigh_table *tbl = state->tbl; 24181da177e4SLinus Torvalds 24191da177e4SLinus Torvalds read_unlock_bh(&tbl->lock); 24201da177e4SLinus Torvalds } 24211da177e4SLinus Torvalds EXPORT_SYMBOL(neigh_seq_stop); 24221da177e4SLinus Torvalds 24231da177e4SLinus Torvalds /* statistics via seq_file */ 24241da177e4SLinus Torvalds 24251da177e4SLinus Torvalds static void *neigh_stat_seq_start(struct seq_file *seq, loff_t *pos) 24261da177e4SLinus Torvalds { 242781c1ebfcSAlexey Dobriyan struct neigh_table *tbl = seq->private; 24281da177e4SLinus Torvalds int cpu; 24291da177e4SLinus Torvalds 24301da177e4SLinus Torvalds if (*pos == 0) 24311da177e4SLinus Torvalds return SEQ_START_TOKEN; 24321da177e4SLinus Torvalds 24330f23174aSRusty Russell for (cpu = *pos-1; cpu < nr_cpu_ids; ++cpu) { 24341da177e4SLinus Torvalds if (!cpu_possible(cpu)) 24351da177e4SLinus Torvalds continue; 24361da177e4SLinus Torvalds *pos = cpu+1; 24371da177e4SLinus Torvalds return per_cpu_ptr(tbl->stats, cpu); 24381da177e4SLinus Torvalds } 24391da177e4SLinus Torvalds return NULL; 24401da177e4SLinus Torvalds } 24411da177e4SLinus Torvalds 24421da177e4SLinus Torvalds static void *neigh_stat_seq_next(struct seq_file *seq, void *v, loff_t *pos) 24431da177e4SLinus Torvalds { 244481c1ebfcSAlexey Dobriyan struct neigh_table *tbl = seq->private; 24451da177e4SLinus Torvalds int cpu; 24461da177e4SLinus Torvalds 24470f23174aSRusty Russell for (cpu = *pos; cpu < nr_cpu_ids; ++cpu) { 24481da177e4SLinus Torvalds if (!cpu_possible(cpu)) 24491da177e4SLinus Torvalds continue; 24501da177e4SLinus Torvalds *pos = cpu+1; 24511da177e4SLinus Torvalds return per_cpu_ptr(tbl->stats, cpu); 24521da177e4SLinus Torvalds } 24531da177e4SLinus Torvalds return NULL; 24541da177e4SLinus Torvalds } 24551da177e4SLinus Torvalds 24561da177e4SLinus Torvalds static void neigh_stat_seq_stop(struct seq_file *seq, void *v) 24571da177e4SLinus Torvalds { 24581da177e4SLinus Torvalds 24591da177e4SLinus Torvalds } 24601da177e4SLinus Torvalds 24611da177e4SLinus Torvalds static int neigh_stat_seq_show(struct seq_file *seq, void *v) 24621da177e4SLinus Torvalds { 246381c1ebfcSAlexey Dobriyan struct neigh_table *tbl = seq->private; 24641da177e4SLinus Torvalds struct neigh_statistics *st = v; 24651da177e4SLinus Torvalds 24661da177e4SLinus Torvalds if (v == SEQ_START_TOKEN) { 24679a6d276eSNeil Horman seq_printf(seq, "entries allocs destroys hash_grows lookups hits res_failed rcv_probes_mcast rcv_probes_ucast periodic_gc_runs forced_gc_runs unresolved_discards\n"); 24681da177e4SLinus Torvalds return 0; 24691da177e4SLinus Torvalds } 24701da177e4SLinus Torvalds 24711da177e4SLinus Torvalds seq_printf(seq, "%08x %08lx %08lx %08lx %08lx %08lx %08lx " 24729a6d276eSNeil Horman "%08lx %08lx %08lx %08lx %08lx\n", 24731da177e4SLinus Torvalds atomic_read(&tbl->entries), 24741da177e4SLinus Torvalds 24751da177e4SLinus Torvalds st->allocs, 24761da177e4SLinus Torvalds st->destroys, 24771da177e4SLinus Torvalds st->hash_grows, 24781da177e4SLinus Torvalds 24791da177e4SLinus Torvalds st->lookups, 24801da177e4SLinus Torvalds st->hits, 24811da177e4SLinus Torvalds 24821da177e4SLinus Torvalds st->res_failed, 24831da177e4SLinus Torvalds 24841da177e4SLinus Torvalds st->rcv_probes_mcast, 24851da177e4SLinus Torvalds st->rcv_probes_ucast, 24861da177e4SLinus Torvalds 24871da177e4SLinus Torvalds st->periodic_gc_runs, 24889a6d276eSNeil Horman st->forced_gc_runs, 24899a6d276eSNeil Horman st->unres_discards 24901da177e4SLinus Torvalds ); 24911da177e4SLinus Torvalds 24921da177e4SLinus Torvalds return 0; 24931da177e4SLinus Torvalds } 24941da177e4SLinus Torvalds 2495f690808eSStephen Hemminger static const struct seq_operations neigh_stat_seq_ops = { 24961da177e4SLinus Torvalds .start = neigh_stat_seq_start, 24971da177e4SLinus Torvalds .next = neigh_stat_seq_next, 24981da177e4SLinus Torvalds .stop = neigh_stat_seq_stop, 24991da177e4SLinus Torvalds .show = neigh_stat_seq_show, 25001da177e4SLinus Torvalds }; 25011da177e4SLinus Torvalds 25021da177e4SLinus Torvalds static int neigh_stat_seq_open(struct inode *inode, struct file *file) 25031da177e4SLinus Torvalds { 25041da177e4SLinus Torvalds int ret = seq_open(file, &neigh_stat_seq_ops); 25051da177e4SLinus Torvalds 25061da177e4SLinus Torvalds if (!ret) { 25071da177e4SLinus Torvalds struct seq_file *sf = file->private_data; 250881c1ebfcSAlexey Dobriyan sf->private = PDE(inode)->data; 25091da177e4SLinus Torvalds } 25101da177e4SLinus Torvalds return ret; 25111da177e4SLinus Torvalds }; 25121da177e4SLinus Torvalds 25139a32144eSArjan van de Ven static const struct file_operations neigh_stat_seq_fops = { 25141da177e4SLinus Torvalds .owner = THIS_MODULE, 25151da177e4SLinus Torvalds .open = neigh_stat_seq_open, 25161da177e4SLinus Torvalds .read = seq_read, 25171da177e4SLinus Torvalds .llseek = seq_lseek, 25181da177e4SLinus Torvalds .release = seq_release, 25191da177e4SLinus Torvalds }; 25201da177e4SLinus Torvalds 25211da177e4SLinus Torvalds #endif /* CONFIG_PROC_FS */ 25221da177e4SLinus Torvalds 2523339bf98fSThomas Graf static inline size_t neigh_nlmsg_size(void) 2524339bf98fSThomas Graf { 2525339bf98fSThomas Graf return NLMSG_ALIGN(sizeof(struct ndmsg)) 2526339bf98fSThomas Graf + nla_total_size(MAX_ADDR_LEN) /* NDA_DST */ 2527339bf98fSThomas Graf + nla_total_size(MAX_ADDR_LEN) /* NDA_LLADDR */ 2528339bf98fSThomas Graf + nla_total_size(sizeof(struct nda_cacheinfo)) 2529339bf98fSThomas Graf + nla_total_size(4); /* NDA_PROBES */ 2530339bf98fSThomas Graf } 2531339bf98fSThomas Graf 2532b8673311SThomas Graf static void __neigh_notify(struct neighbour *n, int type, int flags) 25331da177e4SLinus Torvalds { 2534c346dca1SYOSHIFUJI Hideaki struct net *net = dev_net(n->dev); 25358b8aec50SThomas Graf struct sk_buff *skb; 2536b8673311SThomas Graf int err = -ENOBUFS; 25371da177e4SLinus Torvalds 2538339bf98fSThomas Graf skb = nlmsg_new(neigh_nlmsg_size(), GFP_ATOMIC); 25398b8aec50SThomas Graf if (skb == NULL) 2540b8673311SThomas Graf goto errout; 25411da177e4SLinus Torvalds 2542b8673311SThomas Graf err = neigh_fill_info(skb, n, 0, 0, type, flags); 254326932566SPatrick McHardy if (err < 0) { 254426932566SPatrick McHardy /* -EMSGSIZE implies BUG in neigh_nlmsg_size() */ 254526932566SPatrick McHardy WARN_ON(err == -EMSGSIZE); 254626932566SPatrick McHardy kfree_skb(skb); 254726932566SPatrick McHardy goto errout; 254826932566SPatrick McHardy } 25491ce85fe4SPablo Neira Ayuso rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC); 25501ce85fe4SPablo Neira Ayuso return; 2551b8673311SThomas Graf errout: 2552b8673311SThomas Graf if (err < 0) 2553426b5303SEric W. Biederman rtnl_set_sk_err(net, RTNLGRP_NEIGH, err); 2554b8673311SThomas Graf } 2555b8673311SThomas Graf 2556d961db35SThomas Graf #ifdef CONFIG_ARPD 2557b8673311SThomas Graf void neigh_app_ns(struct neighbour *n) 2558b8673311SThomas Graf { 2559b8673311SThomas Graf __neigh_notify(n, RTM_GETNEIGH, NLM_F_REQUEST); 25608b8aec50SThomas Graf } 25610a204500SYOSHIFUJI Hideaki EXPORT_SYMBOL(neigh_app_ns); 25621da177e4SLinus Torvalds #endif /* CONFIG_ARPD */ 25631da177e4SLinus Torvalds 25641da177e4SLinus Torvalds #ifdef CONFIG_SYSCTL 25651da177e4SLinus Torvalds 256654716e3bSEric W. Biederman #define NEIGH_VARS_MAX 19 256754716e3bSEric W. Biederman 25681da177e4SLinus Torvalds static struct neigh_sysctl_table { 25691da177e4SLinus Torvalds struct ctl_table_header *sysctl_header; 257054716e3bSEric W. Biederman struct ctl_table neigh_vars[NEIGH_VARS_MAX]; 2571c3bac5a7SPavel Emelyanov char *dev_name; 2572ab32ea5dSBrian Haley } neigh_sysctl_template __read_mostly = { 25731da177e4SLinus Torvalds .neigh_vars = { 25741da177e4SLinus Torvalds { 25751da177e4SLinus Torvalds .procname = "mcast_solicit", 25761da177e4SLinus Torvalds .maxlen = sizeof(int), 25771da177e4SLinus Torvalds .mode = 0644, 25786d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec, 25791da177e4SLinus Torvalds }, 25801da177e4SLinus Torvalds { 25811da177e4SLinus Torvalds .procname = "ucast_solicit", 25821da177e4SLinus Torvalds .maxlen = sizeof(int), 25831da177e4SLinus Torvalds .mode = 0644, 25846d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec, 25851da177e4SLinus Torvalds }, 25861da177e4SLinus Torvalds { 25871da177e4SLinus Torvalds .procname = "app_solicit", 25881da177e4SLinus Torvalds .maxlen = sizeof(int), 25891da177e4SLinus Torvalds .mode = 0644, 25906d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec, 25911da177e4SLinus Torvalds }, 25921da177e4SLinus Torvalds { 25931da177e4SLinus Torvalds .procname = "retrans_time", 25941da177e4SLinus Torvalds .maxlen = sizeof(int), 25951da177e4SLinus Torvalds .mode = 0644, 25966d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_userhz_jiffies, 25971da177e4SLinus Torvalds }, 25981da177e4SLinus Torvalds { 25991da177e4SLinus Torvalds .procname = "base_reachable_time", 26001da177e4SLinus Torvalds .maxlen = sizeof(int), 26011da177e4SLinus Torvalds .mode = 0644, 26026d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_jiffies, 26031da177e4SLinus Torvalds }, 26041da177e4SLinus Torvalds { 26051da177e4SLinus Torvalds .procname = "delay_first_probe_time", 26061da177e4SLinus Torvalds .maxlen = sizeof(int), 26071da177e4SLinus Torvalds .mode = 0644, 26086d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_jiffies, 26091da177e4SLinus Torvalds }, 26101da177e4SLinus Torvalds { 26111da177e4SLinus Torvalds .procname = "gc_stale_time", 26121da177e4SLinus Torvalds .maxlen = sizeof(int), 26131da177e4SLinus Torvalds .mode = 0644, 26146d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_jiffies, 26151da177e4SLinus Torvalds }, 26161da177e4SLinus Torvalds { 26171da177e4SLinus Torvalds .procname = "unres_qlen", 26181da177e4SLinus Torvalds .maxlen = sizeof(int), 26191da177e4SLinus Torvalds .mode = 0644, 26206d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec, 26211da177e4SLinus Torvalds }, 26221da177e4SLinus Torvalds { 26231da177e4SLinus Torvalds .procname = "proxy_qlen", 26241da177e4SLinus Torvalds .maxlen = sizeof(int), 26251da177e4SLinus Torvalds .mode = 0644, 26266d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec, 26271da177e4SLinus Torvalds }, 26281da177e4SLinus Torvalds { 26291da177e4SLinus Torvalds .procname = "anycast_delay", 26301da177e4SLinus Torvalds .maxlen = sizeof(int), 26311da177e4SLinus Torvalds .mode = 0644, 26326d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_userhz_jiffies, 26331da177e4SLinus Torvalds }, 26341da177e4SLinus Torvalds { 26351da177e4SLinus Torvalds .procname = "proxy_delay", 26361da177e4SLinus Torvalds .maxlen = sizeof(int), 26371da177e4SLinus Torvalds .mode = 0644, 26386d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_userhz_jiffies, 26391da177e4SLinus Torvalds }, 26401da177e4SLinus Torvalds { 26411da177e4SLinus Torvalds .procname = "locktime", 26421da177e4SLinus Torvalds .maxlen = sizeof(int), 26431da177e4SLinus Torvalds .mode = 0644, 26446d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_userhz_jiffies, 26451da177e4SLinus Torvalds }, 26461da177e4SLinus Torvalds { 2647d12af679SEric W. Biederman .procname = "retrans_time_ms", 2648d12af679SEric W. Biederman .maxlen = sizeof(int), 2649d12af679SEric W. Biederman .mode = 0644, 26506d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_ms_jiffies, 2651d12af679SEric W. Biederman }, 2652d12af679SEric W. Biederman { 2653d12af679SEric W. Biederman .procname = "base_reachable_time_ms", 2654d12af679SEric W. Biederman .maxlen = sizeof(int), 2655d12af679SEric W. Biederman .mode = 0644, 26566d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_ms_jiffies, 2657d12af679SEric W. Biederman }, 2658d12af679SEric W. Biederman { 26591da177e4SLinus Torvalds .procname = "gc_interval", 26601da177e4SLinus Torvalds .maxlen = sizeof(int), 26611da177e4SLinus Torvalds .mode = 0644, 26626d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec_jiffies, 26631da177e4SLinus Torvalds }, 26641da177e4SLinus Torvalds { 26651da177e4SLinus Torvalds .procname = "gc_thresh1", 26661da177e4SLinus Torvalds .maxlen = sizeof(int), 26671da177e4SLinus Torvalds .mode = 0644, 26686d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec, 26691da177e4SLinus Torvalds }, 26701da177e4SLinus Torvalds { 26711da177e4SLinus Torvalds .procname = "gc_thresh2", 26721da177e4SLinus Torvalds .maxlen = sizeof(int), 26731da177e4SLinus Torvalds .mode = 0644, 26746d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec, 26751da177e4SLinus Torvalds }, 26761da177e4SLinus Torvalds { 26771da177e4SLinus Torvalds .procname = "gc_thresh3", 26781da177e4SLinus Torvalds .maxlen = sizeof(int), 26791da177e4SLinus Torvalds .mode = 0644, 26806d9f239aSAlexey Dobriyan .proc_handler = proc_dointvec, 26811da177e4SLinus Torvalds }, 2682c3bac5a7SPavel Emelyanov {}, 26831da177e4SLinus Torvalds }, 26841da177e4SLinus Torvalds }; 26851da177e4SLinus Torvalds 26861da177e4SLinus Torvalds int neigh_sysctl_register(struct net_device *dev, struct neigh_parms *p, 268754716e3bSEric W. Biederman char *p_name, proc_handler *handler) 26881da177e4SLinus Torvalds { 26893c607bbbSPavel Emelyanov struct neigh_sysctl_table *t; 26901da177e4SLinus Torvalds const char *dev_name_source = NULL; 2691c3bac5a7SPavel Emelyanov 2692c3bac5a7SPavel Emelyanov #define NEIGH_CTL_PATH_ROOT 0 2693c3bac5a7SPavel Emelyanov #define NEIGH_CTL_PATH_PROTO 1 2694c3bac5a7SPavel Emelyanov #define NEIGH_CTL_PATH_NEIGH 2 2695c3bac5a7SPavel Emelyanov #define NEIGH_CTL_PATH_DEV 3 2696c3bac5a7SPavel Emelyanov 2697c3bac5a7SPavel Emelyanov struct ctl_path neigh_path[] = { 2698f8572d8fSEric W. Biederman { .procname = "net", }, 2699f8572d8fSEric W. Biederman { .procname = "proto", }, 2700f8572d8fSEric W. Biederman { .procname = "neigh", }, 2701f8572d8fSEric W. Biederman { .procname = "default", }, 2702c3bac5a7SPavel Emelyanov { }, 2703c3bac5a7SPavel Emelyanov }; 27041da177e4SLinus Torvalds 27053c607bbbSPavel Emelyanov t = kmemdup(&neigh_sysctl_template, sizeof(*t), GFP_KERNEL); 27061da177e4SLinus Torvalds if (!t) 27073c607bbbSPavel Emelyanov goto err; 27083c607bbbSPavel Emelyanov 27091da177e4SLinus Torvalds t->neigh_vars[0].data = &p->mcast_probes; 27101da177e4SLinus Torvalds t->neigh_vars[1].data = &p->ucast_probes; 27111da177e4SLinus Torvalds t->neigh_vars[2].data = &p->app_probes; 27121da177e4SLinus Torvalds t->neigh_vars[3].data = &p->retrans_time; 27131da177e4SLinus Torvalds t->neigh_vars[4].data = &p->base_reachable_time; 27141da177e4SLinus Torvalds t->neigh_vars[5].data = &p->delay_probe_time; 27151da177e4SLinus Torvalds t->neigh_vars[6].data = &p->gc_staletime; 27161da177e4SLinus Torvalds t->neigh_vars[7].data = &p->queue_len; 27171da177e4SLinus Torvalds t->neigh_vars[8].data = &p->proxy_qlen; 27181da177e4SLinus Torvalds t->neigh_vars[9].data = &p->anycast_delay; 27191da177e4SLinus Torvalds t->neigh_vars[10].data = &p->proxy_delay; 27201da177e4SLinus Torvalds t->neigh_vars[11].data = &p->locktime; 2721d12af679SEric W. Biederman t->neigh_vars[12].data = &p->retrans_time; 2722d12af679SEric W. Biederman t->neigh_vars[13].data = &p->base_reachable_time; 27231da177e4SLinus Torvalds 27241da177e4SLinus Torvalds if (dev) { 27251da177e4SLinus Torvalds dev_name_source = dev->name; 2726d12af679SEric W. Biederman /* Terminate the table early */ 2727d12af679SEric W. Biederman memset(&t->neigh_vars[14], 0, sizeof(t->neigh_vars[14])); 27281da177e4SLinus Torvalds } else { 2729c3bac5a7SPavel Emelyanov dev_name_source = neigh_path[NEIGH_CTL_PATH_DEV].procname; 2730d12af679SEric W. Biederman t->neigh_vars[14].data = (int *)(p + 1); 2731d12af679SEric W. Biederman t->neigh_vars[15].data = (int *)(p + 1) + 1; 2732d12af679SEric W. Biederman t->neigh_vars[16].data = (int *)(p + 1) + 2; 2733d12af679SEric W. Biederman t->neigh_vars[17].data = (int *)(p + 1) + 3; 27341da177e4SLinus Torvalds } 27351da177e4SLinus Torvalds 27361da177e4SLinus Torvalds 2737f8572d8fSEric W. Biederman if (handler) { 27381da177e4SLinus Torvalds /* RetransTime */ 27391da177e4SLinus Torvalds t->neigh_vars[3].proc_handler = handler; 27401da177e4SLinus Torvalds t->neigh_vars[3].extra1 = dev; 27411da177e4SLinus Torvalds /* ReachableTime */ 27421da177e4SLinus Torvalds t->neigh_vars[4].proc_handler = handler; 27431da177e4SLinus Torvalds t->neigh_vars[4].extra1 = dev; 27441da177e4SLinus Torvalds /* RetransTime (in milliseconds)*/ 2745d12af679SEric W. Biederman t->neigh_vars[12].proc_handler = handler; 2746d12af679SEric W. Biederman t->neigh_vars[12].extra1 = dev; 27471da177e4SLinus Torvalds /* ReachableTime (in milliseconds) */ 2748d12af679SEric W. Biederman t->neigh_vars[13].proc_handler = handler; 2749d12af679SEric W. Biederman t->neigh_vars[13].extra1 = dev; 27501da177e4SLinus Torvalds } 27511da177e4SLinus Torvalds 2752c3bac5a7SPavel Emelyanov t->dev_name = kstrdup(dev_name_source, GFP_KERNEL); 2753c3bac5a7SPavel Emelyanov if (!t->dev_name) 27541da177e4SLinus Torvalds goto free; 27551da177e4SLinus Torvalds 2756c3bac5a7SPavel Emelyanov neigh_path[NEIGH_CTL_PATH_DEV].procname = t->dev_name; 2757c3bac5a7SPavel Emelyanov neigh_path[NEIGH_CTL_PATH_PROTO].procname = p_name; 27581da177e4SLinus Torvalds 27594ab438fcSDenis V. Lunev t->sysctl_header = 276057da52c1SYOSHIFUJI Hideaki register_net_sysctl_table(neigh_parms_net(p), neigh_path, t->neigh_vars); 27613c607bbbSPavel Emelyanov if (!t->sysctl_header) 27621da177e4SLinus Torvalds goto free_procname; 27633c607bbbSPavel Emelyanov 27641da177e4SLinus Torvalds p->sysctl_table = t; 27651da177e4SLinus Torvalds return 0; 27661da177e4SLinus Torvalds 27671da177e4SLinus Torvalds free_procname: 2768c3bac5a7SPavel Emelyanov kfree(t->dev_name); 27691da177e4SLinus Torvalds free: 27701da177e4SLinus Torvalds kfree(t); 27713c607bbbSPavel Emelyanov err: 27723c607bbbSPavel Emelyanov return -ENOBUFS; 27731da177e4SLinus Torvalds } 27740a204500SYOSHIFUJI Hideaki EXPORT_SYMBOL(neigh_sysctl_register); 27751da177e4SLinus Torvalds 27761da177e4SLinus Torvalds void neigh_sysctl_unregister(struct neigh_parms *p) 27771da177e4SLinus Torvalds { 27781da177e4SLinus Torvalds if (p->sysctl_table) { 27791da177e4SLinus Torvalds struct neigh_sysctl_table *t = p->sysctl_table; 27801da177e4SLinus Torvalds p->sysctl_table = NULL; 27811da177e4SLinus Torvalds unregister_sysctl_table(t->sysctl_header); 2782c3bac5a7SPavel Emelyanov kfree(t->dev_name); 27831da177e4SLinus Torvalds kfree(t); 27841da177e4SLinus Torvalds } 27851da177e4SLinus Torvalds } 27860a204500SYOSHIFUJI Hideaki EXPORT_SYMBOL(neigh_sysctl_unregister); 27871da177e4SLinus Torvalds 27881da177e4SLinus Torvalds #endif /* CONFIG_SYSCTL */ 27891da177e4SLinus Torvalds 2790c8822a4eSThomas Graf static int __init neigh_init(void) 2791c8822a4eSThomas Graf { 2792c8822a4eSThomas Graf rtnl_register(PF_UNSPEC, RTM_NEWNEIGH, neigh_add, NULL); 2793c8822a4eSThomas Graf rtnl_register(PF_UNSPEC, RTM_DELNEIGH, neigh_delete, NULL); 2794c8822a4eSThomas Graf rtnl_register(PF_UNSPEC, RTM_GETNEIGH, NULL, neigh_dump_info); 2795c8822a4eSThomas Graf 2796c8822a4eSThomas Graf rtnl_register(PF_UNSPEC, RTM_GETNEIGHTBL, NULL, neightbl_dump_info); 2797c8822a4eSThomas Graf rtnl_register(PF_UNSPEC, RTM_SETNEIGHTBL, neightbl_set, NULL); 2798c8822a4eSThomas Graf 2799c8822a4eSThomas Graf return 0; 2800c8822a4eSThomas Graf } 2801c8822a4eSThomas Graf 2802c8822a4eSThomas Graf subsys_initcall(neigh_init); 2803c8822a4eSThomas Graf 2804