[PW_SID:973936] Revert "riscv: Define TASK_SIZE_MAX for __access_ok()"#553
[PW_SID:973936] Revert "riscv: Define TASK_SIZE_MAX for __access_ok()"#553linux-riscv-bot wants to merge 2 commits into
Conversation
This reverts commit ad5643c ("riscv: Define TASK_SIZE_MAX for __access_ok()"). This commit changes TASK_SIZE_MAX to be LONG_MAX to optimize access_ok(), because the previous TASK_SIZE_MAX (default to TASK_SIZE) requires some computation. The reasoning was that all user addresses are less than LONG_MAX, and all kernel addresses are greater than LONG_MAX. Therefore access_ok() can filter kernel addresses. Addresses between TASK_SIZE and LONG_MAX are not valid user addresses, but access_ok() let them pass. That was thought to be okay, because they are not valid addresses at hardware level. Unfortunately, one case is missed: get_user_pages_fast() happily accepts addresses between TASK_SIZE and LONG_MAX. futex(), for instance, uses get_user_pages_fast(). This causes the problem reported by Robert [1]. Therefore, revert this commit. TASK_SIZE_MAX is changed to the default: TASK_SIZE. This unfortunately reduces performance, because TASK_SIZE is more expensive to compute compared to LONG_MAX. But correctness first, we can think about optimization later, if required. Reported-by: <rtm@csail.mit.edu> Closes: https://lore.kernel.org/linux-riscv/77605.1750245028@localhost/ Signed-off-by: Nam Cao <namcao@linutronix.de> Cc: stable@vger.kernel.org Signed-off-by: Linux RISC-V bot <linux.riscv.bot@gmail.com>
|
Patch 1: "Revert "riscv: Define TASK_SIZE_MAX for __access_ok()"" |
|
Patch 1: "Revert "riscv: Define TASK_SIZE_MAX for __access_ok()"" |
|
Patch 1: "Revert "riscv: Define TASK_SIZE_MAX for __access_ok()"" |
|
Patch 1: "Revert "riscv: Define TASK_SIZE_MAX for __access_ok()"" |
|
Patch 1: "Revert "riscv: Define TASK_SIZE_MAX for __access_ok()"" |
|
Patch 1: "Revert "riscv: Define TASK_SIZE_MAX for __access_ok()"" |
|
Patch 1: "Revert "riscv: Define TASK_SIZE_MAX for __access_ok()"" |
|
Patch 1: "Revert "riscv: Define TASK_SIZE_MAX for __access_ok()"" |
|
Patch 1: "Revert "riscv: Define TASK_SIZE_MAX for __access_ok()"" |
|
Patch 1: "Revert "riscv: Define TASK_SIZE_MAX for __access_ok()"" |
|
Patch 1: "Revert "riscv: Define TASK_SIZE_MAX for __access_ok()"" |
|
Patch 1: "Revert "riscv: Define TASK_SIZE_MAX for __access_ok()"" |
6ce2eef to
b5ded79
Compare
PR for series 973936 applied to workflow__riscv__fixes
Name: Revert "riscv: Define TASK_SIZE_MAX for __access_ok()"
URL: https://patchwork.kernel.org/project/linux-riscv/list/?series=973936
Version: 1