2002-12-20 02:25:55 +03:00
/*
2004-03-30 23:35:44 +04:00
* Copyright ( C ) 2001 - 2004 Sistina Software , Inc . All rights reserved .
2007-08-21 00:55:30 +04:00
* Copyright ( C ) 2004 - 2007 Red Hat , Inc . All rights reserved .
2002-12-20 02:25:55 +03: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
2007-08-21 00:55:30 +04:00
* of the GNU Lesser General Public License v .2 .1 .
2004-03-30 23:35:44 +04:00
*
2007-08-21 00:55:30 +04:00
* You should have received a copy of the GNU Lesser General Public License
2004-03-30 23:35:44 +04:00
* along with this program ; if not , write to the Free Software Foundation ,
* Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 USA
2002-12-20 02:25:55 +03:00
*/
# include "lib.h"
# include "lvm-string.h"
2006-08-21 16:54:53 +04:00
# include <ctype.h>
2003-09-18 00:35:57 +04:00
int emit_to_buffer ( char * * buffer , size_t * size , const char * fmt , . . . )
{
int n ;
va_list ap ;
va_start ( ap , fmt ) ;
n = vsnprintf ( * buffer , * size , fmt , ap ) ;
va_end ( ap ) ;
2007-08-22 18:38:18 +04:00
if ( n < 0 | | ( ( size_t ) n = = * size ) )
2003-09-18 00:35:57 +04:00
return 0 ;
* buffer + = n ;
* size - = n ;
return 1 ;
}
2004-02-13 17:43:35 +03:00
2004-09-15 19:02:36 +04:00
/*
2007-04-25 22:24:19 +04:00
* Count occurences of ' c ' in ' str ' until we reach a null char .
*
* Returns :
* len - incremented for each char we encounter , whether ' c ' or not .
2007-08-22 18:38:18 +04:00
* count - number of occurrences of ' c '
2004-09-15 19:02:36 +04:00
*/
2007-04-25 22:24:19 +04:00
void count_chars ( const char * str , size_t * len , int * count ,
2007-08-22 18:38:18 +04:00
const int c )
2004-09-15 19:02:36 +04:00
{
const char * ptr ;
for ( ptr = str ; * ptr ; ptr + + , ( * len ) + + )
2007-04-25 22:24:19 +04:00
if ( * ptr = = c )
( * count ) + + ;
}
/*
* Count occurences of ' c ' in ' str ' of length ' size ' .
*
* Returns :
2007-08-22 18:38:18 +04:00
* Number of occurrences of ' c '
2007-04-25 22:24:19 +04:00
*/
2007-08-22 18:38:18 +04:00
unsigned count_chars_len ( const char * str , size_t len , const int c )
2007-04-25 22:24:19 +04:00
{
2007-08-22 18:38:18 +04:00
size_t i ;
unsigned count = 0 ;
2007-04-25 22:24:19 +04:00
2007-08-22 18:38:18 +04:00
for ( i = 0 ; i < len ; i + + )
2007-04-25 22:24:19 +04:00
if ( str [ i ] = = c )
count + + ;
2007-08-22 18:38:18 +04:00
return count ;
2004-09-15 19:02:36 +04:00
}
/*
* Copies a string , quoting hyphens with hyphens .
*/
static void _quote_hyphens ( char * * out , const char * src )
{
while ( * src ) {
if ( * src = = ' - ' )
* ( * out ) + + = ' - ' ;
* ( * out ) + + = * src + + ;
}
}
/*
* < vg > - < lv > - < layer > or if ! layer just < vg > - < lv > .
*/
2005-11-09 01:52:26 +03:00
char * build_dm_name ( struct dm_pool * mem , const char * vgname ,
const char * lvname , const char * layer )
2004-09-15 19:02:36 +04:00
{
2004-10-11 19:59:23 +04:00
size_t len = 1 ;
int hyphens = 1 ;
2004-09-15 19:02:36 +04:00
char * r , * out ;
2007-04-25 22:24:19 +04:00
count_chars ( vgname , & len , & hyphens , ' - ' ) ;
count_chars ( lvname , & len , & hyphens , ' - ' ) ;
2004-09-15 19:02:36 +04:00
2004-10-11 19:59:23 +04:00
if ( layer & & * layer ) {
2007-04-25 22:24:19 +04:00
count_chars ( layer , & len , & hyphens , ' - ' ) ;
2004-10-11 19:59:23 +04:00
hyphens + + ;
}
2004-09-15 19:02:36 +04:00
2004-10-11 19:59:23 +04:00
len + = hyphens ;
2004-09-15 19:02:36 +04:00
2005-10-17 03:03:59 +04:00
if ( ! ( r = dm_pool_alloc ( mem , len ) ) ) {
2005-11-09 01:52:26 +03:00
log_error ( " build_dm_name: Allocation failed for % " PRIsize_t
" for %s %s %s. " , len , vgname , lvname , layer ) ;
2004-09-15 19:02:36 +04:00
return NULL ;
}
out = r ;
2005-11-09 01:52:26 +03:00
_quote_hyphens ( & out , vgname ) ;
2004-09-15 19:02:36 +04:00
* out + + = ' - ' ;
2005-11-09 01:52:26 +03:00
_quote_hyphens ( & out , lvname ) ;
2004-09-15 19:02:36 +04:00
if ( layer & & * layer ) {
2006-04-28 21:01:07 +04:00
/* No hyphen if the layer begins with _ e.g. _mlog */
if ( * layer ! = ' _ ' )
* out + + = ' - ' ;
2004-09-15 19:02:36 +04:00
_quote_hyphens ( & out , layer ) ;
}
* out = ' \0 ' ;
return r ;
}
2007-04-25 22:24:19 +04:00
/*
* Device layer names are all of the form < vg > - < lv > - < layer > , any
* other hyphens that appear in these names are quoted with yet
* another hyphen . The top layer of any device has no layer
* name . eg , vg0 - lvol0 .
*/
2006-04-19 19:33:07 +04:00
int validate_name ( const char * n )
{
register char c ;
register int len = 0 ;
if ( ! n | | ! * n )
return 0 ;
/* Hyphen used as VG-LV separator - ambiguity if LV starts with it */
if ( * n = = ' - ' )
return 0 ;
if ( ! strcmp ( n , " . " ) | | ! strcmp ( n , " .. " ) )
return 0 ;
while ( ( len + + , c = * n + + ) )
if ( ! isalnum ( c ) & & c ! = ' . ' & & c ! = ' _ ' & & c ! = ' - ' & & c ! = ' + ' )
return 0 ;
if ( len > NAME_LEN )
return 0 ;
return 1 ;
}