From: Waiman Long <waiman.long@hp.com>
To: Stephen Smalley <sds@tycho.nsa.gov>
Cc: James Morris <james.l.morris@oracle.com>,
Scott J Norton <scott.norton@hp.com>,
Raghavendra K T <raghavendra.kt@linux.vnet.ibm.com>,
linux-kernel@vger.kernel.org,
linux-security-module@vger.kernel.org,
Douglas Hatch <doug.hatch@hp.com>,
selinux@tycho.nsa.gov
Subject: Re: [PATCH v2] selinux: reduce locking overhead in inode_free_security()
Date: Fri, 12 Jun 2015 18:35:43 -0400 [thread overview]
Message-ID: <557B5EBF.6010105@hp.com> (raw)
In-Reply-To: <557AD10D.6060200@tycho.nsa.gov>
On 06/12/2015 08:31 AM, Stephen Smalley wrote:
> On 06/12/2015 02:26 AM, Raghavendra K T wrote:
>> On 06/12/2015 03:01 AM, Waiman Long wrote:
>>> The inode_free_security() function just took the superblock's isec_lock
>>> before checking and trying to remove the inode security struct from the
>>> linked list. In many cases, the list was empty and so the lock taking
>>> is wasteful as no useful work is done. On multi-socket systems with
>>> a large number of CPUs, there can also be a fair amount of spinlock
>>> contention on the isec_lock if many tasks are exiting at the same time.
>>>
>>> This patch changes the code to check the state of the list first
>>> before taking the lock and attempting to dequeue it. As this function
>>> is called indirectly from __destroy_inode(), there can't be another
>>> instance of inode_free_security() running on the same inode.
>>>
>>> Signed-off-by: Waiman Long<Waiman.Long@hp.com>
>>> ---
>>> security/selinux/hooks.c | 15 ++++++++++++---
>>> 1 files changed, 12 insertions(+), 3 deletions(-)
>>>
>>> v1->v2:
>>> - Take out the second list_empty() test inside the lock.
>>>
>>> diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
>>> index 7dade28..e5cdad7 100644
>>> --- a/security/selinux/hooks.c
>>> +++ b/security/selinux/hooks.c
>>> @@ -254,10 +254,19 @@ static void inode_free_security(struct inode
>>> *inode)
>>> struct inode_security_struct *isec = inode->i_security;
>>> struct superblock_security_struct *sbsec = inode->i_sb->s_security;
>>>
>>> - spin_lock(&sbsec->isec_lock);
>>> - if (!list_empty(&isec->list))
>>> + /*
>>> + * As not all inode security structures are in a list, we check for
>>> + * empty list outside of the lock to make sure that we won't waste
>>> + * time taking a lock doing nothing. As inode_free_security() is
>>> + * being called indirectly from __destroy_inode(), there is no way
>>> + * there can be two or more concurrent calls. So doing the
>>> list_empty()
>>> + * test outside the loop should be safe.
>>> + */
>>> + if (!list_empty(&isec->list)) {
>>> + spin_lock(&sbsec->isec_lock);
>>> list_del_init(&isec->list);
>> Stupid question,
>>
>> I need to take a look at list_del_init() code, but it can so happen that
>> if !list_empty() check could happen simultaneously, then serially two
>> list_del_init() can happen.
>>
>> is that not a problem()?
> Hmm...I suppose that's possible (sb_finish_set_opts and
> inode_free_security could both perform the list_del_init). Ok, we'll
> stay with the first version.
>
Actually, list_del_init() can be applied twice with no harm being done.
The first list_del_init() will set list-> next = list->prev = list. The
second one will do the same thing and so it should be safe.
Cheers,
Longman
WARNING: multiple messages have this Message-ID (diff)
From: Waiman Long <waiman.long@hp.com>
To: Stephen Smalley <sds@tycho.nsa.gov>
Cc: Raghavendra K T <raghavendra.kt@linux.vnet.ibm.com>,
Paul Moore <paul@paul-moore.com>,
Eric Paris <eparis@parisplace.org>,
James Morris <james.l.morris@oracle.com>,
"Serge E. Hallyn" <serge@hallyn.com>,
selinux@tycho.nsa.gov, linux-kernel@vger.kernel.org,
linux-security-module@vger.kernel.org,
Scott J Norton <scott.norton@hp.com>,
Douglas Hatch <doug.hatch@hp.com>
Subject: Re: [PATCH v2] selinux: reduce locking overhead in inode_free_security()
Date: Fri, 12 Jun 2015 18:35:43 -0400 [thread overview]
Message-ID: <557B5EBF.6010105@hp.com> (raw)
In-Reply-To: <557AD10D.6060200@tycho.nsa.gov>
On 06/12/2015 08:31 AM, Stephen Smalley wrote:
> On 06/12/2015 02:26 AM, Raghavendra K T wrote:
>> On 06/12/2015 03:01 AM, Waiman Long wrote:
>>> The inode_free_security() function just took the superblock's isec_lock
>>> before checking and trying to remove the inode security struct from the
>>> linked list. In many cases, the list was empty and so the lock taking
>>> is wasteful as no useful work is done. On multi-socket systems with
>>> a large number of CPUs, there can also be a fair amount of spinlock
>>> contention on the isec_lock if many tasks are exiting at the same time.
>>>
>>> This patch changes the code to check the state of the list first
>>> before taking the lock and attempting to dequeue it. As this function
>>> is called indirectly from __destroy_inode(), there can't be another
>>> instance of inode_free_security() running on the same inode.
>>>
>>> Signed-off-by: Waiman Long<Waiman.Long@hp.com>
>>> ---
>>> security/selinux/hooks.c | 15 ++++++++++++---
>>> 1 files changed, 12 insertions(+), 3 deletions(-)
>>>
>>> v1->v2:
>>> - Take out the second list_empty() test inside the lock.
>>>
>>> diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
>>> index 7dade28..e5cdad7 100644
>>> --- a/security/selinux/hooks.c
>>> +++ b/security/selinux/hooks.c
>>> @@ -254,10 +254,19 @@ static void inode_free_security(struct inode
>>> *inode)
>>> struct inode_security_struct *isec = inode->i_security;
>>> struct superblock_security_struct *sbsec = inode->i_sb->s_security;
>>>
>>> - spin_lock(&sbsec->isec_lock);
>>> - if (!list_empty(&isec->list))
>>> + /*
>>> + * As not all inode security structures are in a list, we check for
>>> + * empty list outside of the lock to make sure that we won't waste
>>> + * time taking a lock doing nothing. As inode_free_security() is
>>> + * being called indirectly from __destroy_inode(), there is no way
>>> + * there can be two or more concurrent calls. So doing the
>>> list_empty()
>>> + * test outside the loop should be safe.
>>> + */
>>> + if (!list_empty(&isec->list)) {
>>> + spin_lock(&sbsec->isec_lock);
>>> list_del_init(&isec->list);
>> Stupid question,
>>
>> I need to take a look at list_del_init() code, but it can so happen that
>> if !list_empty() check could happen simultaneously, then serially two
>> list_del_init() can happen.
>>
>> is that not a problem()?
> Hmm...I suppose that's possible (sb_finish_set_opts and
> inode_free_security could both perform the list_del_init). Ok, we'll
> stay with the first version.
>
Actually, list_del_init() can be applied twice with no harm being done.
The first list_del_init() will set list-> next = list->prev = list. The
second one will do the same thing and so it should be safe.
Cheers,
Longman
next prev parent reply other threads:[~2015-06-12 22:35 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-11 21:31 [PATCH v2] selinux: reduce locking overhead in inode_free_security() Waiman Long
2015-06-11 21:31 ` Waiman Long
2015-06-12 6:26 ` Raghavendra K T
2015-06-12 6:26 ` Raghavendra K T
2015-06-12 12:31 ` Stephen Smalley
2015-06-12 12:31 ` Stephen Smalley
2015-06-12 14:01 ` Eric Paris
2015-06-12 14:01 ` Eric Paris
2015-06-12 22:35 ` Waiman Long [this message]
2015-06-12 22:35 ` Waiman Long
2015-06-13 7:35 ` Yury
2015-06-13 7:35 ` Yury
2015-06-13 15:48 ` Eric Paris
2015-06-13 15:48 ` Eric Paris
2015-06-15 16:57 ` Waiman Long
2015-06-15 16:57 ` Waiman Long
2015-06-14 4:01 ` Raghavendra K T
2015-06-14 4:01 ` Raghavendra K T
2015-06-15 13:38 ` Stephen Smalley
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=557B5EBF.6010105@hp.com \
--to=waiman.long@hp.com \
--cc=doug.hatch@hp.com \
--cc=james.l.morris@oracle.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-security-module@vger.kernel.org \
--cc=raghavendra.kt@linux.vnet.ibm.com \
--cc=scott.norton@hp.com \
--cc=sds@tycho.nsa.gov \
--cc=selinux@tycho.nsa.gov \
/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.