1. 13 Feb, 2021 11 commits
  2. 12 Feb, 2021 18 commits
  3. 11 Feb, 2021 10 commits
  4. 10 Feb, 2021 1 commit
    • Marco Elver's avatar
      bpf_lru_list: Read double-checked variable once without lock · 6df8fb83
      Marco Elver authored
      For double-checked locking in bpf_common_lru_push_free(), node->type is
      read outside the critical section and then re-checked under the lock.
      However, concurrent writes to node->type result in data races.
      
      For example, the following concurrent access was observed by KCSAN:
      
        write to 0xffff88801521bc22 of 1 bytes by task 10038 on cpu 1:
         __bpf_lru_node_move_in        kernel/bpf/bpf_lru_list.c:91
         __local_list_flush            kernel/bpf/bpf_lru_list.c:298
         ...
        read to 0xffff88801521bc22 of 1 bytes by task 10043 on cpu 0:
         bpf_common_lru_push_free      kernel/bpf/bpf_lru_list.c:507
         bpf_lru_push_free             kernel/bpf/bpf_lru_list.c:555
         ...
      
      Fix the data races where node->type is read outside the critical section
      (for double-checked locking) by marking the access with READ_ONCE() as
      well as ensuring the variable is only accessed once.
      
      Fixes: 3a08c2fd ("bpf: LRU List")
      Reported-by: syzbot+3536db46dfa58c573458@syzkaller.appspotmail.com
      Reported-by: syzbot+516acdb03d3e27d91bcd@syzkaller.appspotmail.com
      Signed-off-by: default avatarMarco Elver <elver@google.com>
      Signed-off-by: default avatarAndrii Nakryiko <andrii@kernel.org>
      Acked-by: default avatarMartin KaFai Lau <kafai@fb.com>
      Link: https://lore.kernel.org/bpf/20210209112701.3341724-1-elver@google.com
      6df8fb83