2004-11-17 06:00:25 -07:00
|
|
|
/* Copyright (C) 2004 Bart
|
|
|
|
*
|
|
|
|
* 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; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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 Library 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../include/ext2.h"
|
|
|
|
|
|
|
|
namespace GParted
|
|
|
|
{
|
|
|
|
|
|
|
|
FS ext2::get_filesystem_support( )
|
|
|
|
{
|
|
|
|
FS fs ;
|
|
|
|
|
2005-12-07 04:21:27 -07:00
|
|
|
fs .filesystem = GParted::FS_EXT2 ;
|
2004-11-21 14:49:38 -07:00
|
|
|
if ( ! system( "which dumpe2fs 1>/dev/null 2>/dev/null" ) )
|
2005-11-26 17:57:11 -07:00
|
|
|
fs .read = GParted::FS::EXTERNAL ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
|
|
|
if ( ! system( "which mkfs.ext2 1>/dev/null 2>/dev/null" ) )
|
2005-11-26 17:57:11 -07:00
|
|
|
fs .create = GParted::FS::EXTERNAL ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
|
|
|
if ( ! system( "which e2fsck 1>/dev/null 2>/dev/null" ) )
|
2005-11-26 17:57:11 -07:00
|
|
|
fs .check = GParted::FS::EXTERNAL ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2004-12-15 03:33:12 -07:00
|
|
|
//resizing is a delicate process ...
|
2005-11-28 10:04:13 -07:00
|
|
|
if ( ! system( "which resize2fs 1>/dev/null 2>/dev/null" ) && fs .check )
|
2004-12-15 03:33:12 -07:00
|
|
|
{
|
2005-11-26 17:57:11 -07:00
|
|
|
fs .grow = GParted::FS::EXTERNAL ;
|
2004-12-15 03:33:12 -07:00
|
|
|
|
2005-11-28 10:04:13 -07:00
|
|
|
if ( fs .read ) //needed to determine a min filesystemsize..
|
2005-11-26 17:57:11 -07:00
|
|
|
fs .shrink = GParted::FS::EXTERNAL ;
|
2004-12-15 03:33:12 -07:00
|
|
|
}
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2005-11-28 10:04:13 -07:00
|
|
|
if ( ! system( "which dd 1>/dev/null 2>/dev/null" ) && fs .grow )
|
2005-11-26 17:57:11 -07:00
|
|
|
fs .copy = GParted::FS::EXTERNAL ;
|
2004-11-17 06:00:25 -07:00
|
|
|
|
|
|
|
return fs ;
|
|
|
|
}
|
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
void ext2::Set_Used_Sectors( Partition & partition )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2005-12-28 09:43:06 -07:00
|
|
|
argv .push_back( "dumpe2fs" ) ;
|
|
|
|
argv .push_back( "-h" ) ;
|
|
|
|
argv .push_back( partition .partition ) ;
|
|
|
|
|
2006-01-22 06:23:58 -07:00
|
|
|
if ( ! execute_command( argv, output ) )
|
2005-12-24 16:55:54 -07:00
|
|
|
{
|
2006-01-22 06:23:58 -07:00
|
|
|
index = output .find( "Free blocks:" ) ;
|
|
|
|
if ( index >= output .length() ||
|
|
|
|
sscanf( output.substr( index ) .c_str(), "Free blocks: %Ld", &N ) != 1 )
|
|
|
|
N = -1 ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2006-01-22 06:23:58 -07:00
|
|
|
index = output .find( "Block size:" ) ;
|
|
|
|
if ( index >= output.length() ||
|
|
|
|
sscanf( output.substr( index ) .c_str(), "Block size: %Ld", &S ) != 1 )
|
|
|
|
S = -1 ;
|
2005-12-24 16:55:54 -07:00
|
|
|
|
2006-01-22 06:23:58 -07:00
|
|
|
if ( N > -1 && S > -1 )
|
|
|
|
partition .Set_Unused( Utils::Round( N * ( S / 512.0 ) ) ) ;
|
|
|
|
}
|
2004-11-21 14:49:38 -07:00
|
|
|
}
|
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
bool ext2::Create( const Partition & new_partition, std::vector<OperationDetails> & operation_details )
|
2004-11-21 14:49:38 -07:00
|
|
|
{
|
2006-01-19 12:15:15 -07:00
|
|
|
operation_details .push_back( OperationDetails( String::ucompose(
|
|
|
|
_("create new %1 filesystem"),
|
|
|
|
Utils::Get_Filesystem_String( GParted::FS_EXT2 ) ) ) ) ;
|
|
|
|
argv .clear() ;
|
|
|
|
argv .push_back( "mkfs.ext2" ) ;
|
|
|
|
argv .push_back( new_partition .partition ) ;
|
|
|
|
if ( ! execute_command( argv, operation_details .back() .sub_details ) )
|
|
|
|
{
|
|
|
|
operation_details .back() .status = OperationDetails::SUCCES ;
|
|
|
|
return true ;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
operation_details .back() .status = OperationDetails::ERROR ;
|
|
|
|
return false ;
|
|
|
|
}
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
bool ext2::Resize( const Partition & partition_new,
|
|
|
|
std::vector<OperationDetails> & operation_details,
|
|
|
|
bool fill_partition )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2006-01-19 12:15:15 -07:00
|
|
|
if ( fill_partition )
|
|
|
|
operation_details .push_back( OperationDetails( _("grow filesystem to fill the partition") ) ) ;
|
|
|
|
else
|
|
|
|
operation_details .push_back( OperationDetails( _("resize the filesystem") ) ) ;
|
|
|
|
|
|
|
|
argv .clear() ;
|
|
|
|
argv .push_back( "resize2fs" ) ;
|
|
|
|
argv .push_back( partition_new .partition ) ;
|
2006-01-21 17:07:27 -07:00
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
if ( ! fill_partition )
|
2006-01-21 17:07:27 -07:00
|
|
|
argv .push_back( Utils::num_to_str( Utils::Round( Utils::sector_to_unit(
|
|
|
|
partition_new .get_length(), GParted::UNIT_MIB ) ) - cylinder_size, true ) + "M" ) ;
|
2006-01-19 12:15:15 -07:00
|
|
|
|
|
|
|
if ( ! execute_command( argv, operation_details .back() .sub_details ) )
|
|
|
|
{
|
|
|
|
operation_details .back() .status = OperationDetails::SUCCES ;
|
|
|
|
return true ;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
operation_details .back() .status = OperationDetails::ERROR ;
|
|
|
|
return false ;
|
|
|
|
}
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
bool ext2::Copy( const Glib::ustring & src_part_path,
|
|
|
|
const Glib::ustring & dest_part_path,
|
|
|
|
std::vector<OperationDetails> & operation_details )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2006-01-19 12:15:15 -07:00
|
|
|
operation_details .push_back( OperationDetails(
|
|
|
|
String::ucompose( _("copy contents of %1 to %2"), src_part_path, dest_part_path ) ) ) ;
|
|
|
|
|
|
|
|
argv .clear() ;
|
|
|
|
argv .push_back( "dd" ) ;
|
|
|
|
argv .push_back( "bs=8192" ) ;
|
|
|
|
argv .push_back( "if=" + src_part_path ) ;
|
|
|
|
argv .push_back( "of=" + dest_part_path ) ;
|
|
|
|
|
|
|
|
if ( ! execute_command( argv, operation_details .back() .sub_details ) )
|
2004-12-15 12:39:18 -07:00
|
|
|
{
|
2006-01-19 12:15:15 -07:00
|
|
|
operation_details .back() .status = OperationDetails::SUCCES ;
|
|
|
|
|
2004-12-15 12:39:18 -07:00
|
|
|
Partition partition ;
|
|
|
|
partition .partition = dest_part_path ;
|
2006-01-19 12:15:15 -07:00
|
|
|
return Resize( partition, operation_details, true ) ;
|
2004-12-15 12:39:18 -07:00
|
|
|
}
|
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
operation_details .back() .status = OperationDetails::ERROR ;
|
2004-12-15 12:39:18 -07:00
|
|
|
return false ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
bool ext2::Check_Repair( const Partition & partition, std::vector<OperationDetails> & operation_details )
|
2004-11-21 14:49:38 -07:00
|
|
|
{
|
2006-01-19 12:15:15 -07:00
|
|
|
operation_details .push_back( OperationDetails( _("check filesystem for errors and (if possible) fix them") ) ) ;
|
|
|
|
|
|
|
|
argv .clear() ;
|
|
|
|
argv .push_back( "e2fsck" ) ;
|
|
|
|
argv .push_back( "-f" ) ;
|
|
|
|
argv .push_back( "-y" ) ;
|
|
|
|
argv .push_back( "-v" ) ;
|
|
|
|
argv .push_back( partition .partition ) ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
if ( 1 >= execute_command( argv, operation_details .back() .sub_details ) >= 0 )
|
|
|
|
{
|
|
|
|
operation_details .back() .status = OperationDetails::SUCCES ;
|
|
|
|
return true ;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
operation_details .back() .status = OperationDetails::ERROR ;
|
|
|
|
return false ;
|
|
|
|
}
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
} //GParted
|
|
|
|
|
|
|
|
|