VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/efi/efiguid.cpp

Last change on this file was 98103, checked in by vboxsync, 16 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: 6.0 KB
Line 
1/* $Id: efiguid.cpp 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
3 * IPRT - EFI GUID conversion helpers.
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 * The contents of this file may alternatively be used under the terms
26 * of the Common Development and Distribution License Version 1.0
27 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
28 * in the VirtualBox distribution, in which case the provisions of the
29 * CDDL are applicable instead of those of the GPL.
30 *
31 * You may elect to license modified versions of this file under the
32 * terms and conditions of either the GPL or the CDDL or both.
33 *
34 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
35 */
36
37
38/*********************************************************************************************************************************
39* Header Files *
40*********************************************************************************************************************************/
41#define LOG_GROUP RTLOGGROUP_DEFAULT
42#include <iprt/efi.h>
43
44#include <iprt/cdefs.h>
45#include <iprt/asm.h>
46#include <iprt/string.h>
47
48
49/*********************************************************************************************************************************
50* Defined Constants And Macros *
51*********************************************************************************************************************************/
52
53
54/*********************************************************************************************************************************
55* Structures and Typedefs *
56*********************************************************************************************************************************/
57
58
59/*********************************************************************************************************************************
60* Internal Functions *
61*********************************************************************************************************************************/
62
63RTDECL(PRTUUID) RTEfiGuidToUuid(PRTUUID pUuid, PCEFI_GUID pEfiGuid)
64{
65 pUuid->Gen.u32TimeLow = RT_LE2H_U32(pEfiGuid->u32Data1);
66 pUuid->Gen.u16TimeMid = RT_LE2H_U16(pEfiGuid->u16Data2);
67 pUuid->Gen.u16TimeHiAndVersion = RT_LE2H_U16(pEfiGuid->u16Data3);
68 pUuid->Gen.u8ClockSeqHiAndReserved = pEfiGuid->abData4[0];
69 pUuid->Gen.u8ClockSeqLow = pEfiGuid->abData4[1];
70 pUuid->Gen.au8Node[0] = pEfiGuid->abData4[2];
71 pUuid->Gen.au8Node[1] = pEfiGuid->abData4[3];
72 pUuid->Gen.au8Node[2] = pEfiGuid->abData4[4];
73 pUuid->Gen.au8Node[3] = pEfiGuid->abData4[5];
74 pUuid->Gen.au8Node[4] = pEfiGuid->abData4[6];
75 pUuid->Gen.au8Node[5] = pEfiGuid->abData4[7];
76 return pUuid;
77}
78
79
80RTDECL(PEFI_GUID) RTEfiGuidFromUuid(PEFI_GUID pEfiGuid, PCRTUUID pUuid)
81{
82 pEfiGuid->u32Data1 = RT_H2LE_U32(pUuid->Gen.u32TimeLow);
83 pEfiGuid->u16Data2 = RT_H2LE_U16(pUuid->Gen.u16TimeMid);
84 pEfiGuid->u16Data3 = RT_H2LE_U16(pUuid->Gen.u16TimeHiAndVersion);
85 pEfiGuid->abData4[0] = pUuid->Gen.u8ClockSeqHiAndReserved;
86 pEfiGuid->abData4[1] = pUuid->Gen.u8ClockSeqLow;
87 pEfiGuid->abData4[2] = pUuid->Gen.au8Node[0];
88 pEfiGuid->abData4[3] = pUuid->Gen.au8Node[1];
89 pEfiGuid->abData4[4] = pUuid->Gen.au8Node[2];
90 pEfiGuid->abData4[5] = pUuid->Gen.au8Node[3];
91 pEfiGuid->abData4[6] = pUuid->Gen.au8Node[4];
92 pEfiGuid->abData4[7] = pUuid->Gen.au8Node[5];
93 return pEfiGuid;
94}
95
96
97RTDECL(int) RTEfiGuidCompare(PCEFI_GUID pGuid1, PCEFI_GUID pGuid2)
98{
99 /*
100 * Special cases.
101 */
102 if (pGuid1 == pGuid2)
103 return 0;
104 AssertPtrReturn(pGuid1, -1);
105 AssertPtrReturn(pGuid2, 1);
106
107 /*
108 * Standard cases.
109 */
110 if (pGuid1->u32Data1 != pGuid2->u32Data1)
111 return pGuid1->u32Data1 < pGuid2->u32Data1 ? -1 : 1;
112 if (pGuid1->u16Data2 != pGuid2->u16Data2)
113 return pGuid1->u16Data2 < pGuid2->u16Data2 ? -1 : 1;
114 if (pGuid1->u16Data3 != pGuid2->u16Data3)
115 return pGuid1->u16Data3 < pGuid2->u16Data3 ? -1 : 1;
116 if (pGuid1->abData4[0] != pGuid2->abData4[0])
117 return pGuid1->abData4[0] < pGuid2->abData4[0] ? -1 : 1;
118 if (pGuid1->abData4[1] != pGuid2->abData4[1])
119 return pGuid1->abData4[1] < pGuid2->abData4[1] ? -1 : 1;
120 if (pGuid1->abData4[2] != pGuid2->abData4[2])
121 return pGuid1->abData4[2] < pGuid2->abData4[2] ? -1 : 1;
122 if (pGuid1->abData4[3] != pGuid2->abData4[3])
123 return pGuid1->abData4[3] < pGuid2->abData4[3] ? -1 : 1;
124 if (pGuid1->abData4[4] != pGuid2->abData4[4])
125 return pGuid1->abData4[4] < pGuid2->abData4[4] ? -1 : 1;
126 if (pGuid1->abData4[5] != pGuid2->abData4[5])
127 return pGuid1->abData4[5] < pGuid2->abData4[5] ? -1 : 1;
128 if (pGuid1->abData4[6] != pGuid2->abData4[6])
129 return pGuid1->abData4[6] < pGuid2->abData4[6] ? -1 : 1;
130 if (pGuid1->abData4[7] != pGuid2->abData4[7])
131 return pGuid1->abData4[7] < pGuid2->abData4[7] ? -1 : 1;
132 return 0;
133}
134
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use