]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blame - lib/e2p/uuid.c
Merge branch 'maint' into next
[thirdparty/e2fsprogs.git] / lib / e2p / uuid.c
CommitLineData
1e3472c5
TT
1/*
2 * uuid.c -- utility routines for manipulating UUID's.
543547a5
TT
3 *
4 * %Begin-Header%
5 * This file may be redistributed under the terms of the GNU Library
6 * General Public License, version 2.
7 * %End-Header%
1e3472c5
TT
8 */
9
d1154eb4 10#include "config.h"
1e3472c5 11#include <stdio.h>
21c84b71 12#include <string.h>
797f5ef1 13#include <ext2fs/ext2_types.h>
1e3472c5 14
21c84b71
TT
15#include "e2p.h"
16
1e3472c5
TT
17struct uuid {
18 __u32 time_low;
19 __u16 time_mid;
20 __u16 time_hi_and_version;
21 __u16 clock_seq;
22 __u8 node[6];
23};
24
25/* Returns 1 if the uuid is the NULL uuid */
26int e2p_is_null_uuid(void *uu)
27{
28 __u8 *cp;
29 int i;
30
31 for (i=0, cp = uu; i < 16; i++)
b116e781 32 if (*cp++)
1e3472c5
TT
33 return 0;
34 return 1;
35}
36
37static void e2p_unpack_uuid(void *in, struct uuid *uu)
38{
39 __u8 *ptr = in;
40 __u32 tmp;
41
42 tmp = *ptr++;
43 tmp = (tmp << 8) | *ptr++;
44 tmp = (tmp << 8) | *ptr++;
45 tmp = (tmp << 8) | *ptr++;
46 uu->time_low = tmp;
47
48 tmp = *ptr++;
49 tmp = (tmp << 8) | *ptr++;
50 uu->time_mid = tmp;
efc6f628 51
1e3472c5
TT
52 tmp = *ptr++;
53 tmp = (tmp << 8) | *ptr++;
54 uu->time_hi_and_version = tmp;
55
56 tmp = *ptr++;
57 tmp = (tmp << 8) | *ptr++;
58 uu->clock_seq = tmp;
59
60 memcpy(uu->node, ptr, 6);
61}
62
63void e2p_uuid_to_str(void *uu, char *out)
64{
65 struct uuid uuid;
66
67 e2p_unpack_uuid(uu, &uuid);
68 sprintf(out,
69 "%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x",
70 uuid.time_low, uuid.time_mid, uuid.time_hi_and_version,
71 uuid.clock_seq >> 8, uuid.clock_seq & 0xFF,
72 uuid.node[0], uuid.node[1], uuid.node[2],
73 uuid.node[3], uuid.node[4], uuid.node[5]);
74}
f61fc0b5
TT
75
76const char *e2p_uuid2str(void *uu)
77{
78 static char buf[80];
79
80 if (e2p_is_null_uuid(uu))
81 return "<none>";
82 e2p_uuid_to_str(uu, buf);
83 return buf;
84}
85