testdisk/src/sun.c

128 lines
4 KiB
C
Raw Normal View History

2007-10-29 22:38:52 +01:00
/*
File: sun.c
Copyright (C) 2004-2007 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>
2007-10-29 22:38:52 +01:00
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#include "types.h"
#include "common.h"
#include "sun.h"
#include "fnctdsk.h"
#include "log.h"
#include "log_part.h"
2007-10-29 22:38:52 +01:00
#define SUN_LABEL_MAGIC 0xDABE
#if !defined(SINGLE_PARTITION_TYPE) || defined(SINGLE_PARTITION_SUN)
2007-10-29 22:38:52 +01:00
extern const arch_fnct_t arch_sun;
#endif
2007-10-29 22:38:52 +01:00
2016-01-23 10:23:38 +01:00
static void set_sun_info_i386(partition_t *partition);
static int test_sun_i386(const disk_t *disk_car, const sun_partition_i386 *sunlabel, const partition_t *partition, const int verbose);
2007-10-29 22:38:52 +01:00
int check_sun_i386(disk_t *disk_car,partition_t *partition,const int verbose)
{
unsigned char *buffer=(unsigned char*)MALLOC(SUN_PARTITION_I386_SIZE);
2013-06-01 18:06:35 +02:00
const sun_partition_i386 *sunlabel=(const sun_partition_i386*)buffer;
if(disk_car->pread(disk_car, buffer, SUN_PARTITION_I386_SIZE, partition->part_offset + 0x200) != SUN_PARTITION_I386_SIZE)
2007-10-29 22:38:52 +01:00
{
free(buffer);
return 1;
}
2009-02-03 09:29:29 +01:00
if(test_sun_i386(disk_car, sunlabel, partition, verbose)!=0)
2007-10-29 22:38:52 +01:00
{
free(buffer);
return 1;
}
2009-02-03 09:29:29 +01:00
set_sun_info_i386(partition);
2007-10-29 22:38:52 +01:00
free(buffer);
return 0;
}
2016-01-23 10:23:38 +01:00
static int test_sun_i386(const disk_t *disk_car, const sun_partition_i386 *sunlabel, const partition_t *partition, const int verbose)
2007-10-29 22:38:52 +01:00
{
2016-01-23 10:23:38 +01:00
if ((le16(sunlabel->magic) != SUN_LABEL_MAGIC) ||
(le32(sunlabel->magic_start) != SUN_LABEL_MAGIC_START))
return 1;
if(verbose>0)
log_info("\nSUN Marker at %u/%u/%u\n",
offset2cylinder(disk_car,partition->part_offset),
offset2head(disk_car,partition->part_offset),
offset2sector(disk_car,partition->part_offset));
#if !defined(SINGLE_PARTITION_TYPE) || defined(SINGLE_PARTITION_SUN)
2007-10-29 22:38:52 +01:00
{
2016-01-23 10:23:38 +01:00
int i;
partition_t *new_partition=partition_new(NULL);
for(i=0;i<16;i++)
2007-10-29 22:38:52 +01:00
{
2016-01-23 10:23:38 +01:00
if (sunlabel->partitions[i].num_sectors > 0
&& sunlabel->partitions[i].id > 0)
// && sunlabel->partitions[i].id != WHOLE_DISK)
2007-10-29 22:38:52 +01:00
{
2016-01-23 10:23:38 +01:00
partition_reset(new_partition, &arch_sun);
new_partition->order=i;
new_partition->part_type_sun=sunlabel->partitions[i].id;
new_partition->part_offset=partition->part_offset+(uint64_t)le32(sunlabel->partitions[i].start_sector) * le16(sunlabel->sector_size);
new_partition->part_size=(uint64_t)le32(sunlabel->partitions[i].num_sectors) * le16(sunlabel->sector_size);
new_partition->status=STATUS_PRIM;
log_partition(disk_car,new_partition);
2007-10-29 22:38:52 +01:00
}
}
2016-01-23 10:23:38 +01:00
free(new_partition);
2007-10-29 22:38:52 +01:00
}
#endif
2016-01-23 10:23:38 +01:00
return 0;
2007-10-29 22:38:52 +01:00
}
2020-06-19 18:13:01 +02:00
int recover_sun_i386(const disk_t *disk_car, const sun_partition_i386 *sunlabel, partition_t *partition,const int verbose, const int dump_ind)
2007-10-29 22:38:52 +01:00
{
2009-02-03 09:29:29 +01:00
if(test_sun_i386(disk_car, sunlabel, partition, verbose)!=0)
2007-10-29 22:38:52 +01:00
return 1;
if(verbose>0 || dump_ind!=0)
{
log_info("\nrecover_sun\n");
if(dump_ind!=0)
{
dump_log(sunlabel,sizeof(*sunlabel));
}
}
partition->part_size=(uint64_t)le32(sunlabel->partitions[2].num_sectors) * le16(sunlabel->sector_size);
2009-02-03 09:29:29 +01:00
set_sun_info_i386(partition);
2007-10-29 22:38:52 +01:00
partition->part_type_i386 = P_SUN;
partition->part_type_gpt=GPT_ENT_TYPE_SOLARIS_ROOT;
return 0;
}
2016-01-23 10:23:38 +01:00
static void set_sun_info_i386(partition_t *partition)
2007-10-29 22:38:52 +01:00
{
2016-01-23 10:23:38 +01:00
partition->upart_type = UP_SUN;
2007-10-29 22:38:52 +01:00
partition->info[0]='\0';
partition->fsname[0]='\0';
}