2005-06-26 01:54:28 +04:00
/*
* ata_id - reads product / serial number from ATA drives
*
* Copyright ( C ) 2005 Kay Sievers < kay . sievers @ vrfy . org >
*
2005-09-27 18:27:35 +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 .
2005-06-26 01:54:28 +04:00
*/
# ifndef _GNU_SOURCE
# define _GNU_SOURCE 1
# endif
# include <stdio.h>
# include <stdlib.h>
# include <unistd.h>
# include <fcntl.h>
# include <ctype.h>
2006-01-09 23:18:00 +03:00
# include <string.h>
2005-06-26 01:54:28 +04:00
# include <errno.h>
# include <sys/ioctl.h>
# include <sys/types.h>
# include <sys/stat.h>
# include <linux/types.h>
# include <linux/hdreg.h>
2006-01-09 23:18:00 +03:00
# include "../../udev.h"
2005-06-26 01:54:28 +04:00
# ifdef USE_LOG
void log_message ( int priority , const char * format , . . . )
{
va_list args ;
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 ;
va_start ( args , format ) ;
vsyslog ( priority , format , args ) ;
va_end ( args ) ;
}
# endif
2005-08-01 03:33:36 +04:00
static void set_str ( char * to , const char * from , size_t count )
2005-06-26 01:54:28 +04:00
{
2005-08-01 03:33:36 +04:00
size_t i , j , len ;
2005-06-26 01:54:28 +04:00
2005-06-27 19:04:56 +04:00
/* strip trailing whitespace */
2005-06-26 01:54:28 +04:00
len = strnlen ( from , count ) ;
2005-08-22 13:37:12 +04:00
while ( len & & isspace ( from [ len - 1 ] ) )
2005-06-26 01:54:28 +04:00
len - - ;
2005-06-27 19:04:56 +04:00
/* strip leading whitespace */
2005-06-26 01:54:28 +04:00
i = 0 ;
while ( isspace ( from [ i ] ) & & ( i < len ) )
i + + ;
j = 0 ;
while ( i < len ) {
2005-06-27 19:04:56 +04:00
/* substitute multiple whitespace */
if ( isspace ( from [ i ] ) ) {
while ( isspace ( from [ i ] ) )
i + + ;
2005-06-26 01:54:28 +04:00
to [ j + + ] = ' _ ' ;
}
2005-06-27 19:04:56 +04:00
/* skip chars */
if ( from [ i ] = = ' / ' ) {
i + + ;
continue ;
}
to [ j + + ] = from [ i + + ] ;
2005-06-26 01:54:28 +04:00
}
to [ j ] = ' \0 ' ;
}
int main ( int argc , char * argv [ ] )
{
struct hd_driveid id ;
char model [ 41 ] ;
char serial [ 21 ] ;
char revision [ 9 ] ;
const char * node = NULL ;
int i ;
int export = 0 ;
int fd ;
int rc = 0 ;
2005-07-13 13:23:21 +04:00
logging_init ( " ata_id " ) ;
2005-06-26 01:54:28 +04:00
for ( i = 1 ; i < argc ; i + + ) {
char * arg = argv [ i ] ;
if ( strcmp ( arg , " --export " ) = = 0 ) {
export = 1 ;
} else
node = arg ;
}
if ( ! node ) {
err ( " no node specified " ) ;
rc = 1 ;
goto exit ;
}
2005-09-16 23:23:36 +04:00
fd = open ( node , O_RDONLY | O_NONBLOCK ) ;
2005-06-26 01:54:28 +04:00
if ( fd < 0 ) {
err ( " unable to open '%s' " , node ) ;
rc = 1 ;
goto exit ;
}
if ( ioctl ( fd , HDIO_GET_IDENTITY , & id ) ) {
2007-04-29 02:08:30 +04:00
if ( errno = = ENOTTY ) {
info ( " HDIO_GET_IDENTITY unsupported for '%s' " , node ) ;
rc = 2 ;
} else {
err ( " HDIO_GET_IDENTITY failed for '%s' " , node ) ;
rc = 3 ;
}
2005-06-26 01:54:28 +04:00
goto close ;
}
2005-08-01 03:33:36 +04:00
set_str ( model , ( char * ) id . model , 40 ) ;
set_str ( serial , ( char * ) id . serial_no , 20 ) ;
set_str ( revision , ( char * ) id . fw_rev , 8 ) ;
2005-06-26 01:54:28 +04:00
if ( export ) {
2005-06-27 19:04:56 +04:00
if ( ( id . config > > 8 ) & 0x80 ) {
/* This is an ATAPI device */
switch ( ( id . config > > 8 ) & 0x1f ) {
case 0 :
printf ( " ID_TYPE=cd \n " ) ;
break ;
case 1 :
printf ( " ID_TYPE=tape \n " ) ;
break ;
case 5 :
printf ( " ID_TYPE=cd \n " ) ;
break ;
case 7 :
printf ( " ID_TYPE=optical \n " ) ;
break ;
default :
printf ( " ID_TYPE=generic \n " ) ;
break ;
}
} else {
printf ( " ID_TYPE=disk \n " ) ;
}
2005-06-26 01:54:28 +04:00
printf ( " ID_MODEL=%s \n " , model ) ;
printf ( " ID_SERIAL=%s \n " , serial ) ;
printf ( " ID_REVISION=%s \n " , revision ) ;
2005-07-19 19:18:19 +04:00
printf ( " ID_BUS=ata \n " ) ;
2005-07-12 13:41:09 +04:00
} else {
if ( serial [ 0 ] ! = ' \0 ' )
printf ( " %s_%s \n " , model , serial ) ;
else
printf ( " %s \n " , model ) ;
}
2005-06-26 01:54:28 +04:00
close :
close ( fd ) ;
exit :
logging_close ( ) ;
return rc ;
}