]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseMemoryLibRepStr/MemLibGuid.c
5abb5997e069d62edb452250dbf155f6d737f12d
[mirror_edk2.git] / MdePkg / Library / BaseMemoryLibRepStr / MemLibGuid.c
1 /** @file
2 Implementation of GUID functions.
3
4 Copyright (c) 2006, Intel Corporation<BR>
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 Module Name: MemLibGuid.c
14
15 The following BaseMemoryLib instances share the same version of this file:
16
17 BaseMemoryLib
18 BaseMemoryLibMmx
19 BaseMemoryLibSse2
20 BaseMemoryLibRepStr
21 PeiMemoryLib
22 DxeMemoryLib
23
24 **/
25
26 //
27 // Include common header file for this module.
28 //
29 #include "MemLibInternals.h"
30
31 /**
32 Copies a source GUID to a destination GUID.
33
34 This function copies the contents of the 128-bit GUID specified by SourceGuid to
35 DestinationGuid, and returns DestinationGuid.
36 If DestinationGuid is NULL, then ASSERT().
37 If SourceGuid is NULL, then ASSERT().
38
39 @param DestinationGuid Pointer to the destination GUID.
40 @param SourceGuid Pointer to the source GUID.
41
42 @return DestinationGuid.
43
44 **/
45 GUID *
46 EFIAPI
47 CopyGuid (
48 OUT GUID *DestinationGuid,
49 IN CONST GUID *SourceGuid
50 )
51 {
52 WriteUnaligned64 (
53 (UINT64*)DestinationGuid,
54 ReadUnaligned64 ((CONST UINT64*)SourceGuid)
55 );
56 WriteUnaligned64 (
57 (UINT64*)DestinationGuid + 1,
58 ReadUnaligned64 ((CONST UINT64*)SourceGuid + 1)
59 );
60 return DestinationGuid;
61 }
62
63 /**
64 Compares two GUIDs.
65
66 This function compares Guid1 to Guid2. If the GUIDs are identical then TRUE is returned.
67 If there are any bit differences in the two GUIDs, then FALSE is returned.
68 If Guid1 is NULL, then ASSERT().
69 If Guid2 is NULL, then ASSERT().
70
71 @param Guid1 A pointer to a 128 bit GUID.
72 @param Guid2 A pointer to a 128 bit GUID.
73
74 @retval TRUE Guid1 and Guid2 are identical.
75 @retval FALSE Guid1 and Guid2 are not identical.
76
77 **/
78 BOOLEAN
79 EFIAPI
80 CompareGuid (
81 IN CONST GUID *Guid1,
82 IN CONST GUID *Guid2
83 )
84 {
85 return (BOOLEAN)(
86 ReadUnaligned64 ((CONST UINT64*)Guid1)
87 == ReadUnaligned64 ((CONST UINT64*)Guid2) &&
88 ReadUnaligned64 ((CONST UINT64*)Guid1 + 1)
89 == ReadUnaligned64 ((CONST UINT64*)Guid2 + 1)
90 );
91 }
92
93 /**
94 Scans a target buffer for a GUID, and returns a pointer to the matching GUID
95 in the target buffer.
96
97 This function searches target the buffer specified by Buffer and Length from
98 the lowest address to the highest address at 128-bit increments for the 128-bit
99 GUID value that matches Guid. If a match is found, then a pointer to the matching
100 GUID in the target buffer is returned. If no match is found, then NULL is returned.
101 If Length is 0, then NULL is returned.
102 If Length > 0 and Buffer is NULL, then ASSERT().
103 If Buffer is not aligned on a 32-bit boundary, then ASSERT().
104 If Length is not aligned on a 128-bit boundary, then ASSERT().
105 If Length is greater than (MAX_ADDRESS ? Buffer + 1), then ASSERT().
106
107 @param Buffer Pointer to the target buffer to scan.
108 @param Length Number of bytes in Buffer to scan.
109 @param Guid Value to search for in the target buffer.
110
111 @return A pointer to the matching Guid in the target buffer or NULL otherwise.
112
113 **/
114 VOID *
115 EFIAPI
116 ScanGuid (
117 IN CONST VOID *Buffer,
118 IN UINTN Length,
119 IN CONST GUID *Guid
120 )
121 {
122 CONST GUID *GuidPtr;
123
124 ASSERT (((UINTN)Buffer & (sizeof (Guid->Data1) - 1)) == 0);
125 ASSERT (Length <= (MAX_ADDRESS - (UINTN)Buffer + 1));
126 ASSERT ((Length & (sizeof (*GuidPtr) - 1)) == 0);
127
128 GuidPtr = (GUID*)Buffer;
129 Buffer = GuidPtr + Length / sizeof (*GuidPtr);
130 while (GuidPtr < (CONST GUID*)Buffer) {
131 if (CompareGuid (GuidPtr, Guid)) {
132 return (VOID*)GuidPtr;
133 }
134 GuidPtr++;
135 }
136 return NULL;
137 }