소스 검색

kgdb: Read buffer overflow

Roel Kluin reported an error found with Parfait.  Where we want to
ensure that that kgdb_info[-1] never gets accessed.

Also check to ensure any negative tid does not exceed the size of the
shadow CPU array, else report critical debug context because it is an
internal kgdb failure.

Reported-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel 15 년 전
부모
커밋
84667d4849
1개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. 6 1
      kernel/kgdb.c

+ 6 - 1
kernel/kgdb.c

@@ -541,12 +541,17 @@ static struct task_struct *getthread(struct pt_regs *regs, int tid)
 	 */
 	 */
 	if (tid == 0 || tid == -1)
 	if (tid == 0 || tid == -1)
 		tid = -atomic_read(&kgdb_active) - 2;
 		tid = -atomic_read(&kgdb_active) - 2;
-	if (tid < 0) {
+	if (tid < -1 && tid > -NR_CPUS - 2) {
 		if (kgdb_info[-tid - 2].task)
 		if (kgdb_info[-tid - 2].task)
 			return kgdb_info[-tid - 2].task;
 			return kgdb_info[-tid - 2].task;
 		else
 		else
 			return idle_task(-tid - 2);
 			return idle_task(-tid - 2);
 	}
 	}
+	if (tid <= 0) {
+		printk(KERN_ERR "KGDB: Internal thread select error\n");
+		dump_stack();
+		return NULL;
+	}
 
 
 	/*
 	/*
 	 * find_task_by_pid_ns() does not take the tasklist lock anymore
 	 * find_task_by_pid_ns() does not take the tasklist lock anymore