uuid_time.c revision e0ed7404719a9ddd2ba427a80db5365c8bad18c0
1b9056914e2627627ffdd615e078a9b6020ab1cf2philip.liard@gmail.com/*
21ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com * uuid_time.c --- Interpret the time field from a uuid.  This program
31ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com * 	violates the UUID abstraction barrier by reaching into the guts
41ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com *	of a UUID and interpreting it.
51ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com *
61ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com * Copyright (C) 1998, 1999 Theodore Ts'o.
71ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com *
81ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com * %Begin-Header%
91ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com * Redistribution and use in source and binary forms, with or without
101ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com * modification, are permitted provided that the following conditions
111ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com * are met:
121ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com * 1. Redistributions of source code must retain the above copyright
131ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com *    notice, and the entire permission notice in its entirety,
141ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com *    including the disclaimer of warranties.
151ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com * 2. Redistributions in binary form must reproduce the above copyright
161ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com *    notice, this list of conditions and the following disclaimer in the
171ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com *    documentation and/or other materials provided with the distribution.
181ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com * 3. The name of the author may not be used to endorse or promote
191ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com *    products derived from this software without specific prior
201ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com *    written permission.
211ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com *
221ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
231ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
241ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF
251ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com * WHICH ARE HEREBY DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE
261ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
271ad5e5bc944bfb46689d87ace2773109cb54f5ephilip.liard@gmail.com * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
28 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
29 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
30 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
32 * USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH
33 * DAMAGE.
34 * %End-Header%
35 */
36
37#ifdef _WIN32
38#define _WIN32_WINNT 0x0500
39#include <windows.h>
40#define UUID MYUUID
41#endif
42
43#include <stdio.h>
44#ifdef HAVE_UNISTD_H
45#include <unistd.h>
46#endif
47#include <stdlib.h>
48#include <sys/types.h>
49#ifdef HAVE_SYS_TIME_H
50#include <sys/time.h>
51#endif
52#include <time.h>
53
54#include "uuidP.h"
55
56time_t uuid_time(const uuid_t uu, struct timeval *ret_tv)
57{
58	struct timeval		tv;
59	struct uuid		uuid;
60	uint32_t		high;
61	uint64_t		clock_reg;
62
63	uuid_unpack(uu, &uuid);
64
65	high = uuid.time_mid | ((uuid.time_hi_and_version & 0xFFF) << 16);
66	clock_reg = uuid.time_low | ((uint64_t) high << 32);
67
68	clock_reg -= (((uint64_t) 0x01B21DD2) << 32) + 0x13814000;
69	tv.tv_sec = clock_reg / 10000000;
70	tv.tv_usec = (clock_reg % 10000000) / 10;
71
72	if (ret_tv)
73		*ret_tv = tv;
74
75	return tv.tv_sec;
76}
77
78int uuid_type(const uuid_t uu)
79{
80	struct uuid		uuid;
81
82	uuid_unpack(uu, &uuid);
83	return ((uuid.time_hi_and_version >> 12) & 0xF);
84}
85
86int uuid_variant(const uuid_t uu)
87{
88	struct uuid		uuid;
89	int			var;
90
91	uuid_unpack(uu, &uuid);
92	var = uuid.clock_seq;
93
94	if ((var & 0x8000) == 0)
95		return UUID_VARIANT_NCS;
96	if ((var & 0x4000) == 0)
97		return UUID_VARIANT_DCE;
98	if ((var & 0x2000) == 0)
99		return UUID_VARIANT_MICROSOFT;
100	return UUID_VARIANT_OTHER;
101}
102
103#ifdef DEBUG
104static const char *variant_string(int variant)
105{
106	switch (variant) {
107	case UUID_VARIANT_NCS:
108		return "NCS";
109	case UUID_VARIANT_DCE:
110		return "DCE";
111	case UUID_VARIANT_MICROSOFT:
112		return "Microsoft";
113	default:
114		return "Other";
115	}
116}
117
118
119int
120main(int argc, char **argv)
121{
122	uuid_t		buf;
123	time_t		time_reg;
124	struct timeval	tv;
125	int		type, variant;
126
127	if (argc != 2) {
128		fprintf(stderr, "Usage: %s uuid\n", argv[0]);
129		exit(1);
130	}
131	if (uuid_parse(argv[1], buf)) {
132		fprintf(stderr, "Invalid UUID: %s\n", argv[1]);
133		exit(1);
134	}
135	variant = uuid_variant(buf);
136	type = uuid_type(buf);
137	time_reg = uuid_time(buf, &tv);
138
139	printf("UUID variant is %d (%s)\n", variant, variant_string(variant));
140	if (variant != UUID_VARIANT_DCE) {
141		printf("Warning: This program only knows how to interpret "
142		       "DCE UUIDs.\n\tThe rest of the output is likely "
143		       "to be incorrect!!\n");
144	}
145	printf("UUID type is %d", type);
146	switch (type) {
147	case 1:
148		printf(" (time based)\n");
149		break;
150	case 2:
151		printf(" (DCE)\n");
152		break;
153	case 3:
154		printf(" (name-based)\n");
155		break;
156	case 4:
157		printf(" (random)\n");
158		break;
159	default:
160		printf("\n");
161	}
162	if (type != 1) {
163		printf("Warning: not a time-based UUID, so UUID time "
164		       "decoding will likely not work!\n");
165	}
166	printf("UUID time is: (%ld, %ld): %s\n", tv.tv_sec, (long)tv.tv_usec,
167	       ctime(&time_reg));
168
169	return 0;
170}
171#endif
172