blob: 19904d7de366caed6f652199f536849f7c96c0ba [file] [log] [blame]
bigbiff7b4c7a62015-01-01 19:44:14 -05001.\" Copyright 1999 Andreas Dilger (adilger@enel.ucalgary.ca)
2.\"
3.\" %Begin-Header%
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, and the entire permission notice in its entirety,
9.\" including the disclaimer of warranties.
10.\" 2. Redistributions in binary form must reproduce the above copyright
11.\" notice, this list of conditions and the following disclaimer in the
12.\" documentation and/or other materials provided with the distribution.
13.\" 3. The name of the author may not be used to endorse or promote
14.\" products derived from this software without specific prior
15.\" written permission.
16.\"
17.\" THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
18.\" WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF
20.\" WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
21.\" LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
23.\" OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
24.\" BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25.\" LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
27.\" USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH
28.\" DAMAGE.
29.\" %End-Header%
30.\"
31.\" Created Wed Mar 10 17:42:12 1999, Andreas Dilger
32.TH UUID_GENERATE 3 "May 2009" "util-linux" "Libuuid API"
33.SH NAME
34uuid_generate, uuid_generate_random, uuid_generate_time,
35uuid_generate_time_safe \- create a new unique UUID value
36.SH SYNOPSIS
37.nf
38.B #include <uuid.h>
39.sp
40.BI "void uuid_generate(uuid_t " out );
41.BI "void uuid_generate_random(uuid_t " out );
42.BI "void uuid_generate_time(uuid_t " out );
43.BI "int uuid_generate_time_safe(uuid_t " out );
44.fi
45.SH DESCRIPTION
46The
47.B uuid_generate
48function creates a new universally unique identifier (UUID). The uuid will
49be generated based on high-quality randomness from
50.IR /dev/urandom ,
51if available. If it is not available, then
52.B uuid_generate
53will use an alternative algorithm which uses the current time, the
54local ethernet MAC address (if available), and random data generated
55using a pseudo-random generator.
56.sp
57The
58.B uuid_generate_random
59function forces the use of the all-random UUID format, even if
60a high-quality random number generator (i.e.,
61.IR /dev/urandom )
62is not available, in which case a pseudo-random
63generator will be substituted. Note that the use of a pseudo-random
64generator may compromise the uniqueness of UUIDs
65generated in this fashion.
66.sp
67The
68.B uuid_generate_time
69function forces the use of the alternative algorithm which uses the
70current time and the local ethernet MAC address (if available).
71This algorithm used to be the default one used to generate UUID, but
72because of the use of the ethernet MAC address, it can leak
73information about when and where the UUID was generated. This can cause
74privacy problems in some applications, so the
75.B uuid_generate
76function only uses this algorithm if a high-quality source of
77randomness is not available. To guarantee uniqueness of UUIDs generated
78by concurrently running processes, the uuid library uses global
79clock state counter (if the process has permissions to gain exclusive access
80to this file) and/or the
81.B uuidd
82daemon, if it is running already or can be spawned by the process (if
83installed and the process has enough permissions to run it). If neither of
84these two synchronization mechanisms can be used, it is theoretically possible
85that two concurrently running processes obtain the same UUID(s). To tell
86whether the UUID has been generated in a safe manner, use
87.BR uuid_generate_time_safe .
88.sp
89The
90.B uuid_generate_time_safe
91is similar to
92.BR uuid_generate_time ,
93except that it returns a value which denotes whether any of the synchronization
94mechanisms (see above) has been used.
95.sp
96The UUID is 16 bytes (128 bits) long, which gives approximately 3.4x10^38
97unique values (there are approximately 10^80 elementary particles in
98the universe according to Carl Sagan's
99.IR Cosmos ).
100The new UUID can reasonably be considered unique among all UUIDs created
101on the local system, and among UUIDs created on other systems in the past
102and in the future.
103.SH RETURN VALUE
104The newly created UUID is returned in the memory location pointed to by
105.IR out .
106.B uuid_generate_time_safe
107returns zero if the UUID has been generated in a safe manner, \-1 otherwise.
108.SH "CONFORMING TO"
109OSF DCE 1.1
110.SH AUTHOR
111Theodore Y.\& Ts'o
112.SH AVAILABILITY
113.B libuuid
114is part of the util-linux package since version 2.15.1 and is available from
115ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
116.SH "SEE ALSO"
117.BR uuid (3),
118.BR uuidgen (1),
119.BR uuidd (8),
120.BR uuid_clear (3),
121.BR uuid_compare (3),
122.BR uuid_copy (3),
123.BR uuid_is_null (3),
124.BR uuid_parse (3),
125.BR uuid_time (3),
126.BR uuid_unparse (3)