2008-04-07 13:41:18 -06:00
|
|
|
/* Copyright (C) 2004, 2005, 2006, 2007, 2008 Bart Hakvoort
|
2004-12-14 15:49:44 -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/jfs.h"
|
|
|
|
|
2006-01-19 14:42:38 -07:00
|
|
|
#include <cerrno>
|
|
|
|
|
2004-12-14 15:49:44 -07:00
|
|
|
namespace GParted
|
|
|
|
{
|
|
|
|
|
2006-01-24 05:31:58 -07:00
|
|
|
FS jfs::get_filesystem_support()
|
2004-12-14 15:49:44 -07:00
|
|
|
{
|
|
|
|
FS fs ;
|
2005-12-07 04:21:27 -07:00
|
|
|
fs .filesystem = GParted::FS_JFS ;
|
2004-12-15 03:33:12 -07:00
|
|
|
|
2006-01-24 05:31:58 -07:00
|
|
|
if ( ! Glib::find_program_in_path( "jfs_debugfs" ) .empty() )
|
2005-11-26 17:57:11 -07:00
|
|
|
fs .read = GParted::FS::EXTERNAL ;
|
2004-12-14 15:49:44 -07:00
|
|
|
|
2008-04-07 13:41:18 -06:00
|
|
|
if ( ! Glib::find_program_in_path( "jfs_tune" ) .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
|
|
|
}
|
|
|
|
|
2006-01-24 05:31:58 -07:00
|
|
|
if ( ! Glib::find_program_in_path( "mkfs.jfs" ) .empty() )
|
2005-11-26 17:57:11 -07:00
|
|
|
fs .create = GParted::FS::EXTERNAL ;
|
2004-12-14 15:49:44 -07:00
|
|
|
|
2006-01-24 05:31:58 -07:00
|
|
|
if ( ! Glib::find_program_in_path( "jfs_fsck" ) .empty() )
|
2005-11-26 17:57:11 -07:00
|
|
|
fs .check = GParted::FS::EXTERNAL ;
|
2004-12-14 15:49:44 -07:00
|
|
|
|
2006-02-15 09:05:26 -07:00
|
|
|
//resizing of jfs requires mount, unmount, check/repair functionality and jfs support in the kernel
|
|
|
|
if ( ! Glib::find_program_in_path( "mount" ) .empty() &&
|
|
|
|
! Glib::find_program_in_path( "umount" ) .empty() &&
|
|
|
|
fs .check )
|
2004-12-14 15:49:44 -07:00
|
|
|
{
|
2006-02-15 09:05:26 -07:00
|
|
|
std::ifstream input( "/proc/filesystems" ) ;
|
|
|
|
if ( input )
|
|
|
|
{
|
|
|
|
Glib::ustring line ;
|
|
|
|
|
|
|
|
while ( input >> line )
|
|
|
|
if ( line == "jfs" )
|
|
|
|
{
|
|
|
|
fs .grow = GParted::FS::EXTERNAL ;
|
|
|
|
break ;
|
|
|
|
}
|
2005-12-14 07:47:58 -07:00
|
|
|
|
2006-02-15 09:05:26 -07:00
|
|
|
input .close() ;
|
|
|
|
}
|
2004-12-14 15:49:44 -07:00
|
|
|
}
|
2006-05-23 15:17:34 -06:00
|
|
|
|
2006-07-19 14:12:46 -06:00
|
|
|
|
|
|
|
if ( fs .check )
|
|
|
|
{
|
|
|
|
fs .move = GParted::FS::GPARTED ;
|
2006-05-23 15:17:34 -06:00
|
|
|
fs .copy = GParted::FS::GPARTED ;
|
2006-07-19 14:12:46 -06:00
|
|
|
}
|
2004-12-14 15:49:44 -07:00
|
|
|
|
2006-02-25 03:09:30 -07:00
|
|
|
fs .MIN = 16 * MEBIBYTE ;
|
2004-12-14 15:49:44 -07:00
|
|
|
|
|
|
|
return fs ;
|
|
|
|
}
|
|
|
|
|
2006-08-20 03:33:54 -06:00
|
|
|
void jfs::set_used_sectors( Partition & partition )
|
2004-12-14 15:49:44 -07:00
|
|
|
{
|
2006-03-14 14:37:47 -07:00
|
|
|
if ( ! Utils::execute_command( "echo dm | jfs_debugfs " + partition .get_path(), output, error, true ) )
|
2004-12-29 12:22:58 -07:00
|
|
|
{
|
2006-01-22 06:23:58 -07:00
|
|
|
//blocksize
|
|
|
|
index = output .find( "Block Size:" ) ;
|
|
|
|
if ( index >= output .length() ||
|
|
|
|
sscanf( output .substr( index ) .c_str(), "Block Size: %Ld", &S ) != 1 )
|
|
|
|
S = -1 ;
|
2004-12-29 12:22:58 -07:00
|
|
|
|
2006-01-22 06:23:58 -07:00
|
|
|
//free blocks
|
|
|
|
index = output .find( "dn_nfree:" ) ;
|
|
|
|
if ( index >= output .length() ||
|
|
|
|
sscanf( output .substr( index ) .c_str(), "dn_nfree: %Lx", &N ) != 1 )
|
|
|
|
N = -1 ;
|
|
|
|
|
|
|
|
if ( S > -1 && N > -1 )
|
2006-03-28 05:40:29 -07:00
|
|
|
partition .Set_Unused( Utils::round( N * ( S / 512.0 ) ) ) ;
|
2004-12-29 12:22: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-12-14 15:49:44 -07:00
|
|
|
}
|
|
|
|
|
2008-11-08 16:55:17 -07:00
|
|
|
void jfs::read_label( Partition & partition )
|
2006-09-12 14:34:33 -06:00
|
|
|
{
|
2006-09-25 05:17:41 -06:00
|
|
|
if ( ! Utils::execute_command( "jfs_tune -l " + partition .get_path(), output, error, true ) )
|
|
|
|
{
|
2008-04-07 13:41:18 -06:00
|
|
|
partition .label = Utils::regexp_label( output, "^Volume label:[\t ]*'(.*)'" ) ;
|
2006-09-25 05:17:41 -06:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( ! output .empty() )
|
|
|
|
partition .messages .push_back( output ) ;
|
|
|
|
|
|
|
|
if ( ! error .empty() )
|
|
|
|
partition .messages .push_back( error ) ;
|
|
|
|
}
|
2006-09-12 14:34:33 -06:00
|
|
|
}
|
|
|
|
|
2008-11-08 16:55:17 -07:00
|
|
|
bool jfs::write_label( const Partition & partition, OperationDetail & operationdetail )
|
2008-04-07 13:41:18 -06:00
|
|
|
{
|
|
|
|
return ! execute_command( "jfs_tune -L \"" + partition .label + "\" " + partition .get_path(), operationdetail ) ;
|
|
|
|
}
|
|
|
|
|
2006-08-20 03:33:54 -06:00
|
|
|
bool jfs::create( const Partition & new_partition, OperationDetail & operationdetail )
|
2004-12-14 15:49:44 -07:00
|
|
|
{
|
2008-04-07 13:41:18 -06:00
|
|
|
return ! execute_command( "mkfs.jfs -q -L \"" + new_partition .label + "\" " + new_partition .get_path(), operationdetail ) ;
|
2004-12-14 15:49:44 -07:00
|
|
|
}
|
|
|
|
|
2006-08-20 03:33:54 -06:00
|
|
|
bool jfs::resize( const Partition & partition_new, OperationDetail & operationdetail, bool fill_partition )
|
2006-01-19 14:42:38 -07:00
|
|
|
{
|
2004-12-14 15:49:44 -07:00
|
|
|
bool return_value = false ;
|
2005-12-14 07:47:58 -07:00
|
|
|
Glib::ustring error ;
|
2008-11-18 16:58:17 -07:00
|
|
|
Glib::ustring TEMP_MP = Glib::get_tmp_dir() + "/gparted_tmp_jfs_mount_point" ;
|
2004-12-14 15:49:44 -07:00
|
|
|
|
2008-11-18 16:58:17 -07:00
|
|
|
//create mount point...
|
|
|
|
operationdetail .add_child( OperationDetail( String::ucompose( _("create temporary mount point (%1)"), TEMP_MP ) ) ) ;
|
2006-01-19 14:42:38 -07:00
|
|
|
if ( ! mkdir( TEMP_MP .c_str(), 0 ) )
|
|
|
|
{
|
2006-08-20 03:33:54 -06:00
|
|
|
operationdetail .get_last_child() .set_status( STATUS_SUCCES ) ;
|
2006-02-15 09:05:26 -07:00
|
|
|
|
2006-01-19 14:42:38 -07:00
|
|
|
//mount partition
|
2006-08-20 03:33:54 -06:00
|
|
|
operationdetail .add_child(
|
2006-07-29 02:27:28 -06:00
|
|
|
OperationDetail( String::ucompose( _("mount %1 on %2"), partition_new .get_path(), TEMP_MP ) ) ) ;
|
2006-02-15 09:05:26 -07:00
|
|
|
|
2006-03-14 14:37:47 -07:00
|
|
|
if ( ! execute_command( "mount -v -t jfs " + partition_new .get_path() + " " + TEMP_MP,
|
2006-08-20 03:33:54 -06:00
|
|
|
operationdetail .get_last_child() ) )
|
2006-01-19 14:42:38 -07:00
|
|
|
{
|
2006-08-20 03:33:54 -06:00
|
|
|
operationdetail .get_last_child() .set_status( STATUS_SUCCES ) ;
|
2006-01-19 14:42:38 -07:00
|
|
|
|
2008-11-18 16:58:17 -07:00
|
|
|
//remount the partition to resize the file system
|
2006-08-20 03:33:54 -06:00
|
|
|
operationdetail .add_child(
|
2006-07-29 02:27:28 -06:00
|
|
|
OperationDetail( String::ucompose( _("remount %1 on %2 with the 'resize' flag enabled"),
|
2006-08-20 03:33:54 -06:00
|
|
|
partition_new .get_path(),
|
|
|
|
TEMP_MP ) ) ) ;
|
2006-02-15 09:05:26 -07:00
|
|
|
|
2006-06-17 08:44:17 -06:00
|
|
|
if ( ! execute_command(
|
|
|
|
"mount -v -t jfs -o remount,resize " + partition_new .get_path() + " " + TEMP_MP,
|
2006-08-20 03:33:54 -06:00
|
|
|
operationdetail .get_last_child() ) )
|
2006-01-19 14:42:38 -07:00
|
|
|
{
|
2006-08-20 03:33:54 -06:00
|
|
|
operationdetail .get_last_child() .set_status( STATUS_SUCCES ) ;
|
2006-01-19 16:30:17 -07:00
|
|
|
return_value = true ;
|
2006-01-19 14:42:38 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-08-20 03:33:54 -06:00
|
|
|
operationdetail .get_last_child() .set_status( STATUS_ERROR ) ;
|
2006-01-19 14:42:38 -07:00
|
|
|
}
|
2006-01-19 16:30:17 -07:00
|
|
|
|
|
|
|
//and unmount it...
|
2006-08-20 03:33:54 -06:00
|
|
|
operationdetail .add_child(
|
2006-07-29 02:27:28 -06:00
|
|
|
OperationDetail( String::ucompose( _("unmount %1"), partition_new .get_path() ) ) ) ;
|
2006-02-15 09:05:26 -07:00
|
|
|
|
2006-03-14 14:37:47 -07:00
|
|
|
if ( ! execute_command( "umount -v " + partition_new .get_path(),
|
2006-08-20 03:33:54 -06:00
|
|
|
operationdetail .get_last_child() ) )
|
2006-01-19 16:30:17 -07:00
|
|
|
{
|
2006-08-20 03:33:54 -06:00
|
|
|
operationdetail .get_last_child() .set_status( STATUS_SUCCES ) ;
|
2006-01-19 16:30:17 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-08-20 03:33:54 -06:00
|
|
|
operationdetail .get_last_child() .set_status( STATUS_ERROR ) ;
|
2006-01-19 16:30:17 -07:00
|
|
|
return_value = false ;
|
|
|
|
}
|
2006-01-19 14:42:38 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-08-20 03:33:54 -06:00
|
|
|
operationdetail .get_last_child() .set_status( STATUS_ERROR ) ;
|
2006-01-19 14:42:38 -07:00
|
|
|
}
|
2006-01-19 16:30:17 -07:00
|
|
|
|
2008-11-18 16:58:17 -07:00
|
|
|
//remove the mount point..
|
2006-08-20 03:33:54 -06:00
|
|
|
operationdetail .add_child(
|
2008-11-18 16:58:17 -07:00
|
|
|
OperationDetail( String::ucompose( _("remove temporary mount point (%1)"), TEMP_MP ) ) ) ;
|
2006-01-19 14:42:38 -07:00
|
|
|
if ( ! rmdir( TEMP_MP .c_str() ) )
|
|
|
|
{
|
2006-08-20 03:33:54 -06:00
|
|
|
operationdetail .get_last_child() .set_status( STATUS_SUCCES ) ;
|
2006-01-19 14:42:38 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-08-20 03:33:54 -06:00
|
|
|
operationdetail .get_last_child() .set_status( STATUS_ERROR ) ;
|
|
|
|
operationdetail .get_last_child() .add_child(
|
2006-07-29 02:27:28 -06:00
|
|
|
OperationDetail( Glib::strerror( errno ), STATUS_NONE ) ) ;
|
2006-01-19 14:42:38 -07:00
|
|
|
|
|
|
|
return_value = false ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2004-12-14 15:49:44 -07:00
|
|
|
{
|
2006-08-20 03:33:54 -06:00
|
|
|
operationdetail .get_last_child() .set_status( STATUS_ERROR ) ;
|
|
|
|
operationdetail .get_last_child() .add_child(
|
2006-07-29 02:27:28 -06:00
|
|
|
OperationDetail( Glib::strerror( errno ), STATUS_NONE ) ) ;
|
2004-12-14 15:49:44 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return return_value ;
|
|
|
|
}
|
|
|
|
|
2006-08-20 03:33:54 -06:00
|
|
|
bool jfs::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-12-14 15:49:44 -07:00
|
|
|
{
|
2006-05-23 15:17:34 -06:00
|
|
|
return true ;
|
2004-12-14 15:49:44 -07:00
|
|
|
}
|
|
|
|
|
2006-08-20 03:33:54 -06:00
|
|
|
bool jfs::check_repair( const Partition & partition, OperationDetail & operationdetail )
|
2004-12-14 15:49:44 -07:00
|
|
|
{
|
2006-08-20 03:33:54 -06:00
|
|
|
exit_status = execute_command( "jfs_fsck -f " + partition .get_path(), operationdetail ) ;
|
2006-06-17 10:38:15 -06:00
|
|
|
|
|
|
|
return ( exit_status == 0 || exit_status == 1 ) ;
|
2004-12-14 15:49:44 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
} //GParted
|
|
|
|
|
|
|
|
|