2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
6 * ROUTE - implementation of the IP router.
8 * Version: $Id: route.c,v 1.103 2002/01/12 07:44:09 davem Exp $
11 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
12 * Alan Cox, <gw4pts@gw4pts.ampr.org>
13 * Linus Torvalds, <Linus.Torvalds@helsinki.fi>
14 * Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
17 * Alan Cox : Verify area fixes.
18 * Alan Cox : cli() protects routing changes
19 * Rui Oliveira : ICMP routing table updates
20 * (rco@di.uminho.pt) Routing table insertion and update
21 * Linus Torvalds : Rewrote bits to be sensible
22 * Alan Cox : Added BSD route gw semantics
23 * Alan Cox : Super /proc >4K
24 * Alan Cox : MTU in route table
25 * Alan Cox : MSS actually. Also added the window
27 * Sam Lantinga : Fixed route matching in rt_del()
28 * Alan Cox : Routing cache support.
29 * Alan Cox : Removed compatibility cruft.
30 * Alan Cox : RTF_REJECT support.
31 * Alan Cox : TCP irtt support.
32 * Jonathan Naylor : Added Metric support.
33 * Miquel van Smoorenburg : BSD API fixes.
34 * Miquel van Smoorenburg : Metrics.
35 * Alan Cox : Use __u32 properly
36 * Alan Cox : Aligned routing errors more closely with BSD
37 * our system is still very different.
38 * Alan Cox : Faster /proc handling
39 * Alexey Kuznetsov : Massive rework to support tree based routing,
40 * routing caches and better behaviour.
42 * Olaf Erb : irtt wasn't being copied right.
43 * Bjorn Ekwall : Kerneld route support.
44 * Alan Cox : Multicast fixed (I hope)
45 * Pavel Krauz : Limited broadcast fixed
46 * Mike McLagan : Routing by source
47 * Alexey Kuznetsov : End of old history. Split to fib.c and
48 * route.c and rewritten from scratch.
49 * Andi Kleen : Load-limit warning messages.
50 * Vitaly E. Lavrov : Transparent proxy revived after year coma.
51 * Vitaly E. Lavrov : Race condition in ip_route_input_slow.
52 * Tobias Ringstrom : Uninitialized res.type in ip_route_output_slow.
53 * Vladimir V. Ivanov : IP rule info (flowid) is really useful.
54 * Marc Boucher : routing by fwmark
55 * Robert Olsson : Added rt_cache statistics
56 * Arnaldo C. Melo : Convert proc stuff to seq_file
57 * Eric Dumazet : hashed spinlocks and rt_check_expire() fixes.
58 * Ilia Sotnikov : Ignore TOS on PMTUD and Redirect
59 * Ilia Sotnikov : Removed TOS from hash calculations
61 * This program is free software; you can redistribute it and/or
62 * modify it under the terms of the GNU General Public License
63 * as published by the Free Software Foundation; either version
64 * 2 of the License, or (at your option) any later version.
67 #include <linux/module.h>
68 #include <asm/uaccess.h>
69 #include <asm/system.h>
70 #include <linux/bitops.h>
71 #include <linux/types.h>
72 #include <linux/kernel.h>
74 #include <linux/bootmem.h>
75 #include <linux/string.h>
76 #include <linux/socket.h>
77 #include <linux/sockios.h>
78 #include <linux/errno.h>
80 #include <linux/inet.h>
81 #include <linux/netdevice.h>
82 #include <linux/proc_fs.h>
83 #include <linux/init.h>
84 #include <linux/workqueue.h>
85 #include <linux/skbuff.h>
86 #include <linux/inetdevice.h>
87 #include <linux/igmp.h>
88 #include <linux/pkt_sched.h>
89 #include <linux/mroute.h>
90 #include <linux/netfilter_ipv4.h>
91 #include <linux/random.h>
92 #include <linux/jhash.h>
93 #include <linux/rcupdate.h>
94 #include <linux/times.h>
96 #include <net/net_namespace.h>
97 #include <net/protocol.h>
99 #include <net/route.h>
100 #include <net/inetpeer.h>
101 #include <net/sock.h>
102 #include <net/ip_fib.h>
105 #include <net/icmp.h>
106 #include <net/xfrm.h>
107 #include <net/netevent.h>
108 #include <net/rtnetlink.h>
110 #include <linux/sysctl.h>
113 #define RT_FL_TOS(oldflp) \
114 ((u32)(oldflp->fl4_tos & (IPTOS_RT_MASK | RTO_ONLINK)))
116 #define IP_MAX_MTU 0xFFF0
118 #define RT_GC_TIMEOUT (300*HZ)
120 static int ip_rt_min_delay = 2 * HZ;
121 static int ip_rt_max_delay = 10 * HZ;
122 static int ip_rt_max_size;
123 static int ip_rt_gc_timeout = RT_GC_TIMEOUT;
124 static int ip_rt_gc_interval = 60 * HZ;
125 static int ip_rt_gc_min_interval = HZ / 2;
126 static int ip_rt_redirect_number = 9;
127 static int ip_rt_redirect_load = HZ / 50;
128 static int ip_rt_redirect_silence = ((HZ / 50) << (9 + 1));
129 static int ip_rt_error_cost = HZ;
130 static int ip_rt_error_burst = 5 * HZ;
131 static int ip_rt_gc_elasticity = 8;
132 static int ip_rt_mtu_expires = 10 * 60 * HZ;
133 static int ip_rt_min_pmtu = 512 + 20 + 20;
134 static int ip_rt_min_advmss = 256;
135 static int ip_rt_secret_interval = 10 * 60 * HZ;
136 static int ip_rt_flush_expected;
137 static unsigned long rt_deadline;
139 #define RTprint(a...) printk(KERN_DEBUG a)
141 static struct timer_list rt_flush_timer;
142 static void rt_worker_func(struct work_struct *work);
143 static DECLARE_DELAYED_WORK(expires_work, rt_worker_func);
144 static struct timer_list rt_secret_timer;
147 * Interface to generic destination cache.
150 static struct dst_entry *ipv4_dst_check(struct dst_entry *dst, u32 cookie);
151 static void ipv4_dst_destroy(struct dst_entry *dst);
152 static void ipv4_dst_ifdown(struct dst_entry *dst,
153 struct net_device *dev, int how);
154 static struct dst_entry *ipv4_negative_advice(struct dst_entry *dst);
155 static void ipv4_link_failure(struct sk_buff *skb);
156 static void ip_rt_update_pmtu(struct dst_entry *dst, u32 mtu);
157 static int rt_garbage_collect(void);
160 static struct dst_ops ipv4_dst_ops = {
162 .protocol = __constant_htons(ETH_P_IP),
163 .gc = rt_garbage_collect,
164 .check = ipv4_dst_check,
165 .destroy = ipv4_dst_destroy,
166 .ifdown = ipv4_dst_ifdown,
167 .negative_advice = ipv4_negative_advice,
168 .link_failure = ipv4_link_failure,
169 .update_pmtu = ip_rt_update_pmtu,
170 .local_out = ip_local_out,
171 .entry_size = sizeof(struct rtable),
174 #define ECN_OR_COST(class) TC_PRIO_##class
176 const __u8 ip_tos2prio[16] = {
180 ECN_OR_COST(BESTEFFORT),
186 ECN_OR_COST(INTERACTIVE),
188 ECN_OR_COST(INTERACTIVE),
189 TC_PRIO_INTERACTIVE_BULK,
190 ECN_OR_COST(INTERACTIVE_BULK),
191 TC_PRIO_INTERACTIVE_BULK,
192 ECN_OR_COST(INTERACTIVE_BULK)
200 /* The locking scheme is rather straight forward:
202 * 1) Read-Copy Update protects the buckets of the central route hash.
203 * 2) Only writers remove entries, and they hold the lock
204 * as they look at rtable reference counts.
205 * 3) Only readers acquire references to rtable entries,
206 * they do so with atomic increments and with the
210 struct rt_hash_bucket {
211 struct rtable *chain;
213 #if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK) || \
214 defined(CONFIG_PROVE_LOCKING)
216 * Instead of using one spinlock for each rt_hash_bucket, we use a table of spinlocks
217 * The size of this table is a power of two and depends on the number of CPUS.
218 * (on lockdep we have a quite big spinlock_t, so keep the size down there)
220 #ifdef CONFIG_LOCKDEP
221 # define RT_HASH_LOCK_SZ 256
224 # define RT_HASH_LOCK_SZ 4096
226 # define RT_HASH_LOCK_SZ 2048
228 # define RT_HASH_LOCK_SZ 1024
230 # define RT_HASH_LOCK_SZ 512
232 # define RT_HASH_LOCK_SZ 256
236 static spinlock_t *rt_hash_locks;
237 # define rt_hash_lock_addr(slot) &rt_hash_locks[(slot) & (RT_HASH_LOCK_SZ - 1)]
239 static __init void rt_hash_lock_init(void)
243 rt_hash_locks = kmalloc(sizeof(spinlock_t) * RT_HASH_LOCK_SZ,
246 panic("IP: failed to allocate rt_hash_locks\n");
248 for (i = 0; i < RT_HASH_LOCK_SZ; i++)
249 spin_lock_init(&rt_hash_locks[i]);
252 # define rt_hash_lock_addr(slot) NULL
254 static inline void rt_hash_lock_init(void)
259 static struct rt_hash_bucket *rt_hash_table;
260 static unsigned rt_hash_mask;
261 static unsigned int rt_hash_log;
262 static unsigned int rt_hash_rnd;
264 static DEFINE_PER_CPU(struct rt_cache_stat, rt_cache_stat);
265 #define RT_CACHE_STAT_INC(field) \
266 (__raw_get_cpu_var(rt_cache_stat).field++)
268 static int rt_intern_hash(unsigned hash, struct rtable *rth,
269 struct rtable **res);
271 static unsigned int rt_hash_code(u32 daddr, u32 saddr)
273 return (jhash_2words(daddr, saddr, rt_hash_rnd)
277 #define rt_hash(daddr, saddr, idx) \
278 rt_hash_code((__force u32)(__be32)(daddr),\
279 (__force u32)(__be32)(saddr) ^ ((idx) << 5))
281 #ifdef CONFIG_PROC_FS
282 struct rt_cache_iter_state {
286 static struct rtable *rt_cache_get_first(struct seq_file *seq)
288 struct rtable *r = NULL;
289 struct rt_cache_iter_state *st = seq->private;
291 for (st->bucket = rt_hash_mask; st->bucket >= 0; --st->bucket) {
293 r = rt_hash_table[st->bucket].chain;
296 rcu_read_unlock_bh();
298 return rcu_dereference(r);
301 static struct rtable *rt_cache_get_next(struct seq_file *seq, struct rtable *r)
303 struct rt_cache_iter_state *st = seq->private;
305 r = r->u.dst.rt_next;
307 rcu_read_unlock_bh();
308 if (--st->bucket < 0)
311 r = rt_hash_table[st->bucket].chain;
313 return rcu_dereference(r);
316 static struct rtable *rt_cache_get_idx(struct seq_file *seq, loff_t pos)
318 struct rtable *r = rt_cache_get_first(seq);
321 while (pos && (r = rt_cache_get_next(seq, r)))
323 return pos ? NULL : r;
326 static void *rt_cache_seq_start(struct seq_file *seq, loff_t *pos)
328 return *pos ? rt_cache_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
331 static void *rt_cache_seq_next(struct seq_file *seq, void *v, loff_t *pos)
333 struct rtable *r = NULL;
335 if (v == SEQ_START_TOKEN)
336 r = rt_cache_get_first(seq);
338 r = rt_cache_get_next(seq, v);
343 static void rt_cache_seq_stop(struct seq_file *seq, void *v)
345 if (v && v != SEQ_START_TOKEN)
346 rcu_read_unlock_bh();
349 static int rt_cache_seq_show(struct seq_file *seq, void *v)
351 if (v == SEQ_START_TOKEN)
352 seq_printf(seq, "%-127s\n",
353 "Iface\tDestination\tGateway \tFlags\t\tRefCnt\tUse\t"
354 "Metric\tSource\t\tMTU\tWindow\tIRTT\tTOS\tHHRef\t"
357 struct rtable *r = v;
360 sprintf(temp, "%s\t%08lX\t%08lX\t%8X\t%d\t%u\t%d\t"
361 "%08lX\t%d\t%u\t%u\t%02X\t%d\t%1d\t%08X",
362 r->u.dst.dev ? r->u.dst.dev->name : "*",
363 (unsigned long)r->rt_dst, (unsigned long)r->rt_gateway,
364 r->rt_flags, atomic_read(&r->u.dst.__refcnt),
365 r->u.dst.__use, 0, (unsigned long)r->rt_src,
366 (dst_metric(&r->u.dst, RTAX_ADVMSS) ?
367 (int)dst_metric(&r->u.dst, RTAX_ADVMSS) + 40 : 0),
368 dst_metric(&r->u.dst, RTAX_WINDOW),
369 (int)((dst_metric(&r->u.dst, RTAX_RTT) >> 3) +
370 dst_metric(&r->u.dst, RTAX_RTTVAR)),
372 r->u.dst.hh ? atomic_read(&r->u.dst.hh->hh_refcnt) : -1,
373 r->u.dst.hh ? (r->u.dst.hh->hh_output ==
376 seq_printf(seq, "%-127s\n", temp);
381 static const struct seq_operations rt_cache_seq_ops = {
382 .start = rt_cache_seq_start,
383 .next = rt_cache_seq_next,
384 .stop = rt_cache_seq_stop,
385 .show = rt_cache_seq_show,
388 static int rt_cache_seq_open(struct inode *inode, struct file *file)
390 return seq_open_private(file, &rt_cache_seq_ops,
391 sizeof(struct rt_cache_iter_state));
394 static const struct file_operations rt_cache_seq_fops = {
395 .owner = THIS_MODULE,
396 .open = rt_cache_seq_open,
399 .release = seq_release_private,
403 static void *rt_cpu_seq_start(struct seq_file *seq, loff_t *pos)
408 return SEQ_START_TOKEN;
410 for (cpu = *pos-1; cpu < NR_CPUS; ++cpu) {
411 if (!cpu_possible(cpu))
414 return &per_cpu(rt_cache_stat, cpu);
419 static void *rt_cpu_seq_next(struct seq_file *seq, void *v, loff_t *pos)
423 for (cpu = *pos; cpu < NR_CPUS; ++cpu) {
424 if (!cpu_possible(cpu))
427 return &per_cpu(rt_cache_stat, cpu);
433 static void rt_cpu_seq_stop(struct seq_file *seq, void *v)
438 static int rt_cpu_seq_show(struct seq_file *seq, void *v)
440 struct rt_cache_stat *st = v;
442 if (v == SEQ_START_TOKEN) {
443 seq_printf(seq, "entries in_hit in_slow_tot in_slow_mc in_no_route in_brd in_martian_dst in_martian_src out_hit out_slow_tot out_slow_mc gc_total gc_ignored gc_goal_miss gc_dst_overflow in_hlist_search out_hlist_search\n");
447 seq_printf(seq,"%08x %08x %08x %08x %08x %08x %08x %08x "
448 " %08x %08x %08x %08x %08x %08x %08x %08x %08x \n",
449 atomic_read(&ipv4_dst_ops.entries),
472 static const struct seq_operations rt_cpu_seq_ops = {
473 .start = rt_cpu_seq_start,
474 .next = rt_cpu_seq_next,
475 .stop = rt_cpu_seq_stop,
476 .show = rt_cpu_seq_show,
480 static int rt_cpu_seq_open(struct inode *inode, struct file *file)
482 return seq_open(file, &rt_cpu_seq_ops);
485 static const struct file_operations rt_cpu_seq_fops = {
486 .owner = THIS_MODULE,
487 .open = rt_cpu_seq_open,
490 .release = seq_release,
493 #ifdef CONFIG_NET_CLS_ROUTE
494 static int ip_rt_acct_read(char *buffer, char **start, off_t offset,
495 int length, int *eof, void *data)
499 if ((offset & 3) || (length & 3))
502 if (offset >= sizeof(struct ip_rt_acct) * 256) {
507 if (offset + length >= sizeof(struct ip_rt_acct) * 256) {
508 length = sizeof(struct ip_rt_acct) * 256 - offset;
512 offset /= sizeof(u32);
515 u32 *dst = (u32 *) buffer;
518 memset(dst, 0, length);
520 for_each_possible_cpu(i) {
524 src = ((u32 *) per_cpu_ptr(ip_rt_acct, i)) + offset;
525 for (j = 0; j < length/4; j++)
533 static __init int ip_rt_proc_init(struct net *net)
535 struct proc_dir_entry *pde;
537 pde = proc_net_fops_create(net, "rt_cache", S_IRUGO,
542 pde = create_proc_entry("rt_cache", S_IRUGO, net->proc_net_stat);
546 pde->proc_fops = &rt_cpu_seq_fops;
548 #ifdef CONFIG_NET_CLS_ROUTE
549 pde = create_proc_read_entry("rt_acct", 0, net->proc_net,
550 ip_rt_acct_read, NULL);
556 #ifdef CONFIG_NET_CLS_ROUTE
558 remove_proc_entry("rt_cache", net->proc_net_stat);
561 remove_proc_entry("rt_cache", net->proc_net);
566 static inline int ip_rt_proc_init(struct net *net)
570 #endif /* CONFIG_PROC_FS */
572 static __inline__ void rt_free(struct rtable *rt)
574 call_rcu_bh(&rt->u.dst.rcu_head, dst_rcu_free);
577 static __inline__ void rt_drop(struct rtable *rt)
580 call_rcu_bh(&rt->u.dst.rcu_head, dst_rcu_free);
583 static __inline__ int rt_fast_clean(struct rtable *rth)
585 /* Kill broadcast/multicast entries very aggresively, if they
586 collide in hash table with more useful entries */
587 return (rth->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST)) &&
588 rth->fl.iif && rth->u.dst.rt_next;
591 static __inline__ int rt_valuable(struct rtable *rth)
593 return (rth->rt_flags & (RTCF_REDIRECTED | RTCF_NOTIFY)) ||
597 static int rt_may_expire(struct rtable *rth, unsigned long tmo1, unsigned long tmo2)
602 if (atomic_read(&rth->u.dst.__refcnt))
606 if (rth->u.dst.expires &&
607 time_after_eq(jiffies, rth->u.dst.expires))
610 age = jiffies - rth->u.dst.lastuse;
612 if ((age <= tmo1 && !rt_fast_clean(rth)) ||
613 (age <= tmo2 && rt_valuable(rth)))
619 /* Bits of score are:
621 * 30: not quite useless
622 * 29..0: usage counter
624 static inline u32 rt_score(struct rtable *rt)
626 u32 score = jiffies - rt->u.dst.lastuse;
628 score = ~score & ~(3<<30);
634 !(rt->rt_flags & (RTCF_BROADCAST|RTCF_MULTICAST|RTCF_LOCAL)))
640 static inline int compare_keys(struct flowi *fl1, struct flowi *fl2)
642 return ((__force u32)((fl1->nl_u.ip4_u.daddr ^ fl2->nl_u.ip4_u.daddr) |
643 (fl1->nl_u.ip4_u.saddr ^ fl2->nl_u.ip4_u.saddr)) |
644 (fl1->mark ^ fl2->mark) |
645 (*(u16 *)&fl1->nl_u.ip4_u.tos ^
646 *(u16 *)&fl2->nl_u.ip4_u.tos) |
647 (fl1->oif ^ fl2->oif) |
648 (fl1->iif ^ fl2->iif)) == 0;
652 * Perform a full scan of hash table and free all entries.
653 * Can be called by a softirq or a process.
654 * In the later case, we want to be reschedule if necessary
656 static void rt_do_flush(int process_context)
659 struct rtable *rth, *next;
661 for (i = 0; i <= rt_hash_mask; i++) {
662 if (process_context && need_resched())
664 rth = rt_hash_table[i].chain;
668 spin_lock_bh(rt_hash_lock_addr(i));
669 rth = rt_hash_table[i].chain;
670 rt_hash_table[i].chain = NULL;
671 spin_unlock_bh(rt_hash_lock_addr(i));
673 for (; rth; rth = next) {
674 next = rth->u.dst.rt_next;
680 static void rt_check_expire(void)
682 static unsigned int rover;
683 unsigned int i = rover, goal;
684 struct rtable *rth, **rthp;
687 mult = ((u64)ip_rt_gc_interval) << rt_hash_log;
688 if (ip_rt_gc_timeout > 1)
689 do_div(mult, ip_rt_gc_timeout);
690 goal = (unsigned int)mult;
691 if (goal > rt_hash_mask)
692 goal = rt_hash_mask + 1;
693 for (; goal > 0; goal--) {
694 unsigned long tmo = ip_rt_gc_timeout;
696 i = (i + 1) & rt_hash_mask;
697 rthp = &rt_hash_table[i].chain;
704 spin_lock_bh(rt_hash_lock_addr(i));
705 while ((rth = *rthp) != NULL) {
706 if (rth->u.dst.expires) {
707 /* Entry is expired even if it is in use */
708 if (time_before_eq(jiffies, rth->u.dst.expires)) {
710 rthp = &rth->u.dst.rt_next;
713 } else if (!rt_may_expire(rth, tmo, ip_rt_gc_timeout)) {
715 rthp = &rth->u.dst.rt_next;
719 /* Cleanup aged off entries. */
720 *rthp = rth->u.dst.rt_next;
723 spin_unlock_bh(rt_hash_lock_addr(i));
729 * rt_worker_func() is run in process context.
730 * If a whole flush was scheduled, it is done.
731 * Else, we call rt_check_expire() to scan part of the hash table
733 static void rt_worker_func(struct work_struct *work)
735 if (ip_rt_flush_expected) {
736 ip_rt_flush_expected = 0;
740 schedule_delayed_work(&expires_work, ip_rt_gc_interval);
743 /* This can run from both BH and non-BH contexts, the latter
744 * in the case of a forced flush event.
746 static void rt_run_flush(unsigned long process_context)
750 get_random_bytes(&rt_hash_rnd, 4);
752 rt_do_flush(process_context);
755 static DEFINE_SPINLOCK(rt_flush_lock);
757 void rt_cache_flush(int delay)
759 unsigned long now = jiffies;
760 int user_mode = !in_softirq();
763 delay = ip_rt_min_delay;
765 spin_lock_bh(&rt_flush_lock);
767 if (del_timer(&rt_flush_timer) && delay > 0 && rt_deadline) {
768 long tmo = (long)(rt_deadline - now);
770 /* If flush timer is already running
771 and flush request is not immediate (delay > 0):
773 if deadline is not achieved, prolongate timer to "delay",
774 otherwise fire it at deadline time.
777 if (user_mode && tmo < ip_rt_max_delay-ip_rt_min_delay)
785 spin_unlock_bh(&rt_flush_lock);
786 rt_run_flush(user_mode);
790 if (rt_deadline == 0)
791 rt_deadline = now + ip_rt_max_delay;
793 mod_timer(&rt_flush_timer, now+delay);
794 spin_unlock_bh(&rt_flush_lock);
798 * We change rt_hash_rnd and ask next rt_worker_func() invocation
799 * to perform a flush in process context
801 static void rt_secret_rebuild(unsigned long dummy)
803 get_random_bytes(&rt_hash_rnd, 4);
804 ip_rt_flush_expected = 1;
805 cancel_delayed_work(&expires_work);
806 schedule_delayed_work(&expires_work, HZ/10);
807 mod_timer(&rt_secret_timer, jiffies + ip_rt_secret_interval);
811 Short description of GC goals.
813 We want to build algorithm, which will keep routing cache
814 at some equilibrium point, when number of aged off entries
815 is kept approximately equal to newly generated ones.
817 Current expiration strength is variable "expire".
818 We try to adjust it dynamically, so that if networking
819 is idle expires is large enough to keep enough of warm entries,
820 and when load increases it reduces to limit cache size.
823 static int rt_garbage_collect(void)
825 static unsigned long expire = RT_GC_TIMEOUT;
826 static unsigned long last_gc;
828 static int equilibrium;
829 struct rtable *rth, **rthp;
830 unsigned long now = jiffies;
834 * Garbage collection is pretty expensive,
835 * do not make it too frequently.
838 RT_CACHE_STAT_INC(gc_total);
840 if (now - last_gc < ip_rt_gc_min_interval &&
841 atomic_read(&ipv4_dst_ops.entries) < ip_rt_max_size) {
842 RT_CACHE_STAT_INC(gc_ignored);
846 /* Calculate number of entries, which we want to expire now. */
847 goal = atomic_read(&ipv4_dst_ops.entries) -
848 (ip_rt_gc_elasticity << rt_hash_log);
850 if (equilibrium < ipv4_dst_ops.gc_thresh)
851 equilibrium = ipv4_dst_ops.gc_thresh;
852 goal = atomic_read(&ipv4_dst_ops.entries) - equilibrium;
854 equilibrium += min_t(unsigned int, goal / 2, rt_hash_mask + 1);
855 goal = atomic_read(&ipv4_dst_ops.entries) - equilibrium;
858 /* We are in dangerous area. Try to reduce cache really
861 goal = max_t(unsigned int, goal / 2, rt_hash_mask + 1);
862 equilibrium = atomic_read(&ipv4_dst_ops.entries) - goal;
865 if (now - last_gc >= ip_rt_gc_min_interval)
876 for (i = rt_hash_mask, k = rover; i >= 0; i--) {
877 unsigned long tmo = expire;
879 k = (k + 1) & rt_hash_mask;
880 rthp = &rt_hash_table[k].chain;
881 spin_lock_bh(rt_hash_lock_addr(k));
882 while ((rth = *rthp) != NULL) {
883 if (!rt_may_expire(rth, tmo, expire)) {
885 rthp = &rth->u.dst.rt_next;
888 *rthp = rth->u.dst.rt_next;
892 spin_unlock_bh(rt_hash_lock_addr(k));
901 /* Goal is not achieved. We stop process if:
903 - if expire reduced to zero. Otherwise, expire is halfed.
904 - if table is not full.
905 - if we are called from interrupt.
906 - jiffies check is just fallback/debug loop breaker.
907 We will not spin here for long time in any case.
910 RT_CACHE_STAT_INC(gc_goal_miss);
916 #if RT_CACHE_DEBUG >= 2
917 printk(KERN_DEBUG "expire>> %u %d %d %d\n", expire,
918 atomic_read(&ipv4_dst_ops.entries), goal, i);
921 if (atomic_read(&ipv4_dst_ops.entries) < ip_rt_max_size)
923 } while (!in_softirq() && time_before_eq(jiffies, now));
925 if (atomic_read(&ipv4_dst_ops.entries) < ip_rt_max_size)
928 printk(KERN_WARNING "dst cache overflow\n");
929 RT_CACHE_STAT_INC(gc_dst_overflow);
933 expire += ip_rt_gc_min_interval;
934 if (expire > ip_rt_gc_timeout ||
935 atomic_read(&ipv4_dst_ops.entries) < ipv4_dst_ops.gc_thresh)
936 expire = ip_rt_gc_timeout;
937 #if RT_CACHE_DEBUG >= 2
938 printk(KERN_DEBUG "expire++ %u %d %d %d\n", expire,
939 atomic_read(&ipv4_dst_ops.entries), goal, rover);
944 static int rt_intern_hash(unsigned hash, struct rtable *rt, struct rtable **rp)
946 struct rtable *rth, **rthp;
948 struct rtable *cand, **candp;
951 int attempts = !in_softirq();
960 rthp = &rt_hash_table[hash].chain;
962 spin_lock_bh(rt_hash_lock_addr(hash));
963 while ((rth = *rthp) != NULL) {
964 if (compare_keys(&rth->fl, &rt->fl)) {
966 *rthp = rth->u.dst.rt_next;
968 * Since lookup is lockfree, the deletion
969 * must be visible to another weakly ordered CPU before
970 * the insertion at the start of the hash chain.
972 rcu_assign_pointer(rth->u.dst.rt_next,
973 rt_hash_table[hash].chain);
975 * Since lookup is lockfree, the update writes
976 * must be ordered for consistency on SMP.
978 rcu_assign_pointer(rt_hash_table[hash].chain, rth);
980 dst_use(&rth->u.dst, now);
981 spin_unlock_bh(rt_hash_lock_addr(hash));
988 if (!atomic_read(&rth->u.dst.__refcnt)) {
989 u32 score = rt_score(rth);
991 if (score <= min_score) {
1000 rthp = &rth->u.dst.rt_next;
1004 /* ip_rt_gc_elasticity used to be average length of chain
1005 * length, when exceeded gc becomes really aggressive.
1007 * The second limit is less certain. At the moment it allows
1008 * only 2 entries per bucket. We will see.
1010 if (chain_length > ip_rt_gc_elasticity) {
1011 *candp = cand->u.dst.rt_next;
1016 /* Try to bind route to arp only if it is output
1017 route or unicast forwarding path.
1019 if (rt->rt_type == RTN_UNICAST || rt->fl.iif == 0) {
1020 int err = arp_bind_neighbour(&rt->u.dst);
1022 spin_unlock_bh(rt_hash_lock_addr(hash));
1024 if (err != -ENOBUFS) {
1029 /* Neighbour tables are full and nothing
1030 can be released. Try to shrink route cache,
1031 it is most likely it holds some neighbour records.
1033 if (attempts-- > 0) {
1034 int saved_elasticity = ip_rt_gc_elasticity;
1035 int saved_int = ip_rt_gc_min_interval;
1036 ip_rt_gc_elasticity = 1;
1037 ip_rt_gc_min_interval = 0;
1038 rt_garbage_collect();
1039 ip_rt_gc_min_interval = saved_int;
1040 ip_rt_gc_elasticity = saved_elasticity;
1044 if (net_ratelimit())
1045 printk(KERN_WARNING "Neighbour table overflow.\n");
1051 rt->u.dst.rt_next = rt_hash_table[hash].chain;
1052 #if RT_CACHE_DEBUG >= 2
1053 if (rt->u.dst.rt_next) {
1055 printk(KERN_DEBUG "rt_cache @%02x: %u.%u.%u.%u", hash,
1056 NIPQUAD(rt->rt_dst));
1057 for (trt = rt->u.dst.rt_next; trt; trt = trt->u.dst.rt_next)
1058 printk(" . %u.%u.%u.%u", NIPQUAD(trt->rt_dst));
1062 rt_hash_table[hash].chain = rt;
1063 spin_unlock_bh(rt_hash_lock_addr(hash));
1068 void rt_bind_peer(struct rtable *rt, int create)
1070 static DEFINE_SPINLOCK(rt_peer_lock);
1071 struct inet_peer *peer;
1073 peer = inet_getpeer(rt->rt_dst, create);
1075 spin_lock_bh(&rt_peer_lock);
1076 if (rt->peer == NULL) {
1080 spin_unlock_bh(&rt_peer_lock);
1086 * Peer allocation may fail only in serious out-of-memory conditions. However
1087 * we still can generate some output.
1088 * Random ID selection looks a bit dangerous because we have no chances to
1089 * select ID being unique in a reasonable period of time.
1090 * But broken packet identifier may be better than no packet at all.
1092 static void ip_select_fb_ident(struct iphdr *iph)
1094 static DEFINE_SPINLOCK(ip_fb_id_lock);
1095 static u32 ip_fallback_id;
1098 spin_lock_bh(&ip_fb_id_lock);
1099 salt = secure_ip_id((__force __be32)ip_fallback_id ^ iph->daddr);
1100 iph->id = htons(salt & 0xFFFF);
1101 ip_fallback_id = salt;
1102 spin_unlock_bh(&ip_fb_id_lock);
1105 void __ip_select_ident(struct iphdr *iph, struct dst_entry *dst, int more)
1107 struct rtable *rt = (struct rtable *) dst;
1110 if (rt->peer == NULL)
1111 rt_bind_peer(rt, 1);
1113 /* If peer is attached to destination, it is never detached,
1114 so that we need not to grab a lock to dereference it.
1117 iph->id = htons(inet_getid(rt->peer, more));
1121 printk(KERN_DEBUG "rt_bind_peer(0) @%p\n",
1122 __builtin_return_address(0));
1124 ip_select_fb_ident(iph);
1127 static void rt_del(unsigned hash, struct rtable *rt)
1129 struct rtable **rthp;
1131 spin_lock_bh(rt_hash_lock_addr(hash));
1133 for (rthp = &rt_hash_table[hash].chain; *rthp;
1134 rthp = &(*rthp)->u.dst.rt_next)
1136 *rthp = rt->u.dst.rt_next;
1140 spin_unlock_bh(rt_hash_lock_addr(hash));
1143 void ip_rt_redirect(__be32 old_gw, __be32 daddr, __be32 new_gw,
1144 __be32 saddr, struct net_device *dev)
1147 struct in_device *in_dev = in_dev_get(dev);
1148 struct rtable *rth, **rthp;
1149 __be32 skeys[2] = { saddr, 0 };
1150 int ikeys[2] = { dev->ifindex, 0 };
1151 struct netevent_redirect netevent;
1156 if (new_gw == old_gw || !IN_DEV_RX_REDIRECTS(in_dev)
1157 || MULTICAST(new_gw) || BADCLASS(new_gw) || ZERONET(new_gw))
1158 goto reject_redirect;
1160 if (!IN_DEV_SHARED_MEDIA(in_dev)) {
1161 if (!inet_addr_onlink(in_dev, new_gw, old_gw))
1162 goto reject_redirect;
1163 if (IN_DEV_SEC_REDIRECTS(in_dev) && ip_fib_check_default(new_gw, dev))
1164 goto reject_redirect;
1166 if (inet_addr_type(new_gw) != RTN_UNICAST)
1167 goto reject_redirect;
1170 for (i = 0; i < 2; i++) {
1171 for (k = 0; k < 2; k++) {
1172 unsigned hash = rt_hash(daddr, skeys[i], ikeys[k]);
1174 rthp=&rt_hash_table[hash].chain;
1177 while ((rth = rcu_dereference(*rthp)) != NULL) {
1180 if (rth->fl.fl4_dst != daddr ||
1181 rth->fl.fl4_src != skeys[i] ||
1182 rth->fl.oif != ikeys[k] ||
1184 rthp = &rth->u.dst.rt_next;
1188 if (rth->rt_dst != daddr ||
1189 rth->rt_src != saddr ||
1191 rth->rt_gateway != old_gw ||
1192 rth->u.dst.dev != dev)
1195 dst_hold(&rth->u.dst);
1198 rt = dst_alloc(&ipv4_dst_ops);
1205 /* Copy all the information. */
1207 INIT_RCU_HEAD(&rt->u.dst.rcu_head);
1208 rt->u.dst.__use = 1;
1209 atomic_set(&rt->u.dst.__refcnt, 1);
1210 rt->u.dst.child = NULL;
1212 dev_hold(rt->u.dst.dev);
1214 in_dev_hold(rt->idev);
1215 rt->u.dst.obsolete = 0;
1216 rt->u.dst.lastuse = jiffies;
1217 rt->u.dst.path = &rt->u.dst;
1218 rt->u.dst.neighbour = NULL;
1219 rt->u.dst.hh = NULL;
1220 rt->u.dst.xfrm = NULL;
1222 rt->rt_flags |= RTCF_REDIRECTED;
1224 /* Gateway is different ... */
1225 rt->rt_gateway = new_gw;
1227 /* Redirect received -> path was valid */
1228 dst_confirm(&rth->u.dst);
1231 atomic_inc(&rt->peer->refcnt);
1233 if (arp_bind_neighbour(&rt->u.dst) ||
1234 !(rt->u.dst.neighbour->nud_state &
1236 if (rt->u.dst.neighbour)
1237 neigh_event_send(rt->u.dst.neighbour, NULL);
1243 netevent.old = &rth->u.dst;
1244 netevent.new = &rt->u.dst;
1245 call_netevent_notifiers(NETEVENT_REDIRECT,
1249 if (!rt_intern_hash(hash, rt, &rt))
1262 #ifdef CONFIG_IP_ROUTE_VERBOSE
1263 if (IN_DEV_LOG_MARTIANS(in_dev) && net_ratelimit())
1264 printk(KERN_INFO "Redirect from %u.%u.%u.%u on %s about "
1265 "%u.%u.%u.%u ignored.\n"
1266 " Advised path = %u.%u.%u.%u -> %u.%u.%u.%u\n",
1267 NIPQUAD(old_gw), dev->name, NIPQUAD(new_gw),
1268 NIPQUAD(saddr), NIPQUAD(daddr));
1273 static struct dst_entry *ipv4_negative_advice(struct dst_entry *dst)
1275 struct rtable *rt = (struct rtable*)dst;
1276 struct dst_entry *ret = dst;
1279 if (dst->obsolete) {
1282 } else if ((rt->rt_flags & RTCF_REDIRECTED) ||
1283 rt->u.dst.expires) {
1284 unsigned hash = rt_hash(rt->fl.fl4_dst, rt->fl.fl4_src,
1286 #if RT_CACHE_DEBUG >= 1
1287 printk(KERN_DEBUG "ipv4_negative_advice: redirect to "
1288 "%u.%u.%u.%u/%02x dropped\n",
1289 NIPQUAD(rt->rt_dst), rt->fl.fl4_tos);
1300 * 1. The first ip_rt_redirect_number redirects are sent
1301 * with exponential backoff, then we stop sending them at all,
1302 * assuming that the host ignores our redirects.
1303 * 2. If we did not see packets requiring redirects
1304 * during ip_rt_redirect_silence, we assume that the host
1305 * forgot redirected route and start to send redirects again.
1307 * This algorithm is much cheaper and more intelligent than dumb load limiting
1310 * NOTE. Do not forget to inhibit load limiting for redirects (redundant)
1311 * and "frag. need" (breaks PMTU discovery) in icmp.c.
1314 void ip_rt_send_redirect(struct sk_buff *skb)
1316 struct rtable *rt = (struct rtable*)skb->dst;
1317 struct in_device *in_dev = in_dev_get(rt->u.dst.dev);
1322 if (!IN_DEV_TX_REDIRECTS(in_dev))
1325 /* No redirected packets during ip_rt_redirect_silence;
1326 * reset the algorithm.
1328 if (time_after(jiffies, rt->u.dst.rate_last + ip_rt_redirect_silence))
1329 rt->u.dst.rate_tokens = 0;
1331 /* Too many ignored redirects; do not send anything
1332 * set u.dst.rate_last to the last seen redirected packet.
1334 if (rt->u.dst.rate_tokens >= ip_rt_redirect_number) {
1335 rt->u.dst.rate_last = jiffies;
1339 /* Check for load limit; set rate_last to the latest sent
1342 if (rt->u.dst.rate_tokens == 0 ||
1344 (rt->u.dst.rate_last +
1345 (ip_rt_redirect_load << rt->u.dst.rate_tokens)))) {
1346 icmp_send(skb, ICMP_REDIRECT, ICMP_REDIR_HOST, rt->rt_gateway);
1347 rt->u.dst.rate_last = jiffies;
1348 ++rt->u.dst.rate_tokens;
1349 #ifdef CONFIG_IP_ROUTE_VERBOSE
1350 if (IN_DEV_LOG_MARTIANS(in_dev) &&
1351 rt->u.dst.rate_tokens == ip_rt_redirect_number &&
1353 printk(KERN_WARNING "host %u.%u.%u.%u/if%d ignores "
1354 "redirects for %u.%u.%u.%u to %u.%u.%u.%u.\n",
1355 NIPQUAD(rt->rt_src), rt->rt_iif,
1356 NIPQUAD(rt->rt_dst), NIPQUAD(rt->rt_gateway));
1363 static int ip_error(struct sk_buff *skb)
1365 struct rtable *rt = (struct rtable*)skb->dst;
1369 switch (rt->u.dst.error) {
1374 code = ICMP_HOST_UNREACH;
1377 code = ICMP_NET_UNREACH;
1378 IP_INC_STATS_BH(IPSTATS_MIB_INNOROUTES);
1381 code = ICMP_PKT_FILTERED;
1386 rt->u.dst.rate_tokens += now - rt->u.dst.rate_last;
1387 if (rt->u.dst.rate_tokens > ip_rt_error_burst)
1388 rt->u.dst.rate_tokens = ip_rt_error_burst;
1389 rt->u.dst.rate_last = now;
1390 if (rt->u.dst.rate_tokens >= ip_rt_error_cost) {
1391 rt->u.dst.rate_tokens -= ip_rt_error_cost;
1392 icmp_send(skb, ICMP_DEST_UNREACH, code, 0);
1395 out: kfree_skb(skb);
1400 * The last two values are not from the RFC but
1401 * are needed for AMPRnet AX.25 paths.
1404 static const unsigned short mtu_plateau[] =
1405 {32000, 17914, 8166, 4352, 2002, 1492, 576, 296, 216, 128 };
1407 static __inline__ unsigned short guess_mtu(unsigned short old_mtu)
1411 for (i = 0; i < ARRAY_SIZE(mtu_plateau); i++)
1412 if (old_mtu > mtu_plateau[i])
1413 return mtu_plateau[i];
1417 unsigned short ip_rt_frag_needed(struct iphdr *iph, unsigned short new_mtu)
1420 unsigned short old_mtu = ntohs(iph->tot_len);
1422 __be32 skeys[2] = { iph->saddr, 0, };
1423 __be32 daddr = iph->daddr;
1424 unsigned short est_mtu = 0;
1426 if (ipv4_config.no_pmtu_disc)
1429 for (i = 0; i < 2; i++) {
1430 unsigned hash = rt_hash(daddr, skeys[i], 0);
1433 for (rth = rcu_dereference(rt_hash_table[hash].chain); rth;
1434 rth = rcu_dereference(rth->u.dst.rt_next)) {
1435 if (rth->fl.fl4_dst == daddr &&
1436 rth->fl.fl4_src == skeys[i] &&
1437 rth->rt_dst == daddr &&
1438 rth->rt_src == iph->saddr &&
1440 !(dst_metric_locked(&rth->u.dst, RTAX_MTU))) {
1441 unsigned short mtu = new_mtu;
1443 if (new_mtu < 68 || new_mtu >= old_mtu) {
1445 /* BSD 4.2 compatibility hack :-( */
1447 old_mtu >= rth->u.dst.metrics[RTAX_MTU-1] &&
1448 old_mtu >= 68 + (iph->ihl << 2))
1449 old_mtu -= iph->ihl << 2;
1451 mtu = guess_mtu(old_mtu);
1453 if (mtu <= rth->u.dst.metrics[RTAX_MTU-1]) {
1454 if (mtu < rth->u.dst.metrics[RTAX_MTU-1]) {
1455 dst_confirm(&rth->u.dst);
1456 if (mtu < ip_rt_min_pmtu) {
1457 mtu = ip_rt_min_pmtu;
1458 rth->u.dst.metrics[RTAX_LOCK-1] |=
1461 rth->u.dst.metrics[RTAX_MTU-1] = mtu;
1462 dst_set_expires(&rth->u.dst,
1471 return est_mtu ? : new_mtu;
1474 static void ip_rt_update_pmtu(struct dst_entry *dst, u32 mtu)
1476 if (dst->metrics[RTAX_MTU-1] > mtu && mtu >= 68 &&
1477 !(dst_metric_locked(dst, RTAX_MTU))) {
1478 if (mtu < ip_rt_min_pmtu) {
1479 mtu = ip_rt_min_pmtu;
1480 dst->metrics[RTAX_LOCK-1] |= (1 << RTAX_MTU);
1482 dst->metrics[RTAX_MTU-1] = mtu;
1483 dst_set_expires(dst, ip_rt_mtu_expires);
1484 call_netevent_notifiers(NETEVENT_PMTU_UPDATE, dst);
1488 static struct dst_entry *ipv4_dst_check(struct dst_entry *dst, u32 cookie)
1493 static void ipv4_dst_destroy(struct dst_entry *dst)
1495 struct rtable *rt = (struct rtable *) dst;
1496 struct inet_peer *peer = rt->peer;
1497 struct in_device *idev = rt->idev;
1510 static void ipv4_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
1513 struct rtable *rt = (struct rtable *) dst;
1514 struct in_device *idev = rt->idev;
1515 if (dev != dev->nd_net->loopback_dev && idev && idev->dev == dev) {
1516 struct in_device *loopback_idev =
1517 in_dev_get(dev->nd_net->loopback_dev);
1518 if (loopback_idev) {
1519 rt->idev = loopback_idev;
1525 static void ipv4_link_failure(struct sk_buff *skb)
1529 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_HOST_UNREACH, 0);
1531 rt = (struct rtable *) skb->dst;
1533 dst_set_expires(&rt->u.dst, 0);
1536 static int ip_rt_bug(struct sk_buff *skb)
1538 printk(KERN_DEBUG "ip_rt_bug: %u.%u.%u.%u -> %u.%u.%u.%u, %s\n",
1539 NIPQUAD(ip_hdr(skb)->saddr), NIPQUAD(ip_hdr(skb)->daddr),
1540 skb->dev ? skb->dev->name : "?");
1546 We do not cache source address of outgoing interface,
1547 because it is used only by IP RR, TS and SRR options,
1548 so that it out of fast path.
1550 BTW remember: "addr" is allowed to be not aligned
1554 void ip_rt_get_source(u8 *addr, struct rtable *rt)
1557 struct fib_result res;
1559 if (rt->fl.iif == 0)
1561 else if (fib_lookup(&rt->fl, &res) == 0) {
1562 src = FIB_RES_PREFSRC(res);
1565 src = inet_select_addr(rt->u.dst.dev, rt->rt_gateway,
1567 memcpy(addr, &src, 4);
1570 #ifdef CONFIG_NET_CLS_ROUTE
1571 static void set_class_tag(struct rtable *rt, u32 tag)
1573 if (!(rt->u.dst.tclassid & 0xFFFF))
1574 rt->u.dst.tclassid |= tag & 0xFFFF;
1575 if (!(rt->u.dst.tclassid & 0xFFFF0000))
1576 rt->u.dst.tclassid |= tag & 0xFFFF0000;
1580 static void rt_set_nexthop(struct rtable *rt, struct fib_result *res, u32 itag)
1582 struct fib_info *fi = res->fi;
1585 if (FIB_RES_GW(*res) &&
1586 FIB_RES_NH(*res).nh_scope == RT_SCOPE_LINK)
1587 rt->rt_gateway = FIB_RES_GW(*res);
1588 memcpy(rt->u.dst.metrics, fi->fib_metrics,
1589 sizeof(rt->u.dst.metrics));
1590 if (fi->fib_mtu == 0) {
1591 rt->u.dst.metrics[RTAX_MTU-1] = rt->u.dst.dev->mtu;
1592 if (rt->u.dst.metrics[RTAX_LOCK-1] & (1 << RTAX_MTU) &&
1593 rt->rt_gateway != rt->rt_dst &&
1594 rt->u.dst.dev->mtu > 576)
1595 rt->u.dst.metrics[RTAX_MTU-1] = 576;
1597 #ifdef CONFIG_NET_CLS_ROUTE
1598 rt->u.dst.tclassid = FIB_RES_NH(*res).nh_tclassid;
1601 rt->u.dst.metrics[RTAX_MTU-1]= rt->u.dst.dev->mtu;
1603 if (rt->u.dst.metrics[RTAX_HOPLIMIT-1] == 0)
1604 rt->u.dst.metrics[RTAX_HOPLIMIT-1] = sysctl_ip_default_ttl;
1605 if (rt->u.dst.metrics[RTAX_MTU-1] > IP_MAX_MTU)
1606 rt->u.dst.metrics[RTAX_MTU-1] = IP_MAX_MTU;
1607 if (rt->u.dst.metrics[RTAX_ADVMSS-1] == 0)
1608 rt->u.dst.metrics[RTAX_ADVMSS-1] = max_t(unsigned int, rt->u.dst.dev->mtu - 40,
1610 if (rt->u.dst.metrics[RTAX_ADVMSS-1] > 65535 - 40)
1611 rt->u.dst.metrics[RTAX_ADVMSS-1] = 65535 - 40;
1613 #ifdef CONFIG_NET_CLS_ROUTE
1614 #ifdef CONFIG_IP_MULTIPLE_TABLES
1615 set_class_tag(rt, fib_rules_tclass(res));
1617 set_class_tag(rt, itag);
1619 rt->rt_type = res->type;
1622 static int ip_route_input_mc(struct sk_buff *skb, __be32 daddr, __be32 saddr,
1623 u8 tos, struct net_device *dev, int our)
1628 struct in_device *in_dev = in_dev_get(dev);
1631 /* Primary sanity checks. */
1636 if (MULTICAST(saddr) || BADCLASS(saddr) || LOOPBACK(saddr) ||
1637 skb->protocol != htons(ETH_P_IP))
1640 if (ZERONET(saddr)) {
1641 if (!LOCAL_MCAST(daddr))
1643 spec_dst = inet_select_addr(dev, 0, RT_SCOPE_LINK);
1644 } else if (fib_validate_source(saddr, 0, tos, 0,
1645 dev, &spec_dst, &itag) < 0)
1648 rth = dst_alloc(&ipv4_dst_ops);
1652 rth->u.dst.output= ip_rt_bug;
1654 atomic_set(&rth->u.dst.__refcnt, 1);
1655 rth->u.dst.flags= DST_HOST;
1656 if (IN_DEV_CONF_GET(in_dev, NOPOLICY))
1657 rth->u.dst.flags |= DST_NOPOLICY;
1658 rth->fl.fl4_dst = daddr;
1659 rth->rt_dst = daddr;
1660 rth->fl.fl4_tos = tos;
1661 rth->fl.mark = skb->mark;
1662 rth->fl.fl4_src = saddr;
1663 rth->rt_src = saddr;
1664 #ifdef CONFIG_NET_CLS_ROUTE
1665 rth->u.dst.tclassid = itag;
1668 rth->fl.iif = dev->ifindex;
1669 rth->u.dst.dev = init_net.loopback_dev;
1670 dev_hold(rth->u.dst.dev);
1671 rth->idev = in_dev_get(rth->u.dst.dev);
1673 rth->rt_gateway = daddr;
1674 rth->rt_spec_dst= spec_dst;
1675 rth->rt_type = RTN_MULTICAST;
1676 rth->rt_flags = RTCF_MULTICAST;
1678 rth->u.dst.input= ip_local_deliver;
1679 rth->rt_flags |= RTCF_LOCAL;
1682 #ifdef CONFIG_IP_MROUTE
1683 if (!LOCAL_MCAST(daddr) && IN_DEV_MFORWARD(in_dev))
1684 rth->u.dst.input = ip_mr_input;
1686 RT_CACHE_STAT_INC(in_slow_mc);
1689 hash = rt_hash(daddr, saddr, dev->ifindex);
1690 return rt_intern_hash(hash, rth, (struct rtable**) &skb->dst);
1702 static void ip_handle_martian_source(struct net_device *dev,
1703 struct in_device *in_dev,
1704 struct sk_buff *skb,
1708 RT_CACHE_STAT_INC(in_martian_src);
1709 #ifdef CONFIG_IP_ROUTE_VERBOSE
1710 if (IN_DEV_LOG_MARTIANS(in_dev) && net_ratelimit()) {
1712 * RFC1812 recommendation, if source is martian,
1713 * the only hint is MAC header.
1715 printk(KERN_WARNING "martian source %u.%u.%u.%u from "
1716 "%u.%u.%u.%u, on dev %s\n",
1717 NIPQUAD(daddr), NIPQUAD(saddr), dev->name);
1718 if (dev->hard_header_len && skb_mac_header_was_set(skb)) {
1720 const unsigned char *p = skb_mac_header(skb);
1721 printk(KERN_WARNING "ll header: ");
1722 for (i = 0; i < dev->hard_header_len; i++, p++) {
1724 if (i < (dev->hard_header_len - 1))
1733 static inline int __mkroute_input(struct sk_buff *skb,
1734 struct fib_result* res,
1735 struct in_device *in_dev,
1736 __be32 daddr, __be32 saddr, u32 tos,
1737 struct rtable **result)
1742 struct in_device *out_dev;
1747 /* get a working reference to the output device */
1748 out_dev = in_dev_get(FIB_RES_DEV(*res));
1749 if (out_dev == NULL) {
1750 if (net_ratelimit())
1751 printk(KERN_CRIT "Bug in ip_route_input" \
1752 "_slow(). Please, report\n");
1757 err = fib_validate_source(saddr, daddr, tos, FIB_RES_OIF(*res),
1758 in_dev->dev, &spec_dst, &itag);
1760 ip_handle_martian_source(in_dev->dev, in_dev, skb, daddr,
1768 flags |= RTCF_DIRECTSRC;
1770 if (out_dev == in_dev && err && !(flags & (RTCF_NAT | RTCF_MASQ)) &&
1771 (IN_DEV_SHARED_MEDIA(out_dev) ||
1772 inet_addr_onlink(out_dev, saddr, FIB_RES_GW(*res))))
1773 flags |= RTCF_DOREDIRECT;
1775 if (skb->protocol != htons(ETH_P_IP)) {
1776 /* Not IP (i.e. ARP). Do not create route, if it is
1777 * invalid for proxy arp. DNAT routes are always valid.
1779 if (out_dev == in_dev && !(flags & RTCF_DNAT)) {
1786 rth = dst_alloc(&ipv4_dst_ops);
1792 atomic_set(&rth->u.dst.__refcnt, 1);
1793 rth->u.dst.flags= DST_HOST;
1794 if (IN_DEV_CONF_GET(in_dev, NOPOLICY))
1795 rth->u.dst.flags |= DST_NOPOLICY;
1796 if (IN_DEV_CONF_GET(out_dev, NOXFRM))
1797 rth->u.dst.flags |= DST_NOXFRM;
1798 rth->fl.fl4_dst = daddr;
1799 rth->rt_dst = daddr;
1800 rth->fl.fl4_tos = tos;
1801 rth->fl.mark = skb->mark;
1802 rth->fl.fl4_src = saddr;
1803 rth->rt_src = saddr;
1804 rth->rt_gateway = daddr;
1806 rth->fl.iif = in_dev->dev->ifindex;
1807 rth->u.dst.dev = (out_dev)->dev;
1808 dev_hold(rth->u.dst.dev);
1809 rth->idev = in_dev_get(rth->u.dst.dev);
1811 rth->rt_spec_dst= spec_dst;
1813 rth->u.dst.input = ip_forward;
1814 rth->u.dst.output = ip_output;
1816 rt_set_nexthop(rth, res, itag);
1818 rth->rt_flags = flags;
1823 /* release the working reference to the output device */
1824 in_dev_put(out_dev);
1828 static inline int ip_mkroute_input(struct sk_buff *skb,
1829 struct fib_result* res,
1830 const struct flowi *fl,
1831 struct in_device *in_dev,
1832 __be32 daddr, __be32 saddr, u32 tos)
1834 struct rtable* rth = NULL;
1838 #ifdef CONFIG_IP_ROUTE_MULTIPATH
1839 if (res->fi && res->fi->fib_nhs > 1 && fl->oif == 0)
1840 fib_select_multipath(fl, res);
1843 /* create a routing cache entry */
1844 err = __mkroute_input(skb, res, in_dev, daddr, saddr, tos, &rth);
1848 /* put it into the cache */
1849 hash = rt_hash(daddr, saddr, fl->iif);
1850 return rt_intern_hash(hash, rth, (struct rtable**)&skb->dst);
1854 * NOTE. We drop all the packets that has local source
1855 * addresses, because every properly looped back packet
1856 * must have correct destination already attached by output routine.
1858 * Such approach solves two big problems:
1859 * 1. Not simplex devices are handled properly.
1860 * 2. IP spoofing attempts are filtered with 100% of guarantee.
1863 static int ip_route_input_slow(struct sk_buff *skb, __be32 daddr, __be32 saddr,
1864 u8 tos, struct net_device *dev)
1866 struct fib_result res;
1867 struct in_device *in_dev = in_dev_get(dev);
1868 struct flowi fl = { .nl_u = { .ip4_u =
1872 .scope = RT_SCOPE_UNIVERSE,
1875 .iif = dev->ifindex };
1878 struct rtable * rth;
1884 /* IP on this device is disabled. */
1889 /* Check for the most weird martians, which can be not detected
1893 if (MULTICAST(saddr) || BADCLASS(saddr) || LOOPBACK(saddr))
1894 goto martian_source;
1896 if (daddr == htonl(0xFFFFFFFF) || (saddr == 0 && daddr == 0))
1899 /* Accept zero addresses only to limited broadcast;
1900 * I even do not know to fix it or not. Waiting for complains :-)
1903 goto martian_source;
1905 if (BADCLASS(daddr) || ZERONET(daddr) || LOOPBACK(daddr))
1906 goto martian_destination;
1909 * Now we are ready to route packet.
1911 if ((err = fib_lookup(&fl, &res)) != 0) {
1912 if (!IN_DEV_FORWARD(in_dev))
1918 RT_CACHE_STAT_INC(in_slow_tot);
1920 if (res.type == RTN_BROADCAST)
1923 if (res.type == RTN_LOCAL) {
1925 result = fib_validate_source(saddr, daddr, tos,
1926 init_net.loopback_dev->ifindex,
1927 dev, &spec_dst, &itag);
1929 goto martian_source;
1931 flags |= RTCF_DIRECTSRC;
1936 if (!IN_DEV_FORWARD(in_dev))
1938 if (res.type != RTN_UNICAST)
1939 goto martian_destination;
1941 err = ip_mkroute_input(skb, &res, &fl, in_dev, daddr, saddr, tos);
1949 if (skb->protocol != htons(ETH_P_IP))
1953 spec_dst = inet_select_addr(dev, 0, RT_SCOPE_LINK);
1955 err = fib_validate_source(saddr, 0, tos, 0, dev, &spec_dst,
1958 goto martian_source;
1960 flags |= RTCF_DIRECTSRC;
1962 flags |= RTCF_BROADCAST;
1963 res.type = RTN_BROADCAST;
1964 RT_CACHE_STAT_INC(in_brd);
1967 rth = dst_alloc(&ipv4_dst_ops);
1971 rth->u.dst.output= ip_rt_bug;
1973 atomic_set(&rth->u.dst.__refcnt, 1);
1974 rth->u.dst.flags= DST_HOST;
1975 if (IN_DEV_CONF_GET(in_dev, NOPOLICY))
1976 rth->u.dst.flags |= DST_NOPOLICY;
1977 rth->fl.fl4_dst = daddr;
1978 rth->rt_dst = daddr;
1979 rth->fl.fl4_tos = tos;
1980 rth->fl.mark = skb->mark;
1981 rth->fl.fl4_src = saddr;
1982 rth->rt_src = saddr;
1983 #ifdef CONFIG_NET_CLS_ROUTE
1984 rth->u.dst.tclassid = itag;
1987 rth->fl.iif = dev->ifindex;
1988 rth->u.dst.dev = init_net.loopback_dev;
1989 dev_hold(rth->u.dst.dev);
1990 rth->idev = in_dev_get(rth->u.dst.dev);
1991 rth->rt_gateway = daddr;
1992 rth->rt_spec_dst= spec_dst;
1993 rth->u.dst.input= ip_local_deliver;
1994 rth->rt_flags = flags|RTCF_LOCAL;
1995 if (res.type == RTN_UNREACHABLE) {
1996 rth->u.dst.input= ip_error;
1997 rth->u.dst.error= -err;
1998 rth->rt_flags &= ~RTCF_LOCAL;
2000 rth->rt_type = res.type;
2001 hash = rt_hash(daddr, saddr, fl.iif);
2002 err = rt_intern_hash(hash, rth, (struct rtable**)&skb->dst);
2006 RT_CACHE_STAT_INC(in_no_route);
2007 spec_dst = inet_select_addr(dev, 0, RT_SCOPE_UNIVERSE);
2008 res.type = RTN_UNREACHABLE;
2014 * Do not cache martian addresses: they should be logged (RFC1812)
2016 martian_destination:
2017 RT_CACHE_STAT_INC(in_martian_dst);
2018 #ifdef CONFIG_IP_ROUTE_VERBOSE
2019 if (IN_DEV_LOG_MARTIANS(in_dev) && net_ratelimit())
2020 printk(KERN_WARNING "martian destination %u.%u.%u.%u from "
2021 "%u.%u.%u.%u, dev %s\n",
2022 NIPQUAD(daddr), NIPQUAD(saddr), dev->name);
2026 err = -EHOSTUNREACH;
2038 ip_handle_martian_source(dev, in_dev, skb, daddr, saddr);
2042 int ip_route_input(struct sk_buff *skb, __be32 daddr, __be32 saddr,
2043 u8 tos, struct net_device *dev)
2045 struct rtable * rth;
2047 int iif = dev->ifindex;
2049 tos &= IPTOS_RT_MASK;
2050 hash = rt_hash(daddr, saddr, iif);
2053 for (rth = rcu_dereference(rt_hash_table[hash].chain); rth;
2054 rth = rcu_dereference(rth->u.dst.rt_next)) {
2055 if (rth->fl.fl4_dst == daddr &&
2056 rth->fl.fl4_src == saddr &&
2057 rth->fl.iif == iif &&
2059 rth->fl.mark == skb->mark &&
2060 rth->fl.fl4_tos == tos) {
2061 dst_use(&rth->u.dst, jiffies);
2062 RT_CACHE_STAT_INC(in_hit);
2064 skb->dst = (struct dst_entry*)rth;
2067 RT_CACHE_STAT_INC(in_hlist_search);
2071 /* Multicast recognition logic is moved from route cache to here.
2072 The problem was that too many Ethernet cards have broken/missing
2073 hardware multicast filters :-( As result the host on multicasting
2074 network acquires a lot of useless route cache entries, sort of
2075 SDR messages from all the world. Now we try to get rid of them.
2076 Really, provided software IP multicast filter is organized
2077 reasonably (at least, hashed), it does not result in a slowdown
2078 comparing with route cache reject entries.
2079 Note, that multicast routers are not affected, because
2080 route cache entry is created eventually.
2082 if (MULTICAST(daddr)) {
2083 struct in_device *in_dev;
2086 if ((in_dev = __in_dev_get_rcu(dev)) != NULL) {
2087 int our = ip_check_mc(in_dev, daddr, saddr,
2088 ip_hdr(skb)->protocol);
2090 #ifdef CONFIG_IP_MROUTE
2091 || (!LOCAL_MCAST(daddr) && IN_DEV_MFORWARD(in_dev))
2095 return ip_route_input_mc(skb, daddr, saddr,
2102 return ip_route_input_slow(skb, daddr, saddr, tos, dev);
2105 static inline int __mkroute_output(struct rtable **result,
2106 struct fib_result* res,
2107 const struct flowi *fl,
2108 const struct flowi *oldflp,
2109 struct net_device *dev_out,
2113 struct in_device *in_dev;
2114 u32 tos = RT_FL_TOS(oldflp);
2117 if (LOOPBACK(fl->fl4_src) && !(dev_out->flags&IFF_LOOPBACK))
2120 if (fl->fl4_dst == htonl(0xFFFFFFFF))
2121 res->type = RTN_BROADCAST;
2122 else if (MULTICAST(fl->fl4_dst))
2123 res->type = RTN_MULTICAST;
2124 else if (BADCLASS(fl->fl4_dst) || ZERONET(fl->fl4_dst))
2127 if (dev_out->flags & IFF_LOOPBACK)
2128 flags |= RTCF_LOCAL;
2130 /* get work reference to inet device */
2131 in_dev = in_dev_get(dev_out);
2135 if (res->type == RTN_BROADCAST) {
2136 flags |= RTCF_BROADCAST | RTCF_LOCAL;
2138 fib_info_put(res->fi);
2141 } else if (res->type == RTN_MULTICAST) {
2142 flags |= RTCF_MULTICAST|RTCF_LOCAL;
2143 if (!ip_check_mc(in_dev, oldflp->fl4_dst, oldflp->fl4_src,
2145 flags &= ~RTCF_LOCAL;
2146 /* If multicast route do not exist use
2147 default one, but do not gateway in this case.
2150 if (res->fi && res->prefixlen < 4) {
2151 fib_info_put(res->fi);
2157 rth = dst_alloc(&ipv4_dst_ops);
2163 atomic_set(&rth->u.dst.__refcnt, 1);
2164 rth->u.dst.flags= DST_HOST;
2165 if (IN_DEV_CONF_GET(in_dev, NOXFRM))
2166 rth->u.dst.flags |= DST_NOXFRM;
2167 if (IN_DEV_CONF_GET(in_dev, NOPOLICY))
2168 rth->u.dst.flags |= DST_NOPOLICY;
2170 rth->fl.fl4_dst = oldflp->fl4_dst;
2171 rth->fl.fl4_tos = tos;
2172 rth->fl.fl4_src = oldflp->fl4_src;
2173 rth->fl.oif = oldflp->oif;
2174 rth->fl.mark = oldflp->mark;
2175 rth->rt_dst = fl->fl4_dst;
2176 rth->rt_src = fl->fl4_src;
2177 rth->rt_iif = oldflp->oif ? : dev_out->ifindex;
2178 /* get references to the devices that are to be hold by the routing
2180 rth->u.dst.dev = dev_out;
2182 rth->idev = in_dev_get(dev_out);
2183 rth->rt_gateway = fl->fl4_dst;
2184 rth->rt_spec_dst= fl->fl4_src;
2186 rth->u.dst.output=ip_output;
2188 RT_CACHE_STAT_INC(out_slow_tot);
2190 if (flags & RTCF_LOCAL) {
2191 rth->u.dst.input = ip_local_deliver;
2192 rth->rt_spec_dst = fl->fl4_dst;
2194 if (flags & (RTCF_BROADCAST | RTCF_MULTICAST)) {
2195 rth->rt_spec_dst = fl->fl4_src;
2196 if (flags & RTCF_LOCAL &&
2197 !(dev_out->flags & IFF_LOOPBACK)) {
2198 rth->u.dst.output = ip_mc_output;
2199 RT_CACHE_STAT_INC(out_slow_mc);
2201 #ifdef CONFIG_IP_MROUTE
2202 if (res->type == RTN_MULTICAST) {
2203 if (IN_DEV_MFORWARD(in_dev) &&
2204 !LOCAL_MCAST(oldflp->fl4_dst)) {
2205 rth->u.dst.input = ip_mr_input;
2206 rth->u.dst.output = ip_mc_output;
2212 rt_set_nexthop(rth, res, 0);
2214 rth->rt_flags = flags;
2218 /* release work reference to inet device */
2224 static inline int ip_mkroute_output(struct rtable **rp,
2225 struct fib_result* res,
2226 const struct flowi *fl,
2227 const struct flowi *oldflp,
2228 struct net_device *dev_out,
2231 struct rtable *rth = NULL;
2232 int err = __mkroute_output(&rth, res, fl, oldflp, dev_out, flags);
2235 hash = rt_hash(oldflp->fl4_dst, oldflp->fl4_src, oldflp->oif);
2236 err = rt_intern_hash(hash, rth, rp);
2243 * Major route resolver routine.
2246 static int ip_route_output_slow(struct rtable **rp, const struct flowi *oldflp)
2248 u32 tos = RT_FL_TOS(oldflp);
2249 struct flowi fl = { .nl_u = { .ip4_u =
2250 { .daddr = oldflp->fl4_dst,
2251 .saddr = oldflp->fl4_src,
2252 .tos = tos & IPTOS_RT_MASK,
2253 .scope = ((tos & RTO_ONLINK) ?
2257 .mark = oldflp->mark,
2258 .iif = init_net.loopback_dev->ifindex,
2259 .oif = oldflp->oif };
2260 struct fib_result res;
2262 struct net_device *dev_out = NULL;
2268 #ifdef CONFIG_IP_MULTIPLE_TABLES
2272 if (oldflp->fl4_src) {
2274 if (MULTICAST(oldflp->fl4_src) ||
2275 BADCLASS(oldflp->fl4_src) ||
2276 ZERONET(oldflp->fl4_src))
2279 /* It is equivalent to inet_addr_type(saddr) == RTN_LOCAL */
2280 dev_out = ip_dev_find(oldflp->fl4_src);
2281 if (dev_out == NULL)
2284 /* I removed check for oif == dev_out->oif here.
2285 It was wrong for two reasons:
2286 1. ip_dev_find(saddr) can return wrong iface, if saddr is
2287 assigned to multiple interfaces.
2288 2. Moreover, we are allowed to send packets with saddr
2289 of another iface. --ANK
2292 if (oldflp->oif == 0
2293 && (MULTICAST(oldflp->fl4_dst) || oldflp->fl4_dst == htonl(0xFFFFFFFF))) {
2294 /* Special hack: user can direct multicasts
2295 and limited broadcast via necessary interface
2296 without fiddling with IP_MULTICAST_IF or IP_PKTINFO.
2297 This hack is not just for fun, it allows
2298 vic,vat and friends to work.
2299 They bind socket to loopback, set ttl to zero
2300 and expect that it will work.
2301 From the viewpoint of routing cache they are broken,
2302 because we are not allowed to build multicast path
2303 with loopback source addr (look, routing cache
2304 cannot know, that ttl is zero, so that packet
2305 will not leave this host and route is valid).
2306 Luckily, this hack is good workaround.
2309 fl.oif = dev_out->ifindex;
2319 dev_out = dev_get_by_index(&init_net, oldflp->oif);
2321 if (dev_out == NULL)
2324 /* RACE: Check return value of inet_select_addr instead. */
2325 if (__in_dev_get_rtnl(dev_out) == NULL) {
2327 goto out; /* Wrong error code */
2330 if (LOCAL_MCAST(oldflp->fl4_dst) || oldflp->fl4_dst == htonl(0xFFFFFFFF)) {
2332 fl.fl4_src = inet_select_addr(dev_out, 0,
2337 if (MULTICAST(oldflp->fl4_dst))
2338 fl.fl4_src = inet_select_addr(dev_out, 0,
2340 else if (!oldflp->fl4_dst)
2341 fl.fl4_src = inet_select_addr(dev_out, 0,
2347 fl.fl4_dst = fl.fl4_src;
2349 fl.fl4_dst = fl.fl4_src = htonl(INADDR_LOOPBACK);
2352 dev_out = init_net.loopback_dev;
2354 fl.oif = init_net.loopback_dev->ifindex;
2355 res.type = RTN_LOCAL;
2356 flags |= RTCF_LOCAL;
2360 if (fib_lookup(&fl, &res)) {
2363 /* Apparently, routing tables are wrong. Assume,
2364 that the destination is on link.
2367 Because we are allowed to send to iface
2368 even if it has NO routes and NO assigned
2369 addresses. When oif is specified, routing
2370 tables are looked up with only one purpose:
2371 to catch if destination is gatewayed, rather than
2372 direct. Moreover, if MSG_DONTROUTE is set,
2373 we send packet, ignoring both routing tables
2374 and ifaddr state. --ANK
2377 We could make it even if oif is unknown,
2378 likely IPv6, but we do not.
2381 if (fl.fl4_src == 0)
2382 fl.fl4_src = inet_select_addr(dev_out, 0,
2384 res.type = RTN_UNICAST;
2394 if (res.type == RTN_LOCAL) {
2396 fl.fl4_src = fl.fl4_dst;
2399 dev_out = init_net.loopback_dev;
2401 fl.oif = dev_out->ifindex;
2403 fib_info_put(res.fi);
2405 flags |= RTCF_LOCAL;
2409 #ifdef CONFIG_IP_ROUTE_MULTIPATH
2410 if (res.fi->fib_nhs > 1 && fl.oif == 0)
2411 fib_select_multipath(&fl, &res);
2414 if (!res.prefixlen && res.type == RTN_UNICAST && !fl.oif)
2415 fib_select_default(&fl, &res);
2418 fl.fl4_src = FIB_RES_PREFSRC(res);
2422 dev_out = FIB_RES_DEV(res);
2424 fl.oif = dev_out->ifindex;
2428 err = ip_mkroute_output(rp, &res, &fl, oldflp, dev_out, flags);
2438 int __ip_route_output_key(struct rtable **rp, const struct flowi *flp)
2443 hash = rt_hash(flp->fl4_dst, flp->fl4_src, flp->oif);
2446 for (rth = rcu_dereference(rt_hash_table[hash].chain); rth;
2447 rth = rcu_dereference(rth->u.dst.rt_next)) {
2448 if (rth->fl.fl4_dst == flp->fl4_dst &&
2449 rth->fl.fl4_src == flp->fl4_src &&
2451 rth->fl.oif == flp->oif &&
2452 rth->fl.mark == flp->mark &&
2453 !((rth->fl.fl4_tos ^ flp->fl4_tos) &
2454 (IPTOS_RT_MASK | RTO_ONLINK))) {
2455 dst_use(&rth->u.dst, jiffies);
2456 RT_CACHE_STAT_INC(out_hit);
2457 rcu_read_unlock_bh();
2461 RT_CACHE_STAT_INC(out_hlist_search);
2463 rcu_read_unlock_bh();
2465 return ip_route_output_slow(rp, flp);
2468 EXPORT_SYMBOL_GPL(__ip_route_output_key);
2470 static void ipv4_rt_blackhole_update_pmtu(struct dst_entry *dst, u32 mtu)
2474 static struct dst_ops ipv4_dst_blackhole_ops = {
2476 .protocol = __constant_htons(ETH_P_IP),
2477 .destroy = ipv4_dst_destroy,
2478 .check = ipv4_dst_check,
2479 .update_pmtu = ipv4_rt_blackhole_update_pmtu,
2480 .entry_size = sizeof(struct rtable),
2484 static int ipv4_dst_blackhole(struct rtable **rp, struct flowi *flp, struct sock *sk)
2486 struct rtable *ort = *rp;
2487 struct rtable *rt = (struct rtable *)
2488 dst_alloc(&ipv4_dst_blackhole_ops);
2491 struct dst_entry *new = &rt->u.dst;
2493 atomic_set(&new->__refcnt, 1);
2495 new->input = dst_discard;
2496 new->output = dst_discard;
2497 memcpy(new->metrics, ort->u.dst.metrics, RTAX_MAX*sizeof(u32));
2499 new->dev = ort->u.dst.dev;
2505 rt->idev = ort->idev;
2507 in_dev_hold(rt->idev);
2508 rt->rt_flags = ort->rt_flags;
2509 rt->rt_type = ort->rt_type;
2510 rt->rt_dst = ort->rt_dst;
2511 rt->rt_src = ort->rt_src;
2512 rt->rt_iif = ort->rt_iif;
2513 rt->rt_gateway = ort->rt_gateway;
2514 rt->rt_spec_dst = ort->rt_spec_dst;
2515 rt->peer = ort->peer;
2517 atomic_inc(&rt->peer->refcnt);
2522 dst_release(&(*rp)->u.dst);
2524 return (rt ? 0 : -ENOMEM);
2527 int ip_route_output_flow(struct rtable **rp, struct flowi *flp, struct sock *sk, int flags)
2531 if ((err = __ip_route_output_key(rp, flp)) != 0)
2536 flp->fl4_src = (*rp)->rt_src;
2538 flp->fl4_dst = (*rp)->rt_dst;
2539 err = __xfrm_lookup((struct dst_entry **)rp, flp, sk,
2540 flags ? XFRM_LOOKUP_WAIT : 0);
2541 if (err == -EREMOTE)
2542 err = ipv4_dst_blackhole(rp, flp, sk);
2550 EXPORT_SYMBOL_GPL(ip_route_output_flow);
2552 int ip_route_output_key(struct rtable **rp, struct flowi *flp)
2554 return ip_route_output_flow(rp, flp, NULL, 0);
2557 static int rt_fill_info(struct sk_buff *skb, u32 pid, u32 seq, int event,
2558 int nowait, unsigned int flags)
2560 struct rtable *rt = (struct rtable*)skb->dst;
2562 struct nlmsghdr *nlh;
2564 u32 id = 0, ts = 0, tsage = 0, error;
2566 nlh = nlmsg_put(skb, pid, seq, event, sizeof(*r), flags);
2570 r = nlmsg_data(nlh);
2571 r->rtm_family = AF_INET;
2572 r->rtm_dst_len = 32;
2574 r->rtm_tos = rt->fl.fl4_tos;
2575 r->rtm_table = RT_TABLE_MAIN;
2576 NLA_PUT_U32(skb, RTA_TABLE, RT_TABLE_MAIN);
2577 r->rtm_type = rt->rt_type;
2578 r->rtm_scope = RT_SCOPE_UNIVERSE;
2579 r->rtm_protocol = RTPROT_UNSPEC;
2580 r->rtm_flags = (rt->rt_flags & ~0xFFFF) | RTM_F_CLONED;
2581 if (rt->rt_flags & RTCF_NOTIFY)
2582 r->rtm_flags |= RTM_F_NOTIFY;
2584 NLA_PUT_BE32(skb, RTA_DST, rt->rt_dst);
2586 if (rt->fl.fl4_src) {
2587 r->rtm_src_len = 32;
2588 NLA_PUT_BE32(skb, RTA_SRC, rt->fl.fl4_src);
2591 NLA_PUT_U32(skb, RTA_OIF, rt->u.dst.dev->ifindex);
2592 #ifdef CONFIG_NET_CLS_ROUTE
2593 if (rt->u.dst.tclassid)
2594 NLA_PUT_U32(skb, RTA_FLOW, rt->u.dst.tclassid);
2597 NLA_PUT_BE32(skb, RTA_PREFSRC, rt->rt_spec_dst);
2598 else if (rt->rt_src != rt->fl.fl4_src)
2599 NLA_PUT_BE32(skb, RTA_PREFSRC, rt->rt_src);
2601 if (rt->rt_dst != rt->rt_gateway)
2602 NLA_PUT_BE32(skb, RTA_GATEWAY, rt->rt_gateway);
2604 if (rtnetlink_put_metrics(skb, rt->u.dst.metrics) < 0)
2605 goto nla_put_failure;
2607 error = rt->u.dst.error;
2608 expires = rt->u.dst.expires ? rt->u.dst.expires - jiffies : 0;
2610 id = rt->peer->ip_id_count;
2611 if (rt->peer->tcp_ts_stamp) {
2612 ts = rt->peer->tcp_ts;
2613 tsage = get_seconds() - rt->peer->tcp_ts_stamp;
2618 #ifdef CONFIG_IP_MROUTE
2619 __be32 dst = rt->rt_dst;
2621 if (MULTICAST(dst) && !LOCAL_MCAST(dst) &&
2622 IPV4_DEVCONF_ALL(&init_net, MC_FORWARDING)) {
2623 int err = ipmr_get_route(skb, r, nowait);
2628 goto nla_put_failure;
2630 if (err == -EMSGSIZE)
2631 goto nla_put_failure;
2637 NLA_PUT_U32(skb, RTA_IIF, rt->fl.iif);
2640 if (rtnl_put_cacheinfo(skb, &rt->u.dst, id, ts, tsage,
2641 expires, error) < 0)
2642 goto nla_put_failure;
2644 return nlmsg_end(skb, nlh);
2647 nlmsg_cancel(skb, nlh);
2651 static int inet_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr* nlh, void *arg)
2653 struct net *net = in_skb->sk->sk_net;
2655 struct nlattr *tb[RTA_MAX+1];
2656 struct rtable *rt = NULL;
2661 struct sk_buff *skb;
2663 if (net != &init_net)
2666 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv4_policy);
2670 rtm = nlmsg_data(nlh);
2672 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
2678 /* Reserve room for dummy headers, this skb can pass
2679 through good chunk of routing engine.
2681 skb_reset_mac_header(skb);
2682 skb_reset_network_header(skb);
2684 /* Bugfix: need to give ip_route_input enough of an IP header to not gag. */
2685 ip_hdr(skb)->protocol = IPPROTO_ICMP;
2686 skb_reserve(skb, MAX_HEADER + sizeof(struct iphdr));
2688 src = tb[RTA_SRC] ? nla_get_be32(tb[RTA_SRC]) : 0;
2689 dst = tb[RTA_DST] ? nla_get_be32(tb[RTA_DST]) : 0;
2690 iif = tb[RTA_IIF] ? nla_get_u32(tb[RTA_IIF]) : 0;
2693 struct net_device *dev;
2695 dev = __dev_get_by_index(&init_net, iif);
2701 skb->protocol = htons(ETH_P_IP);
2704 err = ip_route_input(skb, dst, src, rtm->rtm_tos, dev);
2707 rt = (struct rtable*) skb->dst;
2708 if (err == 0 && rt->u.dst.error)
2709 err = -rt->u.dst.error;
2716 .tos = rtm->rtm_tos,
2719 .oif = tb[RTA_OIF] ? nla_get_u32(tb[RTA_OIF]) : 0,
2721 err = ip_route_output_key(&rt, &fl);
2727 skb->dst = &rt->u.dst;
2728 if (rtm->rtm_flags & RTM_F_NOTIFY)
2729 rt->rt_flags |= RTCF_NOTIFY;
2731 err = rt_fill_info(skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq,
2732 RTM_NEWROUTE, 0, 0);
2736 err = rtnl_unicast(skb, &init_net, NETLINK_CB(in_skb).pid);
2745 int ip_rt_dump(struct sk_buff *skb, struct netlink_callback *cb)
2754 s_idx = idx = cb->args[1];
2755 for (h = s_h; h <= rt_hash_mask; h++) {
2757 for (rt = rcu_dereference(rt_hash_table[h].chain), idx = 0; rt;
2758 rt = rcu_dereference(rt->u.dst.rt_next), idx++) {
2761 skb->dst = dst_clone(&rt->u.dst);
2762 if (rt_fill_info(skb, NETLINK_CB(cb->skb).pid,
2763 cb->nlh->nlmsg_seq, RTM_NEWROUTE,
2764 1, NLM_F_MULTI) <= 0) {
2765 dst_release(xchg(&skb->dst, NULL));
2766 rcu_read_unlock_bh();
2769 dst_release(xchg(&skb->dst, NULL));
2771 rcu_read_unlock_bh();
2781 void ip_rt_multicast_event(struct in_device *in_dev)
2786 #ifdef CONFIG_SYSCTL
2787 static int flush_delay;
2789 static int ipv4_sysctl_rtcache_flush(ctl_table *ctl, int write,
2790 struct file *filp, void __user *buffer,
2791 size_t *lenp, loff_t *ppos)
2794 proc_dointvec(ctl, write, filp, buffer, lenp, ppos);
2795 rt_cache_flush(flush_delay);
2802 static int ipv4_sysctl_rtcache_flush_strategy(ctl_table *table,
2805 void __user *oldval,
2806 size_t __user *oldlenp,
2807 void __user *newval,
2811 if (newlen != sizeof(int))
2813 if (get_user(delay, (int __user *)newval))
2815 rt_cache_flush(delay);
2819 ctl_table ipv4_route_table[] = {
2821 .ctl_name = NET_IPV4_ROUTE_FLUSH,
2822 .procname = "flush",
2823 .data = &flush_delay,
2824 .maxlen = sizeof(int),
2826 .proc_handler = &ipv4_sysctl_rtcache_flush,
2827 .strategy = &ipv4_sysctl_rtcache_flush_strategy,
2830 .ctl_name = NET_IPV4_ROUTE_MIN_DELAY,
2831 .procname = "min_delay",
2832 .data = &ip_rt_min_delay,
2833 .maxlen = sizeof(int),
2835 .proc_handler = &proc_dointvec_jiffies,
2836 .strategy = &sysctl_jiffies,
2839 .ctl_name = NET_IPV4_ROUTE_MAX_DELAY,
2840 .procname = "max_delay",
2841 .data = &ip_rt_max_delay,
2842 .maxlen = sizeof(int),
2844 .proc_handler = &proc_dointvec_jiffies,
2845 .strategy = &sysctl_jiffies,
2848 .ctl_name = NET_IPV4_ROUTE_GC_THRESH,
2849 .procname = "gc_thresh",
2850 .data = &ipv4_dst_ops.gc_thresh,
2851 .maxlen = sizeof(int),
2853 .proc_handler = &proc_dointvec,
2856 .ctl_name = NET_IPV4_ROUTE_MAX_SIZE,
2857 .procname = "max_size",
2858 .data = &ip_rt_max_size,
2859 .maxlen = sizeof(int),
2861 .proc_handler = &proc_dointvec,
2864 /* Deprecated. Use gc_min_interval_ms */
2866 .ctl_name = NET_IPV4_ROUTE_GC_MIN_INTERVAL,
2867 .procname = "gc_min_interval",
2868 .data = &ip_rt_gc_min_interval,
2869 .maxlen = sizeof(int),
2871 .proc_handler = &proc_dointvec_jiffies,
2872 .strategy = &sysctl_jiffies,
2875 .ctl_name = NET_IPV4_ROUTE_GC_MIN_INTERVAL_MS,
2876 .procname = "gc_min_interval_ms",
2877 .data = &ip_rt_gc_min_interval,
2878 .maxlen = sizeof(int),
2880 .proc_handler = &proc_dointvec_ms_jiffies,
2881 .strategy = &sysctl_ms_jiffies,
2884 .ctl_name = NET_IPV4_ROUTE_GC_TIMEOUT,
2885 .procname = "gc_timeout",
2886 .data = &ip_rt_gc_timeout,
2887 .maxlen = sizeof(int),
2889 .proc_handler = &proc_dointvec_jiffies,
2890 .strategy = &sysctl_jiffies,
2893 .ctl_name = NET_IPV4_ROUTE_GC_INTERVAL,
2894 .procname = "gc_interval",
2895 .data = &ip_rt_gc_interval,
2896 .maxlen = sizeof(int),
2898 .proc_handler = &proc_dointvec_jiffies,
2899 .strategy = &sysctl_jiffies,
2902 .ctl_name = NET_IPV4_ROUTE_REDIRECT_LOAD,
2903 .procname = "redirect_load",
2904 .data = &ip_rt_redirect_load,
2905 .maxlen = sizeof(int),
2907 .proc_handler = &proc_dointvec,
2910 .ctl_name = NET_IPV4_ROUTE_REDIRECT_NUMBER,
2911 .procname = "redirect_number",
2912 .data = &ip_rt_redirect_number,
2913 .maxlen = sizeof(int),
2915 .proc_handler = &proc_dointvec,
2918 .ctl_name = NET_IPV4_ROUTE_REDIRECT_SILENCE,
2919 .procname = "redirect_silence",
2920 .data = &ip_rt_redirect_silence,
2921 .maxlen = sizeof(int),
2923 .proc_handler = &proc_dointvec,
2926 .ctl_name = NET_IPV4_ROUTE_ERROR_COST,
2927 .procname = "error_cost",
2928 .data = &ip_rt_error_cost,
2929 .maxlen = sizeof(int),
2931 .proc_handler = &proc_dointvec,
2934 .ctl_name = NET_IPV4_ROUTE_ERROR_BURST,
2935 .procname = "error_burst",
2936 .data = &ip_rt_error_burst,
2937 .maxlen = sizeof(int),
2939 .proc_handler = &proc_dointvec,
2942 .ctl_name = NET_IPV4_ROUTE_GC_ELASTICITY,
2943 .procname = "gc_elasticity",
2944 .data = &ip_rt_gc_elasticity,
2945 .maxlen = sizeof(int),
2947 .proc_handler = &proc_dointvec,
2950 .ctl_name = NET_IPV4_ROUTE_MTU_EXPIRES,
2951 .procname = "mtu_expires",
2952 .data = &ip_rt_mtu_expires,
2953 .maxlen = sizeof(int),
2955 .proc_handler = &proc_dointvec_jiffies,
2956 .strategy = &sysctl_jiffies,
2959 .ctl_name = NET_IPV4_ROUTE_MIN_PMTU,
2960 .procname = "min_pmtu",
2961 .data = &ip_rt_min_pmtu,
2962 .maxlen = sizeof(int),
2964 .proc_handler = &proc_dointvec,
2967 .ctl_name = NET_IPV4_ROUTE_MIN_ADVMSS,
2968 .procname = "min_adv_mss",
2969 .data = &ip_rt_min_advmss,
2970 .maxlen = sizeof(int),
2972 .proc_handler = &proc_dointvec,
2975 .ctl_name = NET_IPV4_ROUTE_SECRET_INTERVAL,
2976 .procname = "secret_interval",
2977 .data = &ip_rt_secret_interval,
2978 .maxlen = sizeof(int),
2980 .proc_handler = &proc_dointvec_jiffies,
2981 .strategy = &sysctl_jiffies,
2987 #ifdef CONFIG_NET_CLS_ROUTE
2988 struct ip_rt_acct *ip_rt_acct __read_mostly;
2989 #endif /* CONFIG_NET_CLS_ROUTE */
2991 static __initdata unsigned long rhash_entries;
2992 static int __init set_rhash_entries(char *str)
2996 rhash_entries = simple_strtoul(str, &str, 0);
2999 __setup("rhash_entries=", set_rhash_entries);
3001 int __init ip_rt_init(void)
3005 rt_hash_rnd = (int) ((num_physpages ^ (num_physpages>>8)) ^
3006 (jiffies ^ (jiffies >> 7)));
3008 #ifdef CONFIG_NET_CLS_ROUTE
3009 ip_rt_acct = __alloc_percpu(256 * sizeof(struct ip_rt_acct));
3011 panic("IP: failed to allocate ip_rt_acct\n");
3014 ipv4_dst_ops.kmem_cachep =
3015 kmem_cache_create("ip_dst_cache", sizeof(struct rtable), 0,
3016 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
3018 ipv4_dst_blackhole_ops.kmem_cachep = ipv4_dst_ops.kmem_cachep;
3020 rt_hash_table = (struct rt_hash_bucket *)
3021 alloc_large_system_hash("IP route cache",
3022 sizeof(struct rt_hash_bucket),
3024 (num_physpages >= 128 * 1024) ?
3030 memset(rt_hash_table, 0, (rt_hash_mask + 1) * sizeof(struct rt_hash_bucket));
3031 rt_hash_lock_init();
3033 ipv4_dst_ops.gc_thresh = (rt_hash_mask + 1);
3034 ip_rt_max_size = (rt_hash_mask + 1) * 16;
3039 setup_timer(&rt_flush_timer, rt_run_flush, 0);
3040 setup_timer(&rt_secret_timer, rt_secret_rebuild, 0);
3042 /* All the timers, started at system startup tend
3043 to synchronize. Perturb it a bit.
3045 schedule_delayed_work(&expires_work,
3046 net_random() % ip_rt_gc_interval + ip_rt_gc_interval);
3048 rt_secret_timer.expires = jiffies + net_random() % ip_rt_secret_interval +
3049 ip_rt_secret_interval;
3050 add_timer(&rt_secret_timer);
3052 if (ip_rt_proc_init(&init_net))
3053 printk(KERN_ERR "Unable to create route proc files\n");
3058 rtnl_register(PF_INET, RTM_GETROUTE, inet_rtm_getroute, NULL);
3063 EXPORT_SYMBOL(__ip_select_ident);
3064 EXPORT_SYMBOL(ip_route_input);
3065 EXPORT_SYMBOL(ip_route_output_key);