Skip to content

Commit

Permalink
Squash-to: mptcp: netlink: Add MPTCP_PM_CMD_REMOVE
Browse files Browse the repository at this point in the history
Signed-off-by: Kishen Maloor <[email protected]>
Signed-off-by: Matthieu Baerts <[email protected]>
  • Loading branch information
kmaloor authored and matttbe committed Apr 20, 2022
1 parent 6e9190a commit 93a0837
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions net/mptcp/pm_userspace.c
Original file line number Diff line number Diff line change
Expand Up @@ -186,12 +186,13 @@ int mptcp_nl_cmd_remove(struct sk_buff *skb, struct genl_info *info)
struct mptcp_pm_addr_entry *entry;
struct mptcp_sock *msk;
LIST_HEAD(free_list);
int err = -EINVAL;
u32 token_val;
u8 id_val;

if (!id || !token) {
GENL_SET_ERR_MSG(info, "missing required inputs");
return -EINVAL;
return err;
}

id_val = nla_get_u8(id);
Expand All @@ -200,12 +201,12 @@ int mptcp_nl_cmd_remove(struct sk_buff *skb, struct genl_info *info)
msk = mptcp_token_get_sock(sock_net(skb->sk), token_val);
if (!msk) {
NL_SET_ERR_MSG_ATTR(info->extack, token, "invalid token");
return -EINVAL;
return err;
}

if (!mptcp_pm_is_userspace(msk)) {
GENL_SET_ERR_MSG(info, "invalid request; userspace PM not selected");
return -EINVAL;
goto remove_err;
}

lock_sock((struct sock *)msk);
Expand All @@ -220,7 +221,7 @@ int mptcp_nl_cmd_remove(struct sk_buff *skb, struct genl_info *info)
if (!match) {
GENL_SET_ERR_MSG(info, "address with specified id not found");
release_sock((struct sock *)msk);
return -EINVAL;
goto remove_err;
}

list_move(&match->list, &free_list);
Expand All @@ -232,5 +233,9 @@ int mptcp_nl_cmd_remove(struct sk_buff *skb, struct genl_info *info)
list_for_each_entry_safe(match, entry, &free_list, list) {
sock_kfree_s((struct sock *)msk, match, sizeof(*match));
}
return 0;

err = 0;
remove_err:
sock_put((struct sock *)msk);
return err;
}

0 comments on commit 93a0837

Please sign in to comment.