|
|
@@ -896,7 +896,8 @@ static int xfrm_dump_sa_done(struct netlink_callback *cb)
|
|
|
struct sock *sk = cb->skb->sk;
|
|
|
struct net *net = sock_net(sk);
|
|
|
|
|
|
- xfrm_state_walk_done(walk, net);
|
|
|
+ if (cb->args[0])
|
|
|
+ xfrm_state_walk_done(walk, net);
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
@@ -921,8 +922,6 @@ static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
|
|
|
u8 proto = 0;
|
|
|
int err;
|
|
|
|
|
|
- cb->args[0] = 1;
|
|
|
-
|
|
|
err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX,
|
|
|
xfrma_policy);
|
|
|
if (err < 0)
|
|
|
@@ -939,6 +938,7 @@ static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
|
|
|
proto = nla_get_u8(attrs[XFRMA_PROTO]);
|
|
|
|
|
|
xfrm_state_walk_init(walk, proto, filter);
|
|
|
+ cb->args[0] = 1;
|
|
|
}
|
|
|
|
|
|
(void) xfrm_state_walk(net, walk, dump_one_state, &info);
|
|
|
@@ -2051,9 +2051,6 @@ static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
|
|
|
if (up->hard) {
|
|
|
xfrm_policy_delete(xp, p->dir);
|
|
|
xfrm_audit_policy_delete(xp, 1, true);
|
|
|
- } else {
|
|
|
- // reset the timers here?
|
|
|
- WARN(1, "Don't know what to do with soft policy expire\n");
|
|
|
}
|
|
|
km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
|
|
|
|
|
|
@@ -2117,7 +2114,7 @@ static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
|
|
|
|
|
|
err = verify_newpolicy_info(&ua->policy);
|
|
|
if (err)
|
|
|
- goto bad_policy;
|
|
|
+ goto free_state;
|
|
|
|
|
|
/* build an XP */
|
|
|
xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
|
|
|
@@ -2149,8 +2146,6 @@ static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
-bad_policy:
|
|
|
- WARN(1, "BAD policy passed\n");
|
|
|
free_state:
|
|
|
kfree(x);
|
|
|
nomem:
|