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
|
/*
File: poptions.c
Copyright (C) 1998-2013 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_STRING_H
#include <string.h>
#endif
#include "types.h"
#include "common.h"
#include "filegen.h"
#include "photorec.h"
#include "log.h"
#include "poptions.h"
void interface_options_photorec_cli(struct ph_options *options, char **current_cmd)
{
if(*current_cmd==NULL)
{
/*@ assert valid_read_string(*current_cmd); */
return ;
}
/*@
@ loop invariant valid_read_string(*current_cmd);
@ loop assigns *current_cmd;
@ loop assigns options->paranoid, options->keep_corrupted_file, options->mode_ext2;
@ loop assigns options->expert, options->lowmem;
@*/
while(1)
{
skip_comma_in_command(current_cmd);
/* paranoid, longer option first */
if(check_command(current_cmd,"paranoid_no",11)==0)
{
options->paranoid=0;
}
else if(check_command(current_cmd,"paranoid_bf",11)==0)
{
options->paranoid=2;
}
else if(check_command(current_cmd,"paranoid",8)==0)
{
options->paranoid=1;
}
/* keep_corrupted_file */
else if(check_command(current_cmd,"keep_corrupted_file_no",22)==0)
{
options->keep_corrupted_file=0;
}
else if(check_command(current_cmd,"keep_corrupted_file",19)==0)
{
options->keep_corrupted_file=1;
}
/* mode_ext2 */
else if(check_command(current_cmd,"mode_ext2",9)==0)
{
options->mode_ext2=1;
}
/* expert */
else if(check_command(current_cmd,"expert",6)==0)
{
options->expert=1;
}
/* lowmem */
else if(check_command(current_cmd,"lowmem",6)==0)
{
options->lowmem=1;
}
else
{
#ifndef DISABLED_FOR_FRAMAC
interface_options_photorec_log(options);
#endif
/*@ assert valid_read_string(*current_cmd); */
return ;
}
}
}
void interface_options_photorec_log(const struct ph_options *options)
{
/* write new options to log file */
log_info("New options :\n Paranoid : %s\n", options->paranoid?"Yes":"No");
log_info(" Brute force : %s\n", ((options->paranoid)>1?"Yes":"No"));
log_info(" Keep corrupted files : %s\n ext2/ext3 mode : %s\n Expert mode : %s\n Low memory : %s\n",
options->keep_corrupted_file?"Yes":"No",
options->mode_ext2?"Yes":"No",
options->expert?"Yes":"No",
options->lowmem?"Yes":"No");
}
|