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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
|
/*
File: edit.c
Copyright (C) 1998-2005 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_STDLIB_H
#include <stdlib.h>
#endif
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#include <ctype.h>
#include "types.h"
#include "common.h"
#include "lang.h"
#include "intrf.h"
#include "fnctdsk.h"
#include "edit.h"
static void interface_editor_position(const t_param_disk *disk_car, uint64_t *lba);
static int dump_editor(const unsigned char *nom_dump,const unsigned int lng, const int menu_pos);
void interface_editor(t_param_disk *disk_car)
{
int done = FALSE;
uint64_t hd_offset=0;
unsigned char *buffer=MALLOC(disk_car->sector_size);
ecrit_rapport("%s\n",disk_car->description(disk_car));
while (done==FALSE)
{
static struct MenuItem menuEditor[]=
{
{ 'C', "Change position", "" },
{ 'D', "Dump", "Dump sector" },
{ 'Q', "Quit",""},
{ 0, NULL, NULL }
};
switch ( wmenuSelect(stdscr,INTER_DUMP_Y, INTER_DUMP_X, menuEditor, 8, "CDQ", MENU_HORIZ | MENU_BUTTON | MENU_ACCEPT_OTHERS, 0))
{
case 'c':
case 'C':
interface_editor_position(disk_car,&hd_offset);
break;
case 'd':
case 'D':
{
int menu_pos=KEY_DOWN;
while(done==0)
{
wmove(stdscr,4,0);
wclrtoeol(stdscr);
wdoprintf(stdscr,"%lu ", (unsigned long)(hd_offset/disk_car->sector_size));
aff_LBA2CHS(disk_car,hd_offset/disk_car->sector_size);
if(disk_car->read(disk_car,disk_car->sector_size, buffer, hd_offset))
{
wdoprintf(stdscr,msg_PART_RD_ERR);
}
{
menu_pos=dump_editor(buffer,disk_car->sector_size,menu_pos);
switch(menu_pos)
{
case KEY_UP:
if(hd_offset>0)
hd_offset-=disk_car->sector_size;
else
menu_pos=KEY_DOWN;
break;
case KEY_DOWN:
if(hd_offset<disk_car->disk_size)
hd_offset+=disk_car->sector_size;
else
menu_pos=KEY_UP;
break;
default:
done = TRUE;
break;
}
}
}
done = FALSE;
}
break;
case key_ESC:
case 'q':
case 'Q':
done = TRUE;
break;
}
}
free(buffer);
}
static void interface_editor_position(const t_param_disk *disk_car,uint64_t *lba)
{
t_CHS position;
int done = FALSE;
char def[LINE_LENGTH];
char response[LINE_LENGTH];
unsigned int tmp_val;
int command;
position.cylinder=offset2cylinder(disk_car,*lba);
position.head=offset2head(disk_car,*lba);
position.sector=offset2sector(disk_car,*lba);
while (done==FALSE) {
static struct MenuItem menuGeometry[]=
{
{ 'c', "Cylinders", "Change cylinder" },
{ 'h', "Heads", "Change head" },
{ 's', "Sectors", "Change sector" },
{ 'd', "Done", "Done with changing" },
{ 0, NULL, NULL }
};
wmove(stdscr,COMMAND_LINE_Y, COMMAND_LINE_X);
wclrtoeol(stdscr);
wrefresh(stdscr);
command=wmenuSimple(stdscr,menuGeometry, 3);
switch (command) {
case 'c':
case 'C':
sprintf(def, "%u", position.cylinder);
mvwaddstr(stdscr,COMMAND_LINE_Y, COMMAND_LINE_X, "Enter the number of cylinders: ");
if (get_string(response, LINE_LENGTH, def) > 0) {
tmp_val = atoi(response);
if (tmp_val <= disk_car->CHS.cylinder) {
position.cylinder = tmp_val;
} else
wdoprintf(stdscr,"Illegal cylinders value");
}
break;
case 'h':
case 'H':
sprintf(def, "%u", position.head);
mvwaddstr(stdscr,COMMAND_LINE_Y, COMMAND_LINE_X, "Enter the number of heads: ");
if (get_string(response, LINE_LENGTH, def) > 0) {
tmp_val = atoi(response);
if (tmp_val <= disk_car->CHS.head) {
position.head = tmp_val;
} else
wdoprintf(stdscr,"Illegal heads value");
}
break;
case 's':
case 'S':
sprintf(def, "%u", position.sector);
mvwaddstr(stdscr,COMMAND_LINE_Y, COMMAND_LINE_X, "Enter the number of sectors per track: ");
if (get_string(response, LINE_LENGTH, def) > 0) {
tmp_val = atoi(response);
if (tmp_val > 0 && tmp_val <= disk_car->CHS.sector ) {
position.sector = tmp_val;
} else
wdoprintf(stdscr,"Illegal sectors value");
}
break;
case key_ESC:
case 'd':
case 'D':
done = TRUE;
break;
}
}
*lba=CHS2offset(disk_car,&position);
}
static int dump_editor(const unsigned char *nom_dump,const unsigned int lng, const int menu_pos)
{
unsigned int i,j;
unsigned int pos;
unsigned char car;
int done=0;
unsigned int menu;
struct MenuItem menuDump[]=
{
{ 'P', "Previous",""},
{ 'N', "Next","" },
{ 'Q',"Quit","Quit dump section"},
{ 0, NULL, NULL }
};
/* write dump to log file*/
for (i=0; (i<lng/0x10); i++)
{
ecrit_rapport("%04X ",i*0x10);
for(j=0; j< 0x10;j++)
{
car=*(nom_dump+i*0x10+j);
ecrit_rapport("%02x", car);
if(j%4==(4-1))
ecrit_rapport(" ");
}
ecrit_rapport(" ");
for(j=0; j< 0x10;j++)
{
car=*(nom_dump+i*0x10+j);
if ((car<32)||(car >= 127))
ecrit_rapport(".");
else
ecrit_rapport("%c", car);
}
ecrit_rapport("\n");
}
/* ncurses interface */
pos=(menu_pos==KEY_DOWN?0:lng/0x10-DUMP_MAX_LINES);
menu=(menu_pos==KEY_DOWN?1:0);
mvwaddstr(stdscr,DUMP_Y,DUMP_X,msg_DUMP_HEXA);
do
{
for (i=pos; (i<lng/0x10)&&((i-pos)<DUMP_MAX_LINES); i++)
{
wmove(stdscr,DUMP_Y+i-pos,DUMP_X);
wclrtoeol(stdscr);
wdoprintf(stdscr,"%04X ",i*0x10);
for(j=0; j< 0x10;j++)
{
car=*(nom_dump+i*0x10+j);
wdoprintf(stdscr,"%02x", car);
if(j%4==(4-1))
wdoprintf(stdscr," ");
}
wdoprintf(stdscr," ");
for(j=0; j< 0x10;j++)
{
car=*(nom_dump+i*0x10+j);
if ((car<32)||(car >= 127))
wdoprintf(stdscr,".");
else
wdoprintf(stdscr,"%c", car);
}
}
switch (wmenuSelect(stdscr,INTER_DUMP_Y, INTER_DUMP_X, menuDump, 8, "PNQ", MENU_HORIZ | MENU_BUTTON | MENU_ACCEPT_OTHERS, menu))
{
case 'p':
case 'P':
case KEY_UP:
menu=0;
if(pos>0)
pos--;
else
done=KEY_UP;
break;
case 'n':
case 'N':
case KEY_DOWN:
menu=1;
if(pos<lng/0x10-DUMP_MAX_LINES)
pos++;
else
done = KEY_DOWN;
break;
case KEY_PPAGE:
menu=0;
if(pos==0)
done=KEY_UP;
if(pos>DUMP_MAX_LINES-1)
pos-=DUMP_MAX_LINES-1;
else
pos=0;
break;
case KEY_NPAGE:
menu=1;
if(pos==lng/0x10-DUMP_MAX_LINES)
done=KEY_DOWN;
if(pos<lng/0x10-DUMP_MAX_LINES-(DUMP_MAX_LINES-1))
pos+=DUMP_MAX_LINES-1;
else
pos=lng/0x10-DUMP_MAX_LINES;
break;
case key_ESC:
case 'q':
case 'Q':
done = 'Q';
break;
}
} while(done==0);
return done;
}
|