[PR #119] [CLOSED] Cs598 fuzzer integration #213

Open
opened 2026-01-31 21:30:17 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/qemu/qemu/pull/119
Author: @jprx
Created: 4/29/2021
Status: Closed

Base: masterHead: cs598_fuzzer_integration


📝 Commits (10+)

  • c2c76d0 Add HVC logging skeleton
  • bc61383 Send immediate bits to interceptor
  • 8fdf9c9 Wrapped intercept_hypercall in qemu helper & added register logging
  • ec8030a Return test result from HVC
  • 24af1a1 Add helper method to read from guest RAM
  • 66ff029 Add method to write to guest ram, cleanup code
  • 6dac9b7 Added SUBMIT_PANIC hypercall (not functional atm)
  • 34ea3e7 Fix ARMMMUIdx for translating kernel addresses
  • 20d0661 Added hypercall interface
  • 1dc08cf Cleaned up code & added proper output for SUBMIT_PANIC

📊 Changes

8 files changed (+470 additions, -0 deletions)

View changed files

📝 target/arm/helper.h (+1 -0)
target/arm/hypercall.c (+136 -0)
target/arm/hypercall.h (+130 -0)
target/arm/hypertrace.c (+126 -0)
target/arm/hypertrace.h (+55 -0)
📝 target/arm/meson.build (+2 -0)
📝 target/arm/op_helper.c (+7 -0)
📝 target/arm/translate-a64.c (+13 -0)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/qemu/qemu/pull/119 **Author:** [@jprx](https://github.com/jprx) **Created:** 4/29/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `cs598_fuzzer_integration` --- ### 📝 Commits (10+) - [`c2c76d0`](https://github.com/qemu/qemu/commit/c2c76d01ace5a19f62e1a637c3d3f0f2d9253d36) Add HVC logging skeleton - [`bc61383`](https://github.com/qemu/qemu/commit/bc613839791764f3920bb390bd732129c2ac5471) Send immediate bits to interceptor - [`8fdf9c9`](https://github.com/qemu/qemu/commit/8fdf9c9632658d1c0adcda5650a45cc3ccf0c6c5) Wrapped intercept_hypercall in qemu helper & added register logging - [`ec8030a`](https://github.com/qemu/qemu/commit/ec8030a3b231db39f99cc0d256007ee058f2b5f1) Return test result from HVC - [`24af1a1`](https://github.com/qemu/qemu/commit/24af1a1db80de2e313ec16c7a5a66b3e64b3d170) Add helper method to read from guest RAM - [`66ff029`](https://github.com/qemu/qemu/commit/66ff0295c1810344fb1d481973f7d1714c874089) Add method to write to guest ram, cleanup code - [`6dac9b7`](https://github.com/qemu/qemu/commit/6dac9b74341f14fcbba73c8920efaf53de78703b) Added SUBMIT_PANIC hypercall (not functional atm) - [`34ea3e7`](https://github.com/qemu/qemu/commit/34ea3e76832045f1f4af50aa8fd35b84d2e2f44b) Fix ARMMMUIdx for translating kernel addresses - [`20d0661`](https://github.com/qemu/qemu/commit/20d066154bdb7fb2b285a44265b0af97d9a08a1c) Added hypercall interface - [`1dc08cf`](https://github.com/qemu/qemu/commit/1dc08cfd1a2c9ca8f2e73aac763efb51281db62a) Cleaned up code & added proper output for SUBMIT_PANIC ### 📊 Changes **8 files changed** (+470 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `target/arm/helper.h` (+1 -0) ➕ `target/arm/hypercall.c` (+136 -0) ➕ `target/arm/hypercall.h` (+130 -0) ➕ `target/arm/hypertrace.c` (+126 -0) ➕ `target/arm/hypertrace.h` (+55 -0) 📝 `target/arm/meson.build` (+2 -0) 📝 `target/arm/op_helper.c` (+7 -0) 📝 `target/arm/translate-a64.c` (+13 -0) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-31 21:30:17 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/qemu#213