165393a86SMarcel Moolenaar.\" Copyright (c) 2002 Marcel Moolenaar 265393a86SMarcel Moolenaar.\" Copyright (c) 2002 Hiten Mahesh Pandya 365393a86SMarcel Moolenaar.\" All rights reserved. 465393a86SMarcel Moolenaar.\" 565393a86SMarcel Moolenaar.\" Redistribution and use in source and binary forms, with or without 665393a86SMarcel Moolenaar.\" modification, are permitted provided that the following conditions 765393a86SMarcel Moolenaar.\" are met: 865393a86SMarcel Moolenaar.\" 1. Redistributions of source code must retain the above copyright 965393a86SMarcel Moolenaar.\" notice, this list of conditions and the following disclaimer. 1065393a86SMarcel Moolenaar.\" 2. Redistributions in binary form must reproduce the above copyright 1165393a86SMarcel Moolenaar.\" notice, this list of conditions and the following disclaimer in the 1265393a86SMarcel Moolenaar.\" documentation and/or other materials provided with the distribution. 1365393a86SMarcel Moolenaar.\" 1465393a86SMarcel Moolenaar.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 1565393a86SMarcel Moolenaar.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 1665393a86SMarcel Moolenaar.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 1765393a86SMarcel Moolenaar.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 1865393a86SMarcel Moolenaar.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 1965393a86SMarcel Moolenaar.\" BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 2065393a86SMarcel Moolenaar.\" LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 2165393a86SMarcel Moolenaar.\" AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 2265393a86SMarcel Moolenaar.\" OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 2365393a86SMarcel Moolenaar.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 2465393a86SMarcel Moolenaar.\" SUCH DAMAGE. 2565393a86SMarcel Moolenaar.\" 26f6842865SFelix Johnson.Dd November 19, 2021 2765393a86SMarcel Moolenaar.Dt UUID 3 2865393a86SMarcel Moolenaar.Os 2965393a86SMarcel Moolenaar.Sh NAME 30*dc41de36SDag-Erling Smørgrav.Nm uuid_compare , 31*dc41de36SDag-Erling Smørgrav.Nm uuid_create , 32*dc41de36SDag-Erling Smørgrav.Nm uuid_create_nil , 33*dc41de36SDag-Erling Smørgrav.Nm uuid_equal , 34*dc41de36SDag-Erling Smørgrav.Nm uuid_from_string , 35*dc41de36SDag-Erling Smørgrav.Nm uuid_hash , 36*dc41de36SDag-Erling Smørgrav.Nm uuid_is_nil , 37*dc41de36SDag-Erling Smørgrav.Nm uuid_to_string 3865393a86SMarcel Moolenaar.Nd DCE 1.1 compliant UUID functions 3965393a86SMarcel Moolenaar.Sh LIBRARY 4065393a86SMarcel Moolenaar.Lb libc 4165393a86SMarcel Moolenaar.Sh SYNOPSIS 4265393a86SMarcel Moolenaar.In uuid.h 4365393a86SMarcel Moolenaar.Ft int32_t 446eee8269SRuslan Ermilov.Fn uuid_compare "const uuid_t *uuid1" "const uuid_t *uuid2" "uint32_t *status" 4565393a86SMarcel Moolenaar.Ft void 4665393a86SMarcel Moolenaar.Fn uuid_create "uuid_t *uuid" "uint32_t *status" 4765393a86SMarcel Moolenaar.Ft void 4865393a86SMarcel Moolenaar.Fn uuid_create_nil "uuid_t *uuid" "uint32_t *status" 4965393a86SMarcel Moolenaar.Ft int32_t 506eee8269SRuslan Ermilov.Fn uuid_equal "const uuid_t *uuid1" "const uuid_t *uuid2" "uint32_t *status" 5165393a86SMarcel Moolenaar.Ft void 5265393a86SMarcel Moolenaar.Fn uuid_from_string "const char *str" "uuid_t *uuid" "uint32_t *status" 5365393a86SMarcel Moolenaar.Ft uint16_t 546eee8269SRuslan Ermilov.Fn uuid_hash "const uuid_t *uuid" "uint32_t *status" 5565393a86SMarcel Moolenaar.Ft int32_t 566eee8269SRuslan Ermilov.Fn uuid_is_nil "const uuid_t *uuid" "uint32_t *status" 5765393a86SMarcel Moolenaar.Ft void 586eee8269SRuslan Ermilov.Fn uuid_to_string "const uuid_t *uuid" "char **str" "uint32_t *status" 59ad8ea5a8SMaksim Yevmenkin.Ft void 60ad8ea5a8SMaksim Yevmenkin.Fn uuid_enc_le "void *buf" "const uuid_t *uuid" 61ad8ea5a8SMaksim Yevmenkin.Ft void 62ad8ea5a8SMaksim Yevmenkin.Fn uuid_dec_le "const void *buf" "uuid_t *" 63ad8ea5a8SMaksim Yevmenkin.Ft void 64ad8ea5a8SMaksim Yevmenkin.Fn uuid_enc_be "void *buf" "const uuid_t *uuid" 65ad8ea5a8SMaksim Yevmenkin.Ft void 66ad8ea5a8SMaksim Yevmenkin.Fn uuid_dec_be "const void *buf" "uuid_t *" 6765393a86SMarcel Moolenaar.Sh DESCRIPTION 6865393a86SMarcel MoolenaarThe family of DCE 1.1 compliant UUID functions allow applications to operate 6965393a86SMarcel Moolenaaron universally unique identifiers, or UUIDs. 7065393a86SMarcel MoolenaarThe 7165393a86SMarcel Moolenaar.Fn uuid_create 7265393a86SMarcel Moolenaarand 7365393a86SMarcel Moolenaar.Fn uuid_create_nil 7465393a86SMarcel Moolenaarfunctions create UUIDs. 7565393a86SMarcel MoolenaarTo convert from the binary representation to the string representation or 7665393a86SMarcel Moolenaarvice versa, use 7765393a86SMarcel Moolenaar.Fn uuid_to_string 7865393a86SMarcel Moolenaaror 7965393a86SMarcel Moolenaar.Fn uuid_from_string 8065393a86SMarcel Moolenaarrespectively. 81ad8ea5a8SMaksim Yevmenkin.Pp 82ad8ea5a8SMaksim YevmenkinThe 831d73388aSAndrey V. Elsukov.Fn uuid_to_string 841d73388aSAndrey V. Elsukovfunction set 851d73388aSAndrey V. Elsukov.Fa *str 861d73388aSAndrey V. Elsukovto be a pointer to a buffer sufficiently large to hold the string. 871d73388aSAndrey V. ElsukovThis pointer should be passed to 881d73388aSAndrey V. Elsukov.Xr free 3 891d73388aSAndrey V. Elsukovto release the allocated storage when it is no longer needed. 901d73388aSAndrey V. Elsukov.Pp 911d73388aSAndrey V. ElsukovThe 92ad8ea5a8SMaksim Yevmenkin.Fn uuid_enc_le 93ad8ea5a8SMaksim Yevmenkinand 94ad8ea5a8SMaksim Yevmenkin.Fn uuid_enc_be 95ad8ea5a8SMaksim Yevmenkinfunctions encode a binary representation of a UUID into an octet stream 96ad8ea5a8SMaksim Yevmenkinin little-endian and big-endian byte-order, respectively. 97ad8ea5a8SMaksim YevmenkinThe destination buffer must be pre-allocated by the caller, and must be 98ad8ea5a8SMaksim Yevmenkinlarge enough to hold the 16-octet binary UUID. 99ad8ea5a8SMaksim YevmenkinThese routines are not part of the DCE RPC API. 100ad8ea5a8SMaksim YevmenkinThey are provided for convenience. 101ad8ea5a8SMaksim Yevmenkin.Pp 102ad8ea5a8SMaksim YevmenkinThe 103ad8ea5a8SMaksim Yevmenkin.Fn uuid_dec_le 104ad8ea5a8SMaksim Yevmenkinand 105ad8ea5a8SMaksim Yevmenkin.Fn uuid_dec_be 106ad8ea5a8SMaksim Yevmenkinfunctions decode a UUID from an octet stream in little-endian and 107ad8ea5a8SMaksim Yevmenkinbig-endian byte-order, respectively. 108ad8ea5a8SMaksim YevmenkinThese routines are not part of the DCE RPC API. 109ad8ea5a8SMaksim YevmenkinThey are provided for convenience. 110f6842865SFelix Johnson.Pp 111f6842865SFelix JohnsonThe 112f6842865SFelix Johnson.Fn uuid_compare 113f6842865SFelix Johnsonand 114f6842865SFelix Johnson.Fn uuid_equal 115f6842865SFelix Johnsonfunctions compare two UUIDs for equality. 116f6842865SFelix JohnsonUUIDs are equal if pointers 117f6842865SFelix Johnson.Fa a 118f6842865SFelix Johnsonand 119f6842865SFelix Johnson.Fa b 120f6842865SFelix Johnsonare equal or both 121f6842865SFelix Johnson.Dv NULL , 122f6842865SFelix Johnsonor if the structures 123f6842865SFelix Johnson.Fa a 124f6842865SFelix Johnsonand 125f6842865SFelix Johnson.Fa b 126f6842865SFelix Johnsonpoint to are equal. 127f6842865SFelix Johnson.Fn uuid_compare 128f6842865SFelix Johnsonreturns 0 if the UUIDs are equal, -1 if 129f6842865SFelix Johnson.Fa a 130f6842865SFelix Johnsonis less than 131f6842865SFelix Johnson.Fa b , 132f6842865SFelix Johnsonand 1 if 133f6842865SFelix Johnson.Fa a 134f6842865SFelix Johnsonis greater than 135f6842865SFelix Johnson.Fa b . 136f6842865SFelix Johnson.Fn uuid_equal 137f6842865SFelix Johnsonreturns 1 if the UUIDs are equal, 0 if they are 138f6842865SFelix Johnsonnot equal. 139f6842865SFelix Johnson.Pp 140f6842865SFelix JohnsonThe 141f6842865SFelix Johnson.Fn uuid_is_nil 142f6842865SFelix Johnsonfunction compares a UUID to 143f6842865SFelix Johnson.Dv NULL . 144f6842865SFelix JohnsonThe function returns 1 if 145f6842865SFelix Johnson.Fa u 146f6842865SFelix Johnsonis 147f6842865SFelix Johnson.Dv NULL 148f6842865SFelix Johnsonor if the UUID consists of all zeros, and zero otherwise. 149f6842865SFelix Johnson.Pp 150f6842865SFelix JohnsonThe 151f6842865SFelix Johnson.Fn uuid_hash 152f6842865SFelix Johnsonfunction returns a 16-bit hash value for the specified UUID. 15365393a86SMarcel Moolenaar.Sh RETURN VALUES 15465393a86SMarcel MoolenaarThe successful or unsuccessful completion of the function is returned in 15565393a86SMarcel Moolenaarthe 15665393a86SMarcel Moolenaar.Fa status 1572efeeba5SRuslan Ermilovargument. 15860849ee1SRuslan ErmilovPossible values are: 15960849ee1SRuslan Ermilov.Bl -tag -width ".Dv uuid_s_invalid_string_uuid" 16065393a86SMarcel Moolenaar.It Dv uuid_s_ok 16165393a86SMarcel MoolenaarThe function completed successfully. 16265393a86SMarcel Moolenaar.It Dv uuid_s_bad_version 16365393a86SMarcel MoolenaarThe UUID does not have a known version. 16465393a86SMarcel Moolenaar.It Dv uuid_s_invalid_string_uuid 16565393a86SMarcel MoolenaarThe string representation of an UUID is not valid. 16665393a86SMarcel Moolenaar.It Dv uuid_s_no_memory 1671d73388aSAndrey V. ElsukovThe function can not allocate memory to store an UUID representation. 16865393a86SMarcel Moolenaar.El 169f6842865SFelix Johnson.Pp 170f6842865SFelix Johnson.Fn uuid_compare , 171f6842865SFelix Johnson.Fn uuid_equal , 172f6842865SFelix Johnson.Fn uuid_is_nil , 173f6842865SFelix Johnsonand 174f6842865SFelix Johnson.Fn uuid_hash 175f6842865SFelix Johnsonalways set 176f6842865SFelix Johnson.Fa status 177f6842865SFelix Johnsonto 178f6842865SFelix Johnson.Dv uuid_s_ok . 17965393a86SMarcel Moolenaar.Sh SEE ALSO 18065393a86SMarcel Moolenaar.Xr uuidgen 1 , 18165393a86SMarcel Moolenaar.Xr uuidgen 2 18265393a86SMarcel Moolenaar.Sh STANDARDS 18365393a86SMarcel MoolenaarThe UUID functions conform to the DCE 1.1 RPC specification. 18424a0682cSRuslan Ermilov.Sh BUGS 18524a0682cSRuslan ErmilovThis manpage can be improved. 186