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

run_cookie_uid_helper_example.sh (341B)


      1#!/bin/bash
      2# SPDX-License-Identifier: GPL-2.0
      3local_dir="$(pwd)"
      4root_dir=$local_dir/../..
      5mnt_dir=$(mktemp -d --tmp)
      6
      7on_exit() {
      8	iptables -D OUTPUT -m bpf --object-pinned ${mnt_dir}/bpf_prog -j ACCEPT
      9	umount ${mnt_dir}
     10	rm -r ${mnt_dir}
     11}
     12
     13trap on_exit EXIT
     14mount -t bpf bpf ${mnt_dir}
     15./per_socket_stats_example ${mnt_dir}/bpf_prog $1