LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: John Johansen <john.johansen@canonical.com>
To: Hamza Mahfooz <someguy@effective-light.com>,
linux-kernel@vger.kernel.org
Cc: James Morris <jmorris@namei.org>,
"Serge E. Hallyn" <serge@hallyn.com>,
linux-security-module@vger.kernel.org
Subject: Re: [PATCH] apparmor: use per file locks for transactional queries
Date: Fri, 30 Jul 2021 16:24:38 -0700 [thread overview]
Message-ID: <de92defa-13f5-6226-10f7-8f182efcfd8e@canonical.com> (raw)
In-Reply-To: <20210730052355.77289-1-someguy@effective-light.com>
On 7/29/21 10:23 PM, Hamza Mahfooz wrote:
> As made mention of in commit 1dea3b41e84c5 ("apparmor: speed up
> transactional queries"), a single lock is currently used to synchronize
> transactional queries. We can, use the lock allocated for each file by
> VFS instead.
>
> Signed-off-by: Hamza Mahfooz <someguy@effective-light.com>
Acked-by: John Johansen <john.johansen@canonical.com>
I'll pull this into my tree asap
> ---
> security/apparmor/apparmorfs.c | 11 +++++------
> 1 file changed, 5 insertions(+), 6 deletions(-)
>
> diff --git a/security/apparmor/apparmorfs.c b/security/apparmor/apparmorfs.c
> index 2ee3b3d29f10..c0b626a271a0 100644
> --- a/security/apparmor/apparmorfs.c
> +++ b/security/apparmor/apparmorfs.c
> @@ -812,8 +812,6 @@ struct multi_transaction {
> };
>
> #define MULTI_TRANSACTION_LIMIT (PAGE_SIZE - sizeof(struct multi_transaction))
> -/* TODO: replace with per file lock */
> -static DEFINE_SPINLOCK(multi_transaction_lock);
>
> static void multi_transaction_kref(struct kref *kref)
> {
> @@ -847,10 +845,10 @@ static void multi_transaction_set(struct file *file,
> AA_BUG(n > MULTI_TRANSACTION_LIMIT);
>
> new->size = n;
> - spin_lock(&multi_transaction_lock);
> + spin_lock(&file->f_lock);
> old = (struct multi_transaction *) file->private_data;
> file->private_data = new;
> - spin_unlock(&multi_transaction_lock);
> + spin_unlock(&file->f_lock);
> put_multi_transaction(old);
> }
>
> @@ -879,9 +877,10 @@ static ssize_t multi_transaction_read(struct file *file, char __user *buf,
> struct multi_transaction *t;
> ssize_t ret;
>
> - spin_lock(&multi_transaction_lock);
> + spin_lock(&file->f_lock);
> t = get_multi_transaction(file->private_data);
> - spin_unlock(&multi_transaction_lock);
> + spin_unlock(&file->f_lock);
> +
> if (!t)
> return 0;
>
>
prev parent reply other threads:[~2021-07-30 23:25 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-07-30 5:23 Hamza Mahfooz
2021-07-30 23:24 ` John Johansen [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=de92defa-13f5-6226-10f7-8f182efcfd8e@canonical.com \
--to=john.johansen@canonical.com \
--cc=jmorris@namei.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-security-module@vger.kernel.org \
--cc=serge@hallyn.com \
--cc=someguy@effective-light.com \
--subject='Re: [PATCH] apparmor: use per file locks for transactional queries' \
/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
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).