From: Frederic Weisbecker <fweisbec@gmail.com>
To: Jonathan Corbet <corbet@lwn.net>
Cc: LKML <linux-kernel@vger.kernel.org>, Ingo Molnar <mingo@elte.hu>,
Mark Gross <mgross@linux.intel.com>
Subject: Re: [PATCH 2/2] pm_qos: clean up racy "name" variable
Date: Fri, 7 Aug 2009 08:03:56 +0200 [thread overview]
Message-ID: <20090807060355.GC9182@nowhere> (raw)
In-Reply-To: <20090806200509.2320a3fd@bike.lwn.net>
On Thu, Aug 06, 2009 at 08:05:09PM -0600, Jonathan Corbet wrote:
> "name" is an awful name for a file-global variable. It was used in
> three different functions, with no mutual exclusion. But it's just a
> tiny, temporary string; let's just move it onto the stack in the
> functions that need it. Also use snprintf() just in case.
>
> Signed-off-by: Jonathan Corbet <corbet@lwn.net>
> ---
> kernel/pm_qos_params.c | 12 +++++++-----
> 1 files changed, 7 insertions(+), 5 deletions(-)
>
> diff --git a/kernel/pm_qos_params.c b/kernel/pm_qos_params.c
> index d96b83e..3db49b9 100644
> --- a/kernel/pm_qos_params.c
> +++ b/kernel/pm_qos_params.c
> @@ -343,18 +343,18 @@ int pm_qos_remove_notifier(int pm_qos_class, struct notifier_block *notifier)
> }
> EXPORT_SYMBOL_GPL(pm_qos_remove_notifier);
>
> -#define PID_NAME_LEN sizeof("process_1234567890")
> -static char name[PID_NAME_LEN];
> +#define PID_NAME_LEN 32
>
> static int pm_qos_power_open(struct inode *inode, struct file *filp)
> {
> int ret;
> long pm_qos_class;
> + char name[PID_NAME_LEN];
>
> pm_qos_class = find_pm_qos_object_by_minor(iminor(inode));
> if (pm_qos_class >= 0) {
> filp->private_data = (void *)pm_qos_class;
> - sprintf(name, "process_%d", current->pid);
> + snprintf(name, PID_NAME_LEN, "process_%d", current->pid);
> ret = pm_qos_add_requirement(pm_qos_class, name,
> PM_QOS_DEFAULT_VALUE);
> if (ret >= 0)
> @@ -366,9 +366,10 @@ static int pm_qos_power_open(struct inode *inode, struct file *filp)
> static int pm_qos_power_release(struct inode *inode, struct file *filp)
> {
> int pm_qos_class;
> + char name[PID_NAME_LEN];
>
> pm_qos_class = (long)filp->private_data;
> - sprintf(name, "process_%d", current->pid);
> + snprintf(name, PID_NAME_LEN, "process_%d", current->pid);
> pm_qos_remove_requirement(pm_qos_class, name);
>
> return 0;
> @@ -379,13 +380,14 @@ static ssize_t pm_qos_power_write(struct file *filp, const char __user *buf,
> {
> s32 value;
> int pm_qos_class;
> + char name[PID_NAME_LEN];
>
> pm_qos_class = (long)filp->private_data;
> if (count != sizeof(s32))
> return -EINVAL;
> if (copy_from_user(&value, buf, sizeof(s32)))
> return -EFAULT;
> - sprintf(name, "process_%d", current->pid);
> + snprintf(name, PID_NAME_LEN, "process_%d", current->pid);
> pm_qos_update_requirement(pm_qos_class, name, value);
>
> return sizeof(s32);
Oh, and nothing was protecting this string between open/write/release...
So, double effect, bkl killing, and race condition fixed!
Reviewed-by: Frederic Weisbecker <fweisbec@gmail.com> (if that matters, I
don't know much this file...)
prev parent reply other threads:[~2009-08-07 6:04 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-08-06 19:58 [PATCH 0/2] pm_qos: BKL removal and cleanup Jonathan Corbet
2009-08-06 19:59 ` [PATCH 1/2] pm_qos: remove BKL Jonathan Corbet
2009-08-07 2:03 ` Frederic Weisbecker
2009-08-07 5:54 ` Frederic Weisbecker
2009-08-07 15:08 ` Jonathan Corbet
2009-08-08 0:31 ` Frederic Weisbecker
2009-08-06 20:01 ` [PATCH 2/2] pm_qos: clean up racy "name" variable Jonathan Corbet
2009-08-07 2:05 ` Jonathan Corbet
2009-08-07 6:03 ` Frederic Weisbecker [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=20090807060355.GC9182@nowhere \
--to=fweisbec@gmail.com \
--cc=corbet@lwn.net \
--cc=linux-kernel@vger.kernel.org \
--cc=mgross@linux.intel.com \
--cc=mingo@elte.hu \
/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.