xref: /openbsd/lib/libc/uuid/uuid_to_string.c (revision e6f98e3a)
1*e6f98e3aSguenther /*	$OpenBSD: uuid_to_string.c,v 1.2 2015/09/10 18:13:46 guenther Exp $	*/
29a210c53Smiod /*	$NetBSD: uuid_to_string.c,v 1.2 2008/04/23 07:52:32 plunky Exp $	*/
39a210c53Smiod 
49a210c53Smiod /*
59a210c53Smiod  * Copyright (c) 2002 Marcel Moolenaar
69a210c53Smiod  * Copyright (c) 2002 Hiten Mahesh Pandya
79a210c53Smiod  * All rights reserved.
89a210c53Smiod  *
99a210c53Smiod  * Redistribution and use in source and binary forms, with or without
109a210c53Smiod  * modification, are permitted provided that the following conditions
119a210c53Smiod  * are met:
129a210c53Smiod  * 1. Redistributions of source code must retain the above copyright
139a210c53Smiod  *    notice, this list of conditions and the following disclaimer.
149a210c53Smiod  * 2. Redistributions in binary form must reproduce the above copyright
159a210c53Smiod  *    notice, this list of conditions and the following disclaimer in the
169a210c53Smiod  *    documentation and/or other materials provided with the distribution.
179a210c53Smiod  *
189a210c53Smiod  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
199a210c53Smiod  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
209a210c53Smiod  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
219a210c53Smiod  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
229a210c53Smiod  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
239a210c53Smiod  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
249a210c53Smiod  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
259a210c53Smiod  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
269a210c53Smiod  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
279a210c53Smiod  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
289a210c53Smiod  * SUCH DAMAGE.
299a210c53Smiod  *
309a210c53Smiod  * $FreeBSD: src/lib/libc/uuid/uuid_to_string.c,v 1.2 2003/08/08 19:18:43 marcel Exp $
319a210c53Smiod  */
329a210c53Smiod 
339a210c53Smiod #include <stdio.h>
349a210c53Smiod #include <string.h>
359a210c53Smiod #include <uuid.h>
369a210c53Smiod 
379a210c53Smiod /*
389a210c53Smiod  * uuid_to_string() - Convert a binary UUID into a string representation.
399a210c53Smiod  * See also:
409a210c53Smiod  *	http://www.opengroup.org/onlinepubs/009629399/uuid_to_string.htm
419a210c53Smiod  *
429a210c53Smiod  * NOTE: The references given above do not have a status code for when
439a210c53Smiod  *	 the string could not be allocated. The status code has been
449a210c53Smiod  *	 taken from the Hewlett-Packard implementation.
459a210c53Smiod  */
469a210c53Smiod void
uuid_to_string(const uuid_t * u,char ** s,uint32_t * status)479a210c53Smiod uuid_to_string(const uuid_t *u, char **s, uint32_t *status)
489a210c53Smiod {
499a210c53Smiod 	int c;
509a210c53Smiod 	static const uuid_t nil = { .time_low = 0 };
519a210c53Smiod 
529a210c53Smiod 	if (status != NULL)
539a210c53Smiod 		*status = uuid_s_ok;
549a210c53Smiod 
559a210c53Smiod 	/* Why allow a NULL-pointer here? */
569a210c53Smiod 	if (s == NULL)
579a210c53Smiod 		return;
589a210c53Smiod 
599a210c53Smiod 	if (u == NULL)
609a210c53Smiod 		u = &nil;
619a210c53Smiod 
629a210c53Smiod 	c = asprintf(s, "%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x",
639a210c53Smiod 	    u->time_low, u->time_mid, u->time_hi_and_version,
649a210c53Smiod 	    u->clock_seq_hi_and_reserved, u->clock_seq_low, u->node[0],
659a210c53Smiod 	    u->node[1], u->node[2], u->node[3], u->node[4], u->node[5]);
669a210c53Smiod 
679a210c53Smiod 	if (c == -1 && status != NULL)
689a210c53Smiod 		*status = uuid_s_no_memory;
699a210c53Smiod }
70