All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] platform/x86: think-lmi: Fix current password length check
@ 2026-08-10 13:20 Thorsten Blum
  2026-08-11 19:29 ` Mark Pearson
  0 siblings, 1 reply; 4+ messages in thread
From: Thorsten Blum @ 2026-08-10 13:20 UTC (permalink / raw)
  To: Mark Pearson, Derek J. Clark, Hans de Goede, Ilpo Järvinen
  Cc: Thorsten Blum, stable, Mark Pearson, platform-driver-x86,
	linux-kernel

current_password_store() checks the password length before removing the
trailing newline, which can reject valid passwords that are exactly
->maxlen bytes long.

It also passes ->maxlen to strscpy(), which truncates passwords without
a newline.

Use strchrnul() to measure the password length up to the newline, then
copy that many bytes and add a trailing NUL terminator.

Fixes: a40cd7ef22fb ("platform/x86: think-lmi: Add WMI interface support on Lenovo platforms")
Cc: stable@vger.kernel.org
Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
---
 drivers/platform/x86/lenovo/think-lmi.c | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/drivers/platform/x86/lenovo/think-lmi.c b/drivers/platform/x86/lenovo/think-lmi.c
index e215e86e3db7..860224dc8c21 100644
--- a/drivers/platform/x86/lenovo/think-lmi.c
+++ b/drivers/platform/x86/lenovo/think-lmi.c
@@ -436,16 +436,14 @@ static ssize_t current_password_store(struct kobject *kobj,
 				      const char *buf, size_t count)
 {
 	struct tlmi_pwd_setting *setting = to_tlmi_pwd_setting(kobj);
-	size_t pwdlen;
+	size_t pwdlen = strchrnul(buf, '\n') - buf;
 
-	pwdlen = strlen(buf);
 	/* pwdlen == 0 is allowed to clear the password */
 	if (pwdlen && ((pwdlen < setting->minlen) || (pwdlen > setting->maxlen)))
 		return -EINVAL;
 
-	strscpy(setting->password, buf, setting->maxlen);
-	/* Strip out CR if one is present, setting password won't work if it is present */
-	strreplace(setting->password, '\n', '\0');
+	memcpy(setting->password, buf, pwdlen);
+	setting->password[pwdlen] = '\0';
 	return count;
 }
 

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] platform/x86: think-lmi: Fix current password length check
  2026-08-10 13:20 [PATCH] platform/x86: think-lmi: Fix current password length check Thorsten Blum
@ 2026-08-11 19:29 ` Mark Pearson
  2026-08-11 20:29   ` Thorsten Blum
  0 siblings, 1 reply; 4+ messages in thread
From: Mark Pearson @ 2026-08-11 19:29 UTC (permalink / raw)
  To: Thorsten Blum, Derek J . Clark, Hans de Goede, Ilpo Järvinen
  Cc: stable, Mark Pearson, platform-driver-x86@vger.kernel.org,
	linux-kernel

On Mon, Aug 10, 2026, at 9:20 AM, Thorsten Blum wrote:
> current_password_store() checks the password length before removing the
> trailing newline, which can reject valid passwords that are exactly
> ->maxlen bytes long.
>
> It also passes ->maxlen to strscpy(), which truncates passwords without
> a newline.
>
> Use strchrnul() to measure the password length up to the newline, then
> copy that many bytes and add a trailing NUL terminator.
>
> Fixes: a40cd7ef22fb ("platform/x86: think-lmi: Add WMI interface 
> support on Lenovo platforms")
> Cc: stable@vger.kernel.org
> Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
> ---
>  drivers/platform/x86/lenovo/think-lmi.c | 8 +++-----
>  1 file changed, 3 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/platform/x86/lenovo/think-lmi.c 
> b/drivers/platform/x86/lenovo/think-lmi.c
> index e215e86e3db7..860224dc8c21 100644
> --- a/drivers/platform/x86/lenovo/think-lmi.c
> +++ b/drivers/platform/x86/lenovo/think-lmi.c
> @@ -436,16 +436,14 @@ static ssize_t current_password_store(struct 
> kobject *kobj,
>  				      const char *buf, size_t count)
>  {
>  	struct tlmi_pwd_setting *setting = to_tlmi_pwd_setting(kobj);
> -	size_t pwdlen;
> +	size_t pwdlen = strchrnul(buf, '\n') - buf;
> 
> -	pwdlen = strlen(buf);
>  	/* pwdlen == 0 is allowed to clear the password */
>  	if (pwdlen && ((pwdlen < setting->minlen) || (pwdlen > setting->maxlen)))
>  		return -EINVAL;
> 
> -	strscpy(setting->password, buf, setting->maxlen);
> -	/* Strip out CR if one is present, setting password won't work if it 
> is present */
> -	strreplace(setting->password, '\n', '\0');
> +	memcpy(setting->password, buf, pwdlen);
> +	setting->password[pwdlen] = '\0';
>  	return count;
>  }

Change is good.
Only minor note is that I hate to lose the comment explaining why we're losing the CR. Can we put that back in above the strchrnul operation?

Mark

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] platform/x86: think-lmi: Fix current password length check
  2026-08-11 19:29 ` Mark Pearson
@ 2026-08-11 20:29   ` Thorsten Blum
  2026-08-12  0:18     ` Mark Pearson
  0 siblings, 1 reply; 4+ messages in thread
From: Thorsten Blum @ 2026-08-11 20:29 UTC (permalink / raw)
  To: Mark Pearson
  Cc: Derek J . Clark, Hans de Goede, Ilpo Järvinen, stable,
	Mark Pearson, platform-driver-x86@vger.kernel.org, linux-kernel

On Tue, Aug 11, 2026 at 03:29:28PM -0400, Mark Pearson wrote:
> On Mon, Aug 10, 2026, at 9:20 AM, Thorsten Blum wrote:
> > current_password_store() checks the password length before removing the
> > trailing newline, which can reject valid passwords that are exactly
> > ->maxlen bytes long.
> >
> > It also passes ->maxlen to strscpy(), which truncates passwords without
> > a newline.
> >
> > Use strchrnul() to measure the password length up to the newline, then
> > copy that many bytes and add a trailing NUL terminator.
> >
> > Fixes: a40cd7ef22fb ("platform/x86: think-lmi: Add WMI interface 
> > support on Lenovo platforms")
> > Cc: stable@vger.kernel.org
> > Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
> > ---
> >  drivers/platform/x86/lenovo/think-lmi.c | 8 +++-----
> >  1 file changed, 3 insertions(+), 5 deletions(-)
> >
> > diff --git a/drivers/platform/x86/lenovo/think-lmi.c 
> > b/drivers/platform/x86/lenovo/think-lmi.c
> > index e215e86e3db7..860224dc8c21 100644
> > --- a/drivers/platform/x86/lenovo/think-lmi.c
> > +++ b/drivers/platform/x86/lenovo/think-lmi.c
> > @@ -436,16 +436,14 @@ static ssize_t current_password_store(struct 
> > kobject *kobj,
> >  				      const char *buf, size_t count)
> >  {
> >  	struct tlmi_pwd_setting *setting = to_tlmi_pwd_setting(kobj);
> > -	size_t pwdlen;
> > +	size_t pwdlen = strchrnul(buf, '\n') - buf;
> > 
> > -	pwdlen = strlen(buf);
> >  	/* pwdlen == 0 is allowed to clear the password */
> >  	if (pwdlen && ((pwdlen < setting->minlen) || (pwdlen > setting->maxlen)))
> >  		return -EINVAL;
> > 
> > -	strscpy(setting->password, buf, setting->maxlen);
> > -	/* Strip out CR if one is present, setting password won't work if it 
> > is present */
> > -	strreplace(setting->password, '\n', '\0');
> > +	memcpy(setting->password, buf, pwdlen);
> > +	setting->password[pwdlen] = '\0';
> >  	return count;
> >  }
> 
> Change is good.
> Only minor note is that I hate to lose the comment explaining why
> we're losing the CR. Can we put that back in above the strchrnul
> operation?

I removed the comment because '\r' is CR and '\n' is LF. Happy to add it
back if needed, but maybe a better version would be:

/* Strip newline; setting password won't work if one is present. */

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] platform/x86: think-lmi: Fix current password length check
  2026-08-11 20:29   ` Thorsten Blum
@ 2026-08-12  0:18     ` Mark Pearson
  0 siblings, 0 replies; 4+ messages in thread
From: Mark Pearson @ 2026-08-12  0:18 UTC (permalink / raw)
  To: Thorsten Blum
  Cc: Derek J . Clark, Hans de Goede, Ilpo Järvinen, stable,
	Mark Pearson, platform-driver-x86@vger.kernel.org, linux-kernel



On Tue, Aug 11, 2026, at 4:29 PM, Thorsten Blum wrote:
> On Tue, Aug 11, 2026 at 03:29:28PM -0400, Mark Pearson wrote:
>> On Mon, Aug 10, 2026, at 9:20 AM, Thorsten Blum wrote:
>> > current_password_store() checks the password length before removing the
>> > trailing newline, which can reject valid passwords that are exactly
>> > ->maxlen bytes long.
>> >
>> > It also passes ->maxlen to strscpy(), which truncates passwords without
>> > a newline.
>> >
>> > Use strchrnul() to measure the password length up to the newline, then
>> > copy that many bytes and add a trailing NUL terminator.
>> >
>> > Fixes: a40cd7ef22fb ("platform/x86: think-lmi: Add WMI interface 
>> > support on Lenovo platforms")
>> > Cc: stable@vger.kernel.org
>> > Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
>> > ---
>> >  drivers/platform/x86/lenovo/think-lmi.c | 8 +++-----
>> >  1 file changed, 3 insertions(+), 5 deletions(-)
>> >
>> > diff --git a/drivers/platform/x86/lenovo/think-lmi.c 
>> > b/drivers/platform/x86/lenovo/think-lmi.c
>> > index e215e86e3db7..860224dc8c21 100644
>> > --- a/drivers/platform/x86/lenovo/think-lmi.c
>> > +++ b/drivers/platform/x86/lenovo/think-lmi.c
>> > @@ -436,16 +436,14 @@ static ssize_t current_password_store(struct 
>> > kobject *kobj,
>> >  				      const char *buf, size_t count)
>> >  {
>> >  	struct tlmi_pwd_setting *setting = to_tlmi_pwd_setting(kobj);
>> > -	size_t pwdlen;
>> > +	size_t pwdlen = strchrnul(buf, '\n') - buf;
>> > 
>> > -	pwdlen = strlen(buf);
>> >  	/* pwdlen == 0 is allowed to clear the password */
>> >  	if (pwdlen && ((pwdlen < setting->minlen) || (pwdlen > setting->maxlen)))
>> >  		return -EINVAL;
>> > 
>> > -	strscpy(setting->password, buf, setting->maxlen);
>> > -	/* Strip out CR if one is present, setting password won't work if it 
>> > is present */
>> > -	strreplace(setting->password, '\n', '\0');
>> > +	memcpy(setting->password, buf, pwdlen);
>> > +	setting->password[pwdlen] = '\0';
>> >  	return count;
>> >  }
>> 
>> Change is good.
>> Only minor note is that I hate to lose the comment explaining why
>> we're losing the CR. Can we put that back in above the strchrnul
>> operation?
>
> I removed the comment because '\r' is CR and '\n' is LF. Happy to add it
> back if needed, but maybe a better version would be:
>
> /* Strip newline; setting password won't work if one is present. */

Good point. Yes please.

Mark

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-08-12  0:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-10 13:20 [PATCH] platform/x86: think-lmi: Fix current password length check Thorsten Blum
2026-08-11 19:29 ` Mark Pearson
2026-08-11 20:29   ` Thorsten Blum
2026-08-12  0:18     ` Mark Pearson

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.