common: add function to convert from Microsoft's GUID to string

This commit is contained in:
Koichiro IWAO 2022-10-29 01:48:03 +09:00
parent ece8fd2946
commit 791f055e18
7 changed files with 106 additions and 2 deletions

View File

@ -70,3 +70,21 @@ const char *guid_to_str(const struct guid *guid, char *str)
g_bytes_to_hexstr(guid->g, GUID_SIZE, str, GUID_STR_SIZE);
return str;
}
const char *ms_guid_to_str(const char *src, char *dest)
{
const unsigned char *guid = (const unsigned char *)src;
/*
* Flipping integers into little-endian
* See also: https://devblogs.microsoft.com/oldnewthing/20220928-00/?p=107221
*/
g_sprintf(dest, "%02X%02X%02X%02X-%02X%02X-%02X%02X-%02X%02X-%02X%02X%02X%02X%02X%02X",
guid[3], guid[2], guid[1], guid[0],
guid[5], guid[4],
guid[7], guid[6],
guid[8], guid[9],
guid[10], guid[11], guid[12], guid[13], guid[14], guid[15]);
return dest;
}

View File

@ -28,7 +28,8 @@
#include "arch.h"
#define GUID_SIZE 16 /* bytes */
#define GUID_STR_SIZE (GUID_SIZE * 2 + 1) /* Size for string representation */
#define GUID_STR_SIZE (GUID_SIZE * 2 + 4 + 1) /* w/ 4 hyphens + null terminator */
/**
* Use a struct for the guid so we can easily copy by assignment
@ -72,4 +73,14 @@ guid_is_set(const struct guid *guid);
*/
const char *guid_to_str(const struct guid *guid, char *str);
/**
* Converts a Microsoft's COM GUID to a string representation
*
* @param src GUID to represent
* @param dest pointer to at least GUID_STR_SIZE bytes to store the
* representation
*/
const char *ms_guid_to_str(const char *src, char *dest);
#endif

View File

@ -17,7 +17,8 @@ test_common_SOURCES = \
test_string_calls.c \
test_os_calls.c \
test_ssl_calls.c \
test_base64.c
test_base64.c \
test_guid.c
test_common_CFLAGS = \
@CHECK_CFLAGS@ \

View File

@ -11,5 +11,6 @@ Suite *make_suite_test_string(void);
Suite *make_suite_test_os_calls(void);
Suite *make_suite_test_ssl_calls(void);
Suite *make_suite_test_base64(void);
Suite *make_suite_test_guid(void);
#endif /* TEST_COMMON_H */

View File

@ -49,6 +49,7 @@ int main (void)
srunner_add_suite(sr, make_suite_test_os_calls());
srunner_add_suite(sr, make_suite_test_ssl_calls());
srunner_add_suite(sr, make_suite_test_base64());
srunner_add_suite(sr, make_suite_test_guid());
// srunner_add_suite(sr, make_list_suite());
srunner_set_tap(sr, "-");

71
tests/common/test_guid.c Normal file
View File

@ -0,0 +1,71 @@
#if defined(HAVE_CONFIG_H)
#include "config_ac.h"
#endif
#include "guid.h"
#include "string_calls.h"
#include "ms-rdpbcgr.h"
#include "test_common.h"
/******************************************************************************/
START_TEST(test_ms_guid_to_str_remotefx)
{
/* setup */
char dest[GUID_STR_SIZE];
/* test */
ms_guid_to_str(XR_CODEC_GUID_REMOTEFX, dest);
/* verify */
ck_assert_str_eq(dest, "76772F12-BD72-4463-AFB3-B73C9C6F7886");
}
END_TEST
START_TEST(test_ms_guid_to_str_nscodec)
{
/* setup */
char dest[GUID_STR_SIZE];
/* test */
ms_guid_to_str(XR_CODEC_GUID_NSCODEC, dest);
/* verify */
ck_assert_str_eq(dest, "CA8D1BB9-000F-154F-589F-AE2D1A87E2D6");
}
END_TEST
START_TEST(test_ms_guid_to_str_ignore)
{
/* setup */
char dest[GUID_STR_SIZE];
/* test */
ms_guid_to_str(XR_CODEC_GUID_IGNORE, dest);
/* verify */
ck_assert_str_eq(dest, "0C4351A6-3535-42AE-910C-CDFCE5760B58");
}
END_TEST
/******************************************************************************/
Suite *
make_suite_test_guid(void)
{
Suite *s;
TCase *tc_guid;
s = suite_create("GUID");
tc_guid = tcase_create("guid_to_str");
suite_add_tcase(s, tc_guid);
tcase_add_test(tc_guid, test_ms_guid_to_str_remotefx);
tcase_add_test(tc_guid, test_ms_guid_to_str_nscodec);
tcase_add_test(tc_guid, test_ms_guid_to_str_ignore);
return s;
}

View File

@ -4,6 +4,7 @@
#endif
#include "string_calls.h"
#include "ms-rdpbcgr.h"
#include "test_common.h"