From: Peter Zijlstra <peterz@infradead.org>
To: Florian Westphal <fw@strlen.de>
Cc: David Miller <davem@davemloft.net>, netdev@vger.kernel.org
Subject: Re: problem with rtnetlink 'reference' count
Date: Tue, 24 Oct 2017 10:33:38 +0200 [thread overview]
Message-ID: <20171024083338.GL3165@worktop.lehotels.local> (raw)
In-Reply-To: <20171023193703.GA19457@breakpoint.cc>
On Mon, Oct 23, 2017 at 09:37:03PM +0200, Florian Westphal wrote:
> > OK, so then why not do something like so?
> > @@ -260,10 +259,18 @@ void rtnl_unregister_all(int protocol)
> > RCU_INIT_POINTER(rtnl_msg_handlers[protocol], NULL);
> > rtnl_unlock();
> >
> > + /*
> > + * XXX explain what this is for...
> > + */
> > synchronize_net();
> >
> > - while (refcount_read(&rtnl_msg_handlers_ref[protocol]) > 1)
> > - schedule();
> > + /*
> > + * This serializes against the rcu_read_lock() section in
> > + * rtnetlink_rcv_msg() such that after this, all prior instances have
> > + * completed and future instances must observe the NULL written above.
> > + */
> > + synchronize_rcu();
>
> Yes, but that won't help with running dumpers, see below.
>
> > @@ -4218,7 +4223,6 @@ static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
> > };
> > err = netlink_dump_start(rtnl, skb, nlh, &c);
>
> This will copy .dumper function address to nlh->cb for later invocation
> when dump gets resumed (its called from netlink_recvmsg()),
> so this can return to userspace and dump can be resumed on next recv().
>
> Because the dumper function was stored in the socket, NULLing the
> rtnl_msg_handlers[] only prevents new dumps from starting but not
> already set-up dumps from resuming.
but netlink_dump_start() will actually grab a reference on the module;
but it does so too late.
Would it not be sufficient to put that try_module_get() under the
rcu_read_lock()?
next prev parent reply other threads:[~2017-10-24 8:40 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-23 14:25 problem with rtnetlink 'reference' count Peter Zijlstra
2017-10-23 15:32 ` Florian Westphal
2017-10-23 16:20 ` Peter Zijlstra
2017-10-23 16:37 ` Florian Westphal
2017-10-23 18:31 ` Peter Zijlstra
2017-10-23 19:37 ` Florian Westphal
2017-10-24 8:33 ` Peter Zijlstra [this message]
2017-10-24 9:10 ` Florian Westphal
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=20171024083338.GL3165@worktop.lehotels.local \
--to=peterz@infradead.org \
--cc=davem@davemloft.net \
--cc=fw@strlen.de \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.