mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 19:11:02 +07:00
loopback: off by one in tcm_loop_make_naa_tpg()
This is an off by one 'tgpt' check in tcm_loop_make_naa_tpg() that could result in memory corruption. Signed-off-by: Dan Carpenter <error27@gmail.com> Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
This commit is contained in:
parent
21bca31c96
commit
12f09ccb46
@ -1205,7 +1205,7 @@ struct se_portal_group *tcm_loop_make_naa_tpg(
|
|||||||
tpgt_str += 5; /* Skip ahead of "tpgt_" */
|
tpgt_str += 5; /* Skip ahead of "tpgt_" */
|
||||||
tpgt = (unsigned short int) simple_strtoul(tpgt_str, &end_ptr, 0);
|
tpgt = (unsigned short int) simple_strtoul(tpgt_str, &end_ptr, 0);
|
||||||
|
|
||||||
if (tpgt > TL_TPGS_PER_HBA) {
|
if (tpgt >= TL_TPGS_PER_HBA) {
|
||||||
printk(KERN_ERR "Passed tpgt: %hu exceeds TL_TPGS_PER_HBA:"
|
printk(KERN_ERR "Passed tpgt: %hu exceeds TL_TPGS_PER_HBA:"
|
||||||
" %u\n", tpgt, TL_TPGS_PER_HBA);
|
" %u\n", tpgt, TL_TPGS_PER_HBA);
|
||||||
return ERR_PTR(-EINVAL);
|
return ERR_PTR(-EINVAL);
|
||||||
|
Loading…
Reference in New Issue
Block a user