Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introducing qos_net: a proxy + utilities to establish TCP connections to remote hosts/IPs from inside enclave apps #449

Merged
merged 21 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
This project used to adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) but we've since
moved out of versioning: we use submodule references to pull `qos` into repositories which depend on it (git SHA pointer).

If you're changing QOS in a meaningful way, please add a changelog entry, but no need to group these in version sections.

Types of changes:

Expand All @@ -14,6 +17,15 @@ Removed: for now removed features.
Fixed: for any bug fixes.
Security: in case of vulnerabilities.

## Added: `qos_net` crate

In PR #449 we introduce `qos_net`, a crate which contains a socket<>TCP proxy to let enclave application communicate with the outside world.

This new crate contains:

- a new CLI and associated binary containing the proxy logic, running outside enclaves (on the host side)
- a `ProxyStream` abstraction to let enclaves send `ProxyMsg` messages to `Open`, `Read`, `Write` or `Flush` proxy-held connections.

## [0.4.0] 2024.4.9

### Added
Expand Down
Loading