zephyr/net/bluetooth/uuid.c

114 lines
2.8 KiB
C

/* uuid.c - Bluetooth UUID handling */
/*
* Copyright (c) 2015 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <nanokernel.h>
#include <toolchain.h>
#include <string.h>
#include <errno.h>
#include <bluetooth/uuid.h>
#if defined(CONFIG_BLUETOOTH_DEBUG)
#include <stdio.h>
#include <misc/byteorder.h>
#endif /* CONFIG_BLUETOOTH_DEBUG */
/* TODO: Decide wether to continue using BLE format or switch to RFC 4122 */
static const struct bt_uuid uuid128_base = {
.type = BT_UUID_128,
.u128 = { 0xfb, 0x34, 0x9b, 0x5f, 0x80, 0x00, 0x00, 0x80, 0x00, 0x10,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
};
static void uuid_to_uuid128(const struct bt_uuid *src, struct bt_uuid *dst)
{
switch (src->type) {
case BT_UUID_16:
*dst = uuid128_base;
memcpy(&dst->u128[2], &src->u16, sizeof(src->u16));
return;
case BT_UUID_128:
memcpy(dst, src, sizeof(*dst));
return;
}
}
static int uuid128_cmp(const struct bt_uuid *u1, const struct bt_uuid *u2)
{
struct bt_uuid uuid1, uuid2;
uuid_to_uuid128(u1, &uuid1);
uuid_to_uuid128(u2, &uuid2);
return memcmp(uuid1.u128, uuid2.u128, sizeof(uuid1.u128));
}
int bt_uuid_cmp(const struct bt_uuid *u1, const struct bt_uuid *u2)
{
/* Convert to 128 bit if types don't match */
if (u1->type != u2->type)
return uuid128_cmp(u1, u2);
switch (u1->type) {
case BT_UUID_16:
return (int)u1->u16 - (int)u2->u16;
case BT_UUID_128:
return memcmp(u1->u128, u2->u128, sizeof(u1->u128));
}
return -EINVAL;
}
#if defined(CONFIG_BLUETOOTH_DEBUG)
void bt_uuid_to_str(const struct bt_uuid *uuid, char *str, size_t len)
{
uint32_t tmp1, tmp5;
uint16_t tmp0, tmp2, tmp3, tmp4;
switch (uuid->type) {
case BT_UUID_16:
snprintf(str, len, "%.4x", uuid->u16);
break;
case BT_UUID_128:
memcpy(&tmp0, &uuid->u128[0], sizeof(tmp0));
memcpy(&tmp1, &uuid->u128[2], sizeof(tmp1));
memcpy(&tmp2, &uuid->u128[6], sizeof(tmp2));
memcpy(&tmp3, &uuid->u128[8], sizeof(tmp3));
memcpy(&tmp4, &uuid->u128[10], sizeof(tmp4));
memcpy(&tmp5, &uuid->u128[12], sizeof(tmp5));
snprintf(str, len, "%.8x-%.4x-%.4x-%.4x-%.8x%.4x",
tmp5, tmp4, tmp3, tmp2, tmp1, tmp0);
break;
default:
memset(str, 0, len);
return;
}
}
const char *bt_uuid_str(const struct bt_uuid *uuid)
{
static char str[37];
bt_uuid_to_str(uuid, str, sizeof(str));
return str;
}
#endif /* CONFIG_BLUETOOTH_DEBUG */