Replace duplicated logic with the new nf_ct_call_helper() helper. No functional changes intended, except the additional checks to ensure the helper can process the given packet. Fixes: 9fb9cbb1082d ("[NETFILTER]: Add nf_conntrack subsystem.") Signed-off-by: Florian Westphal --- net/netfilter/nf_conntrack_ovs.c | 50 +------------------------------- 1 file changed, 1 insertion(+), 49 deletions(-) diff --git a/net/netfilter/nf_conntrack_ovs.c b/net/netfilter/nf_conntrack_ovs.c index b4085af3ad1c..b4c44e915d91 100644 --- a/net/netfilter/nf_conntrack_ovs.c +++ b/net/netfilter/nf_conntrack_ovs.c @@ -12,13 +12,8 @@ int nf_ct_helper(struct sk_buff *skb, struct nf_conn *ct, enum ip_conntrack_info ctinfo, u16 proto) { - int (*helper_cb)(struct sk_buff *skb, unsigned int protoff, - struct nf_conn *ct, - enum ip_conntrack_info conntrackinfo); const struct nf_conntrack_helper *helper; const struct nf_conn_help *help; - unsigned int protoff; - int err; if (ctinfo == IP_CT_RELATED_REPLY) return NF_ACCEPT; @@ -35,50 +30,7 @@ int nf_ct_helper(struct sk_buff *skb, struct nf_conn *ct, helper->nfproto != proto) return NF_ACCEPT; - switch (proto) { - case NFPROTO_IPV4: - protoff = ip_hdrlen(skb); - proto = ip_hdr(skb)->protocol; - break; - case NFPROTO_IPV6: { - u8 nexthdr = ipv6_hdr(skb)->nexthdr; - __be16 frag_off; - int ofs; - - ofs = ipv6_skip_exthdr(skb, sizeof(struct ipv6hdr), &nexthdr, - &frag_off); - if (ofs < 0 || (frag_off & htons(~0x7)) != 0) { - pr_debug("proto header not found\n"); - return NF_ACCEPT; - } - protoff = ofs; - proto = nexthdr; - break; - } - default: - WARN_ONCE(1, "helper invoked on non-IP family!"); - return NF_DROP; - } - - if (helper->l4proto != proto) - return NF_ACCEPT; - - helper_cb = rcu_dereference(helper->help); - if (!helper_cb) - return NF_ACCEPT; - - err = helper_cb(skb, protoff, ct, ctinfo); - if (err != NF_ACCEPT) - return err; - - /* Adjust seqs after helper. This is needed due to some helpers (e.g., - * FTP with NAT) adusting the TCP payload size when mangling IP - * addresses and/or port numbers in the text-based control connection. - */ - if (test_bit(IPS_SEQ_ADJUST_BIT, &ct->status) && - !nf_ct_seq_adjust(skb, ct, ctinfo, protoff)) - return NF_DROP; - return NF_ACCEPT; + return nf_ct_call_helper(skb, ct, ctinfo); } EXPORT_SYMBOL_GPL(nf_ct_helper); -- 2.55.0