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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
|
/*
File: file_ace.c
Copyright (C) 2007 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
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#include <stdio.h>
#include "types.h"
#include "filegen.h"
#include "common.h"
#include "log.h"
#include "crc.h"
/* #define DEBUG_ACE */
static void register_header_check_ace(file_stat_t *file_stat);
static int header_check_ace(const unsigned char *buffer, const unsigned int buffer_size, const unsigned int safe_header_only, const file_recovery_t *file_recovery, file_recovery_t *file_recovery_new);
const file_hint_t file_hint_ace= {
.extension="ace",
.description="ACE archive",
.min_header_distance=0,
.max_filesize=PHOTOREC_MAX_FILE_SIZE,
.recover=1,
.register_header_check=®ister_header_check_ace
};
static const unsigned char ace_header[7] = { '*','*','A','C','E','*','*'};
static void register_header_check_ace(file_stat_t *file_stat)
{
register_header_check(7, ace_header,sizeof(ace_header), &header_check_ace, file_stat);
}
struct header_ace {
uint16_t crc16; /** Lower 16bits of CRC32 over block up from HEAD_TYPE */
uint16_t size; /** Size of the block from HEAD_TYPE
up to the beginning of the ADDSIZE block */
uint8_t type; /** indicates type of block */
uint16_t flags; /** flags related to the block and its content
for all blocks these flags are valid.
bit 0 indicates if field add size is preset */
uint32_t addsize; /** an optional field which represents the size of
an additional block without specified structure */
} __attribute__ ((__packed__));
typedef struct header_ace ace_header_t;
static void file_check_ace(file_recovery_t *file_recovery)
{
fseek(file_recovery->handle, 0, SEEK_SET);
file_recovery->file_size = 0;
file_recovery->offset_error=0;
#ifdef DEBUG_ACE
log_trace("file_check_ace\n");
#endif
while (!feof(file_recovery->handle))
{
ace_header_t h;
if(fread(&h, sizeof(h), 1, file_recovery->handle)!=1)
{
return ;
}
fseek(file_recovery->handle, -sizeof(h)+4, SEEK_CUR);
#ifdef DEBUG_ACE
log_trace("file_ace: Block header at 0x%08lx: CRC16=0x%04X size=%u type=%u"
" flags=0x%04X addsize=%u\n",
(long unsigned) file_recovery->file_size,
le16(h.crc16), le16(h.size), h.type, le16(h.flags),
(le16(h.flags)&1) ? le32(h.addsize):0);
#endif
/* Type 0=Archive header, 1=File block, 2=Recovery Record, 5 new_recovery ? */
if (h.type!=0 && h.type!=1 && h.type!=2 && h.type!=5)
{
#ifdef DEBUG_ACE
log_trace("file_ace: Invalid block type %u\n", h.type);
#endif
return ;
}
/* Minimal size is type+flags */
if (le16(h.size) < 1+2)
{
#ifdef DEBUG_ACE
log_trace("file_ace: Invalid block size %u\n", le16(h.size));
#endif
return ;
}
{
/* Header hardly ever bigger than a filename */
#define BUF_SIZE 256
unsigned char buffer[BUF_SIZE];
int len=le16(h.size);
uint32_t crc32=0xFFFFFFFF;
while (len>0)
{
int count = ((len>BUF_SIZE) ? BUF_SIZE : len);
int bytes = fread(buffer, 1, count, file_recovery->handle);
if (bytes != count)
{
#ifdef DEBUG_ACE
log_trace("file_ace: truncated file\n");
#endif
return ;
}
crc32=get_crc32(buffer, count, crc32);
len -= count;
}
if (le16(h.crc16) != (crc32&0xFFFF))
{
#ifdef DEBUG_ACE
log_trace("file_ace: bad CRC32: %04X vs %04X\n", le16(h.crc16), crc32);
#endif
return ;
}
}
/* Add its header size */
file_recovery->file_size += 2 + 2 + le16(h.size); /* +2: CRC16, +2: size */
/* If addsize flag, add complementary size */
if (le16(h.flags)&1)
{
file_recovery->file_size += le32(h.addsize);
fseek(file_recovery->handle, file_recovery->file_size, SEEK_SET);
}
}
}
static int header_check_ace(const unsigned char *buffer, const unsigned int buffer_size, const unsigned int safe_header_only, const file_recovery_t *file_recovery, file_recovery_t *file_recovery_new)
{
if(memcmp(&buffer[7],ace_header,sizeof(ace_header))==0 && buffer[4]==0)
{
reset_file_recovery(file_recovery_new);
file_recovery_new->extension=file_hint_ace.extension;
file_recovery_new->min_filesize=
2 + /* CRC16 */
2 + /* Head size */
1 + /* Head type */
2 + /* Flags */
7 + /* Signature */
16; /* Minimal size for marker header */
file_recovery_new->file_check=&file_check_ace;
return 1;
}
return 0;
}
|