Skip to content

Commit

Permalink
openvswitch: load and reference the NAT helper.
Browse files Browse the repository at this point in the history
This improves the original commit 17c357e ("openvswitch: load
NAT helper") where it unconditionally tries to load the module for
every flow using NAT, so not efficient when loading multiple flows.
It also doesn't hold any references to the NAT module while the
flow is active.

This change fixes those problems. It will try to load the module
only if it's not present. It grabs a reference to the NAT module
and holds it while the flow is active. Finally, an error message
shows up if either actions above fails.

Fixes: 17c357e ("openvswitch: load NAT helper")
Signed-off-by: Flavio Leitner <fbl@redhat.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
  • Loading branch information
Flavio Leitner authored and Pablo Neira Ayuso committed Apr 30, 2019
1 parent 53b1130 commit fec9c27
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions net/openvswitch/conntrack.c
Original file line number Diff line number Diff line change
Expand Up @@ -1307,6 +1307,7 @@ static int ovs_ct_add_helper(struct ovs_conntrack_info *info, const char *name,
{
struct nf_conntrack_helper *helper;
struct nf_conn_help *help;
int ret = 0;

helper = nf_conntrack_helper_try_module_get(name, info->family,
key->ip.proto);
Expand All @@ -1321,13 +1322,21 @@ static int ovs_ct_add_helper(struct ovs_conntrack_info *info, const char *name,
return -ENOMEM;
}

#ifdef CONFIG_NF_NAT_NEEDED
if (info->nat) {
ret = nf_nat_helper_try_module_get(name, info->family,
key->ip.proto);
if (ret) {
nf_conntrack_helper_put(helper);
OVS_NLERR(log, "Failed to load \"%s\" NAT helper, error: %d",
name, ret);
return ret;
}
}
#endif
rcu_assign_pointer(help->helper, helper);
info->helper = helper;

if (info->nat)
request_module("ip_nat_%s", name);

return 0;
return ret;
}

#if IS_ENABLED(CONFIG_NF_NAT)
Expand Down Expand Up @@ -1801,8 +1810,13 @@ void ovs_ct_free_action(const struct nlattr *a)

static void __ovs_ct_free_action(struct ovs_conntrack_info *ct_info)
{
if (ct_info->helper)
if (ct_info->helper) {
#ifdef CONFIG_NF_NAT_NEEDED
if (ct_info->nat)
nf_nat_helper_put(ct_info->helper);
#endif
nf_conntrack_helper_put(ct_info->helper);
}
if (ct_info->ct) {
if (ct_info->timeout[0])
nf_ct_destroy_timeout(ct_info->ct);
Expand Down

0 comments on commit fec9c27

Please sign in to comment.