Commit 8b8f0813 authored by Taehee Yoo's avatar Taehee Yoo Committed by Pablo Neira Ayuso

netfilter: nf_nat_snmp_basic: replace ctinfo with dir.

The snmp_translate() receives ctinfo data to get dir value only.
because of caller already has dir value, we just replace ctinfo with dir.
Signed-off-by: default avatarTaehee Yoo <ap420073@gmail.com>
Signed-off-by: default avatarPablo Neira Ayuso <pablo@netfilter.org>
parent e29e5ddc
...@@ -1082,15 +1082,12 @@ static int snmp_parse_mangle(unsigned char *msg, ...@@ -1082,15 +1082,12 @@ static int snmp_parse_mangle(unsigned char *msg,
/* /*
* SNMP translation routine. * SNMP translation routine.
*/ */
static int snmp_translate(struct nf_conn *ct, static int snmp_translate(struct nf_conn *ct, int dir, struct sk_buff *skb)
enum ip_conntrack_info ctinfo,
struct sk_buff *skb)
{ {
struct iphdr *iph = ip_hdr(skb); struct iphdr *iph = ip_hdr(skb);
struct udphdr *udph = (struct udphdr *)((__be32 *)iph + iph->ihl); struct udphdr *udph = (struct udphdr *)((__be32 *)iph + iph->ihl);
u_int16_t udplen = ntohs(udph->len); u_int16_t udplen = ntohs(udph->len);
u_int16_t paylen = udplen - sizeof(struct udphdr); u_int16_t paylen = udplen - sizeof(struct udphdr);
int dir = CTINFO2DIR(ctinfo);
struct oct1_map map; struct oct1_map map;
/* /*
...@@ -1155,7 +1152,7 @@ static int help(struct sk_buff *skb, unsigned int protoff, ...@@ -1155,7 +1152,7 @@ static int help(struct sk_buff *skb, unsigned int protoff,
return NF_DROP; return NF_DROP;
spin_lock_bh(&snmp_lock); spin_lock_bh(&snmp_lock);
ret = snmp_translate(ct, ctinfo, skb); ret = snmp_translate(ct, dir, skb);
spin_unlock_bh(&snmp_lock); spin_unlock_bh(&snmp_lock);
return ret; return ret;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment