You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to make the runtime host API more flexible to support different execution models in the future, we should refactor the existing worker host into the following parts:
go/runtime/host/manager.go (common part of go/worker/common/host/sandboxed.go that manages Oasis Core Runtime Enclaves, regardless of what sandboxing/confidentiality platform they use)
go/runtime/host/sgx (provisioner for Intel SGX using Bubblewrap and runtime-loader).
While refactoring the API we should consider use cases where the runtime abstraction (VM/enclave) is pre-provisioned (e.g., externally provisioned Oasis Core VM and one or more Oasis Core Runtime VMs together with some interconnect).
In addition to the runtime host protocol channel there should also be a separate channel (pipe) for logs from the runtime (related to #1819). The actual transport should be abstracted.
The text was updated successfully, but these errors were encountered:
In order to make the runtime host API more flexible to support different execution models in the future, we should refactor the existing worker host into the following parts:
go/runtime/host/protocol
(from existinggo/worker/common/host/protocol
)go/runtime/host/manager.go
(common part ofgo/worker/common/host/sandboxed.go
that manages Oasis Core Runtime Enclaves, regardless of what sandboxing/confidentiality platform they use)go/runtime/host/sgx
(provisioner for Intel SGX using Bubblewrap and runtime-loader).While refactoring the API we should consider use cases where the runtime abstraction (VM/enclave) is pre-provisioned (e.g., externally provisioned Oasis Core VM and one or more Oasis Core Runtime VMs together with some interconnect).
In addition to the runtime host protocol channel there should also be a separate channel (pipe) for logs from the runtime (related to #1819). The actual transport should be abstracted.
The text was updated successfully, but these errors were encountered: