lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <20210524120834.1580343-1-liushixin2@huawei.com> Date: Mon, 24 May 2021 20:08:34 +0800 From: Liu Shixin <liushixin2@...wei.com> To: Herbert Xu <herbert@...dor.apana.org.au>, "David S. Miller" <davem@...emloft.net> CC: <linux-crypto@...r.kernel.org>, <linux-kernel@...r.kernel.org>, Liu Shixin <liushixin2@...wei.com> Subject: [PATCH -next] crypto: algboss - Replaced simple_strtol() with kstrtouint() The simple_strtol() function is deprecated in some situation since it does not check for the range overflow. Use kstrtouint() instead. Signed-off-by: Liu Shixin <liushixin2@...wei.com> --- crypto/algboss.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto/algboss.c b/crypto/algboss.c index 5ebccbd6b74e..64bb8dab9584 100644 --- a/crypto/algboss.c +++ b/crypto/algboss.c @@ -140,8 +140,8 @@ static int cryptomgr_schedule_probe(struct crypto_larval *larval) param->attrs[i].nu32.attr.rta_len = sizeof(param->attrs[i].nu32); param->attrs[i].nu32.attr.rta_type = CRYPTOA_U32; - param->attrs[i].nu32.data.num = - simple_strtol(name, NULL, 0); + if (unlikely(kstrtouint(name, 0, ¶m->attrs[i].nu32.data.num))) + goto err_free_param; } param->tb[i + 1] = ¶m->attrs[i].attr; -- 2.18.0.huawei.25
Powered by blists - more mailing lists