From: Paulo Marques <pmarques@grupopie.com>
To: Alexey Dobriyan <adobriyan@gmail.com>
Cc: akpm@osdl.org, linux-kernel@vger.kernel.org
Subject: Re: /proc/kallsyms race vs module unload
Date: Wed, 14 Mar 2007 12:17:26 +0000 [thread overview]
Message-ID: <45F7E7D6.1000904@grupopie.com> (raw)
In-Reply-To: <20070313230753.GB5623@martell.zuzino.mipt.ru>
Alexey Dobriyan wrote:
> On Tue, Mar 13, 2007 at 06:49:50PM +0000, Paulo Marques wrote:
>> Alexey Dobriyan wrote:
>>> [...]
>>> What happens is that module_get_kallsym() drops module_mutex,
>>> returns "struct module *", module unloaded, "struct module *"
>>> used.
>> The only use for the "struct module *" is to display the name of the
>> module.
>
> Ehh?
>
>> This can be solved by adding a "char mod_name[MODULE_NAME_LEN];" field
>> to "kallsym_iter" and copy the name of the module over, while still
>> holding module_mutex. It would be slightly slower, but safer.
>
> iter->owner = module_get_kallsym(iter->pos - kallsyms_num_syms,
> &iter->value, &iter->type,
> iter->name, sizeof(iter->name));
> if (iter->owner == NULL)
> return 0;
>
> /* Label it "global" if it is exported, "local" if not exported. */
> iter->type = is_exported(iter->name, iter->owner)
> ^^^^^^^^^^^
Yes, there is this "is_exported" call, but his can be moved completely
into "module_get_kallsym" and have the "type" returned be already upper
/ lower case.
That, together with filling the module name "module_get_kallsym()" would
make the returned "struct module *" unneeded.
Since kallsyms is the only caller of that function, we can change its
interface to not return a "struct module *" at all, and return just an
integer that means "symbol found" or "no more symbols".
I'm still volunteering to do that patch, but you seem more active than
me at the moment...
--
Paulo Marques
Software Development Department - Grupo PIE, S.A.
Phone: +351 252 290600, Fax: +351 252 290601
Web: www.grupopie.com
prev parent reply other threads:[~2007-03-14 12:17 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-03-13 18:18 /proc/kallsyms race vs module unload Alexey Dobriyan
2007-03-13 18:49 ` Paulo Marques
2007-03-13 23:07 ` Alexey Dobriyan
2007-03-14 12:17 ` Paulo Marques [this message]
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=45F7E7D6.1000904@grupopie.com \
--to=pmarques@grupopie.com \
--cc=adobriyan@gmail.com \
--cc=akpm@osdl.org \
--cc=linux-kernel@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