2013-07-19 16:24:22

by Eric Dumazet

[permalink] [raw]
Subject: strange crashes in tcp_poll() via epoll_wait

Hi Al

I tried to debug strange crashes in tcp_poll() called from
sys_epoll_wait() -> sock_poll()

The symptom is that sock->sk is NULL and we therefore dereference a NULL
pointer.

It's really rare crashes but still, it would be nice to understand where
is the bug. Presumably latest kernels would crash in sock_poll() because
of the sk_can_busy_loop(sock->sk) call.

We do test sock->sk being NULL in sock_fasync(), but epoll should be
safe because of existing synchronization (epmutex) ?

Any idea?

Thanks !


2013-07-19 23:59:31

by Eric Wong

[permalink] [raw]
Subject: Re: strange crashes in tcp_poll() via epoll_wait

Eric Dumazet <[email protected]> wrote:
> Hi Al
>
> I tried to debug strange crashes in tcp_poll() called from
> sys_epoll_wait() -> sock_poll()
>
> The symptom is that sock->sk is NULL and we therefore dereference a NULL
> pointer.
>
> It's really rare crashes but still, it would be nice to understand where
> is the bug. Presumably latest kernels would crash in sock_poll() because
> of the sk_can_busy_loop(sock->sk) call.
>
> We do test sock->sk being NULL in sock_fasync(), but epoll should be
> safe because of existing synchronization (epmutex) ?

It should be safe because of ep->mtx, actually, as epmutex is not taken
in sys_epoll_wait.

I took a look at this but have not found anything. I've yet to see this
this on my machines.

When did you start noticing this?

2013-07-20 00:10:12

by Eric Dumazet

[permalink] [raw]
Subject: Re: strange crashes in tcp_poll() via epoll_wait

On Fri, 2013-07-19 at 23:50 +0000, Eric Wong wrote:
> Eric Dumazet <[email protected]> wrote:
> > Hi Al
> >
> > I tried to debug strange crashes in tcp_poll() called from
> > sys_epoll_wait() -> sock_poll()
> >
> > The symptom is that sock->sk is NULL and we therefore dereference a NULL
> > pointer.
> >
> > It's really rare crashes but still, it would be nice to understand where
> > is the bug. Presumably latest kernels would crash in sock_poll() because
> > of the sk_can_busy_loop(sock->sk) call.
> >
> > We do test sock->sk being NULL in sock_fasync(), but epoll should be
> > safe because of existing synchronization (epmutex) ?
>
> It should be safe because of ep->mtx, actually, as epmutex is not taken
> in sys_epoll_wait.

Hmm, it might be more complex than that for multi threaded programs :

eventpoll_release_file()

The problem might be because a thread closes a socket while an event
was queued for it.


>
> I took a look at this but have not found anything. I've yet to see this
> this on my machines.
>
> When did you start noticing this?

Hard to say, but we have these crashes on a 3.3+ based kernel.

Probability of said crashes is very very low.

2013-07-20 02:03:20

by Eric Wong

[permalink] [raw]
Subject: Re: strange crashes in tcp_poll() via epoll_wait

Eric Dumazet <[email protected]> wrote:
> On Fri, 2013-07-19 at 23:50 +0000, Eric Wong wrote:
> > Eric Dumazet <[email protected]> wrote:
> > > Hi Al
> > >
> > > I tried to debug strange crashes in tcp_poll() called from
> > > sys_epoll_wait() -> sock_poll()
> > >
> > > The symptom is that sock->sk is NULL and we therefore dereference a NULL
> > > pointer.
> > >
> > > It's really rare crashes but still, it would be nice to understand where
> > > is the bug. Presumably latest kernels would crash in sock_poll() because
> > > of the sk_can_busy_loop(sock->sk) call.
> > >
> > > We do test sock->sk being NULL in sock_fasync(), but epoll should be
> > > safe because of existing synchronization (epmutex) ?
> >
> > It should be safe because of ep->mtx, actually, as epmutex is not taken
> > in sys_epoll_wait.
>
> Hmm, it might be more complex than that for multi threaded programs :
>
> eventpoll_release_file()
>
> The problem might be because a thread closes a socket while an event
> was queued for it.

But ep->mtx is also held when traversing the ready list with
ep_send_events_proc.

Can sock->sk somehow be NULL before hitting eventpoll_release_file?

> > I took a look at this but have not found anything. I've yet to see this
> > this on my machines.
> >
> > When did you start noticing this?
>
> Hard to say, but we have these crashes on a 3.3+ based kernel.

So I don't think any of my epoll changes caused it. Phew!

> Probability of said crashes is very very low.

This still worries me since I rely heavily on multi-threaded epoll. I
don't have a lot of cores/CPUs, though, so maybe it's harder to trigger
any potential race as a result...