blob: b1f0b65c636c9a57fc815344f83908c7a654bc1d [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002/* fdisk.c -- Partition table manipulator for Linux.
3 *
4 * Copyright (C) 1992 A. V. Le Blanc (LeBlanc@mcc.ac.uk)
Mike Frysinger983e0ca2006-02-25 07:42:02 +00005 * Copyright (C) 2001,2002 Vladimir Oleynik <dzo@simtreas.ru> (initial bb port)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00006 *
Rob Landleyb73451d2006-02-24 16:29:00 +00007 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00008 */
9
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +000010#ifndef _LARGEFILE64_SOURCE
11/* For lseek64 */
12#define _LARGEFILE64_SOURCE
13#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +000014#include <assert.h> /* assert */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000015#include "libbb.h"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +000016
Denis Vlasenko834410a2006-11-29 12:00:28 +000017/* Looks like someone forgot to add this to config system */
18#ifndef ENABLE_FEATURE_FDISK_BLKSIZE
19# define ENABLE_FEATURE_FDISK_BLKSIZE 0
20# define USE_FEATURE_FDISK_BLKSIZE(a)
21#endif
22
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +000023#define DEFAULT_SECTOR_SIZE 512
24#define DEFAULT_SECTOR_SIZE_STR "512"
25#define MAX_SECTOR_SIZE 2048
26#define SECTOR_SIZE 512 /* still used in osf/sgi/sun code */
27#define MAXIMUM_PARTS 60
Glenn L McGrath441e7ef2002-11-26 22:00:21 +000028
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +000029#define ACTIVE_FLAG 0x80
Glenn L McGrath441e7ef2002-11-26 22:00:21 +000030
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +000031#define EXTENDED 0x05
32#define WIN98_EXTENDED 0x0f
33#define LINUX_PARTITION 0x81
34#define LINUX_SWAP 0x82
35#define LINUX_NATIVE 0x83
36#define LINUX_EXTENDED 0x85
37#define LINUX_LVM 0x8e
38#define LINUX_RAID 0xfd
Glenn L McGrath441e7ef2002-11-26 22:00:21 +000039
Denis Vlasenkoc033d512008-04-17 01:52:28 +000040
41enum {
42 OPT_b = 1 << 0,
43 OPT_C = 1 << 1,
44 OPT_H = 1 << 2,
45 OPT_l = 1 << 3,
46 OPT_S = 1 << 4,
47 OPT_u = 1 << 5,
48 OPT_s = (1 << 6) * ENABLE_FEATURE_FDISK_BLKSIZE,
49};
50
51
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +000052/* Used for sector numbers. Today's disk sizes make it necessary */
53typedef unsigned long long ullong;
54
Glenn L McGrath441e7ef2002-11-26 22:00:21 +000055struct hd_geometry {
Rob Landleyb73451d2006-02-24 16:29:00 +000056 unsigned char heads;
57 unsigned char sectors;
58 unsigned short cylinders;
59 unsigned long start;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +000060};
61
Denis Vlasenko98ae2162006-10-12 19:30:44 +000062#define HDIO_GETGEO 0x0301 /* get device geometry */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +000063
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000064static const char msg_building_new_label[] ALIGN1 =
Denis Vlasenkobd852072007-03-19 14:43:38 +000065"Building a new %s. Changes will remain in memory only,\n"
66"until you decide to write them. After that the previous content\n"
67"won't be recoverable.\n\n";
68
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000069static const char msg_part_already_defined[] ALIGN1 =
Denis Vlasenkobd852072007-03-19 14:43:38 +000070"Partition %d is already defined, delete it before re-adding\n";
71
Glenn L McGrath441e7ef2002-11-26 22:00:21 +000072
Glenn L McGrath441e7ef2002-11-26 22:00:21 +000073struct partition {
74 unsigned char boot_ind; /* 0x80 - active */
75 unsigned char head; /* starting head */
76 unsigned char sector; /* starting sector */
77 unsigned char cyl; /* starting cylinder */
Denis Vlasenko9764d692008-07-09 21:20:50 +000078 unsigned char sys_ind; /* what partition type */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +000079 unsigned char end_head; /* end head */
80 unsigned char end_sector; /* end sector */
81 unsigned char end_cyl; /* end cylinder */
82 unsigned char start4[4]; /* starting sector counting from 0 */
83 unsigned char size4[4]; /* nr of sectors in partition */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000084} PACKED;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +000085
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +000086static const char unable_to_open[] ALIGN1 = "can't open %s";
87static const char unable_to_read[] ALIGN1 = "can't read from %s";
88static const char unable_to_seek[] ALIGN1 = "can't seek on %s";
Glenn L McGrath441e7ef2002-11-26 22:00:21 +000089
Denis Vlasenko98ae2162006-10-12 19:30:44 +000090enum label_type {
Denis Vlasenko4437d192008-04-17 00:12:10 +000091 LABEL_DOS, LABEL_SUN, LABEL_SGI, LABEL_AIX, LABEL_OSF
Rob Landley5527b912006-02-25 03:46:10 +000092};
Denis Vlasenkodfce08f2007-03-19 14:45:10 +000093
Denis Vlasenko4437d192008-04-17 00:12:10 +000094#define LABEL_IS_DOS (LABEL_DOS == current_label_type)
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +000095
Denis Vlasenko834410a2006-11-29 12:00:28 +000096#if ENABLE_FEATURE_SUN_LABEL
Denis Vlasenko4437d192008-04-17 00:12:10 +000097#define LABEL_IS_SUN (LABEL_SUN == current_label_type)
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +000098#define STATIC_SUN static
Denis Vlasenko98ae2162006-10-12 19:30:44 +000099#else
100#define LABEL_IS_SUN 0
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000101#define STATIC_SUN extern
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000102#endif
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000103
Denis Vlasenko834410a2006-11-29 12:00:28 +0000104#if ENABLE_FEATURE_SGI_LABEL
Denis Vlasenko4437d192008-04-17 00:12:10 +0000105#define LABEL_IS_SGI (LABEL_SGI == current_label_type)
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000106#define STATIC_SGI static
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000107#else
108#define LABEL_IS_SGI 0
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000109#define STATIC_SGI extern
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000110#endif
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000111
Denis Vlasenko834410a2006-11-29 12:00:28 +0000112#if ENABLE_FEATURE_AIX_LABEL
Denis Vlasenko4437d192008-04-17 00:12:10 +0000113#define LABEL_IS_AIX (LABEL_AIX == current_label_type)
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000114#define STATIC_AIX static
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000115#else
116#define LABEL_IS_AIX 0
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000117#define STATIC_AIX extern
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000118#endif
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000119
Denis Vlasenko834410a2006-11-29 12:00:28 +0000120#if ENABLE_FEATURE_OSF_LABEL
Denis Vlasenko4437d192008-04-17 00:12:10 +0000121#define LABEL_IS_OSF (LABEL_OSF == current_label_type)
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000122#define STATIC_OSF static
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000123#else
124#define LABEL_IS_OSF 0
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000125#define STATIC_OSF extern
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000126#endif
Rob Landley5527b912006-02-25 03:46:10 +0000127
Denis Vlasenko4437d192008-04-17 00:12:10 +0000128enum action { OPEN_MAIN, TRY_ONLY, CREATE_EMPTY_DOS, CREATE_EMPTY_SUN };
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000129
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000130static void update_units(void);
Denis Vlasenko834410a2006-11-29 12:00:28 +0000131#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000132static void change_units(void);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000133static void reread_partition_table(int leave);
134static void delete_partition(int i);
Rob Landleyb73451d2006-02-24 16:29:00 +0000135static int get_partition(int warn, int max);
Denis Vlasenkobd852072007-03-19 14:43:38 +0000136static void list_types(const char *const *sys);
Denis Vlasenko06c0a712007-01-29 22:51:44 +0000137static unsigned read_int(unsigned low, unsigned dflt, unsigned high, unsigned base, const char *mesg);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000138#endif
139static const char *partition_type(unsigned char type);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000140static void get_geometry(void);
Denis Vlasenko85c24712008-03-17 09:04:04 +0000141#if ENABLE_FEATURE_SUN_LABEL || ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000142static int get_boot(enum action what);
Denis Vlasenko85c24712008-03-17 09:04:04 +0000143#else
144static int get_boot(void);
145#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000146
147#define PLURAL 0
148#define SINGULAR 1
149
Denis Vlasenko28703012006-12-19 20:32:02 +0000150static unsigned get_start_sect(const struct partition *p);
151static unsigned get_nr_sects(const struct partition *p);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000152
153/*
154 * per partition table entry data
155 *
156 * The four primary partitions have the same sectorbuffer (MBRbuffer)
157 * and have NULL ext_pointer.
158 * Each logical partition table entry has two pointers, one for the
159 * partition and one link to the next one.
160 */
Denis Vlasenko8e1a0cc2007-03-18 14:42:45 +0000161struct pte {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000162 struct partition *part_table; /* points into sectorbuffer */
163 struct partition *ext_pointer; /* points into sectorbuffer */
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +0000164 ullong offset; /* disk sector number */
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000165 char *sectorbuffer; /* disk sector contents */
Denis Vlasenko834410a2006-11-29 12:00:28 +0000166#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000167 char changed; /* boolean */
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000168#endif
Denis Vlasenko8e1a0cc2007-03-18 14:42:45 +0000169};
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000170
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000171/* DOS partition types */
172
173static const char *const i386_sys_types[] = {
174 "\x00" "Empty",
175 "\x01" "FAT12",
176 "\x04" "FAT16 <32M",
177 "\x05" "Extended", /* DOS 3.3+ extended partition */
178 "\x06" "FAT16", /* DOS 16-bit >=32M */
179 "\x07" "HPFS/NTFS", /* OS/2 IFS, eg, HPFS or NTFS or QNX */
180 "\x0a" "OS/2 Boot Manager",/* OS/2 Boot Manager */
181 "\x0b" "Win95 FAT32",
182 "\x0c" "Win95 FAT32 (LBA)",/* LBA really is 'Extended Int 13h' */
183 "\x0e" "Win95 FAT16 (LBA)",
184 "\x0f" "Win95 Ext'd (LBA)",
185 "\x11" "Hidden FAT12",
186 "\x12" "Compaq diagnostics",
187 "\x14" "Hidden FAT16 <32M",
188 "\x16" "Hidden FAT16",
189 "\x17" "Hidden HPFS/NTFS",
190 "\x1b" "Hidden Win95 FAT32",
191 "\x1c" "Hidden W95 FAT32 (LBA)",
192 "\x1e" "Hidden W95 FAT16 (LBA)",
193 "\x3c" "Part.Magic recovery",
194 "\x41" "PPC PReP Boot",
195 "\x42" "SFS",
196 "\x63" "GNU HURD or SysV", /* GNU HURD or Mach or Sys V/386 (such as ISC UNIX) */
197 "\x80" "Old Minix", /* Minix 1.4a and earlier */
198 "\x81" "Minix / old Linux",/* Minix 1.4b and later */
199 "\x82" "Linux swap", /* also Solaris */
200 "\x83" "Linux",
201 "\x84" "OS/2 hidden C: drive",
202 "\x85" "Linux extended",
203 "\x86" "NTFS volume set",
204 "\x87" "NTFS volume set",
205 "\x8e" "Linux LVM",
206 "\x9f" "BSD/OS", /* BSDI */
207 "\xa0" "Thinkpad hibernation",
208 "\xa5" "FreeBSD", /* various BSD flavours */
209 "\xa6" "OpenBSD",
210 "\xa8" "Darwin UFS",
211 "\xa9" "NetBSD",
212 "\xab" "Darwin boot",
213 "\xb7" "BSDI fs",
214 "\xb8" "BSDI swap",
215 "\xbe" "Solaris boot",
216 "\xeb" "BeOS fs",
217 "\xee" "EFI GPT", /* Intel EFI GUID Partition Table */
218 "\xef" "EFI (FAT-12/16/32)", /* Intel EFI System Partition */
219 "\xf0" "Linux/PA-RISC boot", /* Linux/PA-RISC boot loader */
220 "\xf2" "DOS secondary", /* DOS 3.3+ secondary */
221 "\xfd" "Linux raid autodetect", /* New (2.2.x) raid partition with
222 autodetect using persistent
223 superblock */
224#if 0 /* ENABLE_WEIRD_PARTITION_TYPES */
225 "\x02" "XENIX root",
226 "\x03" "XENIX usr",
227 "\x08" "AIX", /* AIX boot (AIX -- PS/2 port) or SplitDrive */
228 "\x09" "AIX bootable", /* AIX data or Coherent */
229 "\x10" "OPUS",
230 "\x18" "AST SmartSleep",
231 "\x24" "NEC DOS",
232 "\x39" "Plan 9",
233 "\x40" "Venix 80286",
234 "\x4d" "QNX4.x",
235 "\x4e" "QNX4.x 2nd part",
236 "\x4f" "QNX4.x 3rd part",
237 "\x50" "OnTrack DM",
238 "\x51" "OnTrack DM6 Aux1", /* (or Novell) */
239 "\x52" "CP/M", /* CP/M or Microport SysV/AT */
240 "\x53" "OnTrack DM6 Aux3",
241 "\x54" "OnTrackDM6",
242 "\x55" "EZ-Drive",
243 "\x56" "Golden Bow",
244 "\x5c" "Priam Edisk",
245 "\x61" "SpeedStor",
246 "\x64" "Novell Netware 286",
247 "\x65" "Novell Netware 386",
248 "\x70" "DiskSecure Multi-Boot",
249 "\x75" "PC/IX",
250 "\x93" "Amoeba",
251 "\x94" "Amoeba BBT", /* (bad block table) */
252 "\xa7" "NeXTSTEP",
253 "\xbb" "Boot Wizard hidden",
254 "\xc1" "DRDOS/sec (FAT-12)",
255 "\xc4" "DRDOS/sec (FAT-16 < 32M)",
256 "\xc6" "DRDOS/sec (FAT-16)",
257 "\xc7" "Syrinx",
258 "\xda" "Non-FS data",
259 "\xdb" "CP/M / CTOS / ...",/* CP/M or Concurrent CP/M or
260 Concurrent DOS or CTOS */
261 "\xde" "Dell Utility", /* Dell PowerEdge Server utilities */
262 "\xdf" "BootIt", /* BootIt EMBRM */
263 "\xe1" "DOS access", /* DOS access or SpeedStor 12-bit FAT
264 extended partition */
265 "\xe3" "DOS R/O", /* DOS R/O or SpeedStor */
266 "\xe4" "SpeedStor", /* SpeedStor 16-bit FAT extended
267 partition < 1024 cyl. */
268 "\xf1" "SpeedStor",
269 "\xf4" "SpeedStor", /* SpeedStor large partition */
270 "\xfe" "LANstep", /* SpeedStor >1024 cyl. or LANstep */
271 "\xff" "BBT", /* Xenix Bad Block Table */
272#endif
273 NULL
274};
275
Denis Vlasenko4437d192008-04-17 00:12:10 +0000276enum {
277 dev_fd = 3 /* the disk */
278};
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000279
280/* Globals */
Denis Vlasenko8e1a0cc2007-03-18 14:42:45 +0000281struct globals {
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000282 char *line_ptr;
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000283
284 const char *disk_device;
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000285 int g_partitions; // = 4; /* maximum partition + 1 */
286 unsigned units_per_sector; // = 1;
287 unsigned sector_size; // = DEFAULT_SECTOR_SIZE;
288 unsigned user_set_sector_size;
289 unsigned sector_offset; // = 1;
290 unsigned g_heads, g_sectors, g_cylinders;
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +0000291 smallint /* enum label_type */ current_label_type;
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000292 smallint display_in_cyl_units; // = 1;
293#if ENABLE_FEATURE_OSF_LABEL
294 smallint possibly_osf_label;
295#endif
296
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +0000297 smallint listing; /* no aborts for fdisk -l */
298 smallint dos_compatible_flag; // = 1;
299#if ENABLE_FEATURE_FDISK_WRITABLE
300 //int dos_changed;
301 smallint nowarn; /* no warnings for fdisk -l/-s */
302#endif
303 int ext_index; /* the prime extended partition */
304 unsigned user_cylinders, user_heads, user_sectors;
305 unsigned pt_heads, pt_sectors;
306 unsigned kern_heads, kern_sectors;
307 ullong extended_offset; /* offset of link pointers */
308 ullong total_number_of_sectors;
309
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000310 jmp_buf listingbuf;
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000311 char line_buffer[80];
312 char partname_buffer[80];
Denis Vlasenko8e1a0cc2007-03-18 14:42:45 +0000313 /* Raw disk label. For DOS-type partition tables the MBR,
314 * with descriptions of the primary partitions. */
315 char MBRbuffer[MAX_SECTOR_SIZE];
316 /* Partition tables */
317 struct pte ptes[MAXIMUM_PARTS];
318};
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000319#define G (*ptr_to_globals)
Denis Vlasenko270d5d72008-06-29 05:16:45 +0000320#define line_ptr (G.line_ptr )
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000321#define disk_device (G.disk_device )
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000322#define g_partitions (G.g_partitions )
323#define units_per_sector (G.units_per_sector )
324#define sector_size (G.sector_size )
325#define user_set_sector_size (G.user_set_sector_size)
326#define sector_offset (G.sector_offset )
327#define g_heads (G.g_heads )
328#define g_sectors (G.g_sectors )
329#define g_cylinders (G.g_cylinders )
330#define current_label_type (G.current_label_type )
331#define display_in_cyl_units (G.display_in_cyl_units)
332#define possibly_osf_label (G.possibly_osf_label )
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +0000333#define listing (G.listing )
334#define dos_compatible_flag (G.dos_compatible_flag )
335#define nowarn (G.nowarn )
336#define ext_index (G.ext_index )
337#define user_cylinders (G.user_cylinders )
338#define user_heads (G.user_heads )
339#define user_sectors (G.user_sectors )
340#define pt_heads (G.pt_heads )
341#define pt_sectors (G.pt_sectors )
342#define kern_heads (G.kern_heads )
343#define kern_sectors (G.kern_sectors )
344#define extended_offset (G.extended_offset )
345#define total_number_of_sectors (G.total_number_of_sectors)
Denis Vlasenko270d5d72008-06-29 05:16:45 +0000346#define listingbuf (G.listingbuf )
347#define line_buffer (G.line_buffer )
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000348#define partname_buffer (G.partname_buffer)
Denis Vlasenko270d5d72008-06-29 05:16:45 +0000349#define MBRbuffer (G.MBRbuffer )
350#define ptes (G.ptes )
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000351#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000352 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000353 sector_size = DEFAULT_SECTOR_SIZE; \
354 sector_offset = 1; \
355 g_partitions = 4; \
356 display_in_cyl_units = 1; \
357 units_per_sector = 1; \
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +0000358 dos_compatible_flag = 1; \
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000359} while (0)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000360
Denis Vlasenkobd852072007-03-19 14:43:38 +0000361
Denis Vlasenkocdf62772008-03-17 08:42:43 +0000362/* TODO: move to libbb? */
Denis Vlasenko4437d192008-04-17 00:12:10 +0000363static ullong bb_BLKGETSIZE_sectors(int fd)
Denis Vlasenkocdf62772008-03-17 08:42:43 +0000364{
365 uint64_t v64;
366 unsigned long longsectors;
367
368 if (ioctl(fd, BLKGETSIZE64, &v64) == 0) {
Denis Vlasenko270d5d72008-06-29 05:16:45 +0000369 /* Got bytes, convert to 512 byte sectors */
Denis Vlasenkocdf62772008-03-17 08:42:43 +0000370 return (v64 >> 9);
371 }
372 /* Needs temp of type long */
373 if (ioctl(fd, BLKGETSIZE, &longsectors))
374 longsectors = 0;
375 return longsectors;
376}
377
378
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000379#define IS_EXTENDED(i) \
380 ((i) == EXTENDED || (i) == WIN98_EXTENDED || (i) == LINUX_EXTENDED)
381
382#define cround(n) (display_in_cyl_units ? ((n)/units_per_sector)+1 : (n))
383
384#define scround(x) (((x)+units_per_sector-1)/units_per_sector)
385
386#define pt_offset(b, n) \
387 ((struct partition *)((b) + 0x1be + (n) * sizeof(struct partition)))
388
389#define sector(s) ((s) & 0x3f)
390
391#define cylinder(s, c) ((c) | (((s) & 0xc0) << 2))
392
393#define hsc2sector(h,s,c) \
394 (sector(s) - 1 + sectors * ((h) + heads * cylinder(s,c)))
395
396#define set_hsc(h,s,c,sector) \
397 do { \
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000398 s = sector % g_sectors + 1; \
399 sector /= g_sectors; \
400 h = sector % g_heads; \
401 sector /= g_heads; \
402 c = sector & 0xff; \
403 s |= (sector >> 2) & 0xc0; \
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000404 } while (0)
405
Denis Vlasenkoc033d512008-04-17 01:52:28 +0000406static void
407close_dev_fd(void)
408{
409 /* Not really closing, but making sure it is open, and to harmless place */
410 xmove_fd(xopen(bb_dev_null, O_RDONLY), dev_fd);
411}
412
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000413#if ENABLE_FEATURE_FDISK_WRITABLE
Denis Vlasenko270d5d72008-06-29 05:16:45 +0000414/* Read line; return 0 or first printable char */
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000415static int
416read_line(const char *prompt)
417{
418 int sz;
419
420 sz = read_line_input(prompt, line_buffer, sizeof(line_buffer), NULL);
421 if (sz <= 0)
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000422 exit(EXIT_SUCCESS); /* Ctrl-D or Ctrl-C */
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000423
424 if (line_buffer[sz-1] == '\n')
425 line_buffer[--sz] = '\0';
426
427 line_ptr = line_buffer;
428 while (*line_ptr && !isgraph(*line_ptr))
429 line_ptr++;
430 return *line_ptr;
431}
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000432#endif
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000433
Denis Vlasenkobd852072007-03-19 14:43:38 +0000434/*
Denis Vlasenko270d5d72008-06-29 05:16:45 +0000435 * Return partition name - uses static storage
Denis Vlasenkobd852072007-03-19 14:43:38 +0000436 */
437static const char *
438partname(const char *dev, int pno, int lth)
439{
Denis Vlasenkobd852072007-03-19 14:43:38 +0000440 const char *p;
441 int w, wp;
442 int bufsiz;
443 char *bufp;
444
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000445 bufp = partname_buffer;
446 bufsiz = sizeof(partname_buffer);
Denis Vlasenkobd852072007-03-19 14:43:38 +0000447
448 w = strlen(dev);
449 p = "";
450
451 if (isdigit(dev[w-1]))
452 p = "p";
453
454 /* devfs kludge - note: fdisk partition names are not supposed
455 to equal kernel names, so there is no reason to do this */
456 if (strcmp(dev + w - 4, "disc") == 0) {
457 w -= 4;
458 p = "part";
459 }
460
461 wp = strlen(p);
462
463 if (lth) {
464 snprintf(bufp, bufsiz, "%*.*s%s%-2u",
465 lth-wp-2, w, dev, p, pno);
466 } else {
467 snprintf(bufp, bufsiz, "%.*s%s%-2u", w, dev, p, pno);
468 }
469 return bufp;
470}
471
Denis Vlasenko834410a2006-11-29 12:00:28 +0000472#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000473static void
Rob Landleyb73451d2006-02-24 16:29:00 +0000474set_all_unchanged(void)
475{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000476 int i;
477
478 for (i = 0; i < MAXIMUM_PARTS; i++)
479 ptes[i].changed = 0;
480}
481
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000482static ALWAYS_INLINE void
Rob Landleyb73451d2006-02-24 16:29:00 +0000483set_changed(int i)
484{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000485 ptes[i].changed = 1;
486}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000487#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000488
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000489static ALWAYS_INLINE struct partition *
Rob Landleyb73451d2006-02-24 16:29:00 +0000490get_part_table(int i)
491{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000492 return ptes[i].part_table;
493}
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000494
495static const char *
Rob Landleyb73451d2006-02-24 16:29:00 +0000496str_units(int n)
497{ /* n==1: use singular */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000498 if (n == 1)
Denis Vlasenkobd852072007-03-19 14:43:38 +0000499 return display_in_cyl_units ? "cylinder" : "sector";
500 return display_in_cyl_units ? "cylinders" : "sectors";
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000501}
502
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000503static int
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000504valid_part_table_flag(const char *mbuffer)
505{
Denis Vlasenko834410a2006-11-29 12:00:28 +0000506 return (mbuffer[510] == 0x55 && (uint8_t)mbuffer[511] == 0xaa);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000507}
508
Denis Vlasenko834410a2006-11-29 12:00:28 +0000509#if ENABLE_FEATURE_FDISK_WRITABLE
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000510static ALWAYS_INLINE void
Denis Vlasenko834410a2006-11-29 12:00:28 +0000511write_part_table_flag(char *b)
512{
513 b[510] = 0x55;
514 b[511] = 0xaa;
515}
516
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000517static char
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000518read_nonempty(const char *mesg)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000519{
Denis Vlasenko9764d692008-07-09 21:20:50 +0000520 while (!read_line(mesg))
521 continue;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000522 return *line_ptr;
523}
524
525static char
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000526read_maybe_empty(const char *mesg)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000527{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000528 if (!read_line(mesg)) {
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000529 line_ptr = line_buffer;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000530 line_ptr[0] = '\n';
531 line_ptr[1] = '\0';
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000532 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000533 return line_ptr[0];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000534}
535
536static int
Denis Vlasenkobd852072007-03-19 14:43:38 +0000537read_hex(const char *const *sys)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000538{
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000539 unsigned long v;
Rob Landleyb73451d2006-02-24 16:29:00 +0000540 while (1) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000541 read_nonempty("Hex code (type L to list codes): ");
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000542 if (*line_ptr == 'l' || *line_ptr == 'L') {
Rob Landleyb73451d2006-02-24 16:29:00 +0000543 list_types(sys);
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000544 continue;
Rob Landleyb73451d2006-02-24 16:29:00 +0000545 }
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000546 v = bb_strtoul(line_ptr, NULL, 16);
Denis Vlasenko28703012006-12-19 20:32:02 +0000547 if (v > 0xff)
548 /* Bad input also triggers this */
549 continue;
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000550 return v;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000551 }
552}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000553#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000554
Denis Vlasenko9764d692008-07-09 21:20:50 +0000555static void fdisk_fatal(const char *why)
556{
557 if (listing) {
558 close_dev_fd();
559 longjmp(listingbuf, 1);
560 }
561 bb_error_msg_and_die(why, disk_device);
562}
563
564static void
565seek_sector(ullong secno)
566{
567 secno *= sector_size;
568#if ENABLE_FDISK_SUPPORT_LARGE_DISKS
569 if (lseek64(dev_fd, (off64_t)secno, SEEK_SET) == (off64_t) -1)
570 fdisk_fatal(unable_to_seek);
571#else
572 if (secno > MAXINT(off_t)
573 || lseek(dev_fd, (off_t)secno, SEEK_SET) == (off_t) -1
574 ) {
575 fdisk_fatal(unable_to_seek);
576 }
577#endif
578}
579
580#if ENABLE_FEATURE_FDISK_WRITABLE
581static void
582write_sector(ullong secno, const void *buf)
583{
584 seek_sector(secno);
585 xwrite(dev_fd, buf, sector_size);
586}
587#endif
588
589
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000590#include "fdisk_aix.c"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000591
592typedef struct {
593 unsigned char info[128]; /* Informative text string */
594 unsigned char spare0[14];
595 struct sun_info {
596 unsigned char spare1;
597 unsigned char id;
598 unsigned char spare2;
599 unsigned char flags;
600 } infos[8];
601 unsigned char spare1[246]; /* Boot information etc. */
602 unsigned short rspeed; /* Disk rotational speed */
603 unsigned short pcylcount; /* Physical cylinder count */
604 unsigned short sparecyl; /* extra sects per cylinder */
605 unsigned char spare2[4]; /* More magic... */
606 unsigned short ilfact; /* Interleave factor */
607 unsigned short ncyl; /* Data cylinder count */
608 unsigned short nacyl; /* Alt. cylinder count */
609 unsigned short ntrks; /* Tracks per cylinder */
610 unsigned short nsect; /* Sectors per track */
611 unsigned char spare3[4]; /* Even more magic... */
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000612 struct sun_partinfo {
Eric Andersenacd244a2002-12-11 03:49:33 +0000613 uint32_t start_cylinder;
614 uint32_t num_sectors;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000615 } partitions[8];
616 unsigned short magic; /* Magic number */
617 unsigned short csum; /* Label xor'd checksum */
618} sun_partition;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000619#define sunlabel ((sun_partition *)MBRbuffer)
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000620STATIC_OSF void bsd_select(void);
621STATIC_OSF void xbsd_print_disklabel(int);
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000622#include "fdisk_osf.c"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000623
Denis Vlasenko28703012006-12-19 20:32:02 +0000624#if ENABLE_FEATURE_SGI_LABEL || ENABLE_FEATURE_SUN_LABEL
Denis Vlasenko10d0d4e2006-11-27 16:48:17 +0000625static uint16_t
Denis Vlasenko28703012006-12-19 20:32:02 +0000626fdisk_swap16(uint16_t x)
Rob Landleyb73451d2006-02-24 16:29:00 +0000627{
Denis Vlasenko10d0d4e2006-11-27 16:48:17 +0000628 return (x << 8) | (x >> 8);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000629}
630
Rob Landley88621d72006-08-29 19:41:06 +0000631static uint32_t
Denis Vlasenko28703012006-12-19 20:32:02 +0000632fdisk_swap32(uint32_t x)
Rob Landleyb73451d2006-02-24 16:29:00 +0000633{
Denis Vlasenko10d0d4e2006-11-27 16:48:17 +0000634 return (x << 24) |
635 ((x & 0xFF00) << 8) |
636 ((x & 0xFF0000) >> 8) |
637 (x >> 24);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000638}
639#endif
640
Denis Vlasenkobd852072007-03-19 14:43:38 +0000641STATIC_SGI const char *const sgi_sys_types[];
Denis Vlasenko834410a2006-11-29 12:00:28 +0000642STATIC_SGI unsigned sgi_get_num_sectors(int i);
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000643STATIC_SGI int sgi_get_sysid(int i);
644STATIC_SGI void sgi_delete_partition(int i);
645STATIC_SGI void sgi_change_sysid(int i, int sys);
646STATIC_SGI void sgi_list_table(int xtra);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000647#if ENABLE_FEATURE_FDISK_ADVANCED
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000648STATIC_SGI void sgi_set_xcyl(void);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000649#endif
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000650STATIC_SGI int verify_sgi(int verbose);
651STATIC_SGI void sgi_add_partition(int n, int sys);
652STATIC_SGI void sgi_set_swappartition(int i);
653STATIC_SGI const char *sgi_get_bootfile(void);
654STATIC_SGI void sgi_set_bootfile(const char* aFile);
655STATIC_SGI void create_sgiinfo(void);
656STATIC_SGI void sgi_write_table(void);
657STATIC_SGI void sgi_set_bootpartition(int i);
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000658#include "fdisk_sgi.c"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000659
Denis Vlasenkobd852072007-03-19 14:43:38 +0000660STATIC_SUN const char *const sun_sys_types[];
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000661STATIC_SUN void sun_delete_partition(int i);
662STATIC_SUN void sun_change_sysid(int i, int sys);
663STATIC_SUN void sun_list_table(int xtra);
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000664STATIC_SUN void add_sun_partition(int n, int sys);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000665#if ENABLE_FEATURE_FDISK_ADVANCED
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000666STATIC_SUN void sun_set_alt_cyl(void);
667STATIC_SUN void sun_set_ncyl(int cyl);
668STATIC_SUN void sun_set_xcyl(void);
669STATIC_SUN void sun_set_ilfact(void);
670STATIC_SUN void sun_set_rspeed(void);
671STATIC_SUN void sun_set_pcylcount(void);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000672#endif
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000673STATIC_SUN void toggle_sunflags(int i, unsigned char mask);
674STATIC_SUN void verify_sun(void);
675STATIC_SUN void sun_write_table(void);
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000676#include "fdisk_sun.c"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000677
Denis Vlasenko9764d692008-07-09 21:20:50 +0000678
Denis Vlasenko834410a2006-11-29 12:00:28 +0000679#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000680/* start_sect and nr_sects are stored little endian on all machines */
681/* moreover, they are not aligned correctly */
682static void
Denis Vlasenko834410a2006-11-29 12:00:28 +0000683store4_little_endian(unsigned char *cp, unsigned val)
Rob Landleyb73451d2006-02-24 16:29:00 +0000684{
Denis Vlasenko834410a2006-11-29 12:00:28 +0000685 cp[0] = val;
686 cp[1] = val >> 8;
687 cp[2] = val >> 16;
688 cp[3] = val >> 24;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000689}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000690#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000691
Denis Vlasenko834410a2006-11-29 12:00:28 +0000692static unsigned
Rob Landleyb73451d2006-02-24 16:29:00 +0000693read4_little_endian(const unsigned char *cp)
694{
Denis Vlasenko834410a2006-11-29 12:00:28 +0000695 return cp[0] + (cp[1] << 8) + (cp[2] << 16) + (cp[3] << 24);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000696}
697
Denis Vlasenko834410a2006-11-29 12:00:28 +0000698#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000699static void
Denis Vlasenko834410a2006-11-29 12:00:28 +0000700set_start_sect(struct partition *p, unsigned start_sect)
Rob Landleyb73451d2006-02-24 16:29:00 +0000701{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000702 store4_little_endian(p->start4, start_sect);
703}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000704#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000705
Denis Vlasenko28703012006-12-19 20:32:02 +0000706static unsigned
Rob Landleyb73451d2006-02-24 16:29:00 +0000707get_start_sect(const struct partition *p)
708{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000709 return read4_little_endian(p->start4);
710}
711
Denis Vlasenko834410a2006-11-29 12:00:28 +0000712#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000713static void
Denis Vlasenko28703012006-12-19 20:32:02 +0000714set_nr_sects(struct partition *p, unsigned nr_sects)
Rob Landleyb73451d2006-02-24 16:29:00 +0000715{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000716 store4_little_endian(p->size4, nr_sects);
717}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000718#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000719
Denis Vlasenko28703012006-12-19 20:32:02 +0000720static unsigned
Rob Landleyb73451d2006-02-24 16:29:00 +0000721get_nr_sects(const struct partition *p)
722{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000723 return read4_little_endian(p->size4);
724}
725
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000726/* Allocate a buffer and read a partition table sector */
727static void
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +0000728read_pte(struct pte *pe, ullong offset)
Rob Landleyb73451d2006-02-24 16:29:00 +0000729{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000730 pe->offset = offset;
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +0000731 pe->sectorbuffer = xzalloc(sector_size);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000732 seek_sector(offset);
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +0000733 /* xread would make us abort - bad for fdisk -l */
734 if (full_read(dev_fd, pe->sectorbuffer, sector_size) != sector_size)
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000735 fdisk_fatal(unable_to_read);
Denis Vlasenko834410a2006-11-29 12:00:28 +0000736#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000737 pe->changed = 0;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000738#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000739 pe->part_table = pe->ext_pointer = NULL;
740}
741
Denis Vlasenko834410a2006-11-29 12:00:28 +0000742static unsigned
Rob Landleyb73451d2006-02-24 16:29:00 +0000743get_partition_start(const struct pte *pe)
744{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000745 return pe->offset + get_start_sect(pe->part_table);
746}
747
Denis Vlasenko834410a2006-11-29 12:00:28 +0000748#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000749/*
750 * Avoid warning about DOS partitions when no DOS partition was changed.
751 * Here a heuristic "is probably dos partition".
752 * We might also do the opposite and warn in all cases except
753 * for "is probably nondos partition".
754 */
Denis Vlasenko89398812008-01-25 20:18:46 +0000755#ifdef UNUSED
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000756static int
Rob Landleyb73451d2006-02-24 16:29:00 +0000757is_dos_partition(int t)
758{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000759 return (t == 1 || t == 4 || t == 6 ||
760 t == 0x0b || t == 0x0c || t == 0x0e ||
761 t == 0x11 || t == 0x12 || t == 0x14 || t == 0x16 ||
762 t == 0x1b || t == 0x1c || t == 0x1e || t == 0x24 ||
763 t == 0xc1 || t == 0xc4 || t == 0xc6);
764}
Denis Vlasenko89398812008-01-25 20:18:46 +0000765#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000766
767static void
Rob Landleyb73451d2006-02-24 16:29:00 +0000768menu(void)
769{
Denis Vlasenkobd852072007-03-19 14:43:38 +0000770 puts("Command Action");
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000771 if (LABEL_IS_SUN) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000772 puts("a\ttoggle a read only flag"); /* sun */
773 puts("b\tedit bsd disklabel");
774 puts("c\ttoggle the mountable flag"); /* sun */
775 puts("d\tdelete a partition");
776 puts("l\tlist known partition types");
777 puts("n\tadd a new partition");
778 puts("o\tcreate a new empty DOS partition table");
779 puts("p\tprint the partition table");
780 puts("q\tquit without saving changes");
781 puts("s\tcreate a new empty Sun disklabel"); /* sun */
782 puts("t\tchange a partition's system id");
783 puts("u\tchange display/entry units");
784 puts("v\tverify the partition table");
785 puts("w\twrite table to disk and exit");
Denis Vlasenko834410a2006-11-29 12:00:28 +0000786#if ENABLE_FEATURE_FDISK_ADVANCED
Denis Vlasenkobd852072007-03-19 14:43:38 +0000787 puts("x\textra functionality (experts only)");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000788#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000789 } else if (LABEL_IS_SGI) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000790 puts("a\tselect bootable partition"); /* sgi flavour */
791 puts("b\tedit bootfile entry"); /* sgi */
792 puts("c\tselect sgi swap partition"); /* sgi flavour */
793 puts("d\tdelete a partition");
794 puts("l\tlist known partition types");
795 puts("n\tadd a new partition");
796 puts("o\tcreate a new empty DOS partition table");
797 puts("p\tprint the partition table");
798 puts("q\tquit without saving changes");
799 puts("s\tcreate a new empty Sun disklabel"); /* sun */
800 puts("t\tchange a partition's system id");
801 puts("u\tchange display/entry units");
802 puts("v\tverify the partition table");
803 puts("w\twrite table to disk and exit");
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000804 } else if (LABEL_IS_AIX) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000805 puts("o\tcreate a new empty DOS partition table");
806 puts("q\tquit without saving changes");
807 puts("s\tcreate a new empty Sun disklabel"); /* sun */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000808 } else {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000809 puts("a\ttoggle a bootable flag");
810 puts("b\tedit bsd disklabel");
811 puts("c\ttoggle the dos compatibility flag");
812 puts("d\tdelete a partition");
813 puts("l\tlist known partition types");
814 puts("n\tadd a new partition");
815 puts("o\tcreate a new empty DOS partition table");
816 puts("p\tprint the partition table");
817 puts("q\tquit without saving changes");
818 puts("s\tcreate a new empty Sun disklabel"); /* sun */
819 puts("t\tchange a partition's system id");
820 puts("u\tchange display/entry units");
821 puts("v\tverify the partition table");
822 puts("w\twrite table to disk and exit");
Denis Vlasenko834410a2006-11-29 12:00:28 +0000823#if ENABLE_FEATURE_FDISK_ADVANCED
Denis Vlasenkobd852072007-03-19 14:43:38 +0000824 puts("x\textra functionality (experts only)");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000825#endif
826 }
827}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000828#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000829
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000830
Denis Vlasenko834410a2006-11-29 12:00:28 +0000831#if ENABLE_FEATURE_FDISK_ADVANCED
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000832static void
Rob Landleyb73451d2006-02-24 16:29:00 +0000833xmenu(void)
834{
Denis Vlasenkobd852072007-03-19 14:43:38 +0000835 puts("Command Action");
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000836 if (LABEL_IS_SUN) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000837 puts("a\tchange number of alternate cylinders"); /*sun*/
838 puts("c\tchange number of cylinders");
839 puts("d\tprint the raw data in the partition table");
840 puts("e\tchange number of extra sectors per cylinder");/*sun*/
841 puts("h\tchange number of heads");
842 puts("i\tchange interleave factor"); /*sun*/
843 puts("o\tchange rotation speed (rpm)"); /*sun*/
844 puts("p\tprint the partition table");
845 puts("q\tquit without saving changes");
846 puts("r\treturn to main menu");
847 puts("s\tchange number of sectors/track");
848 puts("v\tverify the partition table");
849 puts("w\twrite table to disk and exit");
850 puts("y\tchange number of physical cylinders"); /*sun*/
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000851 } else if (LABEL_IS_SGI) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000852 puts("b\tmove beginning of data in a partition"); /* !sun */
853 puts("c\tchange number of cylinders");
854 puts("d\tprint the raw data in the partition table");
855 puts("e\tlist extended partitions"); /* !sun */
856 puts("g\tcreate an IRIX (SGI) partition table");/* sgi */
857 puts("h\tchange number of heads");
858 puts("p\tprint the partition table");
859 puts("q\tquit without saving changes");
860 puts("r\treturn to main menu");
861 puts("s\tchange number of sectors/track");
862 puts("v\tverify the partition table");
863 puts("w\twrite table to disk and exit");
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000864 } else if (LABEL_IS_AIX) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000865 puts("b\tmove beginning of data in a partition"); /* !sun */
866 puts("c\tchange number of cylinders");
867 puts("d\tprint the raw data in the partition table");
868 puts("e\tlist extended partitions"); /* !sun */
869 puts("g\tcreate an IRIX (SGI) partition table");/* sgi */
870 puts("h\tchange number of heads");
871 puts("p\tprint the partition table");
872 puts("q\tquit without saving changes");
873 puts("r\treturn to main menu");
874 puts("s\tchange number of sectors/track");
875 puts("v\tverify the partition table");
876 puts("w\twrite table to disk and exit");
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000877 } else {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000878 puts("b\tmove beginning of data in a partition"); /* !sun */
879 puts("c\tchange number of cylinders");
880 puts("d\tprint the raw data in the partition table");
881 puts("e\tlist extended partitions"); /* !sun */
882 puts("f\tfix partition order"); /* !sun, !aix, !sgi */
Denis Vlasenko834410a2006-11-29 12:00:28 +0000883#if ENABLE_FEATURE_SGI_LABEL
Denis Vlasenkobd852072007-03-19 14:43:38 +0000884 puts("g\tcreate an IRIX (SGI) partition table");/* sgi */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000885#endif
Denis Vlasenkobd852072007-03-19 14:43:38 +0000886 puts("h\tchange number of heads");
887 puts("p\tprint the partition table");
888 puts("q\tquit without saving changes");
889 puts("r\treturn to main menu");
890 puts("s\tchange number of sectors/track");
891 puts("v\tverify the partition table");
892 puts("w\twrite table to disk and exit");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000893 }
894}
895#endif /* ADVANCED mode */
896
Denis Vlasenko834410a2006-11-29 12:00:28 +0000897#if ENABLE_FEATURE_FDISK_WRITABLE
Denis Vlasenkobd852072007-03-19 14:43:38 +0000898static const char *const *
Rob Landleyb73451d2006-02-24 16:29:00 +0000899get_sys_types(void)
900{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000901 return (
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000902 LABEL_IS_SUN ? sun_sys_types :
903 LABEL_IS_SGI ? sgi_sys_types :
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000904 i386_sys_types);
905}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000906#else
907#define get_sys_types() i386_sys_types
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000908#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000909
Denis Vlasenkobd852072007-03-19 14:43:38 +0000910static const char *
911partition_type(unsigned char type)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000912{
913 int i;
Denis Vlasenkobd852072007-03-19 14:43:38 +0000914 const char *const *types = get_sys_types();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000915
Denis Vlasenkobd852072007-03-19 14:43:38 +0000916 for (i = 0; types[i]; i++)
917 if ((unsigned char)types[i][0] == type)
918 return types[i] + 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000919
Denis Vlasenkobd852072007-03-19 14:43:38 +0000920 return "Unknown";
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000921}
922
923
Denis Vlasenko834410a2006-11-29 12:00:28 +0000924#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000925static int
Rob Landleyb73451d2006-02-24 16:29:00 +0000926get_sysid(int i)
927{
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000928 return LABEL_IS_SUN ? sunlabel->infos[i].id :
929 (LABEL_IS_SGI ? sgi_get_sysid(i) :
930 ptes[i].part_table->sys_ind);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000931}
932
Denis Vlasenkobd852072007-03-19 14:43:38 +0000933static void
934list_types(const char *const *sys)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000935{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000936 enum { COLS = 3 };
937
938 unsigned last[COLS];
939 unsigned done, next, size;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000940 int i;
941
Denis Vlasenko9764d692008-07-09 21:20:50 +0000942 for (size = 0; sys[size]; size++)
943 continue;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000944
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000945 done = 0;
946 for (i = COLS-1; i >= 0; i--) {
947 done += (size + i - done) / (i + 1);
948 last[COLS-1 - i] = done;
949 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000950
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000951 i = done = next = 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000952 do {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000953 printf("%c%2x %-22.22s", i ? ' ' : '\n',
Denis Vlasenkobd852072007-03-19 14:43:38 +0000954 (unsigned char)sys[next][0],
955 sys[next] + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000956 next = last[i++] + done;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000957 if (i >= COLS || next >= last[i]) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000958 i = 0;
959 next = ++done;
960 }
961 } while (done < last[0]);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000962 bb_putchar('\n');
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000963}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000964#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000965
966static int
Rob Landleyb73451d2006-02-24 16:29:00 +0000967is_cleared_partition(const struct partition *p)
968{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000969 return !(!p || p->boot_ind || p->head || p->sector || p->cyl ||
970 p->sys_ind || p->end_head || p->end_sector || p->end_cyl ||
971 get_start_sect(p) || get_nr_sects(p));
972}
973
974static void
Rob Landleyb73451d2006-02-24 16:29:00 +0000975clear_partition(struct partition *p)
976{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000977 if (!p)
978 return;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000979 memset(p, 0, sizeof(struct partition));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000980}
981
Denis Vlasenko834410a2006-11-29 12:00:28 +0000982#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000983static void
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +0000984set_partition(int i, int doext, ullong start, ullong stop, int sysid)
Rob Landleyb73451d2006-02-24 16:29:00 +0000985{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000986 struct partition *p;
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +0000987 ullong offset;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000988
989 if (doext) {
990 p = ptes[i].ext_pointer;
991 offset = extended_offset;
992 } else {
993 p = ptes[i].part_table;
994 offset = ptes[i].offset;
995 }
996 p->boot_ind = 0;
997 p->sys_ind = sysid;
998 set_start_sect(p, start - offset);
999 set_nr_sects(p, stop - start + 1);
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001000 if (dos_compatible_flag && (start / (g_sectors * g_heads) > 1023))
1001 start = g_heads * g_sectors * 1024 - 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001002 set_hsc(p->head, p->sector, p->cyl, start);
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001003 if (dos_compatible_flag && (stop / (g_sectors * g_heads) > 1023))
1004 stop = g_heads * g_sectors * 1024 - 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001005 set_hsc(p->end_head, p->end_sector, p->end_cyl, stop);
1006 ptes[i].changed = 1;
1007}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001008#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001009
1010static int
Rob Landleyb73451d2006-02-24 16:29:00 +00001011warn_geometry(void)
1012{
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001013 if (g_heads && g_sectors && g_cylinders)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001014 return 0;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001015
Denis Vlasenkobd852072007-03-19 14:43:38 +00001016 printf("Unknown value(s) for:");
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001017 if (!g_heads)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001018 printf(" heads");
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001019 if (!g_sectors)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001020 printf(" sectors");
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001021 if (!g_cylinders)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001022 printf(" cylinders");
1023 printf(
Denis Vlasenko834410a2006-11-29 12:00:28 +00001024#if ENABLE_FEATURE_FDISK_WRITABLE
Denis Vlasenkobd852072007-03-19 14:43:38 +00001025 " (settable in the extra functions menu)"
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001026#endif
Denis Vlasenkobd852072007-03-19 14:43:38 +00001027 "\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001028 return 1;
1029}
1030
Denis Vlasenko8e1a0cc2007-03-18 14:42:45 +00001031static void
1032update_units(void)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001033{
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001034 int cyl_units = g_heads * g_sectors;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001035
1036 if (display_in_cyl_units && cyl_units)
1037 units_per_sector = cyl_units;
1038 else
1039 units_per_sector = 1; /* in sectors */
1040}
1041
Denis Vlasenko834410a2006-11-29 12:00:28 +00001042#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001043static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001044warn_cylinders(void)
1045{
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001046 if (LABEL_IS_DOS && g_cylinders > 1024 && !nowarn)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001047 printf("\n"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001048"The number of cylinders for this disk is set to %d.\n"
1049"There is nothing wrong with that, but this is larger than 1024,\n"
1050"and could in certain setups cause problems with:\n"
1051"1) software that runs at boot time (e.g., old versions of LILO)\n"
1052"2) booting and partitioning software from other OSs\n"
Denis Vlasenkobd852072007-03-19 14:43:38 +00001053" (e.g., DOS FDISK, OS/2 FDISK)\n",
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001054 g_cylinders);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001055}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001056#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001057
1058static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001059read_extended(int ext)
1060{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001061 int i;
1062 struct pte *pex;
1063 struct partition *p, *q;
1064
1065 ext_index = ext;
1066 pex = &ptes[ext];
1067 pex->ext_pointer = pex->part_table;
1068
1069 p = pex->part_table;
1070 if (!get_start_sect(p)) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001071 printf("Bad offset in primary extended partition\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001072 return;
1073 }
1074
Rob Landleyb73451d2006-02-24 16:29:00 +00001075 while (IS_EXTENDED(p->sys_ind)) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001076 struct pte *pe = &ptes[g_partitions];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001077
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001078 if (g_partitions >= MAXIMUM_PARTS) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001079 /* This is not a Linux restriction, but
1080 this program uses arrays of size MAXIMUM_PARTS.
Denis Vlasenko89f0b342006-11-18 22:04:09 +00001081 Do not try to 'improve' this test. */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001082 struct pte *pre = &ptes[g_partitions - 1];
Denis Vlasenko834410a2006-11-29 12:00:28 +00001083#if ENABLE_FEATURE_FDISK_WRITABLE
Denis Vlasenkobd852072007-03-19 14:43:38 +00001084 printf("Warning: deleting partitions after %d\n",
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001085 g_partitions);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001086 pre->changed = 1;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001087#endif
1088 clear_partition(pre->ext_pointer);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001089 return;
1090 }
1091
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001092 read_pte(pe, extended_offset + get_start_sect(p));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001093
1094 if (!extended_offset)
1095 extended_offset = get_start_sect(p);
1096
1097 q = p = pt_offset(pe->sectorbuffer, 0);
1098 for (i = 0; i < 4; i++, p++) if (get_nr_sects(p)) {
Rob Landleyb73451d2006-02-24 16:29:00 +00001099 if (IS_EXTENDED(p->sys_ind)) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001100 if (pe->ext_pointer)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001101 printf("Warning: extra link "
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001102 "pointer in partition table"
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001103 " %d\n", g_partitions + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001104 else
1105 pe->ext_pointer = p;
1106 } else if (p->sys_ind) {
1107 if (pe->part_table)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001108 printf("Warning: ignoring extra "
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001109 "data in partition table"
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001110 " %d\n", g_partitions + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001111 else
1112 pe->part_table = p;
1113 }
1114 }
1115
1116 /* very strange code here... */
1117 if (!pe->part_table) {
1118 if (q != pe->ext_pointer)
1119 pe->part_table = q;
1120 else
1121 pe->part_table = q + 1;
1122 }
1123 if (!pe->ext_pointer) {
1124 if (q != pe->part_table)
1125 pe->ext_pointer = q;
1126 else
1127 pe->ext_pointer = q + 1;
1128 }
1129
1130 p = pe->ext_pointer;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001131 g_partitions++;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001132 }
1133
Denis Vlasenko834410a2006-11-29 12:00:28 +00001134#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001135 /* remove empty links */
1136 remove:
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001137 for (i = 4; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001138 struct pte *pe = &ptes[i];
1139
Denis Vlasenkobd852072007-03-19 14:43:38 +00001140 if (!get_nr_sects(pe->part_table)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001141 && (g_partitions > 5 || ptes[4].part_table->sys_ind)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001142 ) {
1143 printf("Omitting empty partition (%d)\n", i+1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001144 delete_partition(i);
1145 goto remove; /* numbering changed */
1146 }
1147 }
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001148#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001149}
1150
Denis Vlasenko834410a2006-11-29 12:00:28 +00001151#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001152static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001153create_doslabel(void)
1154{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001155 int i;
1156
Denis Vlasenkobd852072007-03-19 14:43:38 +00001157 printf(msg_building_new_label, "DOS disklabel");
Rob Landley5527b912006-02-25 03:46:10 +00001158
Denis Vlasenko4437d192008-04-17 00:12:10 +00001159 current_label_type = LABEL_DOS;
Rob Landley5527b912006-02-25 03:46:10 +00001160
Denis Vlasenko834410a2006-11-29 12:00:28 +00001161#if ENABLE_FEATURE_OSF_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001162 possibly_osf_label = 0;
1163#endif
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001164 g_partitions = 4;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001165
1166 for (i = 510-64; i < 510; i++)
1167 MBRbuffer[i] = 0;
1168 write_part_table_flag(MBRbuffer);
1169 extended_offset = 0;
1170 set_all_unchanged();
1171 set_changed(0);
Denis Vlasenko4437d192008-04-17 00:12:10 +00001172 get_boot(CREATE_EMPTY_DOS);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001173}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001174#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001175
1176static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001177get_sectorsize(void)
1178{
Rob Landley736e5252006-02-25 03:36:00 +00001179 if (!user_set_sector_size) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001180 int arg;
Denis Vlasenko4437d192008-04-17 00:12:10 +00001181 if (ioctl(dev_fd, BLKSSZGET, &arg) == 0)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001182 sector_size = arg;
1183 if (sector_size != DEFAULT_SECTOR_SIZE)
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +00001184 printf("Note: sector size is %d "
1185 "(not " DEFAULT_SECTOR_SIZE_STR ")\n",
1186 sector_size);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001187 }
1188}
1189
Rob Landley88621d72006-08-29 19:41:06 +00001190static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001191get_kernel_geometry(void)
1192{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001193 struct hd_geometry geometry;
1194
Denis Vlasenko4437d192008-04-17 00:12:10 +00001195 if (!ioctl(dev_fd, HDIO_GETGEO, &geometry)) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001196 kern_heads = geometry.heads;
1197 kern_sectors = geometry.sectors;
1198 /* never use geometry.cylinders - it is truncated */
1199 }
1200}
1201
1202static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001203get_partition_table_geometry(void)
1204{
"Vladimir N. Oleynik"a972c872005-12-02 10:06:04 +00001205 const unsigned char *bufp = (const unsigned char *)MBRbuffer;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001206 struct partition *p;
1207 int i, h, s, hh, ss;
1208 int first = 1;
1209 int bad = 0;
1210
Eric Andersen3496fdc2006-01-30 23:09:20 +00001211 if (!(valid_part_table_flag((char*)bufp)))
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001212 return;
1213
1214 hh = ss = 0;
Rob Landleyb73451d2006-02-24 16:29:00 +00001215 for (i = 0; i < 4; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001216 p = pt_offset(bufp, i);
1217 if (p->sys_ind != 0) {
1218 h = p->end_head + 1;
1219 s = (p->end_sector & 077);
1220 if (first) {
1221 hh = h;
1222 ss = s;
1223 first = 0;
1224 } else if (hh != h || ss != s)
1225 bad = 1;
1226 }
1227 }
1228
1229 if (!first && !bad) {
1230 pt_heads = hh;
1231 pt_sectors = ss;
1232 }
1233}
1234
Rob Landleyb73451d2006-02-24 16:29:00 +00001235static void
1236get_geometry(void)
1237{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001238 int sec_fac;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001239
1240 get_sectorsize();
1241 sec_fac = sector_size / 512;
Denis Vlasenko834410a2006-11-29 12:00:28 +00001242#if ENABLE_FEATURE_SUN_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001243 guess_device_type();
1244#endif
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001245 g_heads = g_cylinders = g_sectors = 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001246 kern_heads = kern_sectors = 0;
1247 pt_heads = pt_sectors = 0;
1248
1249 get_kernel_geometry();
1250 get_partition_table_geometry();
1251
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001252 g_heads = user_heads ? user_heads :
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001253 pt_heads ? pt_heads :
1254 kern_heads ? kern_heads : 255;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001255 g_sectors = user_sectors ? user_sectors :
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001256 pt_sectors ? pt_sectors :
1257 kern_sectors ? kern_sectors : 63;
Denis Vlasenko4437d192008-04-17 00:12:10 +00001258 total_number_of_sectors = bb_BLKGETSIZE_sectors(dev_fd);
Eric Andersen040f4402003-07-30 08:40:37 +00001259
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001260 sector_offset = 1;
1261 if (dos_compatible_flag)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001262 sector_offset = g_sectors;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001263
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001264 g_cylinders = total_number_of_sectors / (g_heads * g_sectors * sec_fac);
1265 if (!g_cylinders)
1266 g_cylinders = user_cylinders;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001267}
1268
1269/*
Denis Vlasenko4437d192008-04-17 00:12:10 +00001270 * Opens disk_device and optionally reads MBR.
1271 * FIXME: document what each 'what' value will do!
1272 * Returns:
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001273 * -1: no 0xaa55 flag present (possibly entire disk BSD)
1274 * 0: found or created label
1275 * 1: I/O error
1276 */
Denis Vlasenko85c24712008-03-17 09:04:04 +00001277#if ENABLE_FEATURE_SUN_LABEL || ENABLE_FEATURE_FDISK_WRITABLE
1278static int get_boot(enum action what)
1279#else
1280static int get_boot(void)
1281#define get_boot(what) get_boot()
1282#endif
Rob Landleyb73451d2006-02-24 16:29:00 +00001283{
Denis Vlasenko4437d192008-04-17 00:12:10 +00001284 int i, fd;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001285
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001286 g_partitions = 4;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001287 for (i = 0; i < 4; i++) {
1288 struct pte *pe = &ptes[i];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001289 pe->part_table = pt_offset(MBRbuffer, i);
1290 pe->ext_pointer = NULL;
1291 pe->offset = 0;
1292 pe->sectorbuffer = MBRbuffer;
Denis Vlasenko834410a2006-11-29 12:00:28 +00001293#if ENABLE_FEATURE_FDISK_WRITABLE
Denis Vlasenko4437d192008-04-17 00:12:10 +00001294 pe->changed = (what == CREATE_EMPTY_DOS);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001295#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001296 }
1297
Denis Vlasenko834410a2006-11-29 12:00:28 +00001298#if ENABLE_FEATURE_FDISK_WRITABLE
Denis Vlasenko4437d192008-04-17 00:12:10 +00001299// ALERT! highly idiotic design!
1300// We end up here when we call get_boot() recursively
1301// via get_boot() [table is bad] -> create_doslabel() -> get_boot(CREATE_EMPTY_DOS).
1302// or get_boot() [table is bad] -> create_sunlabel() -> get_boot(CREATE_EMPTY_SUN).
1303// (just factor out re-init of ptes[0,1,2,3] in a separate fn instead?)
1304// So skip opening device _again_...
1305 if (what == CREATE_EMPTY_DOS USE_FEATURE_SUN_LABEL(|| what == CREATE_EMPTY_SUN))
1306 goto created_table;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001307
Denis Vlasenko4437d192008-04-17 00:12:10 +00001308 fd = open(disk_device, (option_mask32 & OPT_l) ? O_RDONLY : O_RDWR);
1309
Denis Vlasenkobd852072007-03-19 14:43:38 +00001310 if (fd < 0) {
1311 fd = open(disk_device, O_RDONLY);
1312 if (fd < 0) {
Denis Vlasenko4437d192008-04-17 00:12:10 +00001313 if (what == TRY_ONLY)
Rob Landleyb73451d2006-02-24 16:29:00 +00001314 return 1;
1315 fdisk_fatal(unable_to_open);
Denis Vlasenko4437d192008-04-17 00:12:10 +00001316 }
Denis Vlasenko4437d192008-04-17 00:12:10 +00001317 printf("'%s' is opened for read only\n", disk_device);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001318 }
Denis Vlasenkoc033d512008-04-17 01:52:28 +00001319 xmove_fd(fd, dev_fd);
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +00001320 if (512 != full_read(dev_fd, MBRbuffer, 512)) {
Denis Vlasenko4437d192008-04-17 00:12:10 +00001321 if (what == TRY_ONLY) {
Denis Vlasenkoc033d512008-04-17 01:52:28 +00001322 close_dev_fd();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001323 return 1;
Denis Vlasenko4437d192008-04-17 00:12:10 +00001324 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001325 fdisk_fatal(unable_to_read);
1326 }
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001327#else
Denis Vlasenkobd852072007-03-19 14:43:38 +00001328 fd = open(disk_device, O_RDONLY);
1329 if (fd < 0)
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001330 return 1;
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +00001331 if (512 != full_read(fd, MBRbuffer, 512)) {
Denis Vlasenko4437d192008-04-17 00:12:10 +00001332 close(fd);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001333 return 1;
Denis Vlasenko4437d192008-04-17 00:12:10 +00001334 }
1335 xmove_fd(fd, dev_fd);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001336#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001337
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001338 get_geometry();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001339 update_units();
1340
Denis Vlasenko834410a2006-11-29 12:00:28 +00001341#if ENABLE_FEATURE_SUN_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001342 if (check_sun_label())
1343 return 0;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001344#endif
Denis Vlasenko834410a2006-11-29 12:00:28 +00001345#if ENABLE_FEATURE_SGI_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001346 if (check_sgi_label())
1347 return 0;
1348#endif
Denis Vlasenko834410a2006-11-29 12:00:28 +00001349#if ENABLE_FEATURE_AIX_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001350 if (check_aix_label())
1351 return 0;
1352#endif
Denis Vlasenko834410a2006-11-29 12:00:28 +00001353#if ENABLE_FEATURE_OSF_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001354 if (check_osf_label()) {
1355 possibly_osf_label = 1;
1356 if (!valid_part_table_flag(MBRbuffer)) {
Denis Vlasenko4437d192008-04-17 00:12:10 +00001357 current_label_type = LABEL_OSF;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001358 return 0;
1359 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00001360 printf("This disk has both DOS and BSD magic.\n"
1361 "Give the 'b' command to go to BSD mode.\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001362 }
1363#endif
1364
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001365#if !ENABLE_FEATURE_FDISK_WRITABLE
Denis Vlasenko4437d192008-04-17 00:12:10 +00001366 if (!valid_part_table_flag(MBRbuffer))
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001367 return -1;
1368#else
Denis Vlasenko4437d192008-04-17 00:12:10 +00001369 if (!valid_part_table_flag(MBRbuffer)) {
1370 if (what == OPEN_MAIN) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001371 printf("Device contains neither a valid DOS "
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001372 "partition table, nor Sun, SGI or OSF "
Denis Vlasenkobd852072007-03-19 14:43:38 +00001373 "disklabel\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001374#ifdef __sparc__
Denis Vlasenko4437d192008-04-17 00:12:10 +00001375 USE_FEATURE_SUN_LABEL(create_sunlabel();)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001376#else
1377 create_doslabel();
1378#endif
1379 return 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001380 }
Denis Vlasenko4437d192008-04-17 00:12:10 +00001381 /* TRY_ONLY: */
1382 return -1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001383 }
Denis Vlasenko4437d192008-04-17 00:12:10 +00001384 created_table:
1385#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001386
Denis Vlasenko4437d192008-04-17 00:12:10 +00001387
1388 USE_FEATURE_FDISK_WRITABLE(warn_cylinders();)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001389 warn_geometry();
1390
1391 for (i = 0; i < 4; i++) {
Denis Vlasenko4437d192008-04-17 00:12:10 +00001392 if (IS_EXTENDED(ptes[i].part_table->sys_ind)) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001393 if (g_partitions != 4)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001394 printf("Ignoring extra extended "
1395 "partition %d\n", i + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001396 else
1397 read_extended(i);
1398 }
1399 }
1400
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001401 for (i = 3; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001402 struct pte *pe = &ptes[i];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001403 if (!valid_part_table_flag(pe->sectorbuffer)) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001404 printf("Warning: invalid flag 0x%02x,0x%02x of partition "
1405 "table %d will be corrected by w(rite)\n",
Denis Vlasenko834410a2006-11-29 12:00:28 +00001406 pe->sectorbuffer[510],
1407 pe->sectorbuffer[511],
1408 i + 1);
Denis Vlasenko4437d192008-04-17 00:12:10 +00001409 USE_FEATURE_FDISK_WRITABLE(pe->changed = 1;)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001410 }
1411 }
1412
1413 return 0;
1414}
1415
Denis Vlasenko834410a2006-11-29 12:00:28 +00001416#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001417/*
1418 * Print the message MESG, then read an integer between LOW and HIGH (inclusive).
1419 * If the user hits Enter, DFLT is returned.
1420 * Answers like +10 are interpreted as offsets from BASE.
1421 *
1422 * There is no default if DFLT is not between LOW and HIGH.
1423 */
Denis Vlasenko834410a2006-11-29 12:00:28 +00001424static unsigned
Denis Vlasenko06c0a712007-01-29 22:51:44 +00001425read_int(unsigned low, unsigned dflt, unsigned high, unsigned base, const char *mesg)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001426{
Denis Vlasenko834410a2006-11-29 12:00:28 +00001427 unsigned i;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001428 int default_ok = 1;
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001429 const char *fmt = "%s (%u-%u, default %u): ";
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001430
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001431 if (dflt < low || dflt > high) {
1432 fmt = "%s (%u-%u): ";
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001433 default_ok = 0;
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001434 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001435
1436 while (1) {
1437 int use_default = default_ok;
1438
1439 /* ask question and read answer */
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001440 do {
1441 printf(fmt, mesg, low, high, dflt);
1442 read_maybe_empty("");
1443 } while (*line_ptr != '\n' && !isdigit(*line_ptr)
1444 && *line_ptr != '-' && *line_ptr != '+');
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001445
Eric Andersen84bdea82004-05-19 10:49:17 +00001446 if (*line_ptr == '+' || *line_ptr == '-') {
Rob Landleyb73451d2006-02-24 16:29:00 +00001447 int minus = (*line_ptr == '-');
1448 int absolute = 0;
Eric Andersenc48d49a2003-07-03 10:02:32 +00001449
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001450 i = atoi(line_ptr + 1);
Eric Andersenc48d49a2003-07-03 10:02:32 +00001451
Rob Landleyb73451d2006-02-24 16:29:00 +00001452 while (isdigit(*++line_ptr))
1453 use_default = 0;
Eric Andersen84bdea82004-05-19 10:49:17 +00001454
Rob Landleyb73451d2006-02-24 16:29:00 +00001455 switch (*line_ptr) {
1456 case 'c':
1457 case 'C':
1458 if (!display_in_cyl_units)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001459 i *= g_heads * g_sectors;
Rob Landleyb73451d2006-02-24 16:29:00 +00001460 break;
1461 case 'K':
1462 absolute = 1024;
1463 break;
1464 case 'k':
1465 absolute = 1000;
1466 break;
1467 case 'm':
1468 case 'M':
1469 absolute = 1000000;
1470 break;
1471 case 'g':
1472 case 'G':
1473 absolute = 1000000000;
1474 break;
1475 default:
1476 break;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001477 }
Rob Landleyb73451d2006-02-24 16:29:00 +00001478 if (absolute) {
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00001479 ullong bytes;
Rob Landleyb73451d2006-02-24 16:29:00 +00001480 unsigned long unit;
1481
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00001482 bytes = (ullong) i * absolute;
Rob Landleyb73451d2006-02-24 16:29:00 +00001483 unit = sector_size * units_per_sector;
1484 bytes += unit/2; /* round */
1485 bytes /= unit;
1486 i = bytes;
1487 }
1488 if (minus)
1489 i = -i;
1490 i += base;
Eric Andersen84bdea82004-05-19 10:49:17 +00001491 } else {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001492 i = atoi(line_ptr);
1493 while (isdigit(*line_ptr)) {
1494 line_ptr++;
1495 use_default = 0;
1496 }
1497 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00001498 if (use_default) {
1499 i = dflt;
1500 printf("Using default value %u\n", i);
1501 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001502 if (i >= low && i <= high)
1503 break;
Denis Vlasenkobd852072007-03-19 14:43:38 +00001504 printf("Value is out of range\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001505 }
1506 return i;
1507}
1508
Rob Landleyb73451d2006-02-24 16:29:00 +00001509static int
1510get_partition(int warn, int max)
1511{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001512 struct pte *pe;
1513 int i;
1514
Denis Vlasenkobd852072007-03-19 14:43:38 +00001515 i = read_int(1, 0, max, 0, "Partition number") - 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001516 pe = &ptes[i];
1517
1518 if (warn) {
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001519 if ((!LABEL_IS_SUN && !LABEL_IS_SGI && !pe->part_table->sys_ind)
1520 || (LABEL_IS_SUN && (!sunlabel->partitions[i].num_sectors || !sunlabel->infos[i].id))
1521 || (LABEL_IS_SGI && !sgi_get_num_sectors(i))
1522 ) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001523 printf("Warning: partition %d has empty type\n", i+1);
Rob Landley5527b912006-02-25 03:46:10 +00001524 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001525 }
1526 return i;
1527}
1528
1529static int
Rob Landleyb73451d2006-02-24 16:29:00 +00001530get_existing_partition(int warn, int max)
1531{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001532 int pno = -1;
1533 int i;
1534
1535 for (i = 0; i < max; i++) {
1536 struct pte *pe = &ptes[i];
1537 struct partition *p = pe->part_table;
1538
1539 if (p && !is_cleared_partition(p)) {
1540 if (pno >= 0)
1541 goto not_unique;
1542 pno = i;
1543 }
1544 }
1545 if (pno >= 0) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001546 printf("Selected partition %d\n", pno+1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001547 return pno;
1548 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00001549 printf("No partition is defined yet!\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001550 return -1;
1551
1552 not_unique:
1553 return get_partition(warn, max);
1554}
1555
1556static int
Rob Landleyb73451d2006-02-24 16:29:00 +00001557get_nonexisting_partition(int warn, int max)
1558{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001559 int pno = -1;
1560 int i;
1561
1562 for (i = 0; i < max; i++) {
1563 struct pte *pe = &ptes[i];
1564 struct partition *p = pe->part_table;
1565
1566 if (p && is_cleared_partition(p)) {
1567 if (pno >= 0)
1568 goto not_unique;
1569 pno = i;
1570 }
1571 }
1572 if (pno >= 0) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001573 printf("Selected partition %d\n", pno+1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001574 return pno;
1575 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00001576 printf("All primary partitions have been defined already!\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001577 return -1;
1578
1579 not_unique:
1580 return get_partition(warn, max);
1581}
1582
1583
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001584static void
1585change_units(void)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001586{
1587 display_in_cyl_units = !display_in_cyl_units;
1588 update_units();
Denis Vlasenkobd852072007-03-19 14:43:38 +00001589 printf("Changing display/entry units to %s\n",
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001590 str_units(PLURAL));
1591}
1592
1593static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001594toggle_active(int i)
1595{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001596 struct pte *pe = &ptes[i];
1597 struct partition *p = pe->part_table;
1598
Rob Landleyb73451d2006-02-24 16:29:00 +00001599 if (IS_EXTENDED(p->sys_ind) && !p->boot_ind)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001600 printf("WARNING: Partition %d is an extended partition\n", i + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001601 p->boot_ind = (p->boot_ind ? 0 : ACTIVE_FLAG);
1602 pe->changed = 1;
1603}
1604
1605static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001606toggle_dos_compatibility_flag(void)
1607{
Denis Vlasenkocdf62772008-03-17 08:42:43 +00001608 dos_compatible_flag = 1 - dos_compatible_flag;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001609 if (dos_compatible_flag) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001610 sector_offset = g_sectors;
Denis Vlasenkobd852072007-03-19 14:43:38 +00001611 printf("DOS Compatibility flag is set\n");
1612 } else {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001613 sector_offset = 1;
Denis Vlasenkobd852072007-03-19 14:43:38 +00001614 printf("DOS Compatibility flag is not set\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001615 }
1616}
1617
1618static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001619delete_partition(int i)
1620{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001621 struct pte *pe = &ptes[i];
1622 struct partition *p = pe->part_table;
1623 struct partition *q = pe->ext_pointer;
1624
1625/* Note that for the fifth partition (i == 4) we don't actually
1626 * decrement partitions.
1627 */
1628
1629 if (warn_geometry())
1630 return; /* C/H/S not set */
1631 pe->changed = 1;
1632
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001633 if (LABEL_IS_SUN) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001634 sun_delete_partition(i);
1635 return;
1636 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001637 if (LABEL_IS_SGI) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001638 sgi_delete_partition(i);
1639 return;
1640 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001641
1642 if (i < 4) {
Rob Landleyb73451d2006-02-24 16:29:00 +00001643 if (IS_EXTENDED(p->sys_ind) && i == ext_index) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001644 g_partitions = 4;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001645 ptes[ext_index].ext_pointer = NULL;
1646 extended_offset = 0;
1647 }
1648 clear_partition(p);
1649 return;
1650 }
1651
1652 if (!q->sys_ind && i > 4) {
1653 /* the last one in the chain - just delete */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001654 --g_partitions;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001655 --i;
1656 clear_partition(ptes[i].ext_pointer);
1657 ptes[i].changed = 1;
1658 } else {
1659 /* not the last one - further ones will be moved down */
1660 if (i > 4) {
1661 /* delete this link in the chain */
1662 p = ptes[i-1].ext_pointer;
1663 *p = *q;
1664 set_start_sect(p, get_start_sect(q));
1665 set_nr_sects(p, get_nr_sects(q));
1666 ptes[i-1].changed = 1;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001667 } else if (g_partitions > 5) { /* 5 will be moved to 4 */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001668 /* the first logical in a longer chain */
1669 pe = &ptes[5];
1670
1671 if (pe->part_table) /* prevent SEGFAULT */
1672 set_start_sect(pe->part_table,
Rob Landleyb73451d2006-02-24 16:29:00 +00001673 get_partition_start(pe) -
1674 extended_offset);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001675 pe->offset = extended_offset;
1676 pe->changed = 1;
1677 }
1678
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001679 if (g_partitions > 5) {
1680 g_partitions--;
1681 while (i < g_partitions) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001682 ptes[i] = ptes[i+1];
1683 i++;
1684 }
1685 } else
1686 /* the only logical: clear only */
1687 clear_partition(ptes[i].part_table);
1688 }
1689}
1690
1691static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001692change_sysid(void)
1693{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001694 int i, sys, origsys;
1695 struct partition *p;
1696
Eric Andersen040f4402003-07-30 08:40:37 +00001697 /* If sgi_label then don't use get_existing_partition,
1698 let the user select a partition, since get_existing_partition()
1699 only works for Linux like partition tables. */
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001700 if (!LABEL_IS_SGI) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001701 i = get_existing_partition(0, g_partitions);
Eric Andersen040f4402003-07-30 08:40:37 +00001702 } else {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001703 i = get_partition(0, g_partitions);
Eric Andersen040f4402003-07-30 08:40:37 +00001704 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001705 if (i == -1)
1706 return;
1707 p = ptes[i].part_table;
1708 origsys = sys = get_sysid(i);
1709
1710 /* if changing types T to 0 is allowed, then
1711 the reverse change must be allowed, too */
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001712 if (!sys && !LABEL_IS_SGI && !LABEL_IS_SUN && !get_nr_sects(p)) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001713 printf("Partition %d does not exist yet!\n", i + 1);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001714 return;
1715 }
1716 while (1) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001717 sys = read_hex(get_sys_types());
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001718
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001719 if (!sys && !LABEL_IS_SGI && !LABEL_IS_SUN) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001720 printf("Type 0 means free space to many systems\n"
Rob Landleyb73451d2006-02-24 16:29:00 +00001721 "(but not to Linux). Having partitions of\n"
Denis Vlasenkobd852072007-03-19 14:43:38 +00001722 "type 0 is probably unwise.\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001723 /* break; */
1724 }
1725
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001726 if (!LABEL_IS_SUN && !LABEL_IS_SGI) {
Rob Landleyb73451d2006-02-24 16:29:00 +00001727 if (IS_EXTENDED(sys) != IS_EXTENDED(p->sys_ind)) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001728 printf("You cannot change a partition into"
1729 " an extended one or vice versa\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001730 break;
1731 }
1732 }
1733
1734 if (sys < 256) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001735#if ENABLE_FEATURE_SUN_LABEL
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001736 if (LABEL_IS_SUN && i == 2 && sys != SUN_WHOLE_DISK)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001737 printf("Consider leaving partition 3 "
Rob Landleyb73451d2006-02-24 16:29:00 +00001738 "as Whole disk (5),\n"
1739 "as SunOS/Solaris expects it and "
Denis Vlasenkobd852072007-03-19 14:43:38 +00001740 "even Linux likes it\n\n");
1741#endif
1742#if ENABLE_FEATURE_SGI_LABEL
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001743 if (LABEL_IS_SGI &&
Rob Landley5527b912006-02-25 03:46:10 +00001744 (
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001745 (i == 10 && sys != SGI_ENTIRE_DISK) ||
Rob Landley5527b912006-02-25 03:46:10 +00001746 (i == 8 && sys != 0)
1747 )
Denis Vlasenkobd852072007-03-19 14:43:38 +00001748 ) {
1749 printf("Consider leaving partition 9 "
Rob Landleyb73451d2006-02-24 16:29:00 +00001750 "as volume header (0),\nand "
1751 "partition 11 as entire volume (6)"
Denis Vlasenkobd852072007-03-19 14:43:38 +00001752 "as IRIX expects it\n\n");
Rob Landley5527b912006-02-25 03:46:10 +00001753 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00001754#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001755 if (sys == origsys)
1756 break;
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001757 if (LABEL_IS_SUN) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001758 sun_change_sysid(i, sys);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001759 } else if (LABEL_IS_SGI) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001760 sgi_change_sysid(i, sys);
1761 } else
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001762 p->sys_ind = sys;
Rob Landley5527b912006-02-25 03:46:10 +00001763
Denis Vlasenkobd852072007-03-19 14:43:38 +00001764 printf("Changed system type of partition %d "
1765 "to %x (%s)\n", i + 1, sys,
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001766 partition_type(sys));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001767 ptes[i].changed = 1;
Denis Vlasenkoa5549c92008-01-24 22:49:15 +00001768 //if (is_dos_partition(origsys) || is_dos_partition(sys))
1769 // dos_changed = 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001770 break;
1771 }
1772 }
1773}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001774#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001775
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001776
Denis Vlasenko28703012006-12-19 20:32:02 +00001777/* check_consistency() and linear2chs() added Sat Mar 6 12:28:16 1993,
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001778 * faith@cs.unc.edu, based on code fragments from pfdisk by Gordon W. Ross,
1779 * Jan. 1990 (version 1.2.1 by Gordon W. Ross Aug. 1990; Modified by S.
1780 * Lubkin Oct. 1991). */
1781
Rob Landleyb73451d2006-02-24 16:29:00 +00001782static void
Denis Vlasenko28703012006-12-19 20:32:02 +00001783linear2chs(unsigned ls, unsigned *c, unsigned *h, unsigned *s)
Rob Landleyb73451d2006-02-24 16:29:00 +00001784{
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001785 int spc = g_heads * g_sectors;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001786
1787 *c = ls / spc;
1788 ls = ls % spc;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001789 *h = ls / g_sectors;
1790 *s = ls % g_sectors + 1; /* sectors count from 1 */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001791}
1792
Rob Landleyb73451d2006-02-24 16:29:00 +00001793static void
1794check_consistency(const struct partition *p, int partition)
1795{
Denis Vlasenko834410a2006-11-29 12:00:28 +00001796 unsigned pbc, pbh, pbs; /* physical beginning c, h, s */
1797 unsigned pec, peh, pes; /* physical ending c, h, s */
1798 unsigned lbc, lbh, lbs; /* logical beginning c, h, s */
1799 unsigned lec, leh, les; /* logical ending c, h, s */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001800
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001801 if (!g_heads || !g_sectors || (partition >= 4))
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001802 return; /* do not check extended partitions */
1803
1804/* physical beginning c, h, s */
1805 pbc = (p->cyl & 0xff) | ((p->sector << 2) & 0x300);
1806 pbh = p->head;
1807 pbs = p->sector & 0x3f;
1808
1809/* physical ending c, h, s */
1810 pec = (p->end_cyl & 0xff) | ((p->end_sector << 2) & 0x300);
1811 peh = p->end_head;
1812 pes = p->end_sector & 0x3f;
1813
1814/* compute logical beginning (c, h, s) */
Denis Vlasenko28703012006-12-19 20:32:02 +00001815 linear2chs(get_start_sect(p), &lbc, &lbh, &lbs);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001816
1817/* compute logical ending (c, h, s) */
Denis Vlasenko28703012006-12-19 20:32:02 +00001818 linear2chs(get_start_sect(p) + get_nr_sects(p) - 1, &lec, &leh, &les);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001819
1820/* Same physical / logical beginning? */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001821 if (g_cylinders <= 1024 && (pbc != lbc || pbh != lbh || pbs != lbs)) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001822 printf("Partition %d has different physical/logical "
1823 "beginnings (non-Linux?):\n", partition + 1);
1824 printf(" phys=(%d, %d, %d) ", pbc, pbh, pbs);
Denis Vlasenkof5d8c902008-06-26 14:32:57 +00001825 printf("logical=(%d, %d, %d)\n", lbc, lbh, lbs);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001826 }
1827
1828/* Same physical / logical ending? */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001829 if (g_cylinders <= 1024 && (pec != lec || peh != leh || pes != les)) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001830 printf("Partition %d has different physical/logical "
1831 "endings:\n", partition + 1);
1832 printf(" phys=(%d, %d, %d) ", pec, peh, pes);
1833 printf("logical=(%d, %d, %d)\n", lec, leh, les);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001834 }
1835
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001836/* Ending on cylinder boundary? */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001837 if (peh != (g_heads - 1) || pes != g_sectors) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001838 printf("Partition %i does not end on cylinder boundary\n",
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001839 partition + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001840 }
1841}
1842
1843static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001844list_disk_geometry(void)
1845{
Eric Andersen040f4402003-07-30 08:40:37 +00001846 long long bytes = (total_number_of_sectors << 9);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001847 long megabytes = bytes/1000000;
1848
1849 if (megabytes < 10000)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001850 printf("\nDisk %s: %ld MB, %lld bytes\n",
Rob Landleyb73451d2006-02-24 16:29:00 +00001851 disk_device, megabytes, bytes);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001852 else
Denis Vlasenkobd852072007-03-19 14:43:38 +00001853 printf("\nDisk %s: %ld.%ld GB, %lld bytes\n",
Rob Landleyb73451d2006-02-24 16:29:00 +00001854 disk_device, megabytes/1000, (megabytes/100)%10, bytes);
Denis Vlasenkobd852072007-03-19 14:43:38 +00001855 printf("%d heads, %d sectors/track, %d cylinders",
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001856 g_heads, g_sectors, g_cylinders);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001857 if (units_per_sector == 1)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001858 printf(", total %llu sectors",
Rob Landleyb73451d2006-02-24 16:29:00 +00001859 total_number_of_sectors / (sector_size/512));
Denis Vlasenkobd852072007-03-19 14:43:38 +00001860 printf("\nUnits = %s of %d * %d = %d bytes\n\n",
Rob Landleyb73451d2006-02-24 16:29:00 +00001861 str_units(PLURAL),
1862 units_per_sector, sector_size, units_per_sector * sector_size);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001863}
1864
1865/*
1866 * Check whether partition entries are ordered by their starting positions.
1867 * Return 0 if OK. Return i if partition i should have been earlier.
1868 * Two separate checks: primary and logical partitions.
1869 */
1870static int
Rob Landleyb73451d2006-02-24 16:29:00 +00001871wrong_p_order(int *prev)
1872{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001873 const struct pte *pe;
1874 const struct partition *p;
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00001875 ullong last_p_start_pos = 0, p_start_pos;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001876 int i, last_i = 0;
1877
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001878 for (i = 0; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001879 if (i == 4) {
1880 last_i = 4;
1881 last_p_start_pos = 0;
1882 }
1883 pe = &ptes[i];
Denis Vlasenko6bef3d12007-11-06 03:05:54 +00001884 p = pe->part_table;
1885 if (p->sys_ind) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001886 p_start_pos = get_partition_start(pe);
1887
1888 if (last_p_start_pos > p_start_pos) {
1889 if (prev)
1890 *prev = last_i;
1891 return i;
1892 }
1893
1894 last_p_start_pos = p_start_pos;
1895 last_i = i;
1896 }
1897 }
1898 return 0;
1899}
1900
Denis Vlasenko834410a2006-11-29 12:00:28 +00001901#if ENABLE_FEATURE_FDISK_ADVANCED
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001902/*
1903 * Fix the chain of logicals.
1904 * extended_offset is unchanged, the set of sectors used is unchanged
1905 * The chain is sorted so that sectors increase, and so that
1906 * starting sectors increase.
1907 *
1908 * After this it may still be that cfdisk doesnt like the table.
1909 * (This is because cfdisk considers expanded parts, from link to
1910 * end of partition, and these may still overlap.)
1911 * Now
1912 * sfdisk /dev/hda > ohda; sfdisk /dev/hda < ohda
1913 * may help.
1914 */
1915static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001916fix_chain_of_logicals(void)
1917{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001918 int j, oj, ojj, sj, sjj;
1919 struct partition *pj,*pjj,tmp;
1920
1921 /* Stage 1: sort sectors but leave sector of part 4 */
1922 /* (Its sector is the global extended_offset.) */
1923 stage1:
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001924 for (j = 5; j < g_partitions - 1; j++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001925 oj = ptes[j].offset;
1926 ojj = ptes[j+1].offset;
1927 if (oj > ojj) {
1928 ptes[j].offset = ojj;
1929 ptes[j+1].offset = oj;
1930 pj = ptes[j].part_table;
1931 set_start_sect(pj, get_start_sect(pj)+oj-ojj);
1932 pjj = ptes[j+1].part_table;
1933 set_start_sect(pjj, get_start_sect(pjj)+ojj-oj);
1934 set_start_sect(ptes[j-1].ext_pointer,
Rob Landleyb73451d2006-02-24 16:29:00 +00001935 ojj-extended_offset);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001936 set_start_sect(ptes[j].ext_pointer,
Rob Landleyb73451d2006-02-24 16:29:00 +00001937 oj-extended_offset);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001938 goto stage1;
1939 }
1940 }
1941
1942 /* Stage 2: sort starting sectors */
1943 stage2:
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001944 for (j = 4; j < g_partitions - 1; j++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001945 pj = ptes[j].part_table;
1946 pjj = ptes[j+1].part_table;
1947 sj = get_start_sect(pj);
1948 sjj = get_start_sect(pjj);
1949 oj = ptes[j].offset;
1950 ojj = ptes[j+1].offset;
1951 if (oj+sj > ojj+sjj) {
1952 tmp = *pj;
1953 *pj = *pjj;
1954 *pjj = tmp;
1955 set_start_sect(pj, ojj+sjj-oj);
1956 set_start_sect(pjj, oj+sj-ojj);
1957 goto stage2;
1958 }
1959 }
1960
1961 /* Probably something was changed */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001962 for (j = 4; j < g_partitions; j++)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001963 ptes[j].changed = 1;
1964}
1965
1966
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001967static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001968fix_partition_table_order(void)
1969{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001970 struct pte *pei, *pek;
1971 int i,k;
1972
1973 if (!wrong_p_order(NULL)) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001974 printf("Ordering is already correct\n\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001975 return;
1976 }
1977
1978 while ((i = wrong_p_order(&k)) != 0 && i < 4) {
1979 /* partition i should have come earlier, move it */
1980 /* We have to move data in the MBR */
1981 struct partition *pi, *pk, *pe, pbuf;
1982 pei = &ptes[i];
1983 pek = &ptes[k];
1984
1985 pe = pei->ext_pointer;
1986 pei->ext_pointer = pek->ext_pointer;
1987 pek->ext_pointer = pe;
1988
1989 pi = pei->part_table;
1990 pk = pek->part_table;
1991
1992 memmove(&pbuf, pi, sizeof(struct partition));
1993 memmove(pi, pk, sizeof(struct partition));
1994 memmove(pk, &pbuf, sizeof(struct partition));
1995
1996 pei->changed = pek->changed = 1;
1997 }
1998
1999 if (i)
2000 fix_chain_of_logicals();
2001
2002 printf("Done.\n");
2003
2004}
2005#endif
2006
2007static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002008list_table(int xtra)
2009{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002010 const struct partition *p;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002011 int i, w;
2012
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002013 if (LABEL_IS_SUN) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002014 sun_list_table(xtra);
2015 return;
2016 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002017 if (LABEL_IS_SUN) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002018 sgi_list_table(xtra);
2019 return;
2020 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002021
2022 list_disk_geometry();
2023
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002024 if (LABEL_IS_OSF) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002025 xbsd_print_disklabel(xtra);
2026 return;
2027 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002028
2029 /* Heuristic: we list partition 3 of /dev/foo as /dev/foo3,
2030 but if the device name ends in a digit, say /dev/foo1,
2031 then the partition is called /dev/foo1p3. */
2032 w = strlen(disk_device);
2033 if (w && isdigit(disk_device[w-1]))
2034 w++;
2035 if (w < 5)
2036 w = 5;
2037
Denis Vlasenkobd852072007-03-19 14:43:38 +00002038 // 1 12345678901 12345678901 12345678901 12
2039 printf("%*s Boot Start End Blocks Id System\n",
2040 w+1, "Device");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002041
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002042 for (i = 0; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002043 const struct pte *pe = &ptes[i];
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002044 ullong psects;
2045 ullong pblocks;
Denis Vlasenko834410a2006-11-29 12:00:28 +00002046 unsigned podd;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002047
2048 p = pe->part_table;
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002049 if (!p || is_cleared_partition(p))
2050 continue;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002051
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002052 psects = get_nr_sects(p);
2053 pblocks = psects;
2054 podd = 0;
2055
2056 if (sector_size < 1024) {
2057 pblocks /= (1024 / sector_size);
2058 podd = psects % (1024 / sector_size);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002059 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002060 if (sector_size > 1024)
2061 pblocks *= (sector_size / 1024);
2062
2063 printf("%s %c %11llu %11llu %11llu%c %2x %s\n",
2064 partname(disk_device, i+1, w+2),
2065 !p->boot_ind ? ' ' : p->boot_ind == ACTIVE_FLAG /* boot flag */
2066 ? '*' : '?',
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002067 (ullong) cround(get_partition_start(pe)), /* start */
2068 (ullong) cround(get_partition_start(pe) + psects /* end */
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002069 - (psects ? 1 : 0)),
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002070 (ullong) pblocks, podd ? '+' : ' ', /* odd flag on end */
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002071 p->sys_ind, /* type id */
2072 partition_type(p->sys_ind)); /* type name */
2073
2074 check_consistency(p, i);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002075 }
2076
2077 /* Is partition table in disk order? It need not be, but... */
2078 /* partition table entries are not checked for correct order if this
2079 is a sgi, sun or aix labeled disk... */
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002080 if (LABEL_IS_DOS && wrong_p_order(NULL)) {
Rob Landley5527b912006-02-25 03:46:10 +00002081 /* FIXME */
Denis Vlasenkobd852072007-03-19 14:43:38 +00002082 printf("\nPartition table entries are not in disk order\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002083 }
2084}
2085
Denis Vlasenko834410a2006-11-29 12:00:28 +00002086#if ENABLE_FEATURE_FDISK_ADVANCED
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002087static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002088x_list_table(int extend)
2089{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002090 const struct pte *pe;
2091 const struct partition *p;
2092 int i;
2093
Denis Vlasenkobd852072007-03-19 14:43:38 +00002094 printf("\nDisk %s: %d heads, %d sectors, %d cylinders\n\n",
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002095 disk_device, g_heads, g_sectors, g_cylinders);
Denis Vlasenkobd852072007-03-19 14:43:38 +00002096 printf("Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID\n");
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002097 for (i = 0; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002098 pe = &ptes[i];
2099 p = (extend ? pe->ext_pointer : pe->part_table);
2100 if (p != NULL) {
Eric Andersen040f4402003-07-30 08:40:37 +00002101 printf("%2d %02x%4d%4d%5d%4d%4d%5d%11u%11u %02x\n",
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002102 i + 1, p->boot_ind, p->head,
2103 sector(p->sector),
2104 cylinder(p->sector, p->cyl), p->end_head,
2105 sector(p->end_sector),
2106 cylinder(p->end_sector, p->end_cyl),
2107 get_start_sect(p), get_nr_sects(p), p->sys_ind);
2108 if (p->sys_ind)
2109 check_consistency(p, i);
2110 }
2111 }
2112}
2113#endif
2114
Denis Vlasenko834410a2006-11-29 12:00:28 +00002115#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002116static void
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002117fill_bounds(ullong *first, ullong *last)
Rob Landleyb73451d2006-02-24 16:29:00 +00002118{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002119 int i;
2120 const struct pte *pe = &ptes[0];
2121 const struct partition *p;
2122
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002123 for (i = 0; i < g_partitions; pe++,i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002124 p = pe->part_table;
Rob Landleyb73451d2006-02-24 16:29:00 +00002125 if (!p->sys_ind || IS_EXTENDED(p->sys_ind)) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002126 first[i] = 0xffffffff;
2127 last[i] = 0;
2128 } else {
2129 first[i] = get_partition_start(pe);
2130 last[i] = first[i] + get_nr_sects(p) - 1;
2131 }
2132 }
2133}
2134
2135static void
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002136check(int n, unsigned h, unsigned s, unsigned c, ullong start)
Rob Landleyb73451d2006-02-24 16:29:00 +00002137{
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002138 ullong total, real_s, real_c;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002139
2140 real_s = sector(s) - 1;
2141 real_c = cylinder(s, c);
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002142 total = (real_c * g_sectors + real_s) * g_heads + h;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002143 if (!total)
Denis Vlasenkobd852072007-03-19 14:43:38 +00002144 printf("Partition %d contains sector 0\n", n);
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002145 if (h >= g_heads)
Denis Vlasenkobd852072007-03-19 14:43:38 +00002146 printf("Partition %d: head %d greater than maximum %d\n",
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002147 n, h + 1, g_heads);
2148 if (real_s >= g_sectors)
Denis Vlasenkobd852072007-03-19 14:43:38 +00002149 printf("Partition %d: sector %d greater than "
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002150 "maximum %d\n", n, s, g_sectors);
2151 if (real_c >= g_cylinders)
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002152 printf("Partition %d: cylinder %llu greater than "
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002153 "maximum %d\n", n, real_c + 1, g_cylinders);
2154 if (g_cylinders <= 1024 && start != total)
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002155 printf("Partition %d: previous sectors %llu disagrees with "
2156 "total %llu\n", n, start, total);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002157}
2158
2159static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002160verify(void)
2161{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002162 int i, j;
Denis Vlasenko834410a2006-11-29 12:00:28 +00002163 unsigned total = 1;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002164 ullong first[g_partitions], last[g_partitions];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002165 struct partition *p;
2166
2167 if (warn_geometry())
2168 return;
2169
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002170 if (LABEL_IS_SUN) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002171 verify_sun();
2172 return;
2173 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002174 if (LABEL_IS_SGI) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002175 verify_sgi(1);
2176 return;
2177 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002178
2179 fill_bounds(first, last);
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002180 for (i = 0; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002181 struct pte *pe = &ptes[i];
2182
2183 p = pe->part_table;
Rob Landleyb73451d2006-02-24 16:29:00 +00002184 if (p->sys_ind && !IS_EXTENDED(p->sys_ind)) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002185 check_consistency(p, i);
2186 if (get_partition_start(pe) < first[i])
Denis Vlasenkobd852072007-03-19 14:43:38 +00002187 printf("Warning: bad start-of-data in "
2188 "partition %d\n", i + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002189 check(i + 1, p->end_head, p->end_sector, p->end_cyl,
2190 last[i]);
2191 total += last[i] + 1 - first[i];
Denis Vlasenkobd852072007-03-19 14:43:38 +00002192 for (j = 0; j < i; j++) {
2193 if ((first[i] >= first[j] && first[i] <= last[j])
2194 || ((last[i] <= last[j] && last[i] >= first[j]))) {
2195 printf("Warning: partition %d overlaps "
2196 "partition %d\n", j + 1, i + 1);
2197 total += first[i] >= first[j] ?
2198 first[i] : first[j];
2199 total -= last[i] <= last[j] ?
2200 last[i] : last[j];
2201 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002202 }
2203 }
2204 }
2205
2206 if (extended_offset) {
2207 struct pte *pex = &ptes[ext_index];
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002208 ullong e_last = get_start_sect(pex->part_table) +
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002209 get_nr_sects(pex->part_table) - 1;
2210
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002211 for (i = 4; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002212 total++;
2213 p = ptes[i].part_table;
2214 if (!p->sys_ind) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002215 if (i != 4 || i + 1 < g_partitions)
Denis Vlasenkobd852072007-03-19 14:43:38 +00002216 printf("Warning: partition %d "
2217 "is empty\n", i + 1);
2218 } else if (first[i] < extended_offset || last[i] > e_last) {
2219 printf("Logical partition %d not entirely in "
2220 "partition %d\n", i + 1, ext_index + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002221 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002222 }
2223 }
2224
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002225 if (total > g_heads * g_sectors * g_cylinders)
Denis Vlasenkobd852072007-03-19 14:43:38 +00002226 printf("Total allocated sectors %d greater than the maximum "
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002227 "%d\n", total, g_heads * g_sectors * g_cylinders);
Denis Vlasenkobd852072007-03-19 14:43:38 +00002228 else {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002229 total = g_heads * g_sectors * g_cylinders - total;
Denis Vlasenkobd852072007-03-19 14:43:38 +00002230 if (total != 0)
2231 printf("%d unallocated sectors\n", total);
2232 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002233}
2234
2235static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002236add_partition(int n, int sys)
2237{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002238 char mesg[256]; /* 48 does not suffice in Japanese */
Mike Frysingerfa6c4842006-05-26 01:48:17 +00002239 int i, num_read = 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002240 struct partition *p = ptes[n].part_table;
2241 struct partition *q = ptes[ext_index].part_table;
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002242 ullong limit, temp;
2243 ullong start, stop = 0;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002244 ullong first[g_partitions], last[g_partitions];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002245
2246 if (p && p->sys_ind) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00002247 printf(msg_part_already_defined, n + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002248 return;
2249 }
2250 fill_bounds(first, last);
2251 if (n < 4) {
2252 start = sector_offset;
Eric Andersen040f4402003-07-30 08:40:37 +00002253 if (display_in_cyl_units || !total_number_of_sectors)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002254 limit = (ullong) g_heads * g_sectors * g_cylinders - 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002255 else
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002256 limit = total_number_of_sectors - 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002257 if (extended_offset) {
2258 first[ext_index] = extended_offset;
2259 last[ext_index] = get_start_sect(q) +
2260 get_nr_sects(q) - 1;
2261 }
2262 } else {
2263 start = extended_offset + sector_offset;
2264 limit = get_start_sect(q) + get_nr_sects(q) - 1;
2265 }
2266 if (display_in_cyl_units)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002267 for (i = 0; i < g_partitions; i++)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002268 first[i] = (cround(first[i]) - 1) * units_per_sector;
2269
Denis Vlasenkobd852072007-03-19 14:43:38 +00002270 snprintf(mesg, sizeof(mesg), "First %s", str_units(SINGULAR));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002271 do {
2272 temp = start;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002273 for (i = 0; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002274 int lastplusoff;
2275
2276 if (start == ptes[i].offset)
2277 start += sector_offset;
Rob Landleyb73451d2006-02-24 16:29:00 +00002278 lastplusoff = last[i] + ((n < 4) ? 0 : sector_offset);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002279 if (start >= first[i] && start <= lastplusoff)
2280 start = lastplusoff + 1;
2281 }
2282 if (start > limit)
2283 break;
Mike Frysingerfa6c4842006-05-26 01:48:17 +00002284 if (start >= temp+units_per_sector && num_read) {
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002285 printf("Sector %lld is already allocated\n", temp);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002286 temp = start;
Mike Frysingerfa6c4842006-05-26 01:48:17 +00002287 num_read = 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002288 }
Mike Frysingerfa6c4842006-05-26 01:48:17 +00002289 if (!num_read && start == temp) {
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002290 ullong saved_start;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002291
2292 saved_start = start;
2293 start = read_int(cround(saved_start), cround(saved_start), cround(limit),
2294 0, mesg);
2295 if (display_in_cyl_units) {
2296 start = (start - 1) * units_per_sector;
2297 if (start < saved_start) start = saved_start;
2298 }
Mike Frysingerfa6c4842006-05-26 01:48:17 +00002299 num_read = 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002300 }
Mike Frysingerfa6c4842006-05-26 01:48:17 +00002301 } while (start != temp || !num_read);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002302 if (n > 4) { /* NOT for fifth partition */
2303 struct pte *pe = &ptes[n];
2304
2305 pe->offset = start - sector_offset;
2306 if (pe->offset == extended_offset) { /* must be corrected */
2307 pe->offset++;
2308 if (sector_offset == 1)
2309 start++;
2310 }
2311 }
2312
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002313 for (i = 0; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002314 struct pte *pe = &ptes[i];
2315
2316 if (start < pe->offset && limit >= pe->offset)
2317 limit = pe->offset - 1;
2318 if (start < first[i] && limit >= first[i])
2319 limit = first[i] - 1;
2320 }
2321 if (start > limit) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00002322 printf("No free sectors available\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002323 if (n > 4)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002324 g_partitions--;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002325 return;
2326 }
2327 if (cround(start) == cround(limit)) {
2328 stop = limit;
2329 } else {
2330 snprintf(mesg, sizeof(mesg),
Denis Vlasenkobd852072007-03-19 14:43:38 +00002331 "Last %s or +size or +sizeM or +sizeK",
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002332 str_units(SINGULAR));
2333 stop = read_int(cround(start), cround(limit), cround(limit),
2334 cround(start), mesg);
2335 if (display_in_cyl_units) {
2336 stop = stop * units_per_sector - 1;
2337 if (stop >limit)
2338 stop = limit;
2339 }
2340 }
2341
2342 set_partition(n, 0, start, stop, sys);
2343 if (n > 4)
2344 set_partition(n - 1, 1, ptes[n].offset, stop, EXTENDED);
2345
Rob Landleyb73451d2006-02-24 16:29:00 +00002346 if (IS_EXTENDED(sys)) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002347 struct pte *pe4 = &ptes[4];
2348 struct pte *pen = &ptes[n];
2349
2350 ext_index = n;
2351 pen->ext_pointer = p;
2352 pe4->offset = extended_offset = start;
Rob Landley081e3842006-08-03 20:07:35 +00002353 pe4->sectorbuffer = xzalloc(sector_size);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002354 pe4->part_table = pt_offset(pe4->sectorbuffer, 0);
2355 pe4->ext_pointer = pe4->part_table + 1;
2356 pe4->changed = 1;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002357 g_partitions = 5;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002358 }
2359}
2360
2361static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002362add_logical(void)
2363{
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002364 if (g_partitions > 5 || ptes[4].part_table->sys_ind) {
2365 struct pte *pe = &ptes[g_partitions];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002366
Rob Landley081e3842006-08-03 20:07:35 +00002367 pe->sectorbuffer = xzalloc(sector_size);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002368 pe->part_table = pt_offset(pe->sectorbuffer, 0);
2369 pe->ext_pointer = pe->part_table + 1;
2370 pe->offset = 0;
2371 pe->changed = 1;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002372 g_partitions++;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002373 }
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002374 add_partition(g_partitions - 1, LINUX_NATIVE);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002375}
2376
2377static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002378new_partition(void)
2379{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002380 int i, free_primary = 0;
2381
2382 if (warn_geometry())
2383 return;
2384
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002385 if (LABEL_IS_SUN) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002386 add_sun_partition(get_partition(0, g_partitions), LINUX_NATIVE);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002387 return;
2388 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002389 if (LABEL_IS_SGI) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002390 sgi_add_partition(get_partition(0, g_partitions), LINUX_NATIVE);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002391 return;
2392 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002393 if (LABEL_IS_AIX) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00002394 printf("Sorry - this fdisk cannot handle AIX disk labels.\n"
2395"If you want to add DOS-type partitions, create a new empty DOS partition\n"
2396"table first (use 'o'). This will destroy the present disk contents.\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002397 return;
2398 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002399
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002400 for (i = 0; i < 4; i++)
2401 free_primary += !ptes[i].part_table->sys_ind;
Eric Andersenc48d49a2003-07-03 10:02:32 +00002402
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002403 if (!free_primary && g_partitions >= MAXIMUM_PARTS) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00002404 printf("The maximum number of partitions has been created\n");
Eric Andersen84bdea82004-05-19 10:49:17 +00002405 return;
Rob Landleyb73451d2006-02-24 16:29:00 +00002406 }
Eric Andersenc48d49a2003-07-03 10:02:32 +00002407
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002408 if (!free_primary) {
2409 if (extended_offset)
2410 add_logical();
2411 else
Denis Vlasenkobd852072007-03-19 14:43:38 +00002412 printf("You must delete some partition and add "
2413 "an extended partition first\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002414 } else {
Denis Vlasenkodfce08f2007-03-19 14:45:10 +00002415 char c, line[80];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002416 snprintf(line, sizeof(line),
2417 "Command action\n"
2418 " %s\n"
2419 " p primary partition (1-4)\n",
2420 (extended_offset ?
2421 "l logical (5 or over)" : "e extended"));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002422 while (1) {
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002423 c = read_nonempty(line);
2424 if (c == 'p' || c == 'P') {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002425 i = get_nonexisting_partition(0, 4);
2426 if (i >= 0)
2427 add_partition(i, LINUX_NATIVE);
2428 return;
2429 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00002430 if (c == 'l' && extended_offset) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002431 add_logical();
2432 return;
2433 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00002434 if (c == 'e' && !extended_offset) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002435 i = get_nonexisting_partition(0, 4);
2436 if (i >= 0)
2437 add_partition(i, EXTENDED);
2438 return;
2439 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00002440 printf("Invalid partition number "
2441 "for type '%c'\n", c);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002442 }
2443 }
2444}
2445
2446static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002447write_table(void)
2448{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002449 int i;
2450
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002451 if (LABEL_IS_DOS) {
Rob Landleyb73451d2006-02-24 16:29:00 +00002452 for (i = 0; i < 3; i++)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002453 if (ptes[i].changed)
2454 ptes[3].changed = 1;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002455 for (i = 3; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002456 struct pte *pe = &ptes[i];
2457
2458 if (pe->changed) {
2459 write_part_table_flag(pe->sectorbuffer);
2460 write_sector(pe->offset, pe->sectorbuffer);
2461 }
2462 }
2463 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002464 else if (LABEL_IS_SGI) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002465 /* no test on change? the printf below might be mistaken */
2466 sgi_write_table();
2467 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002468 else if (LABEL_IS_SUN) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002469 int needw = 0;
2470
Rob Landleyb73451d2006-02-24 16:29:00 +00002471 for (i = 0; i < 8; i++)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002472 if (ptes[i].changed)
2473 needw = 1;
2474 if (needw)
2475 sun_write_table();
2476 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002477
Denis Vlasenkobd852072007-03-19 14:43:38 +00002478 printf("The partition table has been altered!\n\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002479 reread_partition_table(1);
2480}
2481
Rob Landleyb73451d2006-02-24 16:29:00 +00002482static void
2483reread_partition_table(int leave)
2484{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002485 int i;
2486
Denis Vlasenkobd852072007-03-19 14:43:38 +00002487 printf("Calling ioctl() to re-read partition table\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002488 sync();
Denis Vlasenkobd852072007-03-19 14:43:38 +00002489 /* sleep(2); Huh? */
Denis Vlasenko4437d192008-04-17 00:12:10 +00002490 i = ioctl_or_perror(dev_fd, BLKRRPART, NULL,
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +00002491 "WARNING: rereading partition table "
Denis Vlasenko28703012006-12-19 20:32:02 +00002492 "failed, kernel still uses old table");
Denis Vlasenko28703012006-12-19 20:32:02 +00002493#if 0
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002494 if (dos_changed)
Rob Landleyb73451d2006-02-24 16:29:00 +00002495 printf(
Denis Vlasenkobd852072007-03-19 14:43:38 +00002496 "\nWARNING: If you have created or modified any DOS 6.x\n"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002497 "partitions, please see the fdisk manual page for additional\n"
Denis Vlasenkobd852072007-03-19 14:43:38 +00002498 "information\n");
Denis Vlasenko28703012006-12-19 20:32:02 +00002499#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002500
2501 if (leave) {
Denis Vlasenko28703012006-12-19 20:32:02 +00002502 if (ENABLE_FEATURE_CLEAN_UP)
Denis Vlasenkoc033d512008-04-17 01:52:28 +00002503 close_dev_fd();
Denis Vlasenko28703012006-12-19 20:32:02 +00002504 exit(i != 0);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002505 }
2506}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002507#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002508
Denis Vlasenko834410a2006-11-29 12:00:28 +00002509#if ENABLE_FEATURE_FDISK_ADVANCED
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002510#define MAX_PER_LINE 16
2511static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002512print_buffer(char *pbuffer)
2513{
2514 int i,l;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002515
2516 for (i = 0, l = 0; i < sector_size; i++, l++) {
2517 if (l == 0)
2518 printf("0x%03X:", i);
2519 printf(" %02X", (unsigned char) pbuffer[i]);
2520 if (l == MAX_PER_LINE - 1) {
Denis Vlasenko4daad902007-09-27 10:20:47 +00002521 bb_putchar('\n');
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002522 l = -1;
2523 }
2524 }
2525 if (l > 0)
Denis Vlasenko4daad902007-09-27 10:20:47 +00002526 bb_putchar('\n');
2527 bb_putchar('\n');
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002528}
2529
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002530static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002531print_raw(void)
2532{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002533 int i;
2534
Denis Vlasenkobd852072007-03-19 14:43:38 +00002535 printf("Device: %s\n", disk_device);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002536 if (LABEL_IS_SGI || LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002537 print_buffer(MBRbuffer);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002538 else {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002539 for (i = 3; i < g_partitions; i++)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002540 print_buffer(ptes[i].sectorbuffer);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002541 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002542}
2543
2544static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002545move_begin(int i)
2546{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002547 struct pte *pe = &ptes[i];
2548 struct partition *p = pe->part_table;
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002549 ullong new, first;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002550
2551 if (warn_geometry())
2552 return;
Rob Landleyb73451d2006-02-24 16:29:00 +00002553 if (!p->sys_ind || !get_nr_sects(p) || IS_EXTENDED(p->sys_ind)) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00002554 printf("Partition %d has no data area\n", i + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002555 return;
2556 }
2557 first = get_partition_start(pe);
2558 new = read_int(first, first, first + get_nr_sects(p) - 1, first,
Denis Vlasenkobd852072007-03-19 14:43:38 +00002559 "New beginning of data") - pe->offset;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002560
2561 if (new != get_nr_sects(p)) {
2562 first = get_nr_sects(p) + get_start_sect(p) - new;
2563 set_nr_sects(p, first);
2564 set_start_sect(p, new);
2565 pe->changed = 1;
2566 }
2567}
2568
2569static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002570xselect(void)
2571{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002572 char c;
2573
Rob Landleyb73451d2006-02-24 16:29:00 +00002574 while (1) {
Denis Vlasenko4daad902007-09-27 10:20:47 +00002575 bb_putchar('\n');
Denis Vlasenkobd852072007-03-19 14:43:38 +00002576 c = tolower(read_nonempty("Expert command (m for help): "));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002577 switch (c) {
2578 case 'a':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002579 if (LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002580 sun_set_alt_cyl();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002581 break;
2582 case 'b':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002583 if (LABEL_IS_DOS)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002584 move_begin(get_partition(0, g_partitions));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002585 break;
2586 case 'c':
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002587 user_cylinders = g_cylinders =
2588 read_int(1, g_cylinders, 1048576, 0,
Denis Vlasenkobd852072007-03-19 14:43:38 +00002589 "Number of cylinders");
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002590 if (LABEL_IS_SUN)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002591 sun_set_ncyl(g_cylinders);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002592 if (LABEL_IS_DOS)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002593 warn_cylinders();
2594 break;
2595 case 'd':
2596 print_raw();
2597 break;
2598 case 'e':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002599 if (LABEL_IS_SGI)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002600 sgi_set_xcyl();
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002601 else if (LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002602 sun_set_xcyl();
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002603 else if (LABEL_IS_DOS)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002604 x_list_table(1);
2605 break;
2606 case 'f':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002607 if (LABEL_IS_DOS)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002608 fix_partition_table_order();
2609 break;
2610 case 'g':
Denis Vlasenko834410a2006-11-29 12:00:28 +00002611#if ENABLE_FEATURE_SGI_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002612 create_sgilabel();
2613#endif
2614 break;
2615 case 'h':
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002616 user_heads = g_heads = read_int(1, g_heads, 256, 0,
Denis Vlasenkobd852072007-03-19 14:43:38 +00002617 "Number of heads");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002618 update_units();
2619 break;
2620 case 'i':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002621 if (LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002622 sun_set_ilfact();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002623 break;
2624 case 'o':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002625 if (LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002626 sun_set_rspeed();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002627 break;
2628 case 'p':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002629 if (LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002630 list_table(1);
2631 else
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002632 x_list_table(0);
2633 break;
2634 case 'q':
Denis Vlasenko4437d192008-04-17 00:12:10 +00002635 if (ENABLE_FEATURE_CLEAN_UP)
Denis Vlasenkoc033d512008-04-17 01:52:28 +00002636 close_dev_fd();
Denis Vlasenko4daad902007-09-27 10:20:47 +00002637 bb_putchar('\n');
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00002638 exit(EXIT_SUCCESS);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002639 case 'r':
2640 return;
2641 case 's':
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002642 user_sectors = g_sectors = read_int(1, g_sectors, 63, 0,
Denis Vlasenkobd852072007-03-19 14:43:38 +00002643 "Number of sectors");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002644 if (dos_compatible_flag) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002645 sector_offset = g_sectors;
Denis Vlasenkobd852072007-03-19 14:43:38 +00002646 printf("Warning: setting sector offset for DOS "
2647 "compatiblity\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002648 }
2649 update_units();
2650 break;
2651 case 'v':
2652 verify();
2653 break;
2654 case 'w':
2655 write_table(); /* does not return */
2656 break;
2657 case 'y':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002658 if (LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002659 sun_set_pcylcount();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002660 break;
2661 default:
2662 xmenu();
2663 }
2664 }
2665}
2666#endif /* ADVANCED mode */
2667
2668static int
Rob Landleyb73451d2006-02-24 16:29:00 +00002669is_ide_cdrom_or_tape(const char *device)
2670{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002671 FILE *procf;
2672 char buf[100];
2673 struct stat statbuf;
2674 int is_ide = 0;
2675
2676 /* No device was given explicitly, and we are trying some
2677 likely things. But opening /dev/hdc may produce errors like
2678 "hdc: tray open or drive not ready"
2679 if it happens to be a CD-ROM drive. It even happens that
2680 the process hangs on the attempt to read a music CD.
2681 So try to be careful. This only works since 2.1.73. */
2682
2683 if (strncmp("/dev/hd", device, 7))
2684 return 0;
2685
2686 snprintf(buf, sizeof(buf), "/proc/ide/%s/media", device+5);
Denis Vlasenko5415c852008-07-21 23:05:26 +00002687 procf = fopen_for_read(buf);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002688 if (procf != NULL && fgets(buf, sizeof(buf), procf))
2689 is_ide = (!strncmp(buf, "cdrom", 5) ||
2690 !strncmp(buf, "tape", 4));
2691 else
2692 /* Now when this proc file does not exist, skip the
2693 device when it is read-only. */
2694 if (stat(device, &statbuf) == 0)
2695 is_ide = ((statbuf.st_mode & 0222) == 0);
2696
2697 if (procf)
2698 fclose(procf);
2699 return is_ide;
2700}
2701
Rob Landley5527b912006-02-25 03:46:10 +00002702
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002703static void
Denis Vlasenko4437d192008-04-17 00:12:10 +00002704open_list_and_close(const char *device, int user_specified)
Rob Landleyb73451d2006-02-24 16:29:00 +00002705{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002706 int gb;
2707
2708 disk_device = device;
2709 if (setjmp(listingbuf))
2710 return;
2711 if (!user_specified)
2712 if (is_ide_cdrom_or_tape(device))
2713 return;
Denis Vlasenko4437d192008-04-17 00:12:10 +00002714
2715 /* Open disk_device, save file descriptor to dev_fd */
2716 errno = 0;
2717 gb = get_boot(TRY_ONLY);
2718 if (gb > 0) { /* I/O error */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002719 /* Ignore other errors, since we try IDE
2720 and SCSI hard disks which may not be
2721 installed on the system. */
Denis Vlasenko4437d192008-04-17 00:12:10 +00002722 if (user_specified || errno == EACCES)
2723 bb_perror_msg("can't open '%s'", device);
2724 return;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002725 }
Denis Vlasenko4437d192008-04-17 00:12:10 +00002726
2727 if (gb < 0) { /* no DOS signature */
2728 list_disk_geometry();
2729 if (LABEL_IS_AIX)
2730 goto ret;
2731#if ENABLE_FEATURE_OSF_LABEL
2732 if (bsd_trydev(device) < 0)
2733#endif
2734 printf("Disk %s doesn't contain a valid "
2735 "partition table\n", device);
2736 } else {
2737 list_table(0);
2738#if ENABLE_FEATURE_FDISK_WRITABLE
2739 if (!LABEL_IS_SUN && g_partitions > 4) {
2740 delete_partition(ext_index);
2741 }
2742#endif
2743 }
2744 ret:
Denis Vlasenkoc033d512008-04-17 01:52:28 +00002745 close_dev_fd();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002746}
2747
2748/* for fdisk -l: try all things in /proc/partitions
2749 that look like a partition name (do not end in a digit) */
2750static void
Denis Vlasenko4437d192008-04-17 00:12:10 +00002751list_devs_in_proc_partititons(void)
Rob Landleyb73451d2006-02-24 16:29:00 +00002752{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002753 FILE *procpt;
2754 char line[100], ptname[100], devname[120], *s;
2755 int ma, mi, sz;
2756
Denis Vlasenkoddec5af2006-10-26 23:25:17 +00002757 procpt = fopen_or_warn("/proc/partitions", "r");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002758
2759 while (fgets(line, sizeof(line), procpt)) {
Rob Landleyb73451d2006-02-24 16:29:00 +00002760 if (sscanf(line, " %d %d %d %[^\n ]",
2761 &ma, &mi, &sz, ptname) != 4)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002762 continue;
Denis Vlasenkocdf62772008-03-17 08:42:43 +00002763 for (s = ptname; *s; s++)
2764 continue;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002765 if (isdigit(s[-1]))
2766 continue;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00002767 sprintf(devname, "/dev/%s", ptname);
Denis Vlasenko4437d192008-04-17 00:12:10 +00002768 open_list_and_close(devname, 0);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002769 }
Denis Vlasenko834410a2006-11-29 12:00:28 +00002770#if ENABLE_FEATURE_CLEAN_UP
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002771 fclose(procpt);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00002772#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002773}
2774
Denis Vlasenko834410a2006-11-29 12:00:28 +00002775#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002776static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002777unknown_command(int c)
2778{
Denis Vlasenkobd852072007-03-19 14:43:38 +00002779 printf("%c: unknown command\n", c);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002780}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00002781#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002782
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00002783int fdisk_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleyb73451d2006-02-24 16:29:00 +00002784int fdisk_main(int argc, char **argv)
2785{
Denis Vlasenko834410a2006-11-29 12:00:28 +00002786 unsigned opt;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002787 /*
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002788 * fdisk -v
2789 * fdisk -l [-b sectorsize] [-u] device ...
2790 * fdisk -s [partition] ...
2791 * fdisk [-b sectorsize] [-u] device
2792 *
2793 * Options -C, -H, -S set the geometry.
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002794 */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002795 INIT_G();
Denis Vlasenko8e1a0cc2007-03-18 14:42:45 +00002796
Denis Vlasenkoc033d512008-04-17 01:52:28 +00002797 close_dev_fd(); /* needed: fd 3 must not stay closed */
Denis Vlasenko4437d192008-04-17 00:12:10 +00002798
Denis Vlasenko04e11c92008-02-10 19:44:20 +00002799 opt_complementary = "b+:C+:H+:S+"; /* numeric params */
Denis Vlasenkofe7cd642007-08-18 15:32:12 +00002800 opt = getopt32(argv, "b:C:H:lS:u" USE_FEATURE_FDISK_BLKSIZE("s"),
Denis Vlasenko04e11c92008-02-10 19:44:20 +00002801 &sector_size, &user_cylinders, &user_heads, &user_sectors);
Denis Vlasenko834410a2006-11-29 12:00:28 +00002802 argc -= optind;
2803 argv += optind;
2804 if (opt & OPT_b) { // -b
2805 /* Ugly: this sector size is really per device,
2806 so cannot be combined with multiple disks,
2807 and the same goes for the C/H/S options.
2808 */
Denis Vlasenko04e11c92008-02-10 19:44:20 +00002809 if (sector_size != 512 && sector_size != 1024
2810 && sector_size != 2048)
Manuel Novoa III cad53642003-03-19 09:13:01 +00002811 bb_show_usage();
Denis Vlasenko834410a2006-11-29 12:00:28 +00002812 sector_offset = 2;
2813 user_set_sector_size = 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002814 }
Denis Vlasenko04e11c92008-02-10 19:44:20 +00002815 if (user_heads <= 0 || user_heads >= 256)
2816 user_heads = 0;
2817 if (user_sectors <= 0 || user_sectors >= 64)
2818 user_sectors = 0;
2819 if (opt & OPT_u)
2820 display_in_cyl_units = 0; // -u
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002821
Denis Vlasenko834410a2006-11-29 12:00:28 +00002822#if ENABLE_FEATURE_FDISK_WRITABLE
2823 if (opt & OPT_l) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002824 nowarn = 1;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00002825#endif
Denis Vlasenkocdf62772008-03-17 08:42:43 +00002826 if (*argv) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002827 listing = 1;
Denis Vlasenkocdf62772008-03-17 08:42:43 +00002828 do {
Denis Vlasenko4437d192008-04-17 00:12:10 +00002829 open_list_and_close(*argv, 1);
Denis Vlasenkocdf62772008-03-17 08:42:43 +00002830 } while (*++argv);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002831 } else {
Denis Vlasenkocdf62772008-03-17 08:42:43 +00002832 /* we don't have device names, */
2833 /* use /proc/partitions instead */
Denis Vlasenko4437d192008-04-17 00:12:10 +00002834 list_devs_in_proc_partititons();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002835 }
2836 return 0;
Denis Vlasenko834410a2006-11-29 12:00:28 +00002837#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002838 }
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00002839#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002840
Denis Vlasenko834410a2006-11-29 12:00:28 +00002841#if ENABLE_FEATURE_FDISK_BLKSIZE
2842 if (opt & OPT_s) {
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00002843 int j;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002844
2845 nowarn = 1;
Denis Vlasenko834410a2006-11-29 12:00:28 +00002846 if (argc <= 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +00002847 bb_show_usage();
Denis Vlasenko834410a2006-11-29 12:00:28 +00002848 for (j = 0; j < argc; j++) {
Denis Vlasenkocdf62772008-03-17 08:42:43 +00002849 unsigned long long size;
2850 fd = xopen(argv[j], O_RDONLY);
Denis Vlasenko4437d192008-04-17 00:12:10 +00002851 size = bb_BLKGETSIZE_sectors(fd) / 2;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002852 close(fd);
Denis Vlasenko834410a2006-11-29 12:00:28 +00002853 if (argc == 1)
Denis Vlasenkocdf62772008-03-17 08:42:43 +00002854 printf("%lld\n", size);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002855 else
Denis Vlasenkocdf62772008-03-17 08:42:43 +00002856 printf("%s: %lld\n", argv[j], size);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002857 }
2858 return 0;
2859 }
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00002860#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002861
Denis Vlasenko834410a2006-11-29 12:00:28 +00002862#if ENABLE_FEATURE_FDISK_WRITABLE
2863 if (argc != 1)
Manuel Novoa III cad53642003-03-19 09:13:01 +00002864 bb_show_usage();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002865
Denis Vlasenko834410a2006-11-29 12:00:28 +00002866 disk_device = argv[0];
Denis Vlasenko4437d192008-04-17 00:12:10 +00002867 get_boot(OPEN_MAIN);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002868
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002869 if (LABEL_IS_OSF) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002870 /* OSF label, and no DOS label */
Denis Vlasenkobd852072007-03-19 14:43:38 +00002871 printf("Detected an OSF/1 disklabel on %s, entering "
2872 "disklabel mode\n", disk_device);
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +00002873 bsd_select();
Rob Landley5527b912006-02-25 03:46:10 +00002874 /*Why do we do this? It seems to be counter-intuitive*/
Denis Vlasenko4437d192008-04-17 00:12:10 +00002875 current_label_type = LABEL_DOS;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002876 /* If we return we may want to make an empty DOS label? */
2877 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002878
2879 while (1) {
Denis Vlasenko3bba5452006-12-30 17:57:03 +00002880 int c;
Denis Vlasenko4daad902007-09-27 10:20:47 +00002881 bb_putchar('\n');
Denis Vlasenkobd852072007-03-19 14:43:38 +00002882 c = tolower(read_nonempty("Command (m for help): "));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002883 switch (c) {
2884 case 'a':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002885 if (LABEL_IS_DOS)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002886 toggle_active(get_partition(1, g_partitions));
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002887 else if (LABEL_IS_SUN)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002888 toggle_sunflags(get_partition(1, g_partitions),
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002889 0x01);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002890 else if (LABEL_IS_SGI)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002891 sgi_set_bootpartition(
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002892 get_partition(1, g_partitions));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002893 else
2894 unknown_command(c);
2895 break;
2896 case 'b':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002897 if (LABEL_IS_SGI) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00002898 printf("\nThe current boot file is: %s\n",
Rob Landleyb73451d2006-02-24 16:29:00 +00002899 sgi_get_bootfile());
Denis Vlasenkobd852072007-03-19 14:43:38 +00002900 if (read_maybe_empty("Please enter the name of the "
2901 "new boot file: ") == '\n')
2902 printf("Boot file unchanged\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002903 else
2904 sgi_set_bootfile(line_ptr);
Denis Vlasenko834410a2006-11-29 12:00:28 +00002905 }
2906#if ENABLE_FEATURE_OSF_LABEL
2907 else
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +00002908 bsd_select();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002909#endif
2910 break;
2911 case 'c':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002912 if (LABEL_IS_DOS)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002913 toggle_dos_compatibility_flag();
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002914 else if (LABEL_IS_SUN)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002915 toggle_sunflags(get_partition(1, g_partitions),
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002916 0x10);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002917 else if (LABEL_IS_SGI)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002918 sgi_set_swappartition(
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002919 get_partition(1, g_partitions));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002920 else
2921 unknown_command(c);
2922 break;
2923 case 'd':
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00002924 {
Eric Andersen040f4402003-07-30 08:40:37 +00002925 int j;
Eric Andersen040f4402003-07-30 08:40:37 +00002926 /* If sgi_label then don't use get_existing_partition,
2927 let the user select a partition, since
2928 get_existing_partition() only works for Linux-like
2929 partition tables */
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002930 if (!LABEL_IS_SGI) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002931 j = get_existing_partition(1, g_partitions);
Eric Andersen040f4402003-07-30 08:40:37 +00002932 } else {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002933 j = get_partition(1, g_partitions);
Eric Andersen040f4402003-07-30 08:40:37 +00002934 }
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00002935 if (j >= 0)
2936 delete_partition(j);
2937 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002938 break;
2939 case 'i':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002940 if (LABEL_IS_SGI)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002941 create_sgiinfo();
2942 else
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002943 unknown_command(c);
2944 case 'l':
2945 list_types(get_sys_types());
2946 break;
2947 case 'm':
2948 menu();
2949 break;
2950 case 'n':
2951 new_partition();
2952 break;
2953 case 'o':
2954 create_doslabel();
2955 break;
2956 case 'p':
2957 list_table(0);
2958 break;
2959 case 'q':
Denis Vlasenkoc033d512008-04-17 01:52:28 +00002960 if (ENABLE_FEATURE_CLEAN_UP)
2961 close_dev_fd();
Denis Vlasenko4daad902007-09-27 10:20:47 +00002962 bb_putchar('\n');
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002963 return 0;
2964 case 's':
Denis Vlasenko834410a2006-11-29 12:00:28 +00002965#if ENABLE_FEATURE_SUN_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002966 create_sunlabel();
2967#endif
2968 break;
2969 case 't':
2970 change_sysid();
2971 break;
2972 case 'u':
2973 change_units();
2974 break;
2975 case 'v':
2976 verify();
2977 break;
2978 case 'w':
2979 write_table(); /* does not return */
2980 break;
Denis Vlasenko834410a2006-11-29 12:00:28 +00002981#if ENABLE_FEATURE_FDISK_ADVANCED
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002982 case 'x':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002983 if (LABEL_IS_SGI) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00002984 printf("\n\tSorry, no experts menu for SGI "
2985 "partition tables available\n\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002986 } else
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002987 xselect();
2988 break;
2989#endif
2990 default:
2991 unknown_command(c);
2992 menu();
2993 }
2994 }
2995 return 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002996#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002997}