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
|
/*
File: geometry.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 "intrf.h"
#include "chgtype.h"
void change_geometry(t_param_disk *disk_car, char ** current_cmd)
{
int done = FALSE;
char def[LINE_LENGTH];
char response[LINE_LENGTH];
int tmp_val=0;
int command;
int default_option=4;
int modified=0;
while (done==FALSE)
{
static struct MenuItem menuGeometry[]=
{
{ 'c', "Cylinders", "Change cylinder geometry" },
{ 'h', "Heads", "Change head geometry" },
{ 's', "Sectors", "Change sector geometry" },
{ 'n', "Sector Size", "Change sector size (WARNING: VERY DANGEROUS!)" },
{ 'q', "Ok", "Done with changing geometry" },
{ 0, NULL, NULL }
};
aff_copy(stdscr);
wmove(stdscr,5,0);
wdoprintf(stdscr,"%s, sector size=%u\n",disk_car->description(disk_car),disk_car->sector_size);
wmove(stdscr,7,0);
wdoprintf(stdscr,"Because these numbers change the way that TestDisk looks for partitions");
wmove(stdscr,8,0);
wdoprintf(stdscr,"and calculates their sizes, it's important to have the correct disk geometry.");
wmove(stdscr,9,0);
wdoprintf(stdscr,"PC partitionning programs often make partitions end on cylinder boundaries.");
wmove(stdscr,11,0);
wdoprintf(stdscr,"A partition's CHS values are based on disk translations which make them");
wmove(stdscr,12,0);
wdoprintf(stdscr,"different than its physical geometry. The most common CHS head values");
wmove(stdscr,13,0);
wdoprintf(stdscr,"are: 255, 240 and sometimes 16.");
wmove(stdscr,COMMAND_LINE_Y, COMMAND_LINE_X);
wclrtoeol(stdscr);
wrefresh(stdscr);
if(*current_cmd!=NULL)
{
while(*current_cmd[0]==',')
(*current_cmd)++;
if(strncmp(*current_cmd,"C",1)==0)
{
(*current_cmd)+=1;
command='C';
}
else if(strncmp(*current_cmd,"H",1)==0)
{
(*current_cmd)+=1;
command='H';
}
else if(strncmp(*current_cmd,"S",1)==0)
{
(*current_cmd)+=1;
command='S';
}
else if(strncmp(*current_cmd,"N",1)==0)
{
(*current_cmd)+=1;
command='N';
}
else
{
command='Q';
}
}
else
command=wmenuSimple(stdscr,menuGeometry, default_option);
switch (command) {
case 'c':
case 'C':
{
int ok=0;
sprintf(def, "%u", disk_car->CHS.cylinder+1);
mvwaddstr(stdscr,COMMAND_LINE_Y, COMMAND_LINE_X, "Enter the number of cylinders: ");
if(*current_cmd!=NULL)
{
while(*current_cmd[0]==',')
(*current_cmd)++;
tmp_val = atoi(*current_cmd);
while(*current_cmd[0]!=',' && *current_cmd[0]!='\0')
(*current_cmd)++;
ok=1;
}
else
{
if (get_string(response, LINE_LENGTH, def) > 0) {
tmp_val = atoi(response);
ok=1;
}
}
if(ok>0)
{
if (tmp_val > 0) {
disk_car->CHS.cylinder = tmp_val-1;
modified=1;
} else
wdoprintf(stdscr,"Illegal cylinders value");
}
default_option=1;
}
break;
case 'h':
case 'H':
{
int ok=0;
sprintf(def, "%u", disk_car->CHS.head+1);
mvwaddstr(stdscr,COMMAND_LINE_Y, COMMAND_LINE_X, "Enter the number of heads: ");
if(*current_cmd!=NULL)
{
while(*current_cmd[0]==',')
(*current_cmd)++;
tmp_val = atoi(*current_cmd);
while(*current_cmd[0]!=',' && *current_cmd[0]!='\0')
(*current_cmd)++;
ok=1;
}
else
{
if (get_string(response, LINE_LENGTH, def) > 0) {
tmp_val = atoi(response);
ok=1;
}
}
if(ok>0)
{
if (tmp_val > 0 && tmp_val <= MAX_HEADS) {
disk_car->CHS.head = tmp_val-1;
if(modified==0)
{ /* Round up */
disk_car->CHS.cylinder=(((disk_car->disk_size/disk_car->sector_size+disk_car->CHS.head)/(disk_car->CHS.head+1))+disk_car->CHS.sector-1)/disk_car->CHS.sector-1;
}
} else
wdoprintf(stdscr,"Illegal heads value");
}
default_option=2;
}
break;
case 's':
case 'S':
{
int ok=0;
sprintf(def, "%u", disk_car->CHS.sector);
mvwaddstr(stdscr,COMMAND_LINE_Y, COMMAND_LINE_X, "Enter the number of sectors per track (1-63): ");
if(*current_cmd!=NULL)
{
while(*current_cmd[0]==',')
(*current_cmd)++;
tmp_val = atoi(*current_cmd);
while(*current_cmd[0]!=',' && *current_cmd[0]!='\0')
(*current_cmd)++;
ok=1;
}
else
{
if (get_string(response, LINE_LENGTH, def) > 0) {
tmp_val = atoi(response);
ok=1;
}
}
if(ok>0)
{
/* SUN partition can have more than 63 sectors */
if (tmp_val > 0) {
disk_car->CHS.sector = tmp_val;
if(modified==0)
{
disk_car->CHS.cylinder=(disk_car->disk_size/disk_car->sector_size/(disk_car->CHS.head+1))/disk_car->CHS.sector-1;
}
} else
wdoprintf(stdscr,"Illegal sectors value");
}
default_option=3;
}
break;
case 'n':
case 'N':
{
int ok=0;
sprintf(def, "%u", disk_car->sector_size);
mvwaddstr(stdscr,COMMAND_LINE_Y, COMMAND_LINE_X, "Enter the sector size (512, 1024, 2048, 4096): ");
if(*current_cmd!=NULL)
{
while(*current_cmd[0]==',')
(*current_cmd)++;
tmp_val = atoi(*current_cmd);
while(*current_cmd[0]!=',' && *current_cmd[0]!='\0')
(*current_cmd)++;
ok=1;
}
else
{
if (get_string(response, LINE_LENGTH, def) > 0) {
tmp_val = atoi(response);
ok=1;
}
}
if(ok>0)
{
/* FIXME using 3*512=1536 as sector size and */
/* 63/3=21 for number of sectors is an easy way to test */
if (tmp_val==512 || tmp_val==1024 || tmp_val==2048 || tmp_val==4096 || tmp_val==3*512) {
disk_car->sector_size = tmp_val;
if(modified==0)
{
disk_car->CHS.cylinder=(disk_car->disk_size/disk_car->sector_size/(disk_car->CHS.head+1))/disk_car->CHS.sector-1;
}
} else
wdoprintf(stdscr,"Illegal sector size");
}
default_option=4;
}
break;
case key_ESC:
case 'q':
case 'Q':
done = TRUE;
break;
}
if(modified!=0)
disk_car->disk_size=(uint64_t)(disk_car->CHS.cylinder+1)*(disk_car->CHS.head+1)*disk_car->CHS.sector*disk_car->sector_size;
}
disk_car->disk_size=(uint64_t)(disk_car->CHS.cylinder+1)*(disk_car->CHS.head+1)*disk_car->CHS.sector*disk_car->sector_size;
#ifdef __APPLE__
/* On MacOSX if HD contains some bad sectors, the disk size may not be correctly detected */
disk_car->disk_real_size=disk_car->disk_size;
#endif
ecrit_rapport("New geometry\n%s sector_size=%u\n", disk_car->description(disk_car), disk_car->sector_size);
}
|