Update gpiommc to use configfs
[openwrt/openwrt.git] / target / linux / generic-2.6 / patches / 201-multiple_default_gateways.patch
index 3be34d7c63719a879706bce6c7d6adcbee814eee..b0acd9a6fa55b82cd26c1510bb344838de666fb0 100644 (file)
@@ -1,7 +1,8 @@
-diff -Nur linux-2.6.17/include/linux/netfilter_ipv4/ip_nat.h linux-2.6.17-owrt/include/linux/netfilter_ipv4/ip_nat.h
---- linux-2.6.17/include/linux/netfilter_ipv4/ip_nat.h 2006-06-18 03:49:35.000000000 +0200
-+++ linux-2.6.17-owrt/include/linux/netfilter_ipv4/ip_nat.h    2006-06-18 16:53:21.000000000 +0200
-@@ -63,6 +63,13 @@
+Index: linux-2.6.21.7/include/linux/netfilter_ipv4/ip_nat.h
+===================================================================
+--- linux-2.6.21.7.orig/include/linux/netfilter_ipv4/ip_nat.h
++++ linux-2.6.21.7/include/linux/netfilter_ipv4/ip_nat.h
+@@ -64,6 +64,13 @@ struct ip_nat_info
  
  struct ip_conntrack;
  
@@ -15,10 +16,11 @@ diff -Nur linux-2.6.17/include/linux/netfilter_ipv4/ip_nat.h linux-2.6.17-owrt/i
  /* Set up the info structure to map into this range. */
  extern unsigned int ip_nat_setup_info(struct ip_conntrack *conntrack,
                                      const struct ip_nat_range *range,
-diff -Nur linux-2.6.17/include/linux/rtnetlink.h linux-2.6.17-owrt/include/linux/rtnetlink.h
---- linux-2.6.17/include/linux/rtnetlink.h     2006-06-18 03:49:35.000000000 +0200
-+++ linux-2.6.17-owrt/include/linux/rtnetlink.h        2006-06-18 16:53:21.000000000 +0200
-@@ -293,6 +293,8 @@
+Index: linux-2.6.21.7/include/linux/rtnetlink.h
+===================================================================
+--- linux-2.6.21.7.orig/include/linux/rtnetlink.h
++++ linux-2.6.21.7/include/linux/rtnetlink.h
+@@ -293,6 +293,8 @@ struct rtnexthop
  #define RTNH_F_DEAD           1       /* Nexthop is dead (used by multipath)  */
  #define RTNH_F_PERVASIVE      2       /* Do recursive gateway lookup  */
  #define RTNH_F_ONLINK         4       /* Gateway is forced on link    */
@@ -27,913 +29,33 @@ diff -Nur linux-2.6.17/include/linux/rtnetlink.h linux-2.6.17-owrt/include/linux
  
  /* Macros to handle hexthops */
  
-diff -Nur linux-2.6.17/include/net/flow.h linux-2.6.17-owrt/include/net/flow.h
---- linux-2.6.17/include/net/flow.h    2006-06-18 03:49:35.000000000 +0200
-+++ linux-2.6.17-owrt/include/net/flow.h       2006-06-18 16:53:21.000000000 +0200
-@@ -19,6 +19,8 @@
-                       __u32                   daddr;
-                       __u32                   saddr;
-                       __u32                   fwmark;
+Index: linux-2.6.21.7/include/net/flow.h
+===================================================================
+--- linux-2.6.21.7.orig/include/net/flow.h
++++ linux-2.6.21.7/include/net/flow.h
+@@ -19,6 +19,8 @@ struct flowi {
+               struct {
+                       __be32                  daddr;
+                       __be32                  saddr;
 +                      __u32                   lsrc;
 +                      __u32                   gw;
                        __u8                    tos;
                        __u8                    scope;
                } ip4_u;
-@@ -46,6 +48,8 @@
+@@ -43,6 +45,8 @@ struct flowi {
+ #define fl6_flowlabel nl_u.ip6_u.flowlabel
  #define fl4_dst               nl_u.ip4_u.daddr
  #define fl4_src               nl_u.ip4_u.saddr
- #define fl4_fwmark    nl_u.ip4_u.fwmark
-+#define fl4_lsrc      nl_u.ip4_u.lsrc
++#define fl4_lsrc        nl_u.ip4_u.lsrc
 +#define fl4_gw                nl_u.ip4_u.gw
  #define fl4_tos               nl_u.ip4_u.tos
  #define fl4_scope     nl_u.ip4_u.scope
  
-diff -Nur linux-2.6.17/include/net/ip_fib.h linux-2.6.17-owrt/include/net/ip_fib.h
---- linux-2.6.17/include/net/ip_fib.h  2006-06-18 03:49:35.000000000 +0200
-+++ linux-2.6.17-owrt/include/net/ip_fib.h     2006-06-18 16:53:21.000000000 +0200
-@@ -195,7 +195,8 @@
- static inline void fib_select_default(const struct flowi *flp, struct fib_result *res)
- {
--      if (FIB_RES_GW(*res) && FIB_RES_NH(*res).nh_scope == RT_SCOPE_LINK)
-+      if ((FIB_RES_GW(*res) && FIB_RES_NH(*res).nh_scope == RT_SCOPE_LINK) ||
-+          FIB_RES_NH(*res).nh_scope == RT_SCOPE_HOST)
-               ip_fib_main_table->tb_select_default(ip_fib_main_table, flp, res);
- }
-@@ -207,6 +208,7 @@
- extern int fib_lookup(const struct flowi *flp, struct fib_result *res);
- extern struct fib_table *__fib_new_table(int id);
- extern void fib_rule_put(struct fib_rule *r);
-+extern int fib_result_table(struct fib_result *res);
- static inline struct fib_table *fib_get_table(int id)
- {
-@@ -302,4 +304,6 @@
- extern void fib_proc_exit(void);
- #endif
-+extern rwlock_t fib_nhflags_lock;
-+
- #endif  /* _NET_FIB_H */
-diff -Nur linux-2.6.17/include/net/route.h linux-2.6.17-owrt/include/net/route.h
---- linux-2.6.17/include/net/route.h   2006-06-18 03:49:35.000000000 +0200
-+++ linux-2.6.17-owrt/include/net/route.h      2006-06-18 16:53:21.000000000 +0200
-@@ -117,6 +117,7 @@
- extern int            ip_route_output_key(struct rtable **, struct flowi *flp);
- extern int            ip_route_output_flow(struct rtable **rp, struct flowi *flp, struct sock *sk, int flags);
- extern int            ip_route_input(struct sk_buff*, u32 dst, u32 src, u8 tos, struct net_device *devin);
-+extern int            ip_route_input_lookup(struct sk_buff*, u32 dst, u32 src, u8 tos, struct net_device *devin, u32 lsrc);
- extern unsigned short ip_rt_frag_needed(struct iphdr *iph, unsigned short new_mtu);
- extern void           ip_rt_send_redirect(struct sk_buff *skb);
-diff -Nur linux-2.6.17/net/ipv4/fib_frontend.c linux-2.6.17-owrt/net/ipv4/fib_frontend.c
---- linux-2.6.17/net/ipv4/fib_frontend.c       2006-06-18 03:49:35.000000000 +0200
-+++ linux-2.6.17-owrt/net/ipv4/fib_frontend.c  2006-06-18 16:53:21.000000000 +0200
-@@ -56,6 +56,8 @@
- struct fib_table *ip_fib_local_table;
- struct fib_table *ip_fib_main_table;
-+#define FIB_RES_TABLE(r) (RT_TABLE_MAIN)
-+
- #else
- #define RT_TABLE_MIN 1
-@@ -73,6 +75,7 @@
-       return tb;
- }
-+#define FIB_RES_TABLE(r) (fib_result_table(r))
- #endif /* CONFIG_IP_MULTIPLE_TABLES */
-@@ -170,6 +173,9 @@
-                                       .tos = tos } },
-                           .iif = oif };
-       struct fib_result res;
-+      int table;
-+      unsigned char prefixlen;
-+      unsigned char scope;
-       int no_addr, rpf;
-       int ret;
-@@ -191,31 +197,35 @@
-               goto e_inval_res;
-       *spec_dst = FIB_RES_PREFSRC(res);
-       fib_combine_itag(itag, &res);
--#ifdef CONFIG_IP_ROUTE_MULTIPATH
--      if (FIB_RES_DEV(res) == dev || res.fi->fib_nhs > 1)
--#else
-       if (FIB_RES_DEV(res) == dev)
--#endif
-       {
-               ret = FIB_RES_NH(res).nh_scope >= RT_SCOPE_HOST;
-               fib_res_put(&res);
-               return ret;
-       }
-+      table = FIB_RES_TABLE(&res);
-+      prefixlen = res.prefixlen;
-+      scope = res.scope;
-       fib_res_put(&res);
-       if (no_addr)
-               goto last_resort;
--      if (rpf)
--              goto e_inval;
-       fl.oif = dev->ifindex;
-       ret = 0;
-       if (fib_lookup(&fl, &res) == 0) {
--              if (res.type == RTN_UNICAST) {
-+              if (res.type == RTN_UNICAST &&
-+                  ((table == FIB_RES_TABLE(&res) &&
-+                    res.prefixlen >= prefixlen && res.scope >= scope) ||
-+                   !rpf)) {
-                       *spec_dst = FIB_RES_PREFSRC(res);
-                       ret = FIB_RES_NH(res).nh_scope >= RT_SCOPE_HOST;
-+                      fib_res_put(&res);
-+                      return ret;
-               }
-               fib_res_put(&res);
-       }
-+      if (rpf)
-+              goto e_inval;
-       return ret;
- last_resort:
-@@ -589,9 +599,7 @@
-       switch (event) {
-       case NETDEV_UP:
-               fib_add_ifaddr(ifa);
--#ifdef CONFIG_IP_ROUTE_MULTIPATH
-               fib_sync_up(ifa->ifa_dev->dev);
--#endif
-               rt_cache_flush(-1);
-               break;
-       case NETDEV_DOWN:
-@@ -627,9 +635,7 @@
-               for_ifa(in_dev) {
-                       fib_add_ifaddr(ifa);
-               } endfor_ifa(in_dev);
--#ifdef CONFIG_IP_ROUTE_MULTIPATH
-               fib_sync_up(dev);
--#endif
-               rt_cache_flush(-1);
-               break;
-       case NETDEV_DOWN:
-diff -Nur linux-2.6.17/net/ipv4/fib_hash.c linux-2.6.17-owrt/net/ipv4/fib_hash.c
---- linux-2.6.17/net/ipv4/fib_hash.c   2006-06-18 03:49:35.000000000 +0200
-+++ linux-2.6.17-owrt/net/ipv4/fib_hash.c      2006-06-18 16:53:21.000000000 +0200
-@@ -277,30 +277,38 @@
-       return err;
- }
--static int fn_hash_last_dflt=-1;
--
- static void
- fn_hash_select_default(struct fib_table *tb, const struct flowi *flp, struct fib_result *res)
- {
--      int order, last_idx;
-+      int order, last_idx, last_dflt, last_nhsel;
-+      struct fib_alias *first_fa = NULL;
-+      struct hlist_head *head;
-       struct hlist_node *node;
-       struct fib_node *f;
-       struct fib_info *fi = NULL;
-       struct fib_info *last_resort;
-       struct fn_hash *t = (struct fn_hash*)tb->tb_data;
--      struct fn_zone *fz = t->fn_zones[0];
-+      struct fn_zone *fz = t->fn_zones[res->prefixlen];
-+      u32 k;
-       if (fz == NULL)
-               return;
-+      k = fz_key(flp->fl4_dst, fz);
-+      last_dflt = -2;
-+      last_nhsel = 0;
-       last_idx = -1;
-       last_resort = NULL;
-       order = -1;
-       read_lock(&fib_hash_lock);
--      hlist_for_each_entry(f, node, &fz->fz_hash[0], fn_hash) {
-+      head = &fz->fz_hash[fn_hash(k, fz)];
-+      hlist_for_each_entry(f, node, head, fn_hash) {
-               struct fib_alias *fa;
-+              if (f->fn_key != k)
-+                      continue;
-+
-               list_for_each_entry(fa, &f->fn_alias, fa_list) {
-                       struct fib_info *next_fi = fa->fa_info;
-@@ -308,41 +316,52 @@
-                           fa->fa_type != RTN_UNICAST)
-                               continue;
-+                      if (fa->fa_tos &&
-+                          fa->fa_tos != flp->fl4_tos)
-+                              continue;
-                       if (next_fi->fib_priority > res->fi->fib_priority)
-                               break;
--                      if (!next_fi->fib_nh[0].nh_gw ||
--                          next_fi->fib_nh[0].nh_scope != RT_SCOPE_LINK)
--                              continue;
-                       fa->fa_state |= FA_S_ACCESSED;
--                      if (fi == NULL) {
--                              if (next_fi != res->fi)
--                                      break;
--                      } else if (!fib_detect_death(fi, order, &last_resort,
--                                                   &last_idx, &fn_hash_last_dflt)) {
-+                      if (!first_fa) {
-+                              last_dflt = fa->fa_last_dflt;
-+                              first_fa = fa;
-+                      }
-+                      if (fi && !fib_detect_death(fi, order, &last_resort,
-+                              &last_idx, &last_dflt, &last_nhsel, flp)) {
-                               if (res->fi)
-                                       fib_info_put(res->fi);
-                               res->fi = fi;
-                               atomic_inc(&fi->fib_clntref);
--                              fn_hash_last_dflt = order;
-+                              first_fa->fa_last_dflt = order;
-                               goto out;
-                       }
-                       fi = next_fi;
-                       order++;
-               }
-+              break;
-       }
-       if (order <= 0 || fi == NULL) {
--              fn_hash_last_dflt = -1;
-+              if (fi && fi->fib_nhs > 1 &&
-+                  fib_detect_death(fi, order, &last_resort, &last_idx,
-+                      &last_dflt, &last_nhsel, flp) &&
-+                  last_resort == fi) {
-+                      read_lock_bh(&fib_nhflags_lock);
-+                      fi->fib_nh[last_nhsel].nh_flags &= ~RTNH_F_SUSPECT;
-+                      read_unlock_bh(&fib_nhflags_lock);
-+              }
-+              if (first_fa) first_fa->fa_last_dflt = -1;
-               goto out;
-       }
--      if (!fib_detect_death(fi, order, &last_resort, &last_idx, &fn_hash_last_dflt)) {
-+      if (!fib_detect_death(fi, order, &last_resort, &last_idx,
-+                            &last_dflt, &last_nhsel, flp)) {
-               if (res->fi)
-                       fib_info_put(res->fi);
-               res->fi = fi;
-               atomic_inc(&fi->fib_clntref);
--              fn_hash_last_dflt = order;
-+              first_fa->fa_last_dflt = order;
-               goto out;
-       }
-@@ -352,8 +371,11 @@
-               res->fi = last_resort;
-               if (last_resort)
-                       atomic_inc(&last_resort->fib_clntref);
-+              read_lock_bh(&fib_nhflags_lock);
-+              last_resort->fib_nh[last_nhsel].nh_flags &= ~RTNH_F_SUSPECT;
-+              read_unlock_bh(&fib_nhflags_lock);
-+              first_fa->fa_last_dflt = last_idx;
-       }
--      fn_hash_last_dflt = last_idx;
- out:
-       read_unlock(&fib_hash_lock);
- }
-@@ -452,6 +474,7 @@
-                       write_lock_bh(&fib_hash_lock);
-                       fi_drop = fa->fa_info;
-                       fa->fa_info = fi;
-+                      fa->fa_last_dflt = -1;
-                       fa->fa_type = type;
-                       fa->fa_scope = r->rtm_scope;
-                       state = fa->fa_state;
-@@ -511,6 +534,7 @@
-       new_fa->fa_type = type;
-       new_fa->fa_scope = r->rtm_scope;
-       new_fa->fa_state = 0;
-+      new_fa->fa_last_dflt = -1;
-       /*
-        * Insert new entry to the list.
-diff -Nur linux-2.6.17/net/ipv4/fib_lookup.h linux-2.6.17-owrt/net/ipv4/fib_lookup.h
---- linux-2.6.17/net/ipv4/fib_lookup.h 2006-06-18 03:49:35.000000000 +0200
-+++ linux-2.6.17-owrt/net/ipv4/fib_lookup.h    2006-06-18 16:53:21.000000000 +0200
-@@ -9,6 +9,7 @@
-       struct list_head        fa_list;
-       struct rcu_head rcu;
-       struct fib_info         *fa_info;
-+      int                     fa_last_dflt;
-       u8                      fa_tos;
-       u8                      fa_type;
-       u8                      fa_scope;
-@@ -40,6 +41,7 @@
-                                       u8 tos, u32 prio);
- extern int fib_detect_death(struct fib_info *fi, int order,
-                           struct fib_info **last_resort,
--                          int *last_idx, int *dflt);
-+                          int *last_idx, int *dflt, int *last_nhsel,
-+                          const struct flowi *flp);
- #endif /* _FIB_LOOKUP_H */
-diff -Nur linux-2.6.17/net/ipv4/fib_rules.c linux-2.6.17-owrt/net/ipv4/fib_rules.c
---- linux-2.6.17/net/ipv4/fib_rules.c  2006-06-18 03:49:35.000000000 +0200
-+++ linux-2.6.17-owrt/net/ipv4/fib_rules.c     2006-06-18 16:53:21.000000000 +0200
-@@ -296,6 +296,11 @@
-       }
- }
-+int fib_result_table(struct fib_result *res)
-+{
-+      return res->r->r_table;
-+}
-+
- int fib_lookup(const struct flowi *flp, struct fib_result *res)
- {
-       int err;
-@@ -361,7 +366,8 @@
- void fib_select_default(const struct flowi *flp, struct fib_result *res)
- {
-       if (res->r && res->r->r_action == RTN_UNICAST &&
--          FIB_RES_GW(*res) && FIB_RES_NH(*res).nh_scope == RT_SCOPE_LINK) {
-+          ((FIB_RES_GW(*res) && FIB_RES_NH(*res).nh_scope == RT_SCOPE_LINK) ||
-+           FIB_RES_NH(*res).nh_scope == RT_SCOPE_HOST)) {
-               struct fib_table *tb;
-               if ((tb = fib_get_table(res->r->r_table)) != NULL)
-                       tb->tb_select_default(tb, flp, res);
-diff -Nur linux-2.6.17/net/ipv4/fib_semantics.c linux-2.6.17-owrt/net/ipv4/fib_semantics.c
---- linux-2.6.17/net/ipv4/fib_semantics.c      2006-06-18 03:49:35.000000000 +0200
-+++ linux-2.6.17-owrt/net/ipv4/fib_semantics.c 2006-06-18 16:53:21.000000000 +0200
-@@ -55,6 +55,7 @@
- static struct hlist_head *fib_info_laddrhash;
- static unsigned int fib_hash_size;
- static unsigned int fib_info_cnt;
-+rwlock_t fib_nhflags_lock = RW_LOCK_UNLOCKED;
- #define DEVINDEX_HASHBITS 8
- #define DEVINDEX_HASHSIZE (1U << DEVINDEX_HASHBITS)
-@@ -190,7 +191,7 @@
- #ifdef CONFIG_NET_CLS_ROUTE
-                   nh->nh_tclassid != onh->nh_tclassid ||
- #endif
--                  ((nh->nh_flags^onh->nh_flags)&~RTNH_F_DEAD))
-+                  ((nh->nh_flags^onh->nh_flags)&~RTNH_F_BADSTATE))
-                       return -1;
-               onh++;
-       } endfor_nexthops(fi);
-@@ -227,7 +228,7 @@
-                   nfi->fib_priority == fi->fib_priority &&
-                   memcmp(nfi->fib_metrics, fi->fib_metrics,
-                          sizeof(fi->fib_metrics)) == 0 &&
--                  ((nfi->fib_flags^fi->fib_flags)&~RTNH_F_DEAD) == 0 &&
-+                  ((nfi->fib_flags^fi->fib_flags)&~RTNH_F_BADSTATE) == 0 &&
-                   (nfi->fib_nhs == 0 || nh_comp(fi, nfi) == 0))
-                       return fi;
-       }
-@@ -319,26 +320,70 @@
- }
- int fib_detect_death(struct fib_info *fi, int order,
--                   struct fib_info **last_resort, int *last_idx, int *dflt)
-+                   struct fib_info **last_resort, int *last_idx, int *dflt,
-+                   int *last_nhsel, const struct flowi *flp)
- {
-       struct neighbour *n;
--      int state = NUD_NONE;
-+      int nhsel;
-+      int state;
-+      struct fib_nh * nh;
-+      u32 dst;
-+      int flag, dead = 1;
-+
-+      /* change_nexthops(fi) { */
-+      for (nhsel = 0, nh = fi->fib_nh; nhsel < fi->fib_nhs; nh++, nhsel++) {
-+              if (flp->oif && flp->oif != nh->nh_oif)
-+                      continue;
-+              if (flp->fl4_gw && flp->fl4_gw != nh->nh_gw && nh->nh_gw &&
-+                  nh->nh_scope == RT_SCOPE_LINK)
-+                      continue;
-+              if (nh->nh_flags & RTNH_F_DEAD)
-+                      continue;
--      n = neigh_lookup(&arp_tbl, &fi->fib_nh[0].nh_gw, fi->fib_dev);
--      if (n) {
--              state = n->nud_state;
--              neigh_release(n);
--      }
--      if (state==NUD_REACHABLE)
--              return 0;
--      if ((state&NUD_VALID) && order != *dflt)
--              return 0;
--      if ((state&NUD_VALID) ||
--          (*last_idx<0 && order > *dflt)) {
--              *last_resort = fi;
--              *last_idx = order;
-+              flag = 0;
-+              if (nh->nh_dev->flags & IFF_NOARP) {
-+                      dead = 0;
-+                      goto setfl;
-+              }
-+
-+              dst = nh->nh_gw;
-+              if (!nh->nh_gw || nh->nh_scope != RT_SCOPE_LINK)
-+                      dst = flp->fl4_dst;
-+
-+              state = NUD_NONE;
-+              n = neigh_lookup(&arp_tbl, &dst, nh->nh_dev);
-+              if (n) {
-+                      state = n->nud_state;
-+                      neigh_release(n);
-+              }
-+              if (state==NUD_REACHABLE ||
-+                      ((state&NUD_VALID) && order != *dflt)) {
-+                      dead = 0;
-+                      goto setfl;
-+              }
-+              if (!(state&NUD_VALID))
-+                      flag = 1;
-+              if (!dead)
-+                      goto setfl;
-+              if ((state&NUD_VALID) ||
-+                  (*last_idx<0 && order >= *dflt)) {
-+                      *last_resort = fi;
-+                      *last_idx = order;
-+                      *last_nhsel = nhsel;
-+              }
-+
-+              setfl:
-+
-+              read_lock_bh(&fib_nhflags_lock);
-+              if (flag)
-+                      nh->nh_flags |= RTNH_F_SUSPECT;
-+              else
-+                      nh->nh_flags &= ~RTNH_F_SUSPECT;
-+              read_unlock_bh(&fib_nhflags_lock);
-       }
--      return 1;
-+      /* } endfor_nexthops(fi) */
-+
-+      return dead;
- }
- #ifdef CONFIG_IP_ROUTE_MULTIPATH
-@@ -509,8 +554,11 @@
-                               return -EINVAL;
-                       if ((dev = __dev_get_by_index(nh->nh_oif)) == NULL)
-                               return -ENODEV;
--                      if (!(dev->flags&IFF_UP))
--                              return -ENETDOWN;
-+                      if (!(dev->flags&IFF_UP)) {
-+                              if (fi->fib_protocol != RTPROT_STATIC)
-+                                      return -ENETDOWN;
-+                              nh->nh_flags |= RTNH_F_DEAD;
-+                      }
-                       nh->nh_dev = dev;
-                       dev_hold(dev);
-                       nh->nh_scope = RT_SCOPE_LINK;
-@@ -525,24 +573,48 @@
-                       /* It is not necessary, but requires a bit of thinking */
-                       if (fl.fl4_scope < RT_SCOPE_LINK)
-                               fl.fl4_scope = RT_SCOPE_LINK;
--                      if ((err = fib_lookup(&fl, &res)) != 0)
--                              return err;
-+                      err = fib_lookup(&fl, &res);
-               }
--              err = -EINVAL;
--              if (res.type != RTN_UNICAST && res.type != RTN_LOCAL)
--                      goto out;
--              nh->nh_scope = res.scope;
--              nh->nh_oif = FIB_RES_OIF(res);
--              if ((nh->nh_dev = FIB_RES_DEV(res)) == NULL)
--                      goto out;
--              dev_hold(nh->nh_dev);
--              err = -ENETDOWN;
--              if (!(nh->nh_dev->flags & IFF_UP))
--                      goto out;
--              err = 0;
-+              if (err) {
-+                      struct in_device *in_dev;
-+
-+                      if (err != -ENETUNREACH ||
-+                          fi->fib_protocol != RTPROT_STATIC)
-+                              return err;
-+
-+                      in_dev = inetdev_by_index(nh->nh_oif);
-+                      if (in_dev == NULL ||
-+                          in_dev->dev->flags & IFF_UP) {
-+                              if (in_dev)
-+                                      in_dev_put(in_dev);
-+                              return err;
-+                      }
-+                      nh->nh_flags |= RTNH_F_DEAD;
-+                      nh->nh_scope = RT_SCOPE_LINK;
-+                      nh->nh_dev = in_dev->dev;
-+                      dev_hold(nh->nh_dev);
-+                      in_dev_put(in_dev);
-+              } else {
-+                      err = -EINVAL;
-+                      if (res.type != RTN_UNICAST && res.type != RTN_LOCAL)
-+                              goto out;
-+                      nh->nh_scope = res.scope;
-+                      nh->nh_oif = FIB_RES_OIF(res);
-+                      if ((nh->nh_dev = FIB_RES_DEV(res)) == NULL)
-+                              goto out;
-+                      dev_hold(nh->nh_dev);
-+                      if (!(nh->nh_dev->flags & IFF_UP)) {
-+                              if (fi->fib_protocol != RTPROT_STATIC) {
-+                                      err = -ENETDOWN;
-+                                      goto out;
-+                              }
-+                              nh->nh_flags |= RTNH_F_DEAD;
-+                      }
-+                      err = 0;
- out:
--              fib_res_put(&res);
--              return err;
-+                      fib_res_put(&res);
-+                      return err;
-+              }
-       } else {
-               struct in_device *in_dev;
-@@ -553,8 +625,11 @@
-               if (in_dev == NULL)
-                       return -ENODEV;
-               if (!(in_dev->dev->flags&IFF_UP)) {
--                      in_dev_put(in_dev);
--                      return -ENETDOWN;
-+                      if (fi->fib_protocol != RTPROT_STATIC) {
-+                              in_dev_put(in_dev);
-+                              return -ENETDOWN;
-+                      }
-+                      nh->nh_flags |= RTNH_F_DEAD;
-               }
-               nh->nh_dev = in_dev->dev;
-               dev_hold(nh->nh_dev);
-@@ -892,8 +967,12 @@
-                               for_nexthops(fi) {
-                                       if (nh->nh_flags&RTNH_F_DEAD)
-                                               continue;
--                                      if (!flp->oif || flp->oif == nh->nh_oif)
--                                              break;
-+                                      if (flp->oif && flp->oif != nh->nh_oif)
-+                                              continue;
-+                                      if (flp->fl4_gw && flp->fl4_gw != nh->nh_gw &&
-+                                          nh->nh_gw && nh->nh_scope == RT_SCOPE_LINK)
-+                                              continue;
-+                                      break;
-                               }
- #ifdef CONFIG_IP_ROUTE_MULTIPATH
-                               if (nhsel < fi->fib_nhs) {
-@@ -1199,18 +1278,29 @@
-                       prev_fi = fi;
-                       dead = 0;
-                       change_nexthops(fi) {
--                              if (nh->nh_flags&RTNH_F_DEAD)
--                                      dead++;
--                              else if (nh->nh_dev == dev &&
--                                       nh->nh_scope != scope) {
--                                      nh->nh_flags |= RTNH_F_DEAD;
-+                              if (nh->nh_flags&RTNH_F_DEAD) {
-+                                      if (fi->fib_protocol!=RTPROT_STATIC ||
-+                                          nh->nh_dev == NULL ||
-+                                          __in_dev_get_rtnl(nh->nh_dev) == NULL ||
-+                                          nh->nh_dev->flags&IFF_UP)
-+                                              dead++;
-+                              } else if (nh->nh_dev == dev &&
-+                                         nh->nh_scope != scope) {
-+                                      write_lock_bh(&fib_nhflags_lock);
- #ifdef CONFIG_IP_ROUTE_MULTIPATH
--                                      spin_lock_bh(&fib_multipath_lock);
-+                                      spin_lock(&fib_multipath_lock);
-+                                      nh->nh_flags |= RTNH_F_DEAD;
-                                       fi->fib_power -= nh->nh_power;
-                                       nh->nh_power = 0;
--                                      spin_unlock_bh(&fib_multipath_lock);
-+                                      spin_unlock(&fib_multipath_lock);
-+#else
-+                                      nh->nh_flags |= RTNH_F_DEAD;
- #endif
--                                      dead++;
-+                                      write_unlock_bh(&fib_nhflags_lock);
-+                                      if (fi->fib_protocol!=RTPROT_STATIC ||
-+                                          force ||
-+                                          __in_dev_get_rtnl(dev) == NULL)
-+                                              dead++;
-                               }
- #ifdef CONFIG_IP_ROUTE_MULTIPATH
-                               if (force > 1 && nh->nh_dev == dev) {
-@@ -1229,11 +1319,8 @@
-       return ret;
- }
--#ifdef CONFIG_IP_ROUTE_MULTIPATH
--
- /*
--   Dead device goes up. We wake up dead nexthops.
--   It takes sense only on multipath routes.
-+   Dead device goes up or new address is added. We wake up dead nexthops.
-  */
- int fib_sync_up(struct net_device *dev)
-@@ -1243,8 +1330,10 @@
-       struct hlist_head *head;
-       struct hlist_node *node;
-       struct fib_nh *nh;
--      int ret;
-+      struct fib_result res;
-+      int ret, rep;
-+repeat:
-       if (!(dev->flags&IFF_UP))
-               return 0;
-@@ -1252,6 +1341,7 @@
-       hash = fib_devindex_hashfn(dev->ifindex);
-       head = &fib_info_devhash[hash];
-       ret = 0;
-+      rep = 0;
-       hlist_for_each_entry(nh, node, head, nh_hash) {
-               struct fib_info *fi = nh->nh_parent;
-@@ -1264,19 +1354,37 @@
-               prev_fi = fi;
-               alive = 0;
-               change_nexthops(fi) {
--                      if (!(nh->nh_flags&RTNH_F_DEAD)) {
--                              alive++;
-+                      if (!(nh->nh_flags&RTNH_F_DEAD))
-                               continue;
--                      }
-                       if (nh->nh_dev == NULL || !(nh->nh_dev->flags&IFF_UP))
-                               continue;
-                       if (nh->nh_dev != dev || !__in_dev_get_rtnl(dev))
-                               continue;
-+                      if (nh->nh_gw && fi->fib_protocol == RTPROT_STATIC) {
-+                              struct flowi fl = {
-+                                      .nl_u = { .ip4_u =
-+                                                { .daddr = nh->nh_gw,
-+                                                  .scope = nh->nh_scope } },
-+                                      .oif =  nh->nh_oif,
-+                              };
-+                              if (fib_lookup(&fl, &res) != 0)
-+                                      continue;
-+                              if (res.type != RTN_UNICAST &&
-+                                  res.type != RTN_LOCAL) {
-+                                      fib_res_put(&res);
-+                                      continue;
-+                              }
-+                              nh->nh_scope = res.scope;
-+                              fib_res_put(&res);
-+                              rep = 1;
-+                      }
-                       alive++;
-+#ifdef CONFIG_IP_ROUTE_MULTIPATH
-                       spin_lock_bh(&fib_multipath_lock);
-                       nh->nh_power = 0;
-                       nh->nh_flags &= ~RTNH_F_DEAD;
-                       spin_unlock_bh(&fib_multipath_lock);
-+#endif
-               } endfor_nexthops(fi)
-               if (alive > 0) {
-@@ -1284,10 +1392,14 @@
-                       ret++;
-               }
-       }
-+      if (rep)
-+              goto repeat;
-       return ret;
- }
-+#ifdef CONFIG_IP_ROUTE_MULTIPATH
-+
- /*
-    The algorithm is suboptimal, but it provides really
-    fair weighted route distribution.
-@@ -1296,24 +1408,45 @@
- void fib_select_multipath(const struct flowi *flp, struct fib_result *res)
- {
-       struct fib_info *fi = res->fi;
--      int w;
-+      int w, alive;
-       spin_lock_bh(&fib_multipath_lock);
-+      if (flp->oif) {
-+              int sel = -1;
-+              w = -1;
-+              change_nexthops(fi) {
-+                      if (flp->oif != nh->nh_oif)
-+                              continue;
-+                      if (flp->fl4_gw && flp->fl4_gw != nh->nh_gw &&
-+                          nh->nh_gw && nh->nh_scope == RT_SCOPE_LINK)
-+                              continue;
-+                      if (!(nh->nh_flags&RTNH_F_BADSTATE)) {
-+                              if (nh->nh_power > w) {
-+                                      w = nh->nh_power;
-+                                      sel = nhsel;
-+                              }
-+                      }
-+              } endfor_nexthops(fi);
-+              if (sel >= 0) {
-+                      spin_unlock_bh(&fib_multipath_lock);
-+                      res->nh_sel = sel;
-+                      return;
-+              }
-+              goto last_resort;
-+      }
-+
-+repeat:
-       if (fi->fib_power <= 0) {
-               int power = 0;
-               change_nexthops(fi) {
--                      if (!(nh->nh_flags&RTNH_F_DEAD)) {
-+                      if (!(nh->nh_flags&RTNH_F_BADSTATE)) {
-                               power += nh->nh_weight;
-                               nh->nh_power = nh->nh_weight;
-                       }
-               } endfor_nexthops(fi);
-               fi->fib_power = power;
--              if (power <= 0) {
--                      spin_unlock_bh(&fib_multipath_lock);
--                      /* Race condition: route has just become dead. */
--                      res->nh_sel = 0;
--                      return;
--              }
-+              if (power <= 0)
-+                      goto last_resort;
-       }
-@@ -1323,20 +1456,40 @@
-       w = jiffies % fi->fib_power;
-+      alive = 0;
-       change_nexthops(fi) {
--              if (!(nh->nh_flags&RTNH_F_DEAD) && nh->nh_power) {
-+              if (!(nh->nh_flags&RTNH_F_BADSTATE) && nh->nh_power) {
-                       if ((w -= nh->nh_power) <= 0) {
-                               nh->nh_power--;
-                               fi->fib_power--;
--                              res->nh_sel = nhsel;
-                               spin_unlock_bh(&fib_multipath_lock);
-+                              res->nh_sel = nhsel;
-                               return;
-                       }
-+                      alive = 1;
-+              }
-+      } endfor_nexthops(fi);
-+      if (alive) {
-+              fi->fib_power = 0;
-+              goto repeat;
-+      }
-+
-+last_resort:
-+
-+      for_nexthops(fi) {
-+              if (!(nh->nh_flags&RTNH_F_DEAD)) {
-+                      if (flp->oif && flp->oif != nh->nh_oif)
-+                              continue;
-+                      if (flp->fl4_gw && flp->fl4_gw != nh->nh_gw &&
-+                          nh->nh_gw && nh->nh_scope == RT_SCOPE_LINK)
-+                              continue;
-+                      spin_unlock_bh(&fib_multipath_lock);
-+                      res->nh_sel = nhsel;
-+                      return;
-               }
-       } endfor_nexthops(fi);
-       /* Race condition: route has just become dead. */
--      res->nh_sel = 0;
-       spin_unlock_bh(&fib_multipath_lock);
- }
- #endif
-diff -Nur linux-2.6.17/net/ipv4/netfilter/ip_nat_core.c linux-2.6.17-owrt/net/ipv4/netfilter/ip_nat_core.c
---- linux-2.6.17/net/ipv4/netfilter/ip_nat_core.c      2006-06-18 03:49:35.000000000 +0200
-+++ linux-2.6.17-owrt/net/ipv4/netfilter/ip_nat_core.c 2006-06-18 16:53:21.000000000 +0200
-@@ -589,6 +589,53 @@
- EXPORT_SYMBOL_GPL(ip_nat_port_range_to_nfattr);
- #endif
-+unsigned int
-+ip_nat_route_input(unsigned int hooknum,
-+              struct sk_buff **pskb,
-+              const struct net_device *in,
-+              const struct net_device *out,
-+              int (*okfn)(struct sk_buff *))
-+{
-+      struct sk_buff *skb = *pskb;
-+      struct iphdr *iph;
-+      struct ip_conntrack *conn;
-+      enum ip_conntrack_info ctinfo;
-+      enum ip_conntrack_dir dir;
-+      unsigned long statusbit;
-+      u32 saddr;
-+
-+      if (!(conn = ip_conntrack_get(skb, &ctinfo)))
-+              return NF_ACCEPT;
-+
-+      if (!(conn->status & IPS_NAT_DONE_MASK))
-+              return NF_ACCEPT;
-+      dir = CTINFO2DIR(ctinfo);
-+      statusbit = IPS_SRC_NAT;
-+      if (dir == IP_CT_DIR_REPLY)
-+              statusbit ^= IPS_NAT_MASK;
-+      if (!(conn->status & statusbit))
-+              return NF_ACCEPT;
-+
-+      if (skb->dst)
-+              return NF_ACCEPT;
-+
-+      if (skb->len < sizeof(struct iphdr))
-+              return NF_ACCEPT;
-+
-+      /* use daddr in other direction as masquerade address (lsrc) */
-+      iph = skb->nh.iph;
-+      saddr = conn->tuplehash[!dir].tuple.dst.ip;
-+      if (saddr == iph->saddr)
-+              return NF_ACCEPT;
-+
-+      if (ip_route_input_lookup(skb, iph->daddr, iph->saddr, iph->tos,
-+          skb->dev, saddr))
-+              return NF_DROP;
-+
-+      return NF_ACCEPT;
-+}
-+EXPORT_SYMBOL_GPL(ip_nat_route_input);
-+
- static int __init ip_nat_init(void)
- {
-       size_t i;
-diff -Nur linux-2.6.17/net/ipv4/netfilter/ip_nat_standalone.c linux-2.6.17-owrt/net/ipv4/netfilter/ip_nat_standalone.c
---- linux-2.6.17/net/ipv4/netfilter/ip_nat_standalone.c        2006-06-18 03:49:35.000000000 +0200
-+++ linux-2.6.17-owrt/net/ipv4/netfilter/ip_nat_standalone.c   2006-06-18 17:12:03.000000000 +0200
-@@ -334,6 +334,14 @@
-               .hooknum        = NF_IP_LOCAL_OUT,
-               .priority       = NF_IP_PRI_NAT_DST,
-       },
-+      /* Before routing, route before mangling */
-+      {
-+              .hook           = ip_nat_route_input,
-+              .owner          = THIS_MODULE,
-+              .pf             = PF_INET,
-+              .hooknum        = NF_IP_PRE_ROUTING,
-+              .priority       = NF_IP_PRI_LAST-1,
-+      },
-       /* After packet filtering, change source */
-       {
-               .hook           = ip_nat_fn,
-diff -Nur linux-2.6.17/net/ipv4/netfilter/ipt_MASQUERADE.c linux-2.6.17-owrt/net/ipv4/netfilter/ipt_MASQUERADE.c
---- linux-2.6.17/net/ipv4/netfilter/ipt_MASQUERADE.c   2006-06-18 03:49:35.000000000 +0200
-+++ linux-2.6.17-owrt/net/ipv4/netfilter/ipt_MASQUERADE.c      2006-06-18 16:53:21.000000000 +0200
-@@ -88,13 +88,31 @@
-               return NF_ACCEPT;
-       mr = targinfo;
--      rt = (struct rtable *)(*pskb)->dst;
--      newsrc = inet_select_addr(out, rt->rt_gateway, RT_SCOPE_UNIVERSE);
--      if (!newsrc) {
--              printk("MASQUERADE: %s ate my IP address\n", out->name);
--              return NF_DROP;
-+
-+      {
-+              struct flowi fl = { .nl_u = { .ip4_u =
-+                                            { .daddr = (*pskb)->nh.iph->daddr,
-+                                              .tos = (RT_TOS((*pskb)->nh.iph->tos) |
-+                                                      RTO_CONN),
-+                                              .gw = ((struct rtable *) (*pskb)->dst)->rt_gateway,
-+#ifdef CONFIG_IP_ROUTE_FWMARK
-+                                              .fwmark = (*pskb)->nfmark
-+#endif
-+                                            } },
-+                                  .oif = out->ifindex };
-+              if (ip_route_output_key(&rt, &fl) != 0) {
-+                      /* Funky routing can do this. */
-+                      if (net_ratelimit())
-+                              printk("MASQUERADE:"
-+                                     " No route: Rusty's brain broke!\n");
-+                      return NF_DROP;
-+              }
-       }
-+      newsrc = rt->rt_src;
-+      DEBUGP("newsrc = %u.%u.%u.%u\n", NIPQUAD(newsrc));
-+      ip_rt_put(rt);
-+
-       write_lock_bh(&masq_lock);
-       ct->nat.masq_index = out->ifindex;
-       write_unlock_bh(&masq_lock);
-diff -Nur linux-2.6.17/net/ipv4/route.c linux-2.6.17-owrt/net/ipv4/route.c
---- linux-2.6.17/net/ipv4/route.c      2006-06-18 03:49:35.000000000 +0200
-+++ linux-2.6.17-owrt/net/ipv4/route.c 2006-06-18 16:53:21.000000000 +0200
-@@ -1195,6 +1195,7 @@
+Index: linux-2.6.21.7/net/ipv4/route.c
+===================================================================
+--- linux-2.6.21.7.orig/net/ipv4/route.c
++++ linux-2.6.21.7/net/ipv4/route.c
+@@ -1208,6 +1208,7 @@ void ip_rt_redirect(__be32 old_gw, __be3
  
                                /* Gateway is different ... */
                                rt->rt_gateway          = new_gw;
@@ -941,15 +63,15 @@ diff -Nur linux-2.6.17/net/ipv4/route.c linux-2.6.17-owrt/net/ipv4/route.c
  
                                /* Redirect received -> path was valid */
                                dst_confirm(&rth->u.dst);
-@@ -1626,6 +1627,7 @@
-       rth->fl.fl4_fwmark= skb->nfmark;
- #endif
+@@ -1643,6 +1644,7 @@ static int ip_route_input_mc(struct sk_b
+       rth->fl.fl4_tos = tos;
+       rth->fl.mark    = skb->mark;
        rth->fl.fl4_src = saddr;
 +      rth->fl.fl4_lsrc = 0;
        rth->rt_src     = saddr;
  #ifdef CONFIG_NET_CLS_ROUTE
        rth->u.dst.tclassid = itag;
-@@ -1636,6 +1638,7 @@
+@@ -1653,6 +1655,7 @@ static int ip_route_input_mc(struct sk_b
        dev_hold(rth->u.dst.dev);
        rth->idev       = in_dev_get(rth->u.dst.dev);
        rth->fl.oif     = 0;
@@ -957,16 +79,16 @@ diff -Nur linux-2.6.17/net/ipv4/route.c linux-2.6.17-owrt/net/ipv4/route.c
        rth->rt_gateway = daddr;
        rth->rt_spec_dst= spec_dst;
        rth->rt_type    = RTN_MULTICAST;
-@@ -1700,7 +1703,7 @@
-                                 struct fib_result* res, 
-                                 struct in_device *in_dev, 
-                                 u32 daddr, u32 saddr, u32 tos, 
--                                struct rtable **result) 
-+                                u32 lsrc, struct rtable **result) 
+@@ -1716,7 +1719,7 @@ static void ip_handle_martian_source(str
+ static inline int __mkroute_input(struct sk_buff *skb,
+                                 struct fib_result* res,
+                                 struct in_device *in_dev,
+-                                __be32 daddr, __be32 saddr, u32 tos,
++                                __be32 daddr, __be32 saddr, u32 tos, u32 lsrc,
+                                 struct rtable **result)
  {
  
-       struct rtable *rth;
-@@ -1733,6 +1736,7 @@
+@@ -1751,6 +1754,7 @@ static inline int __mkroute_input(struct
                flags |= RTCF_DIRECTSRC;
  
        if (out_dev == in_dev && err && !(flags & (RTCF_NAT | RTCF_MASQ)) &&
@@ -974,15 +96,15 @@ diff -Nur linux-2.6.17/net/ipv4/route.c linux-2.6.17-owrt/net/ipv4/route.c
            (IN_DEV_SHARED_MEDIA(out_dev) ||
             inet_addr_onlink(out_dev, saddr, FIB_RES_GW(*res))))
                flags |= RTCF_DOREDIRECT;
-@@ -1772,6 +1776,7 @@
- #endif
+@@ -1788,6 +1792,7 @@ static inline int __mkroute_input(struct
+       rth->fl.mark    = skb->mark;
        rth->fl.fl4_src = saddr;
        rth->rt_src     = saddr;
 +      rth->fl.fl4_lsrc        = lsrc;
        rth->rt_gateway = daddr;
        rth->rt_iif     =
                rth->fl.iif     = in_dev->dev->ifindex;
-@@ -1779,6 +1784,7 @@
+@@ -1795,6 +1800,7 @@ static inline int __mkroute_input(struct
        dev_hold(rth->u.dst.dev);
        rth->idev       = in_dev_get(rth->u.dst.dev);
        rth->fl.oif     = 0;
@@ -990,12 +112,13 @@ diff -Nur linux-2.6.17/net/ipv4/route.c linux-2.6.17-owrt/net/ipv4/route.c
        rth->rt_spec_dst= spec_dst;
  
        rth->u.dst.input = ip_forward;
-@@ -1800,19 +1806,20 @@
-                                      struct fib_result* res, 
+@@ -1816,19 +1822,21 @@ static inline int ip_mkroute_input_def(s
+                                      struct fib_result* res,
                                       const struct flowi *fl,
                                       struct in_device *in_dev,
--                                     u32 daddr, u32 saddr, u32 tos)
-+                                     u32 daddr, u32 saddr, u32 tos, u32 lsrc)
+-                                     __be32 daddr, __be32 saddr, u32 tos)
++                                     __be32 daddr, __be32 saddr, u32 tos, 
++                                     u32 lsrc)
  {
        struct rtable* rth = NULL;
        int err;
@@ -1014,25 +137,26 @@ diff -Nur linux-2.6.17/net/ipv4/route.c linux-2.6.17-owrt/net/ipv4/route.c
        if (err)
                return err;
  
-@@ -1825,7 +1832,7 @@
-                                  struct fib_result* res, 
+@@ -1841,7 +1849,8 @@ static inline int ip_mkroute_input(struc
+                                  struct fib_result* res,
                                   const struct flowi *fl,
                                   struct in_device *in_dev,
--                                 u32 daddr, u32 saddr, u32 tos)
-+                                 u32 daddr, u32 saddr, u32 tos, u32 lsrc)
+-                                 __be32 daddr, __be32 saddr, u32 tos)
++                                 __be32 daddr, __be32 saddr, u32 tos, 
++                                 u32 lsrc)
  {
  #ifdef CONFIG_IP_ROUTE_MULTIPATH_CACHED
        struct rtable* rth = NULL, *rtres;
-@@ -1841,7 +1848,7 @@
+@@ -1857,7 +1866,7 @@ static inline int ip_mkroute_input(struc
        /* distinguish between multipath and singlepath */
        if (hopcount < 2)
                return ip_mkroute_input_def(skb, res, fl, in_dev, daddr,
 -                                          saddr, tos);
 +                                          saddr, tos, 0);
-       
        /* add all alternatives to the routing cache */
        for (hop = 0; hop < hopcount; hop++) {
-@@ -1853,7 +1860,7 @@
+@@ -1869,7 +1878,7 @@ static inline int ip_mkroute_input(struc
  
                /* create a routing cache entry */
                err = __mkroute_input(skb, res, in_dev, daddr, saddr, tos,
@@ -1041,7 +165,7 @@ diff -Nur linux-2.6.17/net/ipv4/route.c linux-2.6.17-owrt/net/ipv4/route.c
                if (err)
                        return err;
  
-@@ -1873,7 +1880,7 @@
+@@ -1889,7 +1898,7 @@ static inline int ip_mkroute_input(struc
        skb->dst = &rtres->u.dst;
        return err;
  #else /* CONFIG_IP_ROUTE_MULTIPATH_CACHED  */
@@ -1050,10 +174,10 @@ diff -Nur linux-2.6.17/net/ipv4/route.c linux-2.6.17-owrt/net/ipv4/route.c
  #endif /* CONFIG_IP_ROUTE_MULTIPATH_CACHED  */
  }
  
-@@ -1889,20 +1896,20 @@
+@@ -1905,18 +1914,18 @@ static inline int ip_mkroute_input(struc
   */
  
- static int ip_route_input_slow(struct sk_buff *skb, u32 daddr, u32 saddr,
+ static int ip_route_input_slow(struct sk_buff *skb, __be32 daddr, __be32 saddr,
 -                             u8 tos, struct net_device *dev)
 +                             u8 tos, struct net_device *dev, u32 lsrc)
  {
@@ -1062,19 +186,17 @@ diff -Nur linux-2.6.17/net/ipv4/route.c linux-2.6.17-owrt/net/ipv4/route.c
        struct flowi fl = { .nl_u = { .ip4_u =
                                      { .daddr = daddr,
 -                                      .saddr = saddr,
-+                                      .saddr = lsrc? : saddr,
++                                      .saddr = lsrc ? : saddr,
                                        .tos = tos,
                                        .scope = RT_SCOPE_UNIVERSE,
- #ifdef CONFIG_IP_ROUTE_FWMARK
-                                       .fwmark = skb->nfmark
- #endif
                                      } },
+                           .mark = skb->mark,
 -                          .iif = dev->ifindex };
 +                          .iif = lsrc? loopback_dev.ifindex : dev->ifindex };
        unsigned        flags = 0;
        u32             itag = 0;
        struct rtable * rth;
-@@ -1935,6 +1942,12 @@
+@@ -1949,6 +1958,12 @@ static int ip_route_input_slow(struct sk
        if (BADCLASS(daddr) || ZERONET(daddr) || LOOPBACK(daddr))
                goto martian_destination;
  
@@ -1087,7 +209,7 @@ diff -Nur linux-2.6.17/net/ipv4/route.c linux-2.6.17-owrt/net/ipv4/route.c
        /*
         *      Now we are ready to route packet.
         */
-@@ -1944,6 +1957,10 @@
+@@ -1958,6 +1973,10 @@ static int ip_route_input_slow(struct sk
                goto no_route;
        }
        free_res = 1;
@@ -1098,7 +220,7 @@ diff -Nur linux-2.6.17/net/ipv4/route.c linux-2.6.17-owrt/net/ipv4/route.c
  
        RT_CACHE_STAT_INC(in_slow_tot);
  
-@@ -1968,7 +1985,7 @@
+@@ -1982,7 +2001,7 @@ static int ip_route_input_slow(struct sk
        if (res.type != RTN_UNICAST)
                goto martian_destination;
  
@@ -1107,7 +229,7 @@ diff -Nur linux-2.6.17/net/ipv4/route.c linux-2.6.17-owrt/net/ipv4/route.c
        if (err == -ENOBUFS)
                goto e_nobufs;
        if (err == -EINVAL)
-@@ -1983,6 +2000,8 @@
+@@ -1997,6 +2016,8 @@ out:     return err;
  brd_input:
        if (skb->protocol != htons(ETH_P_IP))
                goto e_inval;
@@ -1116,7 +238,7 @@ diff -Nur linux-2.6.17/net/ipv4/route.c linux-2.6.17-owrt/net/ipv4/route.c
  
        if (ZERONET(saddr))
                spec_dst = inet_select_addr(dev, 0, RT_SCOPE_LINK);
-@@ -2025,6 +2044,7 @@
+@@ -2037,6 +2058,7 @@ local_input:
        rth->u.dst.dev  = &loopback_dev;
        dev_hold(rth->u.dst.dev);
        rth->idev       = in_dev_get(rth->u.dst.dev);
@@ -1124,27 +246,27 @@ diff -Nur linux-2.6.17/net/ipv4/route.c linux-2.6.17-owrt/net/ipv4/route.c
        rth->rt_gateway = daddr;
        rth->rt_spec_dst= spec_dst;
        rth->u.dst.input= ip_local_deliver;
-@@ -2074,8 +2094,9 @@
+@@ -2086,8 +2108,9 @@ martian_source:
        goto e_inval;
  }
  
--int ip_route_input(struct sk_buff *skb, u32 daddr, u32 saddr,
+-int ip_route_input(struct sk_buff *skb, __be32 daddr, __be32 saddr,
 -                 u8 tos, struct net_device *dev)
 +static inline int
-+ip_route_input_cached(struct sk_buff *skb, u32 daddr, u32 saddr,
-+                    u8 tos, struct net_device *dev, u32 lsrc)
++ip_route_input_cached(struct sk_buff *skb, __be32 daddr, __be32 saddr,
++                 u8 tos, struct net_device *dev, u32 lsrc)
  {
        struct rtable * rth;
        unsigned        hash;
-@@ -2090,6 +2111,7 @@
+@@ -2102,6 +2125,7 @@ int ip_route_input(struct sk_buff *skb, 
                if (rth->fl.fl4_dst == daddr &&
                    rth->fl.fl4_src == saddr &&
                    rth->fl.iif == iif &&
 +                  rth->fl.fl4_lsrc == lsrc &&
                    rth->fl.oif == 0 &&
- #ifdef CONFIG_IP_ROUTE_FWMARK
-                   rth->fl.fl4_fwmark == skb->nfmark &&
-@@ -2138,7 +2160,19 @@
+                   rth->fl.mark == skb->mark &&
+                   rth->fl.fl4_tos == tos) {
+@@ -2148,7 +2172,19 @@ int ip_route_input(struct sk_buff *skb, 
                rcu_read_unlock();
                return -EINVAL;
        }
@@ -1165,15 +287,15 @@ diff -Nur linux-2.6.17/net/ipv4/route.c linux-2.6.17-owrt/net/ipv4/route.c
  }
  
  static inline int __mkroute_output(struct rtable **result,
-@@ -2217,6 +2251,7 @@
+@@ -2227,6 +2263,7 @@ static inline int __mkroute_output(struc
        rth->fl.fl4_tos = tos;
        rth->fl.fl4_src = oldflp->fl4_src;
        rth->fl.oif     = oldflp->oif;
-+      rth->fl.fl4_gw  = oldflp->fl4_gw;
- #ifdef CONFIG_IP_ROUTE_FWMARK
-       rth->fl.fl4_fwmark= oldflp->fl4_fwmark;
- #endif
-@@ -2361,6 +2396,7 @@
++      rth->fl.fl4_gw  = oldflp->fl4_gw;
+       rth->fl.mark    = oldflp->mark;
+       rth->rt_dst     = fl->fl4_dst;
+       rth->rt_src     = fl->fl4_src;
+@@ -2367,6 +2404,7 @@ static int ip_route_output_slow(struct r
        struct flowi fl = { .nl_u = { .ip4_u =
                                      { .daddr = oldflp->fl4_dst,
                                        .saddr = oldflp->fl4_src,
@@ -1181,7 +303,7 @@ diff -Nur linux-2.6.17/net/ipv4/route.c linux-2.6.17-owrt/net/ipv4/route.c
                                        .tos = tos & IPTOS_RT_MASK,
                                        .scope = ((tos & RTO_ONLINK) ?
                                                  RT_SCOPE_LINK :
-@@ -2466,6 +2502,7 @@
+@@ -2470,6 +2508,7 @@ static int ip_route_output_slow(struct r
                dev_out = &loopback_dev;
                dev_hold(dev_out);
                fl.oif = loopback_dev.ifindex;
@@ -1189,7 +311,7 @@ diff -Nur linux-2.6.17/net/ipv4/route.c linux-2.6.17-owrt/net/ipv4/route.c
                res.type = RTN_LOCAL;
                flags |= RTCF_LOCAL;
                goto make_route;
-@@ -2473,7 +2510,7 @@
+@@ -2477,7 +2516,7 @@ static int ip_route_output_slow(struct r
  
        if (fib_lookup(&fl, &res)) {
                res.fi = NULL;
@@ -1198,7 +320,7 @@ diff -Nur linux-2.6.17/net/ipv4/route.c linux-2.6.17-owrt/net/ipv4/route.c
                        /* Apparently, routing tables are wrong. Assume,
                           that the destination is on link.
  
-@@ -2513,6 +2550,7 @@
+@@ -2517,6 +2556,7 @@ static int ip_route_output_slow(struct r
                dev_out = &loopback_dev;
                dev_hold(dev_out);
                fl.oif = dev_out->ifindex;
@@ -1206,7 +328,7 @@ diff -Nur linux-2.6.17/net/ipv4/route.c linux-2.6.17-owrt/net/ipv4/route.c
                if (res.fi)
                        fib_info_put(res.fi);
                res.fi = NULL;
-@@ -2520,13 +2558,12 @@
+@@ -2524,13 +2564,12 @@ static int ip_route_output_slow(struct r
                goto make_route;
        }
  
@@ -1223,15 +345,15 @@ diff -Nur linux-2.6.17/net/ipv4/route.c linux-2.6.17-owrt/net/ipv4/route.c
  
        if (!fl.fl4_src)
                fl.fl4_src = FIB_RES_PREFSRC(res);
-@@ -2563,6 +2600,7 @@
+@@ -2567,6 +2606,7 @@ int __ip_route_output_key(struct rtable 
                    rth->fl.fl4_src == flp->fl4_src &&
                    rth->fl.iif == 0 &&
                    rth->fl.oif == flp->oif &&
 +                  rth->fl.fl4_gw == flp->fl4_gw &&
- #ifdef CONFIG_IP_ROUTE_FWMARK
-                   rth->fl.fl4_fwmark == flp->fl4_fwmark &&
- #endif
-@@ -3199,3 +3237,4 @@
+                   rth->fl.mark == flp->mark &&
+                   !((rth->fl.fl4_tos ^ flp->fl4_tos) &
+                           (IPTOS_RT_MASK | RTO_ONLINK))) {
+@@ -3199,3 +3239,4 @@ int __init ip_rt_init(void)
  EXPORT_SYMBOL(__ip_select_ident);
  EXPORT_SYMBOL(ip_route_input);
  EXPORT_SYMBOL(ip_route_output_key);