aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/fib_trie.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv4/fib_trie.c')
-rw-r--r--net/ipv4/fib_trie.c35
1 files changed, 17 insertions, 18 deletions
diff --git a/net/ipv4/fib_trie.c b/net/ipv4/fib_trie.c
index 291bdf50a21f..c98f115fb0fd 100644
--- a/net/ipv4/fib_trie.c
+++ b/net/ipv4/fib_trie.c
@@ -71,6 +71,7 @@
71#include <linux/netlink.h> 71#include <linux/netlink.h>
72#include <linux/init.h> 72#include <linux/init.h>
73#include <linux/list.h> 73#include <linux/list.h>
74#include <linux/slab.h>
74#include <net/net_namespace.h> 75#include <net/net_namespace.h>
75#include <net/ip.h> 76#include <net/ip.h>
76#include <net/protocol.h> 77#include <net/protocol.h>
@@ -208,7 +209,9 @@ static inline struct node *tnode_get_child_rcu(struct tnode *tn, unsigned int i)
208{ 209{
209 struct node *ret = tnode_get_child(tn, i); 210 struct node *ret = tnode_get_child(tn, i);
210 211
211 return rcu_dereference(ret); 212 return rcu_dereference_check(ret,
213 rcu_read_lock_held() ||
214 lockdep_rtnl_is_held());
212} 215}
213 216
214static inline int tnode_child_length(const struct tnode *tn) 217static inline int tnode_child_length(const struct tnode *tn)
@@ -961,7 +964,9 @@ fib_find_node(struct trie *t, u32 key)
961 struct node *n; 964 struct node *n;
962 965
963 pos = 0; 966 pos = 0;
964 n = rcu_dereference(t->trie); 967 n = rcu_dereference_check(t->trie,
968 rcu_read_lock_held() ||
969 lockdep_rtnl_is_held());
965 970
966 while (n != NULL && NODE_TYPE(n) == T_TNODE) { 971 while (n != NULL && NODE_TYPE(n) == T_TNODE) {
967 tn = (struct tnode *) n; 972 tn = (struct tnode *) n;
@@ -1174,7 +1179,7 @@ done:
1174/* 1179/*
1175 * Caller must hold RTNL. 1180 * Caller must hold RTNL.
1176 */ 1181 */
1177static int fn_trie_insert(struct fib_table *tb, struct fib_config *cfg) 1182int fib_table_insert(struct fib_table *tb, struct fib_config *cfg)
1178{ 1183{
1179 struct trie *t = (struct trie *) tb->tb_data; 1184 struct trie *t = (struct trie *) tb->tb_data;
1180 struct fib_alias *fa, *new_fa; 1185 struct fib_alias *fa, *new_fa;
@@ -1373,8 +1378,8 @@ static int check_leaf(struct trie *t, struct leaf *l,
1373 return 1; 1378 return 1;
1374} 1379}
1375 1380
1376static int fn_trie_lookup(struct fib_table *tb, const struct flowi *flp, 1381int fib_table_lookup(struct fib_table *tb, const struct flowi *flp,
1377 struct fib_result *res) 1382 struct fib_result *res)
1378{ 1383{
1379 struct trie *t = (struct trie *) tb->tb_data; 1384 struct trie *t = (struct trie *) tb->tb_data;
1380 int ret; 1385 int ret;
@@ -1595,7 +1600,7 @@ static void trie_leaf_remove(struct trie *t, struct leaf *l)
1595/* 1600/*
1596 * Caller must hold RTNL. 1601 * Caller must hold RTNL.
1597 */ 1602 */
1598static int fn_trie_delete(struct fib_table *tb, struct fib_config *cfg) 1603int fib_table_delete(struct fib_table *tb, struct fib_config *cfg)
1599{ 1604{
1600 struct trie *t = (struct trie *) tb->tb_data; 1605 struct trie *t = (struct trie *) tb->tb_data;
1601 u32 key, mask; 1606 u32 key, mask;
@@ -1786,7 +1791,7 @@ static struct leaf *trie_leafindex(struct trie *t, int index)
1786/* 1791/*
1787 * Caller must hold RTNL. 1792 * Caller must hold RTNL.
1788 */ 1793 */
1789static int fn_trie_flush(struct fib_table *tb) 1794int fib_table_flush(struct fib_table *tb)
1790{ 1795{
1791 struct trie *t = (struct trie *) tb->tb_data; 1796 struct trie *t = (struct trie *) tb->tb_data;
1792 struct leaf *l, *ll = NULL; 1797 struct leaf *l, *ll = NULL;
@@ -1807,9 +1812,9 @@ static int fn_trie_flush(struct fib_table *tb)
1807 return found; 1812 return found;
1808} 1813}
1809 1814
1810static void fn_trie_select_default(struct fib_table *tb, 1815void fib_table_select_default(struct fib_table *tb,
1811 const struct flowi *flp, 1816 const struct flowi *flp,
1812 struct fib_result *res) 1817 struct fib_result *res)
1813{ 1818{
1814 struct trie *t = (struct trie *) tb->tb_data; 1819 struct trie *t = (struct trie *) tb->tb_data;
1815 int order, last_idx; 1820 int order, last_idx;
@@ -1952,8 +1957,8 @@ static int fn_trie_dump_leaf(struct leaf *l, struct fib_table *tb,
1952 return skb->len; 1957 return skb->len;
1953} 1958}
1954 1959
1955static int fn_trie_dump(struct fib_table *tb, struct sk_buff *skb, 1960int fib_table_dump(struct fib_table *tb, struct sk_buff *skb,
1956 struct netlink_callback *cb) 1961 struct netlink_callback *cb)
1957{ 1962{
1958 struct leaf *l; 1963 struct leaf *l;
1959 struct trie *t = (struct trie *) tb->tb_data; 1964 struct trie *t = (struct trie *) tb->tb_data;
@@ -2020,12 +2025,6 @@ struct fib_table *fib_hash_table(u32 id)
2020 2025
2021 tb->tb_id = id; 2026 tb->tb_id = id;
2022 tb->tb_default = -1; 2027 tb->tb_default = -1;
2023 tb->tb_lookup = fn_trie_lookup;
2024 tb->tb_insert = fn_trie_insert;
2025 tb->tb_delete = fn_trie_delete;
2026 tb->tb_flush = fn_trie_flush;
2027 tb->tb_select_default = fn_trie_select_default;
2028 tb->tb_dump = fn_trie_dump;
2029 2028
2030 t = (struct trie *) tb->tb_data; 2029 t = (struct trie *) tb->tb_data;
2031 memset(t, 0, sizeof(*t)); 2030 memset(t, 0, sizeof(*t));