From: Dmitry Vyukov <dvyukov@google.com>
To: Andrey Ryabinin <aryabinin@virtuozzo.com>
Cc: "linux-mm@kvack.org" <linux-mm@kvack.org>,
Andrew Morton <akpm@linux-foundation.org>,
kasan-dev <kasan-dev@googlegroups.com>,
Greg Thelen <gthelen@google.com>
Subject: Re: [PATCH] kasan: fix races in quarantine_remove_cache()
Date: Thu, 9 Mar 2017 10:37:06 +0100 [thread overview]
Message-ID: <CACT4Y+a-ZY031qwzJW_SWwDGJEWocoBw85W_q1A0ddB47ciWmw@mail.gmail.com> (raw)
In-Reply-To: <1e8cde9e-919d-784c-298c-85efd6efd82c@virtuozzo.com>
On Thu, Mar 9, 2017 at 10:25 AM, Andrey Ryabinin
<aryabinin@virtuozzo.com> wrote:
> On 03/08/2017 06:15 PM, Dmitry Vyukov wrote:
>
>> diff --git a/mm/kasan/quarantine.c b/mm/kasan/quarantine.c
>> index 6f1ed1630873..075422c3cee3 100644
>> --- a/mm/kasan/quarantine.c
>> +++ b/mm/kasan/quarantine.c
>> @@ -27,6 +27,7 @@
>> #include <linux/slab.h>
>> #include <linux/string.h>
>> #include <linux/types.h>
>> +#include <linux/srcu.h>
>>
>
> Nit: keep alphabetical order please.
Doh, we really need clang-format. This is not productive.
Will send v2.
>> void quarantine_reduce(void)
>> {
>> size_t total_size, new_quarantine_size, percpu_quarantines;
>> unsigned long flags;
>> + int srcu_idx;
>> struct qlist_head to_free = QLIST_INIT;
>>
>> if (likely(READ_ONCE(quarantine_size) <=
>> READ_ONCE(quarantine_max_size)))
>> return;
>>
>> + /*
>> + * srcu critical section ensures that quarantine_remove_cache()
>> + * will not miss objects belonging to the cache while they are in our
>> + * local to_free list. srcu is chosen because (1) it gives us private
>> + * grace period domain that does not interfere with anything else,
>> + * and (2) it allows synchronize_srcu() to return without waiting
>> + * if there are no pending read critical sections (which is the
>> + * expected case).
>> + */
>> + srcu_idx = srcu_read_lock(&remove_cache_srcu);
>
> I'm puzzled why is SRCU, why not RCU? Given that we take spin_lock in the next line
> we certainly don't need ability to sleep in read-side critical section.
I've explained it in the comment above.
>> spin_lock_irqsave(&quarantine_lock, flags);
>>
>> /*
>> @@ -237,6 +257,7 @@ void quarantine_reduce(void)
>> spin_unlock_irqrestore(&quarantine_lock, flags);
>>
>> qlist_free_all(&to_free, NULL);
>> + srcu_read_unlock(&remove_cache_srcu, srcu_idx);
>> }
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2017-03-09 9:37 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-08 15:15 [PATCH] kasan: fix races in quarantine_remove_cache() Dmitry Vyukov
2017-03-08 23:11 ` Andrew Morton
2017-03-09 8:52 ` Dmitry Vyukov
2017-03-09 9:25 ` Andrey Ryabinin
2017-03-09 9:37 ` Dmitry Vyukov [this message]
2017-03-09 10:29 ` Andrey Ryabinin
2017-03-09 10:43 ` Dmitry Vyukov
2017-03-09 11:09 ` Andrey Ryabinin
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=CACT4Y+a-ZY031qwzJW_SWwDGJEWocoBw85W_q1A0ddB47ciWmw@mail.gmail.com \
--to=dvyukov@google.com \
--cc=akpm@linux-foundation.org \
--cc=aryabinin@virtuozzo.com \
--cc=gthelen@google.com \
--cc=kasan-dev@googlegroups.com \
--cc=linux-mm@kvack.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).