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
|
/*
File: file_flv.c
Copyright (C) 2007,2014 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.
*/
#if !defined(SINGLE_FORMAT) || defined(SINGLE_FORMAT_flv)
#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"
static void register_header_check_flv(file_stat_t *file_stat);
const file_hint_t file_hint_flv= {
.extension="flv",
.description="Macromedia",
.max_filesize=PHOTOREC_MAX_FILE_SIZE,
.recover=1,
.enable_by_default=1,
.register_header_check=®ister_header_check_flv
};
struct flv_header
{
char signature[3];
uint8_t version;
uint8_t type_flags;
uint32_t data_offset;
} __attribute__ ((gcc_struct, __packed__));
struct flv_tag
{
uint32_t prev_tag_size;
uint8_t info;
uint8_t data_size[3];
uint8_t timestamp[3];
uint8_t timestamp_ext;
uint8_t streamID[3];
} __attribute__ ((gcc_struct, __packed__));
static data_check_t data_check_flv(const unsigned char *buffer, const unsigned int buffer_size, file_recovery_t *file_recovery)
{
static uint32_t datasize=0;
/*@
@ loop assigns file_recovery->calculated_file_size, datasize;
@*/
while(file_recovery->calculated_file_size + buffer_size/2 >= file_recovery->file_size &&
file_recovery->calculated_file_size + 15 < file_recovery->file_size + buffer_size/2)
{
const unsigned int i=file_recovery->calculated_file_size - file_recovery->file_size + buffer_size/2;
const struct flv_tag *tag=(const struct flv_tag *)&buffer[i];
#ifdef DEBUG_FLV
log_info("cfs=0x%llx datasize=%u\n", (long long unsigned)file_recovery->calculated_file_size, datasize);
#endif
if((be32(tag->prev_tag_size)==0 && file_recovery->calculated_file_size < buffer_size/2) ||
be32(tag->prev_tag_size)==11+datasize)
{
datasize=(tag->data_size[0]<<16) | (tag->data_size[1]<<8) | tag->data_size[2];
if((tag->info&0xc0)!=0 || datasize==0
|| tag->streamID[0]!=0 || tag->streamID[1]!=0 || tag->streamID[2]!=0 )
{
file_recovery->calculated_file_size+=4;
return DC_STOP;
}
/* 4+11=15*/
file_recovery->calculated_file_size+=(uint64_t)15+datasize;
}
else
return DC_ERROR;
}
return DC_CONTINUE;
}
static int header_check_flv(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 struct flv_header *flv=(const struct flv_header *)buffer;
if((flv->type_flags & 0xfa)==0 && be32(flv->data_offset)>=9)
{
reset_file_recovery(file_recovery_new);
file_recovery_new->extension=file_hint_flv.extension;
if(file_recovery_new->blocksize < 15)
return 1;
file_recovery_new->calculated_file_size=be32(flv->data_offset);
file_recovery_new->data_check=&data_check_flv;
file_recovery_new->file_check=&file_check_size;
return 1;
}
return 0;
}
static void register_header_check_flv(file_stat_t *file_stat)
{
static const unsigned char flv_header[4]= {'F', 'L', 'V', 0x01};
register_header_check(0, flv_header,sizeof(flv_header), &header_check_flv, file_stat);
}
#endif
|