[70815a24] | 1 | /*
|
---|
| 2 | * Copyright (c) 2015 Jiri Svoboda
|
---|
| 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - 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.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
| 29 | /** @addtogroup libc
|
---|
| 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file Universaly Unique Identifier (see RFC 4122)
|
---|
| 33 | */
|
---|
| 34 |
|
---|
| 35 | #include <errno.h>
|
---|
| 36 | #include <uuid.h>
|
---|
| 37 | #include <stdlib.h>
|
---|
| 38 |
|
---|
| 39 | /** Generate UUID.
|
---|
| 40 | *
|
---|
| 41 | * @param uuid Place to store generated UUID
|
---|
| 42 | * @return EOK on success or negative error code
|
---|
| 43 | */
|
---|
| 44 | int uuid_generate(uuid_t *uuid)
|
---|
| 45 | {
|
---|
| 46 | int i;
|
---|
| 47 | struct timeval tv;
|
---|
| 48 |
|
---|
| 49 | /* XXX This is a rather poor way of generating random numbers */
|
---|
| 50 | gettimeofday(&tv, NULL);
|
---|
| 51 | srandom(tv.tv_sec ^ tv.tv_usec);
|
---|
| 52 |
|
---|
| 53 | for (i = 0; i < uuid_bytes; i++)
|
---|
| 54 | uuid->b[i] = random();
|
---|
| 55 |
|
---|
| 56 | /* Version 4 UUID from random or pseudo-random numbers */
|
---|
| 57 | uuid->b[8] = (uuid->b[8] & ~0xc0) | 0x40;
|
---|
| 58 | uuid->b[6] = (uuid->b[6] & 0xf0) | 0x40;
|
---|
| 59 |
|
---|
| 60 | return EOK;
|
---|
| 61 | }
|
---|
| 62 |
|
---|
| 63 | /** Encode UUID into binary form per RFC 4122.
|
---|
| 64 | *
|
---|
| 65 | * @param uuid UUID
|
---|
| 66 | * @param buf 16-byte destination buffer
|
---|
| 67 | */
|
---|
| 68 | void uuid_encode(uuid_t *uuid, uint8_t *buf)
|
---|
| 69 | {
|
---|
| 70 | int i;
|
---|
| 71 |
|
---|
| 72 | for (i = 0; i < uuid_bytes; i++)
|
---|
| 73 | buf[i] = uuid->b[i];
|
---|
| 74 | }
|
---|
| 75 |
|
---|
| 76 | /** Decode UUID from binary form per RFC 4122.
|
---|
| 77 | *
|
---|
| 78 | * @param buf 16-byte source buffer
|
---|
| 79 | * @param uuid Place to store UUID
|
---|
| 80 | */
|
---|
| 81 | void uuid_decode(uint8_t *buf, uuid_t *uuid)
|
---|
| 82 | {
|
---|
| 83 | int i;
|
---|
| 84 |
|
---|
| 85 | for (i = 0; i < uuid_bytes; i++)
|
---|
| 86 | uuid->b[i] = buf[i];
|
---|
| 87 | }
|
---|
| 88 |
|
---|
| 89 | /** @}
|
---|
| 90 | */
|
---|