[PATCH] udev callout for reading filesystem labels
here is a small udev toy, which enables udev to name partitions by
its filesystem label or uuid's.
The following udev rule:
KERNEL="sd*", PROGRAM="/sbin/udev_volume_id -M%M -m%m -u", SYMLINK="%c"
creates a symlink with the uuid read from the filesystem. If no label or
uuid is found the program exits with nonzero and the rule will fail.
ext2, ext3, reiserfs, xfs, jfs, vfat, msdos volume labels are supported,
ntfs and swap partitions can be recognized.
It's possible to compile with klibc and the static binary takes 13kb.
2004-05-01 10:26:33 +04:00
/*
2006-03-28 04:52:58 +04:00
* vol_id - read filesystem label and uuid
[PATCH] udev callout for reading filesystem labels
here is a small udev toy, which enables udev to name partitions by
its filesystem label or uuid's.
The following udev rule:
KERNEL="sd*", PROGRAM="/sbin/udev_volume_id -M%M -m%m -u", SYMLINK="%c"
creates a symlink with the uuid read from the filesystem. If no label or
uuid is found the program exits with nonzero and the rule will fail.
ext2, ext3, reiserfs, xfs, jfs, vfat, msdos volume labels are supported,
ntfs and swap partitions can be recognized.
It's possible to compile with klibc and the static binary takes 13kb.
2004-05-01 10:26:33 +04:00
*
2006-03-28 04:52:58 +04:00
* Copyright ( C ) 2005 - 2006 Kay Sievers < kay . sievers @ vrfy . org >
[PATCH] udev callout for reading filesystem labels
here is a small udev toy, which enables udev to name partitions by
its filesystem label or uuid's.
The following udev rule:
KERNEL="sd*", PROGRAM="/sbin/udev_volume_id -M%M -m%m -u", SYMLINK="%c"
creates a symlink with the uuid read from the filesystem. If no label or
uuid is found the program exits with nonzero and the rule will fail.
ext2, ext3, reiserfs, xfs, jfs, vfat, msdos volume labels are supported,
ntfs and swap partitions can be recognized.
It's possible to compile with klibc and the static binary takes 13kb.
2004-05-01 10:26:33 +04:00
*
* 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 version 2 of the License .
*
* This program is distributed in the hope that it will be useful , but
* WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
* General Public License for more details .
*
* 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 . ,
* 675 Mass Ave , Cambridge , MA 0213 9 , USA .
*
*/
2005-03-11 04:31:58 +03:00
# ifndef _GNU_SOURCE
# define _GNU_SOURCE 1
# endif
[PATCH] udev callout for reading filesystem labels
here is a small udev toy, which enables udev to name partitions by
its filesystem label or uuid's.
The following udev rule:
KERNEL="sd*", PROGRAM="/sbin/udev_volume_id -M%M -m%m -u", SYMLINK="%c"
creates a symlink with the uuid read from the filesystem. If no label or
uuid is found the program exits with nonzero and the rule will fail.
ext2, ext3, reiserfs, xfs, jfs, vfat, msdos volume labels are supported,
ntfs and swap partitions can be recognized.
It's possible to compile with klibc and the static binary takes 13kb.
2004-05-01 10:26:33 +04:00
# include <stdio.h>
# include <stdlib.h>
# include <unistd.h>
2004-09-19 10:22:27 +04:00
# include <string.h>
2004-05-12 11:52:52 +04:00
# include <ctype.h>
2006-08-20 20:24:34 +04:00
# include <errno.h>
# include <pwd.h>
2006-01-13 15:18:41 +03:00
# include <grp.h>
2007-05-03 13:00:02 +04:00
# include <getopt.h>
2007-05-03 16:24:56 +04:00
# include <fcntl.h>
2004-09-05 20:05:36 +04:00
# include <sys/ioctl.h>
[PATCH] udev callout for reading filesystem labels
here is a small udev toy, which enables udev to name partitions by
its filesystem label or uuid's.
The following udev rule:
KERNEL="sd*", PROGRAM="/sbin/udev_volume_id -M%M -m%m -u", SYMLINK="%c"
creates a symlink with the uuid read from the filesystem. If no label or
uuid is found the program exits with nonzero and the rule will fail.
ext2, ext3, reiserfs, xfs, jfs, vfat, msdos volume labels are supported,
ntfs and swap partitions can be recognized.
It's possible to compile with klibc and the static binary takes 13kb.
2004-05-01 10:26:33 +04:00
2006-01-09 23:18:00 +03:00
# include "../../udev.h"
2006-03-27 20:05:17 +04:00
# include "lib/libvolume_id.h"
[PATCH] udev callout for reading filesystem labels
here is a small udev toy, which enables udev to name partitions by
its filesystem label or uuid's.
The following udev rule:
KERNEL="sd*", PROGRAM="/sbin/udev_volume_id -M%M -m%m -u", SYMLINK="%c"
creates a symlink with the uuid read from the filesystem. If no label or
uuid is found the program exits with nonzero and the rule will fail.
ext2, ext3, reiserfs, xfs, jfs, vfat, msdos volume labels are supported,
ntfs and swap partitions can be recognized.
It's possible to compile with klibc and the static binary takes 13kb.
2004-05-01 10:26:33 +04:00
2004-09-19 10:22:27 +04:00
# define BLKGETSIZE64 _IOR(0x12,114,size_t)
2005-03-06 12:15:51 +03:00
# ifdef USE_LOG
2005-06-05 07:17:21 +04:00
void log_message ( int priority , const char * format , . . . )
2004-05-12 11:52:52 +04:00
{
va_list args ;
2005-06-05 07:17:21 +04:00
static int udev_log = - 1 ;
if ( udev_log = = - 1 ) {
const char * value ;
value = getenv ( " UDEV_LOG " ) ;
if ( value )
udev_log = log_priority ( value ) ;
else
udev_log = LOG_ERR ;
}
if ( priority > udev_log )
return ;
2004-05-12 11:52:52 +04:00
va_start ( args , format ) ;
2005-06-05 07:17:21 +04:00
vsyslog ( priority , format , args ) ;
2004-05-12 11:52:52 +04:00
va_end ( args ) ;
}
# endif
2006-03-27 19:59:22 +04:00
static void vid_log ( int priority , const char * file , int line , const char * format , . . . )
{
# ifdef USE_LOG
2006-04-28 19:52:09 +04:00
char log_str [ 1024 ] ;
2006-03-27 19:59:22 +04:00
va_list args ;
va_start ( args , format ) ;
2006-04-28 19:52:09 +04:00
vsnprintf ( log_str , sizeof ( log_str ) , format , args ) ;
log_str [ sizeof ( log_str ) - 1 ] = ' \0 ' ;
log_message ( priority , " %s:%i %s " , file , line , log_str ) ;
2006-03-27 19:59:22 +04:00
va_end ( args ) ;
# endif
return ;
}
2005-08-01 03:33:36 +04:00
static void set_str ( char * to , const char * from , size_t count )
2005-06-26 03:54:47 +04:00
{
2005-08-01 03:33:36 +04:00
size_t i , j , len ;
2005-06-26 03:54:47 +04:00
2005-08-01 03:33:36 +04:00
/* strip trailing whitespace */
2005-06-26 03:54:47 +04:00
len = strnlen ( from , count ) ;
2005-08-22 13:37:12 +04:00
while ( len & & isspace ( from [ len - 1 ] ) )
2005-06-26 03:54:47 +04:00
len - - ;
2005-08-01 03:33:36 +04:00
/* strip leading whitespace */
2005-06-26 03:54:47 +04:00
i = 0 ;
while ( isspace ( from [ i ] ) & & ( i < len ) )
i + + ;
j = 0 ;
while ( i < len ) {
2005-08-01 03:33:36 +04:00
/* substitute multiple whitespace */
if ( isspace ( from [ i ] ) ) {
while ( isspace ( from [ i ] ) )
i + + ;
2005-06-26 03:54:47 +04:00
to [ j + + ] = ' _ ' ;
}
2005-08-01 03:33:36 +04:00
/* skip chars */
if ( from [ i ] = = ' / ' ) {
i + + ;
continue ;
}
to [ j + + ] = from [ i + + ] ;
2005-06-26 03:54:47 +04:00
}
to [ j ] = ' \0 ' ;
}
[PATCH] udev callout for reading filesystem labels
here is a small udev toy, which enables udev to name partitions by
its filesystem label or uuid's.
The following udev rule:
KERNEL="sd*", PROGRAM="/sbin/udev_volume_id -M%M -m%m -u", SYMLINK="%c"
creates a symlink with the uuid read from the filesystem. If no label or
uuid is found the program exits with nonzero and the rule will fail.
ext2, ext3, reiserfs, xfs, jfs, vfat, msdos volume labels are supported,
ntfs and swap partitions can be recognized.
It's possible to compile with klibc and the static binary takes 13kb.
2004-05-01 10:26:33 +04:00
2007-05-08 22:00:02 +04:00
static int all_probers ( volume_id_probe_fn_t probe_fn ,
struct volume_id * id , uint64_t off , uint64_t size ,
void * data )
{
const char * type ;
if ( probe_fn ( id , off , size ) = = 0 )
if ( volume_id_get_type ( id , & type ) )
printf ( " %s \n " , type ) ;
return 0 ;
}
2004-05-12 11:52:52 +04:00
int main ( int argc , char * argv [ ] )
{
2007-05-03 13:00:02 +04:00
static const struct option options [ ] = {
{ " label " , 0 , NULL , ' l ' } ,
{ " label-raw " , 0 , NULL , ' L ' } ,
{ " uuid " , 0 , NULL , ' u ' } ,
{ " type " , 0 , NULL , ' t ' } ,
{ " export " , 0 , NULL , ' x ' } ,
{ " skip-raid " , 0 , NULL , ' s ' } ,
{ " probe-all " , 0 , NULL , ' a ' } ,
2008-04-09 14:35:03 +04:00
{ " offset " , 1 , NULL , ' o ' } ,
2007-05-03 13:00:02 +04:00
{ " help " , 0 , NULL , ' h ' } ,
{ }
} ;
2005-06-26 03:54:47 +04:00
enum print_type {
PRINT_EXPORT ,
PRINT_TYPE ,
PRINT_LABEL ,
PRINT_UUID ,
2007-05-03 13:00:02 +04:00
PRINT_LABEL_RAW ,
2005-06-26 03:54:47 +04:00
} print = PRINT_EXPORT ;
2007-05-03 13:00:02 +04:00
2004-05-12 11:52:52 +04:00
struct volume_id * vid = NULL ;
2007-05-17 22:10:09 +04:00
char label_safe [ 256 ] ;
char label_enc [ 256 ] ;
char uuid_enc [ 256 ] ;
2005-08-01 03:33:36 +04:00
uint64_t size ;
2006-07-13 18:59:01 +04:00
int skip_raid = 0 ;
int probe_all = 0 ;
2008-04-09 14:35:03 +04:00
uint64_t offset = 0 ;
2007-05-03 13:00:02 +04:00
const char * node ;
2007-05-03 16:24:56 +04:00
int fd ;
const char * label , * uuid , * type , * type_version , * usage ;
2006-07-13 18:59:01 +04:00
int retval ;
2005-06-26 03:54:47 +04:00
int rc = 0 ;
[PATCH] udev callout for reading filesystem labels
here is a small udev toy, which enables udev to name partitions by
its filesystem label or uuid's.
The following udev rule:
KERNEL="sd*", PROGRAM="/sbin/udev_volume_id -M%M -m%m -u", SYMLINK="%c"
creates a symlink with the uuid read from the filesystem. If no label or
uuid is found the program exits with nonzero and the rule will fail.
ext2, ext3, reiserfs, xfs, jfs, vfat, msdos volume labels are supported,
ntfs and swap partitions can be recognized.
It's possible to compile with klibc and the static binary takes 13kb.
2004-05-01 10:26:33 +04:00
2005-06-26 20:55:24 +04:00
logging_init ( " vol_id " ) ;
2004-10-19 09:57:41 +04:00
2006-03-27 19:59:22 +04:00
/* hook in our debug into libvolume_id */
2006-03-28 04:52:58 +04:00
volume_id_log_fn = vid_log ;
2006-03-27 19:59:22 +04:00
2007-05-03 13:00:02 +04:00
while ( 1 ) {
int option ;
2005-06-26 03:54:47 +04:00
2008-04-09 14:35:03 +04:00
option = getopt_long ( argc , argv , " lLutxsaoh " , options , NULL ) ;
2007-05-03 13:00:02 +04:00
if ( option = = - 1 )
break ;
switch ( option ) {
case ' l ' :
2005-06-26 03:54:47 +04:00
print = PRINT_LABEL ;
2007-05-03 13:00:02 +04:00
break ;
case ' L ' :
print = PRINT_LABEL_RAW ;
break ;
case ' u ' :
2005-06-26 03:54:47 +04:00
print = PRINT_UUID ;
2007-05-03 13:00:02 +04:00
break ;
case ' t ' :
print = PRINT_TYPE ;
break ;
case ' x ' :
print = PRINT_EXPORT ;
break ;
case ' s ' :
2006-07-13 18:59:01 +04:00
skip_raid = 1 ;
2007-05-03 13:00:02 +04:00
break ;
case ' a ' :
2006-07-13 18:59:01 +04:00
probe_all = 1 ;
2007-05-03 13:00:02 +04:00
break ;
2008-04-09 14:35:03 +04:00
case ' o ' :
offset = strtoull ( optarg , NULL , 0 ) ;
break ;
2007-05-03 13:00:02 +04:00
case ' h ' :
printf ( " Usage: vol_id [options] <device> \n "
" --export export key/value pairs \n "
" --type filesystem type \n "
" --label filesystem label \n "
" --label-raw raw label \n "
" --uuid filesystem uuid \n "
" --skip-raid don't probe for raid \n "
" --probe-all find possibly conflicting signatures \n "
2008-04-09 14:35:03 +04:00
" --offset skip given number of bytes of input \n "
2007-05-03 13:00:02 +04:00
" --help \n \n " ) ;
goto exit ;
default :
retval = 1 ;
2006-07-13 18:59:01 +04:00
goto exit ;
2007-05-03 13:00:02 +04:00
}
[PATCH] udev callout for reading filesystem labels
here is a small udev toy, which enables udev to name partitions by
its filesystem label or uuid's.
The following udev rule:
KERNEL="sd*", PROGRAM="/sbin/udev_volume_id -M%M -m%m -u", SYMLINK="%c"
creates a symlink with the uuid read from the filesystem. If no label or
uuid is found the program exits with nonzero and the rule will fail.
ext2, ext3, reiserfs, xfs, jfs, vfat, msdos volume labels are supported,
ntfs and swap partitions can be recognized.
It's possible to compile with klibc and the static binary takes 13kb.
2004-05-01 10:26:33 +04:00
}
2007-05-03 13:00:02 +04:00
node = argv [ optind ] ;
2005-06-26 03:54:47 +04:00
if ( ! node ) {
2007-05-03 13:00:02 +04:00
err ( " no device " ) ;
fprintf ( stderr , " no device \n " ) ;
2005-06-26 03:54:47 +04:00
rc = 1 ;
goto exit ;
2004-05-12 11:52:52 +04:00
}
2007-05-03 16:24:56 +04:00
fd = open ( node , O_RDONLY ) ;
if ( fd < 0 ) {
fprintf ( stderr , " %s: error opening volume \n " , node ) ;
rc = 2 ;
goto exit ;
}
vid = volume_id_open_fd ( fd ) ;
2005-02-10 11:35:52 +03:00
if ( vid = = NULL ) {
2005-06-26 03:54:47 +04:00
rc = 2 ;
2004-05-12 11:52:52 +04:00
goto exit ;
[PATCH] udev callout for reading filesystem labels
here is a small udev toy, which enables udev to name partitions by
its filesystem label or uuid's.
The following udev rule:
KERNEL="sd*", PROGRAM="/sbin/udev_volume_id -M%M -m%m -u", SYMLINK="%c"
creates a symlink with the uuid read from the filesystem. If no label or
uuid is found the program exits with nonzero and the rule will fail.
ext2, ext3, reiserfs, xfs, jfs, vfat, msdos volume labels are supported,
ntfs and swap partitions can be recognized.
It's possible to compile with klibc and the static binary takes 13kb.
2004-05-01 10:26:33 +04:00
}
2007-05-03 16:24:56 +04:00
if ( ioctl ( fd , BLKGETSIZE64 , & size ) ! = 0 )
2005-02-10 11:35:52 +03:00
size = 0 ;
2007-03-18 14:55:21 +03:00
dbg ( " BLKGETSIZE64=%llu " , ( unsigned long long ) size ) ;
2004-09-05 20:05:36 +04:00
2006-08-20 20:24:34 +04:00
/* try to drop all privileges before reading disk content */
2007-06-07 02:56:20 +04:00
if ( getuid ( ) = = 0 ) {
struct passwd * pw ;
pw = getpwnam ( " nobody " ) ;
if ( pw ! = NULL & & pw - > pw_uid > 0 & & pw - > pw_gid > 0 ) {
if ( setgroups ( 0 , NULL ) ! = 0 | |
setgid ( pw - > pw_gid ) ! = 0 | |
setuid ( pw - > pw_uid ) ! = 0 )
info ( " unable to drop privileges: %s \n " , strerror ( errno ) ) ;
2006-01-13 15:18:41 +03:00
}
}
2006-07-13 18:59:01 +04:00
if ( probe_all ) {
2008-04-09 14:35:03 +04:00
volume_id_all_probers ( all_probers , vid , offset , size , NULL ) ;
2006-07-13 18:59:01 +04:00
goto exit ;
}
2004-09-05 20:05:36 +04:00
2006-07-13 18:59:01 +04:00
if ( skip_raid )
2008-04-09 14:35:03 +04:00
retval = volume_id_probe_filesystem ( vid , offset , size ) ;
2006-07-13 18:59:01 +04:00
else
2008-04-09 14:35:03 +04:00
retval = volume_id_probe_all ( vid , offset , size ) ;
2006-07-13 18:59:01 +04:00
if ( retval ! = 0 ) {
2005-07-13 13:23:21 +04:00
fprintf ( stderr , " %s: unknown volume type \n " , node ) ;
2006-07-13 18:59:01 +04:00
rc = 4 ;
goto exit ;
}
2004-05-12 11:52:52 +04:00
2007-05-03 16:24:56 +04:00
if ( ! volume_id_get_label ( vid , & label ) | |
! volume_id_get_usage ( vid , & usage ) | |
! volume_id_get_type ( vid , & type ) | |
! volume_id_get_type_version ( vid , & type_version ) | |
! volume_id_get_uuid ( vid , & uuid ) ) {
rc = 4 ;
goto exit ;
}
2007-05-06 04:24:21 +04:00
set_str ( label_safe , label , sizeof ( label_safe ) ) ;
2007-05-17 22:01:54 +04:00
replace_chars ( label_safe , ALLOWED_CHARS_INPUT ) ;
2007-05-17 22:10:09 +04:00
volume_id_encode_string ( label , label_enc , sizeof ( label_enc ) ) ;
volume_id_encode_string ( uuid , uuid_enc , sizeof ( uuid_enc ) ) ;
2004-05-12 11:52:52 +04:00
[PATCH] udev callout for reading filesystem labels
here is a small udev toy, which enables udev to name partitions by
its filesystem label or uuid's.
The following udev rule:
KERNEL="sd*", PROGRAM="/sbin/udev_volume_id -M%M -m%m -u", SYMLINK="%c"
creates a symlink with the uuid read from the filesystem. If no label or
uuid is found the program exits with nonzero and the rule will fail.
ext2, ext3, reiserfs, xfs, jfs, vfat, msdos volume labels are supported,
ntfs and swap partitions can be recognized.
It's possible to compile with klibc and the static binary takes 13kb.
2004-05-01 10:26:33 +04:00
switch ( print ) {
2005-06-26 03:54:47 +04:00
case PRINT_EXPORT :
2007-05-03 16:24:56 +04:00
printf ( " ID_FS_USAGE=%s \n " , usage ) ;
printf ( " ID_FS_TYPE=%s \n " , type ) ;
printf ( " ID_FS_VERSION=%s \n " , type_version ) ;
printf ( " ID_FS_UUID=%s \n " , uuid ) ;
2007-05-17 22:10:09 +04:00
printf ( " ID_FS_UUID_ENC=%s \n " , uuid_enc ) ;
2007-05-03 16:24:56 +04:00
printf ( " ID_FS_LABEL=%s \n " , label ) ;
2007-05-17 22:10:09 +04:00
printf ( " ID_FS_LABEL_ENC=%s \n " , label_enc ) ;
2007-05-06 04:24:21 +04:00
printf ( " ID_FS_LABEL_SAFE=%s \n " , label_safe ) ;
2005-06-26 03:54:47 +04:00
break ;
case PRINT_TYPE :
2007-05-03 16:24:56 +04:00
printf ( " %s \n " , type ) ;
[PATCH] udev callout for reading filesystem labels
here is a small udev toy, which enables udev to name partitions by
its filesystem label or uuid's.
The following udev rule:
KERNEL="sd*", PROGRAM="/sbin/udev_volume_id -M%M -m%m -u", SYMLINK="%c"
creates a symlink with the uuid read from the filesystem. If no label or
uuid is found the program exits with nonzero and the rule will fail.
ext2, ext3, reiserfs, xfs, jfs, vfat, msdos volume labels are supported,
ntfs and swap partitions can be recognized.
It's possible to compile with klibc and the static binary takes 13kb.
2004-05-01 10:26:33 +04:00
break ;
2005-06-26 03:54:47 +04:00
case PRINT_LABEL :
2007-05-06 04:24:21 +04:00
if ( label_safe [ 0 ] = = ' \0 ' | | strcmp ( usage , " raid " ) = = 0 ) {
2005-06-26 03:54:47 +04:00
rc = 3 ;
2004-05-12 11:52:52 +04:00
goto exit ;
}
2007-05-06 04:24:21 +04:00
printf ( " %s \n " , label_safe ) ;
[PATCH] udev callout for reading filesystem labels
here is a small udev toy, which enables udev to name partitions by
its filesystem label or uuid's.
The following udev rule:
KERNEL="sd*", PROGRAM="/sbin/udev_volume_id -M%M -m%m -u", SYMLINK="%c"
creates a symlink with the uuid read from the filesystem. If no label or
uuid is found the program exits with nonzero and the rule will fail.
ext2, ext3, reiserfs, xfs, jfs, vfat, msdos volume labels are supported,
ntfs and swap partitions can be recognized.
It's possible to compile with klibc and the static binary takes 13kb.
2004-05-01 10:26:33 +04:00
break ;
2005-06-26 03:54:47 +04:00
case PRINT_UUID :
2007-05-17 22:10:09 +04:00
if ( uuid_enc [ 0 ] = = ' \0 ' | | strcmp ( usage , " raid " ) = = 0 ) {
2005-06-26 03:54:47 +04:00
rc = 4 ;
2004-05-12 11:52:52 +04:00
goto exit ;
}
2007-05-17 22:10:09 +04:00
printf ( " %s \n " , uuid_enc ) ;
[PATCH] udev callout for reading filesystem labels
here is a small udev toy, which enables udev to name partitions by
its filesystem label or uuid's.
The following udev rule:
KERNEL="sd*", PROGRAM="/sbin/udev_volume_id -M%M -m%m -u", SYMLINK="%c"
creates a symlink with the uuid read from the filesystem. If no label or
uuid is found the program exits with nonzero and the rule will fail.
ext2, ext3, reiserfs, xfs, jfs, vfat, msdos volume labels are supported,
ntfs and swap partitions can be recognized.
It's possible to compile with klibc and the static binary takes 13kb.
2004-05-01 10:26:33 +04:00
break ;
2007-05-03 13:00:02 +04:00
case PRINT_LABEL_RAW :
2007-05-03 16:24:56 +04:00
if ( label [ 0 ] = = ' \0 ' | | strcmp ( usage , " raid " ) = = 0 ) {
2007-01-22 00:49:45 +03:00
rc = 3 ;
goto exit ;
}
2007-05-03 16:24:56 +04:00
printf ( " %s \n " , label ) ;
2007-01-22 00:49:45 +03:00
break ;
[PATCH] udev callout for reading filesystem labels
here is a small udev toy, which enables udev to name partitions by
its filesystem label or uuid's.
The following udev rule:
KERNEL="sd*", PROGRAM="/sbin/udev_volume_id -M%M -m%m -u", SYMLINK="%c"
creates a symlink with the uuid read from the filesystem. If no label or
uuid is found the program exits with nonzero and the rule will fail.
ext2, ext3, reiserfs, xfs, jfs, vfat, msdos volume labels are supported,
ntfs and swap partitions can be recognized.
It's possible to compile with klibc and the static binary takes 13kb.
2004-05-01 10:26:33 +04:00
}
2004-05-12 11:52:52 +04:00
exit :
if ( vid ! = NULL )
volume_id_close ( vid ) ;
[PATCH] udev callout for reading filesystem labels
here is a small udev toy, which enables udev to name partitions by
its filesystem label or uuid's.
The following udev rule:
KERNEL="sd*", PROGRAM="/sbin/udev_volume_id -M%M -m%m -u", SYMLINK="%c"
creates a symlink with the uuid read from the filesystem. If no label or
uuid is found the program exits with nonzero and the rule will fail.
ext2, ext3, reiserfs, xfs, jfs, vfat, msdos volume labels are supported,
ntfs and swap partitions can be recognized.
It's possible to compile with klibc and the static binary takes 13kb.
2004-05-01 10:26:33 +04:00
2004-10-19 09:57:41 +04:00
logging_close ( ) ;
2005-06-26 03:54:47 +04:00
return rc ;
[PATCH] udev callout for reading filesystem labels
here is a small udev toy, which enables udev to name partitions by
its filesystem label or uuid's.
The following udev rule:
KERNEL="sd*", PROGRAM="/sbin/udev_volume_id -M%M -m%m -u", SYMLINK="%c"
creates a symlink with the uuid read from the filesystem. If no label or
uuid is found the program exits with nonzero and the rule will fail.
ext2, ext3, reiserfs, xfs, jfs, vfat, msdos volume labels are supported,
ntfs and swap partitions can be recognized.
It's possible to compile with klibc and the static binary takes 13kb.
2004-05-01 10:26:33 +04:00
}