VirtualBox

source: vbox/trunk/src/VBox/Main/include/UefiVariableStoreImpl.h@ 98262

Last change on this file since 98262 was 98103, checked in by vboxsync, 17 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.6 KB
Line 
1/* $Id: UefiVariableStoreImpl.h 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
3 * VirtualBox COM UEFI variable store class implementation
4 */
5
6/*
7 * Copyright (C) 2021-2023 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * SPDX-License-Identifier: GPL-3.0-only
26 */
27
28#ifndef MAIN_INCLUDED_UefiVariableStoreImpl_h
29#define MAIN_INCLUDED_UefiVariableStoreImpl_h
30#ifndef RT_WITHOUT_PRAGMA_ONCE
31# pragma once
32#endif
33
34#include "UefiVariableStoreWrap.h"
35#include <iprt/types.h>
36
37#include <iprt/formats/efi-common.h>
38
39class NvramStore;
40class Machine;
41
42class ATL_NO_VTABLE UefiVariableStore :
43 public UefiVariableStoreWrap
44{
45public:
46
47 DECLARE_COMMON_CLASS_METHODS(UefiVariableStore)
48
49 HRESULT FinalConstruct();
50 void FinalRelease();
51
52 // public initializer/uninitializer for internal purposes only
53 HRESULT init(NvramStore *aParent, Machine *pMachine);
54 void uninit();
55
56 // public methods for internal purposes only
57
58private:
59
60 // Wrapped NVRAM store properties
61 HRESULT getSecureBootEnabled(BOOL *pfEnabled);
62 HRESULT setSecureBootEnabled(BOOL fEnabled);
63
64 // Wrapped NVRAM store members
65 HRESULT addVariable(const com::Utf8Str &aName, const com::Guid &aOwnerUuid, const std::vector<UefiVariableAttributes_T> &aAttributes,
66 const std::vector<BYTE> &aData);
67 HRESULT deleteVariable(const com::Utf8Str &aName, const com::Guid &aOwnerUuid);
68 HRESULT changeVariable(const com::Utf8Str &aName, const std::vector<BYTE> &aData);
69 HRESULT queryVariableByName(const com::Utf8Str &aName, com::Guid &aOwnerUuid, std::vector<UefiVariableAttributes_T> &aAttributes,
70 std::vector<BYTE> &aData);
71 HRESULT queryVariables(std::vector<com::Utf8Str> &aNames, std::vector<com::Guid> &aOwnerUuids);
72 HRESULT enrollOraclePlatformKey(void);
73 HRESULT enrollPlatformKey(const std::vector<BYTE> &aData, const com::Guid &aOwnerUuid);
74 HRESULT addKek(const std::vector<BYTE> &aData, const com::Guid &aOwnerUuid, SignatureType_T enmSignatureType);
75 HRESULT addSignatureToDb(const std::vector<BYTE> &aData, const com::Guid &aOwnerUuid, SignatureType_T enmSignatureType);
76 HRESULT addSignatureToDbx(const std::vector<BYTE> &aData, const com::Guid &aOwnerUuid, SignatureType_T enmSignatureType);
77 HRESULT enrollDefaultMsSignatures(void);
78
79 int i_uefiVarStoreSetVarAttr(const char *pszVar, uint32_t fAttr);
80 int i_uefiVarStoreQueryVarAttr(const char *pszVar, uint32_t *pfAttr);
81 int i_uefiVarStoreQueryVarSz(const char *pszVar, uint64_t *pcbVar);
82 int i_uefiVarStoreQueryVarOwnerUuid(const char *pszVar, PRTUUID pUuid);
83 uint32_t i_uefiVarAttrToMask(const std::vector<UefiVariableAttributes_T> &aAttributes);
84 void i_uefiAttrMaskToVec(uint32_t fAttr, std::vector<UefiVariableAttributes_T> &aAttributes);
85
86 HRESULT i_retainUefiVariableStore(bool fReadonly);
87 HRESULT i_releaseUefiVariableStore(void);
88
89 HRESULT i_uefiVarStoreAddVar(PCEFI_GUID pGuid, const char *pszVar, uint32_t fAttr, PRTVFSFILE phVfsFile);
90 HRESULT i_uefiVarStoreOpenVar(const char *pszVar, PRTVFSFILE phVfsFile);
91 HRESULT i_uefiVarStoreSetVar(PCEFI_GUID pGuid, const char *pszVar, uint32_t fAttr, const void *pvData, size_t cbData);
92 HRESULT i_uefiVarStoreQueryVar(const char *pszVar, void *pvData, size_t cbData);
93 HRESULT i_uefiSigDbAddSig(RTEFISIGDB hEfiSigDb, const void *pvData, size_t cbData, const com::Guid &aOwnerUuid, SignatureType_T enmSignatureType);
94 HRESULT i_uefiVarStoreAddSignatureToDbVec(PCEFI_GUID pGuid, const char *pszDb, const std::vector<BYTE> &aData,
95 const com::Guid &aOwnerUuid, SignatureType_T enmSignatureType);
96 HRESULT i_uefiVarStoreAddSignatureToDb(PCEFI_GUID pGuid, const char *pszDb, const void *pvData, size_t cbData,
97 const com::Guid &aOwnerUuid, SignatureType_T enmSignatureType);
98
99 struct Data; // opaque data struct, defined in UefiVariableStoreImpl.cpp
100 Data *m;
101};
102
103#endif /* !MAIN_INCLUDED_UefiVariableStoreImpl_h */
104/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use