Skip to content

Commit

Permalink
mptcp: pm: add lockdep assertions
Browse files Browse the repository at this point in the history
Add a few assertions to make sure functions are called with the needed
locks held.
Two functions gain might_sleep annotations because they contain
conditional calls to functions that sleep.

Reviewed-by: Mat Martineau <mathew.j.martineau@linux.intel.com>
Signed-off-by: Florian Westphal <fw@strlen.de>
  • Loading branch information
Florian Westphal authored and jenkins-tessares committed Feb 2, 2021
1 parent e75bbfc commit 77a274c
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 0 deletions.
2 changes: 2 additions & 0 deletions net/mptcp/pm.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ int mptcp_pm_announce_addr(struct mptcp_sock *msk,

pr_debug("msk=%p, local_id=%d", msk, addr->id);

lockdep_assert_held(&msk->pm.lock);

if (add_addr) {
pr_warn("addr_signal error, add_addr=%d", add_addr);
return -EINVAL;
Expand Down
13 changes: 13 additions & 0 deletions net/mptcp/pm_netlink.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,8 @@ select_local_address(const struct pm_nl_pernet *pernet,
struct mptcp_pm_addr_entry *entry, *ret = NULL;
struct sock *sk = (struct sock *)msk;

msk_owned_by_me(msk);

rcu_read_lock();
__mptcp_flush_join_list(msk);
list_for_each_entry_rcu(entry, &pernet->local_addr_list, list) {
Expand Down Expand Up @@ -246,6 +248,8 @@ lookup_anno_list_by_saddr(struct mptcp_sock *msk,
{
struct mptcp_pm_add_entry *entry;

lockdep_assert_held(&msk->pm.lock);

list_for_each_entry(entry, &msk->pm.anno_list, list) {
if (addresses_equal(&entry->addr, addr, true))
return entry;
Expand Down Expand Up @@ -342,6 +346,8 @@ static bool mptcp_pm_alloc_anno_list(struct mptcp_sock *msk,
struct sock *sk = (struct sock *)msk;
struct net *net = sock_net(sk);

lockdep_assert_held(&msk->pm.lock);

if (lookup_anno_list_by_saddr(msk, &entry->addr))
return false;

Expand Down Expand Up @@ -496,6 +502,9 @@ void mptcp_pm_nl_add_addr_send_ack(struct mptcp_sock *msk)
{
struct mptcp_subflow_context *subflow;

msk_owned_by_me(msk);
lockdep_assert_held(&msk->pm.lock);

if (!mptcp_pm_should_add_signal(msk))
return;

Expand Down Expand Up @@ -566,6 +575,8 @@ void mptcp_pm_nl_rm_addr_received(struct mptcp_sock *msk)

pr_debug("address rm_id %d", msk->pm.rm_id);

msk_owned_by_me(msk);

if (!msk->pm.rm_id)
return;

Expand Down Expand Up @@ -601,6 +612,8 @@ void mptcp_pm_nl_rm_subflow_received(struct mptcp_sock *msk, u8 rm_id)

pr_debug("subflow rm_id %d", rm_id);

msk_owned_by_me(msk);

if (!rm_id)
return;

Expand Down
4 changes: 4 additions & 0 deletions net/mptcp/protocol.c
Original file line number Diff line number Diff line change
Expand Up @@ -2187,6 +2187,8 @@ static void __mptcp_close_subflow(struct mptcp_sock *msk)
{
struct mptcp_subflow_context *subflow, *tmp;

might_sleep();

list_for_each_entry_safe(subflow, tmp, &msk->conn_list, node) {
struct sock *ssk = mptcp_subflow_tcp_sock(subflow);

Expand Down Expand Up @@ -2529,6 +2531,8 @@ static void __mptcp_destroy_sock(struct sock *sk)

pr_debug("msk=%p", msk);

might_sleep();

/* dispose the ancillatory tcp socket, if any */
if (msk->subflow) {
iput(SOCK_INODE(msk->subflow));
Expand Down
5 changes: 5 additions & 0 deletions net/mptcp/protocol.h
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,11 @@ struct mptcp_sock {
#define mptcp_for_each_subflow(__msk, __subflow) \
list_for_each_entry(__subflow, &((__msk)->conn_list), node)

static inline void msk_owned_by_me(const struct mptcp_sock *msk)
{
sock_owned_by_me((const struct sock *)msk);
}

static inline struct mptcp_sock *mptcp_sk(const struct sock *sk)
{
return (struct mptcp_sock *)sk;
Expand Down

0 comments on commit 77a274c

Please sign in to comment.