blob: 65ff2e52a142e93243e6b52c5589a8391cac78b5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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.
5 *
6 * ROUTE - implementation of the IP router.
7 *
Jesper Juhl02c30a82005-05-05 16:16:16 -07008 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
10 * Alan Cox, <gw4pts@gw4pts.ampr.org>
11 * Linus Torvalds, <Linus.Torvalds@helsinki.fi>
12 * Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
13 *
14 * Fixes:
15 * Alan Cox : Verify area fixes.
16 * Alan Cox : cli() protects routing changes
17 * Rui Oliveira : ICMP routing table updates
18 * (rco@di.uminho.pt) Routing table insertion and update
19 * Linus Torvalds : Rewrote bits to be sensible
20 * Alan Cox : Added BSD route gw semantics
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090021 * Alan Cox : Super /proc >4K
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * Alan Cox : MTU in route table
23 * Alan Cox : MSS actually. Also added the window
24 * clamper.
25 * Sam Lantinga : Fixed route matching in rt_del()
26 * Alan Cox : Routing cache support.
27 * Alan Cox : Removed compatibility cruft.
28 * Alan Cox : RTF_REJECT support.
29 * Alan Cox : TCP irtt support.
30 * Jonathan Naylor : Added Metric support.
31 * Miquel van Smoorenburg : BSD API fixes.
32 * Miquel van Smoorenburg : Metrics.
33 * Alan Cox : Use __u32 properly
34 * Alan Cox : Aligned routing errors more closely with BSD
35 * our system is still very different.
36 * Alan Cox : Faster /proc handling
37 * Alexey Kuznetsov : Massive rework to support tree based routing,
38 * routing caches and better behaviour.
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090039 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 * Olaf Erb : irtt wasn't being copied right.
41 * Bjorn Ekwall : Kerneld route support.
42 * Alan Cox : Multicast fixed (I hope)
43 * Pavel Krauz : Limited broadcast fixed
44 * Mike McLagan : Routing by source
45 * Alexey Kuznetsov : End of old history. Split to fib.c and
46 * route.c and rewritten from scratch.
47 * Andi Kleen : Load-limit warning messages.
48 * Vitaly E. Lavrov : Transparent proxy revived after year coma.
49 * Vitaly E. Lavrov : Race condition in ip_route_input_slow.
50 * Tobias Ringstrom : Uninitialized res.type in ip_route_output_slow.
51 * Vladimir V. Ivanov : IP rule info (flowid) is really useful.
52 * Marc Boucher : routing by fwmark
53 * Robert Olsson : Added rt_cache statistics
54 * Arnaldo C. Melo : Convert proc stuff to seq_file
Eric Dumazetbb1d23b2005-07-05 15:00:32 -070055 * Eric Dumazet : hashed spinlocks and rt_check_expire() fixes.
Ilia Sotnikovcef26852006-03-25 01:38:55 -080056 * Ilia Sotnikov : Ignore TOS on PMTUD and Redirect
57 * Ilia Sotnikov : Removed TOS from hash calculations
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 *
59 * This program is free software; you can redistribute it and/or
60 * modify it under the terms of the GNU General Public License
61 * as published by the Free Software Foundation; either version
62 * 2 of the License, or (at your option) any later version.
63 */
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <linux/module.h>
66#include <asm/uaccess.h>
67#include <asm/system.h>
68#include <linux/bitops.h>
69#include <linux/types.h>
70#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#include <linux/mm.h>
Eric Dumazet424c4b72005-07-05 14:58:19 -070072#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#include <linux/string.h>
74#include <linux/socket.h>
75#include <linux/sockios.h>
76#include <linux/errno.h>
77#include <linux/in.h>
78#include <linux/inet.h>
79#include <linux/netdevice.h>
80#include <linux/proc_fs.h>
81#include <linux/init.h>
Eric Dumazet39c90ec2007-09-15 10:55:54 -070082#include <linux/workqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#include <linux/inetdevice.h>
85#include <linux/igmp.h>
86#include <linux/pkt_sched.h>
87#include <linux/mroute.h>
88#include <linux/netfilter_ipv4.h>
89#include <linux/random.h>
90#include <linux/jhash.h>
91#include <linux/rcupdate.h>
92#include <linux/times.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090093#include <linux/slab.h>
Stephen Rothwell732e81a2011-12-22 17:03:29 +110094#include <linux/prefetch.h>
Herbert Xu352e5122007-11-13 21:34:06 -080095#include <net/dst.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020096#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#include <net/protocol.h>
98#include <net/ip.h>
99#include <net/route.h>
100#include <net/inetpeer.h>
101#include <net/sock.h>
102#include <net/ip_fib.h>
103#include <net/arp.h>
104#include <net/tcp.h>
105#include <net/icmp.h>
106#include <net/xfrm.h>
Tom Tucker8d717402006-07-30 20:43:36 -0700107#include <net/netevent.h>
Thomas Graf63f34442007-03-22 11:55:17 -0700108#include <net/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#ifdef CONFIG_SYSCTL
110#include <linux/sysctl.h>
111#endif
David S. Millere997d472011-08-03 20:50:44 -0700112#include <net/secure_seq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
David S. Miller68a5e3d2011-03-11 20:07:33 -0500114#define RT_FL_TOS(oldflp4) \
115 ((u32)(oldflp4->flowi4_tos & (IPTOS_RT_MASK | RTO_ONLINK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117#define IP_MAX_MTU 0xFFF0
118
119#define RT_GC_TIMEOUT (300*HZ)
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121static int ip_rt_max_size;
Stephen Hemminger817bc4d2008-03-22 17:43:59 -0700122static int ip_rt_gc_timeout __read_mostly = RT_GC_TIMEOUT;
123static int ip_rt_gc_interval __read_mostly = 60 * HZ;
124static int ip_rt_gc_min_interval __read_mostly = HZ / 2;
125static int ip_rt_redirect_number __read_mostly = 9;
126static int ip_rt_redirect_load __read_mostly = HZ / 50;
127static int ip_rt_redirect_silence __read_mostly = ((HZ / 50) << (9 + 1));
128static int ip_rt_error_cost __read_mostly = HZ;
129static int ip_rt_error_burst __read_mostly = 5 * HZ;
130static int ip_rt_gc_elasticity __read_mostly = 8;
131static int ip_rt_mtu_expires __read_mostly = 10 * 60 * HZ;
132static int ip_rt_min_pmtu __read_mostly = 512 + 20 + 20;
133static int ip_rt_min_advmss __read_mostly = 256;
Neil Horman1080d702008-10-27 12:28:25 -0700134static int rt_chain_length_max __read_mostly = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Eric Dumazetad5dd5d2011-12-21 15:47:16 -0500136static struct delayed_work expires_work;
137static unsigned long expires_ljiffies;
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139/*
140 * Interface to generic destination cache.
141 */
142
143static struct dst_entry *ipv4_dst_check(struct dst_entry *dst, u32 cookie);
David S. Miller0dbaee32010-12-13 12:52:14 -0800144static unsigned int ipv4_default_advmss(const struct dst_entry *dst);
David S. Millerd33e4552010-12-14 13:01:14 -0800145static unsigned int ipv4_default_mtu(const struct dst_entry *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146static void ipv4_dst_destroy(struct dst_entry *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147static struct dst_entry *ipv4_negative_advice(struct dst_entry *dst);
148static void ipv4_link_failure(struct sk_buff *skb);
149static void ip_rt_update_pmtu(struct dst_entry *dst, u32 mtu);
Daniel Lezcano569d3642008-01-18 03:56:57 -0800150static int rt_garbage_collect(struct dst_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Eric Dumazet72cdd1d2010-11-11 07:14:07 +0000152static void ipv4_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
153 int how)
154{
155}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
David S. Miller62fa8a82011-01-26 20:51:05 -0800157static u32 *ipv4_cow_metrics(struct dst_entry *dst, unsigned long old)
158{
David S. Miller06582542011-01-27 14:58:42 -0800159 struct rtable *rt = (struct rtable *) dst;
160 struct inet_peer *peer;
161 u32 *p = NULL;
David S. Miller62fa8a82011-01-26 20:51:05 -0800162
David S. Miller06582542011-01-27 14:58:42 -0800163 if (!rt->peer)
David S. Millera48eff12011-05-18 18:42:43 -0400164 rt_bind_peer(rt, rt->rt_dst, 1);
David S. Miller06582542011-01-27 14:58:42 -0800165
166 peer = rt->peer;
167 if (peer) {
David S. Miller62fa8a82011-01-26 20:51:05 -0800168 u32 *old_p = __DST_METRICS_PTR(old);
169 unsigned long prev, new;
170
David S. Miller06582542011-01-27 14:58:42 -0800171 p = peer->metrics;
172 if (inet_metrics_new(peer))
173 memcpy(p, old_p, sizeof(u32) * RTAX_MAX);
David S. Miller62fa8a82011-01-26 20:51:05 -0800174
175 new = (unsigned long) p;
176 prev = cmpxchg(&dst->_metrics, old, new);
177
178 if (prev != old) {
David S. Miller62fa8a82011-01-26 20:51:05 -0800179 p = __DST_METRICS_PTR(prev);
180 if (prev & DST_METRICS_READ_ONLY)
181 p = NULL;
182 } else {
David S. Miller62fa8a82011-01-26 20:51:05 -0800183 if (rt->fi) {
184 fib_info_put(rt->fi);
185 rt->fi = NULL;
186 }
187 }
188 }
189 return p;
190}
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192static struct dst_ops ipv4_dst_ops = {
193 .family = AF_INET,
Harvey Harrison09640e62009-02-01 00:45:17 -0800194 .protocol = cpu_to_be16(ETH_P_IP),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 .gc = rt_garbage_collect,
196 .check = ipv4_dst_check,
David S. Miller0dbaee32010-12-13 12:52:14 -0800197 .default_advmss = ipv4_default_advmss,
David S. Millerd33e4552010-12-14 13:01:14 -0800198 .default_mtu = ipv4_default_mtu,
David S. Miller62fa8a82011-01-26 20:51:05 -0800199 .cow_metrics = ipv4_cow_metrics,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 .destroy = ipv4_dst_destroy,
201 .ifdown = ipv4_dst_ifdown,
202 .negative_advice = ipv4_negative_advice,
203 .link_failure = ipv4_link_failure,
204 .update_pmtu = ip_rt_update_pmtu,
Herbert Xu1ac06e02008-05-20 14:32:14 -0700205 .local_out = __ip_local_out,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206};
207
208#define ECN_OR_COST(class) TC_PRIO_##class
209
Philippe De Muyter4839c522007-07-09 15:32:57 -0700210const __u8 ip_tos2prio[16] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 TC_PRIO_BESTEFFORT,
Dan Siemon4a2b9c32011-03-15 13:56:07 +0000212 ECN_OR_COST(BESTEFFORT),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 TC_PRIO_BESTEFFORT,
214 ECN_OR_COST(BESTEFFORT),
215 TC_PRIO_BULK,
216 ECN_OR_COST(BULK),
217 TC_PRIO_BULK,
218 ECN_OR_COST(BULK),
219 TC_PRIO_INTERACTIVE,
220 ECN_OR_COST(INTERACTIVE),
221 TC_PRIO_INTERACTIVE,
222 ECN_OR_COST(INTERACTIVE),
223 TC_PRIO_INTERACTIVE_BULK,
224 ECN_OR_COST(INTERACTIVE_BULK),
225 TC_PRIO_INTERACTIVE_BULK,
226 ECN_OR_COST(INTERACTIVE_BULK)
227};
228
229
230/*
231 * Route cache.
232 */
233
234/* The locking scheme is rather straight forward:
235 *
236 * 1) Read-Copy Update protects the buckets of the central route hash.
237 * 2) Only writers remove entries, and they hold the lock
238 * as they look at rtable reference counts.
239 * 3) Only readers acquire references to rtable entries,
240 * they do so with atomic increments and with the
241 * lock held.
242 */
243
244struct rt_hash_bucket {
Eric Dumazet1c317202010-10-25 21:02:07 +0000245 struct rtable __rcu *chain;
Eric Dumazet22c047c2005-07-05 14:55:24 -0700246};
Neil Horman1080d702008-10-27 12:28:25 -0700247
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700248#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK) || \
249 defined(CONFIG_PROVE_LOCKING)
Eric Dumazet22c047c2005-07-05 14:55:24 -0700250/*
251 * Instead of using one spinlock for each rt_hash_bucket, we use a table of spinlocks
252 * The size of this table is a power of two and depends on the number of CPUS.
Ingo Molnar62051202006-07-03 00:24:59 -0700253 * (on lockdep we have a quite big spinlock_t, so keep the size down there)
Eric Dumazet22c047c2005-07-05 14:55:24 -0700254 */
Ingo Molnar62051202006-07-03 00:24:59 -0700255#ifdef CONFIG_LOCKDEP
256# define RT_HASH_LOCK_SZ 256
Eric Dumazet22c047c2005-07-05 14:55:24 -0700257#else
Ingo Molnar62051202006-07-03 00:24:59 -0700258# if NR_CPUS >= 32
259# define RT_HASH_LOCK_SZ 4096
260# elif NR_CPUS >= 16
261# define RT_HASH_LOCK_SZ 2048
262# elif NR_CPUS >= 8
263# define RT_HASH_LOCK_SZ 1024
264# elif NR_CPUS >= 4
265# define RT_HASH_LOCK_SZ 512
266# else
267# define RT_HASH_LOCK_SZ 256
268# endif
Eric Dumazet22c047c2005-07-05 14:55:24 -0700269#endif
270
271static spinlock_t *rt_hash_locks;
272# define rt_hash_lock_addr(slot) &rt_hash_locks[(slot) & (RT_HASH_LOCK_SZ - 1)]
Pavel Emelyanov1ff1cc22007-12-05 21:15:05 -0800273
274static __init void rt_hash_lock_init(void)
275{
276 int i;
277
278 rt_hash_locks = kmalloc(sizeof(spinlock_t) * RT_HASH_LOCK_SZ,
279 GFP_KERNEL);
280 if (!rt_hash_locks)
281 panic("IP: failed to allocate rt_hash_locks\n");
282
283 for (i = 0; i < RT_HASH_LOCK_SZ; i++)
284 spin_lock_init(&rt_hash_locks[i]);
285}
Eric Dumazet22c047c2005-07-05 14:55:24 -0700286#else
287# define rt_hash_lock_addr(slot) NULL
Pavel Emelyanov1ff1cc22007-12-05 21:15:05 -0800288
289static inline void rt_hash_lock_init(void)
290{
291}
Eric Dumazet22c047c2005-07-05 14:55:24 -0700292#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Stephen Hemminger817bc4d2008-03-22 17:43:59 -0700294static struct rt_hash_bucket *rt_hash_table __read_mostly;
295static unsigned rt_hash_mask __read_mostly;
296static unsigned int rt_hash_log __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Eric Dumazet2f970d82006-01-17 02:54:36 -0800298static DEFINE_PER_CPU(struct rt_cache_stat, rt_cache_stat);
Eric Dumazet27f39c72010-05-19 22:07:23 +0000299#define RT_CACHE_STAT_INC(field) __this_cpu_inc(rt_cache_stat.field)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Denis V. Lunevb00180d2008-07-05 19:04:09 -0700301static inline unsigned int rt_hash(__be32 daddr, __be32 saddr, int idx,
Eric Dumazet0eae88f2010-04-20 19:06:52 -0700302 int genid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Eric Dumazet0eae88f2010-04-20 19:06:52 -0700304 return jhash_3words((__force u32)daddr, (__force u32)saddr,
Denis V. Lunevb00180d2008-07-05 19:04:09 -0700305 idx, genid)
Eric Dumazet29e75252008-01-31 17:05:09 -0800306 & rt_hash_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
Denis V. Luneve84f84f2008-07-05 19:04:32 -0700309static inline int rt_genid(struct net *net)
310{
311 return atomic_read(&net->ipv4.rt_genid);
312}
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314#ifdef CONFIG_PROC_FS
315struct rt_cache_iter_state {
Denis V. Luneva75e9362008-02-28 20:50:55 -0800316 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 int bucket;
Eric Dumazet29e75252008-01-31 17:05:09 -0800318 int genid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319};
320
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900321static struct rtable *rt_cache_get_first(struct seq_file *seq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900323 struct rt_cache_iter_state *st = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 struct rtable *r = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 for (st->bucket = rt_hash_mask; st->bucket >= 0; --st->bucket) {
Eric Dumazet1c317202010-10-25 21:02:07 +0000327 if (!rcu_dereference_raw(rt_hash_table[st->bucket].chain))
Eric Dumazeta6272662008-08-28 01:11:25 -0700328 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 rcu_read_lock_bh();
Paul E. McKenneya898def2010-02-22 17:04:49 -0800330 r = rcu_dereference_bh(rt_hash_table[st->bucket].chain);
Eric Dumazet29e75252008-01-31 17:05:09 -0800331 while (r) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700332 if (dev_net(r->dst.dev) == seq_file_net(seq) &&
Denis V. Luneva75e9362008-02-28 20:50:55 -0800333 r->rt_genid == st->genid)
Eric Dumazet29e75252008-01-31 17:05:09 -0800334 return r;
Changli Gaod8d1f302010-06-10 23:31:35 -0700335 r = rcu_dereference_bh(r->dst.rt_next);
Eric Dumazet29e75252008-01-31 17:05:09 -0800336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 rcu_read_unlock_bh();
338 }
Eric Dumazet29e75252008-01-31 17:05:09 -0800339 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900342static struct rtable *__rt_cache_get_next(struct seq_file *seq,
Denis V. Lunev642d6312008-02-28 20:50:33 -0800343 struct rtable *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900345 struct rt_cache_iter_state *st = seq->private;
Eric Dumazeta6272662008-08-28 01:11:25 -0700346
Eric Dumazet1c317202010-10-25 21:02:07 +0000347 r = rcu_dereference_bh(r->dst.rt_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 while (!r) {
349 rcu_read_unlock_bh();
Eric Dumazeta6272662008-08-28 01:11:25 -0700350 do {
351 if (--st->bucket < 0)
352 return NULL;
Eric Dumazet1c317202010-10-25 21:02:07 +0000353 } while (!rcu_dereference_raw(rt_hash_table[st->bucket].chain));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 rcu_read_lock_bh();
Eric Dumazet1c317202010-10-25 21:02:07 +0000355 r = rcu_dereference_bh(rt_hash_table[st->bucket].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 }
Eric Dumazet1c317202010-10-25 21:02:07 +0000357 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900360static struct rtable *rt_cache_get_next(struct seq_file *seq,
Denis V. Lunev642d6312008-02-28 20:50:33 -0800361 struct rtable *r)
362{
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900363 struct rt_cache_iter_state *st = seq->private;
364 while ((r = __rt_cache_get_next(seq, r)) != NULL) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700365 if (dev_net(r->dst.dev) != seq_file_net(seq))
Denis V. Luneva75e9362008-02-28 20:50:55 -0800366 continue;
Denis V. Lunev642d6312008-02-28 20:50:33 -0800367 if (r->rt_genid == st->genid)
368 break;
369 }
370 return r;
371}
372
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900373static struct rtable *rt_cache_get_idx(struct seq_file *seq, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900375 struct rtable *r = rt_cache_get_first(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 if (r)
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900378 while (pos && (r = rt_cache_get_next(seq, r)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 --pos;
380 return pos ? NULL : r;
381}
382
383static void *rt_cache_seq_start(struct seq_file *seq, loff_t *pos)
384{
Eric Dumazet29e75252008-01-31 17:05:09 -0800385 struct rt_cache_iter_state *st = seq->private;
Eric Dumazet29e75252008-01-31 17:05:09 -0800386 if (*pos)
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900387 return rt_cache_get_idx(seq, *pos - 1);
Denis V. Luneve84f84f2008-07-05 19:04:32 -0700388 st->genid = rt_genid(seq_file_net(seq));
Eric Dumazet29e75252008-01-31 17:05:09 -0800389 return SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
391
392static void *rt_cache_seq_next(struct seq_file *seq, void *v, loff_t *pos)
393{
Eric Dumazet29e75252008-01-31 17:05:09 -0800394 struct rtable *r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 if (v == SEQ_START_TOKEN)
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900397 r = rt_cache_get_first(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 else
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +0900399 r = rt_cache_get_next(seq, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 ++*pos;
401 return r;
402}
403
404static void rt_cache_seq_stop(struct seq_file *seq, void *v)
405{
406 if (v && v != SEQ_START_TOKEN)
407 rcu_read_unlock_bh();
408}
409
410static int rt_cache_seq_show(struct seq_file *seq, void *v)
411{
412 if (v == SEQ_START_TOKEN)
413 seq_printf(seq, "%-127s\n",
414 "Iface\tDestination\tGateway \tFlags\t\tRefCnt\tUse\t"
415 "Metric\tSource\t\tMTU\tWindow\tIRTT\tTOS\tHHRef\t"
416 "HHUptod\tSpecDst");
417 else {
418 struct rtable *r = v;
Eric Dumazet8a533662012-02-09 16:13:19 -0500419 struct neighbour *n;
420 int len, HHUptod;
421
422 rcu_read_lock();
423 n = dst_get_neighbour(&r->dst);
424 HHUptod = (n && (n->nud_state & NUD_CONNECTED)) ? 1 : 0;
425 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Eric Dumazet0eae88f2010-04-20 19:06:52 -0700427 seq_printf(seq, "%s\t%08X\t%08X\t%8X\t%d\t%u\t%d\t"
428 "%08X\t%d\t%u\t%u\t%02X\t%d\t%1d\t%08X%n",
Changli Gaod8d1f302010-06-10 23:31:35 -0700429 r->dst.dev ? r->dst.dev->name : "*",
Eric Dumazet0eae88f2010-04-20 19:06:52 -0700430 (__force u32)r->rt_dst,
431 (__force u32)r->rt_gateway,
Changli Gaod8d1f302010-06-10 23:31:35 -0700432 r->rt_flags, atomic_read(&r->dst.__refcnt),
433 r->dst.__use, 0, (__force u32)r->rt_src,
David S. Miller0dbaee32010-12-13 12:52:14 -0800434 dst_metric_advmss(&r->dst) + 40,
Changli Gaod8d1f302010-06-10 23:31:35 -0700435 dst_metric(&r->dst, RTAX_WINDOW),
436 (int)((dst_metric(&r->dst, RTAX_RTT) >> 3) +
437 dst_metric(&r->dst, RTAX_RTTVAR)),
David S. Miller475949d2011-05-03 19:45:15 -0700438 r->rt_key_tos,
Changli Gaod8d1f302010-06-10 23:31:35 -0700439 r->dst.hh ? atomic_read(&r->dst.hh->hh_refcnt) : -1,
Eric Dumazet8a533662012-02-09 16:13:19 -0500440 HHUptod,
Pavel Emelyanov5e659e42008-04-24 01:02:16 -0700441 r->rt_spec_dst, &len);
442
443 seq_printf(seq, "%*s\n", 127 - len, "");
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900444 }
445 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446}
447
Stephen Hemmingerf6908082007-03-12 14:34:29 -0700448static const struct seq_operations rt_cache_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 .start = rt_cache_seq_start,
450 .next = rt_cache_seq_next,
451 .stop = rt_cache_seq_stop,
452 .show = rt_cache_seq_show,
453};
454
455static int rt_cache_seq_open(struct inode *inode, struct file *file)
456{
Denis V. Luneva75e9362008-02-28 20:50:55 -0800457 return seq_open_net(inode, file, &rt_cache_seq_ops,
Pavel Emelyanovcf7732e2007-10-10 02:29:29 -0700458 sizeof(struct rt_cache_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459}
460
Arjan van de Ven9a321442007-02-12 00:55:35 -0800461static const struct file_operations rt_cache_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 .owner = THIS_MODULE,
463 .open = rt_cache_seq_open,
464 .read = seq_read,
465 .llseek = seq_lseek,
Denis V. Luneva75e9362008-02-28 20:50:55 -0800466 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467};
468
469
470static void *rt_cpu_seq_start(struct seq_file *seq, loff_t *pos)
471{
472 int cpu;
473
474 if (*pos == 0)
475 return SEQ_START_TOKEN;
476
Rusty Russell0f231742008-12-29 12:23:42 +0000477 for (cpu = *pos-1; cpu < nr_cpu_ids; ++cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 if (!cpu_possible(cpu))
479 continue;
480 *pos = cpu+1;
Eric Dumazet2f970d82006-01-17 02:54:36 -0800481 return &per_cpu(rt_cache_stat, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
483 return NULL;
484}
485
486static void *rt_cpu_seq_next(struct seq_file *seq, void *v, loff_t *pos)
487{
488 int cpu;
489
Rusty Russell0f231742008-12-29 12:23:42 +0000490 for (cpu = *pos; cpu < nr_cpu_ids; ++cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 if (!cpu_possible(cpu))
492 continue;
493 *pos = cpu+1;
Eric Dumazet2f970d82006-01-17 02:54:36 -0800494 return &per_cpu(rt_cache_stat, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
496 return NULL;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498}
499
500static void rt_cpu_seq_stop(struct seq_file *seq, void *v)
501{
502
503}
504
505static int rt_cpu_seq_show(struct seq_file *seq, void *v)
506{
507 struct rt_cache_stat *st = v;
508
509 if (v == SEQ_START_TOKEN) {
Olaf Rempel5bec0032005-04-28 12:16:08 -0700510 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");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 return 0;
512 }
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 seq_printf(seq,"%08x %08x %08x %08x %08x %08x %08x %08x "
515 " %08x %08x %08x %08x %08x %08x %08x %08x %08x \n",
Eric Dumazetfc66f952010-10-08 06:37:34 +0000516 dst_entries_get_slow(&ipv4_dst_ops),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 st->in_hit,
518 st->in_slow_tot,
519 st->in_slow_mc,
520 st->in_no_route,
521 st->in_brd,
522 st->in_martian_dst,
523 st->in_martian_src,
524
525 st->out_hit,
526 st->out_slow_tot,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900527 st->out_slow_mc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 st->gc_total,
530 st->gc_ignored,
531 st->gc_goal_miss,
532 st->gc_dst_overflow,
533 st->in_hlist_search,
534 st->out_hlist_search
535 );
536 return 0;
537}
538
Stephen Hemmingerf6908082007-03-12 14:34:29 -0700539static const struct seq_operations rt_cpu_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 .start = rt_cpu_seq_start,
541 .next = rt_cpu_seq_next,
542 .stop = rt_cpu_seq_stop,
543 .show = rt_cpu_seq_show,
544};
545
546
547static int rt_cpu_seq_open(struct inode *inode, struct file *file)
548{
549 return seq_open(file, &rt_cpu_seq_ops);
550}
551
Arjan van de Ven9a321442007-02-12 00:55:35 -0800552static const struct file_operations rt_cpu_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 .owner = THIS_MODULE,
554 .open = rt_cpu_seq_open,
555 .read = seq_read,
556 .llseek = seq_lseek,
557 .release = seq_release,
558};
559
Patrick McHardyc7066f72011-01-14 13:36:42 +0100560#ifdef CONFIG_IP_ROUTE_CLASSID
Alexey Dobriyana661c412009-11-25 15:40:35 -0800561static int rt_acct_proc_show(struct seq_file *m, void *v)
Pavel Emelyanov78c686e2007-12-05 21:13:48 -0800562{
Alexey Dobriyana661c412009-11-25 15:40:35 -0800563 struct ip_rt_acct *dst, *src;
564 unsigned int i, j;
Pavel Emelyanov78c686e2007-12-05 21:13:48 -0800565
Alexey Dobriyana661c412009-11-25 15:40:35 -0800566 dst = kcalloc(256, sizeof(struct ip_rt_acct), GFP_KERNEL);
567 if (!dst)
568 return -ENOMEM;
Pavel Emelyanov78c686e2007-12-05 21:13:48 -0800569
Alexey Dobriyana661c412009-11-25 15:40:35 -0800570 for_each_possible_cpu(i) {
571 src = (struct ip_rt_acct *)per_cpu_ptr(ip_rt_acct, i);
572 for (j = 0; j < 256; j++) {
573 dst[j].o_bytes += src[j].o_bytes;
574 dst[j].o_packets += src[j].o_packets;
575 dst[j].i_bytes += src[j].i_bytes;
576 dst[j].i_packets += src[j].i_packets;
Pavel Emelyanov78c686e2007-12-05 21:13:48 -0800577 }
578 }
Alexey Dobriyana661c412009-11-25 15:40:35 -0800579
580 seq_write(m, dst, 256 * sizeof(struct ip_rt_acct));
581 kfree(dst);
582 return 0;
Pavel Emelyanov78c686e2007-12-05 21:13:48 -0800583}
Alexey Dobriyana661c412009-11-25 15:40:35 -0800584
585static int rt_acct_proc_open(struct inode *inode, struct file *file)
586{
587 return single_open(file, rt_acct_proc_show, NULL);
588}
589
590static const struct file_operations rt_acct_proc_fops = {
591 .owner = THIS_MODULE,
592 .open = rt_acct_proc_open,
593 .read = seq_read,
594 .llseek = seq_lseek,
595 .release = single_release,
596};
Pavel Emelyanov78c686e2007-12-05 21:13:48 -0800597#endif
Pavel Emelyanov107f1632007-12-05 21:14:28 -0800598
Denis V. Lunev73b38712008-02-28 20:51:18 -0800599static int __net_init ip_rt_do_proc_init(struct net *net)
Pavel Emelyanov107f1632007-12-05 21:14:28 -0800600{
601 struct proc_dir_entry *pde;
602
603 pde = proc_net_fops_create(net, "rt_cache", S_IRUGO,
604 &rt_cache_seq_fops);
605 if (!pde)
606 goto err1;
607
Wang Chen77020722008-02-28 14:14:25 -0800608 pde = proc_create("rt_cache", S_IRUGO,
609 net->proc_net_stat, &rt_cpu_seq_fops);
Pavel Emelyanov107f1632007-12-05 21:14:28 -0800610 if (!pde)
611 goto err2;
612
Patrick McHardyc7066f72011-01-14 13:36:42 +0100613#ifdef CONFIG_IP_ROUTE_CLASSID
Alexey Dobriyana661c412009-11-25 15:40:35 -0800614 pde = proc_create("rt_acct", 0, net->proc_net, &rt_acct_proc_fops);
Pavel Emelyanov107f1632007-12-05 21:14:28 -0800615 if (!pde)
616 goto err3;
617#endif
618 return 0;
619
Patrick McHardyc7066f72011-01-14 13:36:42 +0100620#ifdef CONFIG_IP_ROUTE_CLASSID
Pavel Emelyanov107f1632007-12-05 21:14:28 -0800621err3:
622 remove_proc_entry("rt_cache", net->proc_net_stat);
623#endif
624err2:
625 remove_proc_entry("rt_cache", net->proc_net);
626err1:
627 return -ENOMEM;
628}
Denis V. Lunev73b38712008-02-28 20:51:18 -0800629
630static void __net_exit ip_rt_do_proc_exit(struct net *net)
631{
632 remove_proc_entry("rt_cache", net->proc_net_stat);
633 remove_proc_entry("rt_cache", net->proc_net);
Patrick McHardyc7066f72011-01-14 13:36:42 +0100634#ifdef CONFIG_IP_ROUTE_CLASSID
Denis V. Lunev73b38712008-02-28 20:51:18 -0800635 remove_proc_entry("rt_acct", net->proc_net);
Alexey Dobriyan0a931ac2010-01-17 03:32:50 +0000636#endif
Denis V. Lunev73b38712008-02-28 20:51:18 -0800637}
638
639static struct pernet_operations ip_rt_proc_ops __net_initdata = {
640 .init = ip_rt_do_proc_init,
641 .exit = ip_rt_do_proc_exit,
642};
643
644static int __init ip_rt_proc_init(void)
645{
646 return register_pernet_subsys(&ip_rt_proc_ops);
647}
648
Pavel Emelyanov107f1632007-12-05 21:14:28 -0800649#else
Denis V. Lunev73b38712008-02-28 20:51:18 -0800650static inline int ip_rt_proc_init(void)
Pavel Emelyanov107f1632007-12-05 21:14:28 -0800651{
652 return 0;
653}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654#endif /* CONFIG_PROC_FS */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900655
Stephen Hemminger5969f712008-04-10 01:52:09 -0700656static inline void rt_free(struct rtable *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
Changli Gaod8d1f302010-06-10 23:31:35 -0700658 call_rcu_bh(&rt->dst.rcu_head, dst_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
Stephen Hemminger5969f712008-04-10 01:52:09 -0700661static inline void rt_drop(struct rtable *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 ip_rt_put(rt);
Changli Gaod8d1f302010-06-10 23:31:35 -0700664 call_rcu_bh(&rt->dst.rcu_head, dst_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
Stephen Hemminger5969f712008-04-10 01:52:09 -0700667static inline int rt_fast_clean(struct rtable *rth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
669 /* Kill broadcast/multicast entries very aggresively, if they
670 collide in hash table with more useful entries */
671 return (rth->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST)) &&
David S. Millerc7537962010-11-11 17:07:48 -0800672 rt_is_input_route(rth) && rth->dst.rt_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673}
674
Stephen Hemminger5969f712008-04-10 01:52:09 -0700675static inline int rt_valuable(struct rtable *rth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
677 return (rth->rt_flags & (RTCF_REDIRECTED | RTCF_NOTIFY)) ||
David S. Miller2c8cec52011-02-09 20:42:07 -0800678 (rth->peer && rth->peer->pmtu_expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}
680
681static int rt_may_expire(struct rtable *rth, unsigned long tmo1, unsigned long tmo2)
682{
683 unsigned long age;
684 int ret = 0;
685
Changli Gaod8d1f302010-06-10 23:31:35 -0700686 if (atomic_read(&rth->dst.__refcnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 goto out;
688
Changli Gaod8d1f302010-06-10 23:31:35 -0700689 age = jiffies - rth->dst.lastuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 if ((age <= tmo1 && !rt_fast_clean(rth)) ||
691 (age <= tmo2 && rt_valuable(rth)))
692 goto out;
693 ret = 1;
694out: return ret;
695}
696
697/* Bits of score are:
698 * 31: very valuable
699 * 30: not quite useless
700 * 29..0: usage counter
701 */
702static inline u32 rt_score(struct rtable *rt)
703{
Changli Gaod8d1f302010-06-10 23:31:35 -0700704 u32 score = jiffies - rt->dst.lastuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 score = ~score & ~(3<<30);
707
708 if (rt_valuable(rt))
709 score |= (1<<31);
710
David S. Millerc7537962010-11-11 17:07:48 -0800711 if (rt_is_output_route(rt) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 !(rt->rt_flags & (RTCF_BROADCAST|RTCF_MULTICAST|RTCF_LOCAL)))
713 score |= (1<<30);
714
715 return score;
716}
717
Neil Horman1080d702008-10-27 12:28:25 -0700718static inline bool rt_caching(const struct net *net)
719{
720 return net->ipv4.current_rt_cache_rebuild_count <=
721 net->ipv4.sysctl_rt_cache_rebuild_count;
722}
723
David S. Miller5e2b61f2011-03-04 21:47:09 -0800724static inline bool compare_hash_inputs(const struct rtable *rt1,
725 const struct rtable *rt2)
Neil Horman1080d702008-10-27 12:28:25 -0700726{
David S. Miller5e2b61f2011-03-04 21:47:09 -0800727 return ((((__force u32)rt1->rt_key_dst ^ (__force u32)rt2->rt_key_dst) |
728 ((__force u32)rt1->rt_key_src ^ (__force u32)rt2->rt_key_src) |
Julian Anastasov025fd912011-08-09 04:01:16 +0000729 (rt1->rt_route_iif ^ rt2->rt_route_iif)) == 0);
Neil Horman1080d702008-10-27 12:28:25 -0700730}
731
David S. Miller5e2b61f2011-03-04 21:47:09 -0800732static inline int compare_keys(struct rtable *rt1, struct rtable *rt2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
David S. Miller5e2b61f2011-03-04 21:47:09 -0800734 return (((__force u32)rt1->rt_key_dst ^ (__force u32)rt2->rt_key_dst) |
735 ((__force u32)rt1->rt_key_src ^ (__force u32)rt2->rt_key_src) |
736 (rt1->rt_mark ^ rt2->rt_mark) |
David S. Miller475949d2011-05-03 19:45:15 -0700737 (rt1->rt_key_tos ^ rt2->rt_key_tos) |
Julian Anastasov44a41f42011-08-07 22:20:20 -0700738 (rt1->rt_route_iif ^ rt2->rt_route_iif) |
Julian Anastasov025fd912011-08-09 04:01:16 +0000739 (rt1->rt_oif ^ rt2->rt_oif)) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740}
741
Denis V. Lunevb5921912008-01-22 23:50:25 -0800742static inline int compare_netns(struct rtable *rt1, struct rtable *rt2)
743{
Changli Gaod8d1f302010-06-10 23:31:35 -0700744 return net_eq(dev_net(rt1->dst.dev), dev_net(rt2->dst.dev));
Denis V. Lunevb5921912008-01-22 23:50:25 -0800745}
746
Denis V. Luneve84f84f2008-07-05 19:04:32 -0700747static inline int rt_is_expired(struct rtable *rth)
748{
Changli Gaod8d1f302010-06-10 23:31:35 -0700749 return rth->rt_genid != rt_genid(dev_net(rth->dst.dev));
Denis V. Luneve84f84f2008-07-05 19:04:32 -0700750}
751
Eric Dumazetbeb659b2007-11-19 22:43:37 -0800752/*
753 * Perform a full scan of hash table and free all entries.
754 * Can be called by a softirq or a process.
755 * In the later case, we want to be reschedule if necessary
756 */
David S. Miller6561a3b2010-12-19 21:11:20 -0800757static void rt_do_flush(struct net *net, int process_context)
Eric Dumazetbeb659b2007-11-19 22:43:37 -0800758{
759 unsigned int i;
760 struct rtable *rth, *next;
761
762 for (i = 0; i <= rt_hash_mask; i++) {
David S. Miller6561a3b2010-12-19 21:11:20 -0800763 struct rtable __rcu **pprev;
764 struct rtable *list;
765
Eric Dumazetbeb659b2007-11-19 22:43:37 -0800766 if (process_context && need_resched())
767 cond_resched();
Eric Dumazet1c317202010-10-25 21:02:07 +0000768 rth = rcu_dereference_raw(rt_hash_table[i].chain);
Eric Dumazetbeb659b2007-11-19 22:43:37 -0800769 if (!rth)
770 continue;
771
772 spin_lock_bh(rt_hash_lock_addr(i));
Denis V. Lunev32cb5b42008-07-05 19:06:12 -0700773
David S. Miller6561a3b2010-12-19 21:11:20 -0800774 list = NULL;
775 pprev = &rt_hash_table[i].chain;
776 rth = rcu_dereference_protected(*pprev,
Eric Dumazet1c317202010-10-25 21:02:07 +0000777 lockdep_is_held(rt_hash_lock_addr(i)));
Denis V. Lunev32cb5b42008-07-05 19:06:12 -0700778
David S. Miller6561a3b2010-12-19 21:11:20 -0800779 while (rth) {
780 next = rcu_dereference_protected(rth->dst.rt_next,
781 lockdep_is_held(rt_hash_lock_addr(i)));
Denis V. Lunev32cb5b42008-07-05 19:06:12 -0700782
David S. Miller6561a3b2010-12-19 21:11:20 -0800783 if (!net ||
784 net_eq(dev_net(rth->dst.dev), net)) {
785 rcu_assign_pointer(*pprev, next);
786 rcu_assign_pointer(rth->dst.rt_next, list);
787 list = rth;
Denis V. Lunev32cb5b42008-07-05 19:06:12 -0700788 } else {
David S. Miller6561a3b2010-12-19 21:11:20 -0800789 pprev = &rth->dst.rt_next;
Denis V. Lunev32cb5b42008-07-05 19:06:12 -0700790 }
David S. Miller6561a3b2010-12-19 21:11:20 -0800791 rth = next;
Denis V. Lunev32cb5b42008-07-05 19:06:12 -0700792 }
David S. Miller6561a3b2010-12-19 21:11:20 -0800793
Eric Dumazetbeb659b2007-11-19 22:43:37 -0800794 spin_unlock_bh(rt_hash_lock_addr(i));
795
David S. Miller6561a3b2010-12-19 21:11:20 -0800796 for (; list; list = next) {
797 next = rcu_dereference_protected(list->dst.rt_next, 1);
798 rt_free(list);
Eric Dumazetbeb659b2007-11-19 22:43:37 -0800799 }
800 }
801}
802
Neil Horman1080d702008-10-27 12:28:25 -0700803/*
804 * While freeing expired entries, we compute average chain length
805 * and standard deviation, using fixed-point arithmetic.
806 * This to have an estimation of rt_chain_length_max
807 * rt_chain_length_max = max(elasticity, AVG + 4*SD)
808 * We use 3 bits for frational part, and 29 (or 61) for magnitude.
809 */
810
811#define FRACT_BITS 3
812#define ONE (1UL << FRACT_BITS)
813
Eric Dumazet98376382010-03-08 03:20:00 +0000814/*
815 * Given a hash chain and an item in this hash chain,
816 * find if a previous entry has the same hash_inputs
817 * (but differs on tos, mark or oif)
818 * Returns 0 if an alias is found.
819 * Returns ONE if rth has no alias before itself.
820 */
821static int has_noalias(const struct rtable *head, const struct rtable *rth)
822{
823 const struct rtable *aux = head;
824
825 while (aux != rth) {
David S. Miller5e2b61f2011-03-04 21:47:09 -0800826 if (compare_hash_inputs(aux, rth))
Eric Dumazet98376382010-03-08 03:20:00 +0000827 return 0;
Eric Dumazet1c317202010-10-25 21:02:07 +0000828 aux = rcu_dereference_protected(aux->dst.rt_next, 1);
Eric Dumazet98376382010-03-08 03:20:00 +0000829 }
830 return ONE;
831}
832
Eric Dumazetad5dd5d2011-12-21 15:47:16 -0500833static void rt_check_expire(void)
834{
835 static unsigned int rover;
836 unsigned int i = rover, goal;
837 struct rtable *rth;
838 struct rtable __rcu **rthp;
839 unsigned long samples = 0;
840 unsigned long sum = 0, sum2 = 0;
841 unsigned long delta;
842 u64 mult;
843
844 delta = jiffies - expires_ljiffies;
845 expires_ljiffies = jiffies;
846 mult = ((u64)delta) << rt_hash_log;
847 if (ip_rt_gc_timeout > 1)
848 do_div(mult, ip_rt_gc_timeout);
849 goal = (unsigned int)mult;
850 if (goal > rt_hash_mask)
851 goal = rt_hash_mask + 1;
852 for (; goal > 0; goal--) {
853 unsigned long tmo = ip_rt_gc_timeout;
854 unsigned long length;
855
856 i = (i + 1) & rt_hash_mask;
857 rthp = &rt_hash_table[i].chain;
858
859 if (need_resched())
860 cond_resched();
861
862 samples++;
863
864 if (rcu_dereference_raw(*rthp) == NULL)
865 continue;
866 length = 0;
867 spin_lock_bh(rt_hash_lock_addr(i));
868 while ((rth = rcu_dereference_protected(*rthp,
869 lockdep_is_held(rt_hash_lock_addr(i)))) != NULL) {
870 prefetch(rth->dst.rt_next);
871 if (rt_is_expired(rth)) {
872 *rthp = rth->dst.rt_next;
873 rt_free(rth);
874 continue;
875 }
876 if (rth->dst.expires) {
877 /* Entry is expired even if it is in use */
878 if (time_before_eq(jiffies, rth->dst.expires)) {
879nofree:
880 tmo >>= 1;
881 rthp = &rth->dst.rt_next;
882 /*
883 * We only count entries on
884 * a chain with equal hash inputs once
885 * so that entries for different QOS
886 * levels, and other non-hash input
887 * attributes don't unfairly skew
888 * the length computation
889 */
890 length += has_noalias(rt_hash_table[i].chain, rth);
891 continue;
892 }
893 } else if (!rt_may_expire(rth, tmo, ip_rt_gc_timeout))
894 goto nofree;
895
896 /* Cleanup aged off entries. */
897 *rthp = rth->dst.rt_next;
898 rt_free(rth);
899 }
900 spin_unlock_bh(rt_hash_lock_addr(i));
901 sum += length;
902 sum2 += length*length;
903 }
904 if (samples) {
905 unsigned long avg = sum / samples;
906 unsigned long sd = int_sqrt(sum2 / samples - avg*avg);
907 rt_chain_length_max = max_t(unsigned long,
908 ip_rt_gc_elasticity,
909 (avg + 4*sd) >> FRACT_BITS);
910 }
911 rover = i;
912}
913
914/*
915 * rt_worker_func() is run in process context.
916 * we call rt_check_expire() to scan part of the hash table
917 */
918static void rt_worker_func(struct work_struct *work)
919{
920 rt_check_expire();
921 schedule_delayed_work(&expires_work, ip_rt_gc_interval);
922}
923
Eric Dumazet29e75252008-01-31 17:05:09 -0800924/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300925 * Perturbation of rt_genid by a small quantity [1..256]
Eric Dumazet29e75252008-01-31 17:05:09 -0800926 * Using 8 bits of shuffling ensure we can call rt_cache_invalidate()
927 * many times (2^24) without giving recent rt_genid.
928 * Jenkins hash is strong enough that litle changes of rt_genid are OK.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 */
Denis V. Lunev86c657f2008-07-05 19:03:31 -0700930static void rt_cache_invalidate(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931{
Eric Dumazet29e75252008-01-31 17:05:09 -0800932 unsigned char shuffle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Eric Dumazet29e75252008-01-31 17:05:09 -0800934 get_random_bytes(&shuffle, sizeof(shuffle));
Denis V. Luneve84f84f2008-07-05 19:04:32 -0700935 atomic_add(shuffle + 1U, &net->ipv4.rt_genid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}
937
Eric Dumazetbeb659b2007-11-19 22:43:37 -0800938/*
Eric Dumazet29e75252008-01-31 17:05:09 -0800939 * delay < 0 : invalidate cache (fast : entries will be deleted later)
940 * delay >= 0 : invalidate & flush cache (can be long)
941 */
Denis V. Lunev76e6ebf2008-07-05 19:00:44 -0700942void rt_cache_flush(struct net *net, int delay)
Eric Dumazet29e75252008-01-31 17:05:09 -0800943{
Denis V. Lunev86c657f2008-07-05 19:03:31 -0700944 rt_cache_invalidate(net);
Eric Dumazet29e75252008-01-31 17:05:09 -0800945 if (delay >= 0)
David S. Miller6561a3b2010-12-19 21:11:20 -0800946 rt_do_flush(net, !in_softirq());
Eric Dumazet29e75252008-01-31 17:05:09 -0800947}
948
Eric W. Biedermana5ee1552009-11-29 15:45:58 +0000949/* Flush previous cache invalidated entries from the cache */
David S. Miller6561a3b2010-12-19 21:11:20 -0800950void rt_cache_flush_batch(struct net *net)
Eric W. Biedermana5ee1552009-11-29 15:45:58 +0000951{
David S. Miller6561a3b2010-12-19 21:11:20 -0800952 rt_do_flush(net, !in_softirq());
Eric W. Biedermana5ee1552009-11-29 15:45:58 +0000953}
954
Neil Horman1080d702008-10-27 12:28:25 -0700955static void rt_emergency_hash_rebuild(struct net *net)
956{
Neil Horman3ee94372010-05-08 01:57:52 -0700957 if (net_ratelimit())
Neil Horman1080d702008-10-27 12:28:25 -0700958 printk(KERN_WARNING "Route hash chain too long!\n");
Neil Horman3ee94372010-05-08 01:57:52 -0700959 rt_cache_invalidate(net);
Neil Horman1080d702008-10-27 12:28:25 -0700960}
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962/*
963 Short description of GC goals.
964
965 We want to build algorithm, which will keep routing cache
966 at some equilibrium point, when number of aged off entries
967 is kept approximately equal to newly generated ones.
968
969 Current expiration strength is variable "expire".
970 We try to adjust it dynamically, so that if networking
971 is idle expires is large enough to keep enough of warm entries,
972 and when load increases it reduces to limit cache size.
973 */
974
Daniel Lezcano569d3642008-01-18 03:56:57 -0800975static int rt_garbage_collect(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
977 static unsigned long expire = RT_GC_TIMEOUT;
978 static unsigned long last_gc;
979 static int rover;
980 static int equilibrium;
Eric Dumazet1c317202010-10-25 21:02:07 +0000981 struct rtable *rth;
982 struct rtable __rcu **rthp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 unsigned long now = jiffies;
984 int goal;
Eric Dumazetfc66f952010-10-08 06:37:34 +0000985 int entries = dst_entries_get_fast(&ipv4_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987 /*
988 * Garbage collection is pretty expensive,
989 * do not make it too frequently.
990 */
991
992 RT_CACHE_STAT_INC(gc_total);
993
994 if (now - last_gc < ip_rt_gc_min_interval &&
Eric Dumazetfc66f952010-10-08 06:37:34 +0000995 entries < ip_rt_max_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 RT_CACHE_STAT_INC(gc_ignored);
997 goto out;
998 }
999
Eric Dumazetfc66f952010-10-08 06:37:34 +00001000 entries = dst_entries_get_slow(&ipv4_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 /* Calculate number of entries, which we want to expire now. */
Eric Dumazetfc66f952010-10-08 06:37:34 +00001002 goal = entries - (ip_rt_gc_elasticity << rt_hash_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (goal <= 0) {
1004 if (equilibrium < ipv4_dst_ops.gc_thresh)
1005 equilibrium = ipv4_dst_ops.gc_thresh;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001006 goal = entries - equilibrium;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 if (goal > 0) {
Eric Dumazetb790ced2007-12-21 01:49:07 -08001008 equilibrium += min_t(unsigned int, goal >> 1, rt_hash_mask + 1);
Eric Dumazetfc66f952010-10-08 06:37:34 +00001009 goal = entries - equilibrium;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 }
1011 } else {
1012 /* We are in dangerous area. Try to reduce cache really
1013 * aggressively.
1014 */
Eric Dumazetb790ced2007-12-21 01:49:07 -08001015 goal = max_t(unsigned int, goal >> 1, rt_hash_mask + 1);
Eric Dumazetfc66f952010-10-08 06:37:34 +00001016 equilibrium = entries - goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 }
1018
1019 if (now - last_gc >= ip_rt_gc_min_interval)
1020 last_gc = now;
1021
1022 if (goal <= 0) {
1023 equilibrium += goal;
1024 goto work_done;
1025 }
1026
1027 do {
1028 int i, k;
1029
1030 for (i = rt_hash_mask, k = rover; i >= 0; i--) {
1031 unsigned long tmo = expire;
1032
1033 k = (k + 1) & rt_hash_mask;
1034 rthp = &rt_hash_table[k].chain;
Eric Dumazet22c047c2005-07-05 14:55:24 -07001035 spin_lock_bh(rt_hash_lock_addr(k));
Eric Dumazet1c317202010-10-25 21:02:07 +00001036 while ((rth = rcu_dereference_protected(*rthp,
1037 lockdep_is_held(rt_hash_lock_addr(k)))) != NULL) {
Denis V. Luneve84f84f2008-07-05 19:04:32 -07001038 if (!rt_is_expired(rth) &&
Eric Dumazet29e75252008-01-31 17:05:09 -08001039 !rt_may_expire(rth, tmo, expire)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 tmo >>= 1;
Changli Gaod8d1f302010-06-10 23:31:35 -07001041 rthp = &rth->dst.rt_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 continue;
1043 }
Changli Gaod8d1f302010-06-10 23:31:35 -07001044 *rthp = rth->dst.rt_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 rt_free(rth);
1046 goal--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 }
Eric Dumazet22c047c2005-07-05 14:55:24 -07001048 spin_unlock_bh(rt_hash_lock_addr(k));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 if (goal <= 0)
1050 break;
1051 }
1052 rover = k;
1053
1054 if (goal <= 0)
1055 goto work_done;
1056
1057 /* Goal is not achieved. We stop process if:
1058
1059 - if expire reduced to zero. Otherwise, expire is halfed.
1060 - if table is not full.
1061 - if we are called from interrupt.
1062 - jiffies check is just fallback/debug loop breaker.
1063 We will not spin here for long time in any case.
1064 */
1065
1066 RT_CACHE_STAT_INC(gc_goal_miss);
1067
1068 if (expire == 0)
1069 break;
1070
1071 expire >>= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Eric Dumazetfc66f952010-10-08 06:37:34 +00001073 if (dst_entries_get_fast(&ipv4_dst_ops) < ip_rt_max_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 goto out;
1075 } while (!in_softirq() && time_before_eq(jiffies, now));
1076
Eric Dumazetfc66f952010-10-08 06:37:34 +00001077 if (dst_entries_get_fast(&ipv4_dst_ops) < ip_rt_max_size)
1078 goto out;
1079 if (dst_entries_get_slow(&ipv4_dst_ops) < ip_rt_max_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 goto out;
1081 if (net_ratelimit())
1082 printk(KERN_WARNING "dst cache overflow\n");
1083 RT_CACHE_STAT_INC(gc_dst_overflow);
1084 return 1;
1085
1086work_done:
1087 expire += ip_rt_gc_min_interval;
1088 if (expire > ip_rt_gc_timeout ||
Eric Dumazetfc66f952010-10-08 06:37:34 +00001089 dst_entries_get_fast(&ipv4_dst_ops) < ipv4_dst_ops.gc_thresh ||
1090 dst_entries_get_slow(&ipv4_dst_ops) < ipv4_dst_ops.gc_thresh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 expire = ip_rt_gc_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092out: return 0;
1093}
1094
Eric Dumazet98376382010-03-08 03:20:00 +00001095/*
1096 * Returns number of entries in a hash chain that have different hash_inputs
1097 */
1098static int slow_chain_length(const struct rtable *head)
1099{
1100 int length = 0;
1101 const struct rtable *rth = head;
1102
1103 while (rth) {
1104 length += has_noalias(head, rth);
Eric Dumazet1c317202010-10-25 21:02:07 +00001105 rth = rcu_dereference_protected(rth->dst.rt_next, 1);
Eric Dumazet98376382010-03-08 03:20:00 +00001106 }
1107 return length >> FRACT_BITS;
1108}
1109
David S. Millerb23dd4f2011-03-02 14:31:35 -08001110static struct rtable *rt_intern_hash(unsigned hash, struct rtable *rt,
1111 struct sk_buff *skb, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
Eric Dumazet1c317202010-10-25 21:02:07 +00001113 struct rtable *rth, *cand;
1114 struct rtable __rcu **rthp, **candp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 unsigned long now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 u32 min_score;
1117 int chain_length;
1118 int attempts = !in_softirq();
1119
1120restart:
1121 chain_length = 0;
1122 min_score = ~(u32)0;
1123 cand = NULL;
1124 candp = NULL;
1125 now = jiffies;
1126
Changli Gaod8d1f302010-06-10 23:31:35 -07001127 if (!rt_caching(dev_net(rt->dst.dev))) {
Neil Horman73e42892009-06-20 01:15:16 -07001128 /*
1129 * If we're not caching, just tell the caller we
1130 * were successful and don't touch the route. The
1131 * caller hold the sole reference to the cache entry, and
1132 * it will be released when the caller is done with it.
1133 * If we drop it here, the callers have no way to resolve routes
1134 * when we're not caching. Instead, just point *rp at rt, so
1135 * the caller gets a single use out of the route
Neil Hormanb6280b42009-06-22 10:18:53 +00001136 * Note that we do rt_free on this new route entry, so that
1137 * once its refcount hits zero, we are still able to reap it
1138 * (Thanks Alexey)
Eric Dumazet27b75c92010-10-15 05:44:11 +00001139 * Note: To avoid expensive rcu stuff for this uncached dst,
1140 * we set DST_NOCACHE so that dst_release() can free dst without
1141 * waiting a grace period.
Neil Horman73e42892009-06-20 01:15:16 -07001142 */
Neil Hormanb6280b42009-06-22 10:18:53 +00001143
Eric Dumazetc7d44262010-10-03 22:17:54 -07001144 rt->dst.flags |= DST_NOCACHE;
David S. Millerc7537962010-11-11 17:07:48 -08001145 if (rt->rt_type == RTN_UNICAST || rt_is_output_route(rt)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001146 int err = arp_bind_neighbour(&rt->dst);
Neil Hormanb6280b42009-06-22 10:18:53 +00001147 if (err) {
1148 if (net_ratelimit())
1149 printk(KERN_WARNING
1150 "Neighbour table failure & not caching routes.\n");
Eric Dumazet27b75c92010-10-15 05:44:11 +00001151 ip_rt_put(rt);
David S. Millerb23dd4f2011-03-02 14:31:35 -08001152 return ERR_PTR(err);
Neil Hormanb6280b42009-06-22 10:18:53 +00001153 }
1154 }
1155
Neil Hormanb6280b42009-06-22 10:18:53 +00001156 goto skip_hashing;
Neil Horman1080d702008-10-27 12:28:25 -07001157 }
1158
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 rthp = &rt_hash_table[hash].chain;
1160
Eric Dumazet22c047c2005-07-05 14:55:24 -07001161 spin_lock_bh(rt_hash_lock_addr(hash));
Eric Dumazet1c317202010-10-25 21:02:07 +00001162 while ((rth = rcu_dereference_protected(*rthp,
1163 lockdep_is_held(rt_hash_lock_addr(hash)))) != NULL) {
Denis V. Luneve84f84f2008-07-05 19:04:32 -07001164 if (rt_is_expired(rth)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001165 *rthp = rth->dst.rt_next;
Eric Dumazet29e75252008-01-31 17:05:09 -08001166 rt_free(rth);
1167 continue;
1168 }
David S. Miller5e2b61f2011-03-04 21:47:09 -08001169 if (compare_keys(rth, rt) && compare_netns(rth, rt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 /* Put it first */
Changli Gaod8d1f302010-06-10 23:31:35 -07001171 *rthp = rth->dst.rt_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 /*
1173 * Since lookup is lockfree, the deletion
1174 * must be visible to another weakly ordered CPU before
1175 * the insertion at the start of the hash chain.
1176 */
Changli Gaod8d1f302010-06-10 23:31:35 -07001177 rcu_assign_pointer(rth->dst.rt_next,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 rt_hash_table[hash].chain);
1179 /*
1180 * Since lookup is lockfree, the update writes
1181 * must be ordered for consistency on SMP.
1182 */
1183 rcu_assign_pointer(rt_hash_table[hash].chain, rth);
1184
Changli Gaod8d1f302010-06-10 23:31:35 -07001185 dst_use(&rth->dst, now);
Eric Dumazet22c047c2005-07-05 14:55:24 -07001186 spin_unlock_bh(rt_hash_lock_addr(hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
1188 rt_drop(rt);
David S. Millerb23dd4f2011-03-02 14:31:35 -08001189 if (skb)
Changli Gaod8d1f302010-06-10 23:31:35 -07001190 skb_dst_set(skb, &rth->dst);
David S. Millerb23dd4f2011-03-02 14:31:35 -08001191 return rth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 }
1193
Changli Gaod8d1f302010-06-10 23:31:35 -07001194 if (!atomic_read(&rth->dst.__refcnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 u32 score = rt_score(rth);
1196
1197 if (score <= min_score) {
1198 cand = rth;
1199 candp = rthp;
1200 min_score = score;
1201 }
1202 }
1203
1204 chain_length++;
1205
Changli Gaod8d1f302010-06-10 23:31:35 -07001206 rthp = &rth->dst.rt_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 }
1208
1209 if (cand) {
1210 /* ip_rt_gc_elasticity used to be average length of chain
1211 * length, when exceeded gc becomes really aggressive.
1212 *
1213 * The second limit is less certain. At the moment it allows
1214 * only 2 entries per bucket. We will see.
1215 */
1216 if (chain_length > ip_rt_gc_elasticity) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001217 *candp = cand->dst.rt_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 rt_free(cand);
1219 }
Neil Horman1080d702008-10-27 12:28:25 -07001220 } else {
Eric Dumazet98376382010-03-08 03:20:00 +00001221 if (chain_length > rt_chain_length_max &&
1222 slow_chain_length(rt_hash_table[hash].chain) > rt_chain_length_max) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001223 struct net *net = dev_net(rt->dst.dev);
Neil Horman1080d702008-10-27 12:28:25 -07001224 int num = ++net->ipv4.current_rt_cache_rebuild_count;
Pavel Emelyanovb35ecb52010-03-24 07:43:17 +00001225 if (!rt_caching(net)) {
Neil Horman1080d702008-10-27 12:28:25 -07001226 printk(KERN_WARNING "%s: %d rebuilds is over limit, route caching disabled\n",
Changli Gaod8d1f302010-06-10 23:31:35 -07001227 rt->dst.dev->name, num);
Neil Horman1080d702008-10-27 12:28:25 -07001228 }
Pavel Emelyanovb35ecb52010-03-24 07:43:17 +00001229 rt_emergency_hash_rebuild(net);
Pavel Emelyanov6a2bad72010-03-24 21:51:22 +00001230 spin_unlock_bh(rt_hash_lock_addr(hash));
1231
David S. Miller5e2b61f2011-03-04 21:47:09 -08001232 hash = rt_hash(rt->rt_key_dst, rt->rt_key_src,
Pavel Emelyanov6a2bad72010-03-24 21:51:22 +00001233 ifindex, rt_genid(net));
1234 goto restart;
Neil Horman1080d702008-10-27 12:28:25 -07001235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 }
1237
1238 /* Try to bind route to arp only if it is output
1239 route or unicast forwarding path.
1240 */
David S. Millerc7537962010-11-11 17:07:48 -08001241 if (rt->rt_type == RTN_UNICAST || rt_is_output_route(rt)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001242 int err = arp_bind_neighbour(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 if (err) {
Eric Dumazet22c047c2005-07-05 14:55:24 -07001244 spin_unlock_bh(rt_hash_lock_addr(hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
1246 if (err != -ENOBUFS) {
1247 rt_drop(rt);
David S. Millerb23dd4f2011-03-02 14:31:35 -08001248 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 }
1250
1251 /* Neighbour tables are full and nothing
1252 can be released. Try to shrink route cache,
1253 it is most likely it holds some neighbour records.
1254 */
1255 if (attempts-- > 0) {
1256 int saved_elasticity = ip_rt_gc_elasticity;
1257 int saved_int = ip_rt_gc_min_interval;
1258 ip_rt_gc_elasticity = 1;
1259 ip_rt_gc_min_interval = 0;
Daniel Lezcano569d3642008-01-18 03:56:57 -08001260 rt_garbage_collect(&ipv4_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 ip_rt_gc_min_interval = saved_int;
1262 ip_rt_gc_elasticity = saved_elasticity;
1263 goto restart;
1264 }
1265
1266 if (net_ratelimit())
Ulrich Weber7e1b33e2010-09-27 15:02:18 -07001267 printk(KERN_WARNING "ipv4: Neighbour table overflow.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 rt_drop(rt);
David S. Millerb23dd4f2011-03-02 14:31:35 -08001269 return ERR_PTR(-ENOBUFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 }
1271 }
1272
Changli Gaod8d1f302010-06-10 23:31:35 -07001273 rt->dst.rt_next = rt_hash_table[hash].chain;
Neil Horman1080d702008-10-27 12:28:25 -07001274
Eric Dumazet00269b52008-10-16 14:18:29 -07001275 /*
1276 * Since lookup is lockfree, we must make sure
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001277 * previous writes to rt are committed to memory
Eric Dumazet00269b52008-10-16 14:18:29 -07001278 * before making rt visible to other CPUS.
1279 */
Eric Dumazet1ddbcb02009-05-19 20:14:28 +00001280 rcu_assign_pointer(rt_hash_table[hash].chain, rt);
Neil Horman1080d702008-10-27 12:28:25 -07001281
Eric Dumazet22c047c2005-07-05 14:55:24 -07001282 spin_unlock_bh(rt_hash_lock_addr(hash));
Neil Horman73e42892009-06-20 01:15:16 -07001283
Neil Hormanb6280b42009-06-22 10:18:53 +00001284skip_hashing:
David S. Millerb23dd4f2011-03-02 14:31:35 -08001285 if (skb)
Changli Gaod8d1f302010-06-10 23:31:35 -07001286 skb_dst_set(skb, &rt->dst);
David S. Millerb23dd4f2011-03-02 14:31:35 -08001287 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288}
1289
David S. Miller6431cbc2011-02-07 20:38:06 -08001290static atomic_t __rt_peer_genid = ATOMIC_INIT(0);
1291
1292static u32 rt_peer_genid(void)
1293{
1294 return atomic_read(&__rt_peer_genid);
1295}
1296
David S. Millera48eff12011-05-18 18:42:43 -04001297void rt_bind_peer(struct rtable *rt, __be32 daddr, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 struct inet_peer *peer;
1300
David S. Millera48eff12011-05-18 18:42:43 -04001301 peer = inet_getpeer_v4(daddr, create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Eric Dumazet49e8ab02010-08-19 06:10:45 +00001303 if (peer && cmpxchg(&rt->peer, NULL, peer) != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 inet_putpeer(peer);
David S. Miller6431cbc2011-02-07 20:38:06 -08001305 else
1306 rt->rt_peer_genid = rt_peer_genid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307}
1308
1309/*
1310 * Peer allocation may fail only in serious out-of-memory conditions. However
1311 * we still can generate some output.
1312 * Random ID selection looks a bit dangerous because we have no chances to
1313 * select ID being unique in a reasonable period of time.
1314 * But broken packet identifier may be better than no packet at all.
1315 */
1316static void ip_select_fb_ident(struct iphdr *iph)
1317{
1318 static DEFINE_SPINLOCK(ip_fb_id_lock);
1319 static u32 ip_fallback_id;
1320 u32 salt;
1321
1322 spin_lock_bh(&ip_fb_id_lock);
Al Viroe4485152006-09-26 22:15:01 -07001323 salt = secure_ip_id((__force __be32)ip_fallback_id ^ iph->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 iph->id = htons(salt & 0xFFFF);
1325 ip_fallback_id = salt;
1326 spin_unlock_bh(&ip_fb_id_lock);
1327}
1328
1329void __ip_select_ident(struct iphdr *iph, struct dst_entry *dst, int more)
1330{
1331 struct rtable *rt = (struct rtable *) dst;
1332
1333 if (rt) {
1334 if (rt->peer == NULL)
David S. Millera48eff12011-05-18 18:42:43 -04001335 rt_bind_peer(rt, rt->rt_dst, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
1337 /* If peer is attached to destination, it is never detached,
1338 so that we need not to grab a lock to dereference it.
1339 */
1340 if (rt->peer) {
1341 iph->id = htons(inet_getid(rt->peer, more));
1342 return;
1343 }
1344 } else
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001345 printk(KERN_DEBUG "rt_bind_peer(0) @%p\n",
Stephen Hemminger9c2b3322005-04-19 22:39:42 -07001346 __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348 ip_select_fb_ident(iph);
1349}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001350EXPORT_SYMBOL(__ip_select_ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
1352static void rt_del(unsigned hash, struct rtable *rt)
1353{
Eric Dumazet1c317202010-10-25 21:02:07 +00001354 struct rtable __rcu **rthp;
1355 struct rtable *aux;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Eric Dumazet29e75252008-01-31 17:05:09 -08001357 rthp = &rt_hash_table[hash].chain;
Eric Dumazet22c047c2005-07-05 14:55:24 -07001358 spin_lock_bh(rt_hash_lock_addr(hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 ip_rt_put(rt);
Eric Dumazet1c317202010-10-25 21:02:07 +00001360 while ((aux = rcu_dereference_protected(*rthp,
1361 lockdep_is_held(rt_hash_lock_addr(hash)))) != NULL) {
Denis V. Luneve84f84f2008-07-05 19:04:32 -07001362 if (aux == rt || rt_is_expired(aux)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001363 *rthp = aux->dst.rt_next;
Eric Dumazet29e75252008-01-31 17:05:09 -08001364 rt_free(aux);
1365 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 }
Changli Gaod8d1f302010-06-10 23:31:35 -07001367 rthp = &aux->dst.rt_next;
Eric Dumazet29e75252008-01-31 17:05:09 -08001368 }
Eric Dumazet22c047c2005-07-05 14:55:24 -07001369 spin_unlock_bh(rt_hash_lock_addr(hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370}
1371
Eric Dumazeted7865a42010-06-07 21:49:44 -07001372/* called in rcu_read_lock() section */
Al Virof7655222006-09-26 21:25:43 -07001373void ip_rt_redirect(__be32 old_gw, __be32 daddr, __be32 new_gw,
1374 __be32 saddr, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375{
Eric Dumazeted7865a42010-06-07 21:49:44 -07001376 struct in_device *in_dev = __in_dev_get_rcu(dev);
David S. Millerf39925d2011-02-09 22:00:16 -08001377 struct inet_peer *peer;
Denis V. Lunev317805b2008-02-28 20:50:06 -08001378 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 if (!in_dev)
1381 return;
1382
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001383 net = dev_net(dev);
Joe Perches9d4fb272009-11-23 10:41:23 -08001384 if (new_gw == old_gw || !IN_DEV_RX_REDIRECTS(in_dev) ||
1385 ipv4_is_multicast(new_gw) || ipv4_is_lbcast(new_gw) ||
1386 ipv4_is_zeronet(new_gw))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 goto reject_redirect;
1388
1389 if (!IN_DEV_SHARED_MEDIA(in_dev)) {
1390 if (!inet_addr_onlink(in_dev, new_gw, old_gw))
1391 goto reject_redirect;
1392 if (IN_DEV_SEC_REDIRECTS(in_dev) && ip_fib_check_default(new_gw, dev))
1393 goto reject_redirect;
1394 } else {
Denis V. Lunev317805b2008-02-28 20:50:06 -08001395 if (inet_addr_type(net, new_gw) != RTN_UNICAST)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 goto reject_redirect;
1397 }
1398
David S. Millerf39925d2011-02-09 22:00:16 -08001399 peer = inet_getpeer_v4(daddr, 1);
1400 if (peer) {
1401 peer->redirect_learned.a4 = new_gw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
David S. Millerf39925d2011-02-09 22:00:16 -08001403 inet_putpeer(peer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
David S. Millerf39925d2011-02-09 22:00:16 -08001405 atomic_inc(&__rt_peer_genid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 return;
1408
1409reject_redirect:
1410#ifdef CONFIG_IP_ROUTE_VERBOSE
1411 if (IN_DEV_LOG_MARTIANS(in_dev) && net_ratelimit())
Harvey Harrison673d57e2008-10-31 00:53:57 -07001412 printk(KERN_INFO "Redirect from %pI4 on %s about %pI4 ignored.\n"
1413 " Advised path = %pI4 -> %pI4\n",
1414 &old_gw, dev->name, &new_gw,
1415 &saddr, &daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416#endif
Eric Dumazeted7865a42010-06-07 21:49:44 -07001417 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418}
1419
Eric Dumazetfe6fe792011-06-08 06:07:07 +00001420static bool peer_pmtu_expired(struct inet_peer *peer)
1421{
1422 unsigned long orig = ACCESS_ONCE(peer->pmtu_expires);
1423
1424 return orig &&
1425 time_after_eq(jiffies, orig) &&
1426 cmpxchg(&peer->pmtu_expires, orig, 0) == orig;
1427}
1428
1429static bool peer_pmtu_cleaned(struct inet_peer *peer)
1430{
1431 unsigned long orig = ACCESS_ONCE(peer->pmtu_expires);
1432
1433 return orig &&
1434 cmpxchg(&peer->pmtu_expires, orig, 0) == orig;
1435}
1436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437static struct dst_entry *ipv4_negative_advice(struct dst_entry *dst)
1438{
Eric Dumazetee6b9672008-03-05 18:30:47 -08001439 struct rtable *rt = (struct rtable *)dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 struct dst_entry *ret = dst;
1441
1442 if (rt) {
Timo Teräsd11a4dc2010-03-18 23:20:20 +00001443 if (dst->obsolete > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 ip_rt_put(rt);
1445 ret = NULL;
David S. Miller2c8cec52011-02-09 20:42:07 -08001446 } else if (rt->rt_flags & RTCF_REDIRECTED) {
David S. Miller5e2b61f2011-03-04 21:47:09 -08001447 unsigned hash = rt_hash(rt->rt_key_dst, rt->rt_key_src,
1448 rt->rt_oif,
Denis V. Luneve84f84f2008-07-05 19:04:32 -07001449 rt_genid(dev_net(dst->dev)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 rt_del(hash, rt);
1451 ret = NULL;
Eric Dumazetfe6fe792011-06-08 06:07:07 +00001452 } else if (rt->peer && peer_pmtu_expired(rt->peer)) {
1453 dst_metric_set(dst, RTAX_MTU, rt->peer->pmtu_orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 }
1455 }
1456 return ret;
1457}
1458
1459/*
1460 * Algorithm:
1461 * 1. The first ip_rt_redirect_number redirects are sent
1462 * with exponential backoff, then we stop sending them at all,
1463 * assuming that the host ignores our redirects.
1464 * 2. If we did not see packets requiring redirects
1465 * during ip_rt_redirect_silence, we assume that the host
1466 * forgot redirected route and start to send redirects again.
1467 *
1468 * This algorithm is much cheaper and more intelligent than dumb load limiting
1469 * in icmp.c.
1470 *
1471 * NOTE. Do not forget to inhibit load limiting for redirects (redundant)
1472 * and "frag. need" (breaks PMTU discovery) in icmp.c.
1473 */
1474
1475void ip_rt_send_redirect(struct sk_buff *skb)
1476{
Eric Dumazet511c3f92009-06-02 05:14:27 +00001477 struct rtable *rt = skb_rtable(skb);
Eric Dumazet30038fc2009-08-28 23:52:01 -07001478 struct in_device *in_dev;
David S. Miller92d86822011-02-04 15:55:25 -08001479 struct inet_peer *peer;
Eric Dumazet30038fc2009-08-28 23:52:01 -07001480 int log_martians;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Eric Dumazet30038fc2009-08-28 23:52:01 -07001482 rcu_read_lock();
Changli Gaod8d1f302010-06-10 23:31:35 -07001483 in_dev = __in_dev_get_rcu(rt->dst.dev);
Eric Dumazet30038fc2009-08-28 23:52:01 -07001484 if (!in_dev || !IN_DEV_TX_REDIRECTS(in_dev)) {
1485 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 return;
Eric Dumazet30038fc2009-08-28 23:52:01 -07001487 }
1488 log_martians = IN_DEV_LOG_MARTIANS(in_dev);
1489 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
David S. Miller92d86822011-02-04 15:55:25 -08001491 if (!rt->peer)
David S. Millera48eff12011-05-18 18:42:43 -04001492 rt_bind_peer(rt, rt->rt_dst, 1);
David S. Miller92d86822011-02-04 15:55:25 -08001493 peer = rt->peer;
1494 if (!peer) {
1495 icmp_send(skb, ICMP_REDIRECT, ICMP_REDIR_HOST, rt->rt_gateway);
1496 return;
1497 }
1498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 /* No redirected packets during ip_rt_redirect_silence;
1500 * reset the algorithm.
1501 */
David S. Miller92d86822011-02-04 15:55:25 -08001502 if (time_after(jiffies, peer->rate_last + ip_rt_redirect_silence))
1503 peer->rate_tokens = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
1505 /* Too many ignored redirects; do not send anything
Changli Gaod8d1f302010-06-10 23:31:35 -07001506 * set dst.rate_last to the last seen redirected packet.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 */
David S. Miller92d86822011-02-04 15:55:25 -08001508 if (peer->rate_tokens >= ip_rt_redirect_number) {
1509 peer->rate_last = jiffies;
Eric Dumazet30038fc2009-08-28 23:52:01 -07001510 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 }
1512
1513 /* Check for load limit; set rate_last to the latest sent
1514 * redirect.
1515 */
David S. Miller92d86822011-02-04 15:55:25 -08001516 if (peer->rate_tokens == 0 ||
Li Yewang14fb8a72006-12-18 00:26:35 -08001517 time_after(jiffies,
David S. Miller92d86822011-02-04 15:55:25 -08001518 (peer->rate_last +
1519 (ip_rt_redirect_load << peer->rate_tokens)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 icmp_send(skb, ICMP_REDIRECT, ICMP_REDIR_HOST, rt->rt_gateway);
David S. Miller92d86822011-02-04 15:55:25 -08001521 peer->rate_last = jiffies;
1522 ++peer->rate_tokens;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523#ifdef CONFIG_IP_ROUTE_VERBOSE
Eric Dumazet30038fc2009-08-28 23:52:01 -07001524 if (log_martians &&
David S. Miller92d86822011-02-04 15:55:25 -08001525 peer->rate_tokens == ip_rt_redirect_number &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 net_ratelimit())
Harvey Harrison673d57e2008-10-31 00:53:57 -07001527 printk(KERN_WARNING "host %pI4/if%d ignores redirects for %pI4 to %pI4.\n",
David S. Millerc5be24f2011-05-13 18:01:21 -04001528 &ip_hdr(skb)->saddr, rt->rt_iif,
Harvey Harrison673d57e2008-10-31 00:53:57 -07001529 &rt->rt_dst, &rt->rt_gateway);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530#endif
1531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532}
1533
1534static int ip_error(struct sk_buff *skb)
1535{
Eric Dumazet511c3f92009-06-02 05:14:27 +00001536 struct rtable *rt = skb_rtable(skb);
David S. Miller92d86822011-02-04 15:55:25 -08001537 struct inet_peer *peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 unsigned long now;
David S. Miller92d86822011-02-04 15:55:25 -08001539 bool send;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 int code;
1541
Changli Gaod8d1f302010-06-10 23:31:35 -07001542 switch (rt->dst.error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 case EINVAL:
1544 default:
1545 goto out;
1546 case EHOSTUNREACH:
1547 code = ICMP_HOST_UNREACH;
1548 break;
1549 case ENETUNREACH:
1550 code = ICMP_NET_UNREACH;
Changli Gaod8d1f302010-06-10 23:31:35 -07001551 IP_INC_STATS_BH(dev_net(rt->dst.dev),
Pavel Emelyanov7c73a6f2008-07-16 20:20:11 -07001552 IPSTATS_MIB_INNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 break;
1554 case EACCES:
1555 code = ICMP_PKT_FILTERED;
1556 break;
1557 }
1558
David S. Miller92d86822011-02-04 15:55:25 -08001559 if (!rt->peer)
David S. Millera48eff12011-05-18 18:42:43 -04001560 rt_bind_peer(rt, rt->rt_dst, 1);
David S. Miller92d86822011-02-04 15:55:25 -08001561 peer = rt->peer;
1562
1563 send = true;
1564 if (peer) {
1565 now = jiffies;
1566 peer->rate_tokens += now - peer->rate_last;
1567 if (peer->rate_tokens > ip_rt_error_burst)
1568 peer->rate_tokens = ip_rt_error_burst;
1569 peer->rate_last = now;
1570 if (peer->rate_tokens >= ip_rt_error_cost)
1571 peer->rate_tokens -= ip_rt_error_cost;
1572 else
1573 send = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 }
David S. Miller92d86822011-02-04 15:55:25 -08001575 if (send)
1576 icmp_send(skb, ICMP_DEST_UNREACH, code, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
1578out: kfree_skb(skb);
1579 return 0;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001580}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582/*
1583 * The last two values are not from the RFC but
1584 * are needed for AMPRnet AX.25 paths.
1585 */
1586
Arjan van de Ven9b5b5cf2005-11-29 16:21:38 -08001587static const unsigned short mtu_plateau[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588{32000, 17914, 8166, 4352, 2002, 1492, 576, 296, 216, 128 };
1589
Stephen Hemminger5969f712008-04-10 01:52:09 -07001590static inline unsigned short guess_mtu(unsigned short old_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591{
1592 int i;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 for (i = 0; i < ARRAY_SIZE(mtu_plateau); i++)
1595 if (old_mtu > mtu_plateau[i])
1596 return mtu_plateau[i];
1597 return 68;
1598}
1599
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001600unsigned short ip_rt_frag_needed(struct net *net, const struct iphdr *iph,
Timo Teras0010e462008-04-29 03:32:25 -07001601 unsigned short new_mtu,
1602 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 unsigned short old_mtu = ntohs(iph->tot_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 unsigned short est_mtu = 0;
David S. Miller2c8cec52011-02-09 20:42:07 -08001606 struct inet_peer *peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
David S. Miller2c8cec52011-02-09 20:42:07 -08001608 peer = inet_getpeer_v4(iph->daddr, 1);
1609 if (peer) {
1610 unsigned short mtu = new_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
David S. Miller2c8cec52011-02-09 20:42:07 -08001612 if (new_mtu < 68 || new_mtu >= old_mtu) {
1613 /* BSD 4.2 derived systems incorrectly adjust
1614 * tot_len by the IP header length, and report
1615 * a zero MTU in the ICMP message.
1616 */
1617 if (mtu == 0 &&
1618 old_mtu >= 68 + (iph->ihl << 2))
1619 old_mtu -= iph->ihl << 2;
1620 mtu = guess_mtu(old_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 }
David S. Miller2c8cec52011-02-09 20:42:07 -08001622
1623 if (mtu < ip_rt_min_pmtu)
1624 mtu = ip_rt_min_pmtu;
1625 if (!peer->pmtu_expires || mtu < peer->pmtu_learned) {
Hiroaki SHIMODA46af3182011-03-09 20:09:58 +00001626 unsigned long pmtu_expires;
1627
1628 pmtu_expires = jiffies + ip_rt_mtu_expires;
1629 if (!pmtu_expires)
1630 pmtu_expires = 1UL;
1631
David S. Miller2c8cec52011-02-09 20:42:07 -08001632 est_mtu = mtu;
1633 peer->pmtu_learned = mtu;
Hiroaki SHIMODA46af3182011-03-09 20:09:58 +00001634 peer->pmtu_expires = pmtu_expires;
David S. Miller2c8cec52011-02-09 20:42:07 -08001635 }
1636
1637 inet_putpeer(peer);
1638
1639 atomic_inc(&__rt_peer_genid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 }
1641 return est_mtu ? : new_mtu;
1642}
1643
David S. Miller2c8cec52011-02-09 20:42:07 -08001644static void check_peer_pmtu(struct dst_entry *dst, struct inet_peer *peer)
1645{
Eric Dumazetfe6fe792011-06-08 06:07:07 +00001646 unsigned long expires = ACCESS_ONCE(peer->pmtu_expires);
David S. Miller2c8cec52011-02-09 20:42:07 -08001647
Eric Dumazetfe6fe792011-06-08 06:07:07 +00001648 if (!expires)
1649 return;
Hiroaki SHIMODA46af3182011-03-09 20:09:58 +00001650 if (time_before(jiffies, expires)) {
David S. Miller2c8cec52011-02-09 20:42:07 -08001651 u32 orig_dst_mtu = dst_mtu(dst);
1652 if (peer->pmtu_learned < orig_dst_mtu) {
1653 if (!peer->pmtu_orig)
1654 peer->pmtu_orig = dst_metric_raw(dst, RTAX_MTU);
1655 dst_metric_set(dst, RTAX_MTU, peer->pmtu_learned);
1656 }
1657 } else if (cmpxchg(&peer->pmtu_expires, expires, 0) == expires)
1658 dst_metric_set(dst, RTAX_MTU, peer->pmtu_orig);
1659}
1660
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661static void ip_rt_update_pmtu(struct dst_entry *dst, u32 mtu)
1662{
David S. Miller2c8cec52011-02-09 20:42:07 -08001663 struct rtable *rt = (struct rtable *) dst;
1664 struct inet_peer *peer;
1665
1666 dst_confirm(dst);
1667
1668 if (!rt->peer)
David S. Millera48eff12011-05-18 18:42:43 -04001669 rt_bind_peer(rt, rt->rt_dst, 1);
David S. Miller2c8cec52011-02-09 20:42:07 -08001670 peer = rt->peer;
1671 if (peer) {
Eric Dumazetfe6fe792011-06-08 06:07:07 +00001672 unsigned long pmtu_expires = ACCESS_ONCE(peer->pmtu_expires);
1673
David S. Miller2c8cec52011-02-09 20:42:07 -08001674 if (mtu < ip_rt_min_pmtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 mtu = ip_rt_min_pmtu;
Eric Dumazetfe6fe792011-06-08 06:07:07 +00001676 if (!pmtu_expires || mtu < peer->pmtu_learned) {
Hiroaki SHIMODA46af3182011-03-09 20:09:58 +00001677
1678 pmtu_expires = jiffies + ip_rt_mtu_expires;
1679 if (!pmtu_expires)
1680 pmtu_expires = 1UL;
1681
David S. Miller2c8cec52011-02-09 20:42:07 -08001682 peer->pmtu_learned = mtu;
Hiroaki SHIMODA46af3182011-03-09 20:09:58 +00001683 peer->pmtu_expires = pmtu_expires;
David S. Miller2c8cec52011-02-09 20:42:07 -08001684
1685 atomic_inc(&__rt_peer_genid);
1686 rt->rt_peer_genid = rt_peer_genid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 }
Hiroaki SHIMODA46af3182011-03-09 20:09:58 +00001688 check_peer_pmtu(dst, peer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 }
1690}
1691
David S. Millerf39925d2011-02-09 22:00:16 -08001692static int check_peer_redir(struct dst_entry *dst, struct inet_peer *peer)
1693{
1694 struct rtable *rt = (struct rtable *) dst;
1695 __be32 orig_gw = rt->rt_gateway;
Eric Dumazet8a533662012-02-09 16:13:19 -05001696 struct neighbour *n, *old_n;
David S. Millerf39925d2011-02-09 22:00:16 -08001697
1698 dst_confirm(&rt->dst);
1699
David S. Millerf39925d2011-02-09 22:00:16 -08001700 rt->rt_gateway = peer->redirect_learned.a4;
Eric Dumazet8a533662012-02-09 16:13:19 -05001701 n = __arp_bind_neighbour(&rt->dst, rt->rt_gateway);
1702 if (IS_ERR(n))
1703 return PTR_ERR(n);
1704 old_n = xchg(&rt->dst._neighbour, n);
1705 if (old_n)
1706 neigh_release(old_n);
1707 if (!n || !(n->nud_state & NUD_VALID)) {
1708 if (n)
1709 neigh_event_send(n, NULL);
David S. Millerf39925d2011-02-09 22:00:16 -08001710 rt->rt_gateway = orig_gw;
1711 return -EAGAIN;
1712 } else {
1713 rt->rt_flags |= RTCF_REDIRECTED;
Eric Dumazet8a533662012-02-09 16:13:19 -05001714 call_netevent_notifiers(NETEVENT_NEIGH_UPDATE, n);
David S. Millerf39925d2011-02-09 22:00:16 -08001715 }
1716 return 0;
1717}
1718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719static struct dst_entry *ipv4_dst_check(struct dst_entry *dst, u32 cookie)
1720{
David S. Miller6431cbc2011-02-07 20:38:06 -08001721 struct rtable *rt = (struct rtable *) dst;
1722
1723 if (rt_is_expired(rt))
Timo Teräsd11a4dc2010-03-18 23:20:20 +00001724 return NULL;
David S. Miller6431cbc2011-02-07 20:38:06 -08001725 if (rt->rt_peer_genid != rt_peer_genid()) {
David S. Miller2c8cec52011-02-09 20:42:07 -08001726 struct inet_peer *peer;
1727
David S. Miller6431cbc2011-02-07 20:38:06 -08001728 if (!rt->peer)
David S. Millera48eff12011-05-18 18:42:43 -04001729 rt_bind_peer(rt, rt->rt_dst, 0);
David S. Miller6431cbc2011-02-07 20:38:06 -08001730
David S. Miller2c8cec52011-02-09 20:42:07 -08001731 peer = rt->peer;
Eric Dumazetfe6fe792011-06-08 06:07:07 +00001732 if (peer) {
David S. Miller2c8cec52011-02-09 20:42:07 -08001733 check_peer_pmtu(dst, peer);
1734
Eric Dumazetfe6fe792011-06-08 06:07:07 +00001735 if (peer->redirect_learned.a4 &&
1736 peer->redirect_learned.a4 != rt->rt_gateway) {
1737 if (check_peer_redir(dst, peer))
1738 return NULL;
1739 }
David S. Millerf39925d2011-02-09 22:00:16 -08001740 }
1741
David S. Miller6431cbc2011-02-07 20:38:06 -08001742 rt->rt_peer_genid = rt_peer_genid();
1743 }
Timo Teräsd11a4dc2010-03-18 23:20:20 +00001744 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745}
1746
1747static void ipv4_dst_destroy(struct dst_entry *dst)
1748{
1749 struct rtable *rt = (struct rtable *) dst;
1750 struct inet_peer *peer = rt->peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
David S. Miller62fa8a82011-01-26 20:51:05 -08001752 if (rt->fi) {
1753 fib_info_put(rt->fi);
1754 rt->fi = NULL;
1755 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 if (peer) {
1757 rt->peer = NULL;
1758 inet_putpeer(peer);
1759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760}
1761
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
1763static void ipv4_link_failure(struct sk_buff *skb)
1764{
1765 struct rtable *rt;
1766
1767 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_HOST_UNREACH, 0);
1768
Eric Dumazet511c3f92009-06-02 05:14:27 +00001769 rt = skb_rtable(skb);
Eric Dumazetfe6fe792011-06-08 06:07:07 +00001770 if (rt && rt->peer && peer_pmtu_cleaned(rt->peer))
1771 dst_metric_set(&rt->dst, RTAX_MTU, rt->peer->pmtu_orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772}
1773
1774static int ip_rt_bug(struct sk_buff *skb)
1775{
Harvey Harrison673d57e2008-10-31 00:53:57 -07001776 printk(KERN_DEBUG "ip_rt_bug: %pI4 -> %pI4, %s\n",
1777 &ip_hdr(skb)->saddr, &ip_hdr(skb)->daddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 skb->dev ? skb->dev->name : "?");
1779 kfree_skb(skb);
Dave Jonesc378a9c2011-05-21 07:16:42 +00001780 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 return 0;
1782}
1783
1784/*
1785 We do not cache source address of outgoing interface,
1786 because it is used only by IP RR, TS and SRR options,
1787 so that it out of fast path.
1788
1789 BTW remember: "addr" is allowed to be not aligned
1790 in IP options!
1791 */
1792
David S. Miller8e363602011-05-13 17:29:41 -04001793void ip_rt_get_source(u8 *addr, struct sk_buff *skb, struct rtable *rt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794{
Al Viroa61ced52006-09-26 21:27:54 -07001795 __be32 src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
David S. Millerc7537962010-11-11 17:07:48 -08001797 if (rt_is_output_route(rt))
David S. Millerc5be24f2011-05-13 18:01:21 -04001798 src = ip_hdr(skb)->saddr;
Eric Dumazetebc0ffa2010-10-05 10:41:36 +00001799 else {
David S. Miller8e363602011-05-13 17:29:41 -04001800 struct fib_result res;
1801 struct flowi4 fl4;
1802 struct iphdr *iph;
1803
1804 iph = ip_hdr(skb);
1805
1806 memset(&fl4, 0, sizeof(fl4));
1807 fl4.daddr = iph->daddr;
1808 fl4.saddr = iph->saddr;
Julian Anastasovcb737cb2011-07-23 02:00:41 +00001809 fl4.flowi4_tos = RT_TOS(iph->tos);
David S. Miller8e363602011-05-13 17:29:41 -04001810 fl4.flowi4_oif = rt->dst.dev->ifindex;
1811 fl4.flowi4_iif = skb->dev->ifindex;
1812 fl4.flowi4_mark = skb->mark;
David S. Miller5e2b61f2011-03-04 21:47:09 -08001813
Eric Dumazetebc0ffa2010-10-05 10:41:36 +00001814 rcu_read_lock();
David S. Miller68a5e3d2011-03-11 20:07:33 -05001815 if (fib_lookup(dev_net(rt->dst.dev), &fl4, &res) == 0)
David S. Miller436c3b62011-03-24 17:42:21 -07001816 src = FIB_RES_PREFSRC(dev_net(rt->dst.dev), res);
Eric Dumazetebc0ffa2010-10-05 10:41:36 +00001817 else
1818 src = inet_select_addr(rt->dst.dev, rt->rt_gateway,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 RT_SCOPE_UNIVERSE);
Eric Dumazetebc0ffa2010-10-05 10:41:36 +00001820 rcu_read_unlock();
1821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 memcpy(addr, &src, 4);
1823}
1824
Patrick McHardyc7066f72011-01-14 13:36:42 +01001825#ifdef CONFIG_IP_ROUTE_CLASSID
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826static void set_class_tag(struct rtable *rt, u32 tag)
1827{
Changli Gaod8d1f302010-06-10 23:31:35 -07001828 if (!(rt->dst.tclassid & 0xFFFF))
1829 rt->dst.tclassid |= tag & 0xFFFF;
1830 if (!(rt->dst.tclassid & 0xFFFF0000))
1831 rt->dst.tclassid |= tag & 0xFFFF0000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832}
1833#endif
1834
David S. Miller0dbaee32010-12-13 12:52:14 -08001835static unsigned int ipv4_default_advmss(const struct dst_entry *dst)
1836{
1837 unsigned int advmss = dst_metric_raw(dst, RTAX_ADVMSS);
1838
1839 if (advmss == 0) {
1840 advmss = max_t(unsigned int, dst->dev->mtu - 40,
1841 ip_rt_min_advmss);
1842 if (advmss > 65535 - 40)
1843 advmss = 65535 - 40;
1844 }
1845 return advmss;
1846}
1847
David S. Millerd33e4552010-12-14 13:01:14 -08001848static unsigned int ipv4_default_mtu(const struct dst_entry *dst)
1849{
1850 unsigned int mtu = dst->dev->mtu;
1851
1852 if (unlikely(dst_metric_locked(dst, RTAX_MTU))) {
1853 const struct rtable *rt = (const struct rtable *) dst;
1854
1855 if (rt->rt_gateway != rt->rt_dst && mtu > 576)
1856 mtu = 576;
1857 }
1858
1859 if (mtu > IP_MAX_MTU)
1860 mtu = IP_MAX_MTU;
1861
1862 return mtu;
1863}
1864
David S. Miller813b3b52011-04-28 14:48:42 -07001865static void rt_init_metrics(struct rtable *rt, const struct flowi4 *fl4,
David S. Miller5e2b61f2011-03-04 21:47:09 -08001866 struct fib_info *fi)
David S. Millera4daad62011-01-27 22:01:53 -08001867{
David S. Miller0131ba42011-02-04 14:37:30 -08001868 struct inet_peer *peer;
1869 int create = 0;
1870
1871 /* If a peer entry exists for this destination, we must hook
1872 * it up in order to get at cached metrics.
1873 */
David S. Miller813b3b52011-04-28 14:48:42 -07001874 if (fl4 && (fl4->flowi4_flags & FLOWI_FLAG_PRECOW_METRICS))
David S. Miller0131ba42011-02-04 14:37:30 -08001875 create = 1;
1876
David S. Miller3c0afdc2011-03-04 21:26:07 -08001877 rt->peer = peer = inet_getpeer_v4(rt->rt_dst, create);
David S. Miller0131ba42011-02-04 14:37:30 -08001878 if (peer) {
David S. Miller3c0afdc2011-03-04 21:26:07 -08001879 rt->rt_peer_genid = rt_peer_genid();
David S. Miller0131ba42011-02-04 14:37:30 -08001880 if (inet_metrics_new(peer))
1881 memcpy(peer->metrics, fi->fib_metrics,
1882 sizeof(u32) * RTAX_MAX);
1883 dst_init_metrics(&rt->dst, peer->metrics, false);
David S. Miller2c8cec52011-02-09 20:42:07 -08001884
Eric Dumazetfe6fe792011-06-08 06:07:07 +00001885 check_peer_pmtu(&rt->dst, peer);
David S. Millerf39925d2011-02-09 22:00:16 -08001886 if (peer->redirect_learned.a4 &&
1887 peer->redirect_learned.a4 != rt->rt_gateway) {
1888 rt->rt_gateway = peer->redirect_learned.a4;
1889 rt->rt_flags |= RTCF_REDIRECTED;
1890 }
David S. Miller0131ba42011-02-04 14:37:30 -08001891 } else {
David S. Millerb8dad612011-01-28 14:07:16 -08001892 if (fi->fib_metrics != (u32 *) dst_default_metrics) {
1893 rt->fi = fi;
1894 atomic_inc(&fi->fib_clntref);
1895 }
David S. Millera4daad62011-01-27 22:01:53 -08001896 dst_init_metrics(&rt->dst, fi->fib_metrics, true);
David S. Millera4daad62011-01-27 22:01:53 -08001897 }
1898}
1899
David S. Miller813b3b52011-04-28 14:48:42 -07001900static void rt_set_nexthop(struct rtable *rt, const struct flowi4 *fl4,
David S. Miller5e2b61f2011-03-04 21:47:09 -08001901 const struct fib_result *res,
David S. Miller982721f2011-02-16 21:44:24 -08001902 struct fib_info *fi, u16 type, u32 itag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903{
David S. Millerdefb3512010-12-08 21:16:57 -08001904 struct dst_entry *dst = &rt->dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
1906 if (fi) {
1907 if (FIB_RES_GW(*res) &&
1908 FIB_RES_NH(*res).nh_scope == RT_SCOPE_LINK)
1909 rt->rt_gateway = FIB_RES_GW(*res);
David S. Miller813b3b52011-04-28 14:48:42 -07001910 rt_init_metrics(rt, fl4, fi);
Patrick McHardyc7066f72011-01-14 13:36:42 +01001911#ifdef CONFIG_IP_ROUTE_CLASSID
David S. Millerdefb3512010-12-08 21:16:57 -08001912 dst->tclassid = FIB_RES_NH(*res).nh_tclassid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913#endif
David S. Millerd33e4552010-12-14 13:01:14 -08001914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
David S. Millerdefb3512010-12-08 21:16:57 -08001916 if (dst_mtu(dst) > IP_MAX_MTU)
1917 dst_metric_set(dst, RTAX_MTU, IP_MAX_MTU);
David S. Miller0dbaee32010-12-13 12:52:14 -08001918 if (dst_metric_raw(dst, RTAX_ADVMSS) > 65535 - 40)
David S. Millerdefb3512010-12-08 21:16:57 -08001919 dst_metric_set(dst, RTAX_ADVMSS, 65535 - 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
Patrick McHardyc7066f72011-01-14 13:36:42 +01001921#ifdef CONFIG_IP_ROUTE_CLASSID
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922#ifdef CONFIG_IP_MULTIPLE_TABLES
1923 set_class_tag(rt, fib_rules_tclass(res));
1924#endif
1925 set_class_tag(rt, itag);
1926#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927}
1928
David S. Miller5c1e6aa2011-04-28 14:13:38 -07001929static struct rtable *rt_dst_alloc(struct net_device *dev,
1930 bool nopolicy, bool noxfrm)
David S. Miller0c4dcd52011-02-17 15:42:37 -08001931{
David S. Miller5c1e6aa2011-04-28 14:13:38 -07001932 return dst_alloc(&ipv4_dst_ops, dev, 1, -1,
1933 DST_HOST |
1934 (nopolicy ? DST_NOPOLICY : 0) |
1935 (noxfrm ? DST_NOXFRM : 0));
David S. Miller0c4dcd52011-02-17 15:42:37 -08001936}
1937
Eric Dumazet96d36222010-06-02 19:21:31 +00001938/* called in rcu_read_lock() section */
Al Viro9e12bb22006-09-26 21:25:20 -07001939static int ip_route_input_mc(struct sk_buff *skb, __be32 daddr, __be32 saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 u8 tos, struct net_device *dev, int our)
1941{
Eric Dumazet96d36222010-06-02 19:21:31 +00001942 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 struct rtable *rth;
Al Viroa61ced52006-09-26 21:27:54 -07001944 __be32 spec_dst;
Eric Dumazet96d36222010-06-02 19:21:31 +00001945 struct in_device *in_dev = __in_dev_get_rcu(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 u32 itag = 0;
Eric Dumazetb5f7e752010-06-02 12:05:27 +00001947 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
1949 /* Primary sanity checks. */
1950
1951 if (in_dev == NULL)
1952 return -EINVAL;
1953
Jan Engelhardt1e637c72008-01-21 03:18:08 -08001954 if (ipv4_is_multicast(saddr) || ipv4_is_lbcast(saddr) ||
Joe Perchesf97c1e02007-12-16 13:45:43 -08001955 ipv4_is_loopback(saddr) || skb->protocol != htons(ETH_P_IP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 goto e_inval;
1957
Joe Perchesf97c1e02007-12-16 13:45:43 -08001958 if (ipv4_is_zeronet(saddr)) {
1959 if (!ipv4_is_local_multicast(daddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 goto e_inval;
1961 spec_dst = inet_select_addr(dev, 0, RT_SCOPE_LINK);
Eric Dumazetb5f7e752010-06-02 12:05:27 +00001962 } else {
Michael Smith5c04c812011-04-07 04:51:50 +00001963 err = fib_validate_source(skb, saddr, 0, tos, 0, dev, &spec_dst,
1964 &itag);
Eric Dumazetb5f7e752010-06-02 12:05:27 +00001965 if (err < 0)
1966 goto e_err;
1967 }
David S. Miller5c1e6aa2011-04-28 14:13:38 -07001968 rth = rt_dst_alloc(init_net.loopback_dev,
1969 IN_DEV_CONF_GET(in_dev, NOPOLICY), false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 if (!rth)
1971 goto e_nobufs;
1972
Patrick McHardyc7066f72011-01-14 13:36:42 +01001973#ifdef CONFIG_IP_ROUTE_CLASSID
Changli Gaod8d1f302010-06-10 23:31:35 -07001974 rth->dst.tclassid = itag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975#endif
David S. Millercf911662011-04-28 14:31:47 -07001976 rth->dst.output = ip_rt_bug;
1977
1978 rth->rt_key_dst = daddr;
1979 rth->rt_key_src = saddr;
Denis V. Luneve84f84f2008-07-05 19:04:32 -07001980 rth->rt_genid = rt_genid(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 rth->rt_flags = RTCF_MULTICAST;
Eric Dumazet29e75252008-01-31 17:05:09 -08001982 rth->rt_type = RTN_MULTICAST;
David S. Miller475949d2011-05-03 19:45:15 -07001983 rth->rt_key_tos = tos;
David S. Millercf911662011-04-28 14:31:47 -07001984 rth->rt_dst = daddr;
1985 rth->rt_src = saddr;
1986 rth->rt_route_iif = dev->ifindex;
1987 rth->rt_iif = dev->ifindex;
1988 rth->rt_oif = 0;
1989 rth->rt_mark = skb->mark;
1990 rth->rt_gateway = daddr;
1991 rth->rt_spec_dst= spec_dst;
1992 rth->rt_peer_genid = 0;
1993 rth->peer = NULL;
1994 rth->fi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 if (our) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001996 rth->dst.input= ip_local_deliver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 rth->rt_flags |= RTCF_LOCAL;
1998 }
1999
2000#ifdef CONFIG_IP_MROUTE
Joe Perchesf97c1e02007-12-16 13:45:43 -08002001 if (!ipv4_is_local_multicast(daddr) && IN_DEV_MFORWARD(in_dev))
Changli Gaod8d1f302010-06-10 23:31:35 -07002002 rth->dst.input = ip_mr_input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003#endif
2004 RT_CACHE_STAT_INC(in_slow_mc);
2005
Denis V. Luneve84f84f2008-07-05 19:04:32 -07002006 hash = rt_hash(daddr, saddr, dev->ifindex, rt_genid(dev_net(dev)));
David S. Millerb23dd4f2011-03-02 14:31:35 -08002007 rth = rt_intern_hash(hash, rth, skb, dev->ifindex);
Eric Dumazet9aa3c942011-06-18 11:59:18 -07002008 return IS_ERR(rth) ? PTR_ERR(rth) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
2010e_nobufs:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012e_inval:
Eric Dumazet96d36222010-06-02 19:21:31 +00002013 return -EINVAL;
Eric Dumazetb5f7e752010-06-02 12:05:27 +00002014e_err:
Eric Dumazetb5f7e752010-06-02 12:05:27 +00002015 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016}
2017
2018
2019static void ip_handle_martian_source(struct net_device *dev,
2020 struct in_device *in_dev,
2021 struct sk_buff *skb,
Al Viro9e12bb22006-09-26 21:25:20 -07002022 __be32 daddr,
2023 __be32 saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024{
2025 RT_CACHE_STAT_INC(in_martian_src);
2026#ifdef CONFIG_IP_ROUTE_VERBOSE
2027 if (IN_DEV_LOG_MARTIANS(in_dev) && net_ratelimit()) {
2028 /*
2029 * RFC1812 recommendation, if source is martian,
2030 * the only hint is MAC header.
2031 */
Harvey Harrison673d57e2008-10-31 00:53:57 -07002032 printk(KERN_WARNING "martian source %pI4 from %pI4, on dev %s\n",
2033 &daddr, &saddr, dev->name);
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07002034 if (dev->hard_header_len && skb_mac_header_was_set(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 int i;
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07002036 const unsigned char *p = skb_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 printk(KERN_WARNING "ll header: ");
2038 for (i = 0; i < dev->hard_header_len; i++, p++) {
2039 printk("%02x", *p);
2040 if (i < (dev->hard_header_len - 1))
2041 printk(":");
2042 }
2043 printk("\n");
2044 }
2045 }
2046#endif
2047}
2048
Eric Dumazet47360222010-06-03 04:13:21 +00002049/* called in rcu_read_lock() section */
Stephen Hemminger5969f712008-04-10 01:52:09 -07002050static int __mkroute_input(struct sk_buff *skb,
David S. Miller982721f2011-02-16 21:44:24 -08002051 const struct fib_result *res,
Stephen Hemminger5969f712008-04-10 01:52:09 -07002052 struct in_device *in_dev,
2053 __be32 daddr, __be32 saddr, u32 tos,
2054 struct rtable **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 struct rtable *rth;
2057 int err;
2058 struct in_device *out_dev;
Eric Dumazet47360222010-06-03 04:13:21 +00002059 unsigned int flags = 0;
Al Virod9c9df82006-09-26 21:28:14 -07002060 __be32 spec_dst;
2061 u32 itag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
2063 /* get a working reference to the output device */
Eric Dumazet47360222010-06-03 04:13:21 +00002064 out_dev = __in_dev_get_rcu(FIB_RES_DEV(*res));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 if (out_dev == NULL) {
2066 if (net_ratelimit())
2067 printk(KERN_CRIT "Bug in ip_route_input" \
2068 "_slow(). Please, report\n");
2069 return -EINVAL;
2070 }
2071
2072
Michael Smith5c04c812011-04-07 04:51:50 +00002073 err = fib_validate_source(skb, saddr, daddr, tos, FIB_RES_OIF(*res),
2074 in_dev->dev, &spec_dst, &itag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 if (err < 0) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002076 ip_handle_martian_source(in_dev->dev, in_dev, skb, daddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 saddr);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002078
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 goto cleanup;
2080 }
2081
2082 if (err)
2083 flags |= RTCF_DIRECTSRC;
2084
Thomas Graf51b77ca2008-06-03 16:36:01 -07002085 if (out_dev == in_dev && err &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 (IN_DEV_SHARED_MEDIA(out_dev) ||
2087 inet_addr_onlink(out_dev, saddr, FIB_RES_GW(*res))))
2088 flags |= RTCF_DOREDIRECT;
2089
2090 if (skb->protocol != htons(ETH_P_IP)) {
2091 /* Not IP (i.e. ARP). Do not create route, if it is
2092 * invalid for proxy arp. DNAT routes are always valid.
Jesper Dangaard Brouer65324142010-01-05 05:50:47 +00002093 *
2094 * Proxy arp feature have been extended to allow, ARP
2095 * replies back to the same interface, to support
2096 * Private VLAN switch technologies. See arp.c.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 */
Jesper Dangaard Brouer65324142010-01-05 05:50:47 +00002098 if (out_dev == in_dev &&
2099 IN_DEV_PROXY_ARP_PVLAN(in_dev) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 err = -EINVAL;
2101 goto cleanup;
2102 }
2103 }
2104
David S. Miller5c1e6aa2011-04-28 14:13:38 -07002105 rth = rt_dst_alloc(out_dev->dev,
2106 IN_DEV_CONF_GET(in_dev, NOPOLICY),
David S. Miller0c4dcd52011-02-17 15:42:37 -08002107 IN_DEV_CONF_GET(out_dev, NOXFRM));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 if (!rth) {
2109 err = -ENOBUFS;
2110 goto cleanup;
2111 }
2112
David S. Miller5e2b61f2011-03-04 21:47:09 -08002113 rth->rt_key_dst = daddr;
David S. Miller5e2b61f2011-03-04 21:47:09 -08002114 rth->rt_key_src = saddr;
David S. Millercf911662011-04-28 14:31:47 -07002115 rth->rt_genid = rt_genid(dev_net(rth->dst.dev));
2116 rth->rt_flags = flags;
2117 rth->rt_type = res->type;
David S. Miller475949d2011-05-03 19:45:15 -07002118 rth->rt_key_tos = tos;
David S. Millercf911662011-04-28 14:31:47 -07002119 rth->rt_dst = daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 rth->rt_src = saddr;
OGAWA Hirofumi1b86a582011-04-07 14:04:08 -07002121 rth->rt_route_iif = in_dev->dev->ifindex;
David S. Miller5e2b61f2011-03-04 21:47:09 -08002122 rth->rt_iif = in_dev->dev->ifindex;
David S. Miller5e2b61f2011-03-04 21:47:09 -08002123 rth->rt_oif = 0;
David S. Millercf911662011-04-28 14:31:47 -07002124 rth->rt_mark = skb->mark;
2125 rth->rt_gateway = daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 rth->rt_spec_dst= spec_dst;
David S. Millercf911662011-04-28 14:31:47 -07002127 rth->rt_peer_genid = 0;
2128 rth->peer = NULL;
2129 rth->fi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
Changli Gaod8d1f302010-06-10 23:31:35 -07002131 rth->dst.input = ip_forward;
2132 rth->dst.output = ip_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
David S. Miller5e2b61f2011-03-04 21:47:09 -08002134 rt_set_nexthop(rth, NULL, res, res->fi, res->type, itag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 *result = rth;
2137 err = 0;
2138 cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 return err;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002140}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
Stephen Hemminger5969f712008-04-10 01:52:09 -07002142static int ip_mkroute_input(struct sk_buff *skb,
2143 struct fib_result *res,
David S. Miller68a5e3d2011-03-11 20:07:33 -05002144 const struct flowi4 *fl4,
Stephen Hemminger5969f712008-04-10 01:52:09 -07002145 struct in_device *in_dev,
2146 __be32 daddr, __be32 saddr, u32 tos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147{
Chuck Short7abaa272005-06-22 22:10:23 -07002148 struct rtable* rth = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 int err;
2150 unsigned hash;
2151
2152#ifdef CONFIG_IP_ROUTE_MULTIPATH
David S. Millerff3fccb2011-03-10 16:23:24 -08002153 if (res->fi && res->fi->fib_nhs > 1)
David S. Miller1b7fe5932011-03-10 17:01:16 -08002154 fib_select_multipath(res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155#endif
2156
2157 /* create a routing cache entry */
2158 err = __mkroute_input(skb, res, in_dev, daddr, saddr, tos, &rth);
2159 if (err)
2160 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
2162 /* put it into the cache */
David S. Miller68a5e3d2011-03-11 20:07:33 -05002163 hash = rt_hash(daddr, saddr, fl4->flowi4_iif,
Changli Gaod8d1f302010-06-10 23:31:35 -07002164 rt_genid(dev_net(rth->dst.dev)));
David S. Miller68a5e3d2011-03-11 20:07:33 -05002165 rth = rt_intern_hash(hash, rth, skb, fl4->flowi4_iif);
David S. Millerb23dd4f2011-03-02 14:31:35 -08002166 if (IS_ERR(rth))
2167 return PTR_ERR(rth);
2168 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169}
2170
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171/*
2172 * NOTE. We drop all the packets that has local source
2173 * addresses, because every properly looped back packet
2174 * must have correct destination already attached by output routine.
2175 *
2176 * Such approach solves two big problems:
2177 * 1. Not simplex devices are handled properly.
2178 * 2. IP spoofing attempts are filtered with 100% of guarantee.
Eric Dumazetebc0ffa2010-10-05 10:41:36 +00002179 * called with rcu_read_lock()
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 */
2181
Al Viro9e12bb22006-09-26 21:25:20 -07002182static int ip_route_input_slow(struct sk_buff *skb, __be32 daddr, __be32 saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 u8 tos, struct net_device *dev)
2184{
2185 struct fib_result res;
Eric Dumazet96d36222010-06-02 19:21:31 +00002186 struct in_device *in_dev = __in_dev_get_rcu(dev);
David S. Miller68a5e3d2011-03-11 20:07:33 -05002187 struct flowi4 fl4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 unsigned flags = 0;
2189 u32 itag = 0;
2190 struct rtable * rth;
2191 unsigned hash;
Al Viro9e12bb22006-09-26 21:25:20 -07002192 __be32 spec_dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 int err = -EINVAL;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002194 struct net * net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
2196 /* IP on this device is disabled. */
2197
2198 if (!in_dev)
2199 goto out;
2200
2201 /* Check for the most weird martians, which can be not detected
2202 by fib_lookup.
2203 */
2204
Jan Engelhardt1e637c72008-01-21 03:18:08 -08002205 if (ipv4_is_multicast(saddr) || ipv4_is_lbcast(saddr) ||
Joe Perchesf97c1e02007-12-16 13:45:43 -08002206 ipv4_is_loopback(saddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 goto martian_source;
2208
Andy Walls27a954b2010-10-17 15:11:22 +00002209 if (ipv4_is_lbcast(daddr) || (saddr == 0 && daddr == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 goto brd_input;
2211
2212 /* Accept zero addresses only to limited broadcast;
2213 * I even do not know to fix it or not. Waiting for complains :-)
2214 */
Joe Perchesf97c1e02007-12-16 13:45:43 -08002215 if (ipv4_is_zeronet(saddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 goto martian_source;
2217
Andy Walls27a954b2010-10-17 15:11:22 +00002218 if (ipv4_is_zeronet(daddr) || ipv4_is_loopback(daddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 goto martian_destination;
2220
2221 /*
2222 * Now we are ready to route packet.
2223 */
David S. Miller68a5e3d2011-03-11 20:07:33 -05002224 fl4.flowi4_oif = 0;
2225 fl4.flowi4_iif = dev->ifindex;
2226 fl4.flowi4_mark = skb->mark;
2227 fl4.flowi4_tos = tos;
2228 fl4.flowi4_scope = RT_SCOPE_UNIVERSE;
2229 fl4.daddr = daddr;
2230 fl4.saddr = saddr;
2231 err = fib_lookup(net, &fl4, &res);
Eric Dumazetebc0ffa2010-10-05 10:41:36 +00002232 if (err != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 if (!IN_DEV_FORWARD(in_dev))
Dietmar Eggemann2c2910a2005-06-28 13:06:23 -07002234 goto e_hostunreach;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 goto no_route;
2236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
2238 RT_CACHE_STAT_INC(in_slow_tot);
2239
2240 if (res.type == RTN_BROADCAST)
2241 goto brd_input;
2242
2243 if (res.type == RTN_LOCAL) {
Michael Smith5c04c812011-04-07 04:51:50 +00002244 err = fib_validate_source(skb, saddr, daddr, tos,
Eric Dumazetebc0ffa2010-10-05 10:41:36 +00002245 net->loopback_dev->ifindex,
Michael Smith5c04c812011-04-07 04:51:50 +00002246 dev, &spec_dst, &itag);
Eric Dumazetb5f7e752010-06-02 12:05:27 +00002247 if (err < 0)
2248 goto martian_source_keep_err;
2249 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 flags |= RTCF_DIRECTSRC;
2251 spec_dst = daddr;
2252 goto local_input;
2253 }
2254
2255 if (!IN_DEV_FORWARD(in_dev))
Dietmar Eggemann2c2910a2005-06-28 13:06:23 -07002256 goto e_hostunreach;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 if (res.type != RTN_UNICAST)
2258 goto martian_destination;
2259
David S. Miller68a5e3d2011-03-11 20:07:33 -05002260 err = ip_mkroute_input(skb, &res, &fl4, in_dev, daddr, saddr, tos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261out: return err;
2262
2263brd_input:
2264 if (skb->protocol != htons(ETH_P_IP))
2265 goto e_inval;
2266
Joe Perchesf97c1e02007-12-16 13:45:43 -08002267 if (ipv4_is_zeronet(saddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 spec_dst = inet_select_addr(dev, 0, RT_SCOPE_LINK);
2269 else {
Michael Smith5c04c812011-04-07 04:51:50 +00002270 err = fib_validate_source(skb, saddr, 0, tos, 0, dev, &spec_dst,
2271 &itag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 if (err < 0)
Eric Dumazetb5f7e752010-06-02 12:05:27 +00002273 goto martian_source_keep_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 if (err)
2275 flags |= RTCF_DIRECTSRC;
2276 }
2277 flags |= RTCF_BROADCAST;
2278 res.type = RTN_BROADCAST;
2279 RT_CACHE_STAT_INC(in_brd);
2280
2281local_input:
David S. Miller5c1e6aa2011-04-28 14:13:38 -07002282 rth = rt_dst_alloc(net->loopback_dev,
2283 IN_DEV_CONF_GET(in_dev, NOPOLICY), false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 if (!rth)
2285 goto e_nobufs;
2286
David S. Millercf911662011-04-28 14:31:47 -07002287 rth->dst.input= ip_local_deliver;
Changli Gaod8d1f302010-06-10 23:31:35 -07002288 rth->dst.output= ip_rt_bug;
David S. Millercf911662011-04-28 14:31:47 -07002289#ifdef CONFIG_IP_ROUTE_CLASSID
2290 rth->dst.tclassid = itag;
2291#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292
David S. Miller5e2b61f2011-03-04 21:47:09 -08002293 rth->rt_key_dst = daddr;
David S. Miller5e2b61f2011-03-04 21:47:09 -08002294 rth->rt_key_src = saddr;
David S. Millercf911662011-04-28 14:31:47 -07002295 rth->rt_genid = rt_genid(net);
2296 rth->rt_flags = flags|RTCF_LOCAL;
2297 rth->rt_type = res.type;
David S. Miller475949d2011-05-03 19:45:15 -07002298 rth->rt_key_tos = tos;
David S. Millercf911662011-04-28 14:31:47 -07002299 rth->rt_dst = daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 rth->rt_src = saddr;
Patrick McHardyc7066f72011-01-14 13:36:42 +01002301#ifdef CONFIG_IP_ROUTE_CLASSID
Changli Gaod8d1f302010-06-10 23:31:35 -07002302 rth->dst.tclassid = itag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303#endif
OGAWA Hirofumi1b86a582011-04-07 14:04:08 -07002304 rth->rt_route_iif = dev->ifindex;
David S. Miller5e2b61f2011-03-04 21:47:09 -08002305 rth->rt_iif = dev->ifindex;
David S. Millercf911662011-04-28 14:31:47 -07002306 rth->rt_oif = 0;
2307 rth->rt_mark = skb->mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 rth->rt_gateway = daddr;
2309 rth->rt_spec_dst= spec_dst;
David S. Millercf911662011-04-28 14:31:47 -07002310 rth->rt_peer_genid = 0;
2311 rth->peer = NULL;
2312 rth->fi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 if (res.type == RTN_UNREACHABLE) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002314 rth->dst.input= ip_error;
2315 rth->dst.error= -err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 rth->rt_flags &= ~RTCF_LOCAL;
2317 }
David S. Miller68a5e3d2011-03-11 20:07:33 -05002318 hash = rt_hash(daddr, saddr, fl4.flowi4_iif, rt_genid(net));
2319 rth = rt_intern_hash(hash, rth, skb, fl4.flowi4_iif);
David S. Millerb23dd4f2011-03-02 14:31:35 -08002320 err = 0;
2321 if (IS_ERR(rth))
2322 err = PTR_ERR(rth);
Eric Dumazetebc0ffa2010-10-05 10:41:36 +00002323 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324
2325no_route:
2326 RT_CACHE_STAT_INC(in_no_route);
2327 spec_dst = inet_select_addr(dev, 0, RT_SCOPE_UNIVERSE);
2328 res.type = RTN_UNREACHABLE;
Mitsuru Chinen7f538782007-12-07 01:07:24 -08002329 if (err == -ESRCH)
2330 err = -ENETUNREACH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 goto local_input;
2332
2333 /*
2334 * Do not cache martian addresses: they should be logged (RFC1812)
2335 */
2336martian_destination:
2337 RT_CACHE_STAT_INC(in_martian_dst);
2338#ifdef CONFIG_IP_ROUTE_VERBOSE
2339 if (IN_DEV_LOG_MARTIANS(in_dev) && net_ratelimit())
Harvey Harrison673d57e2008-10-31 00:53:57 -07002340 printk(KERN_WARNING "martian destination %pI4 from %pI4, dev %s\n",
2341 &daddr, &saddr, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342#endif
Dietmar Eggemann2c2910a2005-06-28 13:06:23 -07002343
2344e_hostunreach:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002345 err = -EHOSTUNREACH;
Eric Dumazetebc0ffa2010-10-05 10:41:36 +00002346 goto out;
Dietmar Eggemann2c2910a2005-06-28 13:06:23 -07002347
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348e_inval:
2349 err = -EINVAL;
Eric Dumazetebc0ffa2010-10-05 10:41:36 +00002350 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
2352e_nobufs:
2353 err = -ENOBUFS;
Eric Dumazetebc0ffa2010-10-05 10:41:36 +00002354 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355
2356martian_source:
Eric Dumazetb5f7e752010-06-02 12:05:27 +00002357 err = -EINVAL;
2358martian_source_keep_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 ip_handle_martian_source(dev, in_dev, skb, daddr, saddr);
Eric Dumazetebc0ffa2010-10-05 10:41:36 +00002360 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361}
2362
Eric Dumazet407eadd2010-05-10 11:32:55 +00002363int ip_route_input_common(struct sk_buff *skb, __be32 daddr, __be32 saddr,
2364 u8 tos, struct net_device *dev, bool noref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365{
2366 struct rtable * rth;
2367 unsigned hash;
2368 int iif = dev->ifindex;
Denis V. Lunevb5921912008-01-22 23:50:25 -08002369 struct net *net;
Eric Dumazet96d36222010-06-02 19:21:31 +00002370 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002372 net = dev_net(dev);
Neil Horman1080d702008-10-27 12:28:25 -07002373
Eric Dumazet96d36222010-06-02 19:21:31 +00002374 rcu_read_lock();
2375
Neil Horman1080d702008-10-27 12:28:25 -07002376 if (!rt_caching(net))
2377 goto skip_cache;
2378
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 tos &= IPTOS_RT_MASK;
Denis V. Luneve84f84f2008-07-05 19:04:32 -07002380 hash = rt_hash(daddr, saddr, iif, rt_genid(net));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 for (rth = rcu_dereference(rt_hash_table[hash].chain); rth;
Changli Gaod8d1f302010-06-10 23:31:35 -07002383 rth = rcu_dereference(rth->dst.rt_next)) {
David S. Miller5e2b61f2011-03-04 21:47:09 -08002384 if ((((__force u32)rth->rt_key_dst ^ (__force u32)daddr) |
2385 ((__force u32)rth->rt_key_src ^ (__force u32)saddr) |
Julian Anastasov025fd912011-08-09 04:01:16 +00002386 (rth->rt_route_iif ^ iif) |
David S. Miller475949d2011-05-03 19:45:15 -07002387 (rth->rt_key_tos ^ tos)) == 0 &&
David S. Miller5e2b61f2011-03-04 21:47:09 -08002388 rth->rt_mark == skb->mark &&
Changli Gaod8d1f302010-06-10 23:31:35 -07002389 net_eq(dev_net(rth->dst.dev), net) &&
Denis V. Luneve84f84f2008-07-05 19:04:32 -07002390 !rt_is_expired(rth)) {
Eric Dumazet407eadd2010-05-10 11:32:55 +00002391 if (noref) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002392 dst_use_noref(&rth->dst, jiffies);
2393 skb_dst_set_noref(skb, &rth->dst);
Eric Dumazet407eadd2010-05-10 11:32:55 +00002394 } else {
Changli Gaod8d1f302010-06-10 23:31:35 -07002395 dst_use(&rth->dst, jiffies);
2396 skb_dst_set(skb, &rth->dst);
Eric Dumazet407eadd2010-05-10 11:32:55 +00002397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 RT_CACHE_STAT_INC(in_hit);
2399 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 return 0;
2401 }
2402 RT_CACHE_STAT_INC(in_hlist_search);
2403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
Neil Horman1080d702008-10-27 12:28:25 -07002405skip_cache:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 /* Multicast recognition logic is moved from route cache to here.
2407 The problem was that too many Ethernet cards have broken/missing
2408 hardware multicast filters :-( As result the host on multicasting
2409 network acquires a lot of useless route cache entries, sort of
2410 SDR messages from all the world. Now we try to get rid of them.
2411 Really, provided software IP multicast filter is organized
2412 reasonably (at least, hashed), it does not result in a slowdown
2413 comparing with route cache reject entries.
2414 Note, that multicast routers are not affected, because
2415 route cache entry is created eventually.
2416 */
Joe Perchesf97c1e02007-12-16 13:45:43 -08002417 if (ipv4_is_multicast(daddr)) {
Eric Dumazet96d36222010-06-02 19:21:31 +00002418 struct in_device *in_dev = __in_dev_get_rcu(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419
Eric Dumazet96d36222010-06-02 19:21:31 +00002420 if (in_dev) {
David S. Millerdbdd9a52011-03-10 16:34:38 -08002421 int our = ip_check_mc_rcu(in_dev, daddr, saddr,
2422 ip_hdr(skb)->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 if (our
2424#ifdef CONFIG_IP_MROUTE
Joe Perches9d4fb272009-11-23 10:41:23 -08002425 ||
2426 (!ipv4_is_local_multicast(daddr) &&
2427 IN_DEV_MFORWARD(in_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428#endif
Joe Perches9d4fb272009-11-23 10:41:23 -08002429 ) {
Eric Dumazet96d36222010-06-02 19:21:31 +00002430 int res = ip_route_input_mc(skb, daddr, saddr,
2431 tos, dev, our);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 rcu_read_unlock();
Eric Dumazet96d36222010-06-02 19:21:31 +00002433 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 }
2435 }
2436 rcu_read_unlock();
2437 return -EINVAL;
2438 }
Eric Dumazet96d36222010-06-02 19:21:31 +00002439 res = ip_route_input_slow(skb, daddr, saddr, tos, dev);
2440 rcu_read_unlock();
2441 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442}
Eric Dumazet407eadd2010-05-10 11:32:55 +00002443EXPORT_SYMBOL(ip_route_input_common);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
Eric Dumazetebc0ffa2010-10-05 10:41:36 +00002445/* called with rcu_read_lock() */
David S. Miller982721f2011-02-16 21:44:24 -08002446static struct rtable *__mkroute_output(const struct fib_result *res,
David S. Miller68a5e3d2011-03-11 20:07:33 -05002447 const struct flowi4 *fl4,
David S. Miller813b3b52011-04-28 14:48:42 -07002448 __be32 orig_daddr, __be32 orig_saddr,
2449 int orig_oif, struct net_device *dev_out,
David S. Miller5ada5522011-02-17 15:29:00 -08002450 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451{
David S. Miller982721f2011-02-16 21:44:24 -08002452 struct fib_info *fi = res->fi;
David S. Miller813b3b52011-04-28 14:48:42 -07002453 u32 tos = RT_FL_TOS(fl4);
David S. Miller5ada5522011-02-17 15:29:00 -08002454 struct in_device *in_dev;
David S. Miller982721f2011-02-16 21:44:24 -08002455 u16 type = res->type;
David S. Miller5ada5522011-02-17 15:29:00 -08002456 struct rtable *rth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
David S. Miller68a5e3d2011-03-11 20:07:33 -05002458 if (ipv4_is_loopback(fl4->saddr) && !(dev_out->flags & IFF_LOOPBACK))
David S. Miller5ada5522011-02-17 15:29:00 -08002459 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
David S. Miller68a5e3d2011-03-11 20:07:33 -05002461 if (ipv4_is_lbcast(fl4->daddr))
David S. Miller982721f2011-02-16 21:44:24 -08002462 type = RTN_BROADCAST;
David S. Miller68a5e3d2011-03-11 20:07:33 -05002463 else if (ipv4_is_multicast(fl4->daddr))
David S. Miller982721f2011-02-16 21:44:24 -08002464 type = RTN_MULTICAST;
David S. Miller68a5e3d2011-03-11 20:07:33 -05002465 else if (ipv4_is_zeronet(fl4->daddr))
David S. Miller5ada5522011-02-17 15:29:00 -08002466 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
2468 if (dev_out->flags & IFF_LOOPBACK)
2469 flags |= RTCF_LOCAL;
2470
Eric Dumazetdd28d1a2010-09-29 11:53:50 +00002471 in_dev = __in_dev_get_rcu(dev_out);
Eric Dumazetebc0ffa2010-10-05 10:41:36 +00002472 if (!in_dev)
David S. Miller5ada5522011-02-17 15:29:00 -08002473 return ERR_PTR(-EINVAL);
Eric Dumazetebc0ffa2010-10-05 10:41:36 +00002474
David S. Miller982721f2011-02-16 21:44:24 -08002475 if (type == RTN_BROADCAST) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 flags |= RTCF_BROADCAST | RTCF_LOCAL;
David S. Miller982721f2011-02-16 21:44:24 -08002477 fi = NULL;
2478 } else if (type == RTN_MULTICAST) {
Eric Dumazetdd28d1a2010-09-29 11:53:50 +00002479 flags |= RTCF_MULTICAST | RTCF_LOCAL;
David S. Miller813b3b52011-04-28 14:48:42 -07002480 if (!ip_check_mc_rcu(in_dev, fl4->daddr, fl4->saddr,
2481 fl4->flowi4_proto))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 flags &= ~RTCF_LOCAL;
2483 /* If multicast route do not exist use
Eric Dumazetdd28d1a2010-09-29 11:53:50 +00002484 * default one, but do not gateway in this case.
2485 * Yes, it is hack.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 */
David S. Miller982721f2011-02-16 21:44:24 -08002487 if (fi && res->prefixlen < 4)
2488 fi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 }
2490
David S. Miller5c1e6aa2011-04-28 14:13:38 -07002491 rth = rt_dst_alloc(dev_out,
2492 IN_DEV_CONF_GET(in_dev, NOPOLICY),
David S. Miller0c4dcd52011-02-17 15:42:37 -08002493 IN_DEV_CONF_GET(in_dev, NOXFRM));
Dimitris Michailidis8391d072010-10-07 14:48:38 +00002494 if (!rth)
David S. Miller5ada5522011-02-17 15:29:00 -08002495 return ERR_PTR(-ENOBUFS);
Dimitris Michailidis8391d072010-10-07 14:48:38 +00002496
David S. Millercf911662011-04-28 14:31:47 -07002497 rth->dst.output = ip_output;
2498
David S. Miller813b3b52011-04-28 14:48:42 -07002499 rth->rt_key_dst = orig_daddr;
2500 rth->rt_key_src = orig_saddr;
David S. Millercf911662011-04-28 14:31:47 -07002501 rth->rt_genid = rt_genid(dev_net(dev_out));
2502 rth->rt_flags = flags;
2503 rth->rt_type = type;
David S. Miller475949d2011-05-03 19:45:15 -07002504 rth->rt_key_tos = tos;
David S. Miller68a5e3d2011-03-11 20:07:33 -05002505 rth->rt_dst = fl4->daddr;
2506 rth->rt_src = fl4->saddr;
OGAWA Hirofumi1b86a582011-04-07 14:04:08 -07002507 rth->rt_route_iif = 0;
David S. Miller813b3b52011-04-28 14:48:42 -07002508 rth->rt_iif = orig_oif ? : dev_out->ifindex;
2509 rth->rt_oif = orig_oif;
2510 rth->rt_mark = fl4->flowi4_mark;
David S. Miller68a5e3d2011-03-11 20:07:33 -05002511 rth->rt_gateway = fl4->daddr;
2512 rth->rt_spec_dst= fl4->saddr;
David S. Millercf911662011-04-28 14:31:47 -07002513 rth->rt_peer_genid = 0;
2514 rth->peer = NULL;
2515 rth->fi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516
2517 RT_CACHE_STAT_INC(out_slow_tot);
2518
2519 if (flags & RTCF_LOCAL) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002520 rth->dst.input = ip_local_deliver;
David S. Miller68a5e3d2011-03-11 20:07:33 -05002521 rth->rt_spec_dst = fl4->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 }
2523 if (flags & (RTCF_BROADCAST | RTCF_MULTICAST)) {
David S. Miller68a5e3d2011-03-11 20:07:33 -05002524 rth->rt_spec_dst = fl4->saddr;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002525 if (flags & RTCF_LOCAL &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 !(dev_out->flags & IFF_LOOPBACK)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002527 rth->dst.output = ip_mc_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 RT_CACHE_STAT_INC(out_slow_mc);
2529 }
2530#ifdef CONFIG_IP_MROUTE
David S. Miller982721f2011-02-16 21:44:24 -08002531 if (type == RTN_MULTICAST) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 if (IN_DEV_MFORWARD(in_dev) &&
David S. Miller813b3b52011-04-28 14:48:42 -07002533 !ipv4_is_local_multicast(fl4->daddr)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002534 rth->dst.input = ip_mr_input;
2535 rth->dst.output = ip_mc_output;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 }
2537 }
2538#endif
2539 }
2540
David S. Miller813b3b52011-04-28 14:48:42 -07002541 rt_set_nexthop(rth, fl4, res, fi, type, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
David S. Miller5ada5522011-02-17 15:29:00 -08002543 return rth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544}
2545
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546/*
2547 * Major route resolver routine.
Eric Dumazet0197aa32010-09-30 03:33:58 +00002548 * called with rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 */
2550
David S. Miller813b3b52011-04-28 14:48:42 -07002551static struct rtable *ip_route_output_slow(struct net *net, struct flowi4 *fl4)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 struct net_device *dev_out = NULL;
David S. Miller813b3b52011-04-28 14:48:42 -07002554 u32 tos = RT_FL_TOS(fl4);
2555 unsigned int flags = 0;
2556 struct fib_result res;
David S. Miller5ada5522011-02-17 15:29:00 -08002557 struct rtable *rth;
David S. Miller813b3b52011-04-28 14:48:42 -07002558 __be32 orig_daddr;
2559 __be32 orig_saddr;
2560 int orig_oif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561
2562 res.fi = NULL;
2563#ifdef CONFIG_IP_MULTIPLE_TABLES
2564 res.r = NULL;
2565#endif
2566
David S. Miller813b3b52011-04-28 14:48:42 -07002567 orig_daddr = fl4->daddr;
2568 orig_saddr = fl4->saddr;
2569 orig_oif = fl4->flowi4_oif;
2570
2571 fl4->flowi4_iif = net->loopback_dev->ifindex;
2572 fl4->flowi4_tos = tos & IPTOS_RT_MASK;
2573 fl4->flowi4_scope = ((tos & RTO_ONLINK) ?
2574 RT_SCOPE_LINK : RT_SCOPE_UNIVERSE);
David S. Miller44713b62011-03-04 21:24:47 -08002575
David S. Miller010c2702011-02-17 15:37:09 -08002576 rcu_read_lock();
David S. Miller813b3b52011-04-28 14:48:42 -07002577 if (fl4->saddr) {
David S. Millerb23dd4f2011-03-02 14:31:35 -08002578 rth = ERR_PTR(-EINVAL);
David S. Miller813b3b52011-04-28 14:48:42 -07002579 if (ipv4_is_multicast(fl4->saddr) ||
2580 ipv4_is_lbcast(fl4->saddr) ||
2581 ipv4_is_zeronet(fl4->saddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 goto out;
2583
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 /* I removed check for oif == dev_out->oif here.
2585 It was wrong for two reasons:
Denis V. Lunev1ab35272008-01-22 22:04:30 -08002586 1. ip_dev_find(net, saddr) can return wrong iface, if saddr
2587 is assigned to multiple interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 2. Moreover, we are allowed to send packets with saddr
2589 of another iface. --ANK
2590 */
2591
David S. Miller813b3b52011-04-28 14:48:42 -07002592 if (fl4->flowi4_oif == 0 &&
2593 (ipv4_is_multicast(fl4->daddr) ||
2594 ipv4_is_lbcast(fl4->daddr))) {
Julian Anastasova210d012008-10-01 07:28:28 -07002595 /* It is equivalent to inet_addr_type(saddr) == RTN_LOCAL */
David S. Miller813b3b52011-04-28 14:48:42 -07002596 dev_out = __ip_dev_find(net, fl4->saddr, false);
Julian Anastasova210d012008-10-01 07:28:28 -07002597 if (dev_out == NULL)
2598 goto out;
2599
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 /* Special hack: user can direct multicasts
2601 and limited broadcast via necessary interface
2602 without fiddling with IP_MULTICAST_IF or IP_PKTINFO.
2603 This hack is not just for fun, it allows
2604 vic,vat and friends to work.
2605 They bind socket to loopback, set ttl to zero
2606 and expect that it will work.
2607 From the viewpoint of routing cache they are broken,
2608 because we are not allowed to build multicast path
2609 with loopback source addr (look, routing cache
2610 cannot know, that ttl is zero, so that packet
2611 will not leave this host and route is valid).
2612 Luckily, this hack is good workaround.
2613 */
2614
David S. Miller813b3b52011-04-28 14:48:42 -07002615 fl4->flowi4_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 goto make_route;
2617 }
Julian Anastasova210d012008-10-01 07:28:28 -07002618
David S. Miller813b3b52011-04-28 14:48:42 -07002619 if (!(fl4->flowi4_flags & FLOWI_FLAG_ANYSRC)) {
Julian Anastasova210d012008-10-01 07:28:28 -07002620 /* It is equivalent to inet_addr_type(saddr) == RTN_LOCAL */
David S. Miller813b3b52011-04-28 14:48:42 -07002621 if (!__ip_dev_find(net, fl4->saddr, false))
Julian Anastasova210d012008-10-01 07:28:28 -07002622 goto out;
Julian Anastasova210d012008-10-01 07:28:28 -07002623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 }
2625
2626
David S. Miller813b3b52011-04-28 14:48:42 -07002627 if (fl4->flowi4_oif) {
2628 dev_out = dev_get_by_index_rcu(net, fl4->flowi4_oif);
David S. Millerb23dd4f2011-03-02 14:31:35 -08002629 rth = ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 if (dev_out == NULL)
2631 goto out;
Herbert Xue5ed6392005-10-03 14:35:55 -07002632
2633 /* RACE: Check return value of inet_select_addr instead. */
Eric Dumazetfc75fc82010-12-22 04:39:39 +00002634 if (!(dev_out->flags & IFF_UP) || !__in_dev_get_rcu(dev_out)) {
David S. Millerb23dd4f2011-03-02 14:31:35 -08002635 rth = ERR_PTR(-ENETUNREACH);
Eric Dumazetfc75fc82010-12-22 04:39:39 +00002636 goto out;
2637 }
David S. Miller813b3b52011-04-28 14:48:42 -07002638 if (ipv4_is_local_multicast(fl4->daddr) ||
2639 ipv4_is_lbcast(fl4->daddr)) {
2640 if (!fl4->saddr)
2641 fl4->saddr = inet_select_addr(dev_out, 0,
2642 RT_SCOPE_LINK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 goto make_route;
2644 }
David S. Miller813b3b52011-04-28 14:48:42 -07002645 if (fl4->saddr) {
2646 if (ipv4_is_multicast(fl4->daddr))
2647 fl4->saddr = inet_select_addr(dev_out, 0,
2648 fl4->flowi4_scope);
2649 else if (!fl4->daddr)
2650 fl4->saddr = inet_select_addr(dev_out, 0,
2651 RT_SCOPE_HOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 }
2653 }
2654
David S. Miller813b3b52011-04-28 14:48:42 -07002655 if (!fl4->daddr) {
2656 fl4->daddr = fl4->saddr;
2657 if (!fl4->daddr)
2658 fl4->daddr = fl4->saddr = htonl(INADDR_LOOPBACK);
Denis V. Lunevb40afd02008-01-22 22:06:19 -08002659 dev_out = net->loopback_dev;
David S. Miller813b3b52011-04-28 14:48:42 -07002660 fl4->flowi4_oif = net->loopback_dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 res.type = RTN_LOCAL;
2662 flags |= RTCF_LOCAL;
2663 goto make_route;
2664 }
2665
David S. Miller813b3b52011-04-28 14:48:42 -07002666 if (fib_lookup(net, fl4, &res)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 res.fi = NULL;
David S. Miller813b3b52011-04-28 14:48:42 -07002668 if (fl4->flowi4_oif) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 /* Apparently, routing tables are wrong. Assume,
2670 that the destination is on link.
2671
2672 WHY? DW.
2673 Because we are allowed to send to iface
2674 even if it has NO routes and NO assigned
2675 addresses. When oif is specified, routing
2676 tables are looked up with only one purpose:
2677 to catch if destination is gatewayed, rather than
2678 direct. Moreover, if MSG_DONTROUTE is set,
2679 we send packet, ignoring both routing tables
2680 and ifaddr state. --ANK
2681
2682
2683 We could make it even if oif is unknown,
2684 likely IPv6, but we do not.
2685 */
2686
David S. Miller813b3b52011-04-28 14:48:42 -07002687 if (fl4->saddr == 0)
2688 fl4->saddr = inet_select_addr(dev_out, 0,
2689 RT_SCOPE_LINK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 res.type = RTN_UNICAST;
2691 goto make_route;
2692 }
David S. Millerb23dd4f2011-03-02 14:31:35 -08002693 rth = ERR_PTR(-ENETUNREACH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 goto out;
2695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696
2697 if (res.type == RTN_LOCAL) {
David S. Miller813b3b52011-04-28 14:48:42 -07002698 if (!fl4->saddr) {
Joel Sing9fc3bbb2011-01-03 20:24:20 +00002699 if (res.fi->fib_prefsrc)
David S. Miller813b3b52011-04-28 14:48:42 -07002700 fl4->saddr = res.fi->fib_prefsrc;
Joel Sing9fc3bbb2011-01-03 20:24:20 +00002701 else
David S. Miller813b3b52011-04-28 14:48:42 -07002702 fl4->saddr = fl4->daddr;
Joel Sing9fc3bbb2011-01-03 20:24:20 +00002703 }
Denis V. Lunevb40afd02008-01-22 22:06:19 -08002704 dev_out = net->loopback_dev;
David S. Miller813b3b52011-04-28 14:48:42 -07002705 fl4->flowi4_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 res.fi = NULL;
2707 flags |= RTCF_LOCAL;
2708 goto make_route;
2709 }
2710
2711#ifdef CONFIG_IP_ROUTE_MULTIPATH
David S. Miller813b3b52011-04-28 14:48:42 -07002712 if (res.fi->fib_nhs > 1 && fl4->flowi4_oif == 0)
David S. Miller1b7fe5932011-03-10 17:01:16 -08002713 fib_select_multipath(&res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 else
2715#endif
David S. Miller21d8c492011-04-14 14:49:37 -07002716 if (!res.prefixlen &&
2717 res.table->tb_num_default > 1 &&
David S. Miller813b3b52011-04-28 14:48:42 -07002718 res.type == RTN_UNICAST && !fl4->flowi4_oif)
David S. Miller0c838ff2011-01-31 16:16:50 -08002719 fib_select_default(&res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720
David S. Miller813b3b52011-04-28 14:48:42 -07002721 if (!fl4->saddr)
2722 fl4->saddr = FIB_RES_PREFSRC(net, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 dev_out = FIB_RES_DEV(res);
David S. Miller813b3b52011-04-28 14:48:42 -07002725 fl4->flowi4_oif = dev_out->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
2727
2728make_route:
David S. Miller813b3b52011-04-28 14:48:42 -07002729 rth = __mkroute_output(&res, fl4, orig_daddr, orig_saddr, orig_oif,
2730 dev_out, flags);
David S. Millerb23dd4f2011-03-02 14:31:35 -08002731 if (!IS_ERR(rth)) {
David S. Miller5ada5522011-02-17 15:29:00 -08002732 unsigned int hash;
2733
David S. Miller813b3b52011-04-28 14:48:42 -07002734 hash = rt_hash(orig_daddr, orig_saddr, orig_oif,
David S. Miller5ada5522011-02-17 15:29:00 -08002735 rt_genid(dev_net(dev_out)));
David S. Miller813b3b52011-04-28 14:48:42 -07002736 rth = rt_intern_hash(hash, rth, NULL, orig_oif);
David S. Miller5ada5522011-02-17 15:29:00 -08002737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738
David S. Miller010c2702011-02-17 15:37:09 -08002739out:
2740 rcu_read_unlock();
David S. Millerb23dd4f2011-03-02 14:31:35 -08002741 return rth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742}
2743
David S. Miller813b3b52011-04-28 14:48:42 -07002744struct rtable *__ip_route_output_key(struct net *net, struct flowi4 *flp4)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 struct rtable *rth;
David S. Miller010c2702011-02-17 15:37:09 -08002747 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748
Neil Horman1080d702008-10-27 12:28:25 -07002749 if (!rt_caching(net))
2750 goto slow_output;
2751
David S. Miller9d6ec932011-03-12 01:12:47 -05002752 hash = rt_hash(flp4->daddr, flp4->saddr, flp4->flowi4_oif, rt_genid(net));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
2754 rcu_read_lock_bh();
Paul E. McKenneya898def2010-02-22 17:04:49 -08002755 for (rth = rcu_dereference_bh(rt_hash_table[hash].chain); rth;
Changli Gaod8d1f302010-06-10 23:31:35 -07002756 rth = rcu_dereference_bh(rth->dst.rt_next)) {
David S. Miller9d6ec932011-03-12 01:12:47 -05002757 if (rth->rt_key_dst == flp4->daddr &&
2758 rth->rt_key_src == flp4->saddr &&
David S. Millerc7537962010-11-11 17:07:48 -08002759 rt_is_output_route(rth) &&
David S. Miller9d6ec932011-03-12 01:12:47 -05002760 rth->rt_oif == flp4->flowi4_oif &&
2761 rth->rt_mark == flp4->flowi4_mark &&
David S. Miller475949d2011-05-03 19:45:15 -07002762 !((rth->rt_key_tos ^ flp4->flowi4_tos) &
Denis V. Lunevb5921912008-01-22 23:50:25 -08002763 (IPTOS_RT_MASK | RTO_ONLINK)) &&
Changli Gaod8d1f302010-06-10 23:31:35 -07002764 net_eq(dev_net(rth->dst.dev), net) &&
Denis V. Luneve84f84f2008-07-05 19:04:32 -07002765 !rt_is_expired(rth)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002766 dst_use(&rth->dst, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 RT_CACHE_STAT_INC(out_hit);
2768 rcu_read_unlock_bh();
David S. Miller56157872011-05-02 14:37:45 -07002769 if (!flp4->saddr)
2770 flp4->saddr = rth->rt_src;
2771 if (!flp4->daddr)
2772 flp4->daddr = rth->rt_dst;
David S. Millerb23dd4f2011-03-02 14:31:35 -08002773 return rth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 }
2775 RT_CACHE_STAT_INC(out_hlist_search);
2776 }
2777 rcu_read_unlock_bh();
2778
Neil Horman1080d702008-10-27 12:28:25 -07002779slow_output:
David S. Miller9d6ec932011-03-12 01:12:47 -05002780 return ip_route_output_slow(net, flp4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781}
Arnaldo Carvalho de Melod8c97a92005-08-09 20:12:12 -07002782EXPORT_SYMBOL_GPL(__ip_route_output_key);
2783
Jianzhao Wangae2688d2010-09-08 14:35:43 -07002784static struct dst_entry *ipv4_blackhole_dst_check(struct dst_entry *dst, u32 cookie)
2785{
2786 return NULL;
2787}
2788
Roland Dreierec831ea2011-01-31 13:16:00 -08002789static unsigned int ipv4_blackhole_default_mtu(const struct dst_entry *dst)
2790{
2791 return 0;
2792}
2793
David S. Miller14e50e52007-05-24 18:17:54 -07002794static void ipv4_rt_blackhole_update_pmtu(struct dst_entry *dst, u32 mtu)
2795{
2796}
2797
Held Bernhard0972ddb2011-04-24 22:07:32 +00002798static u32 *ipv4_rt_blackhole_cow_metrics(struct dst_entry *dst,
2799 unsigned long old)
2800{
2801 return NULL;
2802}
2803
David S. Miller14e50e52007-05-24 18:17:54 -07002804static struct dst_ops ipv4_dst_blackhole_ops = {
2805 .family = AF_INET,
Harvey Harrison09640e62009-02-01 00:45:17 -08002806 .protocol = cpu_to_be16(ETH_P_IP),
David S. Miller14e50e52007-05-24 18:17:54 -07002807 .destroy = ipv4_dst_destroy,
Jianzhao Wangae2688d2010-09-08 14:35:43 -07002808 .check = ipv4_blackhole_dst_check,
Roland Dreierec831ea2011-01-31 13:16:00 -08002809 .default_mtu = ipv4_blackhole_default_mtu,
Eric Dumazet214f45c2011-02-18 11:39:01 -08002810 .default_advmss = ipv4_default_advmss,
David S. Miller14e50e52007-05-24 18:17:54 -07002811 .update_pmtu = ipv4_rt_blackhole_update_pmtu,
Held Bernhard0972ddb2011-04-24 22:07:32 +00002812 .cow_metrics = ipv4_rt_blackhole_cow_metrics,
David S. Miller14e50e52007-05-24 18:17:54 -07002813};
2814
David S. Miller2774c132011-03-01 14:59:04 -08002815struct dst_entry *ipv4_blackhole_route(struct net *net, struct dst_entry *dst_orig)
David S. Miller14e50e52007-05-24 18:17:54 -07002816{
David S. Miller5c1e6aa2011-04-28 14:13:38 -07002817 struct rtable *rt = dst_alloc(&ipv4_dst_blackhole_ops, NULL, 1, 0, 0);
David S. Miller2774c132011-03-01 14:59:04 -08002818 struct rtable *ort = (struct rtable *) dst_orig;
David S. Miller14e50e52007-05-24 18:17:54 -07002819
2820 if (rt) {
Changli Gaod8d1f302010-06-10 23:31:35 -07002821 struct dst_entry *new = &rt->dst;
David S. Miller14e50e52007-05-24 18:17:54 -07002822
David S. Miller14e50e52007-05-24 18:17:54 -07002823 new->__use = 1;
Herbert Xu352e5122007-11-13 21:34:06 -08002824 new->input = dst_discard;
2825 new->output = dst_discard;
David S. Millerdefb3512010-12-08 21:16:57 -08002826 dst_copy_metrics(new, &ort->dst);
David S. Miller14e50e52007-05-24 18:17:54 -07002827
Changli Gaod8d1f302010-06-10 23:31:35 -07002828 new->dev = ort->dst.dev;
David S. Miller14e50e52007-05-24 18:17:54 -07002829 if (new->dev)
2830 dev_hold(new->dev);
2831
David S. Miller5e2b61f2011-03-04 21:47:09 -08002832 rt->rt_key_dst = ort->rt_key_dst;
2833 rt->rt_key_src = ort->rt_key_src;
David S. Miller475949d2011-05-03 19:45:15 -07002834 rt->rt_key_tos = ort->rt_key_tos;
OGAWA Hirofumi1b86a582011-04-07 14:04:08 -07002835 rt->rt_route_iif = ort->rt_route_iif;
David S. Miller5e2b61f2011-03-04 21:47:09 -08002836 rt->rt_iif = ort->rt_iif;
2837 rt->rt_oif = ort->rt_oif;
2838 rt->rt_mark = ort->rt_mark;
David S. Miller14e50e52007-05-24 18:17:54 -07002839
Denis V. Luneve84f84f2008-07-05 19:04:32 -07002840 rt->rt_genid = rt_genid(net);
David S. Miller14e50e52007-05-24 18:17:54 -07002841 rt->rt_flags = ort->rt_flags;
2842 rt->rt_type = ort->rt_type;
2843 rt->rt_dst = ort->rt_dst;
2844 rt->rt_src = ort->rt_src;
David S. Miller14e50e52007-05-24 18:17:54 -07002845 rt->rt_gateway = ort->rt_gateway;
2846 rt->rt_spec_dst = ort->rt_spec_dst;
2847 rt->peer = ort->peer;
2848 if (rt->peer)
2849 atomic_inc(&rt->peer->refcnt);
David S. Miller62fa8a82011-01-26 20:51:05 -08002850 rt->fi = ort->fi;
2851 if (rt->fi)
2852 atomic_inc(&rt->fi->fib_clntref);
David S. Miller14e50e52007-05-24 18:17:54 -07002853
2854 dst_free(new);
2855 }
2856
David S. Miller2774c132011-03-01 14:59:04 -08002857 dst_release(dst_orig);
2858
2859 return rt ? &rt->dst : ERR_PTR(-ENOMEM);
David S. Miller14e50e52007-05-24 18:17:54 -07002860}
2861
David S. Miller9d6ec932011-03-12 01:12:47 -05002862struct rtable *ip_route_output_flow(struct net *net, struct flowi4 *flp4,
David S. Millerb23dd4f2011-03-02 14:31:35 -08002863 struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864{
David S. Miller9d6ec932011-03-12 01:12:47 -05002865 struct rtable *rt = __ip_route_output_key(net, flp4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866
David S. Millerb23dd4f2011-03-02 14:31:35 -08002867 if (IS_ERR(rt))
2868 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869
David S. Miller56157872011-05-02 14:37:45 -07002870 if (flp4->flowi4_proto)
David S. Miller9d6ec932011-03-12 01:12:47 -05002871 rt = (struct rtable *) xfrm_lookup(net, &rt->dst,
2872 flowi4_to_flowi(flp4),
2873 sk, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
David S. Millerb23dd4f2011-03-02 14:31:35 -08002875 return rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876}
Arnaldo Carvalho de Melod8c97a92005-08-09 20:12:12 -07002877EXPORT_SYMBOL_GPL(ip_route_output_flow);
2878
Benjamin Thery4feb88e2009-01-22 04:56:23 +00002879static int rt_fill_info(struct net *net,
2880 struct sk_buff *skb, u32 pid, u32 seq, int event,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07002881 int nowait, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882{
Eric Dumazet511c3f92009-06-02 05:14:27 +00002883 struct rtable *rt = skb_rtable(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 struct rtmsg *r;
Thomas Grafbe403ea2006-08-17 18:15:17 -07002885 struct nlmsghdr *nlh;
Eric Dumazetfe6fe792011-06-08 06:07:07 +00002886 long expires = 0;
2887 const struct inet_peer *peer = rt->peer;
Thomas Grafe3703b32006-11-27 09:27:07 -08002888 u32 id = 0, ts = 0, tsage = 0, error;
Thomas Grafbe403ea2006-08-17 18:15:17 -07002889
2890 nlh = nlmsg_put(skb, pid, seq, event, sizeof(*r), flags);
2891 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08002892 return -EMSGSIZE;
Thomas Grafbe403ea2006-08-17 18:15:17 -07002893
2894 r = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 r->rtm_family = AF_INET;
2896 r->rtm_dst_len = 32;
2897 r->rtm_src_len = 0;
David S. Miller475949d2011-05-03 19:45:15 -07002898 r->rtm_tos = rt->rt_key_tos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 r->rtm_table = RT_TABLE_MAIN;
Thomas Grafbe403ea2006-08-17 18:15:17 -07002900 NLA_PUT_U32(skb, RTA_TABLE, RT_TABLE_MAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 r->rtm_type = rt->rt_type;
2902 r->rtm_scope = RT_SCOPE_UNIVERSE;
2903 r->rtm_protocol = RTPROT_UNSPEC;
2904 r->rtm_flags = (rt->rt_flags & ~0xFFFF) | RTM_F_CLONED;
2905 if (rt->rt_flags & RTCF_NOTIFY)
2906 r->rtm_flags |= RTM_F_NOTIFY;
Thomas Grafbe403ea2006-08-17 18:15:17 -07002907
Al Viro17fb2c62006-09-26 22:15:25 -07002908 NLA_PUT_BE32(skb, RTA_DST, rt->rt_dst);
Thomas Grafbe403ea2006-08-17 18:15:17 -07002909
David S. Miller5e2b61f2011-03-04 21:47:09 -08002910 if (rt->rt_key_src) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 r->rtm_src_len = 32;
David S. Miller5e2b61f2011-03-04 21:47:09 -08002912 NLA_PUT_BE32(skb, RTA_SRC, rt->rt_key_src);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 }
Changli Gaod8d1f302010-06-10 23:31:35 -07002914 if (rt->dst.dev)
2915 NLA_PUT_U32(skb, RTA_OIF, rt->dst.dev->ifindex);
Patrick McHardyc7066f72011-01-14 13:36:42 +01002916#ifdef CONFIG_IP_ROUTE_CLASSID
Changli Gaod8d1f302010-06-10 23:31:35 -07002917 if (rt->dst.tclassid)
2918 NLA_PUT_U32(skb, RTA_FLOW, rt->dst.tclassid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919#endif
David S. Millerc7537962010-11-11 17:07:48 -08002920 if (rt_is_input_route(rt))
Al Viro17fb2c62006-09-26 22:15:25 -07002921 NLA_PUT_BE32(skb, RTA_PREFSRC, rt->rt_spec_dst);
David S. Miller5e2b61f2011-03-04 21:47:09 -08002922 else if (rt->rt_src != rt->rt_key_src)
Al Viro17fb2c62006-09-26 22:15:25 -07002923 NLA_PUT_BE32(skb, RTA_PREFSRC, rt->rt_src);
Thomas Grafbe403ea2006-08-17 18:15:17 -07002924
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 if (rt->rt_dst != rt->rt_gateway)
Al Viro17fb2c62006-09-26 22:15:25 -07002926 NLA_PUT_BE32(skb, RTA_GATEWAY, rt->rt_gateway);
Thomas Grafbe403ea2006-08-17 18:15:17 -07002927
David S. Millerdefb3512010-12-08 21:16:57 -08002928 if (rtnetlink_put_metrics(skb, dst_metrics_ptr(&rt->dst)) < 0)
Thomas Grafbe403ea2006-08-17 18:15:17 -07002929 goto nla_put_failure;
2930
David S. Miller5e2b61f2011-03-04 21:47:09 -08002931 if (rt->rt_mark)
2932 NLA_PUT_BE32(skb, RTA_MARK, rt->rt_mark);
Eric Dumazet963bfee2010-07-20 22:03:14 +00002933
Changli Gaod8d1f302010-06-10 23:31:35 -07002934 error = rt->dst.error;
Eric Dumazetfe6fe792011-06-08 06:07:07 +00002935 if (peer) {
Eric Dumazet317fe0e2010-06-16 04:52:13 +00002936 inet_peer_refcheck(rt->peer);
Eric Dumazetfe6fe792011-06-08 06:07:07 +00002937 id = atomic_read(&peer->ip_id_count) & 0xffff;
2938 if (peer->tcp_ts_stamp) {
2939 ts = peer->tcp_ts;
2940 tsage = get_seconds() - peer->tcp_ts_stamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 }
Eric Dumazetfe6fe792011-06-08 06:07:07 +00002942 expires = ACCESS_ONCE(peer->pmtu_expires);
2943 if (expires)
2944 expires -= jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 }
Thomas Grafbe403ea2006-08-17 18:15:17 -07002946
David S. Millerc7537962010-11-11 17:07:48 -08002947 if (rt_is_input_route(rt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948#ifdef CONFIG_IP_MROUTE
Al Viroe4485152006-09-26 22:15:01 -07002949 __be32 dst = rt->rt_dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950
Joe Perchesf97c1e02007-12-16 13:45:43 -08002951 if (ipv4_is_multicast(dst) && !ipv4_is_local_multicast(dst) &&
Benjamin Thery4feb88e2009-01-22 04:56:23 +00002952 IPV4_DEVCONF_ALL(net, MC_FORWARDING)) {
David S. Miller9a1b9492011-05-04 12:18:54 -07002953 int err = ipmr_get_route(net, skb,
2954 rt->rt_src, rt->rt_dst,
2955 r, nowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 if (err <= 0) {
2957 if (!nowait) {
2958 if (err == 0)
2959 return 0;
Thomas Grafbe403ea2006-08-17 18:15:17 -07002960 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 } else {
2962 if (err == -EMSGSIZE)
Thomas Grafbe403ea2006-08-17 18:15:17 -07002963 goto nla_put_failure;
Thomas Grafe3703b32006-11-27 09:27:07 -08002964 error = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 }
2966 }
2967 } else
2968#endif
David S. Miller5e2b61f2011-03-04 21:47:09 -08002969 NLA_PUT_U32(skb, RTA_IIF, rt->rt_iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 }
2971
Changli Gaod8d1f302010-06-10 23:31:35 -07002972 if (rtnl_put_cacheinfo(skb, &rt->dst, id, ts, tsage,
Thomas Grafe3703b32006-11-27 09:27:07 -08002973 expires, error) < 0)
2974 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
Thomas Grafbe403ea2006-08-17 18:15:17 -07002976 return nlmsg_end(skb, nlh);
2977
2978nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08002979 nlmsg_cancel(skb, nlh);
2980 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981}
2982
Thomas Graf63f34442007-03-22 11:55:17 -07002983static int inet_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr* nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002985 struct net *net = sock_net(in_skb->sk);
Thomas Grafd889ce32006-08-17 18:15:44 -07002986 struct rtmsg *rtm;
2987 struct nlattr *tb[RTA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 struct rtable *rt = NULL;
Al Viro9e12bb22006-09-26 21:25:20 -07002989 __be32 dst = 0;
2990 __be32 src = 0;
2991 u32 iif;
Thomas Grafd889ce32006-08-17 18:15:44 -07002992 int err;
Eric Dumazet963bfee2010-07-20 22:03:14 +00002993 int mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 struct sk_buff *skb;
2995
Thomas Grafd889ce32006-08-17 18:15:44 -07002996 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_ipv4_policy);
2997 if (err < 0)
2998 goto errout;
2999
3000 rtm = nlmsg_data(nlh);
3001
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
Thomas Grafd889ce32006-08-17 18:15:44 -07003003 if (skb == NULL) {
3004 err = -ENOBUFS;
3005 goto errout;
3006 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007
3008 /* Reserve room for dummy headers, this skb can pass
3009 through good chunk of routing engine.
3010 */
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07003011 skb_reset_mac_header(skb);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07003012 skb_reset_network_header(skb);
Stephen Hemmingerd2c962b2006-04-17 17:27:11 -07003013
3014 /* Bugfix: need to give ip_route_input enough of an IP header to not gag. */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07003015 ip_hdr(skb)->protocol = IPPROTO_ICMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 skb_reserve(skb, MAX_HEADER + sizeof(struct iphdr));
3017
Al Viro17fb2c62006-09-26 22:15:25 -07003018 src = tb[RTA_SRC] ? nla_get_be32(tb[RTA_SRC]) : 0;
3019 dst = tb[RTA_DST] ? nla_get_be32(tb[RTA_DST]) : 0;
Thomas Grafd889ce32006-08-17 18:15:44 -07003020 iif = tb[RTA_IIF] ? nla_get_u32(tb[RTA_IIF]) : 0;
Eric Dumazet963bfee2010-07-20 22:03:14 +00003021 mark = tb[RTA_MARK] ? nla_get_u32(tb[RTA_MARK]) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022
3023 if (iif) {
Thomas Grafd889ce32006-08-17 18:15:44 -07003024 struct net_device *dev;
3025
Denis V. Lunev19375042008-02-28 20:52:04 -08003026 dev = __dev_get_by_index(net, iif);
Thomas Grafd889ce32006-08-17 18:15:44 -07003027 if (dev == NULL) {
3028 err = -ENODEV;
3029 goto errout_free;
3030 }
3031
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 skb->protocol = htons(ETH_P_IP);
3033 skb->dev = dev;
Eric Dumazet963bfee2010-07-20 22:03:14 +00003034 skb->mark = mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 local_bh_disable();
3036 err = ip_route_input(skb, dst, src, rtm->rtm_tos, dev);
3037 local_bh_enable();
Thomas Grafd889ce32006-08-17 18:15:44 -07003038
Eric Dumazet511c3f92009-06-02 05:14:27 +00003039 rt = skb_rtable(skb);
Changli Gaod8d1f302010-06-10 23:31:35 -07003040 if (err == 0 && rt->dst.error)
3041 err = -rt->dst.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 } else {
David S. Miller68a5e3d2011-03-11 20:07:33 -05003043 struct flowi4 fl4 = {
3044 .daddr = dst,
3045 .saddr = src,
3046 .flowi4_tos = rtm->rtm_tos,
3047 .flowi4_oif = tb[RTA_OIF] ? nla_get_u32(tb[RTA_OIF]) : 0,
3048 .flowi4_mark = mark,
Thomas Grafd889ce32006-08-17 18:15:44 -07003049 };
David S. Miller9d6ec932011-03-12 01:12:47 -05003050 rt = ip_route_output_key(net, &fl4);
David S. Millerb23dd4f2011-03-02 14:31:35 -08003051
3052 err = 0;
3053 if (IS_ERR(rt))
3054 err = PTR_ERR(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 }
Thomas Grafd889ce32006-08-17 18:15:44 -07003056
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 if (err)
Thomas Grafd889ce32006-08-17 18:15:44 -07003058 goto errout_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059
Changli Gaod8d1f302010-06-10 23:31:35 -07003060 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 if (rtm->rtm_flags & RTM_F_NOTIFY)
3062 rt->rt_flags |= RTCF_NOTIFY;
3063
Benjamin Thery4feb88e2009-01-22 04:56:23 +00003064 err = rt_fill_info(net, skb, NETLINK_CB(in_skb).pid, nlh->nlmsg_seq,
Denis V. Lunev19375042008-02-28 20:52:04 -08003065 RTM_NEWROUTE, 0, 0);
Thomas Grafd889ce32006-08-17 18:15:44 -07003066 if (err <= 0)
3067 goto errout_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068
Denis V. Lunev19375042008-02-28 20:52:04 -08003069 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).pid);
Thomas Grafd889ce32006-08-17 18:15:44 -07003070errout:
Thomas Graf2942e902006-08-15 00:30:25 -07003071 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072
Thomas Grafd889ce32006-08-17 18:15:44 -07003073errout_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 kfree_skb(skb);
Thomas Grafd889ce32006-08-17 18:15:44 -07003075 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076}
3077
3078int ip_rt_dump(struct sk_buff *skb, struct netlink_callback *cb)
3079{
3080 struct rtable *rt;
3081 int h, s_h;
3082 int idx, s_idx;
Denis V. Lunev19375042008-02-28 20:52:04 -08003083 struct net *net;
3084
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003085 net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086
3087 s_h = cb->args[0];
Eric Dumazetd8c92832008-01-07 21:52:14 -08003088 if (s_h < 0)
3089 s_h = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 s_idx = idx = cb->args[1];
Eric Dumazeta6272662008-08-28 01:11:25 -07003091 for (h = s_h; h <= rt_hash_mask; h++, s_idx = 0) {
3092 if (!rt_hash_table[h].chain)
3093 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 rcu_read_lock_bh();
Paul E. McKenneya898def2010-02-22 17:04:49 -08003095 for (rt = rcu_dereference_bh(rt_hash_table[h].chain), idx = 0; rt;
Changli Gaod8d1f302010-06-10 23:31:35 -07003096 rt = rcu_dereference_bh(rt->dst.rt_next), idx++) {
3097 if (!net_eq(dev_net(rt->dst.dev), net) || idx < s_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 continue;
Denis V. Luneve84f84f2008-07-05 19:04:32 -07003099 if (rt_is_expired(rt))
Eric Dumazet29e75252008-01-31 17:05:09 -08003100 continue;
Changli Gaod8d1f302010-06-10 23:31:35 -07003101 skb_dst_set_noref(skb, &rt->dst);
Benjamin Thery4feb88e2009-01-22 04:56:23 +00003102 if (rt_fill_info(net, skb, NETLINK_CB(cb->skb).pid,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09003103 cb->nlh->nlmsg_seq, RTM_NEWROUTE,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -07003104 1, NLM_F_MULTI) <= 0) {
Eric Dumazetadf30902009-06-02 05:19:30 +00003105 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 rcu_read_unlock_bh();
3107 goto done;
3108 }
Eric Dumazetadf30902009-06-02 05:19:30 +00003109 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 }
3111 rcu_read_unlock_bh();
3112 }
3113
3114done:
3115 cb->args[0] = h;
3116 cb->args[1] = idx;
3117 return skb->len;
3118}
3119
3120void ip_rt_multicast_event(struct in_device *in_dev)
3121{
Denis V. Lunev76e6ebf2008-07-05 19:00:44 -07003122 rt_cache_flush(dev_net(in_dev->dev), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123}
3124
3125#ifdef CONFIG_SYSCTL
Denis V. Lunev81c684d2008-07-08 03:05:28 -07003126static int ipv4_sysctl_rtcache_flush(ctl_table *__ctl, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003127 void __user *buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 size_t *lenp, loff_t *ppos)
3129{
3130 if (write) {
Denis V. Lunev639e1042008-07-05 19:02:06 -07003131 int flush_delay;
Denis V. Lunev81c684d2008-07-08 03:05:28 -07003132 ctl_table ctl;
Denis V. Lunev39a23e72008-07-05 19:02:33 -07003133 struct net *net;
Denis V. Lunev639e1042008-07-05 19:02:06 -07003134
Denis V. Lunev81c684d2008-07-08 03:05:28 -07003135 memcpy(&ctl, __ctl, sizeof(ctl));
3136 ctl.data = &flush_delay;
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003137 proc_dointvec(&ctl, write, buffer, lenp, ppos);
Denis V. Lunev639e1042008-07-05 19:02:06 -07003138
Denis V. Lunev81c684d2008-07-08 03:05:28 -07003139 net = (struct net *)__ctl->extra1;
Denis V. Lunev39a23e72008-07-05 19:02:33 -07003140 rt_cache_flush(net, flush_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 return 0;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09003142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143
3144 return -EINVAL;
3145}
3146
Al Viroeeb61f72008-07-27 08:59:33 +01003147static ctl_table ipv4_route_table[] = {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09003148 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 .procname = "gc_thresh",
3150 .data = &ipv4_dst_ops.gc_thresh,
3151 .maxlen = sizeof(int),
3152 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003153 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 },
3155 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 .procname = "max_size",
3157 .data = &ip_rt_max_size,
3158 .maxlen = sizeof(int),
3159 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003160 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 },
3162 {
3163 /* Deprecated. Use gc_min_interval_ms */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09003164
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 .procname = "gc_min_interval",
3166 .data = &ip_rt_gc_min_interval,
3167 .maxlen = sizeof(int),
3168 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003169 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 },
3171 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 .procname = "gc_min_interval_ms",
3173 .data = &ip_rt_gc_min_interval,
3174 .maxlen = sizeof(int),
3175 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003176 .proc_handler = proc_dointvec_ms_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 },
3178 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179 .procname = "gc_timeout",
3180 .data = &ip_rt_gc_timeout,
3181 .maxlen = sizeof(int),
3182 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003183 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 },
3185 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 .procname = "gc_interval",
3187 .data = &ip_rt_gc_interval,
3188 .maxlen = sizeof(int),
3189 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003190 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 },
3192 {
Eric Dumazetad5dd5d2011-12-21 15:47:16 -05003193 .procname = "gc_interval",
3194 .data = &ip_rt_gc_interval,
3195 .maxlen = sizeof(int),
3196 .mode = 0644,
3197 .proc_handler = proc_dointvec_jiffies,
3198 },
3199 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 .procname = "redirect_load",
3201 .data = &ip_rt_redirect_load,
3202 .maxlen = sizeof(int),
3203 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003204 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 },
3206 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 .procname = "redirect_number",
3208 .data = &ip_rt_redirect_number,
3209 .maxlen = sizeof(int),
3210 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003211 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 },
3213 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 .procname = "redirect_silence",
3215 .data = &ip_rt_redirect_silence,
3216 .maxlen = sizeof(int),
3217 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003218 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 },
3220 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221 .procname = "error_cost",
3222 .data = &ip_rt_error_cost,
3223 .maxlen = sizeof(int),
3224 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003225 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 },
3227 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 .procname = "error_burst",
3229 .data = &ip_rt_error_burst,
3230 .maxlen = sizeof(int),
3231 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003232 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 },
3234 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 .procname = "gc_elasticity",
3236 .data = &ip_rt_gc_elasticity,
3237 .maxlen = sizeof(int),
3238 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003239 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 },
3241 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 .procname = "mtu_expires",
3243 .data = &ip_rt_mtu_expires,
3244 .maxlen = sizeof(int),
3245 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003246 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 },
3248 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 .procname = "min_pmtu",
3250 .data = &ip_rt_min_pmtu,
3251 .maxlen = sizeof(int),
3252 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003253 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 },
3255 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 .procname = "min_adv_mss",
3257 .data = &ip_rt_min_advmss,
3258 .maxlen = sizeof(int),
3259 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003260 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08003262 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263};
Denis V. Lunev39a23e72008-07-05 19:02:33 -07003264
Al Viro2f4520d2008-08-25 15:17:44 -07003265static struct ctl_table empty[1];
3266
3267static struct ctl_table ipv4_skeleton[] =
3268{
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08003269 { .procname = "route",
Hugh Dickinsd994af02008-08-27 02:35:18 -07003270 .mode = 0555, .child = ipv4_route_table},
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08003271 { .procname = "neigh",
Hugh Dickinsd994af02008-08-27 02:35:18 -07003272 .mode = 0555, .child = empty},
Al Viro2f4520d2008-08-25 15:17:44 -07003273 { }
Denis V. Lunev39a23e72008-07-05 19:02:33 -07003274};
3275
Al Viro2f4520d2008-08-25 15:17:44 -07003276static __net_initdata struct ctl_path ipv4_path[] = {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08003277 { .procname = "net", },
3278 { .procname = "ipv4", },
Al Viro2f4520d2008-08-25 15:17:44 -07003279 { },
3280};
Denis V. Lunev39a23e72008-07-05 19:02:33 -07003281
3282static struct ctl_table ipv4_route_flush_table[] = {
3283 {
Denis V. Lunev39a23e72008-07-05 19:02:33 -07003284 .procname = "flush",
3285 .maxlen = sizeof(int),
3286 .mode = 0200,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08003287 .proc_handler = ipv4_sysctl_rtcache_flush,
Denis V. Lunev39a23e72008-07-05 19:02:33 -07003288 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08003289 { },
Denis V. Lunev39a23e72008-07-05 19:02:33 -07003290};
3291
Al Viro2f4520d2008-08-25 15:17:44 -07003292static __net_initdata struct ctl_path ipv4_route_path[] = {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08003293 { .procname = "net", },
3294 { .procname = "ipv4", },
3295 { .procname = "route", },
Al Viro2f4520d2008-08-25 15:17:44 -07003296 { },
3297};
3298
Denis V. Lunev39a23e72008-07-05 19:02:33 -07003299static __net_init int sysctl_route_net_init(struct net *net)
3300{
3301 struct ctl_table *tbl;
3302
3303 tbl = ipv4_route_flush_table;
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08003304 if (!net_eq(net, &init_net)) {
Denis V. Lunev39a23e72008-07-05 19:02:33 -07003305 tbl = kmemdup(tbl, sizeof(ipv4_route_flush_table), GFP_KERNEL);
3306 if (tbl == NULL)
3307 goto err_dup;
3308 }
3309 tbl[0].extra1 = net;
3310
3311 net->ipv4.route_hdr =
3312 register_net_sysctl_table(net, ipv4_route_path, tbl);
3313 if (net->ipv4.route_hdr == NULL)
3314 goto err_reg;
3315 return 0;
3316
3317err_reg:
3318 if (tbl != ipv4_route_flush_table)
3319 kfree(tbl);
3320err_dup:
3321 return -ENOMEM;
3322}
3323
3324static __net_exit void sysctl_route_net_exit(struct net *net)
3325{
3326 struct ctl_table *tbl;
3327
3328 tbl = net->ipv4.route_hdr->ctl_table_arg;
3329 unregister_net_sysctl_table(net->ipv4.route_hdr);
3330 BUG_ON(tbl == ipv4_route_flush_table);
3331 kfree(tbl);
3332}
3333
3334static __net_initdata struct pernet_operations sysctl_route_ops = {
3335 .init = sysctl_route_net_init,
3336 .exit = sysctl_route_net_exit,
3337};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338#endif
3339
Neil Horman3ee94372010-05-08 01:57:52 -07003340static __net_init int rt_genid_init(struct net *net)
Denis V. Lunev9f5e97e2008-07-05 19:02:59 -07003341{
Neil Horman3ee94372010-05-08 01:57:52 -07003342 get_random_bytes(&net->ipv4.rt_genid,
3343 sizeof(net->ipv4.rt_genid));
David S. Miller436c3b62011-03-24 17:42:21 -07003344 get_random_bytes(&net->ipv4.dev_addr_genid,
3345 sizeof(net->ipv4.dev_addr_genid));
Denis V. Lunev9f5e97e2008-07-05 19:02:59 -07003346 return 0;
3347}
3348
Neil Horman3ee94372010-05-08 01:57:52 -07003349static __net_initdata struct pernet_operations rt_genid_ops = {
3350 .init = rt_genid_init,
Denis V. Lunev9f5e97e2008-07-05 19:02:59 -07003351};
3352
3353
Patrick McHardyc7066f72011-01-14 13:36:42 +01003354#ifdef CONFIG_IP_ROUTE_CLASSID
Tejun Heo7d720c32010-02-16 15:20:26 +00003355struct ip_rt_acct __percpu *ip_rt_acct __read_mostly;
Patrick McHardyc7066f72011-01-14 13:36:42 +01003356#endif /* CONFIG_IP_ROUTE_CLASSID */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357
3358static __initdata unsigned long rhash_entries;
3359static int __init set_rhash_entries(char *str)
3360{
3361 if (!str)
3362 return 0;
3363 rhash_entries = simple_strtoul(str, &str, 0);
3364 return 1;
3365}
3366__setup("rhash_entries=", set_rhash_entries);
3367
3368int __init ip_rt_init(void)
3369{
Eric Dumazet424c4b72005-07-05 14:58:19 -07003370 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371
Patrick McHardyc7066f72011-01-14 13:36:42 +01003372#ifdef CONFIG_IP_ROUTE_CLASSID
Ingo Molnar0dcec8c2009-02-25 14:07:33 +01003373 ip_rt_acct = __alloc_percpu(256 * sizeof(struct ip_rt_acct), __alignof__(struct ip_rt_acct));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 if (!ip_rt_acct)
3375 panic("IP: failed to allocate ip_rt_acct\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376#endif
3377
Alexey Dobriyane5d679f2006-08-26 19:25:52 -07003378 ipv4_dst_ops.kmem_cachep =
3379 kmem_cache_create("ip_dst_cache", sizeof(struct rtable), 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09003380 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381
David S. Miller14e50e52007-05-24 18:17:54 -07003382 ipv4_dst_blackhole_ops.kmem_cachep = ipv4_dst_ops.kmem_cachep;
3383
Eric Dumazetfc66f952010-10-08 06:37:34 +00003384 if (dst_entries_init(&ipv4_dst_ops) < 0)
3385 panic("IP: failed to allocate ipv4_dst_ops counter\n");
3386
3387 if (dst_entries_init(&ipv4_dst_blackhole_ops) < 0)
3388 panic("IP: failed to allocate ipv4_dst_blackhole_ops counter\n");
3389
Eric Dumazet424c4b72005-07-05 14:58:19 -07003390 rt_hash_table = (struct rt_hash_bucket *)
3391 alloc_large_system_hash("IP route cache",
3392 sizeof(struct rt_hash_bucket),
3393 rhash_entries,
Jan Beulich44813742009-09-21 17:03:05 -07003394 (totalram_pages >= 128 * 1024) ?
Mike Stroyan18955cf2005-11-29 16:12:55 -08003395 15 : 17,
Kirill Korotaev8d1502d2006-08-07 20:44:22 -07003396 0,
Eric Dumazet424c4b72005-07-05 14:58:19 -07003397 &rt_hash_log,
3398 &rt_hash_mask,
Anton Blanchardc9503e02009-04-27 05:42:24 -07003399 rhash_entries ? 0 : 512 * 1024);
Eric Dumazet22c047c2005-07-05 14:55:24 -07003400 memset(rt_hash_table, 0, (rt_hash_mask + 1) * sizeof(struct rt_hash_bucket));
3401 rt_hash_lock_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402
3403 ipv4_dst_ops.gc_thresh = (rt_hash_mask + 1);
3404 ip_rt_max_size = (rt_hash_mask + 1) * 16;
3405
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 devinet_init();
3407 ip_fib_init();
3408
Eric Dumazetad5dd5d2011-12-21 15:47:16 -05003409 INIT_DELAYED_WORK_DEFERRABLE(&expires_work, rt_worker_func);
3410 expires_ljiffies = jiffies;
3411 schedule_delayed_work(&expires_work,
3412 net_random() % ip_rt_gc_interval + ip_rt_gc_interval);
3413
Denis V. Lunev73b38712008-02-28 20:51:18 -08003414 if (ip_rt_proc_init())
Pavel Emelyanov107f1632007-12-05 21:14:28 -08003415 printk(KERN_ERR "Unable to create route proc files\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416#ifdef CONFIG_XFRM
3417 xfrm_init();
Neil Hormana33bc5c2009-07-30 18:52:15 -07003418 xfrm4_init(ip_rt_max_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419#endif
Thomas Graf63f34442007-03-22 11:55:17 -07003420 rtnl_register(PF_INET, RTM_GETROUTE, inet_rtm_getroute, NULL);
3421
Denis V. Lunev39a23e72008-07-05 19:02:33 -07003422#ifdef CONFIG_SYSCTL
3423 register_pernet_subsys(&sysctl_route_ops);
3424#endif
Neil Horman3ee94372010-05-08 01:57:52 -07003425 register_pernet_subsys(&rt_genid_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 return rc;
3427}
3428
Al Viroa1bc6eb2008-07-30 06:32:52 -04003429#ifdef CONFIG_SYSCTL
Al Viroeeb61f72008-07-27 08:59:33 +01003430/*
3431 * We really need to sanitize the damn ipv4 init order, then all
3432 * this nonsense will go away.
3433 */
3434void __init ip_static_sysctl_init(void)
3435{
Al Viro2f4520d2008-08-25 15:17:44 -07003436 register_sysctl_paths(ipv4_path, ipv4_skeleton);
Al Viroeeb61f72008-07-27 08:59:33 +01003437}
Al Viroa1bc6eb2008-07-30 06:32:52 -04003438#endif