aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/xfrm4_policy.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv4/xfrm4_policy.c')
-rw-r--r--net/ipv4/xfrm4_policy.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/net/ipv4/xfrm4_policy.c b/net/ipv4/xfrm4_policy.c
index 10b72d185bb9..5ccae3a463c2 100644
--- a/net/ipv4/xfrm4_policy.c
+++ b/net/ipv4/xfrm4_policy.c
@@ -115,7 +115,7 @@ static int xfrm4_fill_dst(struct xfrm_dst *xdst, struct net_device *dev)
115} 115}
116 116
117static void 117static void
118_decode_session4(struct sk_buff *skb, struct flowi *fl) 118_decode_session4(struct sk_buff *skb, struct flowi *fl, int reverse)
119{ 119{
120 struct iphdr *iph = ip_hdr(skb); 120 struct iphdr *iph = ip_hdr(skb);
121 u8 *xprth = skb_network_header(skb) + iph->ihl * 4; 121 u8 *xprth = skb_network_header(skb) + iph->ihl * 4;
@@ -131,8 +131,8 @@ _decode_session4(struct sk_buff *skb, struct flowi *fl)
131 if (pskb_may_pull(skb, xprth + 4 - skb->data)) { 131 if (pskb_may_pull(skb, xprth + 4 - skb->data)) {
132 __be16 *ports = (__be16 *)xprth; 132 __be16 *ports = (__be16 *)xprth;
133 133
134 fl->fl_ip_sport = ports[0]; 134 fl->fl_ip_sport = ports[!!reverse];
135 fl->fl_ip_dport = ports[1]; 135 fl->fl_ip_dport = ports[!reverse];
136 } 136 }
137 break; 137 break;
138 138
@@ -174,8 +174,8 @@ _decode_session4(struct sk_buff *skb, struct flowi *fl)
174 } 174 }
175 } 175 }
176 fl->proto = iph->protocol; 176 fl->proto = iph->protocol;
177 fl->fl4_dst = iph->daddr; 177 fl->fl4_dst = reverse ? iph->saddr : iph->daddr;
178 fl->fl4_src = iph->saddr; 178 fl->fl4_src = reverse ? iph->daddr : iph->saddr;
179 fl->fl4_tos = iph->tos; 179 fl->fl4_tos = iph->tos;
180} 180}
181 181