2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2002-11-27 03:30:21 +05:30
|
|
|
/* fdisk.c -- Partition table manipulator for Linux.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1992 A. V. Le Blanc (LeBlanc@mcc.ac.uk)
|
2006-02-25 13:12:02 +05:30
|
|
|
* Copyright (C) 2001,2002 Vladimir Oleynik <dzo@simtreas.ru> (initial bb port)
|
2002-11-27 03:30:21 +05:30
|
|
|
*
|
2006-02-24 21:59:00 +05:30
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2002-11-27 03:30:21 +05:30
|
|
|
*/
|
|
|
|
|
2007-06-02 18:16:55 +05:30
|
|
|
#ifndef _LARGEFILE64_SOURCE
|
|
|
|
/* For lseek64 */
|
|
|
|
#define _LARGEFILE64_SOURCE
|
|
|
|
#endif
|
2002-11-27 03:30:21 +05:30
|
|
|
#include <assert.h> /* assert */
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
/* Looks like someone forgot to add this to config system */
|
|
|
|
#ifndef ENABLE_FEATURE_FDISK_BLKSIZE
|
|
|
|
# define ENABLE_FEATURE_FDISK_BLKSIZE 0
|
|
|
|
# define USE_FEATURE_FDISK_BLKSIZE(a)
|
|
|
|
#endif
|
|
|
|
|
2008-06-29 10:40:47 +05:30
|
|
|
#define DEFAULT_SECTOR_SIZE 512
|
|
|
|
#define DEFAULT_SECTOR_SIZE_STR "512"
|
|
|
|
#define MAX_SECTOR_SIZE 2048
|
|
|
|
#define SECTOR_SIZE 512 /* still used in osf/sgi/sun code */
|
|
|
|
#define MAXIMUM_PARTS 60
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2008-06-29 10:40:47 +05:30
|
|
|
#define ACTIVE_FLAG 0x80
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2008-06-29 10:40:47 +05:30
|
|
|
#define EXTENDED 0x05
|
|
|
|
#define WIN98_EXTENDED 0x0f
|
|
|
|
#define LINUX_PARTITION 0x81
|
|
|
|
#define LINUX_SWAP 0x82
|
|
|
|
#define LINUX_NATIVE 0x83
|
|
|
|
#define LINUX_EXTENDED 0x85
|
|
|
|
#define LINUX_LVM 0x8e
|
|
|
|
#define LINUX_RAID 0xfd
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2008-04-17 07:22:28 +05:30
|
|
|
|
|
|
|
enum {
|
|
|
|
OPT_b = 1 << 0,
|
|
|
|
OPT_C = 1 << 1,
|
|
|
|
OPT_H = 1 << 2,
|
|
|
|
OPT_l = 1 << 3,
|
|
|
|
OPT_S = 1 << 4,
|
|
|
|
OPT_u = 1 << 5,
|
|
|
|
OPT_s = (1 << 6) * ENABLE_FEATURE_FDISK_BLKSIZE,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-06-02 18:16:55 +05:30
|
|
|
/* Used for sector numbers. Today's disk sizes make it necessary */
|
|
|
|
typedef unsigned long long ullong;
|
|
|
|
|
2002-11-27 03:30:21 +05:30
|
|
|
struct hd_geometry {
|
2006-02-24 21:59:00 +05:30
|
|
|
unsigned char heads;
|
|
|
|
unsigned char sectors;
|
|
|
|
unsigned short cylinders;
|
|
|
|
unsigned long start;
|
2002-11-27 03:30:21 +05:30
|
|
|
};
|
|
|
|
|
2006-10-13 01:00:44 +05:30
|
|
|
#define HDIO_GETGEO 0x0301 /* get device geometry */
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2007-08-13 02:28:27 +05:30
|
|
|
static const char msg_building_new_label[] ALIGN1 =
|
2007-03-19 20:13:38 +05:30
|
|
|
"Building a new %s. Changes will remain in memory only,\n"
|
|
|
|
"until you decide to write them. After that the previous content\n"
|
|
|
|
"won't be recoverable.\n\n";
|
|
|
|
|
2007-08-13 02:28:27 +05:30
|
|
|
static const char msg_part_already_defined[] ALIGN1 =
|
2007-03-19 20:13:38 +05:30
|
|
|
"Partition %d is already defined, delete it before re-adding\n";
|
|
|
|
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
struct partition {
|
|
|
|
unsigned char boot_ind; /* 0x80 - active */
|
|
|
|
unsigned char head; /* starting head */
|
|
|
|
unsigned char sector; /* starting sector */
|
|
|
|
unsigned char cyl; /* starting cylinder */
|
2008-07-10 02:50:50 +05:30
|
|
|
unsigned char sys_ind; /* what partition type */
|
2002-11-27 03:30:21 +05:30
|
|
|
unsigned char end_head; /* end head */
|
|
|
|
unsigned char end_sector; /* end sector */
|
|
|
|
unsigned char end_cyl; /* end cylinder */
|
|
|
|
unsigned char start4[4]; /* starting sector counting from 0 */
|
|
|
|
unsigned char size4[4]; /* nr of sectors in partition */
|
2008-07-05 14:48:54 +05:30
|
|
|
} PACKED;
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2009-03-04 00:17:56 +05:30
|
|
|
static const char unable_to_open[] ALIGN1 = "can't open '%s'";
|
2008-07-21 19:16:54 +05:30
|
|
|
static const char unable_to_read[] ALIGN1 = "can't read from %s";
|
|
|
|
static const char unable_to_seek[] ALIGN1 = "can't seek on %s";
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2006-10-13 01:00:44 +05:30
|
|
|
enum label_type {
|
2008-04-17 05:42:10 +05:30
|
|
|
LABEL_DOS, LABEL_SUN, LABEL_SGI, LABEL_AIX, LABEL_OSF
|
2006-02-25 09:16:10 +05:30
|
|
|
};
|
2007-03-19 20:15:10 +05:30
|
|
|
|
2008-04-17 05:42:10 +05:30
|
|
|
#define LABEL_IS_DOS (LABEL_DOS == current_label_type)
|
2006-10-14 21:46:03 +05:30
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_SUN_LABEL
|
2008-04-17 05:42:10 +05:30
|
|
|
#define LABEL_IS_SUN (LABEL_SUN == current_label_type)
|
2006-10-14 21:46:03 +05:30
|
|
|
#define STATIC_SUN static
|
2006-10-13 01:00:44 +05:30
|
|
|
#else
|
|
|
|
#define LABEL_IS_SUN 0
|
2006-10-14 21:46:03 +05:30
|
|
|
#define STATIC_SUN extern
|
2006-10-13 01:00:44 +05:30
|
|
|
#endif
|
2006-10-14 21:46:03 +05:30
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_SGI_LABEL
|
2008-04-17 05:42:10 +05:30
|
|
|
#define LABEL_IS_SGI (LABEL_SGI == current_label_type)
|
2006-10-14 21:46:03 +05:30
|
|
|
#define STATIC_SGI static
|
2006-10-13 01:00:44 +05:30
|
|
|
#else
|
|
|
|
#define LABEL_IS_SGI 0
|
2006-10-14 21:46:03 +05:30
|
|
|
#define STATIC_SGI extern
|
2006-10-13 01:00:44 +05:30
|
|
|
#endif
|
2006-10-14 21:46:03 +05:30
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_AIX_LABEL
|
2008-04-17 05:42:10 +05:30
|
|
|
#define LABEL_IS_AIX (LABEL_AIX == current_label_type)
|
2006-10-14 21:46:03 +05:30
|
|
|
#define STATIC_AIX static
|
2006-10-13 01:00:44 +05:30
|
|
|
#else
|
|
|
|
#define LABEL_IS_AIX 0
|
2006-10-14 21:46:03 +05:30
|
|
|
#define STATIC_AIX extern
|
2006-10-13 01:00:44 +05:30
|
|
|
#endif
|
2006-10-14 21:46:03 +05:30
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_OSF_LABEL
|
2008-04-17 05:42:10 +05:30
|
|
|
#define LABEL_IS_OSF (LABEL_OSF == current_label_type)
|
2006-10-14 21:46:03 +05:30
|
|
|
#define STATIC_OSF static
|
2006-10-13 01:00:44 +05:30
|
|
|
#else
|
|
|
|
#define LABEL_IS_OSF 0
|
2006-10-14 21:46:03 +05:30
|
|
|
#define STATIC_OSF extern
|
2006-10-13 01:00:44 +05:30
|
|
|
#endif
|
2006-02-25 09:16:10 +05:30
|
|
|
|
2008-04-17 05:42:10 +05:30
|
|
|
enum action { OPEN_MAIN, TRY_ONLY, CREATE_EMPTY_DOS, CREATE_EMPTY_SUN };
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2007-12-16 22:52:33 +05:30
|
|
|
static void update_units(void);
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
2002-11-27 03:30:21 +05:30
|
|
|
static void change_units(void);
|
2003-01-04 17:26:06 +05:30
|
|
|
static void reread_partition_table(int leave);
|
|
|
|
static void delete_partition(int i);
|
2006-02-24 21:59:00 +05:30
|
|
|
static int get_partition(int warn, int max);
|
2007-03-19 20:13:38 +05:30
|
|
|
static void list_types(const char *const *sys);
|
2007-01-30 04:21:44 +05:30
|
|
|
static unsigned read_int(unsigned low, unsigned dflt, unsigned high, unsigned base, const char *mesg);
|
2003-01-04 17:26:06 +05:30
|
|
|
#endif
|
|
|
|
static const char *partition_type(unsigned char type);
|
|
|
|
static void get_geometry(void);
|
2008-03-17 14:34:04 +05:30
|
|
|
#if ENABLE_FEATURE_SUN_LABEL || ENABLE_FEATURE_FDISK_WRITABLE
|
2003-01-04 17:26:06 +05:30
|
|
|
static int get_boot(enum action what);
|
2008-03-17 14:34:04 +05:30
|
|
|
#else
|
|
|
|
static int get_boot(void);
|
|
|
|
#endif
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
#define PLURAL 0
|
|
|
|
#define SINGULAR 1
|
|
|
|
|
2006-12-20 02:02:02 +05:30
|
|
|
static unsigned get_start_sect(const struct partition *p);
|
|
|
|
static unsigned get_nr_sects(const struct partition *p);
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* per partition table entry data
|
|
|
|
*
|
|
|
|
* The four primary partitions have the same sectorbuffer (MBRbuffer)
|
|
|
|
* and have NULL ext_pointer.
|
|
|
|
* Each logical partition table entry has two pointers, one for the
|
|
|
|
* partition and one link to the next one.
|
|
|
|
*/
|
2007-03-18 20:12:45 +05:30
|
|
|
struct pte {
|
2002-11-27 03:30:21 +05:30
|
|
|
struct partition *part_table; /* points into sectorbuffer */
|
|
|
|
struct partition *ext_pointer; /* points into sectorbuffer */
|
2007-06-02 18:16:55 +05:30
|
|
|
ullong offset; /* disk sector number */
|
2007-03-19 20:15:10 +05:30
|
|
|
char *sectorbuffer; /* disk sector contents */
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
2002-11-27 03:30:21 +05:30
|
|
|
char changed; /* boolean */
|
2003-01-04 17:26:06 +05:30
|
|
|
#endif
|
2007-03-18 20:12:45 +05:30
|
|
|
};
|
|
|
|
|
2007-03-19 20:15:10 +05:30
|
|
|
/* DOS partition types */
|
|
|
|
|
|
|
|
static const char *const i386_sys_types[] = {
|
|
|
|
"\x00" "Empty",
|
|
|
|
"\x01" "FAT12",
|
|
|
|
"\x04" "FAT16 <32M",
|
|
|
|
"\x05" "Extended", /* DOS 3.3+ extended partition */
|
|
|
|
"\x06" "FAT16", /* DOS 16-bit >=32M */
|
|
|
|
"\x07" "HPFS/NTFS", /* OS/2 IFS, eg, HPFS or NTFS or QNX */
|
|
|
|
"\x0a" "OS/2 Boot Manager",/* OS/2 Boot Manager */
|
|
|
|
"\x0b" "Win95 FAT32",
|
|
|
|
"\x0c" "Win95 FAT32 (LBA)",/* LBA really is 'Extended Int 13h' */
|
|
|
|
"\x0e" "Win95 FAT16 (LBA)",
|
|
|
|
"\x0f" "Win95 Ext'd (LBA)",
|
|
|
|
"\x11" "Hidden FAT12",
|
|
|
|
"\x12" "Compaq diagnostics",
|
|
|
|
"\x14" "Hidden FAT16 <32M",
|
|
|
|
"\x16" "Hidden FAT16",
|
|
|
|
"\x17" "Hidden HPFS/NTFS",
|
|
|
|
"\x1b" "Hidden Win95 FAT32",
|
|
|
|
"\x1c" "Hidden W95 FAT32 (LBA)",
|
|
|
|
"\x1e" "Hidden W95 FAT16 (LBA)",
|
|
|
|
"\x3c" "Part.Magic recovery",
|
|
|
|
"\x41" "PPC PReP Boot",
|
|
|
|
"\x42" "SFS",
|
|
|
|
"\x63" "GNU HURD or SysV", /* GNU HURD or Mach or Sys V/386 (such as ISC UNIX) */
|
|
|
|
"\x80" "Old Minix", /* Minix 1.4a and earlier */
|
|
|
|
"\x81" "Minix / old Linux",/* Minix 1.4b and later */
|
|
|
|
"\x82" "Linux swap", /* also Solaris */
|
|
|
|
"\x83" "Linux",
|
|
|
|
"\x84" "OS/2 hidden C: drive",
|
|
|
|
"\x85" "Linux extended",
|
|
|
|
"\x86" "NTFS volume set",
|
|
|
|
"\x87" "NTFS volume set",
|
|
|
|
"\x8e" "Linux LVM",
|
|
|
|
"\x9f" "BSD/OS", /* BSDI */
|
|
|
|
"\xa0" "Thinkpad hibernation",
|
|
|
|
"\xa5" "FreeBSD", /* various BSD flavours */
|
|
|
|
"\xa6" "OpenBSD",
|
|
|
|
"\xa8" "Darwin UFS",
|
|
|
|
"\xa9" "NetBSD",
|
|
|
|
"\xab" "Darwin boot",
|
|
|
|
"\xb7" "BSDI fs",
|
|
|
|
"\xb8" "BSDI swap",
|
|
|
|
"\xbe" "Solaris boot",
|
|
|
|
"\xeb" "BeOS fs",
|
|
|
|
"\xee" "EFI GPT", /* Intel EFI GUID Partition Table */
|
|
|
|
"\xef" "EFI (FAT-12/16/32)", /* Intel EFI System Partition */
|
|
|
|
"\xf0" "Linux/PA-RISC boot", /* Linux/PA-RISC boot loader */
|
|
|
|
"\xf2" "DOS secondary", /* DOS 3.3+ secondary */
|
|
|
|
"\xfd" "Linux raid autodetect", /* New (2.2.x) raid partition with
|
|
|
|
autodetect using persistent
|
|
|
|
superblock */
|
|
|
|
#if 0 /* ENABLE_WEIRD_PARTITION_TYPES */
|
|
|
|
"\x02" "XENIX root",
|
|
|
|
"\x03" "XENIX usr",
|
|
|
|
"\x08" "AIX", /* AIX boot (AIX -- PS/2 port) or SplitDrive */
|
|
|
|
"\x09" "AIX bootable", /* AIX data or Coherent */
|
|
|
|
"\x10" "OPUS",
|
|
|
|
"\x18" "AST SmartSleep",
|
|
|
|
"\x24" "NEC DOS",
|
|
|
|
"\x39" "Plan 9",
|
|
|
|
"\x40" "Venix 80286",
|
|
|
|
"\x4d" "QNX4.x",
|
|
|
|
"\x4e" "QNX4.x 2nd part",
|
|
|
|
"\x4f" "QNX4.x 3rd part",
|
|
|
|
"\x50" "OnTrack DM",
|
|
|
|
"\x51" "OnTrack DM6 Aux1", /* (or Novell) */
|
|
|
|
"\x52" "CP/M", /* CP/M or Microport SysV/AT */
|
|
|
|
"\x53" "OnTrack DM6 Aux3",
|
|
|
|
"\x54" "OnTrackDM6",
|
|
|
|
"\x55" "EZ-Drive",
|
|
|
|
"\x56" "Golden Bow",
|
|
|
|
"\x5c" "Priam Edisk",
|
|
|
|
"\x61" "SpeedStor",
|
|
|
|
"\x64" "Novell Netware 286",
|
|
|
|
"\x65" "Novell Netware 386",
|
|
|
|
"\x70" "DiskSecure Multi-Boot",
|
|
|
|
"\x75" "PC/IX",
|
|
|
|
"\x93" "Amoeba",
|
|
|
|
"\x94" "Amoeba BBT", /* (bad block table) */
|
|
|
|
"\xa7" "NeXTSTEP",
|
|
|
|
"\xbb" "Boot Wizard hidden",
|
|
|
|
"\xc1" "DRDOS/sec (FAT-12)",
|
|
|
|
"\xc4" "DRDOS/sec (FAT-16 < 32M)",
|
|
|
|
"\xc6" "DRDOS/sec (FAT-16)",
|
|
|
|
"\xc7" "Syrinx",
|
|
|
|
"\xda" "Non-FS data",
|
|
|
|
"\xdb" "CP/M / CTOS / ...",/* CP/M or Concurrent CP/M or
|
|
|
|
Concurrent DOS or CTOS */
|
|
|
|
"\xde" "Dell Utility", /* Dell PowerEdge Server utilities */
|
|
|
|
"\xdf" "BootIt", /* BootIt EMBRM */
|
|
|
|
"\xe1" "DOS access", /* DOS access or SpeedStor 12-bit FAT
|
|
|
|
extended partition */
|
|
|
|
"\xe3" "DOS R/O", /* DOS R/O or SpeedStor */
|
|
|
|
"\xe4" "SpeedStor", /* SpeedStor 16-bit FAT extended
|
|
|
|
partition < 1024 cyl. */
|
|
|
|
"\xf1" "SpeedStor",
|
|
|
|
"\xf4" "SpeedStor", /* SpeedStor large partition */
|
|
|
|
"\xfe" "LANstep", /* SpeedStor >1024 cyl. or LANstep */
|
|
|
|
"\xff" "BBT", /* Xenix Bad Block Table */
|
|
|
|
#endif
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2008-04-17 05:42:10 +05:30
|
|
|
enum {
|
|
|
|
dev_fd = 3 /* the disk */
|
|
|
|
};
|
2007-03-19 20:15:10 +05:30
|
|
|
|
|
|
|
/* Globals */
|
2007-03-18 20:12:45 +05:30
|
|
|
struct globals {
|
2007-03-19 20:15:10 +05:30
|
|
|
char *line_ptr;
|
2007-12-16 22:52:33 +05:30
|
|
|
|
|
|
|
const char *disk_device;
|
|
|
|
int g_partitions; // = 4; /* maximum partition + 1 */
|
|
|
|
unsigned units_per_sector; // = 1;
|
|
|
|
unsigned sector_size; // = DEFAULT_SECTOR_SIZE;
|
|
|
|
unsigned user_set_sector_size;
|
|
|
|
unsigned sector_offset; // = 1;
|
|
|
|
unsigned g_heads, g_sectors, g_cylinders;
|
2008-06-29 10:40:47 +05:30
|
|
|
smallint /* enum label_type */ current_label_type;
|
2007-12-16 22:52:33 +05:30
|
|
|
smallint display_in_cyl_units; // = 1;
|
|
|
|
#if ENABLE_FEATURE_OSF_LABEL
|
|
|
|
smallint possibly_osf_label;
|
|
|
|
#endif
|
|
|
|
|
2008-06-29 10:40:47 +05:30
|
|
|
smallint listing; /* no aborts for fdisk -l */
|
|
|
|
smallint dos_compatible_flag; // = 1;
|
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
|
|
|
//int dos_changed;
|
|
|
|
smallint nowarn; /* no warnings for fdisk -l/-s */
|
|
|
|
#endif
|
|
|
|
int ext_index; /* the prime extended partition */
|
|
|
|
unsigned user_cylinders, user_heads, user_sectors;
|
|
|
|
unsigned pt_heads, pt_sectors;
|
|
|
|
unsigned kern_heads, kern_sectors;
|
|
|
|
ullong extended_offset; /* offset of link pointers */
|
|
|
|
ullong total_number_of_sectors;
|
|
|
|
|
2007-12-16 22:52:33 +05:30
|
|
|
jmp_buf listingbuf;
|
2007-03-19 20:15:10 +05:30
|
|
|
char line_buffer[80];
|
|
|
|
char partname_buffer[80];
|
2007-03-18 20:12:45 +05:30
|
|
|
/* Raw disk label. For DOS-type partition tables the MBR,
|
|
|
|
* with descriptions of the primary partitions. */
|
|
|
|
char MBRbuffer[MAX_SECTOR_SIZE];
|
|
|
|
/* Partition tables */
|
|
|
|
struct pte ptes[MAXIMUM_PARTS];
|
|
|
|
};
|
2007-03-19 20:15:10 +05:30
|
|
|
#define G (*ptr_to_globals)
|
2008-06-29 10:46:45 +05:30
|
|
|
#define line_ptr (G.line_ptr )
|
2007-12-16 22:52:33 +05:30
|
|
|
#define disk_device (G.disk_device )
|
|
|
|
#define g_partitions (G.g_partitions )
|
|
|
|
#define units_per_sector (G.units_per_sector )
|
|
|
|
#define sector_size (G.sector_size )
|
|
|
|
#define user_set_sector_size (G.user_set_sector_size)
|
|
|
|
#define sector_offset (G.sector_offset )
|
|
|
|
#define g_heads (G.g_heads )
|
|
|
|
#define g_sectors (G.g_sectors )
|
|
|
|
#define g_cylinders (G.g_cylinders )
|
|
|
|
#define current_label_type (G.current_label_type )
|
|
|
|
#define display_in_cyl_units (G.display_in_cyl_units)
|
|
|
|
#define possibly_osf_label (G.possibly_osf_label )
|
2008-06-29 10:40:47 +05:30
|
|
|
#define listing (G.listing )
|
|
|
|
#define dos_compatible_flag (G.dos_compatible_flag )
|
|
|
|
#define nowarn (G.nowarn )
|
|
|
|
#define ext_index (G.ext_index )
|
|
|
|
#define user_cylinders (G.user_cylinders )
|
|
|
|
#define user_heads (G.user_heads )
|
|
|
|
#define user_sectors (G.user_sectors )
|
|
|
|
#define pt_heads (G.pt_heads )
|
|
|
|
#define pt_sectors (G.pt_sectors )
|
|
|
|
#define kern_heads (G.kern_heads )
|
|
|
|
#define kern_sectors (G.kern_sectors )
|
|
|
|
#define extended_offset (G.extended_offset )
|
|
|
|
#define total_number_of_sectors (G.total_number_of_sectors)
|
2008-06-29 10:46:45 +05:30
|
|
|
#define listingbuf (G.listingbuf )
|
|
|
|
#define line_buffer (G.line_buffer )
|
2007-03-19 20:15:10 +05:30
|
|
|
#define partname_buffer (G.partname_buffer)
|
2008-06-29 10:46:45 +05:30
|
|
|
#define MBRbuffer (G.MBRbuffer )
|
|
|
|
#define ptes (G.ptes )
|
2007-12-16 22:52:33 +05:30
|
|
|
#define INIT_G() do { \
|
2008-02-28 00:11:59 +05:30
|
|
|
SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
|
2007-12-16 22:52:33 +05:30
|
|
|
sector_size = DEFAULT_SECTOR_SIZE; \
|
|
|
|
sector_offset = 1; \
|
|
|
|
g_partitions = 4; \
|
|
|
|
display_in_cyl_units = 1; \
|
|
|
|
units_per_sector = 1; \
|
2008-06-29 10:40:47 +05:30
|
|
|
dos_compatible_flag = 1; \
|
2007-12-16 22:52:33 +05:30
|
|
|
} while (0)
|
2007-03-19 20:15:10 +05:30
|
|
|
|
|
|
|
|
2008-03-17 14:12:43 +05:30
|
|
|
/* TODO: move to libbb? */
|
2008-04-17 05:42:10 +05:30
|
|
|
static ullong bb_BLKGETSIZE_sectors(int fd)
|
2008-03-17 14:12:43 +05:30
|
|
|
{
|
|
|
|
uint64_t v64;
|
|
|
|
unsigned long longsectors;
|
|
|
|
|
|
|
|
if (ioctl(fd, BLKGETSIZE64, &v64) == 0) {
|
2008-06-29 10:46:45 +05:30
|
|
|
/* Got bytes, convert to 512 byte sectors */
|
2008-03-17 14:12:43 +05:30
|
|
|
return (v64 >> 9);
|
|
|
|
}
|
|
|
|
/* Needs temp of type long */
|
|
|
|
if (ioctl(fd, BLKGETSIZE, &longsectors))
|
|
|
|
longsectors = 0;
|
|
|
|
return longsectors;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-19 20:15:10 +05:30
|
|
|
#define IS_EXTENDED(i) \
|
|
|
|
((i) == EXTENDED || (i) == WIN98_EXTENDED || (i) == LINUX_EXTENDED)
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2007-03-19 20:15:10 +05:30
|
|
|
#define cround(n) (display_in_cyl_units ? ((n)/units_per_sector)+1 : (n))
|
|
|
|
|
|
|
|
#define scround(x) (((x)+units_per_sector-1)/units_per_sector)
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2007-03-19 20:15:10 +05:30
|
|
|
#define pt_offset(b, n) \
|
|
|
|
((struct partition *)((b) + 0x1be + (n) * sizeof(struct partition)))
|
|
|
|
|
|
|
|
#define sector(s) ((s) & 0x3f)
|
|
|
|
|
|
|
|
#define cylinder(s, c) ((c) | (((s) & 0xc0) << 2))
|
|
|
|
|
|
|
|
#define hsc2sector(h,s,c) \
|
|
|
|
(sector(s) - 1 + sectors * ((h) + heads * cylinder(s,c)))
|
|
|
|
|
|
|
|
#define set_hsc(h,s,c,sector) \
|
|
|
|
do { \
|
2007-12-16 22:52:33 +05:30
|
|
|
s = sector % g_sectors + 1; \
|
|
|
|
sector /= g_sectors; \
|
|
|
|
h = sector % g_heads; \
|
|
|
|
sector /= g_heads; \
|
|
|
|
c = sector & 0xff; \
|
|
|
|
s |= (sector >> 2) & 0xc0; \
|
2007-03-19 20:15:10 +05:30
|
|
|
} while (0)
|
|
|
|
|
2008-04-17 07:22:28 +05:30
|
|
|
static void
|
|
|
|
close_dev_fd(void)
|
|
|
|
{
|
|
|
|
/* Not really closing, but making sure it is open, and to harmless place */
|
|
|
|
xmove_fd(xopen(bb_dev_null, O_RDONLY), dev_fd);
|
|
|
|
}
|
|
|
|
|
2007-03-23 03:52:10 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
2008-06-29 10:46:45 +05:30
|
|
|
/* Read line; return 0 or first printable char */
|
2007-03-19 20:15:10 +05:30
|
|
|
static int
|
|
|
|
read_line(const char *prompt)
|
|
|
|
{
|
|
|
|
int sz;
|
|
|
|
|
|
|
|
sz = read_line_input(prompt, line_buffer, sizeof(line_buffer), NULL);
|
|
|
|
if (sz <= 0)
|
2008-05-19 14:59:47 +05:30
|
|
|
exit(EXIT_SUCCESS); /* Ctrl-D or Ctrl-C */
|
2007-03-19 20:15:10 +05:30
|
|
|
|
|
|
|
if (line_buffer[sz-1] == '\n')
|
|
|
|
line_buffer[--sz] = '\0';
|
|
|
|
|
|
|
|
line_ptr = line_buffer;
|
|
|
|
while (*line_ptr && !isgraph(*line_ptr))
|
|
|
|
line_ptr++;
|
|
|
|
return *line_ptr;
|
|
|
|
}
|
2007-03-23 03:52:10 +05:30
|
|
|
#endif
|
2007-03-19 20:13:38 +05:30
|
|
|
|
|
|
|
/*
|
2008-06-29 10:46:45 +05:30
|
|
|
* Return partition name - uses static storage
|
2007-03-19 20:13:38 +05:30
|
|
|
*/
|
|
|
|
static const char *
|
|
|
|
partname(const char *dev, int pno, int lth)
|
|
|
|
{
|
|
|
|
const char *p;
|
|
|
|
int w, wp;
|
|
|
|
int bufsiz;
|
|
|
|
char *bufp;
|
|
|
|
|
2007-03-19 20:15:10 +05:30
|
|
|
bufp = partname_buffer;
|
|
|
|
bufsiz = sizeof(partname_buffer);
|
2007-03-19 20:13:38 +05:30
|
|
|
|
|
|
|
w = strlen(dev);
|
|
|
|
p = "";
|
|
|
|
|
|
|
|
if (isdigit(dev[w-1]))
|
|
|
|
p = "p";
|
|
|
|
|
|
|
|
/* devfs kludge - note: fdisk partition names are not supposed
|
|
|
|
to equal kernel names, so there is no reason to do this */
|
|
|
|
if (strcmp(dev + w - 4, "disc") == 0) {
|
|
|
|
w -= 4;
|
|
|
|
p = "part";
|
|
|
|
}
|
|
|
|
|
|
|
|
wp = strlen(p);
|
|
|
|
|
|
|
|
if (lth) {
|
|
|
|
snprintf(bufp, bufsiz, "%*.*s%s%-2u",
|
|
|
|
lth-wp-2, w, dev, p, pno);
|
|
|
|
} else {
|
|
|
|
snprintf(bufp, bufsiz, "%.*s%s%-2u", w, dev, p, pno);
|
|
|
|
}
|
|
|
|
return bufp;
|
|
|
|
}
|
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
2002-11-27 03:30:21 +05:30
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
set_all_unchanged(void)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < MAXIMUM_PARTS; i++)
|
|
|
|
ptes[i].changed = 0;
|
|
|
|
}
|
|
|
|
|
2007-06-13 02:24:54 +05:30
|
|
|
static ALWAYS_INLINE void
|
2006-02-24 21:59:00 +05:30
|
|
|
set_changed(int i)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
ptes[i].changed = 1;
|
|
|
|
}
|
2006-12-31 00:12:29 +05:30
|
|
|
#endif /* FEATURE_FDISK_WRITABLE */
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2007-06-13 02:24:54 +05:30
|
|
|
static ALWAYS_INLINE struct partition *
|
2006-02-24 21:59:00 +05:30
|
|
|
get_part_table(int i)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
return ptes[i].part_table;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *
|
2006-02-24 21:59:00 +05:30
|
|
|
str_units(int n)
|
|
|
|
{ /* n==1: use singular */
|
2002-11-27 03:30:21 +05:30
|
|
|
if (n == 1)
|
2007-03-19 20:13:38 +05:30
|
|
|
return display_in_cyl_units ? "cylinder" : "sector";
|
|
|
|
return display_in_cyl_units ? "cylinders" : "sectors";
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
|
2006-10-13 01:00:44 +05:30
|
|
|
static int
|
|
|
|
valid_part_table_flag(const char *mbuffer)
|
2006-02-24 21:59:00 +05:30
|
|
|
{
|
2006-11-29 17:30:28 +05:30
|
|
|
return (mbuffer[510] == 0x55 && (uint8_t)mbuffer[511] == 0xaa);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
2007-06-13 02:24:54 +05:30
|
|
|
static ALWAYS_INLINE void
|
2006-11-29 17:30:28 +05:30
|
|
|
write_part_table_flag(char *b)
|
|
|
|
{
|
|
|
|
b[510] = 0x55;
|
|
|
|
b[511] = 0xaa;
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
|
2006-10-13 01:00:44 +05:30
|
|
|
static char
|
|
|
|
read_nonempty(const char *mesg)
|
2006-02-24 21:59:00 +05:30
|
|
|
{
|
2008-07-10 02:50:50 +05:30
|
|
|
while (!read_line(mesg))
|
|
|
|
continue;
|
2006-10-13 01:00:44 +05:30
|
|
|
return *line_ptr;
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
|
2006-10-13 01:00:44 +05:30
|
|
|
static char
|
|
|
|
read_maybe_empty(const char *mesg)
|
2006-02-24 21:59:00 +05:30
|
|
|
{
|
2007-01-22 12:51:38 +05:30
|
|
|
if (!read_line(mesg)) {
|
2006-10-13 01:00:44 +05:30
|
|
|
line_ptr = line_buffer;
|
2007-01-22 12:51:38 +05:30
|
|
|
line_ptr[0] = '\n';
|
|
|
|
line_ptr[1] = '\0';
|
2006-10-13 01:00:44 +05:30
|
|
|
}
|
2007-01-22 12:51:38 +05:30
|
|
|
return line_ptr[0];
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
|
2006-10-13 01:00:44 +05:30
|
|
|
static int
|
2007-03-19 20:13:38 +05:30
|
|
|
read_hex(const char *const *sys)
|
2006-02-24 21:59:00 +05:30
|
|
|
{
|
2006-11-29 23:45:52 +05:30
|
|
|
unsigned long v;
|
2006-10-13 01:00:44 +05:30
|
|
|
while (1) {
|
2007-03-19 20:13:38 +05:30
|
|
|
read_nonempty("Hex code (type L to list codes): ");
|
2006-11-29 23:45:52 +05:30
|
|
|
if (*line_ptr == 'l' || *line_ptr == 'L') {
|
2006-10-13 01:00:44 +05:30
|
|
|
list_types(sys);
|
2006-11-29 23:45:52 +05:30
|
|
|
continue;
|
2006-10-13 01:00:44 +05:30
|
|
|
}
|
2006-11-29 23:45:52 +05:30
|
|
|
v = bb_strtoul(line_ptr, NULL, 16);
|
2006-12-20 02:02:02 +05:30
|
|
|
if (v > 0xff)
|
|
|
|
/* Bad input also triggers this */
|
|
|
|
continue;
|
2006-11-29 23:45:52 +05:30
|
|
|
return v;
|
2006-10-13 01:00:44 +05:30
|
|
|
}
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
2006-12-31 00:12:29 +05:30
|
|
|
#endif /* FEATURE_FDISK_WRITABLE */
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2008-07-10 02:50:50 +05:30
|
|
|
static void fdisk_fatal(const char *why)
|
|
|
|
{
|
|
|
|
if (listing) {
|
|
|
|
close_dev_fd();
|
|
|
|
longjmp(listingbuf, 1);
|
|
|
|
}
|
|
|
|
bb_error_msg_and_die(why, disk_device);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
seek_sector(ullong secno)
|
|
|
|
{
|
|
|
|
secno *= sector_size;
|
|
|
|
#if ENABLE_FDISK_SUPPORT_LARGE_DISKS
|
|
|
|
if (lseek64(dev_fd, (off64_t)secno, SEEK_SET) == (off64_t) -1)
|
|
|
|
fdisk_fatal(unable_to_seek);
|
|
|
|
#else
|
|
|
|
if (secno > MAXINT(off_t)
|
|
|
|
|| lseek(dev_fd, (off_t)secno, SEEK_SET) == (off_t) -1
|
|
|
|
) {
|
|
|
|
fdisk_fatal(unable_to_seek);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
|
|
|
static void
|
|
|
|
write_sector(ullong secno, const void *buf)
|
|
|
|
{
|
|
|
|
seek_sector(secno);
|
|
|
|
xwrite(dev_fd, buf, sector_size);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2006-10-13 01:00:44 +05:30
|
|
|
#include "fdisk_aix.c"
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
unsigned char info[128]; /* Informative text string */
|
|
|
|
unsigned char spare0[14];
|
|
|
|
struct sun_info {
|
|
|
|
unsigned char spare1;
|
|
|
|
unsigned char id;
|
|
|
|
unsigned char spare2;
|
|
|
|
unsigned char flags;
|
|
|
|
} infos[8];
|
|
|
|
unsigned char spare1[246]; /* Boot information etc. */
|
|
|
|
unsigned short rspeed; /* Disk rotational speed */
|
|
|
|
unsigned short pcylcount; /* Physical cylinder count */
|
|
|
|
unsigned short sparecyl; /* extra sects per cylinder */
|
|
|
|
unsigned char spare2[4]; /* More magic... */
|
|
|
|
unsigned short ilfact; /* Interleave factor */
|
|
|
|
unsigned short ncyl; /* Data cylinder count */
|
|
|
|
unsigned short nacyl; /* Alt. cylinder count */
|
|
|
|
unsigned short ntrks; /* Tracks per cylinder */
|
|
|
|
unsigned short nsect; /* Sectors per track */
|
|
|
|
unsigned char spare3[4]; /* Even more magic... */
|
|
|
|
struct sun_partinfo {
|
|
|
|
uint32_t start_cylinder;
|
|
|
|
uint32_t num_sectors;
|
|
|
|
} partitions[8];
|
|
|
|
unsigned short magic; /* Magic number */
|
|
|
|
unsigned short csum; /* Label xor'd checksum */
|
|
|
|
} sun_partition;
|
|
|
|
#define sunlabel ((sun_partition *)MBRbuffer)
|
2006-10-14 21:46:03 +05:30
|
|
|
STATIC_OSF void bsd_select(void);
|
|
|
|
STATIC_OSF void xbsd_print_disklabel(int);
|
2006-10-13 01:00:44 +05:30
|
|
|
#include "fdisk_osf.c"
|
|
|
|
|
2006-12-20 02:02:02 +05:30
|
|
|
#if ENABLE_FEATURE_SGI_LABEL || ENABLE_FEATURE_SUN_LABEL
|
2006-11-27 22:18:17 +05:30
|
|
|
static uint16_t
|
2006-12-20 02:02:02 +05:30
|
|
|
fdisk_swap16(uint16_t x)
|
2006-02-24 21:59:00 +05:30
|
|
|
{
|
2006-11-27 22:18:17 +05:30
|
|
|
return (x << 8) | (x >> 8);
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
|
2006-10-13 01:00:44 +05:30
|
|
|
static uint32_t
|
2006-12-20 02:02:02 +05:30
|
|
|
fdisk_swap32(uint32_t x)
|
2006-02-24 21:59:00 +05:30
|
|
|
{
|
2006-11-27 22:18:17 +05:30
|
|
|
return (x << 24) |
|
|
|
|
((x & 0xFF00) << 8) |
|
|
|
|
((x & 0xFF0000) >> 8) |
|
|
|
|
(x >> 24);
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
2006-10-13 01:00:44 +05:30
|
|
|
#endif
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2007-03-19 20:13:38 +05:30
|
|
|
STATIC_SGI const char *const sgi_sys_types[];
|
2006-11-29 17:30:28 +05:30
|
|
|
STATIC_SGI unsigned sgi_get_num_sectors(int i);
|
2006-10-14 21:46:03 +05:30
|
|
|
STATIC_SGI int sgi_get_sysid(int i);
|
|
|
|
STATIC_SGI void sgi_delete_partition(int i);
|
|
|
|
STATIC_SGI void sgi_change_sysid(int i, int sys);
|
|
|
|
STATIC_SGI void sgi_list_table(int xtra);
|
2006-12-31 00:12:29 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_ADVANCED
|
2006-10-14 21:46:03 +05:30
|
|
|
STATIC_SGI void sgi_set_xcyl(void);
|
2006-12-31 00:12:29 +05:30
|
|
|
#endif
|
2006-10-14 21:46:03 +05:30
|
|
|
STATIC_SGI int verify_sgi(int verbose);
|
|
|
|
STATIC_SGI void sgi_add_partition(int n, int sys);
|
|
|
|
STATIC_SGI void sgi_set_swappartition(int i);
|
|
|
|
STATIC_SGI const char *sgi_get_bootfile(void);
|
|
|
|
STATIC_SGI void sgi_set_bootfile(const char* aFile);
|
|
|
|
STATIC_SGI void create_sgiinfo(void);
|
|
|
|
STATIC_SGI void sgi_write_table(void);
|
|
|
|
STATIC_SGI void sgi_set_bootpartition(int i);
|
2006-10-13 01:00:44 +05:30
|
|
|
#include "fdisk_sgi.c"
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2007-03-19 20:13:38 +05:30
|
|
|
STATIC_SUN const char *const sun_sys_types[];
|
2006-10-14 21:46:03 +05:30
|
|
|
STATIC_SUN void sun_delete_partition(int i);
|
|
|
|
STATIC_SUN void sun_change_sysid(int i, int sys);
|
|
|
|
STATIC_SUN void sun_list_table(int xtra);
|
|
|
|
STATIC_SUN void add_sun_partition(int n, int sys);
|
2006-12-31 00:12:29 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_ADVANCED
|
2006-10-14 21:46:03 +05:30
|
|
|
STATIC_SUN void sun_set_alt_cyl(void);
|
|
|
|
STATIC_SUN void sun_set_ncyl(int cyl);
|
|
|
|
STATIC_SUN void sun_set_xcyl(void);
|
|
|
|
STATIC_SUN void sun_set_ilfact(void);
|
|
|
|
STATIC_SUN void sun_set_rspeed(void);
|
|
|
|
STATIC_SUN void sun_set_pcylcount(void);
|
2006-12-31 00:12:29 +05:30
|
|
|
#endif
|
2006-10-14 21:46:03 +05:30
|
|
|
STATIC_SUN void toggle_sunflags(int i, unsigned char mask);
|
|
|
|
STATIC_SUN void verify_sun(void);
|
|
|
|
STATIC_SUN void sun_write_table(void);
|
2006-10-13 01:00:44 +05:30
|
|
|
#include "fdisk_sun.c"
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2008-07-10 02:50:50 +05:30
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
2002-11-27 03:30:21 +05:30
|
|
|
/* start_sect and nr_sects are stored little endian on all machines */
|
|
|
|
/* moreover, they are not aligned correctly */
|
|
|
|
static void
|
2006-11-29 17:30:28 +05:30
|
|
|
store4_little_endian(unsigned char *cp, unsigned val)
|
2006-02-24 21:59:00 +05:30
|
|
|
{
|
2006-11-29 17:30:28 +05:30
|
|
|
cp[0] = val;
|
|
|
|
cp[1] = val >> 8;
|
|
|
|
cp[2] = val >> 16;
|
|
|
|
cp[3] = val >> 24;
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
2006-12-31 00:12:29 +05:30
|
|
|
#endif /* FEATURE_FDISK_WRITABLE */
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
static unsigned
|
2006-02-24 21:59:00 +05:30
|
|
|
read4_little_endian(const unsigned char *cp)
|
|
|
|
{
|
2006-11-29 17:30:28 +05:30
|
|
|
return cp[0] + (cp[1] << 8) + (cp[2] << 16) + (cp[3] << 24);
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
2002-11-27 03:30:21 +05:30
|
|
|
static void
|
2006-11-29 17:30:28 +05:30
|
|
|
set_start_sect(struct partition *p, unsigned start_sect)
|
2006-02-24 21:59:00 +05:30
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
store4_little_endian(p->start4, start_sect);
|
|
|
|
}
|
2003-01-04 17:26:06 +05:30
|
|
|
#endif
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2006-12-20 02:02:02 +05:30
|
|
|
static unsigned
|
2006-02-24 21:59:00 +05:30
|
|
|
get_start_sect(const struct partition *p)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
return read4_little_endian(p->start4);
|
|
|
|
}
|
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
2002-11-27 03:30:21 +05:30
|
|
|
static void
|
2006-12-20 02:02:02 +05:30
|
|
|
set_nr_sects(struct partition *p, unsigned nr_sects)
|
2006-02-24 21:59:00 +05:30
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
store4_little_endian(p->size4, nr_sects);
|
|
|
|
}
|
2003-01-04 17:26:06 +05:30
|
|
|
#endif
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2006-12-20 02:02:02 +05:30
|
|
|
static unsigned
|
2006-02-24 21:59:00 +05:30
|
|
|
get_nr_sects(const struct partition *p)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
return read4_little_endian(p->size4);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate a buffer and read a partition table sector */
|
|
|
|
static void
|
2007-06-02 18:16:55 +05:30
|
|
|
read_pte(struct pte *pe, ullong offset)
|
2006-02-24 21:59:00 +05:30
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
pe->offset = offset;
|
2008-06-29 10:40:47 +05:30
|
|
|
pe->sectorbuffer = xzalloc(sector_size);
|
2003-01-04 17:26:06 +05:30
|
|
|
seek_sector(offset);
|
2008-06-29 10:40:47 +05:30
|
|
|
/* xread would make us abort - bad for fdisk -l */
|
|
|
|
if (full_read(dev_fd, pe->sectorbuffer, sector_size) != sector_size)
|
2003-01-04 17:26:06 +05:30
|
|
|
fdisk_fatal(unable_to_read);
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
2002-11-27 03:30:21 +05:30
|
|
|
pe->changed = 0;
|
2003-01-04 17:26:06 +05:30
|
|
|
#endif
|
2002-11-27 03:30:21 +05:30
|
|
|
pe->part_table = pe->ext_pointer = NULL;
|
|
|
|
}
|
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
static unsigned
|
2006-02-24 21:59:00 +05:30
|
|
|
get_partition_start(const struct pte *pe)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
return pe->offset + get_start_sect(pe->part_table);
|
|
|
|
}
|
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
2002-11-27 03:30:21 +05:30
|
|
|
/*
|
|
|
|
* Avoid warning about DOS partitions when no DOS partition was changed.
|
|
|
|
* Here a heuristic "is probably dos partition".
|
|
|
|
* We might also do the opposite and warn in all cases except
|
|
|
|
* for "is probably nondos partition".
|
|
|
|
*/
|
2008-01-26 01:48:46 +05:30
|
|
|
#ifdef UNUSED
|
2002-11-27 03:30:21 +05:30
|
|
|
static int
|
2006-02-24 21:59:00 +05:30
|
|
|
is_dos_partition(int t)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
return (t == 1 || t == 4 || t == 6 ||
|
|
|
|
t == 0x0b || t == 0x0c || t == 0x0e ||
|
|
|
|
t == 0x11 || t == 0x12 || t == 0x14 || t == 0x16 ||
|
|
|
|
t == 0x1b || t == 0x1c || t == 0x1e || t == 0x24 ||
|
|
|
|
t == 0xc1 || t == 0xc4 || t == 0xc6);
|
|
|
|
}
|
2008-01-26 01:48:46 +05:30
|
|
|
#endif
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
menu(void)
|
|
|
|
{
|
2007-03-19 20:13:38 +05:30
|
|
|
puts("Command Action");
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_SUN) {
|
2007-03-19 20:13:38 +05:30
|
|
|
puts("a\ttoggle a read only flag"); /* sun */
|
|
|
|
puts("b\tedit bsd disklabel");
|
|
|
|
puts("c\ttoggle the mountable flag"); /* sun */
|
|
|
|
puts("d\tdelete a partition");
|
|
|
|
puts("l\tlist known partition types");
|
|
|
|
puts("n\tadd a new partition");
|
|
|
|
puts("o\tcreate a new empty DOS partition table");
|
|
|
|
puts("p\tprint the partition table");
|
|
|
|
puts("q\tquit without saving changes");
|
|
|
|
puts("s\tcreate a new empty Sun disklabel"); /* sun */
|
|
|
|
puts("t\tchange a partition's system id");
|
|
|
|
puts("u\tchange display/entry units");
|
|
|
|
puts("v\tverify the partition table");
|
|
|
|
puts("w\twrite table to disk and exit");
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_ADVANCED
|
2007-03-19 20:13:38 +05:30
|
|
|
puts("x\textra functionality (experts only)");
|
2002-11-27 03:30:21 +05:30
|
|
|
#endif
|
2007-01-22 12:51:38 +05:30
|
|
|
} else if (LABEL_IS_SGI) {
|
2007-03-19 20:13:38 +05:30
|
|
|
puts("a\tselect bootable partition"); /* sgi flavour */
|
|
|
|
puts("b\tedit bootfile entry"); /* sgi */
|
|
|
|
puts("c\tselect sgi swap partition"); /* sgi flavour */
|
|
|
|
puts("d\tdelete a partition");
|
|
|
|
puts("l\tlist known partition types");
|
|
|
|
puts("n\tadd a new partition");
|
|
|
|
puts("o\tcreate a new empty DOS partition table");
|
|
|
|
puts("p\tprint the partition table");
|
|
|
|
puts("q\tquit without saving changes");
|
|
|
|
puts("s\tcreate a new empty Sun disklabel"); /* sun */
|
|
|
|
puts("t\tchange a partition's system id");
|
|
|
|
puts("u\tchange display/entry units");
|
|
|
|
puts("v\tverify the partition table");
|
|
|
|
puts("w\twrite table to disk and exit");
|
2007-01-22 12:51:38 +05:30
|
|
|
} else if (LABEL_IS_AIX) {
|
2007-03-19 20:13:38 +05:30
|
|
|
puts("o\tcreate a new empty DOS partition table");
|
|
|
|
puts("q\tquit without saving changes");
|
|
|
|
puts("s\tcreate a new empty Sun disklabel"); /* sun */
|
2007-01-22 12:51:38 +05:30
|
|
|
} else {
|
2007-03-19 20:13:38 +05:30
|
|
|
puts("a\ttoggle a bootable flag");
|
|
|
|
puts("b\tedit bsd disklabel");
|
|
|
|
puts("c\ttoggle the dos compatibility flag");
|
|
|
|
puts("d\tdelete a partition");
|
|
|
|
puts("l\tlist known partition types");
|
|
|
|
puts("n\tadd a new partition");
|
|
|
|
puts("o\tcreate a new empty DOS partition table");
|
|
|
|
puts("p\tprint the partition table");
|
|
|
|
puts("q\tquit without saving changes");
|
|
|
|
puts("s\tcreate a new empty Sun disklabel"); /* sun */
|
|
|
|
puts("t\tchange a partition's system id");
|
|
|
|
puts("u\tchange display/entry units");
|
|
|
|
puts("v\tverify the partition table");
|
|
|
|
puts("w\twrite table to disk and exit");
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_ADVANCED
|
2007-03-19 20:13:38 +05:30
|
|
|
puts("x\textra functionality (experts only)");
|
2002-11-27 03:30:21 +05:30
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
2006-12-31 00:12:29 +05:30
|
|
|
#endif /* FEATURE_FDISK_WRITABLE */
|
2003-01-04 17:26:06 +05:30
|
|
|
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_ADVANCED
|
2002-11-27 03:30:21 +05:30
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
xmenu(void)
|
|
|
|
{
|
2007-03-19 20:13:38 +05:30
|
|
|
puts("Command Action");
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_SUN) {
|
2007-03-19 20:13:38 +05:30
|
|
|
puts("a\tchange number of alternate cylinders"); /*sun*/
|
|
|
|
puts("c\tchange number of cylinders");
|
|
|
|
puts("d\tprint the raw data in the partition table");
|
|
|
|
puts("e\tchange number of extra sectors per cylinder");/*sun*/
|
|
|
|
puts("h\tchange number of heads");
|
|
|
|
puts("i\tchange interleave factor"); /*sun*/
|
|
|
|
puts("o\tchange rotation speed (rpm)"); /*sun*/
|
|
|
|
puts("p\tprint the partition table");
|
|
|
|
puts("q\tquit without saving changes");
|
|
|
|
puts("r\treturn to main menu");
|
|
|
|
puts("s\tchange number of sectors/track");
|
|
|
|
puts("v\tverify the partition table");
|
|
|
|
puts("w\twrite table to disk and exit");
|
|
|
|
puts("y\tchange number of physical cylinders"); /*sun*/
|
2007-01-22 12:51:38 +05:30
|
|
|
} else if (LABEL_IS_SGI) {
|
2007-03-19 20:13:38 +05:30
|
|
|
puts("b\tmove beginning of data in a partition"); /* !sun */
|
|
|
|
puts("c\tchange number of cylinders");
|
|
|
|
puts("d\tprint the raw data in the partition table");
|
|
|
|
puts("e\tlist extended partitions"); /* !sun */
|
|
|
|
puts("g\tcreate an IRIX (SGI) partition table");/* sgi */
|
|
|
|
puts("h\tchange number of heads");
|
|
|
|
puts("p\tprint the partition table");
|
|
|
|
puts("q\tquit without saving changes");
|
|
|
|
puts("r\treturn to main menu");
|
|
|
|
puts("s\tchange number of sectors/track");
|
|
|
|
puts("v\tverify the partition table");
|
|
|
|
puts("w\twrite table to disk and exit");
|
2007-01-22 12:51:38 +05:30
|
|
|
} else if (LABEL_IS_AIX) {
|
2007-03-19 20:13:38 +05:30
|
|
|
puts("b\tmove beginning of data in a partition"); /* !sun */
|
|
|
|
puts("c\tchange number of cylinders");
|
|
|
|
puts("d\tprint the raw data in the partition table");
|
|
|
|
puts("e\tlist extended partitions"); /* !sun */
|
|
|
|
puts("g\tcreate an IRIX (SGI) partition table");/* sgi */
|
|
|
|
puts("h\tchange number of heads");
|
|
|
|
puts("p\tprint the partition table");
|
|
|
|
puts("q\tquit without saving changes");
|
|
|
|
puts("r\treturn to main menu");
|
|
|
|
puts("s\tchange number of sectors/track");
|
|
|
|
puts("v\tverify the partition table");
|
|
|
|
puts("w\twrite table to disk and exit");
|
2007-01-22 12:51:38 +05:30
|
|
|
} else {
|
2007-03-19 20:13:38 +05:30
|
|
|
puts("b\tmove beginning of data in a partition"); /* !sun */
|
|
|
|
puts("c\tchange number of cylinders");
|
|
|
|
puts("d\tprint the raw data in the partition table");
|
|
|
|
puts("e\tlist extended partitions"); /* !sun */
|
|
|
|
puts("f\tfix partition order"); /* !sun, !aix, !sgi */
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_SGI_LABEL
|
2007-03-19 20:13:38 +05:30
|
|
|
puts("g\tcreate an IRIX (SGI) partition table");/* sgi */
|
2006-02-24 21:59:00 +05:30
|
|
|
#endif
|
2007-03-19 20:13:38 +05:30
|
|
|
puts("h\tchange number of heads");
|
|
|
|
puts("p\tprint the partition table");
|
|
|
|
puts("q\tquit without saving changes");
|
|
|
|
puts("r\treturn to main menu");
|
|
|
|
puts("s\tchange number of sectors/track");
|
|
|
|
puts("v\tverify the partition table");
|
|
|
|
puts("w\twrite table to disk and exit");
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* ADVANCED mode */
|
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
2007-03-19 20:13:38 +05:30
|
|
|
static const char *const *
|
2006-02-24 21:59:00 +05:30
|
|
|
get_sys_types(void)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
return (
|
2006-10-13 01:00:44 +05:30
|
|
|
LABEL_IS_SUN ? sun_sys_types :
|
|
|
|
LABEL_IS_SGI ? sgi_sys_types :
|
2002-11-27 03:30:21 +05:30
|
|
|
i386_sys_types);
|
|
|
|
}
|
2003-01-04 17:26:06 +05:30
|
|
|
#else
|
|
|
|
#define get_sys_types() i386_sys_types
|
2006-12-31 00:12:29 +05:30
|
|
|
#endif /* FEATURE_FDISK_WRITABLE */
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2007-03-19 20:13:38 +05:30
|
|
|
static const char *
|
|
|
|
partition_type(unsigned char type)
|
2002-11-27 03:30:21 +05:30
|
|
|
{
|
|
|
|
int i;
|
2007-03-19 20:13:38 +05:30
|
|
|
const char *const *types = get_sys_types();
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2007-03-19 20:13:38 +05:30
|
|
|
for (i = 0; types[i]; i++)
|
|
|
|
if ((unsigned char)types[i][0] == type)
|
|
|
|
return types[i] + 1;
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2007-03-19 20:13:38 +05:30
|
|
|
return "Unknown";
|
2003-01-04 17:26:06 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
2003-01-04 17:26:06 +05:30
|
|
|
static int
|
2006-02-24 21:59:00 +05:30
|
|
|
get_sysid(int i)
|
|
|
|
{
|
2006-10-13 01:00:44 +05:30
|
|
|
return LABEL_IS_SUN ? sunlabel->infos[i].id :
|
|
|
|
(LABEL_IS_SGI ? sgi_get_sysid(i) :
|
|
|
|
ptes[i].part_table->sys_ind);
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
|
2007-03-19 20:13:38 +05:30
|
|
|
static void
|
|
|
|
list_types(const char *const *sys)
|
2002-11-27 03:30:21 +05:30
|
|
|
{
|
2007-01-22 12:51:38 +05:30
|
|
|
enum { COLS = 3 };
|
|
|
|
|
|
|
|
unsigned last[COLS];
|
|
|
|
unsigned done, next, size;
|
2002-11-27 03:30:21 +05:30
|
|
|
int i;
|
|
|
|
|
2008-07-10 02:50:50 +05:30
|
|
|
for (size = 0; sys[size]; size++)
|
|
|
|
continue;
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2007-01-22 12:51:38 +05:30
|
|
|
done = 0;
|
|
|
|
for (i = COLS-1; i >= 0; i--) {
|
|
|
|
done += (size + i - done) / (i + 1);
|
|
|
|
last[COLS-1 - i] = done;
|
|
|
|
}
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2007-01-22 12:51:38 +05:30
|
|
|
i = done = next = 0;
|
2002-11-27 03:30:21 +05:30
|
|
|
do {
|
2007-01-22 12:51:38 +05:30
|
|
|
printf("%c%2x %-22.22s", i ? ' ' : '\n',
|
2007-03-19 20:13:38 +05:30
|
|
|
(unsigned char)sys[next][0],
|
|
|
|
sys[next] + 1);
|
2002-11-27 03:30:21 +05:30
|
|
|
next = last[i++] + done;
|
2007-01-22 12:51:38 +05:30
|
|
|
if (i >= COLS || next >= last[i]) {
|
2002-11-27 03:30:21 +05:30
|
|
|
i = 0;
|
|
|
|
next = ++done;
|
|
|
|
}
|
|
|
|
} while (done < last[0]);
|
2007-09-27 15:50:47 +05:30
|
|
|
bb_putchar('\n');
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
2006-12-31 00:12:29 +05:30
|
|
|
#endif /* FEATURE_FDISK_WRITABLE */
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
static int
|
2006-02-24 21:59:00 +05:30
|
|
|
is_cleared_partition(const struct partition *p)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
return !(!p || p->boot_ind || p->head || p->sector || p->cyl ||
|
|
|
|
p->sys_ind || p->end_head || p->end_sector || p->end_cyl ||
|
|
|
|
get_start_sect(p) || get_nr_sects(p));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
clear_partition(struct partition *p)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
if (!p)
|
|
|
|
return;
|
2003-01-04 17:26:06 +05:30
|
|
|
memset(p, 0, sizeof(struct partition));
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
2002-11-27 03:30:21 +05:30
|
|
|
static void
|
2007-06-02 18:16:55 +05:30
|
|
|
set_partition(int i, int doext, ullong start, ullong stop, int sysid)
|
2006-02-24 21:59:00 +05:30
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
struct partition *p;
|
2007-06-02 18:16:55 +05:30
|
|
|
ullong offset;
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
if (doext) {
|
|
|
|
p = ptes[i].ext_pointer;
|
|
|
|
offset = extended_offset;
|
|
|
|
} else {
|
|
|
|
p = ptes[i].part_table;
|
|
|
|
offset = ptes[i].offset;
|
|
|
|
}
|
|
|
|
p->boot_ind = 0;
|
|
|
|
p->sys_ind = sysid;
|
|
|
|
set_start_sect(p, start - offset);
|
|
|
|
set_nr_sects(p, stop - start + 1);
|
2007-12-16 22:52:33 +05:30
|
|
|
if (dos_compatible_flag && (start / (g_sectors * g_heads) > 1023))
|
|
|
|
start = g_heads * g_sectors * 1024 - 1;
|
2002-11-27 03:30:21 +05:30
|
|
|
set_hsc(p->head, p->sector, p->cyl, start);
|
2007-12-16 22:52:33 +05:30
|
|
|
if (dos_compatible_flag && (stop / (g_sectors * g_heads) > 1023))
|
|
|
|
stop = g_heads * g_sectors * 1024 - 1;
|
2002-11-27 03:30:21 +05:30
|
|
|
set_hsc(p->end_head, p->end_sector, p->end_cyl, stop);
|
|
|
|
ptes[i].changed = 1;
|
|
|
|
}
|
2003-01-04 17:26:06 +05:30
|
|
|
#endif
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
static int
|
2006-02-24 21:59:00 +05:30
|
|
|
warn_geometry(void)
|
|
|
|
{
|
2007-12-16 22:52:33 +05:30
|
|
|
if (g_heads && g_sectors && g_cylinders)
|
2007-03-19 20:13:38 +05:30
|
|
|
return 0;
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Unknown value(s) for:");
|
2007-12-16 22:52:33 +05:30
|
|
|
if (!g_heads)
|
2007-03-19 20:13:38 +05:30
|
|
|
printf(" heads");
|
2007-12-16 22:52:33 +05:30
|
|
|
if (!g_sectors)
|
2007-03-19 20:13:38 +05:30
|
|
|
printf(" sectors");
|
2007-12-16 22:52:33 +05:30
|
|
|
if (!g_cylinders)
|
2007-03-19 20:13:38 +05:30
|
|
|
printf(" cylinders");
|
|
|
|
printf(
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
2007-03-19 20:13:38 +05:30
|
|
|
" (settable in the extra functions menu)"
|
2003-01-04 17:26:06 +05:30
|
|
|
#endif
|
2007-03-19 20:13:38 +05:30
|
|
|
"\n");
|
2002-11-27 03:30:21 +05:30
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2007-03-18 20:12:45 +05:30
|
|
|
static void
|
|
|
|
update_units(void)
|
2002-11-27 03:30:21 +05:30
|
|
|
{
|
2007-12-16 22:52:33 +05:30
|
|
|
int cyl_units = g_heads * g_sectors;
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
if (display_in_cyl_units && cyl_units)
|
|
|
|
units_per_sector = cyl_units;
|
|
|
|
else
|
|
|
|
units_per_sector = 1; /* in sectors */
|
|
|
|
}
|
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
2002-11-27 03:30:21 +05:30
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
warn_cylinders(void)
|
|
|
|
{
|
2007-12-16 22:52:33 +05:30
|
|
|
if (LABEL_IS_DOS && g_cylinders > 1024 && !nowarn)
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("\n"
|
2002-11-27 03:30:21 +05:30
|
|
|
"The number of cylinders for this disk is set to %d.\n"
|
|
|
|
"There is nothing wrong with that, but this is larger than 1024,\n"
|
|
|
|
"and could in certain setups cause problems with:\n"
|
|
|
|
"1) software that runs at boot time (e.g., old versions of LILO)\n"
|
|
|
|
"2) booting and partitioning software from other OSs\n"
|
2007-03-19 20:13:38 +05:30
|
|
|
" (e.g., DOS FDISK, OS/2 FDISK)\n",
|
2007-12-16 22:52:33 +05:30
|
|
|
g_cylinders);
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
2003-01-04 17:26:06 +05:30
|
|
|
#endif
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
read_extended(int ext)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
int i;
|
|
|
|
struct pte *pex;
|
|
|
|
struct partition *p, *q;
|
|
|
|
|
|
|
|
ext_index = ext;
|
|
|
|
pex = &ptes[ext];
|
|
|
|
pex->ext_pointer = pex->part_table;
|
|
|
|
|
|
|
|
p = pex->part_table;
|
|
|
|
if (!get_start_sect(p)) {
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Bad offset in primary extended partition\n");
|
2002-11-27 03:30:21 +05:30
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-02-24 21:59:00 +05:30
|
|
|
while (IS_EXTENDED(p->sys_ind)) {
|
2007-12-16 22:52:33 +05:30
|
|
|
struct pte *pe = &ptes[g_partitions];
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2007-12-16 22:52:33 +05:30
|
|
|
if (g_partitions >= MAXIMUM_PARTS) {
|
2002-11-27 03:30:21 +05:30
|
|
|
/* This is not a Linux restriction, but
|
|
|
|
this program uses arrays of size MAXIMUM_PARTS.
|
2006-11-19 03:34:09 +05:30
|
|
|
Do not try to 'improve' this test. */
|
2007-12-16 22:52:33 +05:30
|
|
|
struct pte *pre = &ptes[g_partitions - 1];
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Warning: deleting partitions after %d\n",
|
2007-12-16 22:52:33 +05:30
|
|
|
g_partitions);
|
2002-11-27 03:30:21 +05:30
|
|
|
pre->changed = 1;
|
2003-01-04 17:26:06 +05:30
|
|
|
#endif
|
|
|
|
clear_partition(pre->ext_pointer);
|
2002-11-27 03:30:21 +05:30
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-01-04 17:26:06 +05:30
|
|
|
read_pte(pe, extended_offset + get_start_sect(p));
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
if (!extended_offset)
|
|
|
|
extended_offset = get_start_sect(p);
|
|
|
|
|
|
|
|
q = p = pt_offset(pe->sectorbuffer, 0);
|
|
|
|
for (i = 0; i < 4; i++, p++) if (get_nr_sects(p)) {
|
2006-02-24 21:59:00 +05:30
|
|
|
if (IS_EXTENDED(p->sys_ind)) {
|
2002-11-27 03:30:21 +05:30
|
|
|
if (pe->ext_pointer)
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Warning: extra link "
|
2006-10-13 01:00:44 +05:30
|
|
|
"pointer in partition table"
|
2007-12-16 22:52:33 +05:30
|
|
|
" %d\n", g_partitions + 1);
|
2002-11-27 03:30:21 +05:30
|
|
|
else
|
|
|
|
pe->ext_pointer = p;
|
|
|
|
} else if (p->sys_ind) {
|
|
|
|
if (pe->part_table)
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Warning: ignoring extra "
|
2002-11-27 03:30:21 +05:30
|
|
|
"data in partition table"
|
2007-12-16 22:52:33 +05:30
|
|
|
" %d\n", g_partitions + 1);
|
2002-11-27 03:30:21 +05:30
|
|
|
else
|
|
|
|
pe->part_table = p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* very strange code here... */
|
|
|
|
if (!pe->part_table) {
|
|
|
|
if (q != pe->ext_pointer)
|
|
|
|
pe->part_table = q;
|
|
|
|
else
|
|
|
|
pe->part_table = q + 1;
|
|
|
|
}
|
|
|
|
if (!pe->ext_pointer) {
|
|
|
|
if (q != pe->part_table)
|
|
|
|
pe->ext_pointer = q;
|
|
|
|
else
|
|
|
|
pe->ext_pointer = q + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
p = pe->ext_pointer;
|
2007-12-16 22:52:33 +05:30
|
|
|
g_partitions++;
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
2002-11-27 03:30:21 +05:30
|
|
|
/* remove empty links */
|
|
|
|
remove:
|
2007-12-16 22:52:33 +05:30
|
|
|
for (i = 4; i < g_partitions; i++) {
|
2002-11-27 03:30:21 +05:30
|
|
|
struct pte *pe = &ptes[i];
|
|
|
|
|
2007-03-19 20:13:38 +05:30
|
|
|
if (!get_nr_sects(pe->part_table)
|
2007-12-16 22:52:33 +05:30
|
|
|
&& (g_partitions > 5 || ptes[4].part_table->sys_ind)
|
2007-03-19 20:13:38 +05:30
|
|
|
) {
|
|
|
|
printf("Omitting empty partition (%d)\n", i+1);
|
2002-11-27 03:30:21 +05:30
|
|
|
delete_partition(i);
|
|
|
|
goto remove; /* numbering changed */
|
|
|
|
}
|
|
|
|
}
|
2003-01-04 17:26:06 +05:30
|
|
|
#endif
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
2002-11-27 03:30:21 +05:30
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
create_doslabel(void)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
int i;
|
|
|
|
|
2007-03-19 20:13:38 +05:30
|
|
|
printf(msg_building_new_label, "DOS disklabel");
|
2006-02-25 09:16:10 +05:30
|
|
|
|
2008-04-17 05:42:10 +05:30
|
|
|
current_label_type = LABEL_DOS;
|
2006-02-25 09:16:10 +05:30
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_OSF_LABEL
|
2002-11-27 03:30:21 +05:30
|
|
|
possibly_osf_label = 0;
|
|
|
|
#endif
|
2007-12-16 22:52:33 +05:30
|
|
|
g_partitions = 4;
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
for (i = 510-64; i < 510; i++)
|
|
|
|
MBRbuffer[i] = 0;
|
|
|
|
write_part_table_flag(MBRbuffer);
|
|
|
|
extended_offset = 0;
|
|
|
|
set_all_unchanged();
|
|
|
|
set_changed(0);
|
2008-04-17 05:42:10 +05:30
|
|
|
get_boot(CREATE_EMPTY_DOS);
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
2006-12-31 00:12:29 +05:30
|
|
|
#endif /* FEATURE_FDISK_WRITABLE */
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
get_sectorsize(void)
|
|
|
|
{
|
2006-02-25 09:06:00 +05:30
|
|
|
if (!user_set_sector_size) {
|
2002-11-27 03:30:21 +05:30
|
|
|
int arg;
|
2008-04-17 05:42:10 +05:30
|
|
|
if (ioctl(dev_fd, BLKSSZGET, &arg) == 0)
|
2002-11-27 03:30:21 +05:30
|
|
|
sector_size = arg;
|
|
|
|
if (sector_size != DEFAULT_SECTOR_SIZE)
|
2008-06-29 10:40:47 +05:30
|
|
|
printf("Note: sector size is %d "
|
|
|
|
"(not " DEFAULT_SECTOR_SIZE_STR ")\n",
|
|
|
|
sector_size);
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-30 01:11:06 +05:30
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
get_kernel_geometry(void)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
struct hd_geometry geometry;
|
|
|
|
|
2008-04-17 05:42:10 +05:30
|
|
|
if (!ioctl(dev_fd, HDIO_GETGEO, &geometry)) {
|
2002-11-27 03:30:21 +05:30
|
|
|
kern_heads = geometry.heads;
|
|
|
|
kern_sectors = geometry.sectors;
|
|
|
|
/* never use geometry.cylinders - it is truncated */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
get_partition_table_geometry(void)
|
|
|
|
{
|
2005-12-02 15:36:04 +05:30
|
|
|
const unsigned char *bufp = (const unsigned char *)MBRbuffer;
|
2002-11-27 03:30:21 +05:30
|
|
|
struct partition *p;
|
|
|
|
int i, h, s, hh, ss;
|
|
|
|
int first = 1;
|
|
|
|
int bad = 0;
|
|
|
|
|
2006-01-31 04:39:20 +05:30
|
|
|
if (!(valid_part_table_flag((char*)bufp)))
|
2002-11-27 03:30:21 +05:30
|
|
|
return;
|
|
|
|
|
|
|
|
hh = ss = 0;
|
2006-02-24 21:59:00 +05:30
|
|
|
for (i = 0; i < 4; i++) {
|
2002-11-27 03:30:21 +05:30
|
|
|
p = pt_offset(bufp, i);
|
|
|
|
if (p->sys_ind != 0) {
|
|
|
|
h = p->end_head + 1;
|
|
|
|
s = (p->end_sector & 077);
|
|
|
|
if (first) {
|
|
|
|
hh = h;
|
|
|
|
ss = s;
|
|
|
|
first = 0;
|
|
|
|
} else if (hh != h || ss != s)
|
|
|
|
bad = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!first && !bad) {
|
|
|
|
pt_heads = hh;
|
|
|
|
pt_sectors = ss;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-24 21:59:00 +05:30
|
|
|
static void
|
|
|
|
get_geometry(void)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
int sec_fac;
|
|
|
|
|
|
|
|
get_sectorsize();
|
|
|
|
sec_fac = sector_size / 512;
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_SUN_LABEL
|
2002-11-27 03:30:21 +05:30
|
|
|
guess_device_type();
|
|
|
|
#endif
|
2007-12-16 22:52:33 +05:30
|
|
|
g_heads = g_cylinders = g_sectors = 0;
|
2002-11-27 03:30:21 +05:30
|
|
|
kern_heads = kern_sectors = 0;
|
|
|
|
pt_heads = pt_sectors = 0;
|
|
|
|
|
|
|
|
get_kernel_geometry();
|
|
|
|
get_partition_table_geometry();
|
|
|
|
|
2007-12-16 22:52:33 +05:30
|
|
|
g_heads = user_heads ? user_heads :
|
2002-11-27 03:30:21 +05:30
|
|
|
pt_heads ? pt_heads :
|
|
|
|
kern_heads ? kern_heads : 255;
|
2007-12-16 22:52:33 +05:30
|
|
|
g_sectors = user_sectors ? user_sectors :
|
2002-11-27 03:30:21 +05:30
|
|
|
pt_sectors ? pt_sectors :
|
|
|
|
kern_sectors ? kern_sectors : 63;
|
2008-04-17 05:42:10 +05:30
|
|
|
total_number_of_sectors = bb_BLKGETSIZE_sectors(dev_fd);
|
2003-07-30 14:10:37 +05:30
|
|
|
|
2002-11-27 03:30:21 +05:30
|
|
|
sector_offset = 1;
|
|
|
|
if (dos_compatible_flag)
|
2007-12-16 22:52:33 +05:30
|
|
|
sector_offset = g_sectors;
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2007-12-16 22:52:33 +05:30
|
|
|
g_cylinders = total_number_of_sectors / (g_heads * g_sectors * sec_fac);
|
|
|
|
if (!g_cylinders)
|
|
|
|
g_cylinders = user_cylinders;
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2008-04-17 05:42:10 +05:30
|
|
|
* Opens disk_device and optionally reads MBR.
|
|
|
|
* FIXME: document what each 'what' value will do!
|
|
|
|
* Returns:
|
2002-11-27 03:30:21 +05:30
|
|
|
* -1: no 0xaa55 flag present (possibly entire disk BSD)
|
|
|
|
* 0: found or created label
|
|
|
|
* 1: I/O error
|
|
|
|
*/
|
2008-03-17 14:34:04 +05:30
|
|
|
#if ENABLE_FEATURE_SUN_LABEL || ENABLE_FEATURE_FDISK_WRITABLE
|
|
|
|
static int get_boot(enum action what)
|
|
|
|
#else
|
|
|
|
static int get_boot(void)
|
|
|
|
#define get_boot(what) get_boot()
|
|
|
|
#endif
|
2006-02-24 21:59:00 +05:30
|
|
|
{
|
2008-04-17 05:42:10 +05:30
|
|
|
int i, fd;
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2007-12-16 22:52:33 +05:30
|
|
|
g_partitions = 4;
|
2002-11-27 03:30:21 +05:30
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
struct pte *pe = &ptes[i];
|
|
|
|
pe->part_table = pt_offset(MBRbuffer, i);
|
|
|
|
pe->ext_pointer = NULL;
|
|
|
|
pe->offset = 0;
|
|
|
|
pe->sectorbuffer = MBRbuffer;
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
2008-04-17 05:42:10 +05:30
|
|
|
pe->changed = (what == CREATE_EMPTY_DOS);
|
2003-01-04 17:26:06 +05:30
|
|
|
#endif
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
2008-04-17 05:42:10 +05:30
|
|
|
// ALERT! highly idiotic design!
|
|
|
|
// We end up here when we call get_boot() recursively
|
|
|
|
// via get_boot() [table is bad] -> create_doslabel() -> get_boot(CREATE_EMPTY_DOS).
|
|
|
|
// or get_boot() [table is bad] -> create_sunlabel() -> get_boot(CREATE_EMPTY_SUN).
|
|
|
|
// (just factor out re-init of ptes[0,1,2,3] in a separate fn instead?)
|
|
|
|
// So skip opening device _again_...
|
|
|
|
if (what == CREATE_EMPTY_DOS USE_FEATURE_SUN_LABEL(|| what == CREATE_EMPTY_SUN))
|
|
|
|
goto created_table;
|
|
|
|
|
|
|
|
fd = open(disk_device, (option_mask32 & OPT_l) ? O_RDONLY : O_RDWR);
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2007-03-19 20:13:38 +05:30
|
|
|
if (fd < 0) {
|
|
|
|
fd = open(disk_device, O_RDONLY);
|
|
|
|
if (fd < 0) {
|
2008-04-17 05:42:10 +05:30
|
|
|
if (what == TRY_ONLY)
|
2006-02-24 21:59:00 +05:30
|
|
|
return 1;
|
|
|
|
fdisk_fatal(unable_to_open);
|
2008-04-17 05:42:10 +05:30
|
|
|
}
|
|
|
|
printf("'%s' is opened for read only\n", disk_device);
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
2008-04-17 07:22:28 +05:30
|
|
|
xmove_fd(fd, dev_fd);
|
2008-06-29 10:40:47 +05:30
|
|
|
if (512 != full_read(dev_fd, MBRbuffer, 512)) {
|
2008-04-17 05:42:10 +05:30
|
|
|
if (what == TRY_ONLY) {
|
2008-04-17 07:22:28 +05:30
|
|
|
close_dev_fd();
|
2002-11-27 03:30:21 +05:30
|
|
|
return 1;
|
2008-04-17 05:42:10 +05:30
|
|
|
}
|
2002-11-27 03:30:21 +05:30
|
|
|
fdisk_fatal(unable_to_read);
|
|
|
|
}
|
2003-01-04 17:26:06 +05:30
|
|
|
#else
|
2007-03-19 20:13:38 +05:30
|
|
|
fd = open(disk_device, O_RDONLY);
|
|
|
|
if (fd < 0)
|
2003-01-04 17:26:06 +05:30
|
|
|
return 1;
|
2008-06-29 10:40:47 +05:30
|
|
|
if (512 != full_read(fd, MBRbuffer, 512)) {
|
2008-04-17 05:42:10 +05:30
|
|
|
close(fd);
|
2003-01-04 17:26:06 +05:30
|
|
|
return 1;
|
2008-04-17 05:42:10 +05:30
|
|
|
}
|
|
|
|
xmove_fd(fd, dev_fd);
|
2003-01-04 17:26:06 +05:30
|
|
|
#endif
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2003-01-04 17:26:06 +05:30
|
|
|
get_geometry();
|
2002-11-27 03:30:21 +05:30
|
|
|
update_units();
|
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_SUN_LABEL
|
2002-11-27 03:30:21 +05:30
|
|
|
if (check_sun_label())
|
|
|
|
return 0;
|
2003-01-04 17:26:06 +05:30
|
|
|
#endif
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_SGI_LABEL
|
2002-11-27 03:30:21 +05:30
|
|
|
if (check_sgi_label())
|
|
|
|
return 0;
|
|
|
|
#endif
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_AIX_LABEL
|
2002-11-27 03:30:21 +05:30
|
|
|
if (check_aix_label())
|
|
|
|
return 0;
|
|
|
|
#endif
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_OSF_LABEL
|
2002-11-27 03:30:21 +05:30
|
|
|
if (check_osf_label()) {
|
|
|
|
possibly_osf_label = 1;
|
|
|
|
if (!valid_part_table_flag(MBRbuffer)) {
|
2008-04-17 05:42:10 +05:30
|
|
|
current_label_type = LABEL_OSF;
|
2002-11-27 03:30:21 +05:30
|
|
|
return 0;
|
|
|
|
}
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("This disk has both DOS and BSD magic.\n"
|
|
|
|
"Give the 'b' command to go to BSD mode.\n");
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-12-31 00:12:29 +05:30
|
|
|
#if !ENABLE_FEATURE_FDISK_WRITABLE
|
2008-04-17 05:42:10 +05:30
|
|
|
if (!valid_part_table_flag(MBRbuffer))
|
2003-01-04 17:26:06 +05:30
|
|
|
return -1;
|
|
|
|
#else
|
2008-04-17 05:42:10 +05:30
|
|
|
if (!valid_part_table_flag(MBRbuffer)) {
|
|
|
|
if (what == OPEN_MAIN) {
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Device contains neither a valid DOS "
|
2002-11-27 03:30:21 +05:30
|
|
|
"partition table, nor Sun, SGI or OSF "
|
2007-03-19 20:13:38 +05:30
|
|
|
"disklabel\n");
|
2002-11-27 03:30:21 +05:30
|
|
|
#ifdef __sparc__
|
2008-04-17 05:42:10 +05:30
|
|
|
USE_FEATURE_SUN_LABEL(create_sunlabel();)
|
2002-11-27 03:30:21 +05:30
|
|
|
#else
|
|
|
|
create_doslabel();
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
2008-04-17 05:42:10 +05:30
|
|
|
/* TRY_ONLY: */
|
|
|
|
return -1;
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
2008-04-17 05:42:10 +05:30
|
|
|
created_table:
|
|
|
|
#endif /* FEATURE_FDISK_WRITABLE */
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2008-04-17 05:42:10 +05:30
|
|
|
|
|
|
|
USE_FEATURE_FDISK_WRITABLE(warn_cylinders();)
|
2002-11-27 03:30:21 +05:30
|
|
|
warn_geometry();
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++) {
|
2008-04-17 05:42:10 +05:30
|
|
|
if (IS_EXTENDED(ptes[i].part_table->sys_ind)) {
|
2007-12-16 22:52:33 +05:30
|
|
|
if (g_partitions != 4)
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Ignoring extra extended "
|
|
|
|
"partition %d\n", i + 1);
|
2002-11-27 03:30:21 +05:30
|
|
|
else
|
|
|
|
read_extended(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-16 22:52:33 +05:30
|
|
|
for (i = 3; i < g_partitions; i++) {
|
2002-11-27 03:30:21 +05:30
|
|
|
struct pte *pe = &ptes[i];
|
|
|
|
if (!valid_part_table_flag(pe->sectorbuffer)) {
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Warning: invalid flag 0x%02x,0x%02x of partition "
|
|
|
|
"table %d will be corrected by w(rite)\n",
|
2006-11-29 17:30:28 +05:30
|
|
|
pe->sectorbuffer[510],
|
|
|
|
pe->sectorbuffer[511],
|
|
|
|
i + 1);
|
2008-04-17 05:42:10 +05:30
|
|
|
USE_FEATURE_FDISK_WRITABLE(pe->changed = 1;)
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
2002-11-27 03:30:21 +05:30
|
|
|
/*
|
|
|
|
* Print the message MESG, then read an integer between LOW and HIGH (inclusive).
|
|
|
|
* If the user hits Enter, DFLT is returned.
|
|
|
|
* Answers like +10 are interpreted as offsets from BASE.
|
|
|
|
*
|
|
|
|
* There is no default if DFLT is not between LOW and HIGH.
|
|
|
|
*/
|
2006-11-29 17:30:28 +05:30
|
|
|
static unsigned
|
2007-01-30 04:21:44 +05:30
|
|
|
read_int(unsigned low, unsigned dflt, unsigned high, unsigned base, const char *mesg)
|
2002-11-27 03:30:21 +05:30
|
|
|
{
|
2006-11-29 17:30:28 +05:30
|
|
|
unsigned i;
|
2002-11-27 03:30:21 +05:30
|
|
|
int default_ok = 1;
|
2006-10-13 01:00:44 +05:30
|
|
|
const char *fmt = "%s (%u-%u, default %u): ";
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2006-10-13 01:00:44 +05:30
|
|
|
if (dflt < low || dflt > high) {
|
|
|
|
fmt = "%s (%u-%u): ";
|
2002-11-27 03:30:21 +05:30
|
|
|
default_ok = 0;
|
2006-10-13 01:00:44 +05:30
|
|
|
}
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
while (1) {
|
|
|
|
int use_default = default_ok;
|
|
|
|
|
|
|
|
/* ask question and read answer */
|
2006-10-13 01:00:44 +05:30
|
|
|
do {
|
|
|
|
printf(fmt, mesg, low, high, dflt);
|
|
|
|
read_maybe_empty("");
|
|
|
|
} while (*line_ptr != '\n' && !isdigit(*line_ptr)
|
|
|
|
&& *line_ptr != '-' && *line_ptr != '+');
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2004-05-19 16:19:17 +05:30
|
|
|
if (*line_ptr == '+' || *line_ptr == '-') {
|
2006-02-24 21:59:00 +05:30
|
|
|
int minus = (*line_ptr == '-');
|
|
|
|
int absolute = 0;
|
2003-07-03 15:32:32 +05:30
|
|
|
|
2006-10-13 01:00:44 +05:30
|
|
|
i = atoi(line_ptr + 1);
|
2003-07-03 15:32:32 +05:30
|
|
|
|
2006-02-24 21:59:00 +05:30
|
|
|
while (isdigit(*++line_ptr))
|
|
|
|
use_default = 0;
|
2004-05-19 16:19:17 +05:30
|
|
|
|
2006-02-24 21:59:00 +05:30
|
|
|
switch (*line_ptr) {
|
|
|
|
case 'c':
|
|
|
|
case 'C':
|
|
|
|
if (!display_in_cyl_units)
|
2007-12-16 22:52:33 +05:30
|
|
|
i *= g_heads * g_sectors;
|
2006-02-24 21:59:00 +05:30
|
|
|
break;
|
|
|
|
case 'K':
|
|
|
|
absolute = 1024;
|
|
|
|
break;
|
|
|
|
case 'k':
|
|
|
|
absolute = 1000;
|
|
|
|
break;
|
|
|
|
case 'm':
|
|
|
|
case 'M':
|
|
|
|
absolute = 1000000;
|
|
|
|
break;
|
|
|
|
case 'g':
|
|
|
|
case 'G':
|
|
|
|
absolute = 1000000000;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
2006-02-24 21:59:00 +05:30
|
|
|
if (absolute) {
|
2007-06-02 18:16:55 +05:30
|
|
|
ullong bytes;
|
2006-02-24 21:59:00 +05:30
|
|
|
unsigned long unit;
|
|
|
|
|
2007-06-02 18:16:55 +05:30
|
|
|
bytes = (ullong) i * absolute;
|
2006-02-24 21:59:00 +05:30
|
|
|
unit = sector_size * units_per_sector;
|
|
|
|
bytes += unit/2; /* round */
|
|
|
|
bytes /= unit;
|
|
|
|
i = bytes;
|
|
|
|
}
|
|
|
|
if (minus)
|
|
|
|
i = -i;
|
|
|
|
i += base;
|
2004-05-19 16:19:17 +05:30
|
|
|
} else {
|
2002-11-27 03:30:21 +05:30
|
|
|
i = atoi(line_ptr);
|
|
|
|
while (isdigit(*line_ptr)) {
|
|
|
|
line_ptr++;
|
|
|
|
use_default = 0;
|
|
|
|
}
|
|
|
|
}
|
2007-03-19 20:13:38 +05:30
|
|
|
if (use_default) {
|
|
|
|
i = dflt;
|
|
|
|
printf("Using default value %u\n", i);
|
|
|
|
}
|
2002-11-27 03:30:21 +05:30
|
|
|
if (i >= low && i <= high)
|
|
|
|
break;
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Value is out of range\n");
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2006-02-24 21:59:00 +05:30
|
|
|
static int
|
|
|
|
get_partition(int warn, int max)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
struct pte *pe;
|
|
|
|
int i;
|
|
|
|
|
2007-03-19 20:13:38 +05:30
|
|
|
i = read_int(1, 0, max, 0, "Partition number") - 1;
|
2002-11-27 03:30:21 +05:30
|
|
|
pe = &ptes[i];
|
|
|
|
|
|
|
|
if (warn) {
|
2006-10-13 01:00:44 +05:30
|
|
|
if ((!LABEL_IS_SUN && !LABEL_IS_SGI && !pe->part_table->sys_ind)
|
|
|
|
|| (LABEL_IS_SUN && (!sunlabel->partitions[i].num_sectors || !sunlabel->infos[i].id))
|
|
|
|
|| (LABEL_IS_SGI && !sgi_get_num_sectors(i))
|
|
|
|
) {
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Warning: partition %d has empty type\n", i+1);
|
2006-02-25 09:16:10 +05:30
|
|
|
}
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2006-02-24 21:59:00 +05:30
|
|
|
get_existing_partition(int warn, int max)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
int pno = -1;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < max; i++) {
|
|
|
|
struct pte *pe = &ptes[i];
|
|
|
|
struct partition *p = pe->part_table;
|
|
|
|
|
|
|
|
if (p && !is_cleared_partition(p)) {
|
|
|
|
if (pno >= 0)
|
|
|
|
goto not_unique;
|
|
|
|
pno = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (pno >= 0) {
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Selected partition %d\n", pno+1);
|
2002-11-27 03:30:21 +05:30
|
|
|
return pno;
|
|
|
|
}
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("No partition is defined yet!\n");
|
2002-11-27 03:30:21 +05:30
|
|
|
return -1;
|
|
|
|
|
|
|
|
not_unique:
|
|
|
|
return get_partition(warn, max);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2006-02-24 21:59:00 +05:30
|
|
|
get_nonexisting_partition(int warn, int max)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
int pno = -1;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < max; i++) {
|
|
|
|
struct pte *pe = &ptes[i];
|
|
|
|
struct partition *p = pe->part_table;
|
|
|
|
|
|
|
|
if (p && is_cleared_partition(p)) {
|
|
|
|
if (pno >= 0)
|
|
|
|
goto not_unique;
|
|
|
|
pno = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (pno >= 0) {
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Selected partition %d\n", pno+1);
|
2002-11-27 03:30:21 +05:30
|
|
|
return pno;
|
|
|
|
}
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("All primary partitions have been defined already!\n");
|
2002-11-27 03:30:21 +05:30
|
|
|
return -1;
|
|
|
|
|
|
|
|
not_unique:
|
|
|
|
return get_partition(warn, max);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-13 01:00:44 +05:30
|
|
|
static void
|
|
|
|
change_units(void)
|
2002-11-27 03:30:21 +05:30
|
|
|
{
|
|
|
|
display_in_cyl_units = !display_in_cyl_units;
|
|
|
|
update_units();
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Changing display/entry units to %s\n",
|
2002-11-27 03:30:21 +05:30
|
|
|
str_units(PLURAL));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
toggle_active(int i)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
struct pte *pe = &ptes[i];
|
|
|
|
struct partition *p = pe->part_table;
|
|
|
|
|
2006-02-24 21:59:00 +05:30
|
|
|
if (IS_EXTENDED(p->sys_ind) && !p->boot_ind)
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("WARNING: Partition %d is an extended partition\n", i + 1);
|
2002-11-27 03:30:21 +05:30
|
|
|
p->boot_ind = (p->boot_ind ? 0 : ACTIVE_FLAG);
|
|
|
|
pe->changed = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
toggle_dos_compatibility_flag(void)
|
|
|
|
{
|
2008-03-17 14:12:43 +05:30
|
|
|
dos_compatible_flag = 1 - dos_compatible_flag;
|
2002-11-27 03:30:21 +05:30
|
|
|
if (dos_compatible_flag) {
|
2007-12-16 22:52:33 +05:30
|
|
|
sector_offset = g_sectors;
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("DOS Compatibility flag is set\n");
|
|
|
|
} else {
|
2002-11-27 03:30:21 +05:30
|
|
|
sector_offset = 1;
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("DOS Compatibility flag is not set\n");
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
delete_partition(int i)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
struct pte *pe = &ptes[i];
|
|
|
|
struct partition *p = pe->part_table;
|
|
|
|
struct partition *q = pe->ext_pointer;
|
|
|
|
|
|
|
|
/* Note that for the fifth partition (i == 4) we don't actually
|
|
|
|
* decrement partitions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (warn_geometry())
|
|
|
|
return; /* C/H/S not set */
|
|
|
|
pe->changed = 1;
|
|
|
|
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_SUN) {
|
2002-11-27 03:30:21 +05:30
|
|
|
sun_delete_partition(i);
|
|
|
|
return;
|
|
|
|
}
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_SGI) {
|
2002-11-27 03:30:21 +05:30
|
|
|
sgi_delete_partition(i);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i < 4) {
|
2006-02-24 21:59:00 +05:30
|
|
|
if (IS_EXTENDED(p->sys_ind) && i == ext_index) {
|
2007-12-16 22:52:33 +05:30
|
|
|
g_partitions = 4;
|
2002-11-27 03:30:21 +05:30
|
|
|
ptes[ext_index].ext_pointer = NULL;
|
|
|
|
extended_offset = 0;
|
|
|
|
}
|
|
|
|
clear_partition(p);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!q->sys_ind && i > 4) {
|
|
|
|
/* the last one in the chain - just delete */
|
2007-12-16 22:52:33 +05:30
|
|
|
--g_partitions;
|
2002-11-27 03:30:21 +05:30
|
|
|
--i;
|
|
|
|
clear_partition(ptes[i].ext_pointer);
|
|
|
|
ptes[i].changed = 1;
|
|
|
|
} else {
|
|
|
|
/* not the last one - further ones will be moved down */
|
|
|
|
if (i > 4) {
|
|
|
|
/* delete this link in the chain */
|
|
|
|
p = ptes[i-1].ext_pointer;
|
|
|
|
*p = *q;
|
|
|
|
set_start_sect(p, get_start_sect(q));
|
|
|
|
set_nr_sects(p, get_nr_sects(q));
|
|
|
|
ptes[i-1].changed = 1;
|
2007-12-16 22:52:33 +05:30
|
|
|
} else if (g_partitions > 5) { /* 5 will be moved to 4 */
|
2002-11-27 03:30:21 +05:30
|
|
|
/* the first logical in a longer chain */
|
|
|
|
pe = &ptes[5];
|
|
|
|
|
|
|
|
if (pe->part_table) /* prevent SEGFAULT */
|
|
|
|
set_start_sect(pe->part_table,
|
2006-02-24 21:59:00 +05:30
|
|
|
get_partition_start(pe) -
|
|
|
|
extended_offset);
|
2002-11-27 03:30:21 +05:30
|
|
|
pe->offset = extended_offset;
|
|
|
|
pe->changed = 1;
|
|
|
|
}
|
|
|
|
|
2007-12-16 22:52:33 +05:30
|
|
|
if (g_partitions > 5) {
|
|
|
|
g_partitions--;
|
|
|
|
while (i < g_partitions) {
|
2002-11-27 03:30:21 +05:30
|
|
|
ptes[i] = ptes[i+1];
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
/* the only logical: clear only */
|
|
|
|
clear_partition(ptes[i].part_table);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
change_sysid(void)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
int i, sys, origsys;
|
|
|
|
struct partition *p;
|
|
|
|
|
2003-07-30 14:10:37 +05:30
|
|
|
/* If sgi_label then don't use get_existing_partition,
|
|
|
|
let the user select a partition, since get_existing_partition()
|
|
|
|
only works for Linux like partition tables. */
|
2006-10-13 01:00:44 +05:30
|
|
|
if (!LABEL_IS_SGI) {
|
2007-12-16 22:52:33 +05:30
|
|
|
i = get_existing_partition(0, g_partitions);
|
2003-07-30 14:10:37 +05:30
|
|
|
} else {
|
2007-12-16 22:52:33 +05:30
|
|
|
i = get_partition(0, g_partitions);
|
2003-07-30 14:10:37 +05:30
|
|
|
}
|
2002-11-27 03:30:21 +05:30
|
|
|
if (i == -1)
|
|
|
|
return;
|
|
|
|
p = ptes[i].part_table;
|
|
|
|
origsys = sys = get_sysid(i);
|
|
|
|
|
|
|
|
/* if changing types T to 0 is allowed, then
|
|
|
|
the reverse change must be allowed, too */
|
2006-10-13 01:00:44 +05:30
|
|
|
if (!sys && !LABEL_IS_SGI && !LABEL_IS_SUN && !get_nr_sects(p)) {
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Partition %d does not exist yet!\n", i + 1);
|
2006-10-13 01:00:44 +05:30
|
|
|
return;
|
|
|
|
}
|
|
|
|
while (1) {
|
2007-03-19 20:13:38 +05:30
|
|
|
sys = read_hex(get_sys_types());
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2006-10-13 01:00:44 +05:30
|
|
|
if (!sys && !LABEL_IS_SGI && !LABEL_IS_SUN) {
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Type 0 means free space to many systems\n"
|
2006-02-24 21:59:00 +05:30
|
|
|
"(but not to Linux). Having partitions of\n"
|
2007-03-19 20:13:38 +05:30
|
|
|
"type 0 is probably unwise.\n");
|
2002-11-27 03:30:21 +05:30
|
|
|
/* break; */
|
|
|
|
}
|
|
|
|
|
2006-10-13 01:00:44 +05:30
|
|
|
if (!LABEL_IS_SUN && !LABEL_IS_SGI) {
|
2006-02-24 21:59:00 +05:30
|
|
|
if (IS_EXTENDED(sys) != IS_EXTENDED(p->sys_ind)) {
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("You cannot change a partition into"
|
|
|
|
" an extended one or vice versa\n");
|
2002-11-27 03:30:21 +05:30
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sys < 256) {
|
2007-03-19 20:13:38 +05:30
|
|
|
#if ENABLE_FEATURE_SUN_LABEL
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_SUN && i == 2 && sys != SUN_WHOLE_DISK)
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Consider leaving partition 3 "
|
2006-02-24 21:59:00 +05:30
|
|
|
"as Whole disk (5),\n"
|
|
|
|
"as SunOS/Solaris expects it and "
|
2007-03-19 20:13:38 +05:30
|
|
|
"even Linux likes it\n\n");
|
|
|
|
#endif
|
|
|
|
#if ENABLE_FEATURE_SGI_LABEL
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_SGI &&
|
2006-02-25 09:16:10 +05:30
|
|
|
(
|
2006-10-13 01:00:44 +05:30
|
|
|
(i == 10 && sys != SGI_ENTIRE_DISK) ||
|
2006-02-25 09:16:10 +05:30
|
|
|
(i == 8 && sys != 0)
|
|
|
|
)
|
2007-03-19 20:13:38 +05:30
|
|
|
) {
|
|
|
|
printf("Consider leaving partition 9 "
|
2006-02-24 21:59:00 +05:30
|
|
|
"as volume header (0),\nand "
|
|
|
|
"partition 11 as entire volume (6)"
|
2007-03-19 20:13:38 +05:30
|
|
|
"as IRIX expects it\n\n");
|
2006-02-25 09:16:10 +05:30
|
|
|
}
|
2007-03-19 20:13:38 +05:30
|
|
|
#endif
|
2002-11-27 03:30:21 +05:30
|
|
|
if (sys == origsys)
|
|
|
|
break;
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_SUN) {
|
2002-11-27 03:30:21 +05:30
|
|
|
sun_change_sysid(i, sys);
|
2006-10-13 01:00:44 +05:30
|
|
|
} else if (LABEL_IS_SGI) {
|
2002-11-27 03:30:21 +05:30
|
|
|
sgi_change_sysid(i, sys);
|
|
|
|
} else
|
|
|
|
p->sys_ind = sys;
|
2006-02-25 09:16:10 +05:30
|
|
|
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Changed system type of partition %d "
|
|
|
|
"to %x (%s)\n", i + 1, sys,
|
2003-01-04 17:26:06 +05:30
|
|
|
partition_type(sys));
|
2002-11-27 03:30:21 +05:30
|
|
|
ptes[i].changed = 1;
|
2008-01-25 04:19:15 +05:30
|
|
|
//if (is_dos_partition(origsys) || is_dos_partition(sys))
|
|
|
|
// dos_changed = 1;
|
2002-11-27 03:30:21 +05:30
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-12-31 00:12:29 +05:30
|
|
|
#endif /* FEATURE_FDISK_WRITABLE */
|
2003-01-04 17:26:06 +05:30
|
|
|
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2006-12-20 02:02:02 +05:30
|
|
|
/* check_consistency() and linear2chs() added Sat Mar 6 12:28:16 1993,
|
2002-11-27 03:30:21 +05:30
|
|
|
* faith@cs.unc.edu, based on code fragments from pfdisk by Gordon W. Ross,
|
|
|
|
* Jan. 1990 (version 1.2.1 by Gordon W. Ross Aug. 1990; Modified by S.
|
|
|
|
* Lubkin Oct. 1991). */
|
|
|
|
|
2006-02-24 21:59:00 +05:30
|
|
|
static void
|
2006-12-20 02:02:02 +05:30
|
|
|
linear2chs(unsigned ls, unsigned *c, unsigned *h, unsigned *s)
|
2006-02-24 21:59:00 +05:30
|
|
|
{
|
2007-12-16 22:52:33 +05:30
|
|
|
int spc = g_heads * g_sectors;
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
*c = ls / spc;
|
|
|
|
ls = ls % spc;
|
2007-12-16 22:52:33 +05:30
|
|
|
*h = ls / g_sectors;
|
|
|
|
*s = ls % g_sectors + 1; /* sectors count from 1 */
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
|
2006-02-24 21:59:00 +05:30
|
|
|
static void
|
|
|
|
check_consistency(const struct partition *p, int partition)
|
|
|
|
{
|
2006-11-29 17:30:28 +05:30
|
|
|
unsigned pbc, pbh, pbs; /* physical beginning c, h, s */
|
|
|
|
unsigned pec, peh, pes; /* physical ending c, h, s */
|
|
|
|
unsigned lbc, lbh, lbs; /* logical beginning c, h, s */
|
|
|
|
unsigned lec, leh, les; /* logical ending c, h, s */
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2007-12-16 22:52:33 +05:30
|
|
|
if (!g_heads || !g_sectors || (partition >= 4))
|
2002-11-27 03:30:21 +05:30
|
|
|
return; /* do not check extended partitions */
|
|
|
|
|
|
|
|
/* physical beginning c, h, s */
|
|
|
|
pbc = (p->cyl & 0xff) | ((p->sector << 2) & 0x300);
|
|
|
|
pbh = p->head;
|
|
|
|
pbs = p->sector & 0x3f;
|
|
|
|
|
|
|
|
/* physical ending c, h, s */
|
|
|
|
pec = (p->end_cyl & 0xff) | ((p->end_sector << 2) & 0x300);
|
|
|
|
peh = p->end_head;
|
|
|
|
pes = p->end_sector & 0x3f;
|
|
|
|
|
|
|
|
/* compute logical beginning (c, h, s) */
|
2006-12-20 02:02:02 +05:30
|
|
|
linear2chs(get_start_sect(p), &lbc, &lbh, &lbs);
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
/* compute logical ending (c, h, s) */
|
2006-12-20 02:02:02 +05:30
|
|
|
linear2chs(get_start_sect(p) + get_nr_sects(p) - 1, &lec, &leh, &les);
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
/* Same physical / logical beginning? */
|
2007-12-16 22:52:33 +05:30
|
|
|
if (g_cylinders <= 1024 && (pbc != lbc || pbh != lbh || pbs != lbs)) {
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Partition %d has different physical/logical "
|
|
|
|
"beginnings (non-Linux?):\n", partition + 1);
|
|
|
|
printf(" phys=(%d, %d, %d) ", pbc, pbh, pbs);
|
2008-06-26 20:02:57 +05:30
|
|
|
printf("logical=(%d, %d, %d)\n", lbc, lbh, lbs);
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* Same physical / logical ending? */
|
2007-12-16 22:52:33 +05:30
|
|
|
if (g_cylinders <= 1024 && (pec != lec || peh != leh || pes != les)) {
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Partition %d has different physical/logical "
|
|
|
|
"endings:\n", partition + 1);
|
|
|
|
printf(" phys=(%d, %d, %d) ", pec, peh, pes);
|
|
|
|
printf("logical=(%d, %d, %d)\n", lec, leh, les);
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* Ending on cylinder boundary? */
|
2007-12-16 22:52:33 +05:30
|
|
|
if (peh != (g_heads - 1) || pes != g_sectors) {
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Partition %i does not end on cylinder boundary\n",
|
2002-11-27 03:30:21 +05:30
|
|
|
partition + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
list_disk_geometry(void)
|
|
|
|
{
|
2003-07-30 14:10:37 +05:30
|
|
|
long long bytes = (total_number_of_sectors << 9);
|
2002-11-27 03:30:21 +05:30
|
|
|
long megabytes = bytes/1000000;
|
|
|
|
|
|
|
|
if (megabytes < 10000)
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("\nDisk %s: %ld MB, %lld bytes\n",
|
2006-02-24 21:59:00 +05:30
|
|
|
disk_device, megabytes, bytes);
|
2002-11-27 03:30:21 +05:30
|
|
|
else
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("\nDisk %s: %ld.%ld GB, %lld bytes\n",
|
2006-02-24 21:59:00 +05:30
|
|
|
disk_device, megabytes/1000, (megabytes/100)%10, bytes);
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("%d heads, %d sectors/track, %d cylinders",
|
2007-12-16 22:52:33 +05:30
|
|
|
g_heads, g_sectors, g_cylinders);
|
2002-11-27 03:30:21 +05:30
|
|
|
if (units_per_sector == 1)
|
2007-03-19 20:13:38 +05:30
|
|
|
printf(", total %llu sectors",
|
2006-02-24 21:59:00 +05:30
|
|
|
total_number_of_sectors / (sector_size/512));
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("\nUnits = %s of %d * %d = %d bytes\n\n",
|
2006-02-24 21:59:00 +05:30
|
|
|
str_units(PLURAL),
|
|
|
|
units_per_sector, sector_size, units_per_sector * sector_size);
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check whether partition entries are ordered by their starting positions.
|
|
|
|
* Return 0 if OK. Return i if partition i should have been earlier.
|
|
|
|
* Two separate checks: primary and logical partitions.
|
|
|
|
*/
|
|
|
|
static int
|
2006-02-24 21:59:00 +05:30
|
|
|
wrong_p_order(int *prev)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
const struct pte *pe;
|
|
|
|
const struct partition *p;
|
2007-06-02 18:16:55 +05:30
|
|
|
ullong last_p_start_pos = 0, p_start_pos;
|
2002-11-27 03:30:21 +05:30
|
|
|
int i, last_i = 0;
|
|
|
|
|
2007-12-16 22:52:33 +05:30
|
|
|
for (i = 0; i < g_partitions; i++) {
|
2002-11-27 03:30:21 +05:30
|
|
|
if (i == 4) {
|
|
|
|
last_i = 4;
|
|
|
|
last_p_start_pos = 0;
|
|
|
|
}
|
|
|
|
pe = &ptes[i];
|
2007-11-06 08:35:54 +05:30
|
|
|
p = pe->part_table;
|
|
|
|
if (p->sys_ind) {
|
2002-11-27 03:30:21 +05:30
|
|
|
p_start_pos = get_partition_start(pe);
|
|
|
|
|
|
|
|
if (last_p_start_pos > p_start_pos) {
|
|
|
|
if (prev)
|
|
|
|
*prev = last_i;
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
last_p_start_pos = p_start_pos;
|
|
|
|
last_i = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_ADVANCED
|
2002-11-27 03:30:21 +05:30
|
|
|
/*
|
|
|
|
* Fix the chain of logicals.
|
|
|
|
* extended_offset is unchanged, the set of sectors used is unchanged
|
|
|
|
* The chain is sorted so that sectors increase, and so that
|
|
|
|
* starting sectors increase.
|
|
|
|
*
|
|
|
|
* After this it may still be that cfdisk doesnt like the table.
|
|
|
|
* (This is because cfdisk considers expanded parts, from link to
|
|
|
|
* end of partition, and these may still overlap.)
|
|
|
|
* Now
|
|
|
|
* sfdisk /dev/hda > ohda; sfdisk /dev/hda < ohda
|
|
|
|
* may help.
|
|
|
|
*/
|
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
fix_chain_of_logicals(void)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
int j, oj, ojj, sj, sjj;
|
|
|
|
struct partition *pj,*pjj,tmp;
|
|
|
|
|
|
|
|
/* Stage 1: sort sectors but leave sector of part 4 */
|
|
|
|
/* (Its sector is the global extended_offset.) */
|
|
|
|
stage1:
|
2007-12-16 22:52:33 +05:30
|
|
|
for (j = 5; j < g_partitions - 1; j++) {
|
2002-11-27 03:30:21 +05:30
|
|
|
oj = ptes[j].offset;
|
|
|
|
ojj = ptes[j+1].offset;
|
|
|
|
if (oj > ojj) {
|
|
|
|
ptes[j].offset = ojj;
|
|
|
|
ptes[j+1].offset = oj;
|
|
|
|
pj = ptes[j].part_table;
|
|
|
|
set_start_sect(pj, get_start_sect(pj)+oj-ojj);
|
|
|
|
pjj = ptes[j+1].part_table;
|
|
|
|
set_start_sect(pjj, get_start_sect(pjj)+ojj-oj);
|
|
|
|
set_start_sect(ptes[j-1].ext_pointer,
|
2006-02-24 21:59:00 +05:30
|
|
|
ojj-extended_offset);
|
2002-11-27 03:30:21 +05:30
|
|
|
set_start_sect(ptes[j].ext_pointer,
|
2006-02-24 21:59:00 +05:30
|
|
|
oj-extended_offset);
|
2002-11-27 03:30:21 +05:30
|
|
|
goto stage1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Stage 2: sort starting sectors */
|
|
|
|
stage2:
|
2007-12-16 22:52:33 +05:30
|
|
|
for (j = 4; j < g_partitions - 1; j++) {
|
2002-11-27 03:30:21 +05:30
|
|
|
pj = ptes[j].part_table;
|
|
|
|
pjj = ptes[j+1].part_table;
|
|
|
|
sj = get_start_sect(pj);
|
|
|
|
sjj = get_start_sect(pjj);
|
|
|
|
oj = ptes[j].offset;
|
|
|
|
ojj = ptes[j+1].offset;
|
|
|
|
if (oj+sj > ojj+sjj) {
|
|
|
|
tmp = *pj;
|
|
|
|
*pj = *pjj;
|
|
|
|
*pjj = tmp;
|
|
|
|
set_start_sect(pj, ojj+sjj-oj);
|
|
|
|
set_start_sect(pjj, oj+sj-ojj);
|
|
|
|
goto stage2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Probably something was changed */
|
2007-12-16 22:52:33 +05:30
|
|
|
for (j = 4; j < g_partitions; j++)
|
2002-11-27 03:30:21 +05:30
|
|
|
ptes[j].changed = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
fix_partition_table_order(void)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
struct pte *pei, *pek;
|
|
|
|
int i,k;
|
|
|
|
|
|
|
|
if (!wrong_p_order(NULL)) {
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Ordering is already correct\n\n");
|
2002-11-27 03:30:21 +05:30
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while ((i = wrong_p_order(&k)) != 0 && i < 4) {
|
|
|
|
/* partition i should have come earlier, move it */
|
|
|
|
/* We have to move data in the MBR */
|
|
|
|
struct partition *pi, *pk, *pe, pbuf;
|
|
|
|
pei = &ptes[i];
|
|
|
|
pek = &ptes[k];
|
|
|
|
|
|
|
|
pe = pei->ext_pointer;
|
|
|
|
pei->ext_pointer = pek->ext_pointer;
|
|
|
|
pek->ext_pointer = pe;
|
|
|
|
|
|
|
|
pi = pei->part_table;
|
|
|
|
pk = pek->part_table;
|
|
|
|
|
|
|
|
memmove(&pbuf, pi, sizeof(struct partition));
|
|
|
|
memmove(pi, pk, sizeof(struct partition));
|
|
|
|
memmove(pk, &pbuf, sizeof(struct partition));
|
|
|
|
|
|
|
|
pei->changed = pek->changed = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i)
|
|
|
|
fix_chain_of_logicals();
|
|
|
|
|
|
|
|
printf("Done.\n");
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
list_table(int xtra)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
const struct partition *p;
|
|
|
|
int i, w;
|
|
|
|
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_SUN) {
|
2002-11-27 03:30:21 +05:30
|
|
|
sun_list_table(xtra);
|
|
|
|
return;
|
|
|
|
}
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_SUN) {
|
2002-11-27 03:30:21 +05:30
|
|
|
sgi_list_table(xtra);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
list_disk_geometry();
|
|
|
|
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_OSF) {
|
2002-11-27 03:30:21 +05:30
|
|
|
xbsd_print_disklabel(xtra);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Heuristic: we list partition 3 of /dev/foo as /dev/foo3,
|
|
|
|
but if the device name ends in a digit, say /dev/foo1,
|
|
|
|
then the partition is called /dev/foo1p3. */
|
|
|
|
w = strlen(disk_device);
|
|
|
|
if (w && isdigit(disk_device[w-1]))
|
|
|
|
w++;
|
|
|
|
if (w < 5)
|
|
|
|
w = 5;
|
|
|
|
|
2007-03-19 20:13:38 +05:30
|
|
|
// 1 12345678901 12345678901 12345678901 12
|
|
|
|
printf("%*s Boot Start End Blocks Id System\n",
|
|
|
|
w+1, "Device");
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2007-12-16 22:52:33 +05:30
|
|
|
for (i = 0; i < g_partitions; i++) {
|
2002-11-27 03:30:21 +05:30
|
|
|
const struct pte *pe = &ptes[i];
|
2007-06-02 18:16:55 +05:30
|
|
|
ullong psects;
|
|
|
|
ullong pblocks;
|
2006-11-29 17:30:28 +05:30
|
|
|
unsigned podd;
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
p = pe->part_table;
|
2006-10-13 01:00:44 +05:30
|
|
|
if (!p || is_cleared_partition(p))
|
|
|
|
continue;
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2006-10-13 01:00:44 +05:30
|
|
|
psects = get_nr_sects(p);
|
|
|
|
pblocks = psects;
|
|
|
|
podd = 0;
|
|
|
|
|
|
|
|
if (sector_size < 1024) {
|
|
|
|
pblocks /= (1024 / sector_size);
|
|
|
|
podd = psects % (1024 / sector_size);
|
|
|
|
}
|
|
|
|
if (sector_size > 1024)
|
|
|
|
pblocks *= (sector_size / 1024);
|
|
|
|
|
|
|
|
printf("%s %c %11llu %11llu %11llu%c %2x %s\n",
|
2002-11-27 03:30:21 +05:30
|
|
|
partname(disk_device, i+1, w+2),
|
2006-10-13 01:00:44 +05:30
|
|
|
!p->boot_ind ? ' ' : p->boot_ind == ACTIVE_FLAG /* boot flag */
|
|
|
|
? '*' : '?',
|
2007-06-02 18:16:55 +05:30
|
|
|
(ullong) cround(get_partition_start(pe)), /* start */
|
|
|
|
(ullong) cround(get_partition_start(pe) + psects /* end */
|
2002-11-27 03:30:21 +05:30
|
|
|
- (psects ? 1 : 0)),
|
2007-06-02 18:16:55 +05:30
|
|
|
(ullong) pblocks, podd ? '+' : ' ', /* odd flag on end */
|
2006-10-13 01:00:44 +05:30
|
|
|
p->sys_ind, /* type id */
|
|
|
|
partition_type(p->sys_ind)); /* type name */
|
|
|
|
|
|
|
|
check_consistency(p, i);
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* Is partition table in disk order? It need not be, but... */
|
|
|
|
/* partition table entries are not checked for correct order if this
|
|
|
|
is a sgi, sun or aix labeled disk... */
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_DOS && wrong_p_order(NULL)) {
|
2006-02-25 09:16:10 +05:30
|
|
|
/* FIXME */
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("\nPartition table entries are not in disk order\n");
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_ADVANCED
|
2002-11-27 03:30:21 +05:30
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
x_list_table(int extend)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
const struct pte *pe;
|
|
|
|
const struct partition *p;
|
|
|
|
int i;
|
|
|
|
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("\nDisk %s: %d heads, %d sectors, %d cylinders\n\n",
|
2007-12-16 22:52:33 +05:30
|
|
|
disk_device, g_heads, g_sectors, g_cylinders);
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID\n");
|
2007-12-16 22:52:33 +05:30
|
|
|
for (i = 0; i < g_partitions; i++) {
|
2002-11-27 03:30:21 +05:30
|
|
|
pe = &ptes[i];
|
|
|
|
p = (extend ? pe->ext_pointer : pe->part_table);
|
|
|
|
if (p != NULL) {
|
2003-07-30 14:10:37 +05:30
|
|
|
printf("%2d %02x%4d%4d%5d%4d%4d%5d%11u%11u %02x\n",
|
2002-11-27 03:30:21 +05:30
|
|
|
i + 1, p->boot_ind, p->head,
|
|
|
|
sector(p->sector),
|
|
|
|
cylinder(p->sector, p->cyl), p->end_head,
|
|
|
|
sector(p->end_sector),
|
|
|
|
cylinder(p->end_sector, p->end_cyl),
|
|
|
|
get_start_sect(p), get_nr_sects(p), p->sys_ind);
|
|
|
|
if (p->sys_ind)
|
|
|
|
check_consistency(p, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
2002-11-27 03:30:21 +05:30
|
|
|
static void
|
2007-06-02 18:16:55 +05:30
|
|
|
fill_bounds(ullong *first, ullong *last)
|
2006-02-24 21:59:00 +05:30
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
int i;
|
|
|
|
const struct pte *pe = &ptes[0];
|
|
|
|
const struct partition *p;
|
|
|
|
|
2007-12-16 22:52:33 +05:30
|
|
|
for (i = 0; i < g_partitions; pe++,i++) {
|
2002-11-27 03:30:21 +05:30
|
|
|
p = pe->part_table;
|
2006-02-24 21:59:00 +05:30
|
|
|
if (!p->sys_ind || IS_EXTENDED(p->sys_ind)) {
|
2002-11-27 03:30:21 +05:30
|
|
|
first[i] = 0xffffffff;
|
|
|
|
last[i] = 0;
|
|
|
|
} else {
|
|
|
|
first[i] = get_partition_start(pe);
|
|
|
|
last[i] = first[i] + get_nr_sects(p) - 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-06-02 18:16:55 +05:30
|
|
|
check(int n, unsigned h, unsigned s, unsigned c, ullong start)
|
2006-02-24 21:59:00 +05:30
|
|
|
{
|
2007-06-02 18:16:55 +05:30
|
|
|
ullong total, real_s, real_c;
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
real_s = sector(s) - 1;
|
|
|
|
real_c = cylinder(s, c);
|
2007-12-16 22:52:33 +05:30
|
|
|
total = (real_c * g_sectors + real_s) * g_heads + h;
|
2002-11-27 03:30:21 +05:30
|
|
|
if (!total)
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Partition %d contains sector 0\n", n);
|
2007-12-16 22:52:33 +05:30
|
|
|
if (h >= g_heads)
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Partition %d: head %d greater than maximum %d\n",
|
2007-12-16 22:52:33 +05:30
|
|
|
n, h + 1, g_heads);
|
|
|
|
if (real_s >= g_sectors)
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Partition %d: sector %d greater than "
|
2007-12-16 22:52:33 +05:30
|
|
|
"maximum %d\n", n, s, g_sectors);
|
|
|
|
if (real_c >= g_cylinders)
|
2007-06-02 18:16:55 +05:30
|
|
|
printf("Partition %d: cylinder %llu greater than "
|
2007-12-16 22:52:33 +05:30
|
|
|
"maximum %d\n", n, real_c + 1, g_cylinders);
|
|
|
|
if (g_cylinders <= 1024 && start != total)
|
2007-06-02 18:16:55 +05:30
|
|
|
printf("Partition %d: previous sectors %llu disagrees with "
|
|
|
|
"total %llu\n", n, start, total);
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
verify(void)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
int i, j;
|
2006-11-29 17:30:28 +05:30
|
|
|
unsigned total = 1;
|
2007-12-16 22:52:33 +05:30
|
|
|
ullong first[g_partitions], last[g_partitions];
|
2002-11-27 03:30:21 +05:30
|
|
|
struct partition *p;
|
|
|
|
|
|
|
|
if (warn_geometry())
|
|
|
|
return;
|
|
|
|
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_SUN) {
|
2002-11-27 03:30:21 +05:30
|
|
|
verify_sun();
|
|
|
|
return;
|
|
|
|
}
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_SGI) {
|
2002-11-27 03:30:21 +05:30
|
|
|
verify_sgi(1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
fill_bounds(first, last);
|
2007-12-16 22:52:33 +05:30
|
|
|
for (i = 0; i < g_partitions; i++) {
|
2002-11-27 03:30:21 +05:30
|
|
|
struct pte *pe = &ptes[i];
|
|
|
|
|
|
|
|
p = pe->part_table;
|
2006-02-24 21:59:00 +05:30
|
|
|
if (p->sys_ind && !IS_EXTENDED(p->sys_ind)) {
|
2002-11-27 03:30:21 +05:30
|
|
|
check_consistency(p, i);
|
|
|
|
if (get_partition_start(pe) < first[i])
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Warning: bad start-of-data in "
|
|
|
|
"partition %d\n", i + 1);
|
2002-11-27 03:30:21 +05:30
|
|
|
check(i + 1, p->end_head, p->end_sector, p->end_cyl,
|
|
|
|
last[i]);
|
|
|
|
total += last[i] + 1 - first[i];
|
2007-03-19 20:13:38 +05:30
|
|
|
for (j = 0; j < i; j++) {
|
|
|
|
if ((first[i] >= first[j] && first[i] <= last[j])
|
|
|
|
|| ((last[i] <= last[j] && last[i] >= first[j]))) {
|
|
|
|
printf("Warning: partition %d overlaps "
|
|
|
|
"partition %d\n", j + 1, i + 1);
|
|
|
|
total += first[i] >= first[j] ?
|
|
|
|
first[i] : first[j];
|
|
|
|
total -= last[i] <= last[j] ?
|
|
|
|
last[i] : last[j];
|
|
|
|
}
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (extended_offset) {
|
|
|
|
struct pte *pex = &ptes[ext_index];
|
2007-06-02 18:16:55 +05:30
|
|
|
ullong e_last = get_start_sect(pex->part_table) +
|
2002-11-27 03:30:21 +05:30
|
|
|
get_nr_sects(pex->part_table) - 1;
|
|
|
|
|
2007-12-16 22:52:33 +05:30
|
|
|
for (i = 4; i < g_partitions; i++) {
|
2002-11-27 03:30:21 +05:30
|
|
|
total++;
|
|
|
|
p = ptes[i].part_table;
|
|
|
|
if (!p->sys_ind) {
|
2007-12-16 22:52:33 +05:30
|
|
|
if (i != 4 || i + 1 < g_partitions)
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Warning: partition %d "
|
|
|
|
"is empty\n", i + 1);
|
|
|
|
} else if (first[i] < extended_offset || last[i] > e_last) {
|
|
|
|
printf("Logical partition %d not entirely in "
|
|
|
|
"partition %d\n", i + 1, ext_index + 1);
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-16 22:52:33 +05:30
|
|
|
if (total > g_heads * g_sectors * g_cylinders)
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Total allocated sectors %d greater than the maximum "
|
2007-12-16 22:52:33 +05:30
|
|
|
"%d\n", total, g_heads * g_sectors * g_cylinders);
|
2007-03-19 20:13:38 +05:30
|
|
|
else {
|
2007-12-16 22:52:33 +05:30
|
|
|
total = g_heads * g_sectors * g_cylinders - total;
|
2007-03-19 20:13:38 +05:30
|
|
|
if (total != 0)
|
|
|
|
printf("%d unallocated sectors\n", total);
|
|
|
|
}
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
add_partition(int n, int sys)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
char mesg[256]; /* 48 does not suffice in Japanese */
|
2006-05-26 07:18:17 +05:30
|
|
|
int i, num_read = 0;
|
2002-11-27 03:30:21 +05:30
|
|
|
struct partition *p = ptes[n].part_table;
|
|
|
|
struct partition *q = ptes[ext_index].part_table;
|
2007-06-02 18:16:55 +05:30
|
|
|
ullong limit, temp;
|
|
|
|
ullong start, stop = 0;
|
2007-12-16 22:52:33 +05:30
|
|
|
ullong first[g_partitions], last[g_partitions];
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
if (p && p->sys_ind) {
|
2007-03-19 20:13:38 +05:30
|
|
|
printf(msg_part_already_defined, n + 1);
|
2002-11-27 03:30:21 +05:30
|
|
|
return;
|
|
|
|
}
|
|
|
|
fill_bounds(first, last);
|
|
|
|
if (n < 4) {
|
|
|
|
start = sector_offset;
|
2003-07-30 14:10:37 +05:30
|
|
|
if (display_in_cyl_units || !total_number_of_sectors)
|
2007-12-16 22:52:33 +05:30
|
|
|
limit = (ullong) g_heads * g_sectors * g_cylinders - 1;
|
2002-11-27 03:30:21 +05:30
|
|
|
else
|
2007-06-02 18:16:55 +05:30
|
|
|
limit = total_number_of_sectors - 1;
|
2002-11-27 03:30:21 +05:30
|
|
|
if (extended_offset) {
|
|
|
|
first[ext_index] = extended_offset;
|
|
|
|
last[ext_index] = get_start_sect(q) +
|
|
|
|
get_nr_sects(q) - 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
start = extended_offset + sector_offset;
|
|
|
|
limit = get_start_sect(q) + get_nr_sects(q) - 1;
|
|
|
|
}
|
|
|
|
if (display_in_cyl_units)
|
2007-12-16 22:52:33 +05:30
|
|
|
for (i = 0; i < g_partitions; i++)
|
2002-11-27 03:30:21 +05:30
|
|
|
first[i] = (cround(first[i]) - 1) * units_per_sector;
|
|
|
|
|
2007-03-19 20:13:38 +05:30
|
|
|
snprintf(mesg, sizeof(mesg), "First %s", str_units(SINGULAR));
|
2002-11-27 03:30:21 +05:30
|
|
|
do {
|
|
|
|
temp = start;
|
2007-12-16 22:52:33 +05:30
|
|
|
for (i = 0; i < g_partitions; i++) {
|
2002-11-27 03:30:21 +05:30
|
|
|
int lastplusoff;
|
|
|
|
|
|
|
|
if (start == ptes[i].offset)
|
|
|
|
start += sector_offset;
|
2006-02-24 21:59:00 +05:30
|
|
|
lastplusoff = last[i] + ((n < 4) ? 0 : sector_offset);
|
2002-11-27 03:30:21 +05:30
|
|
|
if (start >= first[i] && start <= lastplusoff)
|
|
|
|
start = lastplusoff + 1;
|
|
|
|
}
|
|
|
|
if (start > limit)
|
|
|
|
break;
|
2006-05-26 07:18:17 +05:30
|
|
|
if (start >= temp+units_per_sector && num_read) {
|
2007-06-02 18:16:55 +05:30
|
|
|
printf("Sector %lld is already allocated\n", temp);
|
2002-11-27 03:30:21 +05:30
|
|
|
temp = start;
|
2006-05-26 07:18:17 +05:30
|
|
|
num_read = 0;
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
2006-05-26 07:18:17 +05:30
|
|
|
if (!num_read && start == temp) {
|
2007-06-02 18:16:55 +05:30
|
|
|
ullong saved_start;
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
saved_start = start;
|
|
|
|
start = read_int(cround(saved_start), cround(saved_start), cround(limit),
|
|
|
|
0, mesg);
|
|
|
|
if (display_in_cyl_units) {
|
|
|
|
start = (start - 1) * units_per_sector;
|
|
|
|
if (start < saved_start) start = saved_start;
|
|
|
|
}
|
2006-05-26 07:18:17 +05:30
|
|
|
num_read = 1;
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
2006-05-26 07:18:17 +05:30
|
|
|
} while (start != temp || !num_read);
|
2002-11-27 03:30:21 +05:30
|
|
|
if (n > 4) { /* NOT for fifth partition */
|
|
|
|
struct pte *pe = &ptes[n];
|
|
|
|
|
|
|
|
pe->offset = start - sector_offset;
|
|
|
|
if (pe->offset == extended_offset) { /* must be corrected */
|
|
|
|
pe->offset++;
|
|
|
|
if (sector_offset == 1)
|
|
|
|
start++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-16 22:52:33 +05:30
|
|
|
for (i = 0; i < g_partitions; i++) {
|
2002-11-27 03:30:21 +05:30
|
|
|
struct pte *pe = &ptes[i];
|
|
|
|
|
|
|
|
if (start < pe->offset && limit >= pe->offset)
|
|
|
|
limit = pe->offset - 1;
|
|
|
|
if (start < first[i] && limit >= first[i])
|
|
|
|
limit = first[i] - 1;
|
|
|
|
}
|
|
|
|
if (start > limit) {
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("No free sectors available\n");
|
2002-11-27 03:30:21 +05:30
|
|
|
if (n > 4)
|
2007-12-16 22:52:33 +05:30
|
|
|
g_partitions--;
|
2002-11-27 03:30:21 +05:30
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (cround(start) == cround(limit)) {
|
|
|
|
stop = limit;
|
|
|
|
} else {
|
|
|
|
snprintf(mesg, sizeof(mesg),
|
2007-03-19 20:13:38 +05:30
|
|
|
"Last %s or +size or +sizeM or +sizeK",
|
2002-11-27 03:30:21 +05:30
|
|
|
str_units(SINGULAR));
|
|
|
|
stop = read_int(cround(start), cround(limit), cround(limit),
|
|
|
|
cround(start), mesg);
|
|
|
|
if (display_in_cyl_units) {
|
|
|
|
stop = stop * units_per_sector - 1;
|
|
|
|
if (stop >limit)
|
|
|
|
stop = limit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
set_partition(n, 0, start, stop, sys);
|
|
|
|
if (n > 4)
|
|
|
|
set_partition(n - 1, 1, ptes[n].offset, stop, EXTENDED);
|
|
|
|
|
2006-02-24 21:59:00 +05:30
|
|
|
if (IS_EXTENDED(sys)) {
|
2002-11-27 03:30:21 +05:30
|
|
|
struct pte *pe4 = &ptes[4];
|
|
|
|
struct pte *pen = &ptes[n];
|
|
|
|
|
|
|
|
ext_index = n;
|
|
|
|
pen->ext_pointer = p;
|
|
|
|
pe4->offset = extended_offset = start;
|
2006-08-04 01:37:35 +05:30
|
|
|
pe4->sectorbuffer = xzalloc(sector_size);
|
2002-11-27 03:30:21 +05:30
|
|
|
pe4->part_table = pt_offset(pe4->sectorbuffer, 0);
|
|
|
|
pe4->ext_pointer = pe4->part_table + 1;
|
|
|
|
pe4->changed = 1;
|
2007-12-16 22:52:33 +05:30
|
|
|
g_partitions = 5;
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
add_logical(void)
|
|
|
|
{
|
2007-12-16 22:52:33 +05:30
|
|
|
if (g_partitions > 5 || ptes[4].part_table->sys_ind) {
|
|
|
|
struct pte *pe = &ptes[g_partitions];
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2006-08-04 01:37:35 +05:30
|
|
|
pe->sectorbuffer = xzalloc(sector_size);
|
2002-11-27 03:30:21 +05:30
|
|
|
pe->part_table = pt_offset(pe->sectorbuffer, 0);
|
|
|
|
pe->ext_pointer = pe->part_table + 1;
|
|
|
|
pe->offset = 0;
|
|
|
|
pe->changed = 1;
|
2007-12-16 22:52:33 +05:30
|
|
|
g_partitions++;
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
2007-12-16 22:52:33 +05:30
|
|
|
add_partition(g_partitions - 1, LINUX_NATIVE);
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
new_partition(void)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
int i, free_primary = 0;
|
|
|
|
|
|
|
|
if (warn_geometry())
|
|
|
|
return;
|
|
|
|
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_SUN) {
|
2007-12-16 22:52:33 +05:30
|
|
|
add_sun_partition(get_partition(0, g_partitions), LINUX_NATIVE);
|
2002-11-27 03:30:21 +05:30
|
|
|
return;
|
|
|
|
}
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_SGI) {
|
2007-12-16 22:52:33 +05:30
|
|
|
sgi_add_partition(get_partition(0, g_partitions), LINUX_NATIVE);
|
2002-11-27 03:30:21 +05:30
|
|
|
return;
|
|
|
|
}
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_AIX) {
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Sorry - this fdisk cannot handle AIX disk labels.\n"
|
|
|
|
"If you want to add DOS-type partitions, create a new empty DOS partition\n"
|
|
|
|
"table first (use 'o'). This will destroy the present disk contents.\n");
|
2002-11-27 03:30:21 +05:30
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
free_primary += !ptes[i].part_table->sys_ind;
|
2003-07-03 15:32:32 +05:30
|
|
|
|
2007-12-16 22:52:33 +05:30
|
|
|
if (!free_primary && g_partitions >= MAXIMUM_PARTS) {
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("The maximum number of partitions has been created\n");
|
2004-05-19 16:19:17 +05:30
|
|
|
return;
|
2006-02-24 21:59:00 +05:30
|
|
|
}
|
2003-07-03 15:32:32 +05:30
|
|
|
|
2002-11-27 03:30:21 +05:30
|
|
|
if (!free_primary) {
|
|
|
|
if (extended_offset)
|
|
|
|
add_logical();
|
|
|
|
else
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("You must delete some partition and add "
|
|
|
|
"an extended partition first\n");
|
2002-11-27 03:30:21 +05:30
|
|
|
} else {
|
2007-03-19 20:15:10 +05:30
|
|
|
char c, line[80];
|
2007-01-22 12:51:38 +05:30
|
|
|
snprintf(line, sizeof(line),
|
|
|
|
"Command action\n"
|
|
|
|
" %s\n"
|
|
|
|
" p primary partition (1-4)\n",
|
|
|
|
(extended_offset ?
|
|
|
|
"l logical (5 or over)" : "e extended"));
|
2002-11-27 03:30:21 +05:30
|
|
|
while (1) {
|
2006-10-13 01:00:44 +05:30
|
|
|
c = read_nonempty(line);
|
|
|
|
if (c == 'p' || c == 'P') {
|
2002-11-27 03:30:21 +05:30
|
|
|
i = get_nonexisting_partition(0, 4);
|
|
|
|
if (i >= 0)
|
|
|
|
add_partition(i, LINUX_NATIVE);
|
|
|
|
return;
|
|
|
|
}
|
2007-03-19 20:13:38 +05:30
|
|
|
if (c == 'l' && extended_offset) {
|
2002-11-27 03:30:21 +05:30
|
|
|
add_logical();
|
|
|
|
return;
|
|
|
|
}
|
2007-03-19 20:13:38 +05:30
|
|
|
if (c == 'e' && !extended_offset) {
|
2002-11-27 03:30:21 +05:30
|
|
|
i = get_nonexisting_partition(0, 4);
|
|
|
|
if (i >= 0)
|
|
|
|
add_partition(i, EXTENDED);
|
|
|
|
return;
|
|
|
|
}
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Invalid partition number "
|
|
|
|
"for type '%c'\n", c);
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
write_table(void)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
int i;
|
|
|
|
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_DOS) {
|
2006-02-24 21:59:00 +05:30
|
|
|
for (i = 0; i < 3; i++)
|
2002-11-27 03:30:21 +05:30
|
|
|
if (ptes[i].changed)
|
|
|
|
ptes[3].changed = 1;
|
2007-12-16 22:52:33 +05:30
|
|
|
for (i = 3; i < g_partitions; i++) {
|
2002-11-27 03:30:21 +05:30
|
|
|
struct pte *pe = &ptes[i];
|
|
|
|
|
|
|
|
if (pe->changed) {
|
|
|
|
write_part_table_flag(pe->sectorbuffer);
|
|
|
|
write_sector(pe->offset, pe->sectorbuffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-10-13 01:00:44 +05:30
|
|
|
else if (LABEL_IS_SGI) {
|
2002-11-27 03:30:21 +05:30
|
|
|
/* no test on change? the printf below might be mistaken */
|
|
|
|
sgi_write_table();
|
|
|
|
}
|
2006-10-13 01:00:44 +05:30
|
|
|
else if (LABEL_IS_SUN) {
|
2002-11-27 03:30:21 +05:30
|
|
|
int needw = 0;
|
|
|
|
|
2006-02-24 21:59:00 +05:30
|
|
|
for (i = 0; i < 8; i++)
|
2002-11-27 03:30:21 +05:30
|
|
|
if (ptes[i].changed)
|
|
|
|
needw = 1;
|
|
|
|
if (needw)
|
|
|
|
sun_write_table();
|
|
|
|
}
|
|
|
|
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("The partition table has been altered!\n\n");
|
2002-11-27 03:30:21 +05:30
|
|
|
reread_partition_table(1);
|
|
|
|
}
|
|
|
|
|
2006-02-24 21:59:00 +05:30
|
|
|
static void
|
|
|
|
reread_partition_table(int leave)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
int i;
|
|
|
|
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Calling ioctl() to re-read partition table\n");
|
2002-11-27 03:30:21 +05:30
|
|
|
sync();
|
2007-03-19 20:13:38 +05:30
|
|
|
/* sleep(2); Huh? */
|
2008-04-17 05:42:10 +05:30
|
|
|
i = ioctl_or_perror(dev_fd, BLKRRPART, NULL,
|
2007-07-15 03:37:14 +05:30
|
|
|
"WARNING: rereading partition table "
|
2006-12-20 02:02:02 +05:30
|
|
|
"failed, kernel still uses old table");
|
|
|
|
#if 0
|
2002-11-27 03:30:21 +05:30
|
|
|
if (dos_changed)
|
2006-02-24 21:59:00 +05:30
|
|
|
printf(
|
2007-03-19 20:13:38 +05:30
|
|
|
"\nWARNING: If you have created or modified any DOS 6.x\n"
|
2002-11-27 03:30:21 +05:30
|
|
|
"partitions, please see the fdisk manual page for additional\n"
|
2007-03-19 20:13:38 +05:30
|
|
|
"information\n");
|
2006-12-20 02:02:02 +05:30
|
|
|
#endif
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
if (leave) {
|
2006-12-20 02:02:02 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
2008-04-17 07:22:28 +05:30
|
|
|
close_dev_fd();
|
2006-12-20 02:02:02 +05:30
|
|
|
exit(i != 0);
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
}
|
2006-12-31 00:12:29 +05:30
|
|
|
#endif /* FEATURE_FDISK_WRITABLE */
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_ADVANCED
|
2002-11-27 03:30:21 +05:30
|
|
|
#define MAX_PER_LINE 16
|
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
print_buffer(char *pbuffer)
|
|
|
|
{
|
|
|
|
int i,l;
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
for (i = 0, l = 0; i < sector_size; i++, l++) {
|
|
|
|
if (l == 0)
|
|
|
|
printf("0x%03X:", i);
|
|
|
|
printf(" %02X", (unsigned char) pbuffer[i]);
|
|
|
|
if (l == MAX_PER_LINE - 1) {
|
2007-09-27 15:50:47 +05:30
|
|
|
bb_putchar('\n');
|
2002-11-27 03:30:21 +05:30
|
|
|
l = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (l > 0)
|
2007-09-27 15:50:47 +05:30
|
|
|
bb_putchar('\n');
|
|
|
|
bb_putchar('\n');
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
print_raw(void)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
int i;
|
|
|
|
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Device: %s\n", disk_device);
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_SGI || LABEL_IS_SUN)
|
2002-11-27 03:30:21 +05:30
|
|
|
print_buffer(MBRbuffer);
|
2006-10-13 01:00:44 +05:30
|
|
|
else {
|
2007-12-16 22:52:33 +05:30
|
|
|
for (i = 3; i < g_partitions; i++)
|
2002-11-27 03:30:21 +05:30
|
|
|
print_buffer(ptes[i].sectorbuffer);
|
2006-10-13 01:00:44 +05:30
|
|
|
}
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
move_begin(int i)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
struct pte *pe = &ptes[i];
|
|
|
|
struct partition *p = pe->part_table;
|
2007-06-02 18:16:55 +05:30
|
|
|
ullong new, first;
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
if (warn_geometry())
|
|
|
|
return;
|
2006-02-24 21:59:00 +05:30
|
|
|
if (!p->sys_ind || !get_nr_sects(p) || IS_EXTENDED(p->sys_ind)) {
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Partition %d has no data area\n", i + 1);
|
2002-11-27 03:30:21 +05:30
|
|
|
return;
|
|
|
|
}
|
|
|
|
first = get_partition_start(pe);
|
|
|
|
new = read_int(first, first, first + get_nr_sects(p) - 1, first,
|
2007-03-19 20:13:38 +05:30
|
|
|
"New beginning of data") - pe->offset;
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
if (new != get_nr_sects(p)) {
|
|
|
|
first = get_nr_sects(p) + get_start_sect(p) - new;
|
|
|
|
set_nr_sects(p, first);
|
|
|
|
set_start_sect(p, new);
|
|
|
|
pe->changed = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
xselect(void)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
char c;
|
|
|
|
|
2006-02-24 21:59:00 +05:30
|
|
|
while (1) {
|
2007-09-27 15:50:47 +05:30
|
|
|
bb_putchar('\n');
|
2007-03-19 20:13:38 +05:30
|
|
|
c = tolower(read_nonempty("Expert command (m for help): "));
|
2002-11-27 03:30:21 +05:30
|
|
|
switch (c) {
|
|
|
|
case 'a':
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_SUN)
|
2002-11-27 03:30:21 +05:30
|
|
|
sun_set_alt_cyl();
|
|
|
|
break;
|
|
|
|
case 'b':
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_DOS)
|
2007-12-16 22:52:33 +05:30
|
|
|
move_begin(get_partition(0, g_partitions));
|
2002-11-27 03:30:21 +05:30
|
|
|
break;
|
|
|
|
case 'c':
|
2007-12-16 22:52:33 +05:30
|
|
|
user_cylinders = g_cylinders =
|
|
|
|
read_int(1, g_cylinders, 1048576, 0,
|
2007-03-19 20:13:38 +05:30
|
|
|
"Number of cylinders");
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_SUN)
|
2007-12-16 22:52:33 +05:30
|
|
|
sun_set_ncyl(g_cylinders);
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_DOS)
|
2002-11-27 03:30:21 +05:30
|
|
|
warn_cylinders();
|
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
print_raw();
|
|
|
|
break;
|
|
|
|
case 'e':
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_SGI)
|
2002-11-27 03:30:21 +05:30
|
|
|
sgi_set_xcyl();
|
2006-10-13 01:00:44 +05:30
|
|
|
else if (LABEL_IS_SUN)
|
2002-11-27 03:30:21 +05:30
|
|
|
sun_set_xcyl();
|
2006-10-13 01:00:44 +05:30
|
|
|
else if (LABEL_IS_DOS)
|
2002-11-27 03:30:21 +05:30
|
|
|
x_list_table(1);
|
|
|
|
break;
|
|
|
|
case 'f':
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_DOS)
|
2002-11-27 03:30:21 +05:30
|
|
|
fix_partition_table_order();
|
|
|
|
break;
|
|
|
|
case 'g':
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_SGI_LABEL
|
2002-11-27 03:30:21 +05:30
|
|
|
create_sgilabel();
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case 'h':
|
2007-12-16 22:52:33 +05:30
|
|
|
user_heads = g_heads = read_int(1, g_heads, 256, 0,
|
2007-03-19 20:13:38 +05:30
|
|
|
"Number of heads");
|
2002-11-27 03:30:21 +05:30
|
|
|
update_units();
|
|
|
|
break;
|
|
|
|
case 'i':
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_SUN)
|
2002-11-27 03:30:21 +05:30
|
|
|
sun_set_ilfact();
|
|
|
|
break;
|
|
|
|
case 'o':
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_SUN)
|
2002-11-27 03:30:21 +05:30
|
|
|
sun_set_rspeed();
|
|
|
|
break;
|
|
|
|
case 'p':
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_SUN)
|
2002-11-27 03:30:21 +05:30
|
|
|
list_table(1);
|
|
|
|
else
|
|
|
|
x_list_table(0);
|
|
|
|
break;
|
|
|
|
case 'q':
|
2008-04-17 05:42:10 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
2008-04-17 07:22:28 +05:30
|
|
|
close_dev_fd();
|
2007-09-27 15:50:47 +05:30
|
|
|
bb_putchar('\n');
|
2008-05-19 14:59:47 +05:30
|
|
|
exit(EXIT_SUCCESS);
|
2002-11-27 03:30:21 +05:30
|
|
|
case 'r':
|
|
|
|
return;
|
|
|
|
case 's':
|
2007-12-16 22:52:33 +05:30
|
|
|
user_sectors = g_sectors = read_int(1, g_sectors, 63, 0,
|
2007-03-19 20:13:38 +05:30
|
|
|
"Number of sectors");
|
2002-11-27 03:30:21 +05:30
|
|
|
if (dos_compatible_flag) {
|
2007-12-16 22:52:33 +05:30
|
|
|
sector_offset = g_sectors;
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Warning: setting sector offset for DOS "
|
|
|
|
"compatiblity\n");
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
update_units();
|
|
|
|
break;
|
|
|
|
case 'v':
|
|
|
|
verify();
|
|
|
|
break;
|
|
|
|
case 'w':
|
|
|
|
write_table(); /* does not return */
|
|
|
|
break;
|
|
|
|
case 'y':
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_SUN)
|
2002-11-27 03:30:21 +05:30
|
|
|
sun_set_pcylcount();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
xmenu();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* ADVANCED mode */
|
|
|
|
|
|
|
|
static int
|
2006-02-24 21:59:00 +05:30
|
|
|
is_ide_cdrom_or_tape(const char *device)
|
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
FILE *procf;
|
|
|
|
char buf[100];
|
|
|
|
struct stat statbuf;
|
|
|
|
int is_ide = 0;
|
|
|
|
|
|
|
|
/* No device was given explicitly, and we are trying some
|
|
|
|
likely things. But opening /dev/hdc may produce errors like
|
|
|
|
"hdc: tray open or drive not ready"
|
|
|
|
if it happens to be a CD-ROM drive. It even happens that
|
|
|
|
the process hangs on the attempt to read a music CD.
|
|
|
|
So try to be careful. This only works since 2.1.73. */
|
|
|
|
|
|
|
|
if (strncmp("/dev/hd", device, 7))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
snprintf(buf, sizeof(buf), "/proc/ide/%s/media", device+5);
|
2008-07-22 04:35:26 +05:30
|
|
|
procf = fopen_for_read(buf);
|
2002-11-27 03:30:21 +05:30
|
|
|
if (procf != NULL && fgets(buf, sizeof(buf), procf))
|
|
|
|
is_ide = (!strncmp(buf, "cdrom", 5) ||
|
|
|
|
!strncmp(buf, "tape", 4));
|
|
|
|
else
|
|
|
|
/* Now when this proc file does not exist, skip the
|
|
|
|
device when it is read-only. */
|
|
|
|
if (stat(device, &statbuf) == 0)
|
|
|
|
is_ide = ((statbuf.st_mode & 0222) == 0);
|
|
|
|
|
|
|
|
if (procf)
|
|
|
|
fclose(procf);
|
|
|
|
return is_ide;
|
|
|
|
}
|
|
|
|
|
2006-02-25 09:16:10 +05:30
|
|
|
|
2002-11-27 03:30:21 +05:30
|
|
|
static void
|
2008-04-17 05:42:10 +05:30
|
|
|
open_list_and_close(const char *device, int user_specified)
|
2006-02-24 21:59:00 +05:30
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
int gb;
|
|
|
|
|
|
|
|
disk_device = device;
|
|
|
|
if (setjmp(listingbuf))
|
|
|
|
return;
|
|
|
|
if (!user_specified)
|
|
|
|
if (is_ide_cdrom_or_tape(device))
|
|
|
|
return;
|
2008-04-17 05:42:10 +05:30
|
|
|
|
|
|
|
/* Open disk_device, save file descriptor to dev_fd */
|
|
|
|
errno = 0;
|
|
|
|
gb = get_boot(TRY_ONLY);
|
|
|
|
if (gb > 0) { /* I/O error */
|
2002-11-27 03:30:21 +05:30
|
|
|
/* Ignore other errors, since we try IDE
|
|
|
|
and SCSI hard disks which may not be
|
|
|
|
installed on the system. */
|
2008-04-17 05:42:10 +05:30
|
|
|
if (user_specified || errno == EACCES)
|
|
|
|
bb_perror_msg("can't open '%s'", device);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gb < 0) { /* no DOS signature */
|
|
|
|
list_disk_geometry();
|
|
|
|
if (LABEL_IS_AIX)
|
|
|
|
goto ret;
|
|
|
|
#if ENABLE_FEATURE_OSF_LABEL
|
|
|
|
if (bsd_trydev(device) < 0)
|
|
|
|
#endif
|
|
|
|
printf("Disk %s doesn't contain a valid "
|
|
|
|
"partition table\n", device);
|
|
|
|
} else {
|
|
|
|
list_table(0);
|
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
|
|
|
if (!LABEL_IS_SUN && g_partitions > 4) {
|
|
|
|
delete_partition(ext_index);
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
2008-04-17 05:42:10 +05:30
|
|
|
#endif
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
2008-04-17 05:42:10 +05:30
|
|
|
ret:
|
2008-04-17 07:22:28 +05:30
|
|
|
close_dev_fd();
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* for fdisk -l: try all things in /proc/partitions
|
|
|
|
that look like a partition name (do not end in a digit) */
|
|
|
|
static void
|
2008-04-17 05:42:10 +05:30
|
|
|
list_devs_in_proc_partititons(void)
|
2006-02-24 21:59:00 +05:30
|
|
|
{
|
2002-11-27 03:30:21 +05:30
|
|
|
FILE *procpt;
|
|
|
|
char line[100], ptname[100], devname[120], *s;
|
|
|
|
int ma, mi, sz;
|
|
|
|
|
2006-10-27 04:55:17 +05:30
|
|
|
procpt = fopen_or_warn("/proc/partitions", "r");
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
while (fgets(line, sizeof(line), procpt)) {
|
2006-02-24 21:59:00 +05:30
|
|
|
if (sscanf(line, " %d %d %d %[^\n ]",
|
|
|
|
&ma, &mi, &sz, ptname) != 4)
|
2002-11-27 03:30:21 +05:30
|
|
|
continue;
|
2008-03-17 14:12:43 +05:30
|
|
|
for (s = ptname; *s; s++)
|
|
|
|
continue;
|
2002-11-27 03:30:21 +05:30
|
|
|
if (isdigit(s[-1]))
|
|
|
|
continue;
|
2003-01-04 17:26:06 +05:30
|
|
|
sprintf(devname, "/dev/%s", ptname);
|
2008-04-17 05:42:10 +05:30
|
|
|
open_list_and_close(devname, 0);
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_CLEAN_UP
|
2002-11-27 03:30:21 +05:30
|
|
|
fclose(procpt);
|
2003-01-04 17:26:06 +05:30
|
|
|
#endif
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
2002-11-27 03:30:21 +05:30
|
|
|
static void
|
2006-02-24 21:59:00 +05:30
|
|
|
unknown_command(int c)
|
|
|
|
{
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("%c: unknown command\n", c);
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
2003-01-04 17:26:06 +05:30
|
|
|
#endif
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int fdisk_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2006-02-24 21:59:00 +05:30
|
|
|
int fdisk_main(int argc, char **argv)
|
|
|
|
{
|
2006-11-29 17:30:28 +05:30
|
|
|
unsigned opt;
|
2002-11-27 03:30:21 +05:30
|
|
|
/*
|
|
|
|
* fdisk -v
|
|
|
|
* fdisk -l [-b sectorsize] [-u] device ...
|
|
|
|
* fdisk -s [partition] ...
|
|
|
|
* fdisk [-b sectorsize] [-u] device
|
|
|
|
*
|
|
|
|
* Options -C, -H, -S set the geometry.
|
|
|
|
*/
|
2007-12-16 22:52:33 +05:30
|
|
|
INIT_G();
|
2007-03-18 20:12:45 +05:30
|
|
|
|
2008-04-17 07:22:28 +05:30
|
|
|
close_dev_fd(); /* needed: fd 3 must not stay closed */
|
2008-04-17 05:42:10 +05:30
|
|
|
|
2008-02-11 01:14:20 +05:30
|
|
|
opt_complementary = "b+:C+:H+:S+"; /* numeric params */
|
2007-08-18 21:02:12 +05:30
|
|
|
opt = getopt32(argv, "b:C:H:lS:u" USE_FEATURE_FDISK_BLKSIZE("s"),
|
2008-02-11 01:14:20 +05:30
|
|
|
§or_size, &user_cylinders, &user_heads, &user_sectors);
|
2006-11-29 17:30:28 +05:30
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
if (opt & OPT_b) { // -b
|
|
|
|
/* Ugly: this sector size is really per device,
|
|
|
|
so cannot be combined with multiple disks,
|
|
|
|
and the same goes for the C/H/S options.
|
|
|
|
*/
|
2008-02-11 01:14:20 +05:30
|
|
|
if (sector_size != 512 && sector_size != 1024
|
|
|
|
&& sector_size != 2048)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
2006-11-29 17:30:28 +05:30
|
|
|
sector_offset = 2;
|
|
|
|
user_set_sector_size = 1;
|
|
|
|
}
|
2008-02-11 01:14:20 +05:30
|
|
|
if (user_heads <= 0 || user_heads >= 256)
|
|
|
|
user_heads = 0;
|
|
|
|
if (user_sectors <= 0 || user_sectors >= 64)
|
|
|
|
user_sectors = 0;
|
|
|
|
if (opt & OPT_u)
|
|
|
|
display_in_cyl_units = 0; // -u
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
|
|
|
if (opt & OPT_l) {
|
2002-11-27 03:30:21 +05:30
|
|
|
nowarn = 1;
|
2003-01-04 17:26:06 +05:30
|
|
|
#endif
|
2008-03-17 14:12:43 +05:30
|
|
|
if (*argv) {
|
2002-11-27 03:30:21 +05:30
|
|
|
listing = 1;
|
2008-03-17 14:12:43 +05:30
|
|
|
do {
|
2008-04-17 05:42:10 +05:30
|
|
|
open_list_and_close(*argv, 1);
|
2008-03-17 14:12:43 +05:30
|
|
|
} while (*++argv);
|
2002-11-27 03:30:21 +05:30
|
|
|
} else {
|
2008-03-17 14:12:43 +05:30
|
|
|
/* we don't have device names, */
|
|
|
|
/* use /proc/partitions instead */
|
2008-04-17 05:42:10 +05:30
|
|
|
list_devs_in_proc_partititons();
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
return 0;
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
2003-01-04 17:26:06 +05:30
|
|
|
#endif
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_BLKSIZE
|
|
|
|
if (opt & OPT_s) {
|
2003-01-04 17:26:06 +05:30
|
|
|
int j;
|
2002-11-27 03:30:21 +05:30
|
|
|
|
|
|
|
nowarn = 1;
|
2006-11-29 17:30:28 +05:30
|
|
|
if (argc <= 0)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
2006-11-29 17:30:28 +05:30
|
|
|
for (j = 0; j < argc; j++) {
|
2008-03-17 14:12:43 +05:30
|
|
|
unsigned long long size;
|
|
|
|
fd = xopen(argv[j], O_RDONLY);
|
2008-04-17 05:42:10 +05:30
|
|
|
size = bb_BLKGETSIZE_sectors(fd) / 2;
|
2002-11-27 03:30:21 +05:30
|
|
|
close(fd);
|
2006-11-29 17:30:28 +05:30
|
|
|
if (argc == 1)
|
2008-03-17 14:12:43 +05:30
|
|
|
printf("%lld\n", size);
|
2002-11-27 03:30:21 +05:30
|
|
|
else
|
2008-03-17 14:12:43 +05:30
|
|
|
printf("%s: %lld\n", argv[j], size);
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2003-01-04 17:26:06 +05:30
|
|
|
#endif
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_WRITABLE
|
|
|
|
if (argc != 1)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2006-11-29 17:30:28 +05:30
|
|
|
disk_device = argv[0];
|
2008-04-17 05:42:10 +05:30
|
|
|
get_boot(OPEN_MAIN);
|
2002-11-27 03:30:21 +05:30
|
|
|
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_OSF) {
|
2002-11-27 03:30:21 +05:30
|
|
|
/* OSF label, and no DOS label */
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("Detected an OSF/1 disklabel on %s, entering "
|
|
|
|
"disklabel mode\n", disk_device);
|
2006-10-14 21:46:03 +05:30
|
|
|
bsd_select();
|
2006-02-25 09:16:10 +05:30
|
|
|
/*Why do we do this? It seems to be counter-intuitive*/
|
2008-04-17 05:42:10 +05:30
|
|
|
current_label_type = LABEL_DOS;
|
2002-11-27 03:30:21 +05:30
|
|
|
/* If we return we may want to make an empty DOS label? */
|
|
|
|
}
|
|
|
|
|
|
|
|
while (1) {
|
2006-12-30 23:27:03 +05:30
|
|
|
int c;
|
2007-09-27 15:50:47 +05:30
|
|
|
bb_putchar('\n');
|
2007-03-19 20:13:38 +05:30
|
|
|
c = tolower(read_nonempty("Command (m for help): "));
|
2002-11-27 03:30:21 +05:30
|
|
|
switch (c) {
|
|
|
|
case 'a':
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_DOS)
|
2007-12-16 22:52:33 +05:30
|
|
|
toggle_active(get_partition(1, g_partitions));
|
2006-10-13 01:00:44 +05:30
|
|
|
else if (LABEL_IS_SUN)
|
2007-12-16 22:52:33 +05:30
|
|
|
toggle_sunflags(get_partition(1, g_partitions),
|
2002-11-27 03:30:21 +05:30
|
|
|
0x01);
|
2006-10-13 01:00:44 +05:30
|
|
|
else if (LABEL_IS_SGI)
|
2002-11-27 03:30:21 +05:30
|
|
|
sgi_set_bootpartition(
|
2007-12-16 22:52:33 +05:30
|
|
|
get_partition(1, g_partitions));
|
2002-11-27 03:30:21 +05:30
|
|
|
else
|
|
|
|
unknown_command(c);
|
|
|
|
break;
|
|
|
|
case 'b':
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_SGI) {
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("\nThe current boot file is: %s\n",
|
2006-02-24 21:59:00 +05:30
|
|
|
sgi_get_bootfile());
|
2007-03-19 20:13:38 +05:30
|
|
|
if (read_maybe_empty("Please enter the name of the "
|
|
|
|
"new boot file: ") == '\n')
|
|
|
|
printf("Boot file unchanged\n");
|
2002-11-27 03:30:21 +05:30
|
|
|
else
|
|
|
|
sgi_set_bootfile(line_ptr);
|
2006-11-29 17:30:28 +05:30
|
|
|
}
|
|
|
|
#if ENABLE_FEATURE_OSF_LABEL
|
|
|
|
else
|
2006-10-14 21:46:03 +05:30
|
|
|
bsd_select();
|
2002-11-27 03:30:21 +05:30
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case 'c':
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_DOS)
|
2002-11-27 03:30:21 +05:30
|
|
|
toggle_dos_compatibility_flag();
|
2006-10-13 01:00:44 +05:30
|
|
|
else if (LABEL_IS_SUN)
|
2007-12-16 22:52:33 +05:30
|
|
|
toggle_sunflags(get_partition(1, g_partitions),
|
2002-11-27 03:30:21 +05:30
|
|
|
0x10);
|
2006-10-13 01:00:44 +05:30
|
|
|
else if (LABEL_IS_SGI)
|
2002-11-27 03:30:21 +05:30
|
|
|
sgi_set_swappartition(
|
2007-12-16 22:52:33 +05:30
|
|
|
get_partition(1, g_partitions));
|
2002-11-27 03:30:21 +05:30
|
|
|
else
|
|
|
|
unknown_command(c);
|
|
|
|
break;
|
|
|
|
case 'd':
|
2003-01-04 17:26:06 +05:30
|
|
|
{
|
2003-07-30 14:10:37 +05:30
|
|
|
int j;
|
|
|
|
/* If sgi_label then don't use get_existing_partition,
|
|
|
|
let the user select a partition, since
|
|
|
|
get_existing_partition() only works for Linux-like
|
|
|
|
partition tables */
|
2006-10-13 01:00:44 +05:30
|
|
|
if (!LABEL_IS_SGI) {
|
2007-12-16 22:52:33 +05:30
|
|
|
j = get_existing_partition(1, g_partitions);
|
2003-07-30 14:10:37 +05:30
|
|
|
} else {
|
2007-12-16 22:52:33 +05:30
|
|
|
j = get_partition(1, g_partitions);
|
2003-07-30 14:10:37 +05:30
|
|
|
}
|
2003-01-04 17:26:06 +05:30
|
|
|
if (j >= 0)
|
|
|
|
delete_partition(j);
|
|
|
|
}
|
2002-11-27 03:30:21 +05:30
|
|
|
break;
|
|
|
|
case 'i':
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_SGI)
|
2002-11-27 03:30:21 +05:30
|
|
|
create_sgiinfo();
|
|
|
|
else
|
|
|
|
unknown_command(c);
|
|
|
|
case 'l':
|
|
|
|
list_types(get_sys_types());
|
|
|
|
break;
|
|
|
|
case 'm':
|
|
|
|
menu();
|
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
new_partition();
|
|
|
|
break;
|
|
|
|
case 'o':
|
|
|
|
create_doslabel();
|
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
list_table(0);
|
|
|
|
break;
|
|
|
|
case 'q':
|
2008-04-17 07:22:28 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
close_dev_fd();
|
2007-09-27 15:50:47 +05:30
|
|
|
bb_putchar('\n');
|
2002-11-27 03:30:21 +05:30
|
|
|
return 0;
|
|
|
|
case 's':
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_SUN_LABEL
|
2002-11-27 03:30:21 +05:30
|
|
|
create_sunlabel();
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
change_sysid();
|
|
|
|
break;
|
|
|
|
case 'u':
|
|
|
|
change_units();
|
|
|
|
break;
|
|
|
|
case 'v':
|
|
|
|
verify();
|
|
|
|
break;
|
|
|
|
case 'w':
|
|
|
|
write_table(); /* does not return */
|
|
|
|
break;
|
2006-11-29 17:30:28 +05:30
|
|
|
#if ENABLE_FEATURE_FDISK_ADVANCED
|
2002-11-27 03:30:21 +05:30
|
|
|
case 'x':
|
2006-10-13 01:00:44 +05:30
|
|
|
if (LABEL_IS_SGI) {
|
2007-03-19 20:13:38 +05:30
|
|
|
printf("\n\tSorry, no experts menu for SGI "
|
|
|
|
"partition tables available\n\n");
|
2002-11-27 03:30:21 +05:30
|
|
|
} else
|
|
|
|
xselect();
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
unknown_command(c);
|
|
|
|
menu();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
2006-12-31 00:12:29 +05:30
|
|
|
#endif /* FEATURE_FDISK_WRITABLE */
|
2002-11-27 03:30:21 +05:30
|
|
|
}
|