Fedora kernel-2.6.17-1.2142_FC4 patched with stable patch-2.6.17.4-vs2.0.2-rc26.diff
[linux-2.6.git] / net / ipv4 / route.c
index 15d9eca..cc9423d 100644 (file)
@@ -7,7 +7,7 @@
  *
  * Version:    $Id: route.c,v 1.103 2002/01/12 07:44:09 davem Exp $
  *
- * Authors:    Ross Biro, <bir7@leland.Stanford.Edu>
+ * Authors:    Ross Biro
  *             Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
  *             Alan Cox, <gw4pts@gw4pts.ampr.org>
  *             Linus Torvalds, <Linus.Torvalds@helsinki.fi>
@@ -54,6 +54,9 @@
  *             Marc Boucher    :       routing by fwmark
  *     Robert Olsson           :       Added rt_cache statistics
  *     Arnaldo C. Melo         :       Convert proc stuff to seq_file
+ *     Eric Dumazet            :       hashed spinlocks and rt_check_expire() fixes.
+ *     Ilia Sotnikov           :       Ignore TOS on PMTUD and Redirect
+ *     Ilia Sotnikov           :       Removed TOS from hash calculations
  *
  *             This program is free software; you can redistribute it and/or
  *             modify it under the terms of the GNU General Public License
 #include <linux/module.h>
 #include <asm/uaccess.h>
 #include <asm/system.h>
-#include <asm/bitops.h>
+#include <linux/bitops.h>
 #include <linux/types.h>
 #include <linux/kernel.h>
 #include <linux/sched.h>
 #include <linux/mm.h>
+#include <linux/bootmem.h>
 #include <linux/string.h>
 #include <linux/socket.h>
 #include <linux/sockios.h>
 #include <net/tcp.h>
 #include <net/icmp.h>
 #include <net/xfrm.h>
+#include <net/ip_mp_alg.h>
 #ifdef CONFIG_SYSCTL
 #include <linux/sysctl.h>
 #endif
 
+#define RT_FL_TOS(oldflp) \
+    ((u32)(oldflp->fl4_tos & (IPTOS_RT_MASK | RTO_ONLINK)))
+
 #define IP_MAX_MTU     0xFFF0
 
 #define RT_GC_TIMEOUT (300*HZ)
 
-int ip_rt_min_delay            = 2 * HZ;
-int ip_rt_max_delay            = 10 * HZ;
-int ip_rt_max_size;
-int ip_rt_gc_timeout           = RT_GC_TIMEOUT;
-int ip_rt_gc_interval          = 60 * HZ;
-int ip_rt_gc_min_interval      = HZ / 2;
-int ip_rt_redirect_number      = 9;
-int ip_rt_redirect_load                = HZ / 50;
-int ip_rt_redirect_silence     = ((HZ / 50) << (9 + 1));
-int ip_rt_error_cost           = HZ;
-int ip_rt_error_burst          = 5 * HZ;
-int ip_rt_gc_elasticity                = 8;
-int ip_rt_mtu_expires          = 10 * 60 * HZ;
-int ip_rt_min_pmtu             = 512 + 20 + 20;
-int ip_rt_min_advmss           = 256;
-int ip_rt_secret_interval      = 10 * 60 * HZ;
+static int ip_rt_min_delay             = 2 * HZ;
+static int ip_rt_max_delay             = 10 * HZ;
+static int ip_rt_max_size;
+static int ip_rt_gc_timeout            = RT_GC_TIMEOUT;
+static int ip_rt_gc_interval           = 60 * HZ;
+static int ip_rt_gc_min_interval       = HZ / 2;
+static int ip_rt_redirect_number       = 9;
+static int ip_rt_redirect_load         = HZ / 50;
+static int ip_rt_redirect_silence      = ((HZ / 50) << (9 + 1));
+static int ip_rt_error_cost            = HZ;
+static int ip_rt_error_burst           = 5 * HZ;
+static int ip_rt_gc_elasticity         = 8;
+static int ip_rt_mtu_expires           = 10 * 60 * HZ;
+static int ip_rt_min_pmtu              = 512 + 20 + 20;
+static int ip_rt_min_advmss            = 256;
+static int ip_rt_secret_interval       = 10 * 60 * HZ;
 static unsigned long rt_deadline;
 
 #define RTprint(a...)  printk(KERN_DEBUG a)
@@ -138,7 +146,8 @@ static struct timer_list rt_secret_timer;
 
 static struct dst_entry *ipv4_dst_check(struct dst_entry *dst, u32 cookie);
 static void             ipv4_dst_destroy(struct dst_entry *dst);
-static void             ipv4_dst_ifdown(struct dst_entry *dst, int how);
+static void             ipv4_dst_ifdown(struct dst_entry *dst,
+                                        struct net_device *dev, int how);
 static struct dst_entry *ipv4_negative_advice(struct dst_entry *dst);
 static void             ipv4_link_failure(struct sk_buff *skb);
 static void             ip_rt_update_pmtu(struct dst_entry *dst, u32 mtu);
@@ -196,22 +205,53 @@ __u8 ip_tos2prio[16] = {
 
 struct rt_hash_bucket {
        struct rtable   *chain;
-       spinlock_t      lock;
-} __attribute__((__aligned__(8)));
+};
+#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK)
+/*
+ * Instead of using one spinlock for each rt_hash_bucket, we use a table of spinlocks
+ * The size of this table is a power of two and depends on the number of CPUS.
+ */
+#if NR_CPUS >= 32
+#define RT_HASH_LOCK_SZ        4096
+#elif NR_CPUS >= 16
+#define RT_HASH_LOCK_SZ        2048
+#elif NR_CPUS >= 8
+#define RT_HASH_LOCK_SZ        1024
+#elif NR_CPUS >= 4
+#define RT_HASH_LOCK_SZ        512
+#else
+#define RT_HASH_LOCK_SZ        256
+#endif
+
+static spinlock_t      *rt_hash_locks;
+# define rt_hash_lock_addr(slot) &rt_hash_locks[(slot) & (RT_HASH_LOCK_SZ - 1)]
+# define rt_hash_lock_init()   { \
+               int i; \
+               rt_hash_locks = kmalloc(sizeof(spinlock_t) * RT_HASH_LOCK_SZ, GFP_KERNEL); \
+               if (!rt_hash_locks) panic("IP: failed to allocate rt_hash_locks\n"); \
+               for (i = 0; i < RT_HASH_LOCK_SZ; i++) \
+                       spin_lock_init(&rt_hash_locks[i]); \
+               }
+#else
+# define rt_hash_lock_addr(slot) NULL
+# define rt_hash_lock_init()
+#endif
 
 static struct rt_hash_bucket   *rt_hash_table;
 static unsigned                        rt_hash_mask;
 static int                     rt_hash_log;
 static unsigned int            rt_hash_rnd;
 
-struct rt_cache_stat *rt_cache_stat;
+static DEFINE_PER_CPU(struct rt_cache_stat, rt_cache_stat);
+#define RT_CACHE_STAT_INC(field) \
+       (per_cpu(rt_cache_stat, raw_smp_processor_id()).field++)
 
 static int rt_intern_hash(unsigned hash, struct rtable *rth,
                                struct rtable **res);
 
-static unsigned int rt_hash_code(u32 daddr, u32 saddr, u8 tos)
+static unsigned int rt_hash_code(u32 daddr, u32 saddr)
 {
-       return (jhash_3words(daddr, saddr, (u32) tos, rt_hash_rnd)
+       return (jhash_2words(daddr, saddr, rt_hash_rnd)
                & rt_hash_mask);
 }
 
@@ -226,26 +266,25 @@ static struct rtable *rt_cache_get_first(struct seq_file *seq)
        struct rt_cache_iter_state *st = seq->private;
 
        for (st->bucket = rt_hash_mask; st->bucket >= 0; --st->bucket) {
-               rcu_read_lock();
+               rcu_read_lock_bh();
                r = rt_hash_table[st->bucket].chain;
                if (r)
                        break;
-               rcu_read_unlock();
+               rcu_read_unlock_bh();
        }
        return r;
 }
 
 static struct rtable *rt_cache_get_next(struct seq_file *seq, struct rtable *r)
 {
-       struct rt_cache_iter_state *st = seq->private;
+       struct rt_cache_iter_state *st = rcu_dereference(seq->private);
 
-       smp_read_barrier_depends();
        r = r->u.rt_next;
        while (!r) {
-               rcu_read_unlock();
+               rcu_read_unlock_bh();
                if (--st->bucket < 0)
                        break;
-               rcu_read_lock();
+               rcu_read_lock_bh();
                r = rt_hash_table[st->bucket].chain;
        }
        return r;
@@ -281,7 +320,7 @@ static void *rt_cache_seq_next(struct seq_file *seq, void *v, loff_t *pos)
 static void rt_cache_seq_stop(struct seq_file *seq, void *v)
 {
        if (v && v != SEQ_START_TOKEN)
-               rcu_read_unlock();
+               rcu_read_unlock_bh();
 }
 
 static int rt_cache_seq_show(struct seq_file *seq, void *v)
@@ -357,11 +396,14 @@ static void *rt_cpu_seq_start(struct seq_file *seq, loff_t *pos)
 {
        int cpu;
 
-       for (cpu = *pos; cpu < NR_CPUS; ++cpu) {
+       if (*pos == 0)
+               return SEQ_START_TOKEN;
+
+       for (cpu = *pos-1; cpu < NR_CPUS; ++cpu) {
                if (!cpu_possible(cpu))
                        continue;
-               *pos = cpu;
-               return per_cpu_ptr(rt_cache_stat, cpu);
+               *pos = cpu+1;
+               return &per_cpu(rt_cache_stat, cpu);
        }
        return NULL;
 }
@@ -370,11 +412,11 @@ static void *rt_cpu_seq_next(struct seq_file *seq, void *v, loff_t *pos)
 {
        int cpu;
 
-       for (cpu = *pos + 1; cpu < NR_CPUS; ++cpu) {
+       for (cpu = *pos; cpu < NR_CPUS; ++cpu) {
                if (!cpu_possible(cpu))
                        continue;
-               *pos = cpu;
-               return per_cpu_ptr(rt_cache_stat, cpu);
+               *pos = cpu+1;
+               return &per_cpu(rt_cache_stat, cpu);
        }
        return NULL;
        
@@ -388,6 +430,11 @@ static void rt_cpu_seq_stop(struct seq_file *seq, void *v)
 static int rt_cpu_seq_show(struct seq_file *seq, void *v)
 {
        struct rt_cache_stat *st = v;
+
+       if (v == SEQ_START_TOKEN) {
+               seq_printf(seq, "entries  in_hit in_slow_tot in_slow_mc in_no_route in_brd in_martian_dst in_martian_src  out_hit out_slow_tot out_slow_mc  gc_total gc_ignored gc_goal_miss gc_dst_overflow in_hlist_search out_hlist_search\n");
+               return 0;
+       }
        
        seq_printf(seq,"%08x  %08x %08x %08x %08x %08x %08x %08x "
                   " %08x %08x %08x %08x %08x %08x %08x %08x %08x \n",
@@ -439,13 +486,15 @@ static struct file_operations rt_cpu_seq_fops = {
   
 static __inline__ void rt_free(struct rtable *rt)
 {
-       call_rcu(&rt->u.dst.rcu_head, dst_rcu_free);
+       multipath_remove(rt);
+       call_rcu_bh(&rt->u.dst.rcu_head, dst_rcu_free);
 }
 
 static __inline__ void rt_drop(struct rtable *rt)
 {
+       multipath_remove(rt);
        ip_rt_put(rt);
-       call_rcu(&rt->u.dst.rcu_head, dst_rcu_free);
+       call_rcu_bh(&rt->u.dst.rcu_head, dst_rcu_free);
 }
 
 static __inline__ int rt_fast_clean(struct rtable *rth)
@@ -505,22 +554,82 @@ static inline u32 rt_score(struct rtable *rt)
        return score;
 }
 
+static inline int compare_keys(struct flowi *fl1, struct flowi *fl2)
+{
+       return memcmp(&fl1->nl_u.ip4_u, &fl2->nl_u.ip4_u, sizeof(fl1->nl_u.ip4_u)) == 0 &&
+              fl1->oif     == fl2->oif &&
+              fl1->iif     == fl2->iif;
+}
+
+#ifdef CONFIG_IP_ROUTE_MULTIPATH_CACHED
+static struct rtable **rt_remove_balanced_route(struct rtable **chain_head,
+                                               struct rtable *expentry,
+                                               int *removed_count)
+{
+       int passedexpired = 0;
+       struct rtable **nextstep = NULL;
+       struct rtable **rthp = chain_head;
+       struct rtable *rth;
+
+       if (removed_count)
+               *removed_count = 0;
+
+       while ((rth = *rthp) != NULL) {
+               if (rth == expentry)
+                       passedexpired = 1;
+
+               if (((*rthp)->u.dst.flags & DST_BALANCED) != 0  &&
+                   compare_keys(&(*rthp)->fl, &expentry->fl)) {
+                       if (*rthp == expentry) {
+                               *rthp = rth->u.rt_next;
+                               continue;
+                       } else {
+                               *rthp = rth->u.rt_next;
+                               rt_free(rth);
+                               if (removed_count)
+                                       ++(*removed_count);
+                       }
+               } else {
+                       if (!((*rthp)->u.dst.flags & DST_BALANCED) &&
+                           passedexpired && !nextstep)
+                               nextstep = &rth->u.rt_next;
+
+                       rthp = &rth->u.rt_next;
+               }
+       }
+
+       rt_free(expentry);
+       if (removed_count)
+               ++(*removed_count);
+
+       return nextstep;
+}
+#endif /* CONFIG_IP_ROUTE_MULTIPATH_CACHED */
+
+
 /* This runs via a timer and thus is always in BH context. */
 static void rt_check_expire(unsigned long dummy)
 {
-       static int rover;
-       int i = rover, t;
+       static unsigned int rover;
+       unsigned int i = rover, goal;
        struct rtable *rth, **rthp;
        unsigned long now = jiffies;
-
-       for (t = ip_rt_gc_interval << rt_hash_log; t >= 0;
-            t -= ip_rt_gc_timeout) {
+       u64 mult;
+
+       mult = ((u64)ip_rt_gc_interval) << rt_hash_log;
+       if (ip_rt_gc_timeout > 1)
+               do_div(mult, ip_rt_gc_timeout);
+       goal = (unsigned int)mult;
+       if (goal > rt_hash_mask) goal = rt_hash_mask + 1;
+       for (; goal > 0; goal--) {
                unsigned long tmo = ip_rt_gc_timeout;
 
                i = (i + 1) & rt_hash_mask;
                rthp = &rt_hash_table[i].chain;
 
-               spin_lock(&rt_hash_table[i].lock);
+               if (*rthp == 0)
+                       continue;
+               spin_lock(rt_hash_lock_addr(i));
                while ((rth = *rthp) != NULL) {
                        if (rth->u.dst.expires) {
                                /* Entry is expired even if it is in use */
@@ -536,17 +645,31 @@ static void rt_check_expire(unsigned long dummy)
                        }
 
                        /* Cleanup aged off entries. */
-                       *rthp = rth->u.rt_next;
-                       rt_free(rth);
+#ifdef CONFIG_IP_ROUTE_MULTIPATH_CACHED
+                       /* remove all related balanced entries if necessary */
+                       if (rth->u.dst.flags & DST_BALANCED) {
+                               rthp = rt_remove_balanced_route(
+                                       &rt_hash_table[i].chain,
+                                       rth, NULL);
+                               if (!rthp)
+                                       break;
+                       } else {
+                               *rthp = rth->u.rt_next;
+                               rt_free(rth);
+                       }
+#else /* CONFIG_IP_ROUTE_MULTIPATH_CACHED */
+                       *rthp = rth->u.rt_next;
+                       rt_free(rth);
+#endif /* CONFIG_IP_ROUTE_MULTIPATH_CACHED */
                }
-               spin_unlock(&rt_hash_table[i].lock);
+               spin_unlock(rt_hash_lock_addr(i));
 
                /* Fallback loop breaker. */
                if (time_after(jiffies, now))
                        break;
        }
        rover = i;
-       mod_timer(&rt_periodic_timer, now + ip_rt_gc_interval);
+       mod_timer(&rt_periodic_timer, jiffies + ip_rt_gc_interval);
 }
 
 /* This can run from both BH and non-BH contexts, the latter
@@ -562,11 +685,11 @@ static void rt_run_flush(unsigned long dummy)
        get_random_bytes(&rt_hash_rnd, 4);
 
        for (i = rt_hash_mask; i >= 0; i--) {
-               spin_lock_bh(&rt_hash_table[i].lock);
+               spin_lock_bh(rt_hash_lock_addr(i));
                rth = rt_hash_table[i].chain;
                if (rth)
                        rt_hash_table[i].chain = NULL;
-               spin_unlock_bh(&rt_hash_table[i].lock);
+               spin_unlock_bh(rt_hash_lock_addr(i));
 
                for (; rth; rth = next) {
                        next = rth->u.rt_next;
@@ -575,7 +698,7 @@ static void rt_run_flush(unsigned long dummy)
        }
 }
 
-static spinlock_t rt_flush_lock = SPIN_LOCK_UNLOCKED;
+static DEFINE_SPINLOCK(rt_flush_lock);
 
 void rt_cache_flush(int delay)
 {
@@ -585,6 +708,9 @@ void rt_cache_flush(int delay)
        if (delay < 0)
                delay = ip_rt_min_delay;
 
+       /* flush existing multipath state*/
+       multipath_flush();
+
        spin_lock_bh(&rt_flush_lock);
 
        if (del_timer(&rt_flush_timer) && delay > 0 && rt_deadline) {
@@ -696,18 +822,39 @@ static int rt_garbage_collect(void)
 
                        k = (k + 1) & rt_hash_mask;
                        rthp = &rt_hash_table[k].chain;
-                       spin_lock_bh(&rt_hash_table[k].lock);
+                       spin_lock_bh(rt_hash_lock_addr(k));
                        while ((rth = *rthp) != NULL) {
                                if (!rt_may_expire(rth, tmo, expire)) {
                                        tmo >>= 1;
                                        rthp = &rth->u.rt_next;
                                        continue;
                                }
+#ifdef CONFIG_IP_ROUTE_MULTIPATH_CACHED
+                               /* remove all related balanced entries
+                                * if necessary
+                                */
+                               if (rth->u.dst.flags & DST_BALANCED) {
+                                       int r;
+
+                                       rthp = rt_remove_balanced_route(
+                                               &rt_hash_table[k].chain,
+                                               rth,
+                                               &r);
+                                       goal -= r;
+                                       if (!rthp)
+                                               break;
+                               } else {
+                                       *rthp = rth->u.rt_next;
+                                       rt_free(rth);
+                                       goal--;
+                               }
+#else /* CONFIG_IP_ROUTE_MULTIPATH_CACHED */
                                *rthp = rth->u.rt_next;
                                rt_free(rth);
                                goal--;
+#endif /* CONFIG_IP_ROUTE_MULTIPATH_CACHED */
                        }
-                       spin_unlock_bh(&rt_hash_table[k].lock);
+                       spin_unlock_bh(rt_hash_lock_addr(k));
                        if (goal <= 0)
                                break;
                }
@@ -759,13 +906,6 @@ work_done:
 out:   return 0;
 }
 
-static inline int compare_keys(struct flowi *fl1, struct flowi *fl2)
-{
-       return memcmp(&fl1->nl_u.ip4_u, &fl2->nl_u.ip4_u, sizeof(fl1->nl_u.ip4_u)) == 0 &&
-              fl1->oif     == fl2->oif &&
-              fl1->iif     == fl2->iif;
-}
-
 static int rt_intern_hash(unsigned hash, struct rtable *rt, struct rtable **rp)
 {
        struct rtable   *rth, **rthp;
@@ -784,9 +924,14 @@ restart:
 
        rthp = &rt_hash_table[hash].chain;
 
-       spin_lock_bh(&rt_hash_table[hash].lock);
+       spin_lock_bh(rt_hash_lock_addr(hash));
        while ((rth = *rthp) != NULL) {
+#ifdef CONFIG_IP_ROUTE_MULTIPATH_CACHED
+               if (!(rth->u.dst.flags & DST_BALANCED) &&
+                   compare_keys(&rth->fl, &rt->fl)) {
+#else
                if (compare_keys(&rth->fl, &rt->fl)) {
+#endif
                        /* Put it first */
                        *rthp = rth->u.rt_next;
                        /*
@@ -794,19 +939,18 @@ restart:
                         * must be visible to another weakly ordered CPU before
                         * the insertion at the start of the hash chain.
                         */
-                       smp_wmb();
-                       rth->u.rt_next = rt_hash_table[hash].chain;
+                       rcu_assign_pointer(rth->u.rt_next,
+                                          rt_hash_table[hash].chain);
                        /*
                         * Since lookup is lockfree, the update writes
                         * must be ordered for consistency on SMP.
                         */
-                       smp_wmb();
-                       rt_hash_table[hash].chain = rth;
+                       rcu_assign_pointer(rt_hash_table[hash].chain, rth);
 
                        rth->u.dst.__use++;
                        dst_hold(&rth->u.dst);
                        rth->u.dst.lastuse = now;
-                       spin_unlock_bh(&rt_hash_table[hash].lock);
+                       spin_unlock_bh(rt_hash_lock_addr(hash));
 
                        rt_drop(rt);
                        *rp = rth;
@@ -847,7 +991,7 @@ restart:
        if (rt->rt_type == RTN_UNICAST || rt->fl.iif == 0) {
                int err = arp_bind_neighbour(&rt->u.dst);
                if (err) {
-                       spin_unlock_bh(&rt_hash_table[hash].lock);
+                       spin_unlock_bh(rt_hash_lock_addr(hash));
 
                        if (err != -ENOBUFS) {
                                rt_drop(rt);
@@ -888,14 +1032,14 @@ restart:
        }
 #endif
        rt_hash_table[hash].chain = rt;
-       spin_unlock_bh(&rt_hash_table[hash].lock);
+       spin_unlock_bh(rt_hash_lock_addr(hash));
        *rp = rt;
        return 0;
 }
 
 void rt_bind_peer(struct rtable *rt, int create)
 {
-       static spinlock_t rt_peer_lock = SPIN_LOCK_UNLOCKED;
+       static DEFINE_SPINLOCK(rt_peer_lock);
        struct inet_peer *peer;
 
        peer = inet_getpeer(rt->rt_dst, create);
@@ -919,7 +1063,7 @@ void rt_bind_peer(struct rtable *rt, int create)
  */
 static void ip_select_fb_ident(struct iphdr *iph)
 {
-       static spinlock_t ip_fb_id_lock = SPIN_LOCK_UNLOCKED;
+       static DEFINE_SPINLOCK(ip_fb_id_lock);
        static u32 ip_fallback_id;
        u32 salt;
 
@@ -946,7 +1090,8 @@ void __ip_select_ident(struct iphdr *iph, struct dst_entry *dst, int more)
                        return;
                }
        } else
-               printk(KERN_DEBUG "rt_bind_peer(0) @%p\n", NET_CALLER(iph));
+               printk(KERN_DEBUG "rt_bind_peer(0) @%p\n", 
+                      __builtin_return_address(0));
 
        ip_select_fb_ident(iph);
 }
@@ -955,7 +1100,7 @@ static void rt_del(unsigned hash, struct rtable *rt)
 {
        struct rtable **rthp;
 
-       spin_lock_bh(&rt_hash_table[hash].lock);
+       spin_lock_bh(rt_hash_lock_addr(hash));
        ip_rt_put(rt);
        for (rthp = &rt_hash_table[hash].chain; *rthp;
             rthp = &(*rthp)->u.rt_next)
@@ -964,11 +1109,11 @@ static void rt_del(unsigned hash, struct rtable *rt)
                        rt_free(rt);
                        break;
                }
-       spin_unlock_bh(&rt_hash_table[hash].lock);
+       spin_unlock_bh(rt_hash_lock_addr(hash));
 }
 
 void ip_rt_redirect(u32 old_gw, u32 daddr, u32 new_gw,
-                   u32 saddr, u8 tos, struct net_device *dev)
+                   u32 saddr, struct net_device *dev)
 {
        int i, k;
        struct in_device *in_dev = in_dev_get(dev);
@@ -976,8 +1121,6 @@ void ip_rt_redirect(u32 old_gw, u32 daddr, u32 new_gw,
        u32  skeys[2] = { saddr, 0 };
        int  ikeys[2] = { dev->ifindex, 0 };
 
-       tos &= IPTOS_RT_MASK;
-
        if (!in_dev)
                return;
 
@@ -998,19 +1141,16 @@ void ip_rt_redirect(u32 old_gw, u32 daddr, u32 new_gw,
        for (i = 0; i < 2; i++) {
                for (k = 0; k < 2; k++) {
                        unsigned hash = rt_hash_code(daddr,
-                                                    skeys[i] ^ (ikeys[k] << 5),
-                                                    tos);
+                                                    skeys[i] ^ (ikeys[k] << 5));
 
                        rthp=&rt_hash_table[hash].chain;
 
                        rcu_read_lock();
-                       while ((rth = *rthp) != NULL) {
+                       while ((rth = rcu_dereference(*rthp)) != NULL) {
                                struct rtable *rt;
 
-                               smp_read_barrier_depends();
                                if (rth->fl.fl4_dst != daddr ||
                                    rth->fl.fl4_src != skeys[i] ||
-                                   rth->fl.fl4_tos != tos ||
                                    rth->fl.oif != ikeys[k] ||
                                    rth->fl.iif != 0) {
                                        rthp = &rth->u.rt_next;
@@ -1090,10 +1230,9 @@ reject_redirect:
        if (IN_DEV_LOG_MARTIANS(in_dev) && net_ratelimit())
                printk(KERN_INFO "Redirect from %u.%u.%u.%u on %s about "
                        "%u.%u.%u.%u ignored.\n"
-                       "  Advised path = %u.%u.%u.%u -> %u.%u.%u.%u, "
-                       "tos %02x\n",
+                       "  Advised path = %u.%u.%u.%u -> %u.%u.%u.%u\n",
                       NIPQUAD(old_gw), dev->name, NIPQUAD(new_gw),
-                      NIPQUAD(saddr), NIPQUAD(daddr), tos);
+                      NIPQUAD(saddr), NIPQUAD(daddr));
 #endif
        in_dev_put(in_dev);
 }
@@ -1111,8 +1250,7 @@ static struct dst_entry *ipv4_negative_advice(struct dst_entry *dst)
                           rt->u.dst.expires) {
                        unsigned hash = rt_hash_code(rt->fl.fl4_dst,
                                                     rt->fl.fl4_src ^
-                                                       (rt->fl.oif << 5),
-                                                    rt->fl.fl4_tos);
+                                                       (rt->fl.oif << 5));
 #if RT_CACHE_DEBUG >= 1
                        printk(KERN_DEBUG "ip_rt_advice: redirect to "
                                          "%u.%u.%u.%u/%02x dropped\n",
@@ -1229,7 +1367,7 @@ out:      kfree_skb(skb);
  *     are needed for AMPRnet AX.25 paths.
  */
 
-static unsigned short mtu_plateau[] =
+static const unsigned short mtu_plateau[] =
 {32000, 17914, 8166, 4352, 2002, 1492, 576, 296, 216, 128 };
 
 static __inline__ unsigned short guess_mtu(unsigned short old_mtu)
@@ -1249,24 +1387,21 @@ unsigned short ip_rt_frag_needed(struct iphdr *iph, unsigned short new_mtu)
        struct rtable *rth;
        u32  skeys[2] = { iph->saddr, 0, };
        u32  daddr = iph->daddr;
-       u8   tos = iph->tos & IPTOS_RT_MASK;
        unsigned short est_mtu = 0;
 
        if (ipv4_config.no_pmtu_disc)
                return 0;
 
        for (i = 0; i < 2; i++) {
-               unsigned hash = rt_hash_code(daddr, skeys[i], tos);
+               unsigned hash = rt_hash_code(daddr, skeys[i]);
 
                rcu_read_lock();
-               for (rth = rt_hash_table[hash].chain; rth;
-                    rth = rth->u.rt_next) {
-                       smp_read_barrier_depends();
+               for (rth = rcu_dereference(rt_hash_table[hash].chain); rth;
+                    rth = rcu_dereference(rth->u.rt_next)) {
                        if (rth->fl.fl4_dst == daddr &&
                            rth->fl.fl4_src == skeys[i] &&
                            rth->rt_dst  == daddr &&
                            rth->rt_src  == iph->saddr &&
-                           rth->fl.fl4_tos == tos &&
                            rth->fl.iif == 0 &&
                            !(dst_metric_locked(&rth->u.dst, RTAX_MTU))) {
                                unsigned short mtu = new_mtu;
@@ -1317,7 +1452,6 @@ static void ip_rt_update_pmtu(struct dst_entry *dst, u32 mtu)
 
 static struct dst_entry *ipv4_dst_check(struct dst_entry *dst, u32 cookie)
 {
-       dst_release(dst);
        return NULL;
 }
 
@@ -1338,13 +1472,17 @@ static void ipv4_dst_destroy(struct dst_entry *dst)
        }
 }
 
-static void ipv4_dst_ifdown(struct dst_entry *dst, int how)
+static void ipv4_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
+                           int how)
 {
        struct rtable *rt = (struct rtable *) dst;
        struct in_device *idev = rt->idev;
-       if (idev) {
-               rt->idev = NULL;
-               in_dev_put(idev);
+       if (dev != &loopback_dev && idev && idev->dev == dev) {
+               struct in_device *loopback_idev = in_dev_get(&loopback_dev);
+               if (loopback_idev) {
+                       rt->idev = loopback_idev;
+                       in_dev_put(idev);
+               }
        }
 }
 
@@ -1359,10 +1497,8 @@ static void ipv4_link_failure(struct sk_buff *skb)
                dst_set_expires(&rt->u.dst, 0);
 }
 
-static int ip_rt_bug(struct sk_buff **pskb)
+static int ip_rt_bug(struct sk_buff *skb)
 {
-       struct sk_buff *skb = *pskb;
-
        printk(KERN_DEBUG "ip_rt_bug: %u.%u.%u.%u -> %u.%u.%u.%u, %s\n",
                NIPQUAD(skb->nh.iph->saddr), NIPQUAD(skb->nh.iph->daddr),
                skb->dev ? skb->dev->name : "?");
@@ -1387,13 +1523,7 @@ void ip_rt_get_source(u8 *addr, struct rtable *rt)
        if (rt->fl.iif == 0)
                src = rt->rt_src;
        else if (fib_lookup(&rt->fl, &res) == 0) {
-#ifdef CONFIG_IP_ROUTE_NAT
-               if (res.type == RTN_NAT)
-                       src = inet_select_addr(rt->u.dst.dev, rt->rt_gateway,
-                                               RT_SCOPE_UNIVERSE);
-               else
-#endif
-                       src = FIB_RES_PREFSRC(res);
+               src = FIB_RES_PREFSRC(res);
                fib_res_put(&res);
        } else
                src = inet_select_addr(rt->u.dst.dev, rt->rt_gateway,
@@ -1497,10 +1627,6 @@ static int ip_route_input_mc(struct sk_buff *skb, u32 daddr, u32 saddr,
 #endif
        rth->fl.fl4_src = saddr;
        rth->rt_src     = saddr;
-#ifdef CONFIG_IP_ROUTE_NAT
-       rth->rt_dst_map = daddr;
-       rth->rt_src_map = saddr;
-#endif
 #ifdef CONFIG_NET_CLS_ROUTE
        rth->u.dst.tclassid = itag;
 #endif
@@ -1526,7 +1652,7 @@ static int ip_route_input_mc(struct sk_buff *skb, u32 daddr, u32 saddr,
        RT_CACHE_STAT_INC(in_slow_mc);
 
        in_dev_put(in_dev);
-       hash = rt_hash_code(daddr, saddr ^ (dev->ifindex << 5), tos);
+       hash = rt_hash_code(daddr, saddr ^ (dev->ifindex << 5));
        return rt_intern_hash(hash, rth, (struct rtable**) &skb->dst);
 
 e_nobufs:
@@ -1538,6 +1664,220 @@ e_inval:
        return -EINVAL;
 }
 
+
+static void ip_handle_martian_source(struct net_device *dev,
+                                    struct in_device *in_dev,
+                                    struct sk_buff *skb,
+                                    u32 daddr,
+                                    u32 saddr) 
+{
+       RT_CACHE_STAT_INC(in_martian_src);
+#ifdef CONFIG_IP_ROUTE_VERBOSE
+       if (IN_DEV_LOG_MARTIANS(in_dev) && net_ratelimit()) {
+               /*
+                *      RFC1812 recommendation, if source is martian,
+                *      the only hint is MAC header.
+                */
+               printk(KERN_WARNING "martian source %u.%u.%u.%u from "
+                       "%u.%u.%u.%u, on dev %s\n",
+                       NIPQUAD(daddr), NIPQUAD(saddr), dev->name);
+               if (dev->hard_header_len && skb->mac.raw) {
+                       int i;
+                       unsigned char *p = skb->mac.raw;
+                       printk(KERN_WARNING "ll header: ");
+                       for (i = 0; i < dev->hard_header_len; i++, p++) {
+                               printk("%02x", *p);
+                               if (i < (dev->hard_header_len - 1))
+                                       printk(":");
+                       }
+                       printk("\n");
+               }
+       }
+#endif
+}
+
+static inline int __mkroute_input(struct sk_buff *skb, 
+                                 struct fib_result* res, 
+                                 struct in_device *in_dev, 
+                                 u32 daddr, u32 saddr, u32 tos, 
+                                 struct rtable **result) 
+{
+
+       struct rtable *rth;
+       int err;
+       struct in_device *out_dev;
+       unsigned flags = 0;
+       u32 spec_dst, itag;
+
+       /* get a working reference to the output device */
+       out_dev = in_dev_get(FIB_RES_DEV(*res));
+       if (out_dev == NULL) {
+               if (net_ratelimit())
+                       printk(KERN_CRIT "Bug in ip_route_input" \
+                              "_slow(). Please, report\n");
+               return -EINVAL;
+       }
+
+
+       err = fib_validate_source(saddr, daddr, tos, FIB_RES_OIF(*res), 
+                                 in_dev->dev, &spec_dst, &itag);
+       if (err < 0) {
+               ip_handle_martian_source(in_dev->dev, in_dev, skb, daddr, 
+                                        saddr);
+               
+               err = -EINVAL;
+               goto cleanup;
+       }
+
+       if (err)
+               flags |= RTCF_DIRECTSRC;
+
+       if (out_dev == in_dev && err && !(flags & (RTCF_NAT | RTCF_MASQ)) &&
+           (IN_DEV_SHARED_MEDIA(out_dev) ||
+            inet_addr_onlink(out_dev, saddr, FIB_RES_GW(*res))))
+               flags |= RTCF_DOREDIRECT;
+
+       if (skb->protocol != htons(ETH_P_IP)) {
+               /* Not IP (i.e. ARP). Do not create route, if it is
+                * invalid for proxy arp. DNAT routes are always valid.
+                */
+               if (out_dev == in_dev && !(flags & RTCF_DNAT)) {
+                       err = -EINVAL;
+                       goto cleanup;
+               }
+       }
+
+
+       rth = dst_alloc(&ipv4_dst_ops);
+       if (!rth) {
+               err = -ENOBUFS;
+               goto cleanup;
+       }
+
+       atomic_set(&rth->u.dst.__refcnt, 1);
+       rth->u.dst.flags= DST_HOST;
+#ifdef CONFIG_IP_ROUTE_MULTIPATH_CACHED
+       if (res->fi->fib_nhs > 1)
+               rth->u.dst.flags |= DST_BALANCED;
+#endif
+       if (in_dev->cnf.no_policy)
+               rth->u.dst.flags |= DST_NOPOLICY;
+       if (in_dev->cnf.no_xfrm)
+               rth->u.dst.flags |= DST_NOXFRM;
+       rth->fl.fl4_dst = daddr;
+       rth->rt_dst     = daddr;
+       rth->fl.fl4_tos = tos;
+#ifdef CONFIG_IP_ROUTE_FWMARK
+       rth->fl.fl4_fwmark= skb->nfmark;
+#endif
+       rth->fl.fl4_src = saddr;
+       rth->rt_src     = saddr;
+       rth->rt_gateway = daddr;
+       rth->rt_iif     =
+               rth->fl.iif     = in_dev->dev->ifindex;
+       rth->u.dst.dev  = (out_dev)->dev;
+       dev_hold(rth->u.dst.dev);
+       rth->idev       = in_dev_get(rth->u.dst.dev);
+       rth->fl.oif     = 0;
+       rth->rt_spec_dst= spec_dst;
+
+       rth->u.dst.input = ip_forward;
+       rth->u.dst.output = ip_output;
+
+       rt_set_nexthop(rth, res, itag);
+
+       rth->rt_flags = flags;
+
+       *result = rth;
+       err = 0;
+ cleanup:
+       /* release the working reference to the output device */
+       in_dev_put(out_dev);
+       return err;
+}                                              
+
+static inline int ip_mkroute_input_def(struct sk_buff *skb, 
+                                      struct fib_result* res, 
+                                      const struct flowi *fl,
+                                      struct in_device *in_dev,
+                                      u32 daddr, u32 saddr, u32 tos)
+{
+       struct rtable* rth = NULL;
+       int err;
+       unsigned hash;
+
+#ifdef CONFIG_IP_ROUTE_MULTIPATH
+       if (res->fi && res->fi->fib_nhs > 1 && fl->oif == 0)
+               fib_select_multipath(fl, res);
+#endif
+
+       /* create a routing cache entry */
+       err = __mkroute_input(skb, res, in_dev, daddr, saddr, tos, &rth);
+       if (err)
+               return err;
+
+       /* put it into the cache */
+       hash = rt_hash_code(daddr, saddr ^ (fl->iif << 5));
+       return rt_intern_hash(hash, rth, (struct rtable**)&skb->dst);   
+}
+
+static inline int ip_mkroute_input(struct sk_buff *skb, 
+                                  struct fib_result* res, 
+                                  const struct flowi *fl,
+                                  struct in_device *in_dev,
+                                  u32 daddr, u32 saddr, u32 tos)
+{
+#ifdef CONFIG_IP_ROUTE_MULTIPATH_CACHED
+       struct rtable* rth = NULL, *rtres;
+       unsigned char hop, hopcount;
+       int err = -EINVAL;
+       unsigned int hash;
+
+       if (res->fi)
+               hopcount = res->fi->fib_nhs;
+       else
+               hopcount = 1;
+
+       /* distinguish between multipath and singlepath */
+       if (hopcount < 2)
+               return ip_mkroute_input_def(skb, res, fl, in_dev, daddr,
+                                           saddr, tos);
+       
+       /* add all alternatives to the routing cache */
+       for (hop = 0; hop < hopcount; hop++) {
+               res->nh_sel = hop;
+
+               /* put reference to previous result */
+               if (hop)
+                       ip_rt_put(rtres);
+
+               /* create a routing cache entry */
+               err = __mkroute_input(skb, res, in_dev, daddr, saddr, tos,
+                                     &rth);
+               if (err)
+                       return err;
+
+               /* put it into the cache */
+               hash = rt_hash_code(daddr, saddr ^ (fl->iif << 5));
+               err = rt_intern_hash(hash, rth, &rtres);
+               if (err)
+                       return err;
+
+               /* forward hop information to multipath impl. */
+               multipath_set_nhinfo(rth,
+                                    FIB_RES_NETWORK(*res),
+                                    FIB_RES_NETMASK(*res),
+                                    res->prefixlen,
+                                    &FIB_RES_NH(*res));
+       }
+       skb->dst = &rtres->u.dst;
+       return err;
+#else /* CONFIG_IP_ROUTE_MULTIPATH_CACHED  */
+       return ip_mkroute_input_def(skb, res, fl, in_dev, daddr, saddr, tos);
+#endif /* CONFIG_IP_ROUTE_MULTIPATH_CACHED  */
+}
+
+
 /*
  *     NOTE. We drop all the packets that has local source
  *     addresses, because every properly looped back packet
@@ -1549,11 +1889,10 @@ e_inval:
  */
 
 static int ip_route_input_slow(struct sk_buff *skb, u32 daddr, u32 saddr,
-                       u8 tos, struct net_device *dev)
+                              u8 tos, struct net_device *dev)
 {
        struct fib_result res;
        struct in_device *in_dev = in_dev_get(dev);
-       struct in_device *out_dev = NULL;
        struct flowi fl = { .nl_u = { .ip4_u =
                                      { .daddr = daddr,
                                        .saddr = saddr,
@@ -1577,8 +1916,6 @@ static int ip_route_input_slow(struct sk_buff *skb, u32 daddr, u32 saddr,
        if (!in_dev)
                goto out;
 
-       hash = rt_hash_code(daddr, saddr ^ (fl.iif << 5), tos);
-
        /* Check for the most weird martians, which can be not detected
           by fib_lookup.
         */
@@ -1603,38 +1940,13 @@ static int ip_route_input_slow(struct sk_buff *skb, u32 daddr, u32 saddr,
         */
        if ((err = fib_lookup(&fl, &res)) != 0) {
                if (!IN_DEV_FORWARD(in_dev))
-                       goto e_inval;
+                       goto e_hostunreach;
                goto no_route;
        }
        free_res = 1;
 
        RT_CACHE_STAT_INC(in_slow_tot);
 
-#ifdef CONFIG_IP_ROUTE_NAT
-       /* Policy is applied before mapping destination,
-          but rerouting after map should be made with old source.
-        */
-
-       if (1) {
-               u32 src_map = saddr;
-               if (res.r)
-                       src_map = fib_rules_policy(saddr, &res, &flags);
-
-               if (res.type == RTN_NAT) {
-                       fl.fl4_dst = fib_rules_map_destination(daddr, &res);
-                       fib_res_put(&res);
-                       free_res = 0;
-                       if (fib_lookup(&fl, &res))
-                               goto e_inval;
-                       free_res = 1;
-                       if (res.type != RTN_UNICAST)
-                               goto e_inval;
-                       flags |= RTCF_DNAT;
-               }
-               fl.fl4_src = src_map;
-       }
-#endif
-
        if (res.type == RTN_BROADCAST)
                goto brd_input;
 
@@ -1652,53 +1964,51 @@ static int ip_route_input_slow(struct sk_buff *skb, u32 daddr, u32 saddr,
        }
 
        if (!IN_DEV_FORWARD(in_dev))
-               goto e_inval;
+               goto e_hostunreach;
        if (res.type != RTN_UNICAST)
                goto martian_destination;
 
-#ifdef CONFIG_IP_ROUTE_MULTIPATH
-       if (res.fi->fib_nhs > 1 && fl.oif == 0)
-               fib_select_multipath(&fl, &res);
-#endif
-       out_dev = in_dev_get(FIB_RES_DEV(res));
-       if (out_dev == NULL) {
-               if (net_ratelimit())
-                       printk(KERN_CRIT "Bug in ip_route_input_slow(). "
-                                        "Please, report\n");
+       err = ip_mkroute_input(skb, &res, &fl, in_dev, daddr, saddr, tos);
+       if (err == -ENOBUFS)
+               goto e_nobufs;
+       if (err == -EINVAL)
                goto e_inval;
-       }
-
-       err = fib_validate_source(saddr, daddr, tos, FIB_RES_OIF(res), dev,
-                                 &spec_dst, &itag);
-       if (err < 0)
-               goto martian_source;
-
-       if (err)
-               flags |= RTCF_DIRECTSRC;
+       
+done:
+       in_dev_put(in_dev);
+       if (free_res)
+               fib_res_put(&res);
+out:   return err;
 
-       if (out_dev == in_dev && err && !(flags & (RTCF_NAT | RTCF_MASQ)) &&
-           (IN_DEV_SHARED_MEDIA(out_dev) ||
-            inet_addr_onlink(out_dev, saddr, FIB_RES_GW(res))))
-               flags |= RTCF_DOREDIRECT;
+brd_input:
+       if (skb->protocol != htons(ETH_P_IP))
+               goto e_inval;
 
-       if (skb->protocol != htons(ETH_P_IP)) {
-               /* Not IP (i.e. ARP). Do not create route, if it is
-                * invalid for proxy arp. DNAT routes are always valid.
-                */
-               if (out_dev == in_dev && !(flags & RTCF_DNAT))
-                       goto e_inval;
+       if (ZERONET(saddr))
+               spec_dst = inet_select_addr(dev, 0, RT_SCOPE_LINK);
+       else {
+               err = fib_validate_source(saddr, 0, tos, 0, dev, &spec_dst,
+                                         &itag);
+               if (err < 0)
+                       goto martian_source;
+               if (err)
+                       flags |= RTCF_DIRECTSRC;
        }
+       flags |= RTCF_BROADCAST;
+       res.type = RTN_BROADCAST;
+       RT_CACHE_STAT_INC(in_brd);
 
+local_input:
        rth = dst_alloc(&ipv4_dst_ops);
        if (!rth)
                goto e_nobufs;
 
+       rth->u.dst.output= ip_rt_bug;
+
        atomic_set(&rth->u.dst.__refcnt, 1);
        rth->u.dst.flags= DST_HOST;
        if (in_dev->cnf.no_policy)
                rth->u.dst.flags |= DST_NOPOLICY;
-       if (in_dev->cnf.no_xfrm)
-               rth->u.dst.flags |= DST_NOXFRM;
        rth->fl.fl4_dst = daddr;
        rth->rt_dst     = daddr;
        rth->fl.fl4_tos = tos;
@@ -1707,88 +2017,15 @@ static int ip_route_input_slow(struct sk_buff *skb, u32 daddr, u32 saddr,
 #endif
        rth->fl.fl4_src = saddr;
        rth->rt_src     = saddr;
-       rth->rt_gateway = daddr;
-#ifdef CONFIG_IP_ROUTE_NAT
-       rth->rt_src_map = fl.fl4_src;
-       rth->rt_dst_map = fl.fl4_dst;
-       if (flags&RTCF_DNAT)
-               rth->rt_gateway = fl.fl4_dst;
+#ifdef CONFIG_NET_CLS_ROUTE
+       rth->u.dst.tclassid = itag;
 #endif
-       rth->rt_iif     =
+       rth->rt_iif     =
        rth->fl.iif     = dev->ifindex;
-       rth->u.dst.dev  = out_dev->dev;
+       rth->u.dst.dev  = &loopback_dev;
        dev_hold(rth->u.dst.dev);
        rth->idev       = in_dev_get(rth->u.dst.dev);
-       rth->fl.oif     = 0;
-       rth->rt_spec_dst= spec_dst;
-
-       rth->u.dst.input = ip_forward;
-       rth->u.dst.output = ip_output;
-
-       rt_set_nexthop(rth, &res, itag);
-
-       rth->rt_flags = flags;
-
-intern:
-       err = rt_intern_hash(hash, rth, (struct rtable**)&skb->dst);
-done:
-       in_dev_put(in_dev);
-       if (out_dev)
-               in_dev_put(out_dev);
-       if (free_res)
-               fib_res_put(&res);
-out:   return err;
-
-brd_input:
-       if (skb->protocol != htons(ETH_P_IP))
-               goto e_inval;
-
-       if (ZERONET(saddr))
-               spec_dst = inet_select_addr(dev, 0, RT_SCOPE_LINK);
-       else {
-               err = fib_validate_source(saddr, 0, tos, 0, dev, &spec_dst,
-                                         &itag);
-               if (err < 0)
-                       goto martian_source;
-               if (err)
-                       flags |= RTCF_DIRECTSRC;
-       }
-       flags |= RTCF_BROADCAST;
-       res.type = RTN_BROADCAST;
-       RT_CACHE_STAT_INC(in_brd);
-
-local_input:
-       rth = dst_alloc(&ipv4_dst_ops);
-       if (!rth)
-               goto e_nobufs;
-
-       rth->u.dst.output= ip_rt_bug;
-
-       atomic_set(&rth->u.dst.__refcnt, 1);
-       rth->u.dst.flags= DST_HOST;
-       if (in_dev->cnf.no_policy)
-               rth->u.dst.flags |= DST_NOPOLICY;
-       rth->fl.fl4_dst = daddr;
-       rth->rt_dst     = daddr;
-       rth->fl.fl4_tos = tos;
-#ifdef CONFIG_IP_ROUTE_FWMARK
-       rth->fl.fl4_fwmark= skb->nfmark;
-#endif
-       rth->fl.fl4_src = saddr;
-       rth->rt_src     = saddr;
-#ifdef CONFIG_IP_ROUTE_NAT
-       rth->rt_dst_map = fl.fl4_dst;
-       rth->rt_src_map = fl.fl4_src;
-#endif
-#ifdef CONFIG_NET_CLS_ROUTE
-       rth->u.dst.tclassid = itag;
-#endif
-       rth->rt_iif     =
-       rth->fl.iif     = dev->ifindex;
-       rth->u.dst.dev  = &loopback_dev;
-       dev_hold(rth->u.dst.dev);
-       rth->idev       = in_dev_get(rth->u.dst.dev);
-       rth->rt_gateway = daddr;
+       rth->rt_gateway = daddr;
        rth->rt_spec_dst= spec_dst;
        rth->u.dst.input= ip_local_deliver;
        rth->rt_flags   = flags|RTCF_LOCAL;
@@ -1798,7 +2035,9 @@ local_input:
                rth->rt_flags   &= ~RTCF_LOCAL;
        }
        rth->rt_type    = res.type;
-       goto intern;
+       hash = rt_hash_code(daddr, saddr ^ (fl.iif << 5));
+       err = rt_intern_hash(hash, rth, (struct rtable**)&skb->dst);
+       goto done;
 
 no_route:
        RT_CACHE_STAT_INC(in_no_route);
@@ -1817,6 +2056,11 @@ martian_destination:
                        "%u.%u.%u.%u, dev %s\n",
                        NIPQUAD(daddr), NIPQUAD(saddr), dev->name);
 #endif
+
+e_hostunreach:
+        err = -EHOSTUNREACH;
+        goto done;
+
 e_inval:
        err = -EINVAL;
        goto done;
@@ -1826,30 +2070,7 @@ e_nobufs:
        goto done;
 
 martian_source:
-
-       RT_CACHE_STAT_INC(in_martian_src);
-#ifdef CONFIG_IP_ROUTE_VERBOSE
-       if (IN_DEV_LOG_MARTIANS(in_dev) && net_ratelimit()) {
-               /*
-                *      RFC1812 recommendation, if source is martian,
-                *      the only hint is MAC header.
-                */
-               printk(KERN_WARNING "martian source %u.%u.%u.%u from "
-                       "%u.%u.%u.%u, on dev %s\n",
-                       NIPQUAD(daddr), NIPQUAD(saddr), dev->name);
-               if (dev->hard_header_len) {
-                       int i;
-                       unsigned char *p = skb->mac.raw;
-                       printk(KERN_WARNING "ll header: ");
-                       for (i = 0; i < dev->hard_header_len; i++, p++) {
-                               printk("%02x", *p);
-                               if (i < (dev->hard_header_len - 1))
-                                       printk(":");
-                       }
-                       printk("\n");
-               }
-       }
-#endif
+       ip_handle_martian_source(dev, in_dev, skb, daddr, saddr);
        goto e_inval;
 }
 
@@ -1861,11 +2082,11 @@ int ip_route_input(struct sk_buff *skb, u32 daddr, u32 saddr,
        int iif = dev->ifindex;
 
        tos &= IPTOS_RT_MASK;
-       hash = rt_hash_code(daddr, saddr ^ (iif << 5), tos);
+       hash = rt_hash_code(daddr, saddr ^ (iif << 5));
 
        rcu_read_lock();
-       for (rth = rt_hash_table[hash].chain; rth; rth = rth->u.rt_next) {
-               smp_read_barrier_depends();
+       for (rth = rcu_dereference(rt_hash_table[hash].chain); rth;
+            rth = rcu_dereference(rth->u.rt_next)) {
                if (rth->fl.fl4_dst == daddr &&
                    rth->fl.fl4_src == saddr &&
                    rth->fl.iif == iif &&
@@ -1900,8 +2121,8 @@ int ip_route_input(struct sk_buff *skb, u32 daddr, u32 saddr,
        if (MULTICAST(daddr)) {
                struct in_device *in_dev;
 
-               read_lock(&inetdev_lock);
-               if ((in_dev = __in_dev_get(dev)) != NULL) {
+               rcu_read_lock();
+               if ((in_dev = __in_dev_get_rcu(dev)) != NULL) {
                        int our = ip_check_mc(in_dev, daddr, saddr,
                                skb->nh.iph->protocol);
                        if (our
@@ -1909,24 +2130,234 @@ int ip_route_input(struct sk_buff *skb, u32 daddr, u32 saddr,
                            || (!LOCAL_MCAST(daddr) && IN_DEV_MFORWARD(in_dev))
 #endif
                            ) {
-                               read_unlock(&inetdev_lock);
+                               rcu_read_unlock();
                                return ip_route_input_mc(skb, daddr, saddr,
                                                         tos, dev, our);
                        }
                }
-               read_unlock(&inetdev_lock);
+               rcu_read_unlock();
                return -EINVAL;
        }
        return ip_route_input_slow(skb, daddr, saddr, tos, dev);
 }
 
+static inline int __mkroute_output(struct rtable **result,
+                                  struct fib_result* res, 
+                                  const struct flowi *fl,
+                                  const struct flowi *oldflp, 
+                                  struct net_device *dev_out, 
+                                  unsigned flags) 
+{
+       struct rtable *rth;
+       struct in_device *in_dev;
+       u32 tos = RT_FL_TOS(oldflp);
+       int err = 0;
+
+       if (LOOPBACK(fl->fl4_src) && !(dev_out->flags&IFF_LOOPBACK))
+               return -EINVAL;
+
+       if (fl->fl4_dst == 0xFFFFFFFF)
+               res->type = RTN_BROADCAST;
+       else if (MULTICAST(fl->fl4_dst))
+               res->type = RTN_MULTICAST;
+       else if (BADCLASS(fl->fl4_dst) || ZERONET(fl->fl4_dst))
+               return -EINVAL;
+
+       if (dev_out->flags & IFF_LOOPBACK)
+               flags |= RTCF_LOCAL;
+
+       /* get work reference to inet device */
+       in_dev = in_dev_get(dev_out);
+       if (!in_dev)
+               return -EINVAL;
+
+       if (res->type == RTN_BROADCAST) {
+               flags |= RTCF_BROADCAST | RTCF_LOCAL;
+               if (res->fi) {
+                       fib_info_put(res->fi);
+                       res->fi = NULL;
+               }
+       } else if (res->type == RTN_MULTICAST) {
+               flags |= RTCF_MULTICAST|RTCF_LOCAL;
+               if (!ip_check_mc(in_dev, oldflp->fl4_dst, oldflp->fl4_src, 
+                                oldflp->proto))
+                       flags &= ~RTCF_LOCAL;
+               /* If multicast route do not exist use
+                  default one, but do not gateway in this case.
+                  Yes, it is hack.
+                */
+               if (res->fi && res->prefixlen < 4) {
+                       fib_info_put(res->fi);
+                       res->fi = NULL;
+               }
+       }
+
+
+       rth = dst_alloc(&ipv4_dst_ops);
+       if (!rth) {
+               err = -ENOBUFS;
+               goto cleanup;
+       }               
+
+       atomic_set(&rth->u.dst.__refcnt, 1);
+       rth->u.dst.flags= DST_HOST;
+#ifdef CONFIG_IP_ROUTE_MULTIPATH_CACHED
+       if (res->fi) {
+               rth->rt_multipath_alg = res->fi->fib_mp_alg;
+               if (res->fi->fib_nhs > 1)
+                       rth->u.dst.flags |= DST_BALANCED;
+       }
+#endif
+       if (in_dev->cnf.no_xfrm)
+               rth->u.dst.flags |= DST_NOXFRM;
+       if (in_dev->cnf.no_policy)
+               rth->u.dst.flags |= DST_NOPOLICY;
+
+       rth->fl.fl4_dst = oldflp->fl4_dst;
+       rth->fl.fl4_tos = tos;
+       rth->fl.fl4_src = oldflp->fl4_src;
+       rth->fl.oif     = oldflp->oif;
+#ifdef CONFIG_IP_ROUTE_FWMARK
+       rth->fl.fl4_fwmark= oldflp->fl4_fwmark;
+#endif
+       rth->rt_dst     = fl->fl4_dst;
+       rth->rt_src     = fl->fl4_src;
+       rth->rt_iif     = oldflp->oif ? : dev_out->ifindex;
+       /* get references to the devices that are to be hold by the routing 
+          cache entry */
+       rth->u.dst.dev  = dev_out;
+       dev_hold(dev_out);
+       rth->idev       = in_dev_get(dev_out);
+       rth->rt_gateway = fl->fl4_dst;
+       rth->rt_spec_dst= fl->fl4_src;
+
+       rth->u.dst.output=ip_output;
+
+       RT_CACHE_STAT_INC(out_slow_tot);
+
+       if (flags & RTCF_LOCAL) {
+               rth->u.dst.input = ip_local_deliver;
+               rth->rt_spec_dst = fl->fl4_dst;
+       }
+       if (flags & (RTCF_BROADCAST | RTCF_MULTICAST)) {
+               rth->rt_spec_dst = fl->fl4_src;
+               if (flags & RTCF_LOCAL && 
+                   !(dev_out->flags & IFF_LOOPBACK)) {
+                       rth->u.dst.output = ip_mc_output;
+                       RT_CACHE_STAT_INC(out_slow_mc);
+               }
+#ifdef CONFIG_IP_MROUTE
+               if (res->type == RTN_MULTICAST) {
+                       if (IN_DEV_MFORWARD(in_dev) &&
+                           !LOCAL_MCAST(oldflp->fl4_dst)) {
+                               rth->u.dst.input = ip_mr_input;
+                               rth->u.dst.output = ip_mc_output;
+                       }
+               }
+#endif
+       }
+
+       rt_set_nexthop(rth, res, 0);
+
+       rth->rt_flags = flags;
+
+       *result = rth;
+ cleanup:
+       /* release work reference to inet device */
+       in_dev_put(in_dev);
+
+       return err;
+}
+
+static inline int ip_mkroute_output_def(struct rtable **rp,
+                                       struct fib_result* res,
+                                       const struct flowi *fl,
+                                       const struct flowi *oldflp,
+                                       struct net_device *dev_out,
+                                       unsigned flags)
+{
+       struct rtable *rth = NULL;
+       int err = __mkroute_output(&rth, res, fl, oldflp, dev_out, flags);
+       unsigned hash;
+       if (err == 0) {
+               hash = rt_hash_code(oldflp->fl4_dst, 
+                                   oldflp->fl4_src ^ (oldflp->oif << 5));
+               err = rt_intern_hash(hash, rth, rp);
+       }
+       
+       return err;
+}
+
+static inline int ip_mkroute_output(struct rtable** rp,
+                                   struct fib_result* res,
+                                   const struct flowi *fl,
+                                   const struct flowi *oldflp,
+                                   struct net_device *dev_out,
+                                   unsigned flags)
+{
+#ifdef CONFIG_IP_ROUTE_MULTIPATH_CACHED
+       unsigned char hop;
+       unsigned hash;
+       int err = -EINVAL;
+       struct rtable *rth = NULL;
+
+       if (res->fi && res->fi->fib_nhs > 1) {
+               unsigned char hopcount = res->fi->fib_nhs;
+
+               for (hop = 0; hop < hopcount; hop++) {
+                       struct net_device *dev2nexthop;
+
+                       res->nh_sel = hop;
+
+                       /* hold a work reference to the output device */
+                       dev2nexthop = FIB_RES_DEV(*res);
+                       dev_hold(dev2nexthop);
+
+                       /* put reference to previous result */
+                       if (hop)
+                               ip_rt_put(*rp);
+
+                       err = __mkroute_output(&rth, res, fl, oldflp,
+                                              dev2nexthop, flags);
+
+                       if (err != 0)
+                               goto cleanup;
+
+                       hash = rt_hash_code(oldflp->fl4_dst, 
+                                           oldflp->fl4_src ^
+                                           (oldflp->oif << 5));
+                       err = rt_intern_hash(hash, rth, rp);
+
+                       /* forward hop information to multipath impl. */
+                       multipath_set_nhinfo(rth,
+                                            FIB_RES_NETWORK(*res),
+                                            FIB_RES_NETMASK(*res),
+                                            res->prefixlen,
+                                            &FIB_RES_NH(*res));
+               cleanup:
+                       /* release work reference to output device */
+                       dev_put(dev2nexthop);
+
+                       if (err != 0)
+                               return err;
+               }
+               return err;
+       } else {
+               return ip_mkroute_output_def(rp, res, fl, oldflp, dev_out,
+                                            flags);
+       }
+#else /* CONFIG_IP_ROUTE_MULTIPATH_CACHED */
+       return ip_mkroute_output_def(rp, res, fl, oldflp, dev_out, flags);
+#endif
+}
+
 /*
  * Major route resolver routine.
  */
 
 static int ip_route_output_slow(struct rtable **rp, const struct flowi *oldflp)
 {
-       u32 tos = oldflp->fl4_tos & (IPTOS_RT_MASK | RTO_ONLINK);
+       u32 tos = RT_FL_TOS(oldflp);
        struct flowi fl = { .nl_u = { .ip4_u =
                                      { .daddr = oldflp->fl4_dst,
                                        .saddr = oldflp->fl4_src,
@@ -1942,13 +2373,11 @@ static int ip_route_output_slow(struct rtable **rp, const struct flowi *oldflp)
                            .oif = oldflp->oif };
        struct fib_result res;
        unsigned flags = 0;
-       struct rtable *rth;
        struct net_device *dev_out = NULL;
-       struct in_device *in_dev = NULL;
-       unsigned hash;
        int free_res = 0;
        int err;
 
+
        res.fi          = NULL;
 #ifdef CONFIG_IP_MULTIPLE_TABLES
        res.r           = NULL;
@@ -1998,12 +2427,16 @@ static int ip_route_output_slow(struct rtable **rp, const struct flowi *oldflp)
                        dev_put(dev_out);
                dev_out = NULL;
        }
+
+
        if (oldflp->oif) {
                dev_out = dev_get_by_index(oldflp->oif);
                err = -ENODEV;
                if (dev_out == NULL)
                        goto out;
-               if (__in_dev_get(dev_out) == NULL) {
+
+               /* RACE: Check return value of inet_select_addr instead. */
+               if (__in_dev_get_rtnl(dev_out) == NULL) {
                        dev_put(dev_out);
                        goto out;       /* Wrong error code */
                }
@@ -2072,9 +2505,6 @@ static int ip_route_output_slow(struct rtable **rp, const struct flowi *oldflp)
        }
        free_res = 1;
 
-       if (res.type == RTN_NAT)
-               goto e_inval;
-
        if (res.type == RTN_LOCAL) {
                if (!fl.fl4_src)
                        fl.fl4_src = fl.fl4_dst;
@@ -2107,121 +2537,16 @@ static int ip_route_output_slow(struct rtable **rp, const struct flowi *oldflp)
        dev_hold(dev_out);
        fl.oif = dev_out->ifindex;
 
-make_route:
-       if (LOOPBACK(fl.fl4_src) && !(dev_out->flags&IFF_LOOPBACK))
-               goto e_inval;
-
-       if (fl.fl4_dst == 0xFFFFFFFF)
-               res.type = RTN_BROADCAST;
-       else if (MULTICAST(fl.fl4_dst))
-               res.type = RTN_MULTICAST;
-       else if (BADCLASS(fl.fl4_dst) || ZERONET(fl.fl4_dst))
-               goto e_inval;
-
-       if (dev_out->flags & IFF_LOOPBACK)
-               flags |= RTCF_LOCAL;
 
-       in_dev = in_dev_get(dev_out);
-       if (!in_dev)
-               goto e_inval;
-
-       if (res.type == RTN_BROADCAST) {
-               flags |= RTCF_BROADCAST | RTCF_LOCAL;
-               if (res.fi) {
-                       fib_info_put(res.fi);
-                       res.fi = NULL;
-               }
-       } else if (res.type == RTN_MULTICAST) {
-               flags |= RTCF_MULTICAST|RTCF_LOCAL;
-               if (!ip_check_mc(in_dev, oldflp->fl4_dst, oldflp->fl4_src, oldflp->proto))
-                       flags &= ~RTCF_LOCAL;
-               /* If multicast route do not exist use
-                  default one, but do not gateway in this case.
-                  Yes, it is hack.
-                */
-               if (res.fi && res.prefixlen < 4) {
-                       fib_info_put(res.fi);
-                       res.fi = NULL;
-               }
-       }
-
-       rth = dst_alloc(&ipv4_dst_ops);
-       if (!rth)
-               goto e_nobufs;
-
-       atomic_set(&rth->u.dst.__refcnt, 1);
-       rth->u.dst.flags= DST_HOST;
-       if (in_dev->cnf.no_xfrm)
-               rth->u.dst.flags |= DST_NOXFRM;
-       if (in_dev->cnf.no_policy)
-               rth->u.dst.flags |= DST_NOPOLICY;
-       rth->fl.fl4_dst = oldflp->fl4_dst;
-       rth->fl.fl4_tos = tos;
-       rth->fl.fl4_src = oldflp->fl4_src;
-       rth->fl.oif     = oldflp->oif;
-#ifdef CONFIG_IP_ROUTE_FWMARK
-       rth->fl.fl4_fwmark= oldflp->fl4_fwmark;
-#endif
-       rth->rt_dst     = fl.fl4_dst;
-       rth->rt_src     = fl.fl4_src;
-#ifdef CONFIG_IP_ROUTE_NAT
-       rth->rt_dst_map = fl.fl4_dst;
-       rth->rt_src_map = fl.fl4_src;
-#endif
-       rth->rt_iif     = oldflp->oif ? : dev_out->ifindex;
-       rth->u.dst.dev  = dev_out;
-       dev_hold(dev_out);
-       rth->idev       = in_dev_get(dev_out);
-       rth->rt_gateway = fl.fl4_dst;
-       rth->rt_spec_dst= fl.fl4_src;
-
-       rth->u.dst.output=ip_output;
-
-       RT_CACHE_STAT_INC(out_slow_tot);
-
-       if (flags & RTCF_LOCAL) {
-               rth->u.dst.input = ip_local_deliver;
-               rth->rt_spec_dst = fl.fl4_dst;
-       }
-       if (flags & (RTCF_BROADCAST | RTCF_MULTICAST)) {
-               rth->rt_spec_dst = fl.fl4_src;
-               if (flags & RTCF_LOCAL && !(dev_out->flags & IFF_LOOPBACK)) {
-                       rth->u.dst.output = ip_mc_output;
-                       RT_CACHE_STAT_INC(out_slow_mc);
-               }
-#ifdef CONFIG_IP_MROUTE
-               if (res.type == RTN_MULTICAST) {
-                       if (IN_DEV_MFORWARD(in_dev) &&
-                           !LOCAL_MCAST(oldflp->fl4_dst)) {
-                               rth->u.dst.input = ip_mr_input;
-                               rth->u.dst.output = ip_mc_output;
-                       }
-               }
-#endif
-       }
-
-       rt_set_nexthop(rth, &res, 0);
-       
+make_route:
+       err = ip_mkroute_output(rp, &res, &fl, oldflp, dev_out, flags);
 
-       rth->rt_flags = flags;
 
-       hash = rt_hash_code(oldflp->fl4_dst, oldflp->fl4_src ^ (oldflp->oif << 5), tos);
-       err = rt_intern_hash(hash, rth, rp);
-done:
        if (free_res)
                fib_res_put(&res);
        if (dev_out)
                dev_put(dev_out);
-       if (in_dev)
-               in_dev_put(in_dev);
 out:   return err;
-
-e_inval:
-       err = -EINVAL;
-       goto done;
-e_nobufs:
-       err = -ENOBUFS;
-       goto done;
 }
 
 int __ip_route_output_key(struct rtable **rp, const struct flowi *flp)
@@ -2229,11 +2554,11 @@ int __ip_route_output_key(struct rtable **rp, const struct flowi *flp)
        unsigned hash;
        struct rtable *rth;
 
-       hash = rt_hash_code(flp->fl4_dst, flp->fl4_src ^ (flp->oif << 5), flp->fl4_tos);
+       hash = rt_hash_code(flp->fl4_dst, flp->fl4_src ^ (flp->oif << 5));
 
-       rcu_read_lock();
-       for (rth = rt_hash_table[hash].chain; rth; rth = rth->u.rt_next) {
-               smp_read_barrier_depends();
+       rcu_read_lock_bh();
+       for (rth = rcu_dereference(rt_hash_table[hash].chain); rth;
+               rth = rcu_dereference(rth->u.rt_next)) {
                if (rth->fl.fl4_dst == flp->fl4_dst &&
                    rth->fl.fl4_src == flp->fl4_src &&
                    rth->fl.iif == 0 &&
@@ -2243,41 +2568,61 @@ int __ip_route_output_key(struct rtable **rp, const struct flowi *flp)
 #endif
                    !((rth->fl.fl4_tos ^ flp->fl4_tos) &
                            (IPTOS_RT_MASK | RTO_ONLINK))) {
+
+                       /* check for multipath routes and choose one if
+                        * necessary
+                        */
+                       if (multipath_select_route(flp, rth, rp)) {
+                               dst_hold(&(*rp)->u.dst);
+                               RT_CACHE_STAT_INC(out_hit);
+                               rcu_read_unlock_bh();
+                               return 0;
+                       }
+
                        rth->u.dst.lastuse = jiffies;
                        dst_hold(&rth->u.dst);
                        rth->u.dst.__use++;
                        RT_CACHE_STAT_INC(out_hit);
-                       rcu_read_unlock();
+                       rcu_read_unlock_bh();
                        *rp = rth;
                        return 0;
                }
                RT_CACHE_STAT_INC(out_hlist_search);
        }
-       rcu_read_unlock();
+       rcu_read_unlock_bh();
 
        return ip_route_output_slow(rp, flp);
 }
 
-int ip_route_output_key(struct rtable **rp, struct flowi *flp)
+EXPORT_SYMBOL_GPL(__ip_route_output_key);
+
+int ip_route_output_flow(struct rtable **rp, struct flowi *flp, struct sock *sk, int flags)
 {
        int err;
 
        if ((err = __ip_route_output_key(rp, flp)) != 0)
                return err;
-       return flp->proto ? xfrm_lookup((struct dst_entry**)rp, flp, NULL, 0) : 0;
+
+       if (flp->proto) {
+               if (!flp->fl4_src)
+                       flp->fl4_src = (*rp)->rt_src;
+               if (!flp->fl4_dst)
+                       flp->fl4_dst = (*rp)->rt_dst;
+               return xfrm_lookup((struct dst_entry **)rp, flp, sk, flags);
+       }
+
+       return 0;
 }
 
-int ip_route_output_flow(struct rtable **rp, struct flowi *flp, struct sock *sk, int flags)
-{
-       int err;
+EXPORT_SYMBOL_GPL(ip_route_output_flow);
 
-       if ((err = __ip_route_output_key(rp, flp)) != 0)
-               return err;
-       return flp->proto ? xfrm_lookup((struct dst_entry**)rp, flp, sk, flags) : 0;
+int ip_route_output_key(struct rtable **rp, struct flowi *flp)
+{
+       return ip_route_output_flow(rp, flp, NULL, 0);
 }
 
 static int rt_fill_info(struct sk_buff *skb, u32 pid, u32 seq, int event,
-                       int nowait)
+                       int nowait, unsigned int flags)
 {
        struct rtable *rt = (struct rtable*)skb->dst;
        struct rtmsg *r;
@@ -2287,9 +2632,8 @@ static int rt_fill_info(struct sk_buff *skb, u32 pid, u32 seq, int event,
 #ifdef CONFIG_IP_MROUTE
        struct rtattr *eptr;
 #endif
-       nlh = NLMSG_PUT(skb, pid, seq, event, sizeof(*r));
+       nlh = NLMSG_NEW(skb, pid, seq, event, sizeof(*r), flags);
        r = NLMSG_DATA(nlh);
-       nlh->nlmsg_flags = (nowait && pid) ? NLM_F_MULTI : 0;
        r->rtm_family    = AF_INET;
        r->rtm_dst_len  = 32;
        r->rtm_src_len  = 0;
@@ -2311,6 +2655,13 @@ static int rt_fill_info(struct sk_buff *skb, u32 pid, u32 seq, int event,
 #ifdef CONFIG_NET_CLS_ROUTE
        if (rt->u.dst.tclassid)
                RTA_PUT(skb, RTA_FLOW, 4, &rt->u.dst.tclassid);
+#endif
+#ifdef CONFIG_IP_ROUTE_MULTIPATH_CACHED
+       if (rt->rt_multipath_alg != IP_MP_ALG_NONE) {
+               __u32 alg = rt->rt_multipath_alg;
+
+               RTA_PUT(skb, RTA_MP_ALGO, 4, &alg);
+       }
 #endif
        if (rt->fl.iif)
                RTA_PUT(skb, RTA_PREFSRC, 4, &rt->rt_spec_dst);
@@ -2390,7 +2741,10 @@ int inet_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr* nlh, void *arg)
        /* Reserve room for dummy headers, this skb can pass
           through good chunk of routing engine.
         */
-       skb->mac.raw = skb->data;
+       skb->mac.raw = skb->nh.raw = skb->data;
+
+       /* Bugfix: need to give ip_route_input enough of an IP header to not gag. */
+       skb->nh.iph->protocol = IPPROTO_ICMP;
        skb_reserve(skb, MAX_HEADER + sizeof(struct iphdr));
 
        if (rta[RTA_SRC - 1])
@@ -2433,7 +2787,7 @@ int inet_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr* nlh, void *arg)
        NETLINK_CB(skb).dst_pid = NETLINK_CB(in_skb).pid;
 
        err = rt_fill_info(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq,
-                               RTM_NEWROUTE, 0);
+                               RTM_NEWROUTE, 0, 0);
        if (!err)
                goto out_free;
        if (err < 0) {
@@ -2463,23 +2817,22 @@ int ip_rt_dump(struct sk_buff *skb,  struct netlink_callback *cb)
                if (h < s_h) continue;
                if (h > s_h)
                        s_idx = 0;
-               rcu_read_lock();
-               for (rt = rt_hash_table[h].chain, idx = 0; rt;
-                    rt = rt->u.rt_next, idx++) {
-                       smp_read_barrier_depends();
+               rcu_read_lock_bh();
+               for (rt = rcu_dereference(rt_hash_table[h].chain), idx = 0; rt;
+                    rt = rcu_dereference(rt->u.rt_next), idx++) {
                        if (idx < s_idx)
                                continue;
                        skb->dst = dst_clone(&rt->u.dst);
                        if (rt_fill_info(skb, NETLINK_CB(cb->skb).pid,
-                                        cb->nlh->nlmsg_seq,
-                                        RTM_NEWROUTE, 1) <= 0) {
+                                        cb->nlh->nlmsg_seq, RTM_NEWROUTE, 
+                                        1, NLM_F_MULTI) <= 0) {
                                dst_release(xchg(&skb->dst, NULL));
-                               rcu_read_unlock();
+                               rcu_read_unlock_bh();
                                goto done;
                        }
                        dst_release(xchg(&skb->dst, NULL));
                }
-               rcu_read_unlock();
+               rcu_read_unlock_bh();
        }
 
 done:
@@ -2533,7 +2886,7 @@ ctl_table ipv4_route_table[] = {
                .procname       = "flush",
                .data           = &flush_delay,
                .maxlen         = sizeof(int),
-               .mode           = 0644,
+               .mode           = 0200,
                .proc_handler   = &ipv4_sysctl_rtcache_flush,
                .strategy       = &ipv4_sysctl_rtcache_flush_strategy,
        },
@@ -2572,6 +2925,8 @@ ctl_table ipv4_route_table[] = {
                .proc_handler   = &proc_dointvec,
        },
        {
+               /*  Deprecated. Use gc_min_interval_ms */
                .ctl_name       = NET_IPV4_ROUTE_GC_MIN_INTERVAL,
                .procname       = "gc_min_interval",
                .data           = &ip_rt_gc_min_interval,
@@ -2580,6 +2935,15 @@ ctl_table ipv4_route_table[] = {
                .proc_handler   = &proc_dointvec_jiffies,
                .strategy       = &sysctl_jiffies,
        },
+       {
+               .ctl_name       = NET_IPV4_ROUTE_GC_MIN_INTERVAL_MS,
+               .procname       = "gc_min_interval_ms",
+               .data           = &ip_rt_gc_min_interval,
+               .maxlen         = sizeof(int),
+               .mode           = 0644,
+               .proc_handler   = &proc_dointvec_ms_jiffies,
+               .strategy       = &sysctl_ms_jiffies,
+       },
        {
                .ctl_name       = NET_IPV4_ROUTE_GC_TIMEOUT,
                .procname       = "gc_timeout",
@@ -2722,7 +3086,7 @@ static int ip_rt_acct_read(char *buffer, char **start, off_t offset,
                memcpy(dst, src, length);
 
                /* Add the other cpus in, one int at a time */
-               for_each_cpu(i) {
+               for_each_possible_cpu(i) {
                        unsigned int j;
 
                        src = ((u32 *) IP_RT_ACCT_CPU(i)) + offset;
@@ -2748,12 +3112,14 @@ __setup("rhash_entries=", set_rhash_entries);
 
 int __init ip_rt_init(void)
 {
-       int i, order, goal, rc = 0;
+       int rc = 0;
 
        rt_hash_rnd = (int) ((num_physpages ^ (num_physpages>>8)) ^
                             (jiffies ^ (jiffies >> 7)));
 
 #ifdef CONFIG_NET_CLS_ROUTE
+       {
+       int order;
        for (order = 0;
             (PAGE_SIZE << order) < 256 * sizeof(struct ip_rt_acct) * NR_CPUS; order++)
                /* NOTHING */;
@@ -2761,6 +3127,7 @@ int __init ip_rt_init(void)
        if (!ip_rt_acct)
                panic("IP: failed to allocate ip_rt_acct\n");
        memset(ip_rt_acct, 0, PAGE_SIZE << order);
+       }
 #endif
 
        ipv4_dst_ops.kmem_cachep = kmem_cache_create("ip_dst_cache",
@@ -2771,44 +3138,22 @@ int __init ip_rt_init(void)
        if (!ipv4_dst_ops.kmem_cachep)
                panic("IP: failed to allocate ip_dst_cache\n");
 
-       goal = num_physpages >> (26 - PAGE_SHIFT);
-       if (rhash_entries)
-               goal = (rhash_entries * sizeof(struct rt_hash_bucket)) >> PAGE_SHIFT;
-       for (order = 0; (1UL << order) < goal; order++)
-               /* NOTHING */;
-
-       do {
-               rt_hash_mask = (1UL << order) * PAGE_SIZE /
-                       sizeof(struct rt_hash_bucket);
-               while (rt_hash_mask & (rt_hash_mask - 1))
-                       rt_hash_mask--;
-               rt_hash_table = (struct rt_hash_bucket *)
-                       __get_free_pages(GFP_ATOMIC, order);
-       } while (rt_hash_table == NULL && --order > 0);
-
-       if (!rt_hash_table)
-               panic("Failed to allocate IP route cache hash table\n");
-
-       printk(KERN_INFO "IP: routing cache hash table of %u buckets, %ldKbytes\n",
-              rt_hash_mask,
-              (long) (rt_hash_mask * sizeof(struct rt_hash_bucket)) / 1024);
-
-       for (rt_hash_log = 0; (1 << rt_hash_log) != rt_hash_mask; rt_hash_log++)
-               /* NOTHING */;
-
-       rt_hash_mask--;
-       for (i = 0; i <= rt_hash_mask; i++) {
-               rt_hash_table[i].lock = SPIN_LOCK_UNLOCKED;
-               rt_hash_table[i].chain = NULL;
-       }
+       rt_hash_table = (struct rt_hash_bucket *)
+               alloc_large_system_hash("IP route cache",
+                                       sizeof(struct rt_hash_bucket),
+                                       rhash_entries,
+                                       (num_physpages >= 128 * 1024) ?
+                                       15 : 17,
+                                       HASH_HIGHMEM,
+                                       &rt_hash_log,
+                                       &rt_hash_mask,
+                                       0);
+       memset(rt_hash_table, 0, (rt_hash_mask + 1) * sizeof(struct rt_hash_bucket));
+       rt_hash_lock_init();
 
        ipv4_dst_ops.gc_thresh = (rt_hash_mask + 1);
        ip_rt_max_size = (rt_hash_mask + 1) * 16;
 
-       rt_cache_stat = alloc_percpu(struct rt_cache_stat);
-       if (!rt_cache_stat)
-               return -ENOMEM;
-
        devinet_init();
        ip_fib_init();
 
@@ -2831,12 +3176,15 @@ int __init ip_rt_init(void)
        add_timer(&rt_secret_timer);
 
 #ifdef CONFIG_PROC_FS
+       {
+       struct proc_dir_entry *rtstat_pde = NULL; /* keep gcc happy */
        if (!proc_net_fops_create("rt_cache", S_IRUGO, &rt_cache_seq_fops) ||
-           !proc_net_fops_create("rt_cache_stat", S_IRUGO, &rt_cpu_seq_fops)) {
-               free_percpu(rt_cache_stat);
+           !(rtstat_pde = create_proc_entry("rt_cache", S_IRUGO, 
+                                            proc_net_stat))) {
                return -ENOMEM;
        }
-
+       rtstat_pde->proc_fops = &rt_cpu_seq_fops;
+       }
 #ifdef CONFIG_NET_CLS_ROUTE
        create_proc_read_entry("rt_acct", 0, proc_net, ip_rt_acct_read, NULL);
 #endif