2008-04-07 13:41:18 -06:00
|
|
|
/* Copyright (C) 2004, 2005, 2006, 2007, 2008 Bart Hakvoort
|
2004-11-17 06:00:25 -07: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; 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
|
|
|
|
{
|
|
|
|
|
2006-02-25 05:25:18 -07:00
|
|
|
FS ext2::get_filesystem_support()
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
|
|
|
FS fs ;
|
2006-09-12 14:34:33 -06:00
|
|
|
fs .filesystem = FS_EXT2 ;
|
2006-01-24 05:31:58 -07:00
|
|
|
|
|
|
|
if ( ! Glib::find_program_in_path( "dumpe2fs" ) .empty() )
|
2006-09-12 14:34:33 -06:00
|
|
|
fs .read = FS::EXTERNAL ;
|
|
|
|
|
2008-04-07 13:41:18 -06:00
|
|
|
if ( ! Glib::find_program_in_path( "e2label" ) .empty() ) {
|
2008-11-08 16:55:17 -07:00
|
|
|
fs .read_label = FS::EXTERNAL ;
|
|
|
|
fs .write_label = FS::EXTERNAL ;
|
2008-04-07 13:41:18 -06:00
|
|
|
}
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2006-01-24 05:31:58 -07:00
|
|
|
if ( ! Glib::find_program_in_path( "mkfs.ext2" ) .empty() )
|
2006-09-12 14:34:33 -06:00
|
|
|
fs .create = FS::EXTERNAL ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2006-01-24 05:31:58 -07:00
|
|
|
if ( ! Glib::find_program_in_path( "e2fsck" ) .empty() )
|
2006-09-12 14:34:33 -06:00
|
|
|
fs .check = FS::EXTERNAL ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2006-01-24 05:31:58 -07:00
|
|
|
if ( ! Glib::find_program_in_path( "resize2fs" ) .empty() && fs .check )
|
2004-12-15 03:33:12 -07:00
|
|
|
{
|
2006-09-12 14:34:33 -06:00
|
|
|
fs .grow = 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..
|
2006-09-12 14:34:33 -06:00
|
|
|
fs .shrink = FS::EXTERNAL ;
|
2004-12-15 03:33:12 -07:00
|
|
|
}
|
2006-05-31 14:03:49 -06:00
|
|
|
|
2006-07-19 14:12:46 -06:00
|
|
|
if ( fs .check )
|
|
|
|
{
|
2006-09-12 14:34:33 -06:00
|
|
|
fs .copy = FS::GPARTED ;
|
|
|
|
fs .move = FS::GPARTED ;
|
2006-07-19 14:12:46 -06:00
|
|
|
}
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
return fs ;
|
|
|
|
}
|
|
|
|
|
2006-08-20 03:33:54 -06:00
|
|
|
void ext2::set_used_sectors( Partition & partition )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2006-03-14 14:37:47 -07:00
|
|
|
if ( ! Utils::execute_command( "dumpe2fs -h " + partition .get_path(), output, error, true ) )
|
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 )
|
2006-03-28 05:40:29 -07:00
|
|
|
partition .Set_Unused( Utils::round( N * ( S / 512.0 ) ) ) ;
|
2006-01-22 06:23:58 -07:00
|
|
|
}
|
2006-02-25 05:25:18 -07:00
|
|
|
else
|
2006-09-08 14:51:31 -06:00
|
|
|
{
|
|
|
|
if ( ! output .empty() )
|
|
|
|
partition .messages .push_back( output ) ;
|
|
|
|
|
|
|
|
if ( ! error .empty() )
|
|
|
|
partition .messages .push_back( error ) ;
|
|
|
|
}
|
2004-11-21 14:49:38 -07:00
|
|
|
}
|
2006-09-12 14:34:33 -06:00
|
|
|
|
2008-11-08 16:55:17 -07:00
|
|
|
void ext2::read_label( Partition & partition )
|
2006-09-12 14:34:33 -06:00
|
|
|
{
|
|
|
|
if ( ! Utils::execute_command( "e2label " + partition .get_path(), output, error, true ) )
|
|
|
|
{
|
2008-04-07 13:41:18 -06:00
|
|
|
partition .label = Utils::regexp_label( output, "^(.*)" ) ;
|
2006-09-12 14:34:33 -06:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( ! output .empty() )
|
|
|
|
partition .messages .push_back( output ) ;
|
|
|
|
|
|
|
|
if ( ! error .empty() )
|
|
|
|
partition .messages .push_back( error ) ;
|
|
|
|
}
|
|
|
|
}
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2008-11-08 16:55:17 -07:00
|
|
|
bool ext2::write_label( const Partition & partition, OperationDetail & operationdetail )
|
2008-04-07 13:41:18 -06:00
|
|
|
{
|
|
|
|
return ! execute_command( "e2label " + partition .get_path() + " \"" + partition .label + "\"", operationdetail ) ;
|
|
|
|
}
|
|
|
|
|
2006-08-20 03:33:54 -06:00
|
|
|
bool ext2::create( const Partition & new_partition, OperationDetail & operationdetail )
|
2004-11-21 14:49:38 -07:00
|
|
|
{
|
2008-04-07 13:41:18 -06:00
|
|
|
return ! execute_command( "mkfs.ext2 -L \"" + new_partition .label + "\" " + new_partition .get_path(), operationdetail ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2006-08-20 03:33:54 -06:00
|
|
|
bool ext2::resize( const Partition & partition_new, OperationDetail & operationdetail, bool fill_partition )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2006-03-14 14:37:47 -07:00
|
|
|
Glib::ustring str_temp = "resize2fs " + partition_new .get_path() ;
|
2006-01-21 17:07:27 -07:00
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
if ( ! fill_partition )
|
2006-03-28 05:40:29 -07:00
|
|
|
str_temp += " " + Utils::num_to_str( Utils::round( Utils::sector_to_unit(
|
2006-09-12 14:34:33 -06:00
|
|
|
partition_new .get_length(), UNIT_KIB ) ) -1, true ) + "K" ;
|
2006-01-19 12:15:15 -07:00
|
|
|
|
2006-08-20 03:33:54 -06:00
|
|
|
return ! execute_command( str_temp, operationdetail ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2006-08-20 03:33:54 -06:00
|
|
|
bool ext2::copy( const Glib::ustring & src_part_path,
|
2006-01-19 12:15:15 -07:00
|
|
|
const Glib::ustring & dest_part_path,
|
2006-08-20 03:33:54 -06:00
|
|
|
OperationDetail & operationdetail )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2006-05-23 15:17:34 -06:00
|
|
|
return true ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2006-08-20 03:33:54 -06:00
|
|
|
bool ext2::check_repair( const Partition & partition, OperationDetail & operationdetail )
|
2004-11-21 14:49:38 -07:00
|
|
|
{
|
2006-08-20 03:33:54 -06:00
|
|
|
exit_status = execute_command( "e2fsck -f -y -v " + partition .get_path(), operationdetail ) ;
|
2006-05-23 15:17:34 -06:00
|
|
|
|
|
|
|
//exitstatus 256 isn't documented, but it's returned when the 'FILESYSTEM IS MODIFIED'
|
|
|
|
//this is quite normal (especially after a copy) so we let the function return true...
|
2006-06-17 10:38:15 -06:00
|
|
|
return ( exit_status == 0 || exit_status == 1 || exit_status == 2 || exit_status == 256 ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
} //GParted
|
|
|
|
|
|
|
|
|