* [PATCH v2] platform/x86: think-lmi: Fix current password length check
@ 2026-08-13 8:20 Thorsten Blum
2026-08-13 13:52 ` Mark Pearson
2026-08-18 11:28 ` Ilpo Järvinen
0 siblings, 2 replies; 6+ messages in thread
From: Thorsten Blum @ 2026-08-13 8: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>
---
Changes in v2:
- Keep and reword the newline comment
- v1: https://lore.kernel.org/r/20260810132018.156868-3-thorsten.blum@linux.dev/
---
drivers/platform/x86/lenovo/think-lmi.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/platform/x86/lenovo/think-lmi.c b/drivers/platform/x86/lenovo/think-lmi.c
index e215e86e3db7..d0ceb6aaa69e 100644
--- a/drivers/platform/x86/lenovo/think-lmi.c
+++ b/drivers/platform/x86/lenovo/think-lmi.c
@@ -438,14 +438,14 @@ static ssize_t current_password_store(struct kobject *kobj,
struct tlmi_pwd_setting *setting = to_tlmi_pwd_setting(kobj);
size_t pwdlen;
- pwdlen = strlen(buf);
+ /* Strip newline; setting password won't work if one is present. */
+ pwdlen = strchrnul(buf, '\n') - 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] 6+ messages in thread* Re: [PATCH v2] platform/x86: think-lmi: Fix current password length check 2026-08-13 8:20 [PATCH v2] platform/x86: think-lmi: Fix current password length check Thorsten Blum @ 2026-08-13 13:52 ` Mark Pearson 2026-08-18 11:28 ` Ilpo Järvinen 1 sibling, 0 replies; 6+ messages in thread From: Mark Pearson @ 2026-08-13 13:52 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 Thanks Thorsten On Thu, Aug 13, 2026, at 4: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> > --- > Changes in v2: > - Keep and reword the newline comment > - v1: > https://lore.kernel.org/r/20260810132018.156868-3-thorsten.blum@linux.dev/ > --- > drivers/platform/x86/lenovo/think-lmi.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/drivers/platform/x86/lenovo/think-lmi.c > b/drivers/platform/x86/lenovo/think-lmi.c > index e215e86e3db7..d0ceb6aaa69e 100644 > --- a/drivers/platform/x86/lenovo/think-lmi.c > +++ b/drivers/platform/x86/lenovo/think-lmi.c > @@ -438,14 +438,14 @@ static ssize_t current_password_store(struct > kobject *kobj, > struct tlmi_pwd_setting *setting = to_tlmi_pwd_setting(kobj); > size_t pwdlen; > > - pwdlen = strlen(buf); > + /* Strip newline; setting password won't work if one is present. */ > + pwdlen = strchrnul(buf, '\n') - 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; > } Reviewed-by: Mark Pearson <mpearson-lenovo@squebb.ca> Mark ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2] platform/x86: think-lmi: Fix current password length check 2026-08-13 8:20 [PATCH v2] platform/x86: think-lmi: Fix current password length check Thorsten Blum 2026-08-13 13:52 ` Mark Pearson @ 2026-08-18 11:28 ` Ilpo Järvinen 2026-08-18 13:15 ` Thorsten Blum 1 sibling, 1 reply; 6+ messages in thread From: Ilpo Järvinen @ 2026-08-18 11:28 UTC (permalink / raw) To: Thorsten Blum Cc: Mark Pearson, Derek J. Clark, Hans de Goede, stable, Mark Pearson, platform-driver-x86, LKML On Thu, 13 Aug 2026, 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> > --- > Changes in v2: > - Keep and reword the newline comment > - v1: https://lore.kernel.org/r/20260810132018.156868-3-thorsten.blum@linux.dev/ > --- > drivers/platform/x86/lenovo/think-lmi.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/drivers/platform/x86/lenovo/think-lmi.c b/drivers/platform/x86/lenovo/think-lmi.c > index e215e86e3db7..d0ceb6aaa69e 100644 > --- a/drivers/platform/x86/lenovo/think-lmi.c > +++ b/drivers/platform/x86/lenovo/think-lmi.c > @@ -438,14 +438,14 @@ static ssize_t current_password_store(struct kobject *kobj, > struct tlmi_pwd_setting *setting = to_tlmi_pwd_setting(kobj); > size_t pwdlen; > > - pwdlen = strlen(buf); > + /* Strip newline; setting password won't work if one is present. */ > + pwdlen = strchrnul(buf, '\n') - 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'; Hi, I don't understand why is this strscpy() -> memcpy() conversion required? Wouldn't it work with: strscpy(..., pwdlen); ? strscpy() forces NUL termination and there shouldn't be any NULs or newlines before pwdlen. -- i. ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2] platform/x86: think-lmi: Fix current password length check 2026-08-18 11:28 ` Ilpo Järvinen @ 2026-08-18 13:15 ` Thorsten Blum 2026-08-18 13:20 ` Ilpo Järvinen 0 siblings, 1 reply; 6+ messages in thread From: Thorsten Blum @ 2026-08-18 13:15 UTC (permalink / raw) To: Ilpo Järvinen Cc: Mark Pearson, Derek J. Clark, Hans de Goede, stable, Mark Pearson, platform-driver-x86, LKML On Tue, Aug 18, 2026 at 02:28:50PM +0300, Ilpo Järvinen wrote: > On Thu, 13 Aug 2026, 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> > > --- > > Changes in v2: > > - Keep and reword the newline comment > > - v1: https://lore.kernel.org/r/20260810132018.156868-3-thorsten.blum@linux.dev/ > > --- > > drivers/platform/x86/lenovo/think-lmi.c | 8 ++++---- > > 1 file changed, 4 insertions(+), 4 deletions(-) > > > > diff --git a/drivers/platform/x86/lenovo/think-lmi.c b/drivers/platform/x86/lenovo/think-lmi.c > > index e215e86e3db7..d0ceb6aaa69e 100644 > > --- a/drivers/platform/x86/lenovo/think-lmi.c > > +++ b/drivers/platform/x86/lenovo/think-lmi.c > > @@ -438,14 +438,14 @@ static ssize_t current_password_store(struct kobject *kobj, > > struct tlmi_pwd_setting *setting = to_tlmi_pwd_setting(kobj); > > size_t pwdlen; > > > > - pwdlen = strlen(buf); > > + /* Strip newline; setting password won't work if one is present. */ > > + pwdlen = strchrnul(buf, '\n') - 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'; > > Hi, > > I don't understand why is this strscpy() -> memcpy() conversion required? It's not required, strscpy() would also work. > Wouldn't it work with: > > strscpy(..., pwdlen); > > ? However, strscpy(setting->password, buf, pwdlen) wouldn't work because pwdlen is the number of characters to copy, but the destination buffer size also needs to include room for the NUL terminator. Since there is no NUL before pwdlen, it would copy only pwdlen - 1 characters and set setting->password[pwdlen - 1] = '\0'. strscpy(setting->password, buf, pwdlen + 1) would work, but since we already know that exactly pwdlen bytes need to be copied, memcpy() is sufficient. ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2] platform/x86: think-lmi: Fix current password length check 2026-08-18 13:15 ` Thorsten Blum @ 2026-08-18 13:20 ` Ilpo Järvinen 2026-08-18 13:39 ` Thorsten Blum 0 siblings, 1 reply; 6+ messages in thread From: Ilpo Järvinen @ 2026-08-18 13:20 UTC (permalink / raw) To: Thorsten Blum Cc: Mark Pearson, Derek J. Clark, Hans de Goede, stable, Mark Pearson, platform-driver-x86, LKML [-- Attachment #1: Type: text/plain, Size: 3232 bytes --] On Tue, 18 Aug 2026, Thorsten Blum wrote: > On Tue, Aug 18, 2026 at 02:28:50PM +0300, Ilpo Järvinen wrote: > > On Thu, 13 Aug 2026, 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> > > > --- > > > Changes in v2: > > > - Keep and reword the newline comment > > > - v1: https://lore.kernel.org/r/20260810132018.156868-3-thorsten.blum@linux.dev/ > > > --- > > > drivers/platform/x86/lenovo/think-lmi.c | 8 ++++---- > > > 1 file changed, 4 insertions(+), 4 deletions(-) > > > > > > diff --git a/drivers/platform/x86/lenovo/think-lmi.c b/drivers/platform/x86/lenovo/think-lmi.c > > > index e215e86e3db7..d0ceb6aaa69e 100644 > > > --- a/drivers/platform/x86/lenovo/think-lmi.c > > > +++ b/drivers/platform/x86/lenovo/think-lmi.c > > > @@ -438,14 +438,14 @@ static ssize_t current_password_store(struct kobject *kobj, > > > struct tlmi_pwd_setting *setting = to_tlmi_pwd_setting(kobj); > > > size_t pwdlen; > > > > > > - pwdlen = strlen(buf); > > > + /* Strip newline; setting password won't work if one is present. */ > > > + pwdlen = strchrnul(buf, '\n') - 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'; > > > > Hi, > > > > I don't understand why is this strscpy() -> memcpy() conversion required? > > It's not required, strscpy() would also work. > > > Wouldn't it work with: > > > > strscpy(..., pwdlen); > > > > ? > > However, strscpy(setting->password, buf, pwdlen) wouldn't work because > pwdlen is the number of characters to copy, but the destination buffer > size also needs to include room for the NUL terminator. Since there is > no NUL before pwdlen, it would copy only pwdlen - 1 characters and set > setting->password[pwdlen - 1] = '\0'. Okay, I was thinking in my mind if I've a off-by-one error in my suggestion but didn't want to spend too much time on figuring it out. > strscpy(setting->password, buf, pwdlen + 1) would work, but since we > already know that exactly pwdlen bytes need to be copied, memcpy() is > sufficient. It may work, but since you then go to nul terminate it yourself, I think using the existing function is way better than memcpy() + custom nul termination code. -- i. ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2] platform/x86: think-lmi: Fix current password length check 2026-08-18 13:20 ` Ilpo Järvinen @ 2026-08-18 13:39 ` Thorsten Blum 0 siblings, 0 replies; 6+ messages in thread From: Thorsten Blum @ 2026-08-18 13:39 UTC (permalink / raw) To: Ilpo Järvinen Cc: Mark Pearson, Derek J. Clark, Hans de Goede, stable, Mark Pearson, platform-driver-x86, LKML On Tue, Aug 18, 2026 at 04:20:10PM +0300, Ilpo Järvinen wrote: > On Tue, 18 Aug 2026, Thorsten Blum wrote: > > On Tue, Aug 18, 2026 at 02:28:50PM +0300, Ilpo Järvinen wrote: > > > On Thu, 13 Aug 2026, 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> > > > > --- > > > > Changes in v2: > > > > - Keep and reword the newline comment > > > > - v1: https://lore.kernel.org/r/20260810132018.156868-3-thorsten.blum@linux.dev/ > > > > --- > > > > drivers/platform/x86/lenovo/think-lmi.c | 8 ++++---- > > > > 1 file changed, 4 insertions(+), 4 deletions(-) > > > > > > > > diff --git a/drivers/platform/x86/lenovo/think-lmi.c b/drivers/platform/x86/lenovo/think-lmi.c > > > > index e215e86e3db7..d0ceb6aaa69e 100644 > > > > --- a/drivers/platform/x86/lenovo/think-lmi.c > > > > +++ b/drivers/platform/x86/lenovo/think-lmi.c > > > > @@ -438,14 +438,14 @@ static ssize_t current_password_store(struct kobject *kobj, > > > > struct tlmi_pwd_setting *setting = to_tlmi_pwd_setting(kobj); > > > > size_t pwdlen; > > > > > > > > - pwdlen = strlen(buf); > > > > + /* Strip newline; setting password won't work if one is present. */ > > > > + pwdlen = strchrnul(buf, '\n') - 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'; > > > > > > Hi, > > > > > > I don't understand why is this strscpy() -> memcpy() conversion required? > > > > It's not required, strscpy() would also work. > > > > > Wouldn't it work with: > > > > > > strscpy(..., pwdlen); > > > > > > ? > > > > However, strscpy(setting->password, buf, pwdlen) wouldn't work because > > pwdlen is the number of characters to copy, but the destination buffer > > size also needs to include room for the NUL terminator. Since there is > > no NUL before pwdlen, it would copy only pwdlen - 1 characters and set > > setting->password[pwdlen - 1] = '\0'. > > Okay, I was thinking in my mind if I've a off-by-one error in my > suggestion but didn't want to spend too much time on figuring it out. > > > strscpy(setting->password, buf, pwdlen + 1) would work, but since we > > already know that exactly pwdlen bytes need to be copied, memcpy() is > > sufficient. > > It may work, but since you then go to nul terminate it yourself, I think > using the existing function is way better than memcpy() + custom nul > termination code. I used memcpy() because we already determined the string length pwdlen, which strscpy() would have to determine again internally. The performance difference shouldn't matter here, so it's mostly a matter of style or personal preference. I'm fine either way. Thanks, Thorsten ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-08-18 13:39 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-08-13 8:20 [PATCH v2] platform/x86: think-lmi: Fix current password length check Thorsten Blum 2026-08-13 13:52 ` Mark Pearson 2026-08-18 11:28 ` Ilpo Järvinen 2026-08-18 13:15 ` Thorsten Blum 2026-08-18 13:20 ` Ilpo Järvinen 2026-08-18 13:39 ` Thorsten Blum
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.