From: Dan Carpenter <dan.carpenter@oracle.com>
To: "Rafael J. Wysocki" <rjw@rjwysocki.net>,
Fabian Frederick <fabf@skynet.be>
Cc: Len Brown <len.brown@intel.com>, Pavel Machek <pavel@ucw.cz>,
linux-pm@vger.kernel.org, kernel-janitors@vger.kernel.org
Subject: [patch] PM / hibernate: memory corruption in resumedelay_setup()
Date: Wed, 14 May 2014 12:57:20 +0000 [thread overview]
Message-ID: <20140514125720.GC14571@mwanda> (raw)
"resume_delay" is not an unsigned long, it's an int, so this will
corrupt memory on 64 bit systems.
Fixes: 317cf7e5e85e ('PM / hibernate: convert simple_strtoul to kstrtoul')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
diff --git a/kernel/power/hibernate.c b/kernel/power/hibernate.c
index 2377ff7..3659b26 100644
--- a/kernel/power/hibernate.c
+++ b/kernel/power/hibernate.c
@@ -1115,8 +1115,9 @@ static int __init resumewait_setup(char *str)
static int __init resumedelay_setup(char *str)
{
- int rc = kstrtoul(str, 0, (unsigned long *)&resume_delay);
+ int rc;
+ rc = kstrtoint(str, 0, &resume_delay);
if (rc)
return rc;
return 1;
WARNING: multiple messages have this Message-ID (diff)
From: Dan Carpenter <dan.carpenter@oracle.com>
To: "Rafael J. Wysocki" <rjw@rjwysocki.net>,
Fabian Frederick <fabf@skynet.be>
Cc: Len Brown <len.brown@intel.com>, Pavel Machek <pavel@ucw.cz>,
linux-pm@vger.kernel.org, kernel-janitors@vger.kernel.org
Subject: [patch] PM / hibernate: memory corruption in resumedelay_setup()
Date: Wed, 14 May 2014 15:57:20 +0300 [thread overview]
Message-ID: <20140514125720.GC14571@mwanda> (raw)
"resume_delay" is not an unsigned long, it's an int, so this will
corrupt memory on 64 bit systems.
Fixes: 317cf7e5e85e ('PM / hibernate: convert simple_strtoul to kstrtoul')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
diff --git a/kernel/power/hibernate.c b/kernel/power/hibernate.c
index 2377ff7..3659b26 100644
--- a/kernel/power/hibernate.c
+++ b/kernel/power/hibernate.c
@@ -1115,8 +1115,9 @@ static int __init resumewait_setup(char *str)
static int __init resumedelay_setup(char *str)
{
- int rc = kstrtoul(str, 0, (unsigned long *)&resume_delay);
+ int rc;
+ rc = kstrtoint(str, 0, &resume_delay);
if (rc)
return rc;
return 1;
next reply other threads:[~2014-05-14 12:57 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-14 12:57 Dan Carpenter [this message]
2014-05-14 12:57 ` [patch] PM / hibernate: memory corruption in resumedelay_setup() Dan Carpenter
2014-05-14 15:56 ` Pavel Machek
2014-05-14 15:56 ` Pavel Machek
2014-05-14 16:08 ` [patch v2] " Dan Carpenter
2014-05-14 16:08 ` Dan Carpenter
2014-05-14 20:29 ` Pavel Machek
2014-05-14 20:29 ` Pavel Machek
2014-05-19 23:23 ` Rafael J. Wysocki
2014-05-19 23:23 ` Rafael J. Wysocki
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=20140514125720.GC14571@mwanda \
--to=dan.carpenter@oracle.com \
--cc=fabf@skynet.be \
--cc=kernel-janitors@vger.kernel.org \
--cc=len.brown@intel.com \
--cc=linux-pm@vger.kernel.org \
--cc=pavel@ucw.cz \
--cc=rjw@rjwysocki.net \
/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.