mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-24 14:45:24 +00:00
Remove hand-crafted UUID parsers
* src/libvirt.c: Remove hand-crafted UUID parsers in favour of calling virParseUUID
This commit is contained in:
parent
b08e6d38ae
commit
d9b285d7e8
@ -1827,10 +1827,7 @@ error:
|
|||||||
virDomainPtr
|
virDomainPtr
|
||||||
virDomainLookupByUUIDString(virConnectPtr conn, const char *uuidstr)
|
virDomainLookupByUUIDString(virConnectPtr conn, const char *uuidstr)
|
||||||
{
|
{
|
||||||
int raw[VIR_UUID_BUFLEN], i;
|
|
||||||
unsigned char uuid[VIR_UUID_BUFLEN];
|
unsigned char uuid[VIR_UUID_BUFLEN];
|
||||||
int ret;
|
|
||||||
|
|
||||||
DEBUG("conn=%p, uuidstr=%s", conn, uuidstr);
|
DEBUG("conn=%p, uuidstr=%s", conn, uuidstr);
|
||||||
|
|
||||||
virResetLastError();
|
virResetLastError();
|
||||||
@ -1843,26 +1840,11 @@ virDomainLookupByUUIDString(virConnectPtr conn, const char *uuidstr)
|
|||||||
virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
/* XXX: sexpr_uuid() also supports 'xxxx-xxxx-xxxx-xxxx' format.
|
|
||||||
* We needn't it here. Right?
|
|
||||||
*/
|
|
||||||
ret = sscanf(uuidstr,
|
|
||||||
"%02x%02x%02x%02x-"
|
|
||||||
"%02x%02x-"
|
|
||||||
"%02x%02x-"
|
|
||||||
"%02x%02x-"
|
|
||||||
"%02x%02x%02x%02x%02x%02x",
|
|
||||||
raw + 0, raw + 1, raw + 2, raw + 3,
|
|
||||||
raw + 4, raw + 5, raw + 6, raw + 7,
|
|
||||||
raw + 8, raw + 9, raw + 10, raw + 11,
|
|
||||||
raw + 12, raw + 13, raw + 14, raw + 15);
|
|
||||||
|
|
||||||
if (ret!=VIR_UUID_BUFLEN) {
|
if (virUUIDParse(uuidstr, uuid) < 0) {
|
||||||
virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
for (i = 0; i < VIR_UUID_BUFLEN; i++)
|
|
||||||
uuid[i] = raw[i] & 0xFF;
|
|
||||||
|
|
||||||
return virDomainLookupByUUID(conn, &uuid[0]);
|
return virDomainLookupByUUID(conn, &uuid[0]);
|
||||||
|
|
||||||
@ -5026,9 +5008,7 @@ error:
|
|||||||
virNetworkPtr
|
virNetworkPtr
|
||||||
virNetworkLookupByUUIDString(virConnectPtr conn, const char *uuidstr)
|
virNetworkLookupByUUIDString(virConnectPtr conn, const char *uuidstr)
|
||||||
{
|
{
|
||||||
int raw[VIR_UUID_BUFLEN], i;
|
|
||||||
unsigned char uuid[VIR_UUID_BUFLEN];
|
unsigned char uuid[VIR_UUID_BUFLEN];
|
||||||
int ret;
|
|
||||||
DEBUG("conn=%p, uuidstr=%s", conn, uuidstr);
|
DEBUG("conn=%p, uuidstr=%s", conn, uuidstr);
|
||||||
|
|
||||||
virResetLastError();
|
virResetLastError();
|
||||||
@ -5042,26 +5022,10 @@ virNetworkLookupByUUIDString(virConnectPtr conn, const char *uuidstr)
|
|||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* XXX: sexpr_uuid() also supports 'xxxx-xxxx-xxxx-xxxx' format.
|
if (virUUIDParse(uuidstr, uuid) < 0) {
|
||||||
* We needn't it here. Right?
|
|
||||||
*/
|
|
||||||
ret = sscanf(uuidstr,
|
|
||||||
"%02x%02x%02x%02x-"
|
|
||||||
"%02x%02x-"
|
|
||||||
"%02x%02x-"
|
|
||||||
"%02x%02x-"
|
|
||||||
"%02x%02x%02x%02x%02x%02x",
|
|
||||||
raw + 0, raw + 1, raw + 2, raw + 3,
|
|
||||||
raw + 4, raw + 5, raw + 6, raw + 7,
|
|
||||||
raw + 8, raw + 9, raw + 10, raw + 11,
|
|
||||||
raw + 12, raw + 13, raw + 14, raw + 15);
|
|
||||||
|
|
||||||
if (ret!=VIR_UUID_BUFLEN) {
|
|
||||||
virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
for (i = 0; i < VIR_UUID_BUFLEN; i++)
|
|
||||||
uuid[i] = raw[i] & 0xFF;
|
|
||||||
|
|
||||||
return virNetworkLookupByUUID(conn, &uuid[0]);
|
return virNetworkLookupByUUID(conn, &uuid[0]);
|
||||||
|
|
||||||
@ -8875,10 +8839,7 @@ error:
|
|||||||
virSecretPtr
|
virSecretPtr
|
||||||
virSecretLookupByUUIDString(virConnectPtr conn, const char *uuidstr)
|
virSecretLookupByUUIDString(virConnectPtr conn, const char *uuidstr)
|
||||||
{
|
{
|
||||||
int raw[VIR_UUID_BUFLEN], i;
|
|
||||||
unsigned char uuid[VIR_UUID_BUFLEN];
|
unsigned char uuid[VIR_UUID_BUFLEN];
|
||||||
int ret;
|
|
||||||
|
|
||||||
DEBUG("conn=%p, uuidstr=%s", conn, uuidstr);
|
DEBUG("conn=%p, uuidstr=%s", conn, uuidstr);
|
||||||
|
|
||||||
virResetLastError();
|
virResetLastError();
|
||||||
@ -8891,26 +8852,11 @@ virSecretLookupByUUIDString(virConnectPtr conn, const char *uuidstr)
|
|||||||
virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
/* XXX: sexpr_uuid() also supports 'xxxx-xxxx-xxxx-xxxx' format.
|
|
||||||
* We needn't it here. Right?
|
|
||||||
*/
|
|
||||||
ret = sscanf(uuidstr,
|
|
||||||
"%02x%02x%02x%02x-"
|
|
||||||
"%02x%02x-"
|
|
||||||
"%02x%02x-"
|
|
||||||
"%02x%02x-"
|
|
||||||
"%02x%02x%02x%02x%02x%02x",
|
|
||||||
raw + 0, raw + 1, raw + 2, raw + 3,
|
|
||||||
raw + 4, raw + 5, raw + 6, raw + 7,
|
|
||||||
raw + 8, raw + 9, raw + 10, raw + 11,
|
|
||||||
raw + 12, raw + 13, raw + 14, raw + 15);
|
|
||||||
|
|
||||||
if (ret!=VIR_UUID_BUFLEN) {
|
if (virUUIDParse(uuidstr, uuid) < 0) {
|
||||||
virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
virLibConnError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
for (i = 0; i < VIR_UUID_BUFLEN; i++)
|
|
||||||
uuid[i] = raw[i] & 0xFF;
|
|
||||||
|
|
||||||
return virSecretLookupByUUID(conn, &uuid[0]);
|
return virSecretLookupByUUID(conn, &uuid[0]);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user