* [PATCH] selinux: reduce locking overhead in inode_free_security()
@ 2015-06-10 20:17 Waiman Long
2015-06-11 12:38 ` Stephen Smalley
2015-06-12 12:32 ` Stephen Smalley
0 siblings, 2 replies; 4+ messages in thread
From: Waiman Long @ 2015-06-10 20:17 UTC (permalink / raw)
To: Paul Moore, Stephen Smalley, Eric Paris, James Morris,
Serge E. Hallyn, selinux
Cc: linux-kernel, linux-security-module, Scott J Norton,
Douglas Hatch, Waiman Long
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. We still need
to do the empty list test inside the lock for safety reason, but it
minimizes the chance of unnecessary spinlock contention.
Signed-off-by: Waiman Long <Waiman.Long@hp.com>
---
security/selinux/hooks.c | 17 +++++++++++++----
1 files changed, 13 insertions(+), 4 deletions(-)
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
index 7dade28..cd736c3 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))
- list_del_init(&isec->list);
- spin_unlock(&sbsec->isec_lock);
+ /*
+ * 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. Lock taking can be slow
+ * especially if the lock is being contended. We do, however, need
+ * to recheck the list again before deleting it for safety.
+ */
+ if (!list_empty(&isec->list)) {
+ spin_lock(&sbsec->isec_lock);
+ if (!list_empty(&isec->list))
+ list_del_init(&isec->list);
+ spin_unlock(&sbsec->isec_lock);
+ }
/*
* The inode may still be referenced in a path walk and
--
1.7.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] selinux: reduce locking overhead in inode_free_security()
2015-06-10 20:17 [PATCH] selinux: reduce locking overhead in inode_free_security() Waiman Long
@ 2015-06-11 12:38 ` Stephen Smalley
2015-06-11 21:17 ` Waiman Long
2015-06-12 12:32 ` Stephen Smalley
1 sibling, 1 reply; 4+ messages in thread
From: Stephen Smalley @ 2015-06-11 12:38 UTC (permalink / raw)
To: Waiman Long, Paul Moore, Eric Paris, James Morris,
Serge E. Hallyn, selinux
Cc: Scott J Norton, linux-security-module, linux-kernel,
Douglas Hatch
On 06/10/2015 04:17 PM, 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. We still need
> to do the empty list test inside the lock for safety reason, but it
> minimizes the chance of unnecessary spinlock contention.
>
> Signed-off-by: Waiman Long <Waiman.Long@hp.com>
> ---
> security/selinux/hooks.c | 17 +++++++++++++----
> 1 files changed, 13 insertions(+), 4 deletions(-)
>
> diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
> index 7dade28..cd736c3 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))
> - list_del_init(&isec->list);
> - spin_unlock(&sbsec->isec_lock);
> + /*
> + * 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. Lock taking can be slow
> + * especially if the lock is being contended. We do, however, need
> + * to recheck the list again before deleting it for safety.
> + */
> + if (!list_empty(&isec->list)) {
> + spin_lock(&sbsec->isec_lock);
> + if (!list_empty(&isec->list))
> + list_del_init(&isec->list);
> + spin_unlock(&sbsec->isec_lock);
> + }
>
> /*
> * The inode may still be referenced in a path walk and
>
Do we really need the second list_empty() test at all?
Once removed, inode security structures are never re-added to the list.
For comparison, inode_sb_list_del() only tests list_empty() outside the
lock.
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] selinux: reduce locking overhead in inode_free_security()
2015-06-11 12:38 ` Stephen Smalley
@ 2015-06-11 21:17 ` Waiman Long
0 siblings, 0 replies; 4+ messages in thread
From: Waiman Long @ 2015-06-11 21:17 UTC (permalink / raw)
To: Stephen Smalley
Cc: Paul Moore, Eric Paris, James Morris, Serge E. Hallyn, selinux,
Scott J Norton, linux-security-module, linux-kernel,
Douglas Hatch
On 06/11/2015 08:38 AM, Stephen Smalley wrote:
> On 06/10/2015 04:17 PM, 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. We still need
>> to do the empty list test inside the lock for safety reason, but it
>> minimizes the chance of unnecessary spinlock contention.
>>
>> Signed-off-by: Waiman Long<Waiman.Long@hp.com>
>> ---
>> security/selinux/hooks.c | 17 +++++++++++++----
>> 1 files changed, 13 insertions(+), 4 deletions(-)
>>
>> diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
>> index 7dade28..cd736c3 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))
>> - list_del_init(&isec->list);
>> - spin_unlock(&sbsec->isec_lock);
>> + /*
>> + * 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. Lock taking can be slow
>> + * especially if the lock is being contended. We do, however, need
>> + * to recheck the list again before deleting it for safety.
>> + */
>> + if (!list_empty(&isec->list)) {
>> + spin_lock(&sbsec->isec_lock);
>> + if (!list_empty(&isec->list))
>> + list_del_init(&isec->list);
>> + spin_unlock(&sbsec->isec_lock);
>> + }
>>
>> /*
>> * The inode may still be referenced in a path walk and
>>
> Do we really need the second list_empty() test at all?
> Once removed, inode security structures are never re-added to the list.
> For comparison, inode_sb_list_del() only tests list_empty() outside the
> lock.
>
Yes, I think we can remove the second list_empty() test. I will update
the patch to do that.
Cheers,
Longman
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] selinux: reduce locking overhead in inode_free_security()
2015-06-10 20:17 [PATCH] selinux: reduce locking overhead in inode_free_security() Waiman Long
2015-06-11 12:38 ` Stephen Smalley
@ 2015-06-12 12:32 ` Stephen Smalley
1 sibling, 0 replies; 4+ messages in thread
From: Stephen Smalley @ 2015-06-12 12:32 UTC (permalink / raw)
To: Waiman Long, Paul Moore, Eric Paris, James Morris,
Serge E. Hallyn, selinux
Cc: Scott J Norton, linux-security-module, linux-kernel,
Douglas Hatch
On 06/10/2015 04:17 PM, 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. We still need
> to do the empty list test inside the lock for safety reason, but it
> minimizes the chance of unnecessary spinlock contention.
>
> Signed-off-by: Waiman Long <Waiman.Long@hp.com>
Acked-by: Stephen Smalley <sds@tycho.nsa.gov>
> ---
> security/selinux/hooks.c | 17 +++++++++++++----
> 1 files changed, 13 insertions(+), 4 deletions(-)
>
> diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
> index 7dade28..cd736c3 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))
> - list_del_init(&isec->list);
> - spin_unlock(&sbsec->isec_lock);
> + /*
> + * 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. Lock taking can be slow
> + * especially if the lock is being contended. We do, however, need
> + * to recheck the list again before deleting it for safety.
> + */
> + if (!list_empty(&isec->list)) {
> + spin_lock(&sbsec->isec_lock);
> + if (!list_empty(&isec->list))
> + list_del_init(&isec->list);
> + spin_unlock(&sbsec->isec_lock);
> + }
>
> /*
> * The inode may still be referenced in a path walk and
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-06-12 12:33 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-10 20:17 [PATCH] selinux: reduce locking overhead in inode_free_security() Waiman Long
2015-06-11 12:38 ` Stephen Smalley
2015-06-11 21:17 ` Waiman Long
2015-06-12 12:32 ` Stephen Smalley
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox