 1324f06384
			
		
	
	
		1324f06384
		
	
	
	
	
		
			
			Currently qemu_uuid_bswap() takes a pointer to the QemuUUID to be byte-swapped. This means it can't be used when the UUID to be swapped is in a packed member of a struct. It's also out of line with the general bswap*() functions we provide in bswap.h, which take the value to be swapped and return it. Make qemu_uuid_bswap() take a QemuUUID and return the swapped version. This fixes some clang warnings about taking the address of a packed struct member in block/vdi.c. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  *  QEMU UUID functions
 | |
|  *
 | |
|  *  Copyright 2016 Red Hat, Inc.
 | |
|  *
 | |
|  *  Authors:
 | |
|  *   Fam Zheng <famz@redhat.com>
 | |
|  *
 | |
|  * This program is free software; you can redistribute it and/or modify it
 | |
|  * under the terms of the GNU General Public License as published by the Free
 | |
|  * Software Foundation; either version 2 of the License, or (at your option)
 | |
|  * any later version.
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #ifndef QEMU_UUID_H
 | |
| #define QEMU_UUID_H
 | |
| 
 | |
| #include "qemu-common.h"
 | |
| 
 | |
| /* Version 4 UUID (pseudo random numbers), RFC4122 4.4. */
 | |
| 
 | |
| typedef struct {
 | |
|     union {
 | |
|         unsigned char data[16];
 | |
|         struct {
 | |
|             /* Generated in BE endian, can be swapped with qemu_uuid_bswap. */
 | |
|             uint32_t time_low;
 | |
|             uint16_t time_mid;
 | |
|             uint16_t time_high_and_version;
 | |
|             uint8_t  clock_seq_and_reserved;
 | |
|             uint8_t  clock_seq_low;
 | |
|             uint8_t  node[6];
 | |
|         } fields;
 | |
|     };
 | |
| } QemuUUID;
 | |
| 
 | |
| #define UUID_FMT "%02hhx%02hhx%02hhx%02hhx-" \
 | |
|                  "%02hhx%02hhx-%02hhx%02hhx-" \
 | |
|                  "%02hhx%02hhx-" \
 | |
|                  "%02hhx%02hhx%02hhx%02hhx%02hhx%02hhx"
 | |
| 
 | |
| #define UUID_FMT_LEN 36
 | |
| 
 | |
| #define UUID_NONE "00000000-0000-0000-0000-000000000000"
 | |
| 
 | |
| void qemu_uuid_generate(QemuUUID *out);
 | |
| 
 | |
| int qemu_uuid_is_null(const QemuUUID *uu);
 | |
| 
 | |
| int qemu_uuid_is_equal(const QemuUUID *lhv, const QemuUUID *rhv);
 | |
| 
 | |
| void qemu_uuid_unparse(const QemuUUID *uuid, char *out);
 | |
| 
 | |
| char *qemu_uuid_unparse_strdup(const QemuUUID *uuid);
 | |
| 
 | |
| int qemu_uuid_parse(const char *str, QemuUUID *uuid);
 | |
| 
 | |
| QemuUUID qemu_uuid_bswap(QemuUUID uuid);
 | |
| 
 | |
| #endif
 |