2009-01-14 22:13:47 +01:00
|
|
|
/*
|
|
|
|
|
|
|
|
File: hiddenn.c
|
|
|
|
|
|
|
|
Copyright (C) 2008-2009 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
|
2009-06-12 08:42:45 +02:00
|
|
|
|
2020-11-01 13:29:29 +01:00
|
|
|
#if defined(__FRAMAC__) || defined(MAIN_photorec)
|
|
|
|
#undef HAVE_NCURSES
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_NCURSES
|
2009-06-12 08:42:45 +02:00
|
|
|
#include <stdio.h>
|
2009-01-14 22:13:47 +01:00
|
|
|
#include "types.h"
|
|
|
|
#include "common.h"
|
|
|
|
#include "intrf.h"
|
|
|
|
#include "intrfn.h"
|
|
|
|
#include "hiddenn.h"
|
|
|
|
|
|
|
|
#define INTER_DISK_X 0
|
|
|
|
#define INTER_DISK_Y 18
|
|
|
|
|
2011-03-05 18:59:26 +01:00
|
|
|
int interface_check_hidden_ncurses(disk_t *disk, const int hpa_dco)
|
2009-01-14 22:13:47 +01:00
|
|
|
{
|
|
|
|
static const struct MenuItem menuHidden[]=
|
|
|
|
{
|
2016-02-22 10:38:17 +01:00
|
|
|
{ 'C', "Continue", "Continue even if there is hidden data"},
|
2009-01-14 22:13:47 +01:00
|
|
|
{ 0,NULL,NULL}
|
|
|
|
};
|
|
|
|
unsigned int menu=0;
|
|
|
|
int car;
|
|
|
|
int line=8;
|
|
|
|
aff_copy(stdscr);
|
|
|
|
wmove(stdscr,4,0);
|
|
|
|
wprintw(stdscr,"%s\n",disk->description_short(disk));
|
|
|
|
wmove(stdscr,6,0);
|
|
|
|
wprintw(stdscr,"Hidden sectors are present.");
|
|
|
|
if(disk->sector_size!=0)
|
|
|
|
{
|
|
|
|
wmove(stdscr,line++,0);
|
|
|
|
wprintw(stdscr, "size %llu sectors\n", (long long unsigned)(disk->disk_real_size/disk->sector_size));
|
|
|
|
}
|
|
|
|
if(disk->user_max!=0)
|
|
|
|
{
|
|
|
|
wmove(stdscr,line++,0);
|
|
|
|
wprintw(stdscr, "user_max %llu sectors\n", (long long unsigned)disk->user_max);
|
|
|
|
}
|
|
|
|
if(disk->native_max!=0)
|
|
|
|
{
|
|
|
|
wmove(stdscr,line++,0);
|
|
|
|
wprintw(stdscr, "native_max %llu sectors\n", (long long unsigned)(disk->native_max+1));
|
|
|
|
}
|
|
|
|
if(disk->dco!=0)
|
|
|
|
{
|
|
|
|
wmove(stdscr,line++,0);
|
|
|
|
wprintw(stdscr, "dco %llu sectors\n", (long long unsigned)(disk->dco+1));
|
|
|
|
}
|
2011-03-05 18:59:26 +01:00
|
|
|
if(hpa_dco&1)
|
2009-01-14 22:13:47 +01:00
|
|
|
{
|
2011-03-05 18:59:26 +01:00
|
|
|
wmove(stdscr,line++,0);
|
|
|
|
wprintw(stdscr, "Host Protected Area (HPA) present.\n");
|
2009-01-14 22:13:47 +01:00
|
|
|
}
|
2011-03-05 18:59:26 +01:00
|
|
|
if(hpa_dco&2)
|
2009-01-14 22:13:47 +01:00
|
|
|
{
|
|
|
|
wmove(stdscr,line,0);
|
|
|
|
wprintw(stdscr, "Device Configuration Overlay (DCO) present.\n");
|
|
|
|
}
|
|
|
|
car= wmenuSelect_ext(stdscr, 23, INTER_DISK_Y, INTER_DISK_X, menuHidden, 10,
|
|
|
|
"CQ", MENU_VERT | MENU_VERT_WARN | MENU_BUTTON, &menu,NULL);
|
|
|
|
if(car=='c' || car=='C')
|
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif
|