2002-10-30 03:51:00 +00:00
|
|
|
/*-
|
2005-01-03 02:56:15 +00:00
|
|
|
* Copyright (c) 2002,2005 Marcel Moolenaar
|
2002-10-30 03:51:00 +00:00
|
|
|
* Copyright (c) 2002 Hiten Mahesh Pandya
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <uuid.h>
|
|
|
|
|
2007-04-05 02:07:33 +00:00
|
|
|
/* A macro used to improve the readability of uuid_compare(). */
|
|
|
|
#define DIFF_RETURN(a, b, field) do { \
|
|
|
|
if ((a)->field != (b)->field) \
|
|
|
|
return (((a)->field < (b)->field) ? -1 : 1); \
|
|
|
|
} while (0)
|
|
|
|
|
2002-10-30 03:51:00 +00:00
|
|
|
/*
|
|
|
|
* uuid_compare() - compare two UUIDs.
|
|
|
|
* See also:
|
|
|
|
* http://www.opengroup.org/onlinepubs/009629399/uuid_compare.htm
|
|
|
|
*
|
|
|
|
* NOTE: Either UUID can be NULL, meaning a nil UUID. nil UUIDs are smaller
|
|
|
|
* than any non-nil UUID.
|
|
|
|
*/
|
|
|
|
int32_t
|
2005-01-03 02:56:15 +00:00
|
|
|
uuid_compare(const uuid_t *a, const uuid_t *b, uint32_t *status)
|
2002-10-30 03:51:00 +00:00
|
|
|
{
|
In DCE 1.1, the time_low value is defined as an unsigned 32-bit
integer. Presently, our implementation employs an approach that
converts the value to int64_t, then back to int, unfortunately,
this approach can be problematic when the the difference between
the two time_low is larger than 0x7fffffff, as the value is then
truncated to int.
To quote the test case from the original PR, the following is
true with the current implementation:
865e1a56-b9d9-11d9-ba27-0003476f2e88 < 062ac45c-b9d9-11d9-ba27-0003476f2e88
However, according to the DCE specification, the expected result
should be:
865e1a56-b9d9-11d9-ba27-0003476f2e88 > 062ac45c-b9d9-11d9-ba27-0003476f2e88
This commit adds a new intermediate variable which uses int64_t
to store the result of subtraction between the two time_low values,
which would not introduce different semantic of the MSB found in
time_low value.
PR: 83107
Submitted by: Steve Sears <sjs at acm dot org>
MFC After: 1 month
2006-08-03 03:34:36 +00:00
|
|
|
int res;
|
2002-10-30 03:51:00 +00:00
|
|
|
|
|
|
|
if (status != NULL)
|
|
|
|
*status = uuid_s_ok;
|
|
|
|
|
|
|
|
/* Deal with NULL or equal pointers. */
|
|
|
|
if (a == b)
|
|
|
|
return (0);
|
|
|
|
if (a == NULL)
|
|
|
|
return ((uuid_is_nil(b, NULL)) ? 0 : -1);
|
|
|
|
if (b == NULL)
|
|
|
|
return ((uuid_is_nil(a, NULL)) ? 0 : 1);
|
|
|
|
|
2007-04-05 02:07:33 +00:00
|
|
|
/* We have to compare the hard way. */
|
|
|
|
DIFF_RETURN(a, b, time_low);
|
|
|
|
DIFF_RETURN(a, b, time_mid);
|
|
|
|
DIFF_RETURN(a, b, time_hi_and_version);
|
|
|
|
DIFF_RETURN(a, b, clock_seq_hi_and_reserved);
|
|
|
|
DIFF_RETURN(a, b, clock_seq_low);
|
|
|
|
|
2003-08-08 19:03:37 +00:00
|
|
|
res = memcmp(a->node, b->node, sizeof(a->node));
|
|
|
|
if (res)
|
|
|
|
return ((res < 0) ? -1 : 1);
|
|
|
|
return (0);
|
2002-10-30 03:51:00 +00:00
|
|
|
}
|
2007-04-05 02:07:33 +00:00
|
|
|
|
|
|
|
#undef DIFF_RETURN
|