]> git.pld-linux.org Git - packages/kernel.git/blob - kernel-routes.patch
- updated for 2.6.25.4
[packages/kernel.git] / kernel-routes.patch
1 diff -urp v2.6.25/linux/include/linux/rtnetlink.h linux/include/linux/rtnetlink.h
2 --- v2.6.25/linux/include/linux/rtnetlink.h     2008-04-17 09:58:08.000000000 +0300
3 +++ linux/include/linux/rtnetlink.h     2008-04-19 18:30:04.000000000 +0300
4 @@ -303,6 +303,8 @@ struct rtnexthop
5  #define RTNH_F_DEAD            1       /* Nexthop is dead (used by multipath)  */
6  #define RTNH_F_PERVASIVE       2       /* Do recursive gateway lookup  */
7  #define RTNH_F_ONLINK          4       /* Gateway is forced on link    */
8 +#define RTNH_F_SUSPECT         8       /* We don't know the real state */
9 +#define RTNH_F_BADSTATE                (RTNH_F_DEAD | RTNH_F_SUSPECT)
10  
11  /* Macros to handle hexthops */
12  
13 diff -urp v2.6.25/linux/include/net/flow.h linux/include/net/flow.h
14 --- v2.6.25/linux/include/net/flow.h    2008-04-17 09:58:08.000000000 +0300
15 +++ linux/include/net/flow.h    2008-04-19 18:30:17.000000000 +0300
16 @@ -19,6 +19,8 @@ struct flowi {
17                 struct {
18                         __be32                  daddr;
19                         __be32                  saddr;
20 +                       __be32                  lsrc;
21 +                       __be32                  gw;
22                         __u8                    tos;
23                         __u8                    scope;
24                 } ip4_u;
25 @@ -43,6 +45,8 @@ struct flowi {
26  #define fl6_flowlabel  nl_u.ip6_u.flowlabel
27  #define fl4_dst                nl_u.ip4_u.daddr
28  #define fl4_src                nl_u.ip4_u.saddr
29 +#define fl4_lsrc       nl_u.ip4_u.lsrc
30 +#define fl4_gw         nl_u.ip4_u.gw
31  #define fl4_tos                nl_u.ip4_u.tos
32  #define fl4_scope      nl_u.ip4_u.scope
33  
34 diff -urp v2.6.25/linux/include/net/ip_fib.h linux/include/net/ip_fib.h
35 --- v2.6.25/linux/include/net/ip_fib.h  2008-04-17 09:58:08.000000000 +0300
36 +++ linux/include/net/ip_fib.h  2008-04-19 18:30:04.000000000 +0300
37 @@ -207,6 +207,8 @@ extern int fib_lookup(struct net *n, str
38  extern struct fib_table *fib_new_table(struct net *net, u32 id);
39  extern struct fib_table *fib_get_table(struct net *net, u32 id);
40  
41 +extern int fib_result_table(struct fib_result *res);
42 +
43  #endif /* CONFIG_IP_MULTIPLE_TABLES */
44  
45  /* Exported by fib_frontend.c */
46 @@ -276,4 +278,6 @@ static inline void fib_proc_exit(struct 
47  }
48  #endif
49  
50 +extern rwlock_t fib_nhflags_lock;
51 +
52  #endif  /* _NET_FIB_H */
53 diff -urp v2.6.25/linux/include/net/netfilter/nf_nat.h linux/include/net/netfilter/nf_nat.h
54 --- v2.6.25/linux/include/net/netfilter/nf_nat.h        2008-04-17 09:58:08.000000000 +0300
55 +++ linux/include/net/netfilter/nf_nat.h        2008-04-19 18:30:17.000000000 +0300
56 @@ -77,6 +77,13 @@ struct nf_conn_nat
57  #endif
58  };
59  
60 +/* Call input routing for SNAT-ed traffic */
61 +extern unsigned int ip_nat_route_input(unsigned int hooknum,
62 +                                      struct sk_buff *skb,
63 +                                      const struct net_device *in,
64 +                                      const struct net_device *out,
65 +                                      int (*okfn)(struct sk_buff *));
66 +
67  /* Set up the info structure to map into this range. */
68  extern unsigned int nf_nat_setup_info(struct nf_conn *ct,
69                                       const struct nf_nat_range *range,
70 diff -urp v2.6.25/linux/include/net/route.h linux/include/net/route.h
71 --- v2.6.25/linux/include/net/route.h   2008-04-17 09:58:08.000000000 +0300
72 +++ linux/include/net/route.h   2008-04-19 18:30:17.000000000 +0300
73 @@ -117,6 +117,7 @@ extern int          __ip_route_output_key(struct
74  extern int             ip_route_output_key(struct net *, struct rtable **, struct flowi *flp);
75  extern int             ip_route_output_flow(struct net *, struct rtable **rp, struct flowi *flp, struct sock *sk, int flags);
76  extern int             ip_route_input(struct sk_buff*, __be32 dst, __be32 src, u8 tos, struct net_device *devin);
77 +extern int             ip_route_input_lookup(struct sk_buff*, __be32 dst, __be32 src, u8 tos, struct net_device *devin, __be32 lsrc);
78  extern unsigned short  ip_rt_frag_needed(struct net *net, struct iphdr *iph, unsigned short new_mtu);
79  extern void            ip_rt_send_redirect(struct sk_buff *skb);
80  
81 diff -urp v2.6.25/linux/net/bridge/br_netfilter.c linux/net/bridge/br_netfilter.c
82 --- v2.6.25/linux/net/bridge/br_netfilter.c     2008-04-17 09:58:08.000000000 +0300
83 +++ linux/net/bridge/br_netfilter.c     2008-04-19 18:30:17.000000000 +0300
84 @@ -325,6 +325,10 @@ static int br_nf_pre_routing_finish(stru
85         struct nf_bridge_info *nf_bridge = skb->nf_bridge;
86         int err;
87  
88 +       /* Old skb->dst is not expected, it is lost in all cases */
89 +       dst_release(skb->dst);
90 +       skb->dst = NULL;
91 +
92         if (nf_bridge->mask & BRNF_PKT_TYPE) {
93                 skb->pkt_type = PACKET_OTHERHOST;
94                 nf_bridge->mask ^= BRNF_PKT_TYPE;
95 diff -urp v2.6.25/linux/net/ipv4/fib_frontend.c linux/net/ipv4/fib_frontend.c
96 --- v2.6.25/linux/net/ipv4/fib_frontend.c       2008-04-17 09:58:09.000000000 +0300
97 +++ linux/net/ipv4/fib_frontend.c       2008-04-19 18:30:04.000000000 +0300
98 @@ -49,6 +49,8 @@
99  
100  #ifndef CONFIG_IP_MULTIPLE_TABLES
101  
102 +#define FIB_RES_TABLE(r) (RT_TABLE_MAIN)
103 +
104  static int __net_init fib4_rules_init(struct net *net)
105  {
106         struct fib_table *local_table, *main_table;
107 @@ -73,6 +75,8 @@ fail:
108  }
109  #else
110  
111 +#define FIB_RES_TABLE(r) (fib_result_table(r))
112 +
113  struct fib_table *fib_new_table(struct net *net, u32 id)
114  {
115         struct fib_table *tb;
116 @@ -127,7 +131,8 @@ void fib_select_default(struct net *net,
117         table = res->r->table;
118  #endif
119         tb = fib_get_table(net, table);
120 -       if (FIB_RES_GW(*res) && FIB_RES_NH(*res).nh_scope == RT_SCOPE_LINK)
121 +       if ((FIB_RES_GW(*res) && FIB_RES_NH(*res).nh_scope == RT_SCOPE_LINK) ||
122 +           FIB_RES_NH(*res).nh_scope == RT_SCOPE_HOST)
123                 tb->tb_select_default(tb, flp, res);
124  }
125  
126 @@ -241,6 +246,9 @@ int fib_validate_source(__be32 src, __be
127                                         .tos = tos } },
128                             .iif = oif };
129         struct fib_result res;
130 +       int table;
131 +       unsigned char prefixlen;
132 +       unsigned char scope;
133         int no_addr, rpf;
134         int ret;
135         struct net *net;
136 @@ -264,31 +272,35 @@ int fib_validate_source(__be32 src, __be
137                 goto e_inval_res;
138         *spec_dst = FIB_RES_PREFSRC(res);
139         fib_combine_itag(itag, &res);
140 -#ifdef CONFIG_IP_ROUTE_MULTIPATH
141 -       if (FIB_RES_DEV(res) == dev || res.fi->fib_nhs > 1)
142 -#else
143         if (FIB_RES_DEV(res) == dev)
144 -#endif
145         {
146                 ret = FIB_RES_NH(res).nh_scope >= RT_SCOPE_HOST;
147                 fib_res_put(&res);
148                 return ret;
149         }
150 +       table = FIB_RES_TABLE(&res);
151 +       prefixlen = res.prefixlen;
152 +       scope = res.scope;
153         fib_res_put(&res);
154         if (no_addr)
155                 goto last_resort;
156 -       if (rpf)
157 -               goto e_inval;
158         fl.oif = dev->ifindex;
159  
160         ret = 0;
161         if (fib_lookup(net, &fl, &res) == 0) {
162 -               if (res.type == RTN_UNICAST) {
163 +               if (res.type == RTN_UNICAST &&
164 +                   ((table == FIB_RES_TABLE(&res) &&
165 +                     res.prefixlen >= prefixlen && res.scope >= scope) ||
166 +                    !rpf)) {
167                         *spec_dst = FIB_RES_PREFSRC(res);
168                         ret = FIB_RES_NH(res).nh_scope >= RT_SCOPE_HOST;
169 +                       fib_res_put(&res);
170 +                       return ret;
171                 }
172                 fib_res_put(&res);
173         }
174 +       if (rpf)
175 +               goto e_inval;
176         return ret;
177  
178  last_resort:
179 @@ -911,9 +923,7 @@ static int fib_inetaddr_event(struct not
180         switch (event) {
181         case NETDEV_UP:
182                 fib_add_ifaddr(ifa);
183 -#ifdef CONFIG_IP_ROUTE_MULTIPATH
184                 fib_sync_up(ifa->ifa_dev->dev);
185 -#endif
186                 rt_cache_flush(-1);
187                 break;
188         case NETDEV_DOWN:
189 @@ -949,9 +959,7 @@ static int fib_netdev_event(struct notif
190                 for_ifa(in_dev) {
191                         fib_add_ifaddr(ifa);
192                 } endfor_ifa(in_dev);
193 -#ifdef CONFIG_IP_ROUTE_MULTIPATH
194                 fib_sync_up(dev);
195 -#endif
196                 rt_cache_flush(-1);
197                 break;
198         case NETDEV_DOWN:
199 diff -urp v2.6.25/linux/net/ipv4/fib_hash.c linux/net/ipv4/fib_hash.c
200 --- v2.6.25/linux/net/ipv4/fib_hash.c   2008-04-17 09:58:09.000000000 +0300
201 +++ linux/net/ipv4/fib_hash.c   2008-04-19 18:30:04.000000000 +0300
202 @@ -280,25 +280,35 @@ out:
203  static void
204  fn_hash_select_default(struct fib_table *tb, const struct flowi *flp, struct fib_result *res)
205  {
206 -       int order, last_idx;
207 +       int order, last_idx, last_dflt, last_nhsel;
208 +       struct fib_alias *first_fa = NULL;
209 +       struct hlist_head *head;
210         struct hlist_node *node;
211         struct fib_node *f;
212         struct fib_info *fi = NULL;
213         struct fib_info *last_resort;
214         struct fn_hash *t = (struct fn_hash*)tb->tb_data;
215 -       struct fn_zone *fz = t->fn_zones[0];
216 +       struct fn_zone *fz = t->fn_zones[res->prefixlen];
217 +       __be32 k;
218  
219         if (fz == NULL)
220                 return;
221  
222 +       k = fz_key(flp->fl4_dst, fz);
223 +       last_dflt = -2;
224 +       last_nhsel = 0;
225         last_idx = -1;
226         last_resort = NULL;
227         order = -1;
228  
229         read_lock(&fib_hash_lock);
230 -       hlist_for_each_entry(f, node, &fz->fz_hash[0], fn_hash) {
231 +       head = &fz->fz_hash[fn_hash(k, fz)];
232 +       hlist_for_each_entry(f, node, head, fn_hash) {
233                 struct fib_alias *fa;
234  
235 +               if (f->fn_key != k)
236 +                       continue;
237 +
238                 list_for_each_entry(fa, &f->fn_alias, fa_list) {
239                         struct fib_info *next_fi = fa->fa_info;
240  
241 @@ -306,42 +316,56 @@ fn_hash_select_default(struct fib_table 
242                             fa->fa_type != RTN_UNICAST)
243                                 continue;
244  
245 +                       if (fa->fa_tos &&
246 +                           fa->fa_tos != flp->fl4_tos)
247 +                               continue;
248                         if (next_fi->fib_priority > res->fi->fib_priority)
249                                 break;
250 -                       if (!next_fi->fib_nh[0].nh_gw ||
251 -                           next_fi->fib_nh[0].nh_scope != RT_SCOPE_LINK)
252 -                               continue;
253                         fa->fa_state |= FA_S_ACCESSED;
254  
255 -                       if (fi == NULL) {
256 -                               if (next_fi != res->fi)
257 -                                       break;
258 -                       } else if (!fib_detect_death(fi, order, &last_resort,
259 -                                               &last_idx, tb->tb_default)) {
260 +                       if (!first_fa) {
261 +                               last_dflt = fa->fa_last_dflt;
262 +                               first_fa = fa;
263 +                       }
264 +                       if (fi && !fib_detect_death(fi, order, &last_resort,
265 +                               &last_idx, &last_dflt, &last_nhsel, flp)) {
266                                 fib_result_assign(res, fi);
267 -                               tb->tb_default = order;
268 +                               first_fa->fa_last_dflt = order;
269                                 goto out;
270                         }
271                         fi = next_fi;
272                         order++;
273                 }
274 +               break;
275         }
276  
277         if (order <= 0 || fi == NULL) {
278 -               tb->tb_default = -1;
279 +               if (fi && fi->fib_nhs > 1 &&
280 +                   fib_detect_death(fi, order, &last_resort, &last_idx,
281 +                       &last_dflt, &last_nhsel, flp) &&
282 +                   last_resort == fi) {
283 +                       read_lock_bh(&fib_nhflags_lock);
284 +                       fi->fib_nh[last_nhsel].nh_flags &= ~RTNH_F_SUSPECT;
285 +                       read_unlock_bh(&fib_nhflags_lock);
286 +               }
287 +               if (first_fa) first_fa->fa_last_dflt = -1;
288                 goto out;
289         }
290  
291         if (!fib_detect_death(fi, order, &last_resort, &last_idx,
292 -                               tb->tb_default)) {
293 +                             &last_dflt, &last_nhsel, flp)) {
294                 fib_result_assign(res, fi);
295 -               tb->tb_default = order;
296 +               first_fa->fa_last_dflt = order;
297                 goto out;
298         }
299  
300 -       if (last_idx >= 0)
301 +       if (last_idx >= 0) {
302                 fib_result_assign(res, last_resort);
303 -       tb->tb_default = last_idx;
304 +               read_lock_bh(&fib_nhflags_lock);
305 +               last_resort->fib_nh[last_nhsel].nh_flags &= ~RTNH_F_SUSPECT;
306 +               read_unlock_bh(&fib_nhflags_lock);
307 +               first_fa->fa_last_dflt = last_idx;
308 +       }
309  out:
310         read_unlock(&fib_hash_lock);
311  }
312 @@ -465,6 +489,7 @@ static int fn_hash_insert(struct fib_tab
313                         write_lock_bh(&fib_hash_lock);
314                         fi_drop = fa->fa_info;
315                         fa->fa_info = fi;
316 +                       fa->fa_last_dflt = -1;
317                         fa->fa_type = cfg->fc_type;
318                         fa->fa_scope = cfg->fc_scope;
319                         state = fa->fa_state;
320 @@ -519,6 +544,7 @@ static int fn_hash_insert(struct fib_tab
321         new_fa->fa_type = cfg->fc_type;
322         new_fa->fa_scope = cfg->fc_scope;
323         new_fa->fa_state = 0;
324 +       new_fa->fa_last_dflt = -1;
325  
326         /*
327          * Insert new entry to the list.
328 diff -urp v2.6.25/linux/net/ipv4/fib_lookup.h linux/net/ipv4/fib_lookup.h
329 --- v2.6.25/linux/net/ipv4/fib_lookup.h 2008-04-17 09:58:09.000000000 +0300
330 +++ linux/net/ipv4/fib_lookup.h 2008-04-19 18:30:04.000000000 +0300
331 @@ -8,6 +8,7 @@
332  struct fib_alias {
333         struct list_head        fa_list;
334         struct fib_info         *fa_info;
335 +       int                     fa_last_dflt;
336         u8                      fa_tos;
337         u8                      fa_type;
338         u8                      fa_scope;
339 @@ -38,7 +39,8 @@ extern struct fib_alias *fib_find_alias(
340                                         u8 tos, u32 prio);
341  extern int fib_detect_death(struct fib_info *fi, int order,
342                             struct fib_info **last_resort,
343 -                           int *last_idx, int dflt);
344 +                           int *last_idx, int *dflt, int *last_nhsel,
345 +                           const struct flowi *flp);
346  
347  static inline void fib_result_assign(struct fib_result *res,
348                                      struct fib_info *fi)
349 diff -urp v2.6.25/linux/net/ipv4/fib_rules.c linux/net/ipv4/fib_rules.c
350 --- v2.6.25/linux/net/ipv4/fib_rules.c  2008-04-17 09:58:09.000000000 +0300
351 +++ linux/net/ipv4/fib_rules.c  2008-04-19 18:30:04.000000000 +0300
352 @@ -54,6 +54,11 @@ u32 fib_rules_tclass(struct fib_result *
353  }
354  #endif
355  
356 +int fib_result_table(struct fib_result *res)
357 +{
358 +       return res->r->table;
359 +}
360 +
361  int fib_lookup(struct net *net, struct flowi *flp, struct fib_result *res)
362  {
363         struct fib_lookup_arg arg = {
364 diff -urp v2.6.25/linux/net/ipv4/fib_semantics.c linux/net/ipv4/fib_semantics.c
365 --- v2.6.25/linux/net/ipv4/fib_semantics.c      2008-04-17 09:58:09.000000000 +0300
366 +++ linux/net/ipv4/fib_semantics.c      2008-04-19 18:30:17.000000000 +0300
367 @@ -52,6 +52,7 @@ static struct hlist_head *fib_info_hash;
368  static struct hlist_head *fib_info_laddrhash;
369  static unsigned int fib_hash_size;
370  static unsigned int fib_info_cnt;
371 +rwlock_t fib_nhflags_lock = RW_LOCK_UNLOCKED;
372  
373  #define DEVINDEX_HASHBITS 8
374  #define DEVINDEX_HASHSIZE (1U << DEVINDEX_HASHBITS)
375 @@ -187,7 +188,7 @@ static __inline__ int nh_comp(const stru
376  #ifdef CONFIG_NET_CLS_ROUTE
377                     nh->nh_tclassid != onh->nh_tclassid ||
378  #endif
379 -                   ((nh->nh_flags^onh->nh_flags)&~RTNH_F_DEAD))
380 +                   ((nh->nh_flags^onh->nh_flags)&~RTNH_F_BADSTATE))
381                         return -1;
382                 onh++;
383         } endfor_nexthops(fi);
384 @@ -238,7 +239,7 @@ static struct fib_info *fib_find_info(co
385                     nfi->fib_priority == fi->fib_priority &&
386                     memcmp(nfi->fib_metrics, fi->fib_metrics,
387                            sizeof(fi->fib_metrics)) == 0 &&
388 -                   ((nfi->fib_flags^fi->fib_flags)&~RTNH_F_DEAD) == 0 &&
389 +                   ((nfi->fib_flags^fi->fib_flags)&~RTNH_F_BADSTATE) == 0 &&
390                     (nfi->fib_nhs == 0 || nh_comp(fi, nfi) == 0))
391                         return fi;
392         }
393 @@ -349,26 +350,70 @@ struct fib_alias *fib_find_alias(struct 
394  }
395  
396  int fib_detect_death(struct fib_info *fi, int order,
397 -                    struct fib_info **last_resort, int *last_idx, int dflt)
398 +                    struct fib_info **last_resort, int *last_idx, int *dflt,
399 +                    int *last_nhsel, const struct flowi *flp)
400  {
401         struct neighbour *n;
402 -       int state = NUD_NONE;
403 +       int nhsel;
404 +       int state;
405 +       struct fib_nh * nh;
406 +       __be32 dst;
407 +       int flag, dead = 1;
408 +
409 +       /* change_nexthops(fi) { */
410 +       for (nhsel = 0, nh = fi->fib_nh; nhsel < fi->fib_nhs; nh++, nhsel++) {
411 +               if (flp->oif && flp->oif != nh->nh_oif)
412 +                       continue;
413 +               if (flp->fl4_gw && flp->fl4_gw != nh->nh_gw && nh->nh_gw &&
414 +                   nh->nh_scope == RT_SCOPE_LINK)
415 +                       continue;
416 +               if (nh->nh_flags & RTNH_F_DEAD)
417 +                       continue;
418  
419 -       n = neigh_lookup(&arp_tbl, &fi->fib_nh[0].nh_gw, fi->fib_dev);
420 -       if (n) {
421 -               state = n->nud_state;
422 -               neigh_release(n);
423 -       }
424 -       if (state==NUD_REACHABLE)
425 -               return 0;
426 -       if ((state&NUD_VALID) && order != dflt)
427 -               return 0;
428 -       if ((state&NUD_VALID) ||
429 -           (*last_idx<0 && order > dflt)) {
430 -               *last_resort = fi;
431 -               *last_idx = order;
432 +               flag = 0;
433 +               if (nh->nh_dev->flags & IFF_NOARP) {
434 +                       dead = 0;
435 +                       goto setfl;
436 +               }
437 +
438 +               dst = nh->nh_gw;
439 +               if (!nh->nh_gw || nh->nh_scope != RT_SCOPE_LINK)
440 +                       dst = flp->fl4_dst;
441 +
442 +               state = NUD_NONE;
443 +               n = neigh_lookup(&arp_tbl, &dst, nh->nh_dev);
444 +               if (n) {
445 +                       state = n->nud_state;
446 +                       neigh_release(n);
447 +               }
448 +               if (state==NUD_REACHABLE ||
449 +                       ((state&NUD_VALID) && order != *dflt)) {
450 +                       dead = 0;
451 +                       goto setfl;
452 +               }
453 +               if (!(state&NUD_VALID))
454 +                       flag = 1;
455 +               if (!dead)
456 +                       goto setfl;
457 +               if ((state&NUD_VALID) ||
458 +                   (*last_idx<0 && order >= *dflt)) {
459 +                       *last_resort = fi;
460 +                       *last_idx = order;
461 +                       *last_nhsel = nhsel;
462 +               }
463 +
464 +               setfl:
465 +
466 +               read_lock_bh(&fib_nhflags_lock);
467 +               if (flag)
468 +                       nh->nh_flags |= RTNH_F_SUSPECT;
469 +               else
470 +                       nh->nh_flags &= ~RTNH_F_SUSPECT;
471 +               read_unlock_bh(&fib_nhflags_lock);
472         }
473 -       return 1;
474 +       /* } endfor_nexthops(fi) */
475 +
476 +       return dead;
477  }
478  
479  #ifdef CONFIG_IP_ROUTE_MULTIPATH
480 @@ -540,8 +585,11 @@ static int fib_check_nh(struct fib_confi
481                                 return -EINVAL;
482                         if ((dev = __dev_get_by_index(net, nh->nh_oif)) == NULL)
483                                 return -ENODEV;
484 -                       if (!(dev->flags&IFF_UP))
485 -                               return -ENETDOWN;
486 +                       if (!(dev->flags&IFF_UP)) {
487 +                               if (fi->fib_protocol != RTPROT_STATIC)
488 +                                       return -ENETDOWN;
489 +                               nh->nh_flags |= RTNH_F_DEAD;
490 +                       }
491                         nh->nh_dev = dev;
492                         dev_hold(dev);
493                         nh->nh_scope = RT_SCOPE_LINK;
494 @@ -561,24 +609,48 @@ static int fib_check_nh(struct fib_confi
495                         /* It is not necessary, but requires a bit of thinking */
496                         if (fl.fl4_scope < RT_SCOPE_LINK)
497                                 fl.fl4_scope = RT_SCOPE_LINK;
498 -                       if ((err = fib_lookup(net, &fl, &res)) != 0)
499 -                               return err;
500 +                       err = fib_lookup(net, &fl, &res);
501                 }
502 -               err = -EINVAL;
503 -               if (res.type != RTN_UNICAST && res.type != RTN_LOCAL)
504 -                       goto out;
505 -               nh->nh_scope = res.scope;
506 -               nh->nh_oif = FIB_RES_OIF(res);
507 -               if ((nh->nh_dev = FIB_RES_DEV(res)) == NULL)
508 -                       goto out;
509 -               dev_hold(nh->nh_dev);
510 -               err = -ENETDOWN;
511 -               if (!(nh->nh_dev->flags & IFF_UP))
512 -                       goto out;
513 -               err = 0;
514 +               if (err) {
515 +                       struct in_device *in_dev;
516 +
517 +                       if (err != -ENETUNREACH ||
518 +                           fi->fib_protocol != RTPROT_STATIC)
519 +                               return err;
520 +
521 +                       in_dev = inetdev_by_index(net, nh->nh_oif);
522 +                       if (in_dev == NULL ||
523 +                           in_dev->dev->flags & IFF_UP) {
524 +                               if (in_dev)
525 +                                       in_dev_put(in_dev);
526 +                               return err;
527 +                       }
528 +                       nh->nh_flags |= RTNH_F_DEAD;
529 +                       nh->nh_scope = RT_SCOPE_LINK;
530 +                       nh->nh_dev = in_dev->dev;
531 +                       dev_hold(nh->nh_dev);
532 +                       in_dev_put(in_dev);
533 +               } else {
534 +                       err = -EINVAL;
535 +                       if (res.type != RTN_UNICAST && res.type != RTN_LOCAL)
536 +                               goto out;
537 +                       nh->nh_scope = res.scope;
538 +                       nh->nh_oif = FIB_RES_OIF(res);
539 +                       if ((nh->nh_dev = FIB_RES_DEV(res)) == NULL)
540 +                               goto out;
541 +                       dev_hold(nh->nh_dev);
542 +                       if (!(nh->nh_dev->flags & IFF_UP)) {
543 +                               if (fi->fib_protocol != RTPROT_STATIC) {
544 +                                       err = -ENETDOWN;
545 +                                       goto out;
546 +                               }
547 +                               nh->nh_flags |= RTNH_F_DEAD;
548 +                       }
549 +                       err = 0;
550  out:
551 -               fib_res_put(&res);
552 -               return err;
553 +                       fib_res_put(&res);
554 +                       return err;
555 +               }
556         } else {
557                 struct in_device *in_dev;
558  
559 @@ -589,8 +661,11 @@ out:
560                 if (in_dev == NULL)
561                         return -ENODEV;
562                 if (!(in_dev->dev->flags&IFF_UP)) {
563 -                       in_dev_put(in_dev);
564 -                       return -ENETDOWN;
565 +                       if (fi->fib_protocol != RTPROT_STATIC) {
566 +                               in_dev_put(in_dev);
567 +                               return -ENETDOWN;
568 +                       }
569 +                       nh->nh_flags |= RTNH_F_DEAD;
570                 }
571                 nh->nh_dev = in_dev->dev;
572                 dev_hold(nh->nh_dev);
573 @@ -900,8 +975,12 @@ int fib_semantic_match(struct list_head 
574                                 for_nexthops(fi) {
575                                         if (nh->nh_flags&RTNH_F_DEAD)
576                                                 continue;
577 -                                       if (!flp->oif || flp->oif == nh->nh_oif)
578 -                                               break;
579 +                                       if (flp->oif && flp->oif != nh->nh_oif)
580 +                                               continue;
581 +                                       if (flp->fl4_gw && flp->fl4_gw != nh->nh_gw &&
582 +                                           nh->nh_gw && nh->nh_scope == RT_SCOPE_LINK)
583 +                                               continue;
584 +                                       break;
585                                 }
586  #ifdef CONFIG_IP_ROUTE_MULTIPATH
587                                 if (nhsel < fi->fib_nhs) {
588 @@ -1078,18 +1157,29 @@ int fib_sync_down_dev(struct net_device 
589                 prev_fi = fi;
590                 dead = 0;
591                 change_nexthops(fi) {
592 -                       if (nh->nh_flags&RTNH_F_DEAD)
593 -                               dead++;
594 -                       else if (nh->nh_dev == dev &&
595 -                                       nh->nh_scope != scope) {
596 -                               nh->nh_flags |= RTNH_F_DEAD;
597 +                       if (nh->nh_flags&RTNH_F_DEAD) {
598 +                               if (fi->fib_protocol!=RTPROT_STATIC ||
599 +                                   nh->nh_dev == NULL ||
600 +                                   __in_dev_get_rtnl(nh->nh_dev) == NULL ||
601 +                                   nh->nh_dev->flags&IFF_UP)
602 +                                       dead++;
603 +                       } else if (nh->nh_dev == dev &&
604 +                                  nh->nh_scope != scope) {
605 +                               write_lock_bh(&fib_nhflags_lock);
606  #ifdef CONFIG_IP_ROUTE_MULTIPATH
607 -                               spin_lock_bh(&fib_multipath_lock);
608 +                               spin_lock(&fib_multipath_lock);
609 +                               nh->nh_flags |= RTNH_F_DEAD;
610                                 fi->fib_power -= nh->nh_power;
611                                 nh->nh_power = 0;
612 -                               spin_unlock_bh(&fib_multipath_lock);
613 +                               spin_unlock(&fib_multipath_lock);
614 +#else
615 +                               nh->nh_flags |= RTNH_F_DEAD;
616  #endif
617 -                               dead++;
618 +                               write_unlock_bh(&fib_nhflags_lock);
619 +                               if (fi->fib_protocol!=RTPROT_STATIC ||
620 +                                   force ||
621 +                                   __in_dev_get_rtnl(dev) == NULL)
622 +                                       dead++;
623                         }
624  #ifdef CONFIG_IP_ROUTE_MULTIPATH
625                         if (force > 1 && nh->nh_dev == dev) {
626 @@ -1107,11 +1197,8 @@ int fib_sync_down_dev(struct net_device 
627         return ret;
628  }
629  
630 -#ifdef CONFIG_IP_ROUTE_MULTIPATH
631 -
632  /*
633 -   Dead device goes up. We wake up dead nexthops.
634 -   It takes sense only on multipath routes.
635 +   Dead device goes up or new address is added. We wake up dead nexthops.
636   */
637  
638  int fib_sync_up(struct net_device *dev)
639 @@ -1121,8 +1208,10 @@ int fib_sync_up(struct net_device *dev)
640         struct hlist_head *head;
641         struct hlist_node *node;
642         struct fib_nh *nh;
643 -       int ret;
644 +       struct fib_result res;
645 +       int ret, rep;
646  
647 +repeat:
648         if (!(dev->flags&IFF_UP))
649                 return 0;
650  
651 @@ -1130,6 +1219,7 @@ int fib_sync_up(struct net_device *dev)
652         hash = fib_devindex_hashfn(dev->ifindex);
653         head = &fib_info_devhash[hash];
654         ret = 0;
655 +       rep = 0;
656  
657         hlist_for_each_entry(nh, node, head, nh_hash) {
658                 struct fib_info *fi = nh->nh_parent;
659 @@ -1142,19 +1232,39 @@ int fib_sync_up(struct net_device *dev)
660                 prev_fi = fi;
661                 alive = 0;
662                 change_nexthops(fi) {
663 -                       if (!(nh->nh_flags&RTNH_F_DEAD)) {
664 -                               alive++;
665 +                       if (!(nh->nh_flags&RTNH_F_DEAD))
666                                 continue;
667 -                       }
668                         if (nh->nh_dev == NULL || !(nh->nh_dev->flags&IFF_UP))
669                                 continue;
670                         if (nh->nh_dev != dev || !__in_dev_get_rtnl(dev))
671                                 continue;
672 +                       if (nh->nh_gw && fi->fib_protocol == RTPROT_STATIC) {
673 +                               struct flowi fl = {
674 +                                       .nl_u = { .ip4_u =
675 +                                                 { .daddr = nh->nh_gw,
676 +                                                   .scope = nh->nh_scope } },
677 +                                       .oif =  nh->nh_oif,
678 +                               };
679 +                               if (fib_lookup(dev->nd_net, &fl, &res) != 0)
680 +                                       continue;
681 +                               if (res.type != RTN_UNICAST &&
682 +                                   res.type != RTN_LOCAL) {
683 +                                       fib_res_put(&res);
684 +                                       continue;
685 +                               }
686 +                               nh->nh_scope = res.scope;
687 +                               fib_res_put(&res);
688 +                               rep = 1;
689 +                       }
690                         alive++;
691 +#ifdef CONFIG_IP_ROUTE_MULTIPATH
692                         spin_lock_bh(&fib_multipath_lock);
693                         nh->nh_power = 0;
694 +#endif
695                         nh->nh_flags &= ~RTNH_F_DEAD;
696 +#ifdef CONFIG_IP_ROUTE_MULTIPATH
697                         spin_unlock_bh(&fib_multipath_lock);
698 +#endif
699                 } endfor_nexthops(fi)
700  
701                 if (alive > 0) {
702 @@ -1162,10 +1272,14 @@ int fib_sync_up(struct net_device *dev)
703                         ret++;
704                 }
705         }
706 +       if (rep)
707 +               goto repeat;
708  
709         return ret;
710  }
711  
712 +#ifdef CONFIG_IP_ROUTE_MULTIPATH
713 +
714  /*
715     The algorithm is suboptimal, but it provides really
716     fair weighted route distribution.
717 @@ -1174,24 +1288,45 @@ int fib_sync_up(struct net_device *dev)
718  void fib_select_multipath(const struct flowi *flp, struct fib_result *res)
719  {
720         struct fib_info *fi = res->fi;
721 -       int w;
722 +       int w, alive;
723  
724         spin_lock_bh(&fib_multipath_lock);
725 +       if (flp->oif) {
726 +               int sel = -1;
727 +               w = -1;
728 +               change_nexthops(fi) {
729 +                       if (flp->oif != nh->nh_oif)
730 +                               continue;
731 +                       if (flp->fl4_gw && flp->fl4_gw != nh->nh_gw &&
732 +                           nh->nh_gw && nh->nh_scope == RT_SCOPE_LINK)
733 +                               continue;
734 +                       if (!(nh->nh_flags&RTNH_F_BADSTATE)) {
735 +                               if (nh->nh_power > w) {
736 +                                       w = nh->nh_power;
737 +                                       sel = nhsel;
738 +                               }
739 +                       }
740 +               } endfor_nexthops(fi);
741 +               if (sel >= 0) {
742 +                       spin_unlock_bh(&fib_multipath_lock);
743 +                       res->nh_sel = sel;
744 +                       return;
745 +               }
746 +               goto last_resort;
747 +       }
748 +
749 +repeat:
750         if (fi->fib_power <= 0) {
751                 int power = 0;
752                 change_nexthops(fi) {
753 -                       if (!(nh->nh_flags&RTNH_F_DEAD)) {
754 +                       if (!(nh->nh_flags&RTNH_F_BADSTATE)) {
755                                 power += nh->nh_weight;
756                                 nh->nh_power = nh->nh_weight;
757                         }
758                 } endfor_nexthops(fi);
759                 fi->fib_power = power;
760 -               if (power <= 0) {
761 -                       spin_unlock_bh(&fib_multipath_lock);
762 -                       /* Race condition: route has just become dead. */
763 -                       res->nh_sel = 0;
764 -                       return;
765 -               }
766 +               if (power <= 0)
767 +                       goto last_resort;
768         }
769  
770  
771 @@ -1201,20 +1336,40 @@ void fib_select_multipath(const struct f
772  
773         w = jiffies % fi->fib_power;
774  
775 +       alive = 0;
776         change_nexthops(fi) {
777 -               if (!(nh->nh_flags&RTNH_F_DEAD) && nh->nh_power) {
778 +               if (!(nh->nh_flags&RTNH_F_BADSTATE) && nh->nh_power) {
779                         if ((w -= nh->nh_power) <= 0) {
780                                 nh->nh_power--;
781                                 fi->fib_power--;
782 -                               res->nh_sel = nhsel;
783                                 spin_unlock_bh(&fib_multipath_lock);
784 +                               res->nh_sel = nhsel;
785                                 return;
786                         }
787 +                       alive = 1;
788 +               }
789 +       } endfor_nexthops(fi);
790 +       if (alive) {
791 +               fi->fib_power = 0;
792 +               goto repeat;
793 +       }
794 +
795 +last_resort:
796 +
797 +       for_nexthops(fi) {
798 +               if (!(nh->nh_flags&RTNH_F_DEAD)) {
799 +                       if (flp->oif && flp->oif != nh->nh_oif)
800 +                               continue;
801 +                       if (flp->fl4_gw && flp->fl4_gw != nh->nh_gw &&
802 +                           nh->nh_gw && nh->nh_scope == RT_SCOPE_LINK)
803 +                               continue;
804 +                       spin_unlock_bh(&fib_multipath_lock);
805 +                       res->nh_sel = nhsel;
806 +                       return;
807                 }
808         } endfor_nexthops(fi);
809  
810         /* Race condition: route has just become dead. */
811 -       res->nh_sel = 0;
812         spin_unlock_bh(&fib_multipath_lock);
813  }
814  #endif
815 diff -urp v2.6.25/linux/net/ipv4/netfilter/ipt_MASQUERADE.c linux/net/ipv4/netfilter/ipt_MASQUERADE.c
816 --- v2.6.25/linux/net/ipv4/netfilter/ipt_MASQUERADE.c   2008-04-17 09:58:09.000000000 +0300
817 +++ linux/net/ipv4/netfilter/ipt_MASQUERADE.c   2008-04-19 18:30:17.000000000 +0300
818 @@ -59,7 +59,7 @@ masquerade_tg(struct sk_buff *skb, const
819         enum ip_conntrack_info ctinfo;
820         struct nf_nat_range newrange;
821         const struct nf_nat_multi_range_compat *mr;
822 -       const struct rtable *rt;
823 +       struct rtable *rt;
824         __be32 newsrc;
825  
826         NF_CT_ASSERT(hooknum == NF_INET_POST_ROUTING);
827 @@ -77,13 +77,28 @@ masquerade_tg(struct sk_buff *skb, const
828                 return NF_ACCEPT;
829  
830         mr = targinfo;
831 -       rt = (struct rtable *)skb->dst;
832 -       newsrc = inet_select_addr(out, rt->rt_gateway, RT_SCOPE_UNIVERSE);
833 -       if (!newsrc) {
834 -               printk("MASQUERADE: %s ate my IP address\n", out->name);
835 -               return NF_DROP;
836 +
837 +       {
838 +               struct flowi fl = { .nl_u = { .ip4_u =
839 +                                             { .daddr = ip_hdr(skb)->daddr,
840 +                                               .tos = (RT_TOS(ip_hdr(skb)->tos) |
841 +                                                       RTO_CONN),
842 +                                               .gw = ((struct rtable *) skb->dst)->rt_gateway,
843 +                                             } },
844 +                                   .mark = skb->mark,
845 +                                   .oif = out->ifindex };
846 +               if (ip_route_output_key(out->nd_net, &rt, &fl) != 0) {
847 +                       /* Funky routing can do this. */
848 +                       if (net_ratelimit())
849 +                               printk("MASQUERADE:"
850 +                                      " No route: Rusty's brain broke!\n");
851 +                       return NF_DROP;
852 +               }
853         }
854  
855 +       newsrc = rt->rt_src;
856 +       ip_rt_put(rt);
857 +
858         write_lock_bh(&masq_lock);
859         nat->masq_index = out->ifindex;
860         write_unlock_bh(&masq_lock);
861 diff -urp v2.6.25/linux/net/ipv4/netfilter/nf_nat_core.c linux/net/ipv4/netfilter/nf_nat_core.c
862 --- v2.6.25/linux/net/ipv4/netfilter/nf_nat_core.c      2008-04-17 09:58:09.000000000 +0300
863 +++ linux/net/ipv4/netfilter/nf_nat_core.c      2008-04-19 18:30:17.000000000 +0300
864 @@ -624,6 +624,52 @@ static struct nf_ct_ext_type nat_extend 
865         .flags          = NF_CT_EXT_F_PREALLOC,
866  };
867  
868 +unsigned int
869 +ip_nat_route_input(unsigned int hooknum,
870 +               struct sk_buff *skb,
871 +               const struct net_device *in,
872 +               const struct net_device *out,
873 +               int (*okfn)(struct sk_buff *))
874 +{
875 +       struct iphdr *iph;
876 +       struct nf_conn *conn;
877 +       enum ip_conntrack_info ctinfo;
878 +       enum ip_conntrack_dir dir;
879 +       unsigned long statusbit;
880 +       __be32 saddr;
881 +
882 +       if (!(conn = nf_ct_get(skb, &ctinfo)))
883 +               return NF_ACCEPT;
884 +
885 +       if (!(conn->status & IPS_NAT_DONE_MASK))
886 +               return NF_ACCEPT;
887 +       dir = CTINFO2DIR(ctinfo);
888 +       statusbit = IPS_SRC_NAT;
889 +       if (dir == IP_CT_DIR_REPLY)
890 +               statusbit ^= IPS_NAT_MASK;
891 +       if (!(conn->status & statusbit))
892 +               return NF_ACCEPT;
893 +
894 +       if (skb->dst)
895 +               return NF_ACCEPT;
896 +
897 +       if (skb->len < sizeof(struct iphdr))
898 +               return NF_ACCEPT;
899 +
900 +       /* use daddr in other direction as masquerade address (lsrc) */
901 +       iph = ip_hdr(skb);
902 +       saddr = conn->tuplehash[!dir].tuple.dst.u3.ip;
903 +       if (saddr == iph->saddr)
904 +               return NF_ACCEPT;
905 +
906 +       if (ip_route_input_lookup(skb, iph->daddr, iph->saddr, iph->tos,
907 +           skb->dev, saddr))
908 +               return NF_DROP;
909 +
910 +       return NF_ACCEPT;
911 +}
912 +EXPORT_SYMBOL_GPL(ip_nat_route_input);
913 +
914  static int __init nf_nat_init(void)
915  {
916         size_t i;
917 diff -urp v2.6.25/linux/net/ipv4/netfilter/nf_nat_standalone.c linux/net/ipv4/netfilter/nf_nat_standalone.c
918 --- v2.6.25/linux/net/ipv4/netfilter/nf_nat_standalone.c        2008-04-17 09:58:09.000000000 +0300
919 +++ linux/net/ipv4/netfilter/nf_nat_standalone.c        2008-04-19 18:30:17.000000000 +0300
920 @@ -282,6 +282,14 @@ static struct nf_hook_ops nf_nat_ops[] _
921                 .hooknum        = NF_INET_PRE_ROUTING,
922                 .priority       = NF_IP_PRI_NAT_DST,
923         },
924 +       /* Before routing, route before mangling */
925 +       {
926 +               .hook           = ip_nat_route_input,
927 +               .owner          = THIS_MODULE,
928 +               .pf             = PF_INET,
929 +               .hooknum        = NF_INET_PRE_ROUTING,
930 +               .priority       = NF_IP_PRI_LAST-1,
931 +       },
932         /* After packet filtering, change source */
933         {
934                 .hook           = nf_nat_out,
935 diff -urp v2.6.25/linux/net/ipv4/route.c linux/net/ipv4/route.c
936 --- v2.6.25/linux/net/ipv4/route.c      2008-04-17 09:58:09.000000000 +0300
937 +++ linux/net/ipv4/route.c      2008-04-19 18:30:17.000000000 +0300
938 @@ -1207,6 +1207,7 @@ void ip_rt_redirect(__be32 old_gw, __be3
939  
940                                 /* Gateway is different ... */
941                                 rt->rt_gateway          = new_gw;
942 +                               if (rt->fl.fl4_gw) rt->fl.fl4_gw = new_gw;
943  
944                                 /* Redirect received -> path was valid */
945                                 dst_confirm(&rth->u.dst);
946 @@ -1647,6 +1648,7 @@ static int ip_route_input_mc(struct sk_b
947         rth->fl.fl4_tos = tos;
948         rth->fl.mark    = skb->mark;
949         rth->fl.fl4_src = saddr;
950 +       rth->fl.fl4_lsrc = 0;
951         rth->rt_src     = saddr;
952  #ifdef CONFIG_NET_CLS_ROUTE
953         rth->u.dst.tclassid = itag;
954 @@ -1657,6 +1659,7 @@ static int ip_route_input_mc(struct sk_b
955         dev_hold(rth->u.dst.dev);
956         rth->idev       = in_dev_get(rth->u.dst.dev);
957         rth->fl.oif     = 0;
958 +       rth->fl.fl4_gw  = 0;
959         rth->rt_gateway = daddr;
960         rth->rt_spec_dst= spec_dst;
961         rth->rt_genid   = atomic_read(&rt_genid);
962 @@ -1722,7 +1725,7 @@ static inline int __mkroute_input(struct
963                                   struct fib_result* res,
964                                   struct in_device *in_dev,
965                                   __be32 daddr, __be32 saddr, u32 tos,
966 -                                 struct rtable **result)
967 +                                 __be32 lsrc, struct rtable **result)
968  {
969  
970         struct rtable *rth;
971 @@ -1756,6 +1759,7 @@ static inline int __mkroute_input(struct
972                 flags |= RTCF_DIRECTSRC;
973  
974         if (out_dev == in_dev && err && !(flags & RTCF_MASQ) &&
975 +           !lsrc &&
976             (IN_DEV_SHARED_MEDIA(out_dev) ||
977              inet_addr_onlink(out_dev, saddr, FIB_RES_GW(*res))))
978                 flags |= RTCF_DOREDIRECT;
979 @@ -1789,6 +1793,7 @@ static inline int __mkroute_input(struct
980         rth->fl.mark    = skb->mark;
981         rth->fl.fl4_src = saddr;
982         rth->rt_src     = saddr;
983 +       rth->fl.fl4_lsrc        = lsrc;
984         rth->rt_gateway = daddr;
985         rth->rt_iif     =
986                 rth->fl.iif     = in_dev->dev->ifindex;
987 @@ -1796,6 +1801,7 @@ static inline int __mkroute_input(struct
988         dev_hold(rth->u.dst.dev);
989         rth->idev       = in_dev_get(rth->u.dst.dev);
990         rth->fl.oif     = 0;
991 +       rth->fl.fl4_gw  = 0;
992         rth->rt_spec_dst= spec_dst;
993  
994         rth->u.dst.input = ip_forward;
995 @@ -1816,21 +1822,23 @@ static inline int __mkroute_input(struct
996  
997  static inline int ip_mkroute_input(struct sk_buff *skb,
998                                    struct fib_result* res,
999 +                                  struct net *net,
1000                                    const struct flowi *fl,
1001                                    struct in_device *in_dev,
1002 -                                  __be32 daddr, __be32 saddr, u32 tos)
1003 +                                  __be32 daddr, __be32 saddr, u32 tos, __be32 lsrc)
1004  {
1005         struct rtable* rth = NULL;
1006         int err;
1007         unsigned hash;
1008  
1009 +       fib_select_default(net, fl, res);
1010  #ifdef CONFIG_IP_ROUTE_MULTIPATH
1011 -       if (res->fi && res->fi->fib_nhs > 1 && fl->oif == 0)
1012 +       if (res->fi && res->fi->fib_nhs > 1)
1013                 fib_select_multipath(fl, res);
1014  #endif
1015  
1016         /* create a routing cache entry */
1017 -       err = __mkroute_input(skb, res, in_dev, daddr, saddr, tos, &rth);
1018 +       err = __mkroute_input(skb, res, in_dev, daddr, saddr, tos, lsrc, &rth);
1019         if (err)
1020                 return err;
1021  
1022 @@ -1850,18 +1858,19 @@ static inline int ip_mkroute_input(struc
1023   */
1024  
1025  static int ip_route_input_slow(struct sk_buff *skb, __be32 daddr, __be32 saddr,
1026 -                              u8 tos, struct net_device *dev)
1027 +                              u8 tos, struct net_device *dev, __be32 lsrc)
1028  {
1029         struct fib_result res;
1030         struct in_device *in_dev = in_dev_get(dev);
1031         struct flowi fl = { .nl_u = { .ip4_u =
1032                                       { .daddr = daddr,
1033 -                                       .saddr = saddr,
1034 +                                       .saddr = lsrc? : saddr,
1035                                         .tos = tos,
1036                                         .scope = RT_SCOPE_UNIVERSE,
1037                                       } },
1038                             .mark = skb->mark,
1039 -                           .iif = dev->ifindex };
1040 +                           .iif = lsrc?
1041 +                               init_net.loopback_dev->ifindex : dev->ifindex };
1042         unsigned        flags = 0;
1043         u32             itag = 0;
1044         struct rtable * rth;
1045 @@ -1897,6 +1906,12 @@ static int ip_route_input_slow(struct sk
1046             ipv4_is_loopback(daddr))
1047                 goto martian_destination;
1048  
1049 +       if (lsrc) {
1050 +               if (ipv4_is_multicast(lsrc) || ipv4_is_lbcast(lsrc) ||
1051 +                   ipv4_is_zeronet(lsrc) || ipv4_is_loopback(lsrc))
1052 +                       goto e_inval;
1053 +       }
1054 +
1055         /*
1056          *      Now we are ready to route packet.
1057          */
1058 @@ -1906,6 +1921,8 @@ static int ip_route_input_slow(struct sk
1059                 goto no_route;
1060         }
1061         free_res = 1;
1062 +       fl.iif = dev->ifindex;
1063 +       fl.fl4_src = saddr;
1064  
1065         RT_CACHE_STAT_INC(in_slow_tot);
1066  
1067 @@ -1930,7 +1947,7 @@ static int ip_route_input_slow(struct sk
1068         if (res.type != RTN_UNICAST)
1069                 goto martian_destination;
1070  
1071 -       err = ip_mkroute_input(skb, &res, &fl, in_dev, daddr, saddr, tos);
1072 +       err = ip_mkroute_input(skb, &res, net, &fl, in_dev, daddr, saddr, tos, lsrc);
1073  done:
1074         in_dev_put(in_dev);
1075         if (free_res)
1076 @@ -1940,6 +1957,8 @@ out:      return err;
1077  brd_input:
1078         if (skb->protocol != htons(ETH_P_IP))
1079                 goto e_inval;
1080 +       if (lsrc)
1081 +               goto e_inval;
1082  
1083         if (ipv4_is_zeronet(saddr))
1084                 spec_dst = inet_select_addr(dev, 0, RT_SCOPE_LINK);
1085 @@ -1981,6 +2000,7 @@ local_input:
1086         rth->u.dst.dev  = net->loopback_dev;
1087         dev_hold(rth->u.dst.dev);
1088         rth->idev       = in_dev_get(rth->u.dst.dev);
1089 +       rth->fl.fl4_gw  = 0;
1090         rth->rt_gateway = daddr;
1091         rth->rt_spec_dst= spec_dst;
1092         rth->u.dst.input= ip_local_deliver;
1093 @@ -2032,8 +2052,9 @@ martian_source:
1094         goto e_inval;
1095  }
1096  
1097 -int ip_route_input(struct sk_buff *skb, __be32 daddr, __be32 saddr,
1098 -                  u8 tos, struct net_device *dev)
1099 +static inline int
1100 +ip_route_input_cached(struct sk_buff *skb, __be32 daddr, __be32 saddr,
1101 +                  u8 tos, struct net_device *dev, __be32 lsrc)
1102  {
1103         struct rtable * rth;
1104         unsigned        hash;
1105 @@ -2050,6 +2071,7 @@ int ip_route_input(struct sk_buff *skb, 
1106                 if (rth->fl.fl4_dst == daddr &&
1107                     rth->fl.fl4_src == saddr &&
1108                     rth->fl.iif == iif &&
1109 +                   rth->fl.fl4_lsrc == lsrc &&
1110                     rth->fl.oif == 0 &&
1111                     rth->fl.mark == skb->mark &&
1112                     rth->fl.fl4_tos == tos &&
1113 @@ -2097,7 +2119,19 @@ int ip_route_input(struct sk_buff *skb, 
1114                 rcu_read_unlock();
1115                 return -EINVAL;
1116         }
1117 -       return ip_route_input_slow(skb, daddr, saddr, tos, dev);
1118 +       return ip_route_input_slow(skb, daddr, saddr, tos, dev, lsrc);
1119 +}
1120 +
1121 +int ip_route_input(struct sk_buff *skb, __be32 daddr, __be32 saddr,
1122 +                  u8 tos, struct net_device *dev)
1123 +{
1124 +       return ip_route_input_cached(skb, daddr, saddr, tos, dev, 0);
1125 +}
1126 +
1127 +int ip_route_input_lookup(struct sk_buff *skb, __be32 daddr, __be32 saddr,
1128 +                         u8 tos, struct net_device *dev, __be32 lsrc)
1129 +{
1130 +       return ip_route_input_cached(skb, daddr, saddr, tos, dev, lsrc);
1131  }
1132  
1133  static inline int __mkroute_output(struct rtable **result,
1134 @@ -2169,6 +2203,7 @@ static inline int __mkroute_output(struc
1135         rth->fl.fl4_tos = tos;
1136         rth->fl.fl4_src = oldflp->fl4_src;
1137         rth->fl.oif     = oldflp->oif;
1138 +       rth->fl.fl4_gw  = oldflp->fl4_gw;
1139         rth->fl.mark    = oldflp->mark;
1140         rth->rt_dst     = fl->fl4_dst;
1141         rth->rt_src     = fl->fl4_src;
1142 @@ -2249,6 +2284,7 @@ static int ip_route_output_slow(struct n
1143         struct flowi fl = { .nl_u = { .ip4_u =
1144                                       { .daddr = oldflp->fl4_dst,
1145                                         .saddr = oldflp->fl4_src,
1146 +                                       .gw = oldflp->fl4_gw,
1147                                         .tos = tos & IPTOS_RT_MASK,
1148                                         .scope = ((tos & RTO_ONLINK) ?
1149                                                   RT_SCOPE_LINK :
1150 @@ -2354,6 +2390,7 @@ static int ip_route_output_slow(struct n
1151                 dev_out = net->loopback_dev;
1152                 dev_hold(dev_out);
1153                 fl.oif = net->loopback_dev->ifindex;
1154 +               fl.fl4_gw = 0;
1155                 res.type = RTN_LOCAL;
1156                 flags |= RTCF_LOCAL;
1157                 goto make_route;
1158 @@ -2361,7 +2398,7 @@ static int ip_route_output_slow(struct n
1159  
1160         if (fib_lookup(net, &fl, &res)) {
1161                 res.fi = NULL;
1162 -               if (oldflp->oif) {
1163 +               if (oldflp->oif && dev_out->flags & IFF_UP) {
1164                         /* Apparently, routing tables are wrong. Assume,
1165                            that the destination is on link.
1166  
1167 @@ -2401,6 +2438,7 @@ static int ip_route_output_slow(struct n
1168                 dev_out = net->loopback_dev;
1169                 dev_hold(dev_out);
1170                 fl.oif = dev_out->ifindex;
1171 +               fl.fl4_gw = 0;
1172                 if (res.fi)
1173                         fib_info_put(res.fi);
1174                 res.fi = NULL;
1175 @@ -2408,13 +2446,12 @@ static int ip_route_output_slow(struct n
1176                 goto make_route;
1177         }
1178  
1179 +       if (res.type == RTN_UNICAST)
1180 +               fib_select_default(net, &fl, &res);
1181  #ifdef CONFIG_IP_ROUTE_MULTIPATH
1182 -       if (res.fi->fib_nhs > 1 && fl.oif == 0)
1183 +       if (res.fi->fib_nhs > 1)
1184                 fib_select_multipath(&fl, &res);
1185 -       else
1186  #endif
1187 -       if (!res.prefixlen && res.type == RTN_UNICAST && !fl.oif)
1188 -               fib_select_default(net, &fl, &res);
1189  
1190         if (!fl.fl4_src)
1191                 fl.fl4_src = FIB_RES_PREFSRC(res);
1192 @@ -2452,6 +2489,7 @@ int __ip_route_output_key(struct net *ne
1193                     rth->fl.fl4_src == flp->fl4_src &&
1194                     rth->fl.iif == 0 &&
1195                     rth->fl.oif == flp->oif &&
1196 +                   rth->fl.fl4_gw == flp->fl4_gw &&
1197                     rth->fl.mark == flp->mark &&
1198                     !((rth->fl.fl4_tos ^ flp->fl4_tos) &
1199                             (IPTOS_RT_MASK | RTO_ONLINK)) &&
1200 @@ -3054,3 +3092,4 @@ int __init ip_rt_init(void)
1201  EXPORT_SYMBOL(__ip_select_ident);
1202  EXPORT_SYMBOL(ip_route_input);
1203  EXPORT_SYMBOL(ip_route_output_key);
1204 +EXPORT_SYMBOL(ip_route_input_lookup);
This page took 0.334535 seconds and 3 git commands to generate.