From: Jarek Poplawski <jarkao2@gmail.com>
To: =?ISO-8859-2?Q?=3F=3F_shin_hong?= <hongshin@gmail.com>
Cc: netdev@vger.kernel.org
Subject: Re: BUG? possible race due to the absence of barrier
Date: Wed, 13 Jan 2010 09:24:01 +0000 [thread overview]
Message-ID: <20100113092401.GC6053@ff.dom.local> (raw)
In-Reply-To: <2014bcab1001122035x57717821tac399330fd29883c@mail.gmail.com>
On 13-01-2010 05:35, ?? shin hong wrote:
> Hi. I am reporting a type of suspected bugs due to
> the lack of enforcing operation order by memory barrier.
>
> I found this issue while I read the code, so that
> it might not be real. But, please examine this issue.
>
> We often allocate an object, initialize it, and then link it to a data
> structure.
> Then any thread can access the object.
>
> For this pattern of programming, it seems to be necessary that
> memory barrier should confirm that the initializations and the linking
> to global data structures are not disordered by CPU or compilers.
>
> atm_add_addr() in /net/atm/addr.c has the following code:
>
> 88 this = kmalloc(sizeof(struct atm_dev_addr), GFP_ATOMIC);
> 89 if (!this) {
> 90 spin_unlock_irqrestore(&dev->lock, flags);
> 91 return -ENOMEM;
> 92 }
> 93 this->addr = *addr;
> 94 list_add(&this->entry, head);
>
> The operation at line 93 might be executed earlier than that of line 94.
> Then, the other thread might read uninitialized value of this
> if there is other concurrent thread which iterates the list.
>
> Please examine this issue and let me know your opinions.
Should be safe under the spin_lock() (and its barriers).
Regards,
Jarek P.
prev parent reply other threads:[~2010-01-13 9:24 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-01-13 4:35 BUG? possible race due to the absence of barrier 홍신 shin hong
2010-01-13 9:24 ` Jarek Poplawski [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=20100113092401.GC6053@ff.dom.local \
--to=jarkao2@gmail.com \
--cc=hongshin@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).