2009-03-17 17:40:00 +03:00
/*
* Copyright ( C ) 2009 Red Hat , Inc . All rights reserved .
*
* 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 Lesser General Public License v .2 .1 .
*
* You should have received a copy of the GNU Lesser 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
*/
# include "lib.h"
2013-06-12 14:08:56 +04:00
# include "dev-type.h"
2009-03-17 17:40:00 +03:00
2013-11-13 17:56:29 +04:00
# ifdef __linux__
2009-03-17 17:40:00 +03:00
# define MAX_PAGESIZE (64 * 1024)
# define SIGNATURE_SIZE 10
static int
_swap_detect_signature ( const char * buf )
{
if ( memcmp ( buf , " SWAP-SPACE " , 10 ) = = 0 | |
memcmp ( buf , " SWAPSPACE2 " , 10 ) = = 0 )
return 1 ;
if ( memcmp ( buf , " S1SUSPEND " , 9 ) = = 0 | |
memcmp ( buf , " S2SUSPEND " , 9 ) = = 0 | |
memcmp ( buf , " ULSUSPEND " , 9 ) = = 0 | |
memcmp ( buf , " \xed \xc3 \x02 \xe9 \x98 \x56 \xe5 \x0c " , 8 ) = = 0 )
return 1 ;
return 0 ;
}
2013-11-06 18:09:29 +04:00
int dev_is_swap ( struct device * dev , uint64_t * offset_found )
2009-03-17 17:40:00 +03:00
{
char buf [ 10 ] ;
uint64_t size ;
2011-04-08 18:40:18 +04:00
unsigned page ;
int ret = 0 ;
2009-03-17 17:40:00 +03:00
if ( ! dev_get_size ( dev , & size ) ) {
stack ;
return - 1 ;
}
2011-05-28 13:48:14 +04:00
if ( ! dev_open_readonly ( dev ) ) {
2009-03-17 17:40:00 +03:00
stack ;
return - 1 ;
}
for ( page = 0x1000 ; page < = MAX_PAGESIZE ; page < < = 1 ) {
/*
* skip 32 k pagesize since this does not seem to be supported
*/
if ( page = = 0x8000 )
continue ;
2014-03-22 23:36:14 +04:00
if ( size < ( page / 512 ) )
2009-03-17 17:40:00 +03:00
break ;
if ( ! dev_read ( dev , page - SIGNATURE_SIZE ,
SIGNATURE_SIZE , buf ) ) {
2010-08-20 03:05:45 +04:00
ret = - 1 ;
break ;
2009-03-17 17:40:00 +03:00
}
if ( _swap_detect_signature ( buf ) ) {
2013-11-06 18:09:29 +04:00
if ( offset_found )
* offset_found = page - SIGNATURE_SIZE ;
2010-08-20 03:05:45 +04:00
ret = 1 ;
2009-03-17 17:40:00 +03:00
break ;
}
}
if ( ! dev_close ( dev ) )
stack ;
2010-08-20 03:05:45 +04:00
return ret ;
2009-03-17 17:40:00 +03:00
}
# endif