mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
kgdbts: Read buffer overflow
Prevent write to put_buf[BUFMAX] in kgdb test suite. If put_buf_cnt was BUFMAX - 1 at the earlier test, `\0' is written to put_buf[BUFMAX]. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
This commit is contained in:
parent
84667d4849
commit
b4f1b67be9
1 changed files with 6 additions and 0 deletions
|
@ -712,6 +712,12 @@ static int run_simple_test(int is_get_char, int chr)
|
||||||
|
|
||||||
/* End of packet == #XX so look for the '#' */
|
/* End of packet == #XX so look for the '#' */
|
||||||
if (put_buf_cnt > 3 && put_buf[put_buf_cnt - 3] == '#') {
|
if (put_buf_cnt > 3 && put_buf[put_buf_cnt - 3] == '#') {
|
||||||
|
if (put_buf_cnt >= BUFMAX) {
|
||||||
|
eprintk("kgdbts: ERROR: put buffer overflow on"
|
||||||
|
" '%s' line %i\n", ts.name, ts.idx);
|
||||||
|
put_buf_cnt = 0;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
put_buf[put_buf_cnt] = '\0';
|
put_buf[put_buf_cnt] = '\0';
|
||||||
v2printk("put%i: %s\n", ts.idx, put_buf);
|
v2printk("put%i: %s\n", ts.idx, put_buf);
|
||||||
/* Trigger check here */
|
/* Trigger check here */
|
||||||
|
|
Loading…
Add table
Reference in a new issue