2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* INET An implementation of the TCP/IP protocol suite for the LINUX
|
|
|
|
* operating system. INET is implemented using the BSD Socket
|
|
|
|
* interface as the means of communication with the user level.
|
|
|
|
*
|
|
|
|
* Definitions for the Forwarding Information Base.
|
|
|
|
*
|
|
|
|
* Authors: A.N.Kuznetsov, <kuznet@ms2.inr.ac.ru>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version
|
|
|
|
* 2 of the License, or (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NET_IP_FIB_H
|
|
|
|
#define _NET_IP_FIB_H
|
|
|
|
|
|
|
|
#include <net/flow.h>
|
|
|
|
#include <linux/seq_file.h>
|
2012-07-17 19:19:00 +08:00
|
|
|
#include <linux/rcupdate.h>
|
2017-08-03 19:28:11 +08:00
|
|
|
#include <net/fib_notifier.h>
|
2006-08-04 18:39:22 +08:00
|
|
|
#include <net/fib_rules.h>
|
2012-06-11 15:01:52 +08:00
|
|
|
#include <net/inetpeer.h>
|
2012-07-31 13:45:30 +08:00
|
|
|
#include <linux/percpu.h>
|
2016-09-26 18:52:29 +08:00
|
|
|
#include <linux/notifier.h>
|
2017-07-04 14:35:02 +08:00
|
|
|
#include <linux/refcount.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2006-08-18 09:14:52 +08:00
|
|
|
struct fib_config {
|
|
|
|
u8 fc_dst_len;
|
|
|
|
u8 fc_tos;
|
|
|
|
u8 fc_protocol;
|
|
|
|
u8 fc_scope;
|
|
|
|
u8 fc_type;
|
2006-10-19 11:26:36 +08:00
|
|
|
/* 3 bytes unused */
|
2006-08-18 09:14:52 +08:00
|
|
|
u32 fc_table;
|
2006-09-27 13:15:46 +08:00
|
|
|
__be32 fc_dst;
|
|
|
|
__be32 fc_gw;
|
2006-08-18 09:14:52 +08:00
|
|
|
int fc_oif;
|
|
|
|
u32 fc_flags;
|
|
|
|
u32 fc_priority;
|
2006-09-27 13:15:46 +08:00
|
|
|
__be32 fc_prefsrc;
|
2006-08-18 09:14:52 +08:00
|
|
|
struct nlattr *fc_mx;
|
|
|
|
struct rtnexthop *fc_mp;
|
|
|
|
int fc_mx_len;
|
|
|
|
int fc_mp_len;
|
|
|
|
u32 fc_flow;
|
|
|
|
u32 fc_nlflags;
|
|
|
|
struct nl_info fc_nlinfo;
|
2015-07-21 16:43:47 +08:00
|
|
|
struct nlattr *fc_encap;
|
|
|
|
u16 fc_encap_type;
|
|
|
|
};
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
struct fib_info;
|
2012-07-18 03:20:47 +08:00
|
|
|
struct rtable;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-07-17 19:19:00 +08:00
|
|
|
struct fib_nh_exception {
|
|
|
|
struct fib_nh_exception __rcu *fnhe_next;
|
2013-05-28 04:46:33 +08:00
|
|
|
int fnhe_genid;
|
2012-07-17 19:19:00 +08:00
|
|
|
__be32 fnhe_daddr;
|
|
|
|
u32 fnhe_pmtu;
|
2018-03-14 17:21:14 +08:00
|
|
|
bool fnhe_mtu_locked;
|
2012-07-18 18:15:35 +08:00
|
|
|
__be32 fnhe_gw;
|
2012-07-17 19:19:00 +08:00
|
|
|
unsigned long fnhe_expires;
|
2013-06-27 15:27:05 +08:00
|
|
|
struct rtable __rcu *fnhe_rth_input;
|
|
|
|
struct rtable __rcu *fnhe_rth_output;
|
2012-07-17 19:19:00 +08:00
|
|
|
unsigned long fnhe_stamp;
|
2016-02-18 21:21:19 +08:00
|
|
|
struct rcu_head rcu;
|
2012-07-17 19:19:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct fnhe_hash_bucket {
|
|
|
|
struct fib_nh_exception __rcu *chain;
|
|
|
|
};
|
|
|
|
|
2014-09-04 23:21:31 +08:00
|
|
|
#define FNHE_HASH_SHIFT 11
|
|
|
|
#define FNHE_HASH_SIZE (1 << FNHE_HASH_SHIFT)
|
2012-07-17 19:19:00 +08:00
|
|
|
#define FNHE_RECLAIM_DEPTH 5
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
struct fib_nh {
|
|
|
|
struct net_device *nh_dev;
|
|
|
|
struct hlist_node nh_hash;
|
|
|
|
struct fib_info *nh_parent;
|
2012-04-15 13:58:06 +08:00
|
|
|
unsigned int nh_flags;
|
2005-04-17 06:20:36 +08:00
|
|
|
unsigned char nh_scope;
|
|
|
|
#ifdef CONFIG_IP_ROUTE_MULTIPATH
|
|
|
|
int nh_weight;
|
2015-09-30 16:12:21 +08:00
|
|
|
atomic_t nh_upper_bound;
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|
2011-01-14 20:36:42 +08:00
|
|
|
#ifdef CONFIG_IP_ROUTE_CLASSID
|
2005-04-17 06:20:36 +08:00
|
|
|
__u32 nh_tclassid;
|
|
|
|
#endif
|
|
|
|
int nh_oif;
|
2006-09-27 13:13:54 +08:00
|
|
|
__be32 nh_gw;
|
2011-03-08 12:54:48 +08:00
|
|
|
__be32 nh_saddr;
|
2011-03-25 08:42:21 +08:00
|
|
|
int nh_saddr_genid;
|
2012-07-31 13:45:30 +08:00
|
|
|
struct rtable __rcu * __percpu *nh_pcpu_rth_output;
|
2012-07-31 09:08:23 +08:00
|
|
|
struct rtable __rcu *nh_rth_input;
|
2014-09-04 13:21:56 +08:00
|
|
|
struct fnhe_hash_bucket __rcu *nh_exceptions;
|
2015-07-21 16:43:47 +08:00
|
|
|
struct lwtunnel_state *nh_lwtstate;
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This structure contains data shared by many of routes.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct fib_info {
|
|
|
|
struct hlist_node fib_hash;
|
|
|
|
struct hlist_node fib_lhash;
|
2008-02-01 10:49:32 +08:00
|
|
|
struct net *fib_net;
|
2005-04-17 06:20:36 +08:00
|
|
|
int fib_treeref;
|
2017-07-04 14:35:02 +08:00
|
|
|
refcount_t fib_clntref;
|
2012-04-15 13:58:06 +08:00
|
|
|
unsigned int fib_flags;
|
2011-03-25 09:06:47 +08:00
|
|
|
unsigned char fib_dead;
|
|
|
|
unsigned char fib_protocol;
|
|
|
|
unsigned char fib_scope;
|
2012-10-04 09:25:26 +08:00
|
|
|
unsigned char fib_type;
|
2006-09-27 13:14:15 +08:00
|
|
|
__be32 fib_prefsrc;
|
2016-09-05 06:20:20 +08:00
|
|
|
u32 fib_tb_id;
|
2005-04-17 06:20:36 +08:00
|
|
|
u32 fib_priority;
|
2017-05-26 05:27:35 +08:00
|
|
|
struct dst_metrics *fib_metrics;
|
|
|
|
#define fib_mtu fib_metrics->metrics[RTAX_MTU-1]
|
|
|
|
#define fib_window fib_metrics->metrics[RTAX_WINDOW-1]
|
|
|
|
#define fib_rtt fib_metrics->metrics[RTAX_RTT-1]
|
|
|
|
#define fib_advmss fib_metrics->metrics[RTAX_ADVMSS-1]
|
2005-04-17 06:20:36 +08:00
|
|
|
int fib_nhs;
|
2010-10-05 18:41:36 +08:00
|
|
|
struct rcu_head rcu;
|
2005-04-17 06:20:36 +08:00
|
|
|
struct fib_nh fib_nh[0];
|
|
|
|
#define fib_dev fib_nh[0].nh_dev
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef CONFIG_IP_MULTIPLE_TABLES
|
|
|
|
struct fib_rule;
|
|
|
|
#endif
|
|
|
|
|
2011-02-01 08:10:03 +08:00
|
|
|
struct fib_table;
|
2005-04-17 06:20:36 +08:00
|
|
|
struct fib_result {
|
2017-05-26 01:42:37 +08:00
|
|
|
__be32 prefix;
|
2005-04-17 06:20:36 +08:00
|
|
|
unsigned char prefixlen;
|
|
|
|
unsigned char nh_sel;
|
|
|
|
unsigned char type;
|
|
|
|
unsigned char scope;
|
2012-07-13 23:21:29 +08:00
|
|
|
u32 tclassid;
|
2005-04-17 06:20:36 +08:00
|
|
|
struct fib_info *fi;
|
2011-02-01 08:10:03 +08:00
|
|
|
struct fib_table *table;
|
2015-02-26 07:31:31 +08:00
|
|
|
struct hlist_head *fa_head;
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
2005-06-21 04:36:39 +08:00
|
|
|
struct fib_result_nl {
|
2006-09-27 13:19:36 +08:00
|
|
|
__be32 fl_addr; /* To be looked up*/
|
2006-11-10 07:21:41 +08:00
|
|
|
u32 fl_mark;
|
2005-06-21 04:36:39 +08:00
|
|
|
unsigned char fl_tos;
|
|
|
|
unsigned char fl_scope;
|
|
|
|
unsigned char tb_id_in;
|
|
|
|
|
|
|
|
unsigned char tb_id; /* Results */
|
|
|
|
unsigned char prefixlen;
|
|
|
|
unsigned char nh_sel;
|
|
|
|
unsigned char type;
|
|
|
|
unsigned char scope;
|
2018-02-28 07:48:21 +08:00
|
|
|
int err;
|
2005-06-21 04:36:39 +08:00
|
|
|
};
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_IP_ROUTE_MULTIPATH
|
|
|
|
#define FIB_RES_NH(res) ((res).fi->fib_nh[(res).nh_sel])
|
|
|
|
#else /* CONFIG_IP_ROUTE_MULTIPATH */
|
|
|
|
#define FIB_RES_NH(res) ((res).fi->fib_nh[0])
|
2013-03-13 08:24:15 +08:00
|
|
|
#endif /* CONFIG_IP_ROUTE_MULTIPATH */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2013-03-13 08:24:15 +08:00
|
|
|
#ifdef CONFIG_IP_MULTIPLE_TABLES
|
2008-01-10 19:23:38 +08:00
|
|
|
#define FIB_TABLE_HASHSZ 256
|
2013-03-13 08:24:15 +08:00
|
|
|
#else
|
|
|
|
#define FIB_TABLE_HASHSZ 2
|
|
|
|
#endif
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2013-09-22 01:22:42 +08:00
|
|
|
__be32 fib_info_update_nh_saddr(struct net *net, struct fib_nh *nh);
|
2011-03-25 08:42:21 +08:00
|
|
|
|
|
|
|
#define FIB_RES_SADDR(net, res) \
|
|
|
|
((FIB_RES_NH(res).nh_saddr_genid == \
|
|
|
|
atomic_read(&(net)->ipv4.dev_addr_genid)) ? \
|
|
|
|
FIB_RES_NH(res).nh_saddr : \
|
|
|
|
fib_info_update_nh_saddr((net), &FIB_RES_NH(res)))
|
2005-04-17 06:20:36 +08:00
|
|
|
#define FIB_RES_GW(res) (FIB_RES_NH(res).nh_gw)
|
|
|
|
#define FIB_RES_DEV(res) (FIB_RES_NH(res).nh_dev)
|
|
|
|
#define FIB_RES_OIF(res) (FIB_RES_NH(res).nh_oif)
|
|
|
|
|
2011-03-25 08:42:21 +08:00
|
|
|
#define FIB_RES_PREFSRC(net, res) ((res).fi->fib_prefsrc ? : \
|
|
|
|
FIB_RES_SADDR(net, res))
|
2011-03-08 12:54:48 +08:00
|
|
|
|
2016-09-26 18:52:29 +08:00
|
|
|
struct fib_entry_notifier_info {
|
|
|
|
struct fib_notifier_info info; /* must be first */
|
|
|
|
u32 dst;
|
|
|
|
int dst_len;
|
|
|
|
struct fib_info *fi;
|
|
|
|
u8 tos;
|
|
|
|
u8 type;
|
|
|
|
u32 tb_id;
|
|
|
|
};
|
|
|
|
|
2017-02-08 18:16:39 +08:00
|
|
|
struct fib_nh_notifier_info {
|
|
|
|
struct fib_notifier_info info; /* must be first */
|
|
|
|
struct fib_nh *fib_nh;
|
|
|
|
};
|
|
|
|
|
2017-08-03 19:28:11 +08:00
|
|
|
int call_fib4_notifier(struct notifier_block *nb, struct net *net,
|
|
|
|
enum fib_event_type event_type,
|
2016-09-26 18:52:29 +08:00
|
|
|
struct fib_notifier_info *info);
|
2017-08-03 19:28:11 +08:00
|
|
|
int call_fib4_notifiers(struct net *net, enum fib_event_type event_type,
|
|
|
|
struct fib_notifier_info *info);
|
|
|
|
|
|
|
|
int __net_init fib4_notifier_init(struct net *net);
|
|
|
|
void __net_exit fib4_notifier_exit(struct net *net);
|
2016-09-26 18:52:29 +08:00
|
|
|
|
2017-03-10 15:56:19 +08:00
|
|
|
void fib_notify(struct net *net, struct notifier_block *nb);
|
2017-03-10 15:56:18 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
struct fib_table {
|
2012-06-11 15:01:52 +08:00
|
|
|
struct hlist_node tb_hlist;
|
|
|
|
u32 tb_id;
|
|
|
|
int tb_num_default;
|
2015-03-05 07:02:44 +08:00
|
|
|
struct rcu_head rcu;
|
2015-03-07 05:47:00 +08:00
|
|
|
unsigned long *tb_data;
|
|
|
|
unsigned long __data[0];
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
2018-10-16 09:56:42 +08:00
|
|
|
struct fib_dump_filter {
|
|
|
|
u32 table_id;
|
|
|
|
/* filter_set is an optimization that an entry is set */
|
|
|
|
bool filter_set;
|
2018-10-25 03:59:01 +08:00
|
|
|
bool dump_all_families;
|
2018-10-16 09:56:42 +08:00
|
|
|
unsigned char protocol;
|
|
|
|
unsigned char rt_type;
|
|
|
|
unsigned int flags;
|
|
|
|
struct net_device *dev;
|
|
|
|
};
|
|
|
|
|
2013-09-22 01:22:42 +08:00
|
|
|
int fib_table_lookup(struct fib_table *tb, const struct flowi4 *flp,
|
|
|
|
struct fib_result *res, int fib_flags);
|
2017-05-22 00:12:02 +08:00
|
|
|
int fib_table_insert(struct net *, struct fib_table *, struct fib_config *,
|
|
|
|
struct netlink_ext_ack *extack);
|
2017-05-28 06:19:26 +08:00
|
|
|
int fib_table_delete(struct net *, struct fib_table *, struct fib_config *,
|
|
|
|
struct netlink_ext_ack *extack);
|
2013-09-22 01:22:42 +08:00
|
|
|
int fib_table_dump(struct fib_table *table, struct sk_buff *skb,
|
2018-10-16 09:56:43 +08:00
|
|
|
struct netlink_callback *cb, struct fib_dump_filter *filter);
|
2019-01-09 17:57:39 +08:00
|
|
|
int fib_table_flush(struct net *net, struct fib_table *table, bool flush_all);
|
2015-03-07 05:47:00 +08:00
|
|
|
struct fib_table *fib_trie_unmerge(struct fib_table *main_tb);
|
2016-11-15 18:46:06 +08:00
|
|
|
void fib_table_flush_external(struct fib_table *table);
|
2013-09-22 01:22:42 +08:00
|
|
|
void fib_free_table(struct fib_table *tb);
|
2010-10-28 10:00:43 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#ifndef CONFIG_IP_MULTIPLE_TABLES
|
|
|
|
|
2014-12-03 02:58:21 +08:00
|
|
|
#define TABLE_LOCAL_INDEX (RT_TABLE_LOCAL & (FIB_TABLE_HASHSZ - 1))
|
|
|
|
#define TABLE_MAIN_INDEX (RT_TABLE_MAIN & (FIB_TABLE_HASHSZ - 1))
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-01-10 19:24:11 +08:00
|
|
|
static inline struct fib_table *fib_get_table(struct net *net, u32 id)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2015-03-05 07:02:44 +08:00
|
|
|
struct hlist_node *tb_hlist;
|
2008-01-10 19:23:38 +08:00
|
|
|
struct hlist_head *ptr;
|
|
|
|
|
|
|
|
ptr = id == RT_TABLE_LOCAL ?
|
2008-01-10 19:28:24 +08:00
|
|
|
&net->ipv4.fib_table_hash[TABLE_LOCAL_INDEX] :
|
|
|
|
&net->ipv4.fib_table_hash[TABLE_MAIN_INDEX];
|
2015-03-05 07:02:44 +08:00
|
|
|
|
|
|
|
tb_hlist = rcu_dereference_rtnl(hlist_first_rcu(ptr));
|
|
|
|
|
|
|
|
return hlist_entry(tb_hlist, struct fib_table, tb_hlist);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2008-01-10 19:24:11 +08:00
|
|
|
static inline struct fib_table *fib_new_table(struct net *net, u32 id)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2008-01-10 19:24:11 +08:00
|
|
|
return fib_get_table(net, id);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2011-03-12 08:54:08 +08:00
|
|
|
static inline int fib_lookup(struct net *net, const struct flowi4 *flp,
|
2015-06-24 01:45:37 +08:00
|
|
|
struct fib_result *res, unsigned int flags)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2015-03-05 07:02:44 +08:00
|
|
|
struct fib_table *tb;
|
2015-03-07 05:47:00 +08:00
|
|
|
int err = -ENETUNREACH;
|
2015-01-01 02:56:24 +08:00
|
|
|
|
|
|
|
rcu_read_lock();
|
|
|
|
|
2015-03-07 05:47:00 +08:00
|
|
|
tb = fib_get_table(net, RT_TABLE_MAIN);
|
2015-09-17 22:01:32 +08:00
|
|
|
if (tb)
|
|
|
|
err = fib_table_lookup(tb, flp, res, flags | FIB_LOOKUP_NOREF);
|
|
|
|
|
|
|
|
if (err == -EAGAIN)
|
|
|
|
err = -ENETUNREACH;
|
2008-01-10 19:23:38 +08:00
|
|
|
|
2015-01-01 02:56:24 +08:00
|
|
|
rcu_read_unlock();
|
2008-01-10 19:23:38 +08:00
|
|
|
|
2015-01-01 02:56:24 +08:00
|
|
|
return err;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
ipv4: fib_rules: Check if rule is a default rule
Currently, when non-default (custom) FIB rules are used, devices capable
of layer 3 offloading flush their tables and let the kernel do the
forwarding instead.
When these devices' drivers are loaded they register to the FIB
notification chain, which lets them know about the existence of any
custom FIB rules. This is done by sending a RULE_ADD notification based
on the value of 'net->ipv4.fib_has_custom_rules'.
This approach is problematic when VRF offload is taken into account, as
upon the creation of the first VRF netdev, a l3mdev rule is programmed
to direct skbs to the VRF's table.
Instead of merely reading the above value and sending a single RULE_ADD
notification, we should iterate over all the FIB rules and send a
detailed notification for each, thereby allowing offloading drivers to
sanitize the rules they don't support and potentially flush their
tables.
While l3mdev rules are uniquely marked, the default rules are not.
Therefore, when they are being notified they might invoke offloading
drivers to unnecessarily flush their tables.
Solve this by adding an helper to check if a FIB rule is a default rule.
Namely, its selector should match all packets and its action should
point to the local, main or default tables.
As noted by David Ahern, uniquely marking the default rules is
insufficient. When using VRFs, it's common to avoid false hits by moving
the rule for the local table to just before the main table:
Default configuration:
$ ip rule show
0: from all lookup local
32766: from all lookup main
32767: from all lookup default
Common configuration with VRFs:
$ ip rule show
1000: from all lookup [l3mdev-table]
32765: from all lookup local
32766: from all lookup main
32767: from all lookup default
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Acked-by: David Ahern <dsa@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-16 16:08:12 +08:00
|
|
|
static inline bool fib4_rule_default(const struct fib_rule *rule)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-08-03 19:28:14 +08:00
|
|
|
static inline int fib4_rules_dump(struct net *net, struct notifier_block *nb)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned int fib4_rules_seq_read(struct net *net)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-03-01 11:42:41 +08:00
|
|
|
static inline bool fib4_rules_early_flow_dissect(struct net *net,
|
|
|
|
struct sk_buff *skb,
|
|
|
|
struct flowi4 *fl4,
|
|
|
|
struct flow_keys *flkeys)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
#else /* CONFIG_IP_MULTIPLE_TABLES */
|
2013-09-22 01:22:42 +08:00
|
|
|
int __net_init fib4_rules_init(struct net *net);
|
|
|
|
void __net_exit fib4_rules_exit(struct net *net);
|
2007-11-07 15:34:04 +08:00
|
|
|
|
2013-09-22 01:22:42 +08:00
|
|
|
struct fib_table *fib_new_table(struct net *net, u32 id);
|
|
|
|
struct fib_table *fib_get_table(struct net *net, u32 id);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2015-06-24 01:45:37 +08:00
|
|
|
int __fib_lookup(struct net *net, struct flowi4 *flp,
|
|
|
|
struct fib_result *res, unsigned int flags);
|
2012-07-06 13:13:13 +08:00
|
|
|
|
|
|
|
static inline int fib_lookup(struct net *net, struct flowi4 *flp,
|
2015-06-24 01:45:37 +08:00
|
|
|
struct fib_result *res, unsigned int flags)
|
2012-07-06 13:13:13 +08:00
|
|
|
{
|
2015-03-05 07:02:44 +08:00
|
|
|
struct fib_table *tb;
|
2015-09-17 22:01:32 +08:00
|
|
|
int err = -ENETUNREACH;
|
2015-03-05 07:02:44 +08:00
|
|
|
|
2015-06-24 01:45:37 +08:00
|
|
|
flags |= FIB_LOOKUP_NOREF;
|
2015-03-05 07:02:44 +08:00
|
|
|
if (net->ipv4.fib_has_custom_rules)
|
2015-06-24 01:45:37 +08:00
|
|
|
return __fib_lookup(net, flp, res, flags);
|
2015-03-05 07:02:44 +08:00
|
|
|
|
|
|
|
rcu_read_lock();
|
|
|
|
|
|
|
|
res->tclassid = 0;
|
|
|
|
|
2015-09-17 22:01:32 +08:00
|
|
|
tb = rcu_dereference_rtnl(net->ipv4.fib_main);
|
|
|
|
if (tb)
|
|
|
|
err = fib_table_lookup(tb, flp, res, flags);
|
|
|
|
|
|
|
|
if (!err)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
tb = rcu_dereference_rtnl(net->ipv4.fib_default);
|
|
|
|
if (tb)
|
|
|
|
err = fib_table_lookup(tb, flp, res, flags);
|
2015-03-05 07:02:44 +08:00
|
|
|
|
2015-09-17 22:01:32 +08:00
|
|
|
out:
|
|
|
|
if (err == -EAGAIN)
|
|
|
|
err = -ENETUNREACH;
|
2015-03-05 07:02:44 +08:00
|
|
|
|
|
|
|
rcu_read_unlock();
|
|
|
|
|
|
|
|
return err;
|
2012-07-06 13:13:13 +08:00
|
|
|
}
|
|
|
|
|
ipv4: fib_rules: Check if rule is a default rule
Currently, when non-default (custom) FIB rules are used, devices capable
of layer 3 offloading flush their tables and let the kernel do the
forwarding instead.
When these devices' drivers are loaded they register to the FIB
notification chain, which lets them know about the existence of any
custom FIB rules. This is done by sending a RULE_ADD notification based
on the value of 'net->ipv4.fib_has_custom_rules'.
This approach is problematic when VRF offload is taken into account, as
upon the creation of the first VRF netdev, a l3mdev rule is programmed
to direct skbs to the VRF's table.
Instead of merely reading the above value and sending a single RULE_ADD
notification, we should iterate over all the FIB rules and send a
detailed notification for each, thereby allowing offloading drivers to
sanitize the rules they don't support and potentially flush their
tables.
While l3mdev rules are uniquely marked, the default rules are not.
Therefore, when they are being notified they might invoke offloading
drivers to unnecessarily flush their tables.
Solve this by adding an helper to check if a FIB rule is a default rule.
Namely, its selector should match all packets and its action should
point to the local, main or default tables.
As noted by David Ahern, uniquely marking the default rules is
insufficient. When using VRFs, it's common to avoid false hits by moving
the rule for the local table to just before the main table:
Default configuration:
$ ip rule show
0: from all lookup local
32766: from all lookup main
32767: from all lookup default
Common configuration with VRFs:
$ ip rule show
1000: from all lookup [l3mdev-table]
32765: from all lookup local
32766: from all lookup main
32767: from all lookup default
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Acked-by: David Ahern <dsa@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-16 16:08:12 +08:00
|
|
|
bool fib4_rule_default(const struct fib_rule *rule);
|
2017-08-03 19:28:14 +08:00
|
|
|
int fib4_rules_dump(struct net *net, struct notifier_block *nb);
|
|
|
|
unsigned int fib4_rules_seq_read(struct net *net);
|
ipv4: fib_rules: Check if rule is a default rule
Currently, when non-default (custom) FIB rules are used, devices capable
of layer 3 offloading flush their tables and let the kernel do the
forwarding instead.
When these devices' drivers are loaded they register to the FIB
notification chain, which lets them know about the existence of any
custom FIB rules. This is done by sending a RULE_ADD notification based
on the value of 'net->ipv4.fib_has_custom_rules'.
This approach is problematic when VRF offload is taken into account, as
upon the creation of the first VRF netdev, a l3mdev rule is programmed
to direct skbs to the VRF's table.
Instead of merely reading the above value and sending a single RULE_ADD
notification, we should iterate over all the FIB rules and send a
detailed notification for each, thereby allowing offloading drivers to
sanitize the rules they don't support and potentially flush their
tables.
While l3mdev rules are uniquely marked, the default rules are not.
Therefore, when they are being notified they might invoke offloading
drivers to unnecessarily flush their tables.
Solve this by adding an helper to check if a FIB rule is a default rule.
Namely, its selector should match all packets and its action should
point to the local, main or default tables.
As noted by David Ahern, uniquely marking the default rules is
insufficient. When using VRFs, it's common to avoid false hits by moving
the rule for the local table to just before the main table:
Default configuration:
$ ip rule show
0: from all lookup local
32766: from all lookup main
32767: from all lookup default
Common configuration with VRFs:
$ ip rule show
1000: from all lookup [l3mdev-table]
32765: from all lookup local
32766: from all lookup main
32767: from all lookup default
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Acked-by: David Ahern <dsa@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-03-16 16:08:12 +08:00
|
|
|
|
2018-03-01 11:42:41 +08:00
|
|
|
static inline bool fib4_rules_early_flow_dissect(struct net *net,
|
|
|
|
struct sk_buff *skb,
|
|
|
|
struct flowi4 *fl4,
|
|
|
|
struct flow_keys *flkeys)
|
|
|
|
{
|
|
|
|
unsigned int flag = FLOW_DISSECTOR_F_STOP_AT_ENCAP;
|
|
|
|
|
|
|
|
if (!net->ipv4.fib_rules_require_fldissect)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
skb_flow_dissect_flow_keys(skb, flkeys, flag);
|
|
|
|
fl4->fl4_sport = flkeys->ports.src;
|
|
|
|
fl4->fl4_dport = flkeys->ports.dst;
|
|
|
|
fl4->flowi4_proto = flkeys->basic.ip_proto;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif /* CONFIG_IP_MULTIPLE_TABLES */
|
|
|
|
|
|
|
|
/* Exported by fib_frontend.c */
|
2007-06-06 03:38:30 +08:00
|
|
|
extern const struct nla_policy rtm_ipv4_policy[];
|
2013-09-22 01:22:42 +08:00
|
|
|
void ip_fib_init(void);
|
|
|
|
__be32 fib_compute_spec_dst(struct sk_buff *skb);
|
2018-09-21 04:50:47 +08:00
|
|
|
bool fib_info_nh_uses_dev(struct fib_info *fi, const struct net_device *dev);
|
2013-09-22 01:22:42 +08:00
|
|
|
int fib_validate_source(struct sk_buff *skb, __be32 src, __be32 dst,
|
|
|
|
u8 tos, int oif, struct net_device *dev,
|
|
|
|
struct in_device *idev, u32 *itag);
|
2012-06-29 16:32:45 +08:00
|
|
|
#ifdef CONFIG_IP_ROUTE_CLASSID
|
2012-07-06 13:13:13 +08:00
|
|
|
static inline int fib_num_tclassid_users(struct net *net)
|
|
|
|
{
|
|
|
|
return net->ipv4.fib_num_tclassid_users;
|
|
|
|
}
|
2012-06-29 16:32:45 +08:00
|
|
|
#else
|
2012-07-06 13:13:13 +08:00
|
|
|
static inline int fib_num_tclassid_users(struct net *net)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2012-06-29 16:32:45 +08:00
|
|
|
#endif
|
2015-03-07 05:47:00 +08:00
|
|
|
int fib_unmerge(struct net *net);
|
2005-12-27 12:43:12 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* Exported by fib_semantics.c */
|
2013-09-22 01:22:42 +08:00
|
|
|
int ip_fib_check_default(__be32 gw, struct net_device *dev);
|
2015-10-30 16:23:33 +08:00
|
|
|
int fib_sync_down_dev(struct net_device *dev, unsigned long event, bool force);
|
2016-09-05 06:20:20 +08:00
|
|
|
int fib_sync_down_addr(struct net_device *dev, __be32 local);
|
2015-06-24 01:45:36 +08:00
|
|
|
int fib_sync_up(struct net_device *dev, unsigned int nh_flags);
|
net: ipv4: update fnhe_pmtu when first hop's MTU changes
Since commit 5aad1de5ea2c ("ipv4: use separate genid for next hop
exceptions"), exceptions get deprecated separately from cached
routes. In particular, administrative changes don't clear PMTU anymore.
As Stefano described in commit e9fa1495d738 ("ipv6: Reflect MTU changes
on PMTU of exceptions for MTU-less routes"), the PMTU discovered before
the local MTU change can become stale:
- if the local MTU is now lower than the PMTU, that PMTU is now
incorrect
- if the local MTU was the lowest value in the path, and is increased,
we might discover a higher PMTU
Similarly to what commit e9fa1495d738 did for IPv6, update PMTU in those
cases.
If the exception was locked, the discovered PMTU was smaller than the
minimal accepted PMTU. In that case, if the new local MTU is smaller
than the current PMTU, let PMTU discovery figure out if locking of the
exception is still needed.
To do this, we need to know the old link MTU in the NETDEV_CHANGEMTU
notifier. By the time the notifier is called, dev->mtu has been
changed. This patch adds the old MTU as additional information in the
notifier structure, and a new call_netdevice_notifiers_u32() function.
Fixes: 5aad1de5ea2c ("ipv4: use separate genid for next hop exceptions")
Signed-off-by: Sabrina Dubroca <sd@queasysnail.net>
Reviewed-by: Stefano Brivio <sbrivio@redhat.com>
Reviewed-by: David Ahern <dsahern@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-10-09 23:48:14 +08:00
|
|
|
void fib_sync_mtu(struct net_device *dev, u32 orig_mtu);
|
2015-09-30 16:12:21 +08:00
|
|
|
|
2017-03-16 21:28:00 +08:00
|
|
|
#ifdef CONFIG_IP_ROUTE_MULTIPATH
|
2018-03-03 00:32:12 +08:00
|
|
|
int fib_multipath_hash(const struct net *net, const struct flowi4 *fl4,
|
2018-03-01 11:42:41 +08:00
|
|
|
const struct sk_buff *skb, struct flow_keys *flkeys);
|
2017-03-16 21:28:00 +08:00
|
|
|
#endif
|
2015-09-30 16:12:21 +08:00
|
|
|
void fib_select_multipath(struct fib_result *res, int hash);
|
2015-10-05 23:51:25 +08:00
|
|
|
void fib_select_path(struct net *net, struct fib_result *res,
|
2017-03-16 21:28:00 +08:00
|
|
|
struct flowi4 *fl4, const struct sk_buff *skb);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2011-02-02 07:30:56 +08:00
|
|
|
/* Exported by fib_trie.c */
|
2013-09-22 01:22:42 +08:00
|
|
|
void fib_trie_init(void);
|
2015-03-07 05:47:00 +08:00
|
|
|
struct fib_table *fib_trie_table(u32 id, struct fib_table *alias);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2011-02-17 14:04:57 +08:00
|
|
|
static inline void fib_combine_itag(u32 *itag, const struct fib_result *res)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2011-01-14 20:36:42 +08:00
|
|
|
#ifdef CONFIG_IP_ROUTE_CLASSID
|
2005-04-17 06:20:36 +08:00
|
|
|
#ifdef CONFIG_IP_MULTIPLE_TABLES
|
|
|
|
u32 rtag;
|
|
|
|
#endif
|
|
|
|
*itag = FIB_RES_NH(*res).nh_tclassid<<16;
|
|
|
|
#ifdef CONFIG_IP_MULTIPLE_TABLES
|
2012-07-13 23:21:29 +08:00
|
|
|
rtag = res->tclassid;
|
2005-04-17 06:20:36 +08:00
|
|
|
if (*itag == 0)
|
|
|
|
*itag = (rtag<<16);
|
|
|
|
*itag |= (rtag>>16);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-09-22 01:22:42 +08:00
|
|
|
void free_fib_info(struct fib_info *fi);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2016-12-03 23:44:59 +08:00
|
|
|
static inline void fib_info_hold(struct fib_info *fi)
|
|
|
|
{
|
2017-07-04 14:35:02 +08:00
|
|
|
refcount_inc(&fi->fib_clntref);
|
2016-12-03 23:44:59 +08:00
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
static inline void fib_info_put(struct fib_info *fi)
|
|
|
|
{
|
2017-07-04 14:35:02 +08:00
|
|
|
if (refcount_dec_and_test(&fi->fib_clntref))
|
2005-04-17 06:20:36 +08:00
|
|
|
free_fib_info(fi);
|
|
|
|
}
|
|
|
|
|
2005-08-16 13:18:02 +08:00
|
|
|
#ifdef CONFIG_PROC_FS
|
2013-09-22 01:22:42 +08:00
|
|
|
int __net_init fib_proc_init(struct net *net);
|
|
|
|
void __net_exit fib_proc_exit(struct net *net);
|
2008-02-05 18:54:16 +08:00
|
|
|
#else
|
|
|
|
static inline int fib_proc_init(struct net *net)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static inline void fib_proc_exit(struct net *net)
|
|
|
|
{
|
|
|
|
}
|
2005-08-16 13:18:02 +08:00
|
|
|
#endif
|
|
|
|
|
2018-05-22 00:08:13 +08:00
|
|
|
u32 ip_mtu_from_fib_result(struct fib_result *res, __be32 daddr);
|
|
|
|
|
2018-10-16 09:56:42 +08:00
|
|
|
int ip_valid_fib_dump_req(struct net *net, const struct nlmsghdr *nlh,
|
|
|
|
struct fib_dump_filter *filter,
|
2018-10-16 09:56:48 +08:00
|
|
|
struct netlink_callback *cb);
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif /* _NET_FIB_H */
|