Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Skip to content
Commit 1bd64a84 authored by Mark Rutland's avatar Mark Rutland Committed by Amit Pundir
Browse files

UPSTREAM: arm64: vdso: fix clock_getres for 4GiB-aligned res



The vdso tries to check for a NULL res pointer in __kernel_clock_getres,
but only checks the lower 32 bits as is uses CBZ on the W register the
res pointer is held in.

Thus, if the res pointer happened to be aligned to a 4GiB boundary, we'd
spuriously skip storing the timespec to it, while returning a zero error code
to the caller.

Prevent this by checking the whole pointer, using CBZ on the X register
the res pointer is held in.

Fixes: 9031fefd ("arm64: VDSO support")
Signed-off-by: default avatarMark Rutland <mark.rutland@arm.com>
Reported-by: default avatarAndrew Pinski <apinski@cavium.com>
Reported-by: default avatarMark Salyzyn <salyzyn@android.com>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Will Deacon <will.deacon@arm.com>
Signed-off-by: default avatarWill Deacon <will.deacon@arm.com>

Bug: 20045882
Bug: 63737556
Change-Id: Iab5449d8515f9d655e792e3d7ce43a8f016fa2a0

(cherry picked from commit c80ed088a519da53f27b798a69748eaabc66aadf)
Signed-off-by: default avatarAmit Pundir <amit.pundir@linaro.org>
parent 535abe47
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment