2 * Copyright (c) 2002 Marcel Moolenaar
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 * $FreeBSD: src/sys/kern/kern_uuid.c,v 1.13 2007/04/23 12:53:00 pjd Exp $
27 * $DragonFly: src/sys/kern/kern_uuid.c,v 1.4 2007/06/19 06:07:57 dillon Exp $
30 #include <sys/param.h>
31 #include <sys/endian.h>
32 #include <sys/systm.h>
33 #include <sys/kernel.h>
35 #include <sys/kern_syscall.h>
36 #include <sys/random.h>
38 #include <sys/socket.h>
39 #include <sys/sysproto.h>
42 #include <net/if_var.h>
46 * http://www.opengroup.org/dce/info/draft-leach-uuids-guids-01.txt
47 * http://www.opengroup.org/onlinepubs/009629399/apdxa.htm
49 * Note that the generator state is itself an UUID, but the time and clock
50 * sequence fields are written in the native byte order.
53 /* We use an alternative, more convenient representation in the generator. */
56 uint64_t ll
; /* internal. */
63 uint16_t seq
; /* Big-endian. */
64 uint16_t node
[UUID_NODE_LEN
>>1];
67 static struct uuid_private uuid_last
;
69 static struct lock uuid_lock
;
73 uuid_lock_init(void *arg __unused
)
75 lockinit(&uuid_lock
, "uuid", 0, 0);
77 SYSINIT(uuid_lock
, SI_BOOT1_POST
, SI_ORDER_ANY
, uuid_lock_init
, NULL
);
80 * Ask the network subsystem for a real MAC address from any of the
81 * system interfaces. If we can't find one, generate a random multicast
85 uuid_node(uint16_t *node
)
87 if (if_getanyethermac(node
, UUID_NODE_LEN
) != 0)
88 read_random(node
, UUID_NODE_LEN
);
89 *((uint8_t*)node
) |= 0x01;
93 * Get the current time as a 60 bit count of 100-nanosecond intervals
94 * since 00:00:00.00, October 15,1582. We apply a magic offset to convert
95 * the Unix time since 00:00:00.00, January 1, 1970 to the date of the
96 * Gregorian reform to the Christian calendar.
102 uint64_t time
= 0x01B21DD213814000LL
;
105 time
+= ts
.tv_sec
* 10000000LL; /* 100 ns increments */
106 time
+= ts
.tv_nsec
/ 100; /* 100 ns increments */
107 return (time
& ((1LL << 60) - 1LL)); /* limit to 60 bits */
111 kern_uuidgen(struct uuid
*store
, size_t count
)
113 struct uuid_private uuid
;
117 lockmgr(&uuid_lock
, LK_EXCLUSIVE
| LK_RETRY
);
119 uuid_node(uuid
.node
);
122 if (uuid_last
.time
.ll
== 0LL || uuid_last
.node
[0] != uuid
.node
[0] ||
123 uuid_last
.node
[1] != uuid
.node
[1] ||
124 uuid_last
.node
[2] != uuid
.node
[2]) {
125 read_random(&uuid
.seq
, sizeof(uuid
.seq
));
127 } else if (uuid_last
.time
.ll
>= time
) {
128 uuid
.seq
= (uuid_last
.seq
+ 1) & 0x3fff;
130 uuid
.seq
= uuid_last
.seq
;
134 uuid_last
.time
.ll
= (time
+ count
- 1) & ((1LL << 60) - 1LL);
136 lockmgr(&uuid_lock
, LK_RELEASE
);
138 /* Set sequence and variant and deal with byte order. */
139 uuid
.seq
= htobe16(uuid
.seq
| 0x8000);
141 for (n
= 0; n
< count
; n
++) {
142 /* Set time and version (=1). */
143 uuid
.time
.x
.low
= (uint32_t)time
;
144 uuid
.time
.x
.mid
= (uint16_t)(time
>> 32);
145 uuid
.time
.x
.hi
= ((uint16_t)(time
>> 48) & 0xfff) | (1 << 12);
146 store
[n
] = *(struct uuid
*)&uuid
;
154 * uuidgen(struct uuid *store, int count)
156 * Generate an array of new UUIDs
159 sys_uuidgen(struct uuidgen_args
*uap
)
166 * Limit the number of UUIDs that can be created at the same time
167 * to some arbitrary number. This isn't really necessary, but I
168 * like to have some sort of upper-bound that's less than 2G :-)
169 * XXX probably needs to be tunable.
171 if (uap
->count
< 1 || uap
->count
> 2048)
175 store
= kmalloc(count
* sizeof(struct uuid
), M_TEMP
, M_WAITOK
);
176 kern_uuidgen(store
, count
);
177 error
= copyout(store
, uap
->store
, count
* sizeof(struct uuid
));
178 kfree(store
, M_TEMP
);
183 snprintf_uuid(char *buf
, size_t sz
, struct uuid
*uuid
)
185 struct uuid_private
*id
;
188 id
= (struct uuid_private
*)uuid
;
189 cnt
= ksnprintf(buf
, sz
, "%08x-%04x-%04x-%04x-%04x%04x%04x",
190 id
->time
.x
.low
, id
->time
.x
.mid
, id
->time
.x
.hi
, be16toh(id
->seq
),
191 be16toh(id
->node
[0]), be16toh(id
->node
[1]), be16toh(id
->node
[2]));
196 printf_uuid(struct uuid
*uuid
)
200 snprintf_uuid(buf
, sizeof(buf
), uuid
);
201 return (kprintf("%s", buf
));
205 sbuf_printf_uuid(struct sbuf
*sb
, struct uuid
*uuid
)
209 snprintf_uuid(buf
, sizeof(buf
), uuid
);
210 return (sbuf_printf(sb
, "%s", buf
));
217 /* A macro used to improve the readability of uuid_compare(). */
218 #define DIFF_RETURN(a, b, field) do { \
219 if ((a)->field != (b)->field) \
220 return (((a)->field < (b)->field) ? -1 : 1); \
224 * kuuid_compare() - compare two UUIDs.
226 * http://www.opengroup.org/onlinepubs/009629399/uuid_compare.htm
228 * NOTE: Either UUID can be NULL, meaning a nil UUID. nil UUIDs are smaller
229 * than any non-nil UUID.
232 kuuid_compare(const struct uuid
*a
, const struct uuid
*b
)
236 /* Deal with NULL or equal pointers. */
240 return ((kuuid_is_nil(b
)) ? 0 : -1);
242 return ((kuuid_is_nil(a
)) ? 0 : 1);
244 /* We have to compare the hard way. */
245 DIFF_RETURN(a
, b
, time_low
);
246 DIFF_RETURN(a
, b
, time_mid
);
247 DIFF_RETURN(a
, b
, time_hi_and_version
);
248 DIFF_RETURN(a
, b
, clock_seq_hi_and_reserved
);
249 DIFF_RETURN(a
, b
, clock_seq_low
);
251 res
= bcmp(a
->node
, b
->node
, sizeof(a
->node
));
253 return ((res
< 0) ? -1 : 1);
260 kuuid_is_nil(const struct uuid
*uuid
)
264 for (i
= 0; i
< sizeof(*uuid
); i
+= sizeof(int)) {
265 if (*(const int *)((const char *)uuid
+ i
) != 0)
272 kuuid_is_ccd(const struct uuid
*uuid
)
274 static struct uuid ccd_uuid
= GPT_ENT_TYPE_DRAGONFLY_CCD
;
275 return(kuuid_compare(uuid
, &ccd_uuid
) == 0);
279 kuuid_is_vinum(const struct uuid
*uuid
)
281 static struct uuid vinum_uuid
= GPT_ENT_TYPE_DRAGONFLY_VINUM
;
282 return(kuuid_compare(uuid
, &vinum_uuid
) == 0);
286 * Encode/Decode UUID into byte-stream.
287 * http://www.opengroup.org/dce/info/draft-leach-uuids-guids-01.txt
290 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
291 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
293 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
294 * | time_mid | time_hi_and_version |
295 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
296 * |clk_seq_hi_res | clk_seq_low | node (0-1) |
297 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
299 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
303 le_uuid_enc(void *buf
, struct uuid
const *uuid
)
309 le32enc(p
, uuid
->time_low
);
310 le16enc(p
+ 4, uuid
->time_mid
);
311 le16enc(p
+ 6, uuid
->time_hi_and_version
);
312 p
[8] = uuid
->clock_seq_hi_and_reserved
;
313 p
[9] = uuid
->clock_seq_low
;
314 for (i
= 0; i
< _UUID_NODE_LEN
; i
++)
315 p
[10 + i
] = uuid
->node
[i
];
319 le_uuid_dec(void const *buf
, struct uuid
*uuid
)
325 uuid
->time_low
= le32dec(p
);
326 uuid
->time_mid
= le16dec(p
+ 4);
327 uuid
->time_hi_and_version
= le16dec(p
+ 6);
328 uuid
->clock_seq_hi_and_reserved
= p
[8];
329 uuid
->clock_seq_low
= p
[9];
330 for (i
= 0; i
< _UUID_NODE_LEN
; i
++)
331 uuid
->node
[i
] = p
[10 + i
];
335 be_uuid_enc(void *buf
, struct uuid
const *uuid
)
341 be32enc(p
, uuid
->time_low
);
342 be16enc(p
+ 4, uuid
->time_mid
);
343 be16enc(p
+ 6, uuid
->time_hi_and_version
);
344 p
[8] = uuid
->clock_seq_hi_and_reserved
;
345 p
[9] = uuid
->clock_seq_low
;
346 for (i
= 0; i
< _UUID_NODE_LEN
; i
++)
347 p
[10 + i
] = uuid
->node
[i
];
351 be_uuid_dec(void const *buf
, struct uuid
*uuid
)
357 uuid
->time_low
= be32dec(p
);
358 uuid
->time_mid
= le16dec(p
+ 4);
359 uuid
->time_hi_and_version
= be16dec(p
+ 6);
360 uuid
->clock_seq_hi_and_reserved
= p
[8];
361 uuid
->clock_seq_low
= p
[9];
362 for (i
= 0; i
< _UUID_NODE_LEN
; i
++)
363 uuid
->node
[i
] = p
[10 + i
];
367 parse_uuid(const char *str
, struct uuid
*uuid
)
372 /* An empty string represents a nil UUID. */
374 bzero(uuid
, sizeof(*uuid
));
378 /* The UUID string representation has a fixed length. */
379 if (strlen(str
) != 36)
383 * We only work with "new" UUIDs. New UUIDs have the form:
384 * 01234567-89ab-cdef-0123-456789abcdef
385 * The so called "old" UUIDs, which we don't support, have the form:
386 * 0123456789ab.cd.ef.01.23.45.67.89.ab
391 n
= ksscanf(str
, "%8x-%4x-%4x-%2x%2x-%2x%2x%2x%2x%2x%2x", c
+ 0, c
+ 1,
392 c
+ 2, c
+ 3, c
+ 4, c
+ 5, c
+ 6, c
+ 7, c
+ 8, c
+ 9, c
+ 10);
393 /* Make sure we have all conversions. */
397 /* Successful scan. Build the UUID. */
398 uuid
->time_low
= c
[0];
399 uuid
->time_mid
= c
[1];
400 uuid
->time_hi_and_version
= c
[2];
401 uuid
->clock_seq_hi_and_reserved
= c
[3];
402 uuid
->clock_seq_low
= c
[4];
403 for (n
= 0; n
< 6; n
++)
404 uuid
->node
[n
] = c
[n
+ 5];
406 /* Check semantics... */
407 return (((c
[3] & 0x80) != 0x00 && /* variant 0? */
408 (c
[3] & 0xc0) != 0x80 && /* variant 1? */
409 (c
[3] & 0xe0) != 0xc0) ? EINVAL
: 0); /* variant 2? */