Skip to content

Commit db8725c

Browse files
committed
Initial Commit for Preprint
0 parents  commit db8725c

File tree

174 files changed

+22157
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

174 files changed

+22157
-0
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# PreFence
2+
3+
This repository contains the code artifact for the paper "A Scheduling-Aware Defense Against Prefetching-Based Side-Channel Attacks", to appear on arXiv as preprint.
4+
5+
It comprises the following components:
6+
7+
- `kernel_patch/`: A patch for the Linux kernel (v6.6.14). It extends the `prctl` system call to expose the `prefetch_disable` flag of a process to userspace and updates the scheduler to implement our countermeasure on Intel x86_64 CPUs.
8+
- `evaluation/`: A collection of small test programs and scripts that we used to evaluate PreFence (as presented in Section 6 of the paper).

evaluation/6_2_fetchbench/README.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Fork of FetchBench
2+
3+
We forked this directory from [the original FetchBench repo at c657517](https://github.com/scy-phy/FetchBench/tree/c657517348a15cd0eb3a790a89e50710e21a5d1b)
4+
5+
Our main additions:
6+
- Additional tests for the behavior of prefetchers when they are disabled: [`fetchbench/src/testcase_stride_strideexperiment.hh` (ll. 288-516)](fetchbench/src/testcase_stride_strideexperiment.hh) [`fetchbench/src/testcase_stride.hh` (ll. 905-1007)](fetchbech/src/testcase_stride.hh)
7+
- `mod-ctrlpf`: A kernel module that allows controlling the prefetchers on Intel processors and the ARM A72 through a low-overhead `ioctl` interface
8+
9+
We omit parts of the original repository that are not related to our project (`aes-attack`, `covert-channel`).
10+
11+
---
12+
13+
(original README.md below)
14+
15+
---
16+
17+
# FetchBench
18+
19+
Code artifact for the submission ["FetchBench: Systematic Identification and Characterization of Proprietary Prefetchers"](https://publications.cispa.saarland/3991/1/ccs23-fetchbench.pdf) to CCS2023.
20+
21+
This repository contains:
22+
23+
- `fetchbench/`: Our prefetcher identification and characterization framework (sections 3 and 4)
24+
- `aes-attack/`: Our first case study (section 5.1): leaking parts of an AES key through the Cortex-A72 SMS prefetcher
25+
- `covert-channel/`: Our second case study (section 5.2): a covert channel between normal world and secure world based on the Cortex-A72 SMS prefetcher
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
build/
2+
*.json
3+
*.svg
4+
*.log
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2013 Dropbox, Inc.
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in
11+
all copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
THE SOFTWARE.

0 commit comments

Comments
 (0)