use std::ffi::NulError;
use std::fmt;
use std::io::Error as IoError;
use std::num::TryFromIntError;
use std::os::raw::c_char;
use std::os::raw::c_void;
use std::path::PathBuf;
use std::str::Utf8Error;
use std::sync::Arc;
#[cfg(any(target_os = "android", target_os = "linux"))]
use nix::Error as NixError;
use remain::sorted;
use thiserror::Error;
#[cfg(feature = "vulkano")]
use vulkano::device::DeviceCreationError;
#[cfg(feature = "vulkano")]
use vulkano::image::ImageError;
#[cfg(feature = "vulkano")]
use vulkano::instance::InstanceCreationError;
#[cfg(feature = "vulkano")]
use vulkano::memory::DeviceMemoryError;
#[cfg(feature = "vulkano")]
use vulkano::memory::MemoryMapError;
#[cfg(feature = "vulkano")]
use vulkano::LoadingError;
#[cfg(feature = "vulkano")]
use vulkano::VulkanError;
use zerocopy::AsBytes;
use zerocopy::FromBytes;
use zerocopy::FromZeroes;
use crate::rutabaga_os::OwnedDescriptor;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct RutabagaIovec {
pub base: *mut c_void,
pub len: usize,
}
unsafe impl Send for RutabagaIovec {}
unsafe impl Sync for RutabagaIovec {}
pub const RUTABAGA_PIPE_TEXTURE_2D: u32 = 2;
pub const RUTABAGA_PIPE_BIND_RENDER_TARGET: u32 = 2;
#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct ResourceCreate3D {
pub target: u32,
pub format: u32,
pub bind: u32,
pub width: u32,
pub height: u32,
pub depth: u32,
pub array_size: u32,
pub last_level: u32,
pub nr_samples: u32,
pub flags: u32,
}
pub const RUTABAGA_BLOB_MEM_GUEST: u32 = 0x0001;
pub const RUTABAGA_BLOB_MEM_HOST3D: u32 = 0x0002;
pub const RUTABAGA_BLOB_MEM_HOST3D_GUEST: u32 = 0x0003;
pub const RUTABAGA_BLOB_FLAG_USE_MAPPABLE: u32 = 0x0001;
pub const RUTABAGA_BLOB_FLAG_USE_SHAREABLE: u32 = 0x0002;
pub const RUTABAGA_BLOB_FLAG_USE_CROSS_DEVICE: u32 = 0x0004;
#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct ResourceCreateBlob {
pub blob_mem: u32,
pub blob_flags: u32,
pub blob_id: u64,
pub size: u64,
}
#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct RutabagaMapping {
pub ptr: u64,
pub size: u64,
}
#[derive(Default, Copy, Clone, Debug)]
pub struct Resource3DInfo {
pub width: u32,
pub height: u32,
pub drm_fourcc: u32,
pub strides: [u32; 4],
pub offsets: [u32; 4],
pub modifier: u64,
pub guest_cpu_mappable: bool,
}
#[derive(
Copy,
Clone,
Debug,
Default,
PartialEq,
Eq,
PartialOrd,
Ord,
Hash,
FromZeroes,
FromBytes,
AsBytes,
)]
#[repr(C)]
pub struct DeviceId {
pub device_uuid: [u8; 16],
pub driver_uuid: [u8; 16],
}
#[derive(
Copy,
Clone,
Debug,
Default,
PartialEq,
Eq,
PartialOrd,
Ord,
Hash,
FromZeroes,
FromBytes,
AsBytes,
)]
#[repr(C)]
pub struct VulkanInfo {
pub memory_idx: u32,
pub device_id: DeviceId,
}
pub const RUTABAGA_CONTEXT_INIT_CAPSET_ID_MASK: u32 = 0x00ff;
pub const RUTABAGA_FLAG_FENCE: u32 = 1 << 0;
pub const RUTABAGA_FLAG_INFO_RING_IDX: u32 = 1 << 1;
pub const RUTABAGA_FLAG_FENCE_HOST_SHAREABLE: u32 = 1 << 2;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct RutabagaFence {
pub flags: u32,
pub fence_id: u64,
pub ctx_id: u32,
pub ring_idx: u8,
}
pub const RUTABAGA_DEBUG_ERROR: u32 = 0x01;
pub const RUTABAGA_DEBUG_WARNING: u32 = 0x02;
pub const RUTABAGA_DEBUG_INFO: u32 = 0x03;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct RutabagaDebug {
pub debug_type: u32,
pub message: *const c_char,
}
unsafe impl Send for RutabagaDebug {}
unsafe impl Sync for RutabagaDebug {}
pub const RUTABAGA_MAP_CACHE_MASK: u32 = 0x0f;
pub const RUTABAGA_MAP_CACHE_CACHED: u32 = 0x01;
pub const RUTABAGA_MAP_CACHE_UNCACHED: u32 = 0x02;
pub const RUTABAGA_MAP_CACHE_WC: u32 = 0x03;
pub const RUTABAGA_MAP_ACCESS_MASK: u32 = 0xf0;
pub const RUTABAGA_MAP_ACCESS_READ: u32 = 0x10;
pub const RUTABAGA_MAP_ACCESS_WRITE: u32 = 0x20;
pub const RUTABAGA_MAP_ACCESS_RW: u32 = 0x30;
pub const RUTABAGA_CAPSET_VIRGL: u32 = 1;
pub const RUTABAGA_CAPSET_VIRGL2: u32 = 2;
pub const RUTABAGA_CAPSET_GFXSTREAM_VULKAN: u32 = 3;
pub const RUTABAGA_CAPSET_VENUS: u32 = 4;
pub const RUTABAGA_CAPSET_CROSS_DOMAIN: u32 = 5;
pub const RUTABAGA_CAPSET_DRM: u32 = 6;
pub const RUTABAGA_CAPSET_GFXSTREAM_MAGMA: u32 = 7;
pub const RUTABAGA_CAPSET_GFXSTREAM_GLES: u32 = 8;
pub const RUTABAGA_CAPSET_GFXSTREAM_COMPOSER: u32 = 9;
#[sorted]
#[derive(Error, Debug)]
pub enum RutabagaError {
#[error("attempted to use a rutabaga asset already in use")]
AlreadyInUse,
#[error("arithmetic failed: {}({}) {op} {}({})", .field1.0, .field1.1, .field2.0, .field2.1)]
CheckedArithmetic {
field1: (&'static str, usize),
field2: (&'static str, usize),
op: &'static str,
},
#[error("range check failed: {}({}) vs {}({})", .field1.0, .field1.1, .field2.0, .field2.1)]
CheckedRange {
field1: (&'static str, usize),
field2: (&'static str, usize),
},
#[error("rutabaga component failed with error {0}")]
ComponentError(i32),
#[error("invalid 2D info")]
Invalid2DInfo,
#[error("invalid capset")]
InvalidCapset,
#[error("invalid command buffer submitted")]
InvalidCommandBuffer,
#[error("command buffer submitted with invalid size: {0}")]
InvalidCommandSize(usize),
#[error("invalid rutabaga component")]
InvalidComponent,
#[error("invalid context id")]
InvalidContextId,
#[error("invalid cross domain channel")]
InvalidCrossDomainChannel,
#[error("invalid cross domain item id")]
InvalidCrossDomainItemId,
#[error("invalid cross domain item type")]
InvalidCrossDomainItemType,
#[error("invalid cross domain state")]
InvalidCrossDomainState,
#[error("invalid gralloc backend")]
InvalidGrallocBackend,
#[error("invalid gralloc dimensions")]
InvalidGrallocDimensions,
#[error("invalid gralloc DRM format")]
InvalidGrallocDrmFormat,
#[error("invalid GPU type for gralloc")]
InvalidGrallocGpuType,
#[error("invalid number of YUV planes")]
InvalidGrallocNumberOfPlanes,
#[error("an iovec is outside of guest memory's range")]
InvalidIovec,
#[error("invalid resource id")]
InvalidResourceId,
#[error("invalid rutabaga build parameters: {0}")]
InvalidRutabagaBuild(&'static str),
#[error("invalid rutabaga handle")]
InvalidRutabagaHandle,
#[error("invalid vulkan info")]
InvalidVulkanInfo,
#[error("an input/output error occur: {0}")]
IoError(IoError),
#[error("The mapping failed with library error: {0}")]
MappingFailed(i32),
#[cfg(any(target_os = "android", target_os = "linux"))]
#[error("The errno is {0}")]
NixError(NixError),
#[error("Nul Error occured {0}")]
NulError(NulError),
#[error("violation of the rutabaga spec: {0}")]
SpecViolation(&'static str),
#[error("int conversion failed: {0}")]
TryFromIntError(TryFromIntError),
#[error("the requested function is not implemented")]
Unsupported,
#[error("an utf8 error occured: {0}")]
Utf8Error(Utf8Error),
#[cfg(feature = "vulkano")]
#[error("vulkano device creation failure {0}")]
VkDeviceCreationError(DeviceCreationError),
#[cfg(feature = "vulkano")]
#[error("vulkano device memory failure {0}")]
VkDeviceMemoryError(DeviceMemoryError),
#[cfg(feature = "vulkano")]
#[error("vulkano failure {0}")]
VkError(VulkanError),
#[cfg(feature = "vulkano")]
#[error("vulkano image creation failure {0}")]
VkImageCreationError(ImageError),
#[cfg(feature = "vulkano")]
#[error("vulkano instance creation failure {0}")]
VkInstanceCreationError(InstanceCreationError),
#[cfg(feature = "vulkano")]
#[error("vulkano loading failure {0}")]
VkLoadingError(LoadingError),
#[cfg(feature = "vulkano")]
#[error("vulkano memory map failure {0}")]
VkMemoryMapError(MemoryMapError),
}
#[cfg(any(target_os = "android", target_os = "linux"))]
impl From<NixError> for RutabagaError {
fn from(e: NixError) -> RutabagaError {
RutabagaError::NixError(e)
}
}
impl From<NulError> for RutabagaError {
fn from(e: NulError) -> RutabagaError {
RutabagaError::NulError(e)
}
}
impl From<IoError> for RutabagaError {
fn from(e: IoError) -> RutabagaError {
RutabagaError::IoError(e)
}
}
impl From<TryFromIntError> for RutabagaError {
fn from(e: TryFromIntError) -> RutabagaError {
RutabagaError::TryFromIntError(e)
}
}
impl From<Utf8Error> for RutabagaError {
fn from(e: Utf8Error) -> RutabagaError {
RutabagaError::Utf8Error(e)
}
}
pub type RutabagaResult<T> = std::result::Result<T, RutabagaError>;
const VIRGLRENDERER_USE_EGL: u32 = 1 << 0;
const VIRGLRENDERER_THREAD_SYNC: u32 = 1 << 1;
const VIRGLRENDERER_USE_GLX: u32 = 1 << 2;
const VIRGLRENDERER_USE_SURFACELESS: u32 = 1 << 3;
const VIRGLRENDERER_USE_GLES: u32 = 1 << 4;
const VIRGLRENDERER_USE_EXTERNAL_BLOB: u32 = 1 << 5;
const VIRGLRENDERER_VENUS: u32 = 1 << 6;
const VIRGLRENDERER_NO_VIRGL: u32 = 1 << 7;
const VIRGLRENDERER_USE_ASYNC_FENCE_CB: u32 = 1 << 8;
const VIRGLRENDERER_RENDER_SERVER: u32 = 1 << 9;
const VIRGLRENDERER_DRM: u32 = 1 << 10;
#[derive(Copy, Clone)]
pub struct VirglRendererFlags(u32);
impl Default for VirglRendererFlags {
fn default() -> VirglRendererFlags {
VirglRendererFlags::new()
.use_virgl(true)
.use_venus(false)
.use_egl(true)
.use_surfaceless(true)
.use_gles(true)
.use_render_server(false)
}
}
impl From<VirglRendererFlags> for u32 {
fn from(flags: VirglRendererFlags) -> u32 {
flags.0
}
}
impl From<VirglRendererFlags> for i32 {
fn from(flags: VirglRendererFlags) -> i32 {
flags.0 as i32
}
}
impl VirglRendererFlags {
pub fn new() -> VirglRendererFlags {
VirglRendererFlags(0)
}
fn set_flag(self, bitmask: u32, set: bool) -> VirglRendererFlags {
if set {
VirglRendererFlags(self.0 | bitmask)
} else {
VirglRendererFlags(self.0 & (!bitmask))
}
}
pub fn use_virgl(self, v: bool) -> VirglRendererFlags {
self.set_flag(VIRGLRENDERER_NO_VIRGL, !v)
}
pub fn use_venus(self, v: bool) -> VirglRendererFlags {
self.set_flag(VIRGLRENDERER_VENUS, v)
}
pub fn use_drm(self, v: bool) -> VirglRendererFlags {
self.set_flag(VIRGLRENDERER_DRM, v)
}
pub fn use_egl(self, v: bool) -> VirglRendererFlags {
self.set_flag(VIRGLRENDERER_USE_EGL, v)
}
pub fn use_thread_sync(self, v: bool) -> VirglRendererFlags {
self.set_flag(VIRGLRENDERER_THREAD_SYNC, v)
}
pub fn use_glx(self, v: bool) -> VirglRendererFlags {
self.set_flag(VIRGLRENDERER_USE_GLX, v)
}
pub fn use_surfaceless(self, v: bool) -> VirglRendererFlags {
self.set_flag(VIRGLRENDERER_USE_SURFACELESS, v)
}
pub fn use_gles(self, v: bool) -> VirglRendererFlags {
self.set_flag(VIRGLRENDERER_USE_GLES, v)
}
pub fn use_external_blob(self, v: bool) -> VirglRendererFlags {
self.set_flag(VIRGLRENDERER_USE_EXTERNAL_BLOB, v)
}
pub fn use_async_fence_cb(self, v: bool) -> VirglRendererFlags {
self.set_flag(VIRGLRENDERER_USE_ASYNC_FENCE_CB, v)
}
pub fn use_render_server(self, v: bool) -> VirglRendererFlags {
self.set_flag(VIRGLRENDERER_RENDER_SERVER, v)
}
}
const STREAM_RENDERER_FLAGS_USE_EGL: u32 = 1 << 0;
#[allow(dead_code)]
const STREAM_RENDERER_FLAGS_THREAD_SYNC: u32 = 1 << 1;
const STREAM_RENDERER_FLAGS_USE_GLX: u32 = 1 << 2;
const STREAM_RENDERER_FLAGS_USE_SURFACELESS: u32 = 1 << 3;
const STREAM_RENDERER_FLAGS_USE_GLES: u32 = 1 << 4;
const STREAM_RENDERER_FLAGS_USE_VK_BIT: u32 = 1 << 5;
const STREAM_RENDERER_FLAGS_USE_EXTERNAL_BLOB: u32 = 1 << 6;
const STREAM_RENDERER_FLAGS_USE_SYSTEM_BLOB: u32 = 1 << 7;
const STREAM_RENDERER_FLAGS_VULKAN_NATIVE_SWAPCHAIN_BIT: u32 = 1 << 8;
#[derive(Copy, Clone, Default)]
pub struct GfxstreamFlags(u32);
#[derive(Clone, Debug)]
pub enum RutabagaWsi {
Surfaceless,
VulkanSwapchain,
}
impl GfxstreamFlags {
pub fn new() -> GfxstreamFlags {
GfxstreamFlags(0)
}
fn set_flag(self, bitmask: u32, set: bool) -> GfxstreamFlags {
if set {
GfxstreamFlags(self.0 | bitmask)
} else {
GfxstreamFlags(self.0 & (!bitmask))
}
}
pub fn use_egl(self, v: bool) -> GfxstreamFlags {
self.set_flag(STREAM_RENDERER_FLAGS_USE_EGL, v)
}
pub fn use_glx(self, v: bool) -> GfxstreamFlags {
self.set_flag(STREAM_RENDERER_FLAGS_USE_GLX, v)
}
pub fn use_surfaceless(self, v: bool) -> GfxstreamFlags {
self.set_flag(STREAM_RENDERER_FLAGS_USE_SURFACELESS, v)
}
pub fn use_gles(self, v: bool) -> GfxstreamFlags {
self.set_flag(STREAM_RENDERER_FLAGS_USE_GLES, v)
}
pub fn use_vulkan(self, v: bool) -> GfxstreamFlags {
self.set_flag(STREAM_RENDERER_FLAGS_USE_VK_BIT, v)
}
pub fn set_wsi(self, v: RutabagaWsi) -> GfxstreamFlags {
let use_vulkan_swapchain = matches!(v, RutabagaWsi::VulkanSwapchain);
self.set_flag(
STREAM_RENDERER_FLAGS_VULKAN_NATIVE_SWAPCHAIN_BIT,
use_vulkan_swapchain,
)
}
pub fn use_external_blob(self, v: bool) -> GfxstreamFlags {
self.set_flag(STREAM_RENDERER_FLAGS_USE_EXTERNAL_BLOB, v)
}
pub fn use_system_blob(self, v: bool) -> GfxstreamFlags {
self.set_flag(STREAM_RENDERER_FLAGS_USE_SYSTEM_BLOB, v)
}
}
impl From<GfxstreamFlags> for u32 {
fn from(flags: GfxstreamFlags) -> u32 {
flags.0
}
}
impl From<GfxstreamFlags> for i32 {
fn from(flags: GfxstreamFlags) -> i32 {
flags.0 as i32
}
}
impl From<GfxstreamFlags> for u64 {
fn from(flags: GfxstreamFlags) -> u64 {
flags.0 as u64
}
}
#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct Transfer3D {
pub x: u32,
pub y: u32,
pub z: u32,
pub w: u32,
pub h: u32,
pub d: u32,
pub level: u32,
pub stride: u32,
pub layer_stride: u32,
pub offset: u64,
}
impl Transfer3D {
pub fn new_2d(x: u32, y: u32, w: u32, h: u32, offset: u64) -> Transfer3D {
Transfer3D {
x,
y,
z: 0,
w,
h,
d: 1,
level: 0,
stride: 0,
layer_stride: 0,
offset,
}
}
pub fn is_empty(&self) -> bool {
self.w == 0 || self.h == 0 || self.d == 0
}
}
pub const RUTABAGA_CHANNEL_TYPE_WAYLAND: u32 = 0x0001;
pub const RUTABAGA_CHANNEL_TYPE_CAMERA: u32 = 0x0002;
#[derive(Clone)]
pub struct RutabagaChannel {
pub base_channel: PathBuf,
pub channel_type: u32,
}
#[repr(u8)]
#[derive(Copy, Clone, Eq, PartialEq, PartialOrd, Ord)]
pub enum RutabagaComponentType {
Rutabaga2D,
VirglRenderer,
Gfxstream,
CrossDomain,
}
pub const RUTABAGA_MEM_HANDLE_TYPE_OPAQUE_FD: u32 = 0x0001;
pub const RUTABAGA_MEM_HANDLE_TYPE_DMABUF: u32 = 0x0002;
pub const RUTABAGA_MEM_HANDLE_TYPE_OPAQUE_WIN32: u32 = 0x0003;
pub const RUTABAGA_MEM_HANDLE_TYPE_SHM: u32 = 0x0004;
pub const RUTABAGA_MEM_HANDLE_TYPE_ZIRCON: u32 = 0x0005;
pub const RUTABAGA_FENCE_HANDLE_TYPE_OPAQUE_FD: u32 = 0x0006;
pub const RUTABAGA_FENCE_HANDLE_TYPE_SYNC_FD: u32 = 0x0007;
pub const RUTABAGA_FENCE_HANDLE_TYPE_OPAQUE_WIN32: u32 = 0x0008;
pub const RUTABAGA_FENCE_HANDLE_TYPE_ZIRCON: u32 = 0x0009;
pub const RUTABAGA_FENCE_HANDLE_TYPE_EVENT_FD: u32 = 0x000a;
pub struct RutabagaHandle {
pub os_handle: OwnedDescriptor,
pub handle_type: u32,
}
impl fmt::Debug for RutabagaHandle {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Handle debug").finish()
}
}
impl RutabagaHandle {
pub fn try_clone(&self) -> RutabagaResult<RutabagaHandle> {
let clone = self
.os_handle
.try_clone()
.map_err(|_| RutabagaError::InvalidRutabagaHandle)?;
Ok(RutabagaHandle {
os_handle: clone,
handle_type: self.handle_type,
})
}
}
#[derive(Clone)]
pub struct RutabagaHandler<S> {
closure: Arc<dyn Fn(S) + Send + Sync>,
}
impl<S> RutabagaHandler<S>
where
S: Send + Sync + Clone + 'static,
{
pub fn new(closure: impl Fn(S) + Send + Sync + 'static) -> RutabagaHandler<S> {
RutabagaHandler {
closure: Arc::new(closure),
}
}
pub fn call(&self, data: S) {
(self.closure)(data)
}
}
impl<S> fmt::Debug for RutabagaHandler<S> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Closure debug").finish()
}
}
pub type RutabagaFenceHandler = RutabagaHandler<RutabagaFence>;
pub type RutabagaDebugHandler = RutabagaHandler<RutabagaDebug>;