mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 00:07:22 +07:00
Merge branch 'ila-Cleanup'
Tom Herbert says: ==================== ila: Cleanup Perform some cleanup in ILA code. This includes: - Fix rhashtable walk for cases where nl dumps are done with muliple function calls. Add a skip index to skip over entries in a node that have been previously visitied. Call rhashtable_walk_peek to avoid dropping items between calls to ila_nl_dump. - Call alloc_bucket_spinlocks to create bucket locks. - Split out module initialization and netlink definitions into separate files. - Add ILA_CMD_FLUSH netlink command to clear the ILA translation table. ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
commit
58c77bf1d4
@ -30,6 +30,7 @@ enum {
|
||||
ILA_CMD_ADD,
|
||||
ILA_CMD_DEL,
|
||||
ILA_CMD_GET,
|
||||
ILA_CMD_FLUSH,
|
||||
|
||||
__ILA_CMD_MAX,
|
||||
};
|
||||
|
@ -4,4 +4,4 @@
|
||||
|
||||
obj-$(CONFIG_IPV6_ILA) += ila.o
|
||||
|
||||
ila-objs := ila_common.o ila_lwt.o ila_xlat.o
|
||||
ila-objs := ila_main.o ila_common.o ila_lwt.o ila_xlat.o
|
||||
|
@ -19,6 +19,7 @@
|
||||
#include <linux/skbuff.h>
|
||||
#include <linux/types.h>
|
||||
#include <net/checksum.h>
|
||||
#include <net/genetlink.h>
|
||||
#include <net/ip.h>
|
||||
#include <net/protocol.h>
|
||||
#include <uapi/linux/ila.h>
|
||||
@ -104,9 +105,31 @@ void ila_update_ipv6_locator(struct sk_buff *skb, struct ila_params *p,
|
||||
|
||||
void ila_init_saved_csum(struct ila_params *p);
|
||||
|
||||
struct ila_net {
|
||||
struct {
|
||||
struct rhashtable rhash_table;
|
||||
spinlock_t *locks; /* Bucket locks for entry manipulation */
|
||||
unsigned int locks_mask;
|
||||
bool hooks_registered;
|
||||
} xlat;
|
||||
};
|
||||
|
||||
int ila_lwt_init(void);
|
||||
void ila_lwt_fini(void);
|
||||
int ila_xlat_init(void);
|
||||
void ila_xlat_fini(void);
|
||||
|
||||
int ila_xlat_init_net(struct net *net);
|
||||
void ila_xlat_exit_net(struct net *net);
|
||||
|
||||
int ila_xlat_nl_cmd_add_mapping(struct sk_buff *skb, struct genl_info *info);
|
||||
int ila_xlat_nl_cmd_del_mapping(struct sk_buff *skb, struct genl_info *info);
|
||||
int ila_xlat_nl_cmd_get_mapping(struct sk_buff *skb, struct genl_info *info);
|
||||
int ila_xlat_nl_cmd_flush(struct sk_buff *skb, struct genl_info *info);
|
||||
int ila_xlat_nl_dump_start(struct netlink_callback *cb);
|
||||
int ila_xlat_nl_dump_done(struct netlink_callback *cb);
|
||||
int ila_xlat_nl_dump(struct sk_buff *skb, struct netlink_callback *cb);
|
||||
|
||||
extern unsigned int ila_net_id;
|
||||
|
||||
extern struct genl_family ila_nl_family;
|
||||
|
||||
#endif /* __ILA_H */
|
||||
|
@ -154,33 +154,3 @@ void ila_update_ipv6_locator(struct sk_buff *skb, struct ila_params *p,
|
||||
iaddr->loc = p->locator;
|
||||
}
|
||||
|
||||
static int __init ila_init(void)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = ila_lwt_init();
|
||||
|
||||
if (ret)
|
||||
goto fail_lwt;
|
||||
|
||||
ret = ila_xlat_init();
|
||||
if (ret)
|
||||
goto fail_xlat;
|
||||
|
||||
return 0;
|
||||
fail_xlat:
|
||||
ila_lwt_fini();
|
||||
fail_lwt:
|
||||
return ret;
|
||||
}
|
||||
|
||||
static void __exit ila_fini(void)
|
||||
{
|
||||
ila_xlat_fini();
|
||||
ila_lwt_fini();
|
||||
}
|
||||
|
||||
module_init(ila_init);
|
||||
module_exit(ila_fini);
|
||||
MODULE_AUTHOR("Tom Herbert <tom@herbertland.com>");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
121
net/ipv6/ila/ila_main.c
Normal file
121
net/ipv6/ila/ila_main.c
Normal file
@ -0,0 +1,121 @@
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
#include <net/genetlink.h>
|
||||
#include <net/ila.h>
|
||||
#include <net/netns/generic.h>
|
||||
#include <uapi/linux/genetlink.h>
|
||||
#include "ila.h"
|
||||
|
||||
static const struct nla_policy ila_nl_policy[ILA_ATTR_MAX + 1] = {
|
||||
[ILA_ATTR_LOCATOR] = { .type = NLA_U64, },
|
||||
[ILA_ATTR_LOCATOR_MATCH] = { .type = NLA_U64, },
|
||||
[ILA_ATTR_IFINDEX] = { .type = NLA_U32, },
|
||||
[ILA_ATTR_CSUM_MODE] = { .type = NLA_U8, },
|
||||
[ILA_ATTR_IDENT_TYPE] = { .type = NLA_U8, },
|
||||
};
|
||||
|
||||
static const struct genl_ops ila_nl_ops[] = {
|
||||
{
|
||||
.cmd = ILA_CMD_ADD,
|
||||
.doit = ila_xlat_nl_cmd_add_mapping,
|
||||
.policy = ila_nl_policy,
|
||||
.flags = GENL_ADMIN_PERM,
|
||||
},
|
||||
{
|
||||
.cmd = ILA_CMD_DEL,
|
||||
.doit = ila_xlat_nl_cmd_del_mapping,
|
||||
.policy = ila_nl_policy,
|
||||
.flags = GENL_ADMIN_PERM,
|
||||
},
|
||||
{
|
||||
.cmd = ILA_CMD_FLUSH,
|
||||
.doit = ila_xlat_nl_cmd_flush,
|
||||
.policy = ila_nl_policy,
|
||||
.flags = GENL_ADMIN_PERM,
|
||||
},
|
||||
{
|
||||
.cmd = ILA_CMD_GET,
|
||||
.doit = ila_xlat_nl_cmd_get_mapping,
|
||||
.start = ila_xlat_nl_dump_start,
|
||||
.dumpit = ila_xlat_nl_dump,
|
||||
.done = ila_xlat_nl_dump_done,
|
||||
.policy = ila_nl_policy,
|
||||
},
|
||||
};
|
||||
|
||||
unsigned int ila_net_id;
|
||||
|
||||
struct genl_family ila_nl_family __ro_after_init = {
|
||||
.hdrsize = 0,
|
||||
.name = ILA_GENL_NAME,
|
||||
.version = ILA_GENL_VERSION,
|
||||
.maxattr = ILA_ATTR_MAX,
|
||||
.netnsok = true,
|
||||
.parallel_ops = true,
|
||||
.module = THIS_MODULE,
|
||||
.ops = ila_nl_ops,
|
||||
.n_ops = ARRAY_SIZE(ila_nl_ops),
|
||||
};
|
||||
|
||||
static __net_init int ila_init_net(struct net *net)
|
||||
{
|
||||
int err;
|
||||
|
||||
err = ila_xlat_init_net(net);
|
||||
if (err)
|
||||
goto ila_xlat_init_fail;
|
||||
|
||||
return 0;
|
||||
|
||||
ila_xlat_init_fail:
|
||||
return err;
|
||||
}
|
||||
|
||||
static __net_exit void ila_exit_net(struct net *net)
|
||||
{
|
||||
ila_xlat_exit_net(net);
|
||||
}
|
||||
|
||||
static struct pernet_operations ila_net_ops = {
|
||||
.init = ila_init_net,
|
||||
.exit = ila_exit_net,
|
||||
.id = &ila_net_id,
|
||||
.size = sizeof(struct ila_net),
|
||||
};
|
||||
|
||||
static int __init ila_init(void)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = register_pernet_device(&ila_net_ops);
|
||||
if (ret)
|
||||
goto register_device_fail;
|
||||
|
||||
ret = genl_register_family(&ila_nl_family);
|
||||
if (ret)
|
||||
goto register_family_fail;
|
||||
|
||||
ret = ila_lwt_init();
|
||||
if (ret)
|
||||
goto fail_lwt;
|
||||
|
||||
return 0;
|
||||
|
||||
fail_lwt:
|
||||
genl_unregister_family(&ila_nl_family);
|
||||
register_family_fail:
|
||||
unregister_pernet_device(&ila_net_ops);
|
||||
register_device_fail:
|
||||
return ret;
|
||||
}
|
||||
|
||||
static void __exit ila_fini(void)
|
||||
{
|
||||
ila_lwt_fini();
|
||||
genl_unregister_family(&ila_nl_family);
|
||||
unregister_pernet_device(&ila_net_ops);
|
||||
}
|
||||
|
||||
module_init(ila_init);
|
||||
module_exit(ila_fini);
|
||||
MODULE_AUTHOR("Tom Herbert <tom@herbertland.com>");
|
||||
MODULE_LICENSE("GPL");
|
@ -22,36 +22,14 @@ struct ila_map {
|
||||
struct rcu_head rcu;
|
||||
};
|
||||
|
||||
static unsigned int ila_net_id;
|
||||
|
||||
struct ila_net {
|
||||
struct rhashtable rhash_table;
|
||||
spinlock_t *locks; /* Bucket locks for entry manipulation */
|
||||
unsigned int locks_mask;
|
||||
bool hooks_registered;
|
||||
};
|
||||
|
||||
#define MAX_LOCKS 1024
|
||||
#define LOCKS_PER_CPU 10
|
||||
|
||||
static int alloc_ila_locks(struct ila_net *ilan)
|
||||
{
|
||||
unsigned int i, size;
|
||||
unsigned int nr_pcpus = num_possible_cpus();
|
||||
|
||||
nr_pcpus = min_t(unsigned int, nr_pcpus, 32UL);
|
||||
size = roundup_pow_of_two(nr_pcpus * LOCKS_PER_CPU);
|
||||
|
||||
if (sizeof(spinlock_t) != 0) {
|
||||
ilan->locks = kvmalloc_array(size, sizeof(spinlock_t),
|
||||
GFP_KERNEL);
|
||||
if (!ilan->locks)
|
||||
return -ENOMEM;
|
||||
for (i = 0; i < size; i++)
|
||||
spin_lock_init(&ilan->locks[i]);
|
||||
}
|
||||
ilan->locks_mask = size - 1;
|
||||
|
||||
return 0;
|
||||
return alloc_bucket_spinlocks(&ilan->xlat.locks, &ilan->xlat.locks_mask,
|
||||
MAX_LOCKS, LOCKS_PER_CPU,
|
||||
GFP_KERNEL);
|
||||
}
|
||||
|
||||
static u32 hashrnd __read_mostly;
|
||||
@ -71,7 +49,7 @@ static inline u32 ila_locator_hash(struct ila_locator loc)
|
||||
static inline spinlock_t *ila_get_lock(struct ila_net *ilan,
|
||||
struct ila_locator loc)
|
||||
{
|
||||
return &ilan->locks[ila_locator_hash(loc) & ilan->locks_mask];
|
||||
return &ilan->xlat.locks[ila_locator_hash(loc) & ilan->xlat.locks_mask];
|
||||
}
|
||||
|
||||
static inline int ila_cmp_wildcards(struct ila_map *ila,
|
||||
@ -115,16 +93,6 @@ static const struct rhashtable_params rht_params = {
|
||||
.obj_cmpfn = ila_cmpfn,
|
||||
};
|
||||
|
||||
static struct genl_family ila_nl_family;
|
||||
|
||||
static const struct nla_policy ila_nl_policy[ILA_ATTR_MAX + 1] = {
|
||||
[ILA_ATTR_LOCATOR] = { .type = NLA_U64, },
|
||||
[ILA_ATTR_LOCATOR_MATCH] = { .type = NLA_U64, },
|
||||
[ILA_ATTR_IFINDEX] = { .type = NLA_U32, },
|
||||
[ILA_ATTR_CSUM_MODE] = { .type = NLA_U8, },
|
||||
[ILA_ATTR_IDENT_TYPE] = { .type = NLA_U8, },
|
||||
};
|
||||
|
||||
static int parse_nl_config(struct genl_info *info,
|
||||
struct ila_xlat_params *xp)
|
||||
{
|
||||
@ -162,7 +130,7 @@ static inline struct ila_map *ila_lookup_wildcards(struct ila_addr *iaddr,
|
||||
{
|
||||
struct ila_map *ila;
|
||||
|
||||
ila = rhashtable_lookup_fast(&ilan->rhash_table, &iaddr->loc,
|
||||
ila = rhashtable_lookup_fast(&ilan->xlat.rhash_table, &iaddr->loc,
|
||||
rht_params);
|
||||
while (ila) {
|
||||
if (!ila_cmp_wildcards(ila, iaddr, ifindex))
|
||||
@ -179,7 +147,7 @@ static inline struct ila_map *ila_lookup_by_params(struct ila_xlat_params *xp,
|
||||
{
|
||||
struct ila_map *ila;
|
||||
|
||||
ila = rhashtable_lookup_fast(&ilan->rhash_table,
|
||||
ila = rhashtable_lookup_fast(&ilan->xlat.rhash_table,
|
||||
&xp->ip.locator_match,
|
||||
rht_params);
|
||||
while (ila) {
|
||||
@ -196,9 +164,9 @@ static inline void ila_release(struct ila_map *ila)
|
||||
kfree_rcu(ila, rcu);
|
||||
}
|
||||
|
||||
static void ila_free_cb(void *ptr, void *arg)
|
||||
static void ila_free_node(struct ila_map *ila)
|
||||
{
|
||||
struct ila_map *ila = (struct ila_map *)ptr, *next;
|
||||
struct ila_map *next;
|
||||
|
||||
/* Assume rcu_readlock held */
|
||||
while (ila) {
|
||||
@ -208,6 +176,11 @@ static void ila_free_cb(void *ptr, void *arg)
|
||||
}
|
||||
}
|
||||
|
||||
static void ila_free_cb(void *ptr, void *arg)
|
||||
{
|
||||
ila_free_node((struct ila_map *)ptr);
|
||||
}
|
||||
|
||||
static int ila_xlat_addr(struct sk_buff *skb, bool sir2ila);
|
||||
|
||||
static unsigned int
|
||||
@ -235,7 +208,7 @@ static int ila_add_mapping(struct net *net, struct ila_xlat_params *xp)
|
||||
spinlock_t *lock = ila_get_lock(ilan, xp->ip.locator_match);
|
||||
int err = 0, order;
|
||||
|
||||
if (!ilan->hooks_registered) {
|
||||
if (!ilan->xlat.hooks_registered) {
|
||||
/* We defer registering net hooks in the namespace until the
|
||||
* first mapping is added.
|
||||
*/
|
||||
@ -244,7 +217,7 @@ static int ila_add_mapping(struct net *net, struct ila_xlat_params *xp)
|
||||
if (err)
|
||||
return err;
|
||||
|
||||
ilan->hooks_registered = true;
|
||||
ilan->xlat.hooks_registered = true;
|
||||
}
|
||||
|
||||
ila = kzalloc(sizeof(*ila), GFP_KERNEL);
|
||||
@ -259,12 +232,12 @@ static int ila_add_mapping(struct net *net, struct ila_xlat_params *xp)
|
||||
|
||||
spin_lock(lock);
|
||||
|
||||
head = rhashtable_lookup_fast(&ilan->rhash_table,
|
||||
head = rhashtable_lookup_fast(&ilan->xlat.rhash_table,
|
||||
&xp->ip.locator_match,
|
||||
rht_params);
|
||||
if (!head) {
|
||||
/* New entry for the rhash_table */
|
||||
err = rhashtable_lookup_insert_fast(&ilan->rhash_table,
|
||||
err = rhashtable_lookup_insert_fast(&ilan->xlat.rhash_table,
|
||||
&ila->node, rht_params);
|
||||
} else {
|
||||
struct ila_map *tila = head, *prev = NULL;
|
||||
@ -290,7 +263,7 @@ static int ila_add_mapping(struct net *net, struct ila_xlat_params *xp)
|
||||
} else {
|
||||
/* Make this ila new head */
|
||||
RCU_INIT_POINTER(ila->next, head);
|
||||
err = rhashtable_replace_fast(&ilan->rhash_table,
|
||||
err = rhashtable_replace_fast(&ilan->xlat.rhash_table,
|
||||
&head->node,
|
||||
&ila->node, rht_params);
|
||||
if (err)
|
||||
@ -316,7 +289,7 @@ static int ila_del_mapping(struct net *net, struct ila_xlat_params *xp)
|
||||
|
||||
spin_lock(lock);
|
||||
|
||||
head = rhashtable_lookup_fast(&ilan->rhash_table,
|
||||
head = rhashtable_lookup_fast(&ilan->xlat.rhash_table,
|
||||
&xp->ip.locator_match, rht_params);
|
||||
ila = head;
|
||||
|
||||
@ -346,15 +319,15 @@ static int ila_del_mapping(struct net *net, struct ila_xlat_params *xp)
|
||||
* table
|
||||
*/
|
||||
err = rhashtable_replace_fast(
|
||||
&ilan->rhash_table, &ila->node,
|
||||
&ilan->xlat.rhash_table, &ila->node,
|
||||
&head->node, rht_params);
|
||||
if (err)
|
||||
goto out;
|
||||
} else {
|
||||
/* Entry no longer used */
|
||||
err = rhashtable_remove_fast(&ilan->rhash_table,
|
||||
&ila->node,
|
||||
rht_params);
|
||||
err = rhashtable_remove_fast(
|
||||
&ilan->xlat.rhash_table,
|
||||
&ila->node, rht_params);
|
||||
}
|
||||
}
|
||||
|
||||
@ -369,7 +342,7 @@ static int ila_del_mapping(struct net *net, struct ila_xlat_params *xp)
|
||||
return err;
|
||||
}
|
||||
|
||||
static int ila_nl_cmd_add_mapping(struct sk_buff *skb, struct genl_info *info)
|
||||
int ila_xlat_nl_cmd_add_mapping(struct sk_buff *skb, struct genl_info *info)
|
||||
{
|
||||
struct net *net = genl_info_net(info);
|
||||
struct ila_xlat_params p;
|
||||
@ -382,7 +355,7 @@ static int ila_nl_cmd_add_mapping(struct sk_buff *skb, struct genl_info *info)
|
||||
return ila_add_mapping(net, &p);
|
||||
}
|
||||
|
||||
static int ila_nl_cmd_del_mapping(struct sk_buff *skb, struct genl_info *info)
|
||||
int ila_xlat_nl_cmd_del_mapping(struct sk_buff *skb, struct genl_info *info)
|
||||
{
|
||||
struct net *net = genl_info_net(info);
|
||||
struct ila_xlat_params xp;
|
||||
@ -397,6 +370,59 @@ static int ila_nl_cmd_del_mapping(struct sk_buff *skb, struct genl_info *info)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static inline spinlock_t *lock_from_ila_map(struct ila_net *ilan,
|
||||
struct ila_map *ila)
|
||||
{
|
||||
return ila_get_lock(ilan, ila->xp.ip.locator_match);
|
||||
}
|
||||
|
||||
int ila_xlat_nl_cmd_flush(struct sk_buff *skb, struct genl_info *info)
|
||||
{
|
||||
struct net *net = genl_info_net(info);
|
||||
struct ila_net *ilan = net_generic(net, ila_net_id);
|
||||
struct rhashtable_iter iter;
|
||||
struct ila_map *ila;
|
||||
spinlock_t *lock;
|
||||
int ret;
|
||||
|
||||
ret = rhashtable_walk_init(&ilan->xlat.rhash_table, &iter, GFP_KERNEL);
|
||||
if (ret)
|
||||
goto done;
|
||||
|
||||
rhashtable_walk_start(&iter);
|
||||
|
||||
for (;;) {
|
||||
ila = rhashtable_walk_next(&iter);
|
||||
|
||||
if (IS_ERR(ila)) {
|
||||
if (PTR_ERR(ila) == -EAGAIN)
|
||||
continue;
|
||||
ret = PTR_ERR(ila);
|
||||
goto done;
|
||||
} else if (!ila) {
|
||||
break;
|
||||
}
|
||||
|
||||
lock = lock_from_ila_map(ilan, ila);
|
||||
|
||||
spin_lock(lock);
|
||||
|
||||
ret = rhashtable_remove_fast(&ilan->xlat.rhash_table,
|
||||
&ila->node, rht_params);
|
||||
if (!ret)
|
||||
ila_free_node(ila);
|
||||
|
||||
spin_unlock(lock);
|
||||
|
||||
if (ret)
|
||||
break;
|
||||
}
|
||||
|
||||
done:
|
||||
rhashtable_walk_stop(&iter);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int ila_fill_info(struct ila_map *ila, struct sk_buff *msg)
|
||||
{
|
||||
if (nla_put_u64_64bit(msg, ILA_ATTR_LOCATOR,
|
||||
@ -434,7 +460,7 @@ static int ila_dump_info(struct ila_map *ila,
|
||||
return -EMSGSIZE;
|
||||
}
|
||||
|
||||
static int ila_nl_cmd_get_mapping(struct sk_buff *skb, struct genl_info *info)
|
||||
int ila_xlat_nl_cmd_get_mapping(struct sk_buff *skb, struct genl_info *info)
|
||||
{
|
||||
struct net *net = genl_info_net(info);
|
||||
struct ila_net *ilan = net_generic(net, ila_net_id);
|
||||
@ -475,27 +501,34 @@ static int ila_nl_cmd_get_mapping(struct sk_buff *skb, struct genl_info *info)
|
||||
|
||||
struct ila_dump_iter {
|
||||
struct rhashtable_iter rhiter;
|
||||
int skip;
|
||||
};
|
||||
|
||||
static int ila_nl_dump_start(struct netlink_callback *cb)
|
||||
int ila_xlat_nl_dump_start(struct netlink_callback *cb)
|
||||
{
|
||||
struct net *net = sock_net(cb->skb->sk);
|
||||
struct ila_net *ilan = net_generic(net, ila_net_id);
|
||||
struct ila_dump_iter *iter = (struct ila_dump_iter *)cb->args[0];
|
||||
struct ila_dump_iter *iter;
|
||||
int ret;
|
||||
|
||||
if (!iter) {
|
||||
iter = kmalloc(sizeof(*iter), GFP_KERNEL);
|
||||
if (!iter)
|
||||
return -ENOMEM;
|
||||
iter = kmalloc(sizeof(*iter), GFP_KERNEL);
|
||||
if (!iter)
|
||||
return -ENOMEM;
|
||||
|
||||
cb->args[0] = (long)iter;
|
||||
ret = rhashtable_walk_init(&ilan->xlat.rhash_table, &iter->rhiter,
|
||||
GFP_KERNEL);
|
||||
if (ret) {
|
||||
kfree(iter);
|
||||
return ret;
|
||||
}
|
||||
|
||||
return rhashtable_walk_init(&ilan->rhash_table, &iter->rhiter,
|
||||
GFP_KERNEL);
|
||||
iter->skip = 0;
|
||||
cb->args[0] = (long)iter;
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int ila_nl_dump_done(struct netlink_callback *cb)
|
||||
int ila_xlat_nl_dump_done(struct netlink_callback *cb)
|
||||
{
|
||||
struct ila_dump_iter *iter = (struct ila_dump_iter *)cb->args[0];
|
||||
|
||||
@ -506,24 +539,49 @@ static int ila_nl_dump_done(struct netlink_callback *cb)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int ila_nl_dump(struct sk_buff *skb, struct netlink_callback *cb)
|
||||
int ila_xlat_nl_dump(struct sk_buff *skb, struct netlink_callback *cb)
|
||||
{
|
||||
struct ila_dump_iter *iter = (struct ila_dump_iter *)cb->args[0];
|
||||
struct rhashtable_iter *rhiter = &iter->rhiter;
|
||||
int skip = iter->skip;
|
||||
struct ila_map *ila;
|
||||
int ret;
|
||||
|
||||
rhashtable_walk_start(rhiter);
|
||||
|
||||
for (;;) {
|
||||
ila = rhashtable_walk_next(rhiter);
|
||||
/* Get first entry */
|
||||
ila = rhashtable_walk_peek(rhiter);
|
||||
|
||||
if (ila && !IS_ERR(ila) && skip) {
|
||||
/* Skip over visited entries */
|
||||
|
||||
while (ila && skip) {
|
||||
/* Skip over any ila entries in this list that we
|
||||
* have already dumped.
|
||||
*/
|
||||
ila = rcu_access_pointer(ila->next);
|
||||
skip--;
|
||||
}
|
||||
}
|
||||
|
||||
skip = 0;
|
||||
|
||||
for (;;) {
|
||||
if (IS_ERR(ila)) {
|
||||
if (PTR_ERR(ila) == -EAGAIN)
|
||||
continue;
|
||||
ret = PTR_ERR(ila);
|
||||
goto done;
|
||||
if (ret == -EAGAIN) {
|
||||
/* Table has changed and iter has reset. Return
|
||||
* -EAGAIN to the application even if we have
|
||||
* written data to the skb. The application
|
||||
* needs to deal with this.
|
||||
*/
|
||||
|
||||
goto out_ret;
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
} else if (!ila) {
|
||||
ret = 0;
|
||||
break;
|
||||
}
|
||||
|
||||
@ -532,90 +590,54 @@ static int ila_nl_dump(struct sk_buff *skb, struct netlink_callback *cb)
|
||||
cb->nlh->nlmsg_seq, NLM_F_MULTI,
|
||||
skb, ILA_CMD_GET);
|
||||
if (ret)
|
||||
goto done;
|
||||
goto out;
|
||||
|
||||
skip++;
|
||||
ila = rcu_access_pointer(ila->next);
|
||||
}
|
||||
|
||||
skip = 0;
|
||||
ila = rhashtable_walk_next(rhiter);
|
||||
}
|
||||
|
||||
ret = skb->len;
|
||||
out:
|
||||
iter->skip = skip;
|
||||
ret = (skb->len ? : ret);
|
||||
|
||||
done:
|
||||
out_ret:
|
||||
rhashtable_walk_stop(rhiter);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static const struct genl_ops ila_nl_ops[] = {
|
||||
{
|
||||
.cmd = ILA_CMD_ADD,
|
||||
.doit = ila_nl_cmd_add_mapping,
|
||||
.policy = ila_nl_policy,
|
||||
.flags = GENL_ADMIN_PERM,
|
||||
},
|
||||
{
|
||||
.cmd = ILA_CMD_DEL,
|
||||
.doit = ila_nl_cmd_del_mapping,
|
||||
.policy = ila_nl_policy,
|
||||
.flags = GENL_ADMIN_PERM,
|
||||
},
|
||||
{
|
||||
.cmd = ILA_CMD_GET,
|
||||
.doit = ila_nl_cmd_get_mapping,
|
||||
.start = ila_nl_dump_start,
|
||||
.dumpit = ila_nl_dump,
|
||||
.done = ila_nl_dump_done,
|
||||
.policy = ila_nl_policy,
|
||||
},
|
||||
};
|
||||
|
||||
static struct genl_family ila_nl_family __ro_after_init = {
|
||||
.hdrsize = 0,
|
||||
.name = ILA_GENL_NAME,
|
||||
.version = ILA_GENL_VERSION,
|
||||
.maxattr = ILA_ATTR_MAX,
|
||||
.netnsok = true,
|
||||
.parallel_ops = true,
|
||||
.module = THIS_MODULE,
|
||||
.ops = ila_nl_ops,
|
||||
.n_ops = ARRAY_SIZE(ila_nl_ops),
|
||||
};
|
||||
|
||||
#define ILA_HASH_TABLE_SIZE 1024
|
||||
|
||||
static __net_init int ila_init_net(struct net *net)
|
||||
int ila_xlat_init_net(struct net *net)
|
||||
{
|
||||
int err;
|
||||
struct ila_net *ilan = net_generic(net, ila_net_id);
|
||||
int err;
|
||||
|
||||
err = alloc_ila_locks(ilan);
|
||||
if (err)
|
||||
return err;
|
||||
|
||||
rhashtable_init(&ilan->rhash_table, &rht_params);
|
||||
rhashtable_init(&ilan->xlat.rhash_table, &rht_params);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static __net_exit void ila_exit_net(struct net *net)
|
||||
void ila_xlat_exit_net(struct net *net)
|
||||
{
|
||||
struct ila_net *ilan = net_generic(net, ila_net_id);
|
||||
|
||||
rhashtable_free_and_destroy(&ilan->rhash_table, ila_free_cb, NULL);
|
||||
rhashtable_free_and_destroy(&ilan->xlat.rhash_table, ila_free_cb, NULL);
|
||||
|
||||
kvfree(ilan->locks);
|
||||
free_bucket_spinlocks(ilan->xlat.locks);
|
||||
|
||||
if (ilan->hooks_registered)
|
||||
if (ilan->xlat.hooks_registered)
|
||||
nf_unregister_net_hooks(net, ila_nf_hook_ops,
|
||||
ARRAY_SIZE(ila_nf_hook_ops));
|
||||
}
|
||||
|
||||
static struct pernet_operations ila_net_ops = {
|
||||
.init = ila_init_net,
|
||||
.exit = ila_exit_net,
|
||||
.id = &ila_net_id,
|
||||
.size = sizeof(struct ila_net),
|
||||
};
|
||||
|
||||
static int ila_xlat_addr(struct sk_buff *skb, bool sir2ila)
|
||||
{
|
||||
struct ila_map *ila;
|
||||
@ -642,28 +664,3 @@ static int ila_xlat_addr(struct sk_buff *skb, bool sir2ila)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int __init ila_xlat_init(void)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = register_pernet_device(&ila_net_ops);
|
||||
if (ret)
|
||||
goto exit;
|
||||
|
||||
ret = genl_register_family(&ila_nl_family);
|
||||
if (ret < 0)
|
||||
goto unregister;
|
||||
|
||||
return 0;
|
||||
|
||||
unregister:
|
||||
unregister_pernet_device(&ila_net_ops);
|
||||
exit:
|
||||
return ret;
|
||||
}
|
||||
|
||||
void ila_xlat_fini(void)
|
||||
{
|
||||
genl_unregister_family(&ila_nl_family);
|
||||
unregister_pernet_device(&ila_net_ops);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user