Skip to content

Commit

Permalink
cve-2015-3290: Check for mishandled modify_ldt() return value
Browse files Browse the repository at this point in the history
The kernel intentionally prevents modify_ldt() return value sign
extension to 64bit long. Some libc versions return the value as is
instead of correctly setting errno. Check for incorrect return value
handling and rectify the problem if needed.

Link: https://lore.kernel.org/ltp/20240613152909.22000-2-mdoucha@suse.cz/
Reviewed-by: Petr Vorel <pvorel@suse.cz>
Signed-off-by: Martin Doucha <mdoucha@suse.cz>
  • Loading branch information
mdoucha authored and pevik committed Jun 21, 2024
1 parent 534da26 commit 53b4930
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions testcases/cve/cve-2015-3290.c
Original file line number Diff line number Diff line change
Expand Up @@ -195,13 +195,26 @@ static void set_ldt(void)
.useable = 0
};

TEST((int)tst_syscall(__NR_modify_ldt, 1, &data_desc,
sizeof(data_desc)));
if (TST_RET == -EINVAL) {
tst_brk(TCONF | TRERRNO,
TEST(tst_syscall(__NR_modify_ldt, 1, &data_desc, sizeof(data_desc)));

/*
* The kernel intentionally casts modify_ldt() return value
* to unsigned int to prevent sign extension to 64 bits. This may
* result in syscall() returning the value as is instead of setting
* errno and returning -1.
*/
if (TST_RET > 0 && ((int)TST_RET) < 0) {
tst_res(TINFO,
"WARNING: Libc mishandled modify_ldt() return value");
TST_ERR = -(int)TST_RET;
TST_RET = -1;
}

if (TST_RET == -1 && TST_ERR == EINVAL) {
tst_brk(TCONF | TTERRNO,
"modify_ldt: 16-bit data segments are probably disabled");
} else if (TST_RET != 0) {
tst_brk(TBROK | TRERRNO, "modify_ldt");
tst_brk(TBROK | TTERRNO, "modify_ldt");
}
}

Expand Down

0 comments on commit 53b4930

Please sign in to comment.