1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
/*
File: ext2grp.c
Copyright (C) 2008-2009 Christophe GRENIER <grenier@cgsecurity.org>
This software 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 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 the Free Software Foundation, Inc., 51
Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#include "types.h"
#include "common.h"
#include "list.h"
#include "filegen.h"
#include "dir.h"
#include "ext2grp.h"
#include "ext2_common.h"
#include "log.h"
#include "photorec.h"
unsigned int ext2_fix_group(alloc_data_t *list_search_space, disk_t *disk, const partition_t *partition)
{
struct td_list_head *search_walker = NULL;
unsigned char *buffer;
unsigned int blocksize;
if(partition->upart_type!=UP_EXT2 &&
partition->upart_type!=UP_EXT3 &&
partition->upart_type!=UP_EXT4)
{
log_error("Not a valid ext2/ext3/ext4 filesystem");
free_search_space(list_search_space);
return 0;
}
buffer=(unsigned char*)MALLOC(EXT2_SUPERBLOCK_SIZE);
if(disk->pread(disk, buffer, EXT2_SUPERBLOCK_SIZE, partition->part_offset + 0x400) != EXT2_SUPERBLOCK_SIZE)
{
free(buffer);
return 0;
}
{
const struct ext2_super_block *sb=(const struct ext2_super_block *)buffer;
const unsigned int mult=(unsigned int)le32(sb->s_blocks_per_group) * (EXT2_MIN_BLOCK_SIZE<<le32(sb->s_log_block_size));
td_list_for_each(search_walker, &list_search_space->list)
{
alloc_data_t *current_search_space;
current_search_space=td_list_entry(search_walker, alloc_data_t, list);
log_info("ext2_group: %llu\n", (long long unsigned)current_search_space->start);
current_search_space->start=current_search_space->start*mult + (le32(sb->s_log_block_size)==0?1024:0);
current_search_space->end=current_search_space->end*mult+mult-1 + (le32(sb->s_log_block_size)==0?1024:0);
}
blocksize=EXT2_MIN_BLOCK_SIZE<<le32(sb->s_log_block_size);
}
free(buffer);
return blocksize;
}
unsigned int ext2_fix_inode(alloc_data_t *list_search_space, disk_t *disk, const partition_t *partition)
{
struct td_list_head *search_walker = NULL;
unsigned char *buffer;
unsigned int blocksize;
if(partition->upart_type!=UP_EXT2 &&
partition->upart_type!=UP_EXT3 &&
partition->upart_type!=UP_EXT4)
{
log_error("Not a valid ext2/ext3/ext4 filesystem");
free_search_space(list_search_space);
return 0;
}
buffer=(unsigned char*)MALLOC(EXT2_SUPERBLOCK_SIZE);
if(disk->pread(disk, buffer, EXT2_SUPERBLOCK_SIZE, partition->part_offset + 0x400) != EXT2_SUPERBLOCK_SIZE)
{
free(buffer);
return 0;
}
{
const struct ext2_super_block *sb=(const struct ext2_super_block *)buffer;
const unsigned int divd=(unsigned int)le32(sb->s_inodes_per_group);
const unsigned int mult=(unsigned int)le32(sb->s_blocks_per_group) * (EXT2_MIN_BLOCK_SIZE<<le32(sb->s_log_block_size));
td_list_for_each(search_walker, &list_search_space->list)
{
alloc_data_t *current_search_space;
current_search_space=td_list_entry(search_walker, alloc_data_t, list);
log_info("ext2_inode: %llu\n", (long long unsigned)current_search_space->start);
current_search_space->start=current_search_space->start/divd*mult + (sb->s_log_block_size==0?1024:0);
current_search_space->end=current_search_space->end/divd*mult+mult-1 + (sb->s_log_block_size==0?1024:0);
}
blocksize=EXT2_MIN_BLOCK_SIZE<<le32(sb->s_log_block_size);
}
free(buffer);
return blocksize;
}
|