1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Copyright 2021 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

//! Utility file for allocating exportable system memory.  On Linux systems,
//! this is is often done with memfd.

use crate::rutabaga_gralloc::formats::canonical_image_requirements;
use crate::rutabaga_gralloc::gralloc::Gralloc;
use crate::rutabaga_gralloc::gralloc::ImageAllocationInfo;
use crate::rutabaga_gralloc::gralloc::ImageMemoryRequirements;
use crate::rutabaga_os::SharedMemory;
use crate::rutabaga_utils::*;

/// A gralloc implementation capable of allocation from system memory.
pub struct SystemGralloc(());

impl SystemGralloc {
    fn new() -> Self {
        SystemGralloc(())
    }

    /// Returns a new `SystemGralloc` instance.
    pub fn init() -> RutabagaResult<Box<dyn Gralloc>> {
        Ok(Box::new(SystemGralloc::new()))
    }
}

impl Gralloc for SystemGralloc {
    fn supports_external_gpu_memory(&self) -> bool {
        false
    }

    fn supports_dmabuf(&self) -> bool {
        false
    }

    fn get_image_memory_requirements(
        &mut self,
        info: ImageAllocationInfo,
    ) -> RutabagaResult<ImageMemoryRequirements> {
        let mut reqs = canonical_image_requirements(info)?;
        reqs.map_info = RUTABAGA_MAP_CACHE_CACHED;
        Ok(reqs)
    }

    fn allocate_memory(&mut self, reqs: ImageMemoryRequirements) -> RutabagaResult<RutabagaHandle> {
        let shm = SharedMemory::new("rutabaga_gralloc", reqs.size)?;
        Ok(RutabagaHandle {
            os_handle: shm.into(),
            handle_type: RUTABAGA_MEM_HANDLE_TYPE_SHM,
        })
    }
}