• D
    futex: Check for NULL keys in match_futex · 2bc87203
    Darren Hart 提交于
    If userspace tries to perform a requeue_pi on a non-requeue_pi waiter,
    it will find the futex_q->requeue_pi_key to be NULL and OOPS.
    
    Check for NULL in match_futex() instead of doing explicit NULL pointer
    checks on all call sites.  While match_futex(NULL, NULL) returning
    false is a little odd, it's still correct as we expect valid key
    references.
    Signed-off-by: NDarren Hart <dvhltc@us.ibm.com>
    Cc: Peter Zijlstra <peterz@infradead.org>
    Cc: Ingo Molnar <mingo@elte.hu>
    CC: Eric Dumazet <eric.dumazet@gmail.com>
    CC: Dinakar Guniguntala <dino@in.ibm.com>
    CC: John Stultz <johnstul@us.ibm.com>
    Cc: stable@kernel.org
    LKML-Reference: <4AD60687.10306@us.ibm.com>
    Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
    2bc87203
futex.c 67.8 KB