VirtualBox

source: vbox/trunk/include/VBox/vmm/pdmnvram.h@ 73768

Last change on this file since 73768 was 69107, checked in by vboxsync, 7 years ago

include/VBox/: (C) year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.1 KB
Line 
1/** @file
2 * PDM - Pluggable Device Manager, EFI NVRAM storage back-end.
3 */
4
5/*
6 * Copyright (C) 2012-2017 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___VBox_vmm_pdmnvram_h_
27#define ___VBox_vmm_pdmnvram_h_
28
29#include <VBox/types.h>
30
31
32RT_C_DECLS_BEGIN
33
34/** @defgroup grp_pdm_ifs_nvram NVRAM Interface
35 * @ingroup grp_pdm_interfaces
36 * @{
37 */
38
39/** Pointer to NVRAM interface provided by the driver. */
40typedef struct PDMINVRAMCONNECTOR *PPDMINVRAMCONNECTOR;
41
42/**
43 * Non-volatile RAM storage interface provided by the driver (up).
44 *
45 * @note The variable indexes used here 0-based, sequential and without gaps.
46 */
47typedef struct PDMINVRAMCONNECTOR
48{
49 /**
50 * Query a variable by variable index.
51 *
52 * @returns VBox status code.
53 * @retval VERR_NOT_FOUND if the variable was not found. This indicates that
54 * there are not variables with a higher index.
55 *
56 * @param pInterface Pointer to this interface structure.
57 * @param idxVariable The variable index. By starting @a idxVariable at 0
58 * and increasing it with each call, this can be used
59 * to enumerate all available variables.
60 * @param pVendorUuid The vendor UUID of the variable.
61 * @param pszName The variable name buffer.
62 * @param pcchName On input this hold the name buffer size (including
63 * the space for the terminator char). On successful
64 * return it holds the strlen() value for @a pszName.
65 * @param pfAttributes Where to return the value attributes.
66 * @param pbValue The value buffer.
67 * @param pcbValue On input the size of the value buffer, on output the
68 * actual number of bytes returned.
69 */
70 DECLR3CALLBACKMEMBER(int, pfnVarQueryByIndex,(PPDMINVRAMCONNECTOR pInterface, uint32_t idxVariable,
71 PRTUUID pVendorUuid, char *pszName, uint32_t *pcchName,
72 uint32_t *pfAttributes, uint8_t *pbValue, uint32_t *pcbValue));
73
74 /**
75 * Begins variable store sequence.
76 *
77 * @returns VBox status code.
78 * @param pInterface Pointer to this interface structure.
79 * @param cVariables The number of variables.
80 */
81 DECLR3CALLBACKMEMBER(int, pfnVarStoreSeqBegin,(PPDMINVRAMCONNECTOR pInterface, uint32_t cVariables));
82
83 /**
84 * Puts the next variable in the store sequence.
85 *
86 * @returns VBox status code.
87 * @param pInterface Pointer to this interface structure.
88 * @param idxVariable The variable index. This will start at 0 and advance
89 * up to @a cVariables - 1.
90 * @param pVendorUuid The vendor UUID of the variable.
91 * @param pszName The variable name buffer.
92 * @param cchName On input this hold the name buffer size (including
93 * the space for the terminator char). On successful
94 * return it holds the strlen() value for @a pszName.
95 * @param fAttributes The value attributes.
96 * @param pbValue The value buffer.
97 * @param cbValue On input the size of the value buffer, on output the
98 * actual number of bytes returned.
99 */
100 DECLR3CALLBACKMEMBER(int, pfnVarStoreSeqPut,(PPDMINVRAMCONNECTOR pInterface, int idxVariable,
101 PCRTUUID pVendorUuid, const char *pszName, size_t cchName,
102 uint32_t fAttributes, uint8_t const *pbValue, size_t cbValue));
103
104 /**
105 * Ends a variable store sequence.
106 *
107 * @returns VBox status code, @a rc on success.
108 * @param pInterface Pointer to this interface structure.
109 * @param rc The VBox status code for the whole store operation.
110 */
111 DECLR3CALLBACKMEMBER(int, pfnVarStoreSeqEnd,(PPDMINVRAMCONNECTOR pInterface, int rc));
112
113} PDMINVRAMCONNECTOR;
114/** PDMINVRAMCONNECTOR interface ID. */
115#define PDMINVRAMCONNECTOR_IID "057bc5c9-8022-43a8-9a41-0b106f97a89f"
116
117/** @} */
118
119RT_C_DECLS_END
120
121#endif
122
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use