From: Rusty Russell <rusty@rustcorp.com.au>
To: rmingming <mingming.nk@gmail.com>
Cc: linux-kernel@vger.kernel.org
Subject: Re: Is try_module_get buggy?
Date: Thu, 17 Jan 2008 14:09:39 +1100 [thread overview]
Message-ID: <200801171409.39389.rusty@rustcorp.com.au> (raw)
In-Reply-To: <4cc25cb20801112035x16c69a40rf3103a73b6cda107@mail.gmail.com>
On Saturday 12 January 2008 15:35:27 rmingming wrote:
> Hi,
> I have a problem about the try_module_get function, I don't know if
> someone removed the module just AFTER line 372, then what happens? Because
> in this situation, the variable module will be incorrect, and
> module_is_live function will lead to unpredicatable behaviour.
>
> 368 static inline int try_module_get(struct module *module)
> 369 {
> 370 int ret = 1;
> 371
> 372 if (module) {
> 373 unsigned int cpu = get_cpu();
> 374 if (likely(module_is_live(module)))
> 375 local_inc(&module->ref[cpu].count);
> 376 else
> 377 ret = 0;
> 378 put_cpu();
> 379 }
> 380 return ret;
> 381 }
Hi rminming,
try_module_get is designed to ensure that you don't call a function inside a
module without a reference. Like any reference function, it cannot handle
the case where the argument is invalid (or invalidated partway through the
call).
In this case, the module pointer is usually inside a registered structure.
The pointer will be valid until the structure is unregistered, which the
calling code presumably prevents while it's doing a lookup.
Hope that clarifies,
Rusty.
next prev parent reply other threads:[~2008-01-17 3:10 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-01-12 4:35 Is try_module_get buggy? rmingming
2008-01-17 3:09 ` Rusty Russell [this message]
2008-01-23 14:34 ` rmingming
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=200801171409.39389.rusty@rustcorp.com.au \
--to=rusty@rustcorp.com.au \
--cc=linux-kernel@vger.kernel.org \
--cc=mingming.nk@gmail.com \
/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