2001-10-12 14:32:06 +04:00
/*
2004-03-30 23:35:44 +04:00
* Copyright ( C ) 2001 - 2004 Sistina Software , Inc . All rights reserved .
* Copyright ( C ) 2004 Red Hat , Inc . All rights reserved .
2001-10-12 14:32:06 +04:00
*
2004-03-30 23:35:44 +04:00
* This file is part of LVM2 .
*
* This copyrighted material is made available to anyone wishing to use ,
* modify , copy , or redistribute it subject to the terms and conditions
* of the GNU General Public License v .2 .
*
* You should have received a copy of the GNU General Public License
* along with this program ; if not , write to the Free Software Foundation ,
* Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 USA
2001-10-12 14:32:06 +04:00
*/
# ifndef _LVM_UUID_H
# define _LVM_UUID_H
# define ID_LEN 32
2002-02-25 15:56:16 +03:00
# define ID_LEN_S "32"
2001-10-12 14:32:06 +04:00
struct id {
2006-05-10 01:23:51 +04:00
int8_t uuid [ ID_LEN ] ;
2001-10-12 14:32:06 +04:00
} ;
2002-03-05 23:03:09 +03:00
/*
* Unique logical volume identifier
2005-04-06 17:47:41 +04:00
* With format1 this is VG uuid + LV uuid + ' \0 ' + padding
2002-03-05 23:03:09 +03:00
*/
union lvid {
struct id id [ 2 ] ;
2005-04-06 17:47:41 +04:00
char s [ 2 * sizeof ( struct id ) + 1 + 7 ] ;
2002-03-05 23:03:09 +03:00
} ;
2002-12-20 02:25:55 +03:00
int lvid_from_lvnum ( union lvid * lvid , struct id * vgid , uint32_t lv_num ) ;
2002-03-05 23:03:09 +03:00
int lvnum_from_lvid ( union lvid * lvid ) ;
2002-02-21 18:26:44 +03:00
2004-01-09 22:18:20 +03:00
void uuid_from_num ( char * uuid , uint32_t num ) ;
2002-04-24 22:20:51 +04:00
int lvid_create ( union lvid * lvid , struct id * vgid ) ;
2001-10-12 14:32:06 +04:00
int id_create ( struct id * id ) ;
int id_valid ( struct id * id ) ;
2002-12-20 02:25:55 +03:00
int id_equal ( const struct id * lhs , const struct id * rhs ) ;
2001-10-12 14:32:06 +04:00
2001-12-11 14:40:34 +03:00
/*
* Fills ' buffer ' with a more human readable form
* of the uuid .
*/
2002-12-20 02:25:55 +03:00
int id_write_format ( const struct id * id , char * buffer , size_t size ) ;
2001-12-11 14:40:34 +03:00
/*
* Reads a formatted uuid .
*/
2002-12-20 02:25:55 +03:00
int id_read_format ( struct id * id , const char * buffer ) ;
2001-12-11 14:40:34 +03:00
2001-10-12 14:32:06 +04:00
# endif