cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

testing_helpers.h (810B)


      1/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
      2/* Copyright (C) 2020 Facebook, Inc. */
      3#include <stdbool.h>
      4#include <bpf/bpf.h>
      5#include <bpf/libbpf.h>
      6
      7int parse_num_list(const char *s, bool **set, int *set_len);
      8__u32 link_info_prog_id(const struct bpf_link *link, struct bpf_link_info *info);
      9int bpf_prog_test_load(const char *file, enum bpf_prog_type type,
     10		       struct bpf_object **pobj, int *prog_fd);
     11int bpf_test_load_program(enum bpf_prog_type type, const struct bpf_insn *insns,
     12			  size_t insns_cnt, const char *license,
     13			  __u32 kern_version, char *log_buf,
     14			  size_t log_buf_sz);
     15
     16/*
     17 * below function is exported for testing in prog_test test
     18 */
     19struct test_filter_set;
     20int parse_test_list(const char *s,
     21		    struct test_filter_set *test_set,
     22		    bool is_glob_pattern);