Skip to content

Commit 1bba6ff

Browse files
committed
ipv4: Use flowi4_init_output() in cookie_v4_check()
Signed-off-by: David S. Miller <[email protected]>
1 parent ef164ae commit 1bba6ff

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

net/ipv4/syncookies.c

+7-11
Original file line numberDiff line numberDiff line change
@@ -345,17 +345,13 @@ struct sock *cookie_v4_check(struct sock *sk, struct sk_buff *skb,
345345
* no easy way to do this.
346346
*/
347347
{
348-
struct flowi4 fl4 = {
349-
.flowi4_mark = sk->sk_mark,
350-
.daddr = ((opt && opt->srr) ?
351-
opt->faddr : ireq->rmt_addr),
352-
.saddr = ireq->loc_addr,
353-
.flowi4_tos = RT_CONN_FLAGS(sk),
354-
.flowi4_proto = IPPROTO_TCP,
355-
.flowi4_flags = inet_sk_flowi_flags(sk),
356-
.fl4_sport = th->dest,
357-
.fl4_dport = th->source,
358-
};
348+
struct flowi4 fl4;
349+
350+
flowi4_init_output(&fl4, 0, sk->sk_mark, RT_CONN_FLAGS(sk),
351+
RT_SCOPE_UNIVERSE, IPPROTO_TCP,
352+
inet_sk_flowi_flags(sk),
353+
(opt && opt->srr) ? opt->faddr : ireq->rmt_addr,
354+
ireq->loc_addr, th->source, th->dest);
359355
security_req_classify_flow(req, flowi4_to_flowi(&fl4));
360356
rt = ip_route_output_key(sock_net(sk), &fl4);
361357
if (IS_ERR(rt)) {

0 commit comments

Comments
 (0)