]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseMemoryLibRepStr/MemLibGuid.c
431ffa393144e3811b9b95199a4fe715fe876d32
[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 The following BaseMemoryLib instances share the same version of this file:
14
15 BaseMemoryLib
16 BaseMemoryLibMmx
17 BaseMemoryLibSse2
18 BaseMemoryLibRepStr
19 PeiMemoryLib
20 DxeMemoryLib
21
22 **/
23
24 //
25 // Include common header file for this module.
26 //
27 #include "MemLibInternals.h"
28
29 /**
30 Copies a source GUID to a destination GUID.
31
32 This function copies the contents of the 128-bit GUID specified by SourceGuid to
33 DestinationGuid, and returns DestinationGuid.
34 If DestinationGuid is NULL, then ASSERT().
35 If SourceGuid is NULL, then ASSERT().
36
37 @param DestinationGuid Pointer to the destination GUID.
38 @param SourceGuid Pointer to the source GUID.
39
40 @return DestinationGuid.
41
42 **/
43 GUID *
44 EFIAPI
45 CopyGuid (
46 OUT GUID *DestinationGuid,
47 IN CONST GUID *SourceGuid
48 )
49 {
50 WriteUnaligned64 (
51 (UINT64*)DestinationGuid,
52 ReadUnaligned64 ((CONST UINT64*)SourceGuid)
53 );
54 WriteUnaligned64 (
55 (UINT64*)DestinationGuid + 1,
56 ReadUnaligned64 ((CONST UINT64*)SourceGuid + 1)
57 );
58 return DestinationGuid;
59 }
60
61 /**
62 Compares two GUIDs.
63
64 This function compares Guid1 to Guid2. If the GUIDs are identical then TRUE is returned.
65 If there are any bit differences in the two GUIDs, then FALSE is returned.
66 If Guid1 is NULL, then ASSERT().
67 If Guid2 is NULL, then ASSERT().
68
69 @param Guid1 A pointer to a 128 bit GUID.
70 @param Guid2 A pointer to a 128 bit GUID.
71
72 @retval TRUE Guid1 and Guid2 are identical.
73 @retval FALSE Guid1 and Guid2 are not identical.
74
75 **/
76 BOOLEAN
77 EFIAPI
78 CompareGuid (
79 IN CONST GUID *Guid1,
80 IN CONST GUID *Guid2
81 )
82 {
83 return (BOOLEAN)(
84 ReadUnaligned64 ((CONST UINT64*)Guid1)
85 == ReadUnaligned64 ((CONST UINT64*)Guid2) &&
86 ReadUnaligned64 ((CONST UINT64*)Guid1 + 1)
87 == ReadUnaligned64 ((CONST UINT64*)Guid2 + 1)
88 );
89 }
90
91 /**
92 Scans a target buffer for a GUID, and returns a pointer to the matching GUID
93 in the target buffer.
94
95 This function searches target the buffer specified by Buffer and Length from
96 the lowest address to the highest address at 128-bit increments for the 128-bit
97 GUID value that matches Guid. If a match is found, then a pointer to the matching
98 GUID in the target buffer is returned. If no match is found, then NULL is returned.
99 If Length is 0, then NULL is returned.
100 If Length > 0 and Buffer is NULL, then ASSERT().
101 If Buffer is not aligned on a 32-bit boundary, then ASSERT().
102 If Length is not aligned on a 128-bit boundary, then ASSERT().
103 If Length is greater than (MAX_ADDRESS ? Buffer + 1), then ASSERT().
104
105 @param Buffer Pointer to the target buffer to scan.
106 @param Length Number of bytes in Buffer to scan.
107 @param Guid Value to search for in the target buffer.
108
109 @return A pointer to the matching Guid in the target buffer or NULL otherwise.
110
111 **/
112 VOID *
113 EFIAPI
114 ScanGuid (
115 IN CONST VOID *Buffer,
116 IN UINTN Length,
117 IN CONST GUID *Guid
118 )
119 {
120 CONST GUID *GuidPtr;
121
122 ASSERT (((UINTN)Buffer & (sizeof (Guid->Data1) - 1)) == 0);
123 ASSERT (Length <= (MAX_ADDRESS - (UINTN)Buffer + 1));
124 ASSERT ((Length & (sizeof (*GuidPtr) - 1)) == 0);
125
126 GuidPtr = (GUID*)Buffer;
127 Buffer = GuidPtr + Length / sizeof (*GuidPtr);
128 while (GuidPtr < (CONST GUID*)Buffer) {
129 if (CompareGuid (GuidPtr, Guid)) {
130 return (VOID*)GuidPtr;
131 }
132 GuidPtr++;
133 }
134 return NULL;
135 }