From: Dave Jones <davej@redhat.com>
To: Eric Dumazet <eric.dumazet@gmail.com>
Cc: netdev@vger.kernel.org
Subject: Re: fix broken locking in x25 ioctl error paths
Date: Fri, 28 Jun 2013 11:36:08 -0400 [thread overview]
Message-ID: <20130628153608.GA12488@redhat.com> (raw)
In-Reply-To: <1372432775.3301.285.camel@edumazet-glaptop>
On Fri, Jun 28, 2013 at 08:19:35AM -0700, Eric Dumazet wrote:
> On Fri, 2013-06-28 at 11:14 -0400, Dave Jones wrote:
> > Two of the x25 ioctl cases have error paths that break out of the function without
> > unlocking the socket, leading to this warning:
> >
> >
> > ================================================
> > [ BUG: lock held when returning to user space! ]
> > 3.10.0-rc7+ #36 Not tainted
> > ------------------------------------------------
> > trinity-child2/31407 is leaving the kernel with locks still held!
> > 1 lock held by trinity-child2/31407:
> > #0: (sk_lock-AF_X25){+.+.+.}, at: [<ffffffffa024b6da>] x25_ioctl+0x8a/0x740 [x25]
> >
> > Signed-off-by: Dave Jones <davej@redhat.com>
> >
> > diff --git a/net/x25/af_x25.c b/net/x25/af_x25.c
> > index 37ca969..2c1e633 100644
> > --- a/net/x25/af_x25.c
> > +++ b/net/x25/af_x25.c
> > @@ -1584,10 +1584,11 @@ out_cud_release:
> > rc = -EINVAL;
> > lock_sock(sk);
> > if (sk->sk_state != TCP_CLOSE)
> > - break;
> > + goto out_callaccpt_release;
> > clear_bit(X25_ACCPT_APPRV_FLAG, &x25->flags);
> > - release_sock(sk);
> > rc = 0;
> > +out_callaccpt_release:
> > + release_sock(sk);
> > break;
> > }
>
> Or :
>
> lock_sock(sk);
> if (sk->sk_state == TCP_CLOSE) {
> clear_bit(X25_ACCPT_APPRV_FLAG, &x25->flags);
> rc = 0;
> }
> release_sock(sk);
> break;
I can do that if it's preferred. I just copied the same style
as the existing cases.
Dave
next prev parent reply other threads:[~2013-06-28 15:36 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-28 15:14 fix broken locking in x25 ioctl error paths Dave Jones
2013-06-28 15:19 ` Eric Dumazet
2013-06-28 15:36 ` Dave Jones [this message]
2013-06-28 16:13 ` Dave Jones
2013-07-02 1:16 ` David Miller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130628153608.GA12488@redhat.com \
--to=davej@redhat.com \
--cc=eric.dumazet@gmail.com \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).