diff options
author | 2018-04-02 10:10:04 -0400 | |
---|---|---|
committer | 2018-04-02 10:10:04 -0400 | |
commit | 291a2717df0cd44dff69b34ba552c4ffd56c671a (patch) | |
tree | 6228e4db60cf0d14be60397cb186c337a88e9478 | |
parent | 20d61111ded4dcba2af4a4ab4b7ed59982296aeb (diff) | |
parent | e3c2247579b1387ce62e040d215270d9c82971c8 (diff) | |
download | linux-yocto-4.8-standard/mti-malta64.tar.gz linux-yocto-4.8-standard/mti-malta64.tar.bz2 linux-yocto-4.8-standard/mti-malta64.zip |
Merge branch 'standard/base' into standard/mti-malta64standard/mti-malta64
-rw-r--r-- | kernel/bpf/verifier.c | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c index 48fe5d4da143..d2e228eeb733 100644 --- a/kernel/bpf/verifier.c +++ b/kernel/bpf/verifier.c @@ -706,12 +706,13 @@ static int check_ctx_access(struct verifier_env *env, int off, int size, return -EACCES; } -static bool is_pointer_value(struct verifier_env *env, int regno) +static bool __is_pointer_value(bool allow_ptr_leaks, + const struct reg_state *reg) { - if (env->allow_ptr_leaks) + if (allow_ptr_leaks) return false; - switch (env->cur_state.regs[regno].type) { + switch (reg->type) { case UNKNOWN_VALUE: case CONST_IMM: return false; @@ -720,6 +721,12 @@ static bool is_pointer_value(struct verifier_env *env, int regno) } } +static bool is_pointer_value(struct verifier_env *env, int regno) +{ + return __is_pointer_value(env->allow_ptr_leaks, &env->cur_state.regs[regno]); +} + + static int check_ptr_alignment(struct verifier_env *env, struct reg_state *reg, int off, int size) { @@ -2147,9 +2154,9 @@ static bool states_equal(struct verifier_state *old, struct verifier_state *cur) if (memcmp(rold, rcur, sizeof(*rold)) == 0) continue; - if (rold->type == NOT_INIT || - (rold->type == UNKNOWN_VALUE && rcur->type != NOT_INIT)) + (rold->type == UNKNOWN_VALUE && rcur->type != NOT_INIT && + !__is_pointer_value(capable(CAP_SYS_ADMIN), rcur))) continue; if (rold->type == PTR_TO_PACKET && rcur->type == PTR_TO_PACKET && |