blob: 827ea21f34a916b7bf7d080e6b8804fcfd666526 [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
Glenn L McGrath441e7ef2002-11-26 22:00:21 +000023#define DEFAULT_SECTOR_SIZE 512
24#define MAX_SECTOR_SIZE 2048
Denis Vlasenko98ae2162006-10-12 19:30:44 +000025#define SECTOR_SIZE 512 /* still used in osf/sgi/sun code */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +000026#define MAXIMUM_PARTS 60
27
28#define ACTIVE_FLAG 0x80
29
30#define EXTENDED 0x05
31#define WIN98_EXTENDED 0x0f
32#define LINUX_PARTITION 0x81
33#define LINUX_SWAP 0x82
34#define LINUX_NATIVE 0x83
35#define LINUX_EXTENDED 0x85
36#define LINUX_LVM 0x8e
37#define LINUX_RAID 0xfd
38
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +000039/* Used for sector numbers. Today's disk sizes make it necessary */
40typedef unsigned long long ullong;
41
Glenn L McGrath441e7ef2002-11-26 22:00:21 +000042struct hd_geometry {
Rob Landleyb73451d2006-02-24 16:29:00 +000043 unsigned char heads;
44 unsigned char sectors;
45 unsigned short cylinders;
46 unsigned long start;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +000047};
48
Denis Vlasenko98ae2162006-10-12 19:30:44 +000049#define HDIO_GETGEO 0x0301 /* get device geometry */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +000050
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000051static const char msg_building_new_label[] ALIGN1 =
Denis Vlasenkobd852072007-03-19 14:43:38 +000052"Building a new %s. Changes will remain in memory only,\n"
53"until you decide to write them. After that the previous content\n"
54"won't be recoverable.\n\n";
55
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000056static const char msg_part_already_defined[] ALIGN1 =
Denis Vlasenkobd852072007-03-19 14:43:38 +000057"Partition %d is already defined, delete it before re-adding\n";
58
Glenn L McGrath441e7ef2002-11-26 22:00:21 +000059
Glenn L McGrath441e7ef2002-11-26 22:00:21 +000060struct partition {
61 unsigned char boot_ind; /* 0x80 - active */
62 unsigned char head; /* starting head */
63 unsigned char sector; /* starting sector */
64 unsigned char cyl; /* starting cylinder */
65 unsigned char sys_ind; /* What partition type */
66 unsigned char end_head; /* end head */
67 unsigned char end_sector; /* end sector */
68 unsigned char end_cyl; /* end cylinder */
69 unsigned char start4[4]; /* starting sector counting from 0 */
70 unsigned char size4[4]; /* nr of sectors in partition */
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000071} ATTRIBUTE_PACKED;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +000072
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000073static const char unable_to_open[] ALIGN1 = "cannot open %s";
74static const char unable_to_read[] ALIGN1 = "cannot read from %s";
75static const char unable_to_seek[] ALIGN1 = "cannot seek on %s";
76static const char unable_to_write[] ALIGN1 = "cannot write to %s";
77static const char ioctl_error[] ALIGN1 = "BLKGETSIZE ioctl failed on %s";
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +000078static void fdisk_fatal(const char *why) ATTRIBUTE_NORETURN;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +000079
Denis Vlasenko98ae2162006-10-12 19:30:44 +000080enum label_type {
Rob Landley5527b912006-02-25 03:46:10 +000081 label_dos, label_sun, label_sgi, label_aix, label_osf
82};
Denis Vlasenkodfce08f2007-03-19 14:45:10 +000083
Denis Vlasenko98ae2162006-10-12 19:30:44 +000084#define LABEL_IS_DOS (label_dos == current_label_type)
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +000085
Denis Vlasenko834410a2006-11-29 12:00:28 +000086#if ENABLE_FEATURE_SUN_LABEL
Denis Vlasenko98ae2162006-10-12 19:30:44 +000087#define LABEL_IS_SUN (label_sun == current_label_type)
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +000088#define STATIC_SUN static
Denis Vlasenko98ae2162006-10-12 19:30:44 +000089#else
90#define LABEL_IS_SUN 0
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +000091#define STATIC_SUN extern
Denis Vlasenko98ae2162006-10-12 19:30:44 +000092#endif
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +000093
Denis Vlasenko834410a2006-11-29 12:00:28 +000094#if ENABLE_FEATURE_SGI_LABEL
Denis Vlasenko98ae2162006-10-12 19:30:44 +000095#define LABEL_IS_SGI (label_sgi == current_label_type)
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +000096#define STATIC_SGI static
Denis Vlasenko98ae2162006-10-12 19:30:44 +000097#else
98#define LABEL_IS_SGI 0
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +000099#define STATIC_SGI extern
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000100#endif
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000101
Denis Vlasenko834410a2006-11-29 12:00:28 +0000102#if ENABLE_FEATURE_AIX_LABEL
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000103#define LABEL_IS_AIX (label_aix == current_label_type)
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000104#define STATIC_AIX static
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000105#else
106#define LABEL_IS_AIX 0
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000107#define STATIC_AIX extern
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000108#endif
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000109
Denis Vlasenko834410a2006-11-29 12:00:28 +0000110#if ENABLE_FEATURE_OSF_LABEL
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000111#define LABEL_IS_OSF (label_osf == current_label_type)
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000112#define STATIC_OSF static
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000113#else
114#define LABEL_IS_OSF 0
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000115#define STATIC_OSF extern
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000116#endif
Rob Landley5527b912006-02-25 03:46:10 +0000117
Rob Landleyb73451d2006-02-24 16:29:00 +0000118enum action { fdisk, require, try_only, create_empty_dos, create_empty_sun };
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000119
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000120static void update_units(void);
Denis Vlasenko834410a2006-11-29 12:00:28 +0000121#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000122static void change_units(void);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000123static void reread_partition_table(int leave);
124static void delete_partition(int i);
Rob Landleyb73451d2006-02-24 16:29:00 +0000125static int get_partition(int warn, int max);
Denis Vlasenkobd852072007-03-19 14:43:38 +0000126static void list_types(const char *const *sys);
Denis Vlasenko06c0a712007-01-29 22:51:44 +0000127static unsigned read_int(unsigned low, unsigned dflt, unsigned high, unsigned base, const char *mesg);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000128#endif
129static const char *partition_type(unsigned char type);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000130static void get_geometry(void);
131static int get_boot(enum action what);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000132
133#define PLURAL 0
134#define SINGULAR 1
135
Denis Vlasenko28703012006-12-19 20:32:02 +0000136static unsigned get_start_sect(const struct partition *p);
137static unsigned get_nr_sects(const struct partition *p);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000138
139/*
140 * per partition table entry data
141 *
142 * The four primary partitions have the same sectorbuffer (MBRbuffer)
143 * and have NULL ext_pointer.
144 * Each logical partition table entry has two pointers, one for the
145 * partition and one link to the next one.
146 */
Denis Vlasenko8e1a0cc2007-03-18 14:42:45 +0000147struct pte {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000148 struct partition *part_table; /* points into sectorbuffer */
149 struct partition *ext_pointer; /* points into sectorbuffer */
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +0000150 ullong offset; /* disk sector number */
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000151 char *sectorbuffer; /* disk sector contents */
Denis Vlasenko834410a2006-11-29 12:00:28 +0000152#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000153 char changed; /* boolean */
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000154#endif
Denis Vlasenko8e1a0cc2007-03-18 14:42:45 +0000155};
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000156
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000157/* DOS partition types */
158
159static const char *const i386_sys_types[] = {
160 "\x00" "Empty",
161 "\x01" "FAT12",
162 "\x04" "FAT16 <32M",
163 "\x05" "Extended", /* DOS 3.3+ extended partition */
164 "\x06" "FAT16", /* DOS 16-bit >=32M */
165 "\x07" "HPFS/NTFS", /* OS/2 IFS, eg, HPFS or NTFS or QNX */
166 "\x0a" "OS/2 Boot Manager",/* OS/2 Boot Manager */
167 "\x0b" "Win95 FAT32",
168 "\x0c" "Win95 FAT32 (LBA)",/* LBA really is 'Extended Int 13h' */
169 "\x0e" "Win95 FAT16 (LBA)",
170 "\x0f" "Win95 Ext'd (LBA)",
171 "\x11" "Hidden FAT12",
172 "\x12" "Compaq diagnostics",
173 "\x14" "Hidden FAT16 <32M",
174 "\x16" "Hidden FAT16",
175 "\x17" "Hidden HPFS/NTFS",
176 "\x1b" "Hidden Win95 FAT32",
177 "\x1c" "Hidden W95 FAT32 (LBA)",
178 "\x1e" "Hidden W95 FAT16 (LBA)",
179 "\x3c" "Part.Magic recovery",
180 "\x41" "PPC PReP Boot",
181 "\x42" "SFS",
182 "\x63" "GNU HURD or SysV", /* GNU HURD or Mach or Sys V/386 (such as ISC UNIX) */
183 "\x80" "Old Minix", /* Minix 1.4a and earlier */
184 "\x81" "Minix / old Linux",/* Minix 1.4b and later */
185 "\x82" "Linux swap", /* also Solaris */
186 "\x83" "Linux",
187 "\x84" "OS/2 hidden C: drive",
188 "\x85" "Linux extended",
189 "\x86" "NTFS volume set",
190 "\x87" "NTFS volume set",
191 "\x8e" "Linux LVM",
192 "\x9f" "BSD/OS", /* BSDI */
193 "\xa0" "Thinkpad hibernation",
194 "\xa5" "FreeBSD", /* various BSD flavours */
195 "\xa6" "OpenBSD",
196 "\xa8" "Darwin UFS",
197 "\xa9" "NetBSD",
198 "\xab" "Darwin boot",
199 "\xb7" "BSDI fs",
200 "\xb8" "BSDI swap",
201 "\xbe" "Solaris boot",
202 "\xeb" "BeOS fs",
203 "\xee" "EFI GPT", /* Intel EFI GUID Partition Table */
204 "\xef" "EFI (FAT-12/16/32)", /* Intel EFI System Partition */
205 "\xf0" "Linux/PA-RISC boot", /* Linux/PA-RISC boot loader */
206 "\xf2" "DOS secondary", /* DOS 3.3+ secondary */
207 "\xfd" "Linux raid autodetect", /* New (2.2.x) raid partition with
208 autodetect using persistent
209 superblock */
210#if 0 /* ENABLE_WEIRD_PARTITION_TYPES */
211 "\x02" "XENIX root",
212 "\x03" "XENIX usr",
213 "\x08" "AIX", /* AIX boot (AIX -- PS/2 port) or SplitDrive */
214 "\x09" "AIX bootable", /* AIX data or Coherent */
215 "\x10" "OPUS",
216 "\x18" "AST SmartSleep",
217 "\x24" "NEC DOS",
218 "\x39" "Plan 9",
219 "\x40" "Venix 80286",
220 "\x4d" "QNX4.x",
221 "\x4e" "QNX4.x 2nd part",
222 "\x4f" "QNX4.x 3rd part",
223 "\x50" "OnTrack DM",
224 "\x51" "OnTrack DM6 Aux1", /* (or Novell) */
225 "\x52" "CP/M", /* CP/M or Microport SysV/AT */
226 "\x53" "OnTrack DM6 Aux3",
227 "\x54" "OnTrackDM6",
228 "\x55" "EZ-Drive",
229 "\x56" "Golden Bow",
230 "\x5c" "Priam Edisk",
231 "\x61" "SpeedStor",
232 "\x64" "Novell Netware 286",
233 "\x65" "Novell Netware 386",
234 "\x70" "DiskSecure Multi-Boot",
235 "\x75" "PC/IX",
236 "\x93" "Amoeba",
237 "\x94" "Amoeba BBT", /* (bad block table) */
238 "\xa7" "NeXTSTEP",
239 "\xbb" "Boot Wizard hidden",
240 "\xc1" "DRDOS/sec (FAT-12)",
241 "\xc4" "DRDOS/sec (FAT-16 < 32M)",
242 "\xc6" "DRDOS/sec (FAT-16)",
243 "\xc7" "Syrinx",
244 "\xda" "Non-FS data",
245 "\xdb" "CP/M / CTOS / ...",/* CP/M or Concurrent CP/M or
246 Concurrent DOS or CTOS */
247 "\xde" "Dell Utility", /* Dell PowerEdge Server utilities */
248 "\xdf" "BootIt", /* BootIt EMBRM */
249 "\xe1" "DOS access", /* DOS access or SpeedStor 12-bit FAT
250 extended partition */
251 "\xe3" "DOS R/O", /* DOS R/O or SpeedStor */
252 "\xe4" "SpeedStor", /* SpeedStor 16-bit FAT extended
253 partition < 1024 cyl. */
254 "\xf1" "SpeedStor",
255 "\xf4" "SpeedStor", /* SpeedStor large partition */
256 "\xfe" "LANstep", /* SpeedStor >1024 cyl. or LANstep */
257 "\xff" "BBT", /* Xenix Bad Block Table */
258#endif
259 NULL
260};
261
262
263/* Globals */
264
Denis Vlasenko8e1a0cc2007-03-18 14:42:45 +0000265struct globals {
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000266 char *line_ptr;
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000267
268 const char *disk_device;
269 int fd; /* the disk */
270 int g_partitions; // = 4; /* maximum partition + 1 */
271 unsigned units_per_sector; // = 1;
272 unsigned sector_size; // = DEFAULT_SECTOR_SIZE;
273 unsigned user_set_sector_size;
274 unsigned sector_offset; // = 1;
275 unsigned g_heads, g_sectors, g_cylinders;
276 enum label_type current_label_type;
277 smallint display_in_cyl_units; // = 1;
278#if ENABLE_FEATURE_OSF_LABEL
279 smallint possibly_osf_label;
280#endif
281
282 jmp_buf listingbuf;
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000283 char line_buffer[80];
284 char partname_buffer[80];
Denis Vlasenko8e1a0cc2007-03-18 14:42:45 +0000285 /* Raw disk label. For DOS-type partition tables the MBR,
286 * with descriptions of the primary partitions. */
287 char MBRbuffer[MAX_SECTOR_SIZE];
288 /* Partition tables */
289 struct pte ptes[MAXIMUM_PARTS];
290};
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000291#define G (*ptr_to_globals)
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000292#define line_ptr (G.line_ptr)
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000293#define disk_device (G.disk_device )
294#define fd (G.fd )
295#define g_partitions (G.g_partitions )
296#define units_per_sector (G.units_per_sector )
297#define sector_size (G.sector_size )
298#define user_set_sector_size (G.user_set_sector_size)
299#define sector_offset (G.sector_offset )
300#define g_heads (G.g_heads )
301#define g_sectors (G.g_sectors )
302#define g_cylinders (G.g_cylinders )
303#define current_label_type (G.current_label_type )
304#define display_in_cyl_units (G.display_in_cyl_units)
305#define possibly_osf_label (G.possibly_osf_label )
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000306#define listingbuf (G.listingbuf)
307#define line_buffer (G.line_buffer)
308#define partname_buffer (G.partname_buffer)
309#define MBRbuffer (G.MBRbuffer)
310#define ptes (G.ptes)
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000311#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000312 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000313 sector_size = DEFAULT_SECTOR_SIZE; \
314 sector_offset = 1; \
315 g_partitions = 4; \
316 display_in_cyl_units = 1; \
317 units_per_sector = 1; \
318} while (0)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000319
Denis Vlasenkobd852072007-03-19 14:43:38 +0000320
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000321#define IS_EXTENDED(i) \
322 ((i) == EXTENDED || (i) == WIN98_EXTENDED || (i) == LINUX_EXTENDED)
323
324#define cround(n) (display_in_cyl_units ? ((n)/units_per_sector)+1 : (n))
325
326#define scround(x) (((x)+units_per_sector-1)/units_per_sector)
327
328#define pt_offset(b, n) \
329 ((struct partition *)((b) + 0x1be + (n) * sizeof(struct partition)))
330
331#define sector(s) ((s) & 0x3f)
332
333#define cylinder(s, c) ((c) | (((s) & 0xc0) << 2))
334
335#define hsc2sector(h,s,c) \
336 (sector(s) - 1 + sectors * ((h) + heads * cylinder(s,c)))
337
338#define set_hsc(h,s,c,sector) \
339 do { \
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000340 s = sector % g_sectors + 1; \
341 sector /= g_sectors; \
342 h = sector % g_heads; \
343 sector /= g_heads; \
344 c = sector & 0xff; \
345 s |= (sector >> 2) & 0xc0; \
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000346 } while (0)
347
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000348#if ENABLE_FEATURE_FDISK_WRITABLE
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000349/* read line; return 0 or first printable char */
350static int
351read_line(const char *prompt)
352{
353 int sz;
354
355 sz = read_line_input(prompt, line_buffer, sizeof(line_buffer), NULL);
356 if (sz <= 0)
357 exit(0); /* Ctrl-D or Ctrl-C */
358
359 if (line_buffer[sz-1] == '\n')
360 line_buffer[--sz] = '\0';
361
362 line_ptr = line_buffer;
363 while (*line_ptr && !isgraph(*line_ptr))
364 line_ptr++;
365 return *line_ptr;
366}
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000367#endif
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000368
Denis Vlasenkobd852072007-03-19 14:43:38 +0000369/*
370 * return partition name - uses static storage
371 */
372static const char *
373partname(const char *dev, int pno, int lth)
374{
Denis Vlasenkobd852072007-03-19 14:43:38 +0000375 const char *p;
376 int w, wp;
377 int bufsiz;
378 char *bufp;
379
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000380 bufp = partname_buffer;
381 bufsiz = sizeof(partname_buffer);
Denis Vlasenkobd852072007-03-19 14:43:38 +0000382
383 w = strlen(dev);
384 p = "";
385
386 if (isdigit(dev[w-1]))
387 p = "p";
388
389 /* devfs kludge - note: fdisk partition names are not supposed
390 to equal kernel names, so there is no reason to do this */
391 if (strcmp(dev + w - 4, "disc") == 0) {
392 w -= 4;
393 p = "part";
394 }
395
396 wp = strlen(p);
397
398 if (lth) {
399 snprintf(bufp, bufsiz, "%*.*s%s%-2u",
400 lth-wp-2, w, dev, p, pno);
401 } else {
402 snprintf(bufp, bufsiz, "%.*s%s%-2u", w, dev, p, pno);
403 }
404 return bufp;
405}
406
Denis Vlasenko834410a2006-11-29 12:00:28 +0000407#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000408static void
Rob Landleyb73451d2006-02-24 16:29:00 +0000409set_all_unchanged(void)
410{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000411 int i;
412
413 for (i = 0; i < MAXIMUM_PARTS; i++)
414 ptes[i].changed = 0;
415}
416
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000417static ALWAYS_INLINE void
Rob Landleyb73451d2006-02-24 16:29:00 +0000418set_changed(int i)
419{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000420 ptes[i].changed = 1;
421}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000422#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000423
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000424static ALWAYS_INLINE struct partition *
Rob Landleyb73451d2006-02-24 16:29:00 +0000425get_part_table(int i)
426{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000427 return ptes[i].part_table;
428}
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000429
430static const char *
Rob Landleyb73451d2006-02-24 16:29:00 +0000431str_units(int n)
432{ /* n==1: use singular */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000433 if (n == 1)
Denis Vlasenkobd852072007-03-19 14:43:38 +0000434 return display_in_cyl_units ? "cylinder" : "sector";
435 return display_in_cyl_units ? "cylinders" : "sectors";
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000436}
437
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000438static int
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000439valid_part_table_flag(const char *mbuffer)
440{
Denis Vlasenko834410a2006-11-29 12:00:28 +0000441 return (mbuffer[510] == 0x55 && (uint8_t)mbuffer[511] == 0xaa);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000442}
443
Denis Vlasenko834410a2006-11-29 12:00:28 +0000444#if ENABLE_FEATURE_FDISK_WRITABLE
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000445static ALWAYS_INLINE void
Denis Vlasenko834410a2006-11-29 12:00:28 +0000446write_part_table_flag(char *b)
447{
448 b[510] = 0x55;
449 b[511] = 0xaa;
450}
451
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000452static char
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000453read_nonempty(const char *mesg)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000454{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000455 while (!read_line(mesg)) /* repeat */;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000456 return *line_ptr;
457}
458
459static char
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000460read_maybe_empty(const char *mesg)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000461{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000462 if (!read_line(mesg)) {
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000463 line_ptr = line_buffer;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000464 line_ptr[0] = '\n';
465 line_ptr[1] = '\0';
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000466 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000467 return line_ptr[0];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000468}
469
470static int
Denis Vlasenkobd852072007-03-19 14:43:38 +0000471read_hex(const char *const *sys)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000472{
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000473 unsigned long v;
Rob Landleyb73451d2006-02-24 16:29:00 +0000474 while (1) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000475 read_nonempty("Hex code (type L to list codes): ");
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000476 if (*line_ptr == 'l' || *line_ptr == 'L') {
Rob Landleyb73451d2006-02-24 16:29:00 +0000477 list_types(sys);
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000478 continue;
Rob Landleyb73451d2006-02-24 16:29:00 +0000479 }
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000480 v = bb_strtoul(line_ptr, NULL, 16);
Denis Vlasenko28703012006-12-19 20:32:02 +0000481 if (v > 0xff)
482 /* Bad input also triggers this */
483 continue;
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000484 return v;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000485 }
486}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000487#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000488
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000489#include "fdisk_aix.c"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000490
491typedef struct {
492 unsigned char info[128]; /* Informative text string */
493 unsigned char spare0[14];
494 struct sun_info {
495 unsigned char spare1;
496 unsigned char id;
497 unsigned char spare2;
498 unsigned char flags;
499 } infos[8];
500 unsigned char spare1[246]; /* Boot information etc. */
501 unsigned short rspeed; /* Disk rotational speed */
502 unsigned short pcylcount; /* Physical cylinder count */
503 unsigned short sparecyl; /* extra sects per cylinder */
504 unsigned char spare2[4]; /* More magic... */
505 unsigned short ilfact; /* Interleave factor */
506 unsigned short ncyl; /* Data cylinder count */
507 unsigned short nacyl; /* Alt. cylinder count */
508 unsigned short ntrks; /* Tracks per cylinder */
509 unsigned short nsect; /* Sectors per track */
510 unsigned char spare3[4]; /* Even more magic... */
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000511 struct sun_partinfo {
Eric Andersenacd244a2002-12-11 03:49:33 +0000512 uint32_t start_cylinder;
513 uint32_t num_sectors;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000514 } partitions[8];
515 unsigned short magic; /* Magic number */
516 unsigned short csum; /* Label xor'd checksum */
517} sun_partition;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000518#define sunlabel ((sun_partition *)MBRbuffer)
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000519STATIC_OSF void bsd_select(void);
520STATIC_OSF void xbsd_print_disklabel(int);
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000521#include "fdisk_osf.c"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000522
Denis Vlasenko28703012006-12-19 20:32:02 +0000523#if ENABLE_FEATURE_SGI_LABEL || ENABLE_FEATURE_SUN_LABEL
Denis Vlasenko10d0d4e2006-11-27 16:48:17 +0000524static uint16_t
Denis Vlasenko28703012006-12-19 20:32:02 +0000525fdisk_swap16(uint16_t x)
Rob Landleyb73451d2006-02-24 16:29:00 +0000526{
Denis Vlasenko10d0d4e2006-11-27 16:48:17 +0000527 return (x << 8) | (x >> 8);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000528}
529
Rob Landley88621d72006-08-29 19:41:06 +0000530static uint32_t
Denis Vlasenko28703012006-12-19 20:32:02 +0000531fdisk_swap32(uint32_t x)
Rob Landleyb73451d2006-02-24 16:29:00 +0000532{
Denis Vlasenko10d0d4e2006-11-27 16:48:17 +0000533 return (x << 24) |
534 ((x & 0xFF00) << 8) |
535 ((x & 0xFF0000) >> 8) |
536 (x >> 24);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000537}
538#endif
539
Denis Vlasenkobd852072007-03-19 14:43:38 +0000540STATIC_SGI const char *const sgi_sys_types[];
Denis Vlasenko834410a2006-11-29 12:00:28 +0000541STATIC_SGI unsigned sgi_get_num_sectors(int i);
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000542STATIC_SGI int sgi_get_sysid(int i);
543STATIC_SGI void sgi_delete_partition(int i);
544STATIC_SGI void sgi_change_sysid(int i, int sys);
545STATIC_SGI void sgi_list_table(int xtra);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000546#if ENABLE_FEATURE_FDISK_ADVANCED
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000547STATIC_SGI void sgi_set_xcyl(void);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000548#endif
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000549STATIC_SGI int verify_sgi(int verbose);
550STATIC_SGI void sgi_add_partition(int n, int sys);
551STATIC_SGI void sgi_set_swappartition(int i);
552STATIC_SGI const char *sgi_get_bootfile(void);
553STATIC_SGI void sgi_set_bootfile(const char* aFile);
554STATIC_SGI void create_sgiinfo(void);
555STATIC_SGI void sgi_write_table(void);
556STATIC_SGI void sgi_set_bootpartition(int i);
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000557#include "fdisk_sgi.c"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000558
Denis Vlasenkobd852072007-03-19 14:43:38 +0000559STATIC_SUN const char *const sun_sys_types[];
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000560STATIC_SUN void sun_delete_partition(int i);
561STATIC_SUN void sun_change_sysid(int i, int sys);
562STATIC_SUN void sun_list_table(int xtra);
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000563STATIC_SUN void add_sun_partition(int n, int sys);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000564#if ENABLE_FEATURE_FDISK_ADVANCED
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000565STATIC_SUN void sun_set_alt_cyl(void);
566STATIC_SUN void sun_set_ncyl(int cyl);
567STATIC_SUN void sun_set_xcyl(void);
568STATIC_SUN void sun_set_ilfact(void);
569STATIC_SUN void sun_set_rspeed(void);
570STATIC_SUN void sun_set_pcylcount(void);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000571#endif
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000572STATIC_SUN void toggle_sunflags(int i, unsigned char mask);
573STATIC_SUN void verify_sun(void);
574STATIC_SUN void sun_write_table(void);
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000575#include "fdisk_sun.c"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000576
Denis Vlasenko834410a2006-11-29 12:00:28 +0000577#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000578/* start_sect and nr_sects are stored little endian on all machines */
579/* moreover, they are not aligned correctly */
580static void
Denis Vlasenko834410a2006-11-29 12:00:28 +0000581store4_little_endian(unsigned char *cp, unsigned val)
Rob Landleyb73451d2006-02-24 16:29:00 +0000582{
Denis Vlasenko834410a2006-11-29 12:00:28 +0000583 cp[0] = val;
584 cp[1] = val >> 8;
585 cp[2] = val >> 16;
586 cp[3] = val >> 24;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000587}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000588#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000589
Denis Vlasenko834410a2006-11-29 12:00:28 +0000590static unsigned
Rob Landleyb73451d2006-02-24 16:29:00 +0000591read4_little_endian(const unsigned char *cp)
592{
Denis Vlasenko834410a2006-11-29 12:00:28 +0000593 return cp[0] + (cp[1] << 8) + (cp[2] << 16) + (cp[3] << 24);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000594}
595
Denis Vlasenko834410a2006-11-29 12:00:28 +0000596#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000597static void
Denis Vlasenko834410a2006-11-29 12:00:28 +0000598set_start_sect(struct partition *p, unsigned start_sect)
Rob Landleyb73451d2006-02-24 16:29:00 +0000599{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000600 store4_little_endian(p->start4, start_sect);
601}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000602#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000603
Denis Vlasenko28703012006-12-19 20:32:02 +0000604static unsigned
Rob Landleyb73451d2006-02-24 16:29:00 +0000605get_start_sect(const struct partition *p)
606{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000607 return read4_little_endian(p->start4);
608}
609
Denis Vlasenko834410a2006-11-29 12:00:28 +0000610#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000611static void
Denis Vlasenko28703012006-12-19 20:32:02 +0000612set_nr_sects(struct partition *p, unsigned nr_sects)
Rob Landleyb73451d2006-02-24 16:29:00 +0000613{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000614 store4_little_endian(p->size4, nr_sects);
615}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000616#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000617
Denis Vlasenko28703012006-12-19 20:32:02 +0000618static unsigned
Rob Landleyb73451d2006-02-24 16:29:00 +0000619get_nr_sects(const struct partition *p)
620{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000621 return read4_little_endian(p->size4);
622}
623
624/* normally O_RDWR, -l option gives O_RDONLY */
625static int type_open = O_RDWR;
626
Rob Landleyb73451d2006-02-24 16:29:00 +0000627static int ext_index; /* the prime extended partition */
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000628static smallint listing; /* no aborts for fdisk -l */
Rob Landleyb73451d2006-02-24 16:29:00 +0000629static int dos_compatible_flag = ~0;
Denis Vlasenko834410a2006-11-29 12:00:28 +0000630#if ENABLE_FEATURE_FDISK_WRITABLE
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000631//static int dos_changed;
632static smallint nowarn; /* no warnings for fdisk -l/-s */
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000633#endif
634
Denis Vlasenko834410a2006-11-29 12:00:28 +0000635static unsigned user_cylinders, user_heads, user_sectors;
636static unsigned pt_heads, pt_sectors;
637static unsigned kern_heads, kern_sectors;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000638
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +0000639static ullong extended_offset; /* offset of link pointers */
640static ullong total_number_of_sectors;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000641
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +0000642static void fdisk_fatal(const char *why)
Rob Landleyb73451d2006-02-24 16:29:00 +0000643{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000644 if (listing) {
645 close(fd);
646 longjmp(listingbuf, 1);
647 }
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +0000648 bb_error_msg_and_die(why, disk_device);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000649}
650
651static void
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +0000652seek_sector(ullong secno)
Rob Landleyb73451d2006-02-24 16:29:00 +0000653{
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +0000654 secno *= sector_size;
Denis Vlasenko06b3cc22007-09-23 14:05:54 +0000655#if ENABLE_FDISK_SUPPORT_LARGE_DISKS
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +0000656 if (lseek64(fd, (off64_t)secno, SEEK_SET) == (off64_t) -1)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000657 fdisk_fatal(unable_to_seek);
Denis Vlasenko06b3cc22007-09-23 14:05:54 +0000658#else
659 if (secno > MAXINT(off_t)
660 || lseek(fd, (off_t)secno, SEEK_SET) == (off_t) -1
661 ) {
662 fdisk_fatal(unable_to_seek);
663 }
664#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000665}
666
Denis Vlasenko834410a2006-11-29 12:00:28 +0000667#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000668static void
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +0000669write_sector(ullong secno, char *buf)
Rob Landleyb73451d2006-02-24 16:29:00 +0000670{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000671 seek_sector(secno);
672 if (write(fd, buf, sector_size) != sector_size)
673 fdisk_fatal(unable_to_write);
674}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000675#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000676
677/* Allocate a buffer and read a partition table sector */
678static void
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +0000679read_pte(struct pte *pe, ullong offset)
Rob Landleyb73451d2006-02-24 16:29:00 +0000680{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000681 pe->offset = offset;
Denis Vlasenkob95636c2006-12-19 23:36:04 +0000682 pe->sectorbuffer = xmalloc(sector_size);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000683 seek_sector(offset);
684 if (read(fd, pe->sectorbuffer, sector_size) != sector_size)
685 fdisk_fatal(unable_to_read);
Denis Vlasenko834410a2006-11-29 12:00:28 +0000686#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000687 pe->changed = 0;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000688#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000689 pe->part_table = pe->ext_pointer = NULL;
690}
691
Denis Vlasenko834410a2006-11-29 12:00:28 +0000692static unsigned
Rob Landleyb73451d2006-02-24 16:29:00 +0000693get_partition_start(const struct pte *pe)
694{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000695 return pe->offset + get_start_sect(pe->part_table);
696}
697
Denis Vlasenko834410a2006-11-29 12:00:28 +0000698#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000699/*
700 * Avoid warning about DOS partitions when no DOS partition was changed.
701 * Here a heuristic "is probably dos partition".
702 * We might also do the opposite and warn in all cases except
703 * for "is probably nondos partition".
704 */
Denis Vlasenko89398812008-01-25 20:18:46 +0000705#ifdef UNUSED
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000706static int
Rob Landleyb73451d2006-02-24 16:29:00 +0000707is_dos_partition(int t)
708{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000709 return (t == 1 || t == 4 || t == 6 ||
710 t == 0x0b || t == 0x0c || t == 0x0e ||
711 t == 0x11 || t == 0x12 || t == 0x14 || t == 0x16 ||
712 t == 0x1b || t == 0x1c || t == 0x1e || t == 0x24 ||
713 t == 0xc1 || t == 0xc4 || t == 0xc6);
714}
Denis Vlasenko89398812008-01-25 20:18:46 +0000715#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000716
717static void
Rob Landleyb73451d2006-02-24 16:29:00 +0000718menu(void)
719{
Denis Vlasenkobd852072007-03-19 14:43:38 +0000720 puts("Command Action");
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000721 if (LABEL_IS_SUN) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000722 puts("a\ttoggle a read only flag"); /* sun */
723 puts("b\tedit bsd disklabel");
724 puts("c\ttoggle the mountable flag"); /* sun */
725 puts("d\tdelete a partition");
726 puts("l\tlist known partition types");
727 puts("n\tadd a new partition");
728 puts("o\tcreate a new empty DOS partition table");
729 puts("p\tprint the partition table");
730 puts("q\tquit without saving changes");
731 puts("s\tcreate a new empty Sun disklabel"); /* sun */
732 puts("t\tchange a partition's system id");
733 puts("u\tchange display/entry units");
734 puts("v\tverify the partition table");
735 puts("w\twrite table to disk and exit");
Denis Vlasenko834410a2006-11-29 12:00:28 +0000736#if ENABLE_FEATURE_FDISK_ADVANCED
Denis Vlasenkobd852072007-03-19 14:43:38 +0000737 puts("x\textra functionality (experts only)");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000738#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000739 } else if (LABEL_IS_SGI) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000740 puts("a\tselect bootable partition"); /* sgi flavour */
741 puts("b\tedit bootfile entry"); /* sgi */
742 puts("c\tselect sgi swap partition"); /* sgi flavour */
743 puts("d\tdelete a partition");
744 puts("l\tlist known partition types");
745 puts("n\tadd a new partition");
746 puts("o\tcreate a new empty DOS partition table");
747 puts("p\tprint the partition table");
748 puts("q\tquit without saving changes");
749 puts("s\tcreate a new empty Sun disklabel"); /* sun */
750 puts("t\tchange a partition's system id");
751 puts("u\tchange display/entry units");
752 puts("v\tverify the partition table");
753 puts("w\twrite table to disk and exit");
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000754 } else if (LABEL_IS_AIX) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000755 puts("o\tcreate a new empty DOS partition table");
756 puts("q\tquit without saving changes");
757 puts("s\tcreate a new empty Sun disklabel"); /* sun */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000758 } else {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000759 puts("a\ttoggle a bootable flag");
760 puts("b\tedit bsd disklabel");
761 puts("c\ttoggle the dos compatibility flag");
762 puts("d\tdelete a partition");
763 puts("l\tlist known partition types");
764 puts("n\tadd a new partition");
765 puts("o\tcreate a new empty DOS partition table");
766 puts("p\tprint the partition table");
767 puts("q\tquit without saving changes");
768 puts("s\tcreate a new empty Sun disklabel"); /* sun */
769 puts("t\tchange a partition's system id");
770 puts("u\tchange display/entry units");
771 puts("v\tverify the partition table");
772 puts("w\twrite table to disk and exit");
Denis Vlasenko834410a2006-11-29 12:00:28 +0000773#if ENABLE_FEATURE_FDISK_ADVANCED
Denis Vlasenkobd852072007-03-19 14:43:38 +0000774 puts("x\textra functionality (experts only)");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000775#endif
776 }
777}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000778#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000779
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000780
Denis Vlasenko834410a2006-11-29 12:00:28 +0000781#if ENABLE_FEATURE_FDISK_ADVANCED
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000782static void
Rob Landleyb73451d2006-02-24 16:29:00 +0000783xmenu(void)
784{
Denis Vlasenkobd852072007-03-19 14:43:38 +0000785 puts("Command Action");
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000786 if (LABEL_IS_SUN) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000787 puts("a\tchange number of alternate cylinders"); /*sun*/
788 puts("c\tchange number of cylinders");
789 puts("d\tprint the raw data in the partition table");
790 puts("e\tchange number of extra sectors per cylinder");/*sun*/
791 puts("h\tchange number of heads");
792 puts("i\tchange interleave factor"); /*sun*/
793 puts("o\tchange rotation speed (rpm)"); /*sun*/
794 puts("p\tprint the partition table");
795 puts("q\tquit without saving changes");
796 puts("r\treturn to main menu");
797 puts("s\tchange number of sectors/track");
798 puts("v\tverify the partition table");
799 puts("w\twrite table to disk and exit");
800 puts("y\tchange number of physical cylinders"); /*sun*/
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000801 } else if (LABEL_IS_SGI) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000802 puts("b\tmove beginning of data in a partition"); /* !sun */
803 puts("c\tchange number of cylinders");
804 puts("d\tprint the raw data in the partition table");
805 puts("e\tlist extended partitions"); /* !sun */
806 puts("g\tcreate an IRIX (SGI) partition table");/* sgi */
807 puts("h\tchange number of heads");
808 puts("p\tprint the partition table");
809 puts("q\tquit without saving changes");
810 puts("r\treturn to main menu");
811 puts("s\tchange number of sectors/track");
812 puts("v\tverify the partition table");
813 puts("w\twrite table to disk and exit");
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000814 } else if (LABEL_IS_AIX) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000815 puts("b\tmove beginning of data in a partition"); /* !sun */
816 puts("c\tchange number of cylinders");
817 puts("d\tprint the raw data in the partition table");
818 puts("e\tlist extended partitions"); /* !sun */
819 puts("g\tcreate an IRIX (SGI) partition table");/* sgi */
820 puts("h\tchange number of heads");
821 puts("p\tprint the partition table");
822 puts("q\tquit without saving changes");
823 puts("r\treturn to main menu");
824 puts("s\tchange number of sectors/track");
825 puts("v\tverify the partition table");
826 puts("w\twrite table to disk and exit");
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000827 } else {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000828 puts("b\tmove beginning of data in a partition"); /* !sun */
829 puts("c\tchange number of cylinders");
830 puts("d\tprint the raw data in the partition table");
831 puts("e\tlist extended partitions"); /* !sun */
832 puts("f\tfix partition order"); /* !sun, !aix, !sgi */
Denis Vlasenko834410a2006-11-29 12:00:28 +0000833#if ENABLE_FEATURE_SGI_LABEL
Denis Vlasenkobd852072007-03-19 14:43:38 +0000834 puts("g\tcreate an IRIX (SGI) partition table");/* sgi */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000835#endif
Denis Vlasenkobd852072007-03-19 14:43:38 +0000836 puts("h\tchange number of heads");
837 puts("p\tprint the partition table");
838 puts("q\tquit without saving changes");
839 puts("r\treturn to main menu");
840 puts("s\tchange number of sectors/track");
841 puts("v\tverify the partition table");
842 puts("w\twrite table to disk and exit");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000843 }
844}
845#endif /* ADVANCED mode */
846
Denis Vlasenko834410a2006-11-29 12:00:28 +0000847#if ENABLE_FEATURE_FDISK_WRITABLE
Denis Vlasenkobd852072007-03-19 14:43:38 +0000848static const char *const *
Rob Landleyb73451d2006-02-24 16:29:00 +0000849get_sys_types(void)
850{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000851 return (
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000852 LABEL_IS_SUN ? sun_sys_types :
853 LABEL_IS_SGI ? sgi_sys_types :
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000854 i386_sys_types);
855}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000856#else
857#define get_sys_types() i386_sys_types
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000858#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000859
Denis Vlasenkobd852072007-03-19 14:43:38 +0000860static const char *
861partition_type(unsigned char type)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000862{
863 int i;
Denis Vlasenkobd852072007-03-19 14:43:38 +0000864 const char *const *types = get_sys_types();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000865
Denis Vlasenkobd852072007-03-19 14:43:38 +0000866 for (i = 0; types[i]; i++)
867 if ((unsigned char)types[i][0] == type)
868 return types[i] + 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000869
Denis Vlasenkobd852072007-03-19 14:43:38 +0000870 return "Unknown";
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000871}
872
873
Denis Vlasenko834410a2006-11-29 12:00:28 +0000874#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000875static int
Rob Landleyb73451d2006-02-24 16:29:00 +0000876get_sysid(int i)
877{
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000878 return LABEL_IS_SUN ? sunlabel->infos[i].id :
879 (LABEL_IS_SGI ? sgi_get_sysid(i) :
880 ptes[i].part_table->sys_ind);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000881}
882
Denis Vlasenkobd852072007-03-19 14:43:38 +0000883static void
884list_types(const char *const *sys)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000885{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000886 enum { COLS = 3 };
887
888 unsigned last[COLS];
889 unsigned done, next, size;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000890 int i;
891
Denis Vlasenkobd852072007-03-19 14:43:38 +0000892 for (size = 0; sys[size]; size++) /* */;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000893
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000894 done = 0;
895 for (i = COLS-1; i >= 0; i--) {
896 done += (size + i - done) / (i + 1);
897 last[COLS-1 - i] = done;
898 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000899
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000900 i = done = next = 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000901 do {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000902 printf("%c%2x %-22.22s", i ? ' ' : '\n',
Denis Vlasenkobd852072007-03-19 14:43:38 +0000903 (unsigned char)sys[next][0],
904 sys[next] + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000905 next = last[i++] + done;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000906 if (i >= COLS || next >= last[i]) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000907 i = 0;
908 next = ++done;
909 }
910 } while (done < last[0]);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000911 bb_putchar('\n');
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000912}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000913#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000914
915static int
Rob Landleyb73451d2006-02-24 16:29:00 +0000916is_cleared_partition(const struct partition *p)
917{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000918 return !(!p || p->boot_ind || p->head || p->sector || p->cyl ||
919 p->sys_ind || p->end_head || p->end_sector || p->end_cyl ||
920 get_start_sect(p) || get_nr_sects(p));
921}
922
923static void
Rob Landleyb73451d2006-02-24 16:29:00 +0000924clear_partition(struct partition *p)
925{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000926 if (!p)
927 return;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000928 memset(p, 0, sizeof(struct partition));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000929}
930
Denis Vlasenko834410a2006-11-29 12:00:28 +0000931#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000932static void
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +0000933set_partition(int i, int doext, ullong start, ullong stop, int sysid)
Rob Landleyb73451d2006-02-24 16:29:00 +0000934{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000935 struct partition *p;
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +0000936 ullong offset;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000937
938 if (doext) {
939 p = ptes[i].ext_pointer;
940 offset = extended_offset;
941 } else {
942 p = ptes[i].part_table;
943 offset = ptes[i].offset;
944 }
945 p->boot_ind = 0;
946 p->sys_ind = sysid;
947 set_start_sect(p, start - offset);
948 set_nr_sects(p, stop - start + 1);
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000949 if (dos_compatible_flag && (start / (g_sectors * g_heads) > 1023))
950 start = g_heads * g_sectors * 1024 - 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000951 set_hsc(p->head, p->sector, p->cyl, start);
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000952 if (dos_compatible_flag && (stop / (g_sectors * g_heads) > 1023))
953 stop = g_heads * g_sectors * 1024 - 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000954 set_hsc(p->end_head, p->end_sector, p->end_cyl, stop);
955 ptes[i].changed = 1;
956}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000957#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000958
959static int
Rob Landleyb73451d2006-02-24 16:29:00 +0000960warn_geometry(void)
961{
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000962 if (g_heads && g_sectors && g_cylinders)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000963 return 0;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000964
Denis Vlasenkobd852072007-03-19 14:43:38 +0000965 printf("Unknown value(s) for:");
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000966 if (!g_heads)
Denis Vlasenkobd852072007-03-19 14:43:38 +0000967 printf(" heads");
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000968 if (!g_sectors)
Denis Vlasenkobd852072007-03-19 14:43:38 +0000969 printf(" sectors");
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000970 if (!g_cylinders)
Denis Vlasenkobd852072007-03-19 14:43:38 +0000971 printf(" cylinders");
972 printf(
Denis Vlasenko834410a2006-11-29 12:00:28 +0000973#if ENABLE_FEATURE_FDISK_WRITABLE
Denis Vlasenkobd852072007-03-19 14:43:38 +0000974 " (settable in the extra functions menu)"
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000975#endif
Denis Vlasenkobd852072007-03-19 14:43:38 +0000976 "\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000977 return 1;
978}
979
Denis Vlasenko8e1a0cc2007-03-18 14:42:45 +0000980static void
981update_units(void)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000982{
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000983 int cyl_units = g_heads * g_sectors;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000984
985 if (display_in_cyl_units && cyl_units)
986 units_per_sector = cyl_units;
987 else
988 units_per_sector = 1; /* in sectors */
989}
990
Denis Vlasenko834410a2006-11-29 12:00:28 +0000991#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000992static void
Rob Landleyb73451d2006-02-24 16:29:00 +0000993warn_cylinders(void)
994{
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000995 if (LABEL_IS_DOS && g_cylinders > 1024 && !nowarn)
Denis Vlasenkobd852072007-03-19 14:43:38 +0000996 printf("\n"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000997"The number of cylinders for this disk is set to %d.\n"
998"There is nothing wrong with that, but this is larger than 1024,\n"
999"and could in certain setups cause problems with:\n"
1000"1) software that runs at boot time (e.g., old versions of LILO)\n"
1001"2) booting and partitioning software from other OSs\n"
Denis Vlasenkobd852072007-03-19 14:43:38 +00001002" (e.g., DOS FDISK, OS/2 FDISK)\n",
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001003 g_cylinders);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001004}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001005#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001006
1007static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001008read_extended(int ext)
1009{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001010 int i;
1011 struct pte *pex;
1012 struct partition *p, *q;
1013
1014 ext_index = ext;
1015 pex = &ptes[ext];
1016 pex->ext_pointer = pex->part_table;
1017
1018 p = pex->part_table;
1019 if (!get_start_sect(p)) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001020 printf("Bad offset in primary extended partition\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001021 return;
1022 }
1023
Rob Landleyb73451d2006-02-24 16:29:00 +00001024 while (IS_EXTENDED(p->sys_ind)) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001025 struct pte *pe = &ptes[g_partitions];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001026
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001027 if (g_partitions >= MAXIMUM_PARTS) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001028 /* This is not a Linux restriction, but
1029 this program uses arrays of size MAXIMUM_PARTS.
Denis Vlasenko89f0b342006-11-18 22:04:09 +00001030 Do not try to 'improve' this test. */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001031 struct pte *pre = &ptes[g_partitions - 1];
Denis Vlasenko834410a2006-11-29 12:00:28 +00001032#if ENABLE_FEATURE_FDISK_WRITABLE
Denis Vlasenkobd852072007-03-19 14:43:38 +00001033 printf("Warning: deleting partitions after %d\n",
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001034 g_partitions);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001035 pre->changed = 1;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001036#endif
1037 clear_partition(pre->ext_pointer);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001038 return;
1039 }
1040
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001041 read_pte(pe, extended_offset + get_start_sect(p));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001042
1043 if (!extended_offset)
1044 extended_offset = get_start_sect(p);
1045
1046 q = p = pt_offset(pe->sectorbuffer, 0);
1047 for (i = 0; i < 4; i++, p++) if (get_nr_sects(p)) {
Rob Landleyb73451d2006-02-24 16:29:00 +00001048 if (IS_EXTENDED(p->sys_ind)) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001049 if (pe->ext_pointer)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001050 printf("Warning: extra link "
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001051 "pointer in partition table"
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001052 " %d\n", g_partitions + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001053 else
1054 pe->ext_pointer = p;
1055 } else if (p->sys_ind) {
1056 if (pe->part_table)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001057 printf("Warning: ignoring extra "
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001058 "data in partition table"
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001059 " %d\n", g_partitions + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001060 else
1061 pe->part_table = p;
1062 }
1063 }
1064
1065 /* very strange code here... */
1066 if (!pe->part_table) {
1067 if (q != pe->ext_pointer)
1068 pe->part_table = q;
1069 else
1070 pe->part_table = q + 1;
1071 }
1072 if (!pe->ext_pointer) {
1073 if (q != pe->part_table)
1074 pe->ext_pointer = q;
1075 else
1076 pe->ext_pointer = q + 1;
1077 }
1078
1079 p = pe->ext_pointer;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001080 g_partitions++;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001081 }
1082
Denis Vlasenko834410a2006-11-29 12:00:28 +00001083#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001084 /* remove empty links */
1085 remove:
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001086 for (i = 4; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001087 struct pte *pe = &ptes[i];
1088
Denis Vlasenkobd852072007-03-19 14:43:38 +00001089 if (!get_nr_sects(pe->part_table)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001090 && (g_partitions > 5 || ptes[4].part_table->sys_ind)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001091 ) {
1092 printf("Omitting empty partition (%d)\n", i+1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001093 delete_partition(i);
1094 goto remove; /* numbering changed */
1095 }
1096 }
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001097#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001098}
1099
Denis Vlasenko834410a2006-11-29 12:00:28 +00001100#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001101static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001102create_doslabel(void)
1103{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001104 int i;
1105
Denis Vlasenkobd852072007-03-19 14:43:38 +00001106 printf(msg_building_new_label, "DOS disklabel");
Rob Landley5527b912006-02-25 03:46:10 +00001107
1108 current_label_type = label_dos;
1109
Denis Vlasenko834410a2006-11-29 12:00:28 +00001110#if ENABLE_FEATURE_OSF_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001111 possibly_osf_label = 0;
1112#endif
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001113 g_partitions = 4;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001114
1115 for (i = 510-64; i < 510; i++)
1116 MBRbuffer[i] = 0;
1117 write_part_table_flag(MBRbuffer);
1118 extended_offset = 0;
1119 set_all_unchanged();
1120 set_changed(0);
1121 get_boot(create_empty_dos);
1122}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001123#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001124
1125static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001126get_sectorsize(void)
1127{
Rob Landley736e5252006-02-25 03:36:00 +00001128 if (!user_set_sector_size) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001129 int arg;
1130 if (ioctl(fd, BLKSSZGET, &arg) == 0)
1131 sector_size = arg;
1132 if (sector_size != DEFAULT_SECTOR_SIZE)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001133 printf("Note: sector size is %d (not %d)\n",
Rob Landleyb73451d2006-02-24 16:29:00 +00001134 sector_size, DEFAULT_SECTOR_SIZE);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001135 }
1136}
1137
Rob Landley88621d72006-08-29 19:41:06 +00001138static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001139get_kernel_geometry(void)
1140{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001141 struct hd_geometry geometry;
1142
1143 if (!ioctl(fd, HDIO_GETGEO, &geometry)) {
1144 kern_heads = geometry.heads;
1145 kern_sectors = geometry.sectors;
1146 /* never use geometry.cylinders - it is truncated */
1147 }
1148}
1149
1150static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001151get_partition_table_geometry(void)
1152{
"Vladimir N. Oleynik"a972c872005-12-02 10:06:04 +00001153 const unsigned char *bufp = (const unsigned char *)MBRbuffer;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001154 struct partition *p;
1155 int i, h, s, hh, ss;
1156 int first = 1;
1157 int bad = 0;
1158
Eric Andersen3496fdc2006-01-30 23:09:20 +00001159 if (!(valid_part_table_flag((char*)bufp)))
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001160 return;
1161
1162 hh = ss = 0;
Rob Landleyb73451d2006-02-24 16:29:00 +00001163 for (i = 0; i < 4; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001164 p = pt_offset(bufp, i);
1165 if (p->sys_ind != 0) {
1166 h = p->end_head + 1;
1167 s = (p->end_sector & 077);
1168 if (first) {
1169 hh = h;
1170 ss = s;
1171 first = 0;
1172 } else if (hh != h || ss != s)
1173 bad = 1;
1174 }
1175 }
1176
1177 if (!first && !bad) {
1178 pt_heads = hh;
1179 pt_sectors = ss;
1180 }
1181}
1182
Rob Landleyb73451d2006-02-24 16:29:00 +00001183static void
1184get_geometry(void)
1185{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001186 int sec_fac;
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00001187 uint64_t v64;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001188
1189 get_sectorsize();
1190 sec_fac = sector_size / 512;
Denis Vlasenko834410a2006-11-29 12:00:28 +00001191#if ENABLE_FEATURE_SUN_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001192 guess_device_type();
1193#endif
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001194 g_heads = g_cylinders = g_sectors = 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001195 kern_heads = kern_sectors = 0;
1196 pt_heads = pt_sectors = 0;
1197
1198 get_kernel_geometry();
1199 get_partition_table_geometry();
1200
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001201 g_heads = user_heads ? user_heads :
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001202 pt_heads ? pt_heads :
1203 kern_heads ? kern_heads : 255;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001204 g_sectors = user_sectors ? user_sectors :
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001205 pt_sectors ? pt_sectors :
1206 kern_sectors ? kern_sectors : 63;
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00001207 if (ioctl(fd, BLKGETSIZE64, &v64) == 0) {
1208 /* got bytes, convert to 512 byte sectors */
1209 total_number_of_sectors = (v64 >> 9);
Eric Andersen040f4402003-07-30 08:40:37 +00001210 } else {
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00001211 unsigned long longsectors; /* need temp of type long */
1212 if (ioctl(fd, BLKGETSIZE, &longsectors))
1213 longsectors = 0;
1214 total_number_of_sectors = longsectors;
Eric Andersen040f4402003-07-30 08:40:37 +00001215 }
1216
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001217 sector_offset = 1;
1218 if (dos_compatible_flag)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001219 sector_offset = g_sectors;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001220
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001221 g_cylinders = total_number_of_sectors / (g_heads * g_sectors * sec_fac);
1222 if (!g_cylinders)
1223 g_cylinders = user_cylinders;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001224}
1225
1226/*
1227 * Read MBR. Returns:
1228 * -1: no 0xaa55 flag present (possibly entire disk BSD)
1229 * 0: found or created label
1230 * 1: I/O error
1231 */
Rob Landleyb73451d2006-02-24 16:29:00 +00001232static int
1233get_boot(enum action what)
1234{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001235 int i;
1236
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001237 g_partitions = 4;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001238
1239 for (i = 0; i < 4; i++) {
1240 struct pte *pe = &ptes[i];
1241
1242 pe->part_table = pt_offset(MBRbuffer, i);
1243 pe->ext_pointer = NULL;
1244 pe->offset = 0;
1245 pe->sectorbuffer = MBRbuffer;
Denis Vlasenko834410a2006-11-29 12:00:28 +00001246#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001247 pe->changed = (what == create_empty_dos);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001248#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001249 }
1250
Denis Vlasenko834410a2006-11-29 12:00:28 +00001251#if ENABLE_FEATURE_SUN_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001252 if (what == create_empty_sun && check_sun_label())
1253 return 0;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001254#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001255
1256 memset(MBRbuffer, 0, 512);
1257
Denis Vlasenko834410a2006-11-29 12:00:28 +00001258#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001259 if (what == create_empty_dos)
1260 goto got_dos_table; /* skip reading disk */
1261
Denis Vlasenkobd852072007-03-19 14:43:38 +00001262 fd = open(disk_device, type_open);
1263 if (fd < 0) {
1264 fd = open(disk_device, O_RDONLY);
1265 if (fd < 0) {
Rob Landleyb73451d2006-02-24 16:29:00 +00001266 if (what == try_only)
1267 return 1;
1268 fdisk_fatal(unable_to_open);
1269 } else
Denis Vlasenkobd852072007-03-19 14:43:38 +00001270 printf("You will not be able to write "
1271 "the partition table\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001272 }
1273
1274 if (512 != read(fd, MBRbuffer, 512)) {
1275 if (what == try_only)
1276 return 1;
1277 fdisk_fatal(unable_to_read);
1278 }
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001279#else
Denis Vlasenkobd852072007-03-19 14:43:38 +00001280 fd = open(disk_device, O_RDONLY);
1281 if (fd < 0)
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001282 return 1;
1283 if (512 != read(fd, MBRbuffer, 512))
1284 return 1;
1285#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001286
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001287 get_geometry();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001288
1289 update_units();
1290
Denis Vlasenko834410a2006-11-29 12:00:28 +00001291#if ENABLE_FEATURE_SUN_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001292 if (check_sun_label())
1293 return 0;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001294#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001295
Denis Vlasenko834410a2006-11-29 12:00:28 +00001296#if ENABLE_FEATURE_SGI_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001297 if (check_sgi_label())
1298 return 0;
1299#endif
1300
Denis Vlasenko834410a2006-11-29 12:00:28 +00001301#if ENABLE_FEATURE_AIX_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001302 if (check_aix_label())
1303 return 0;
1304#endif
1305
Denis Vlasenko834410a2006-11-29 12:00:28 +00001306#if ENABLE_FEATURE_OSF_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001307 if (check_osf_label()) {
1308 possibly_osf_label = 1;
1309 if (!valid_part_table_flag(MBRbuffer)) {
Rob Landley5527b912006-02-25 03:46:10 +00001310 current_label_type = label_osf;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001311 return 0;
1312 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00001313 printf("This disk has both DOS and BSD magic.\n"
1314 "Give the 'b' command to go to BSD mode.\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001315 }
1316#endif
1317
Denis Vlasenko834410a2006-11-29 12:00:28 +00001318#if ENABLE_FEATURE_FDISK_WRITABLE
Rob Landleyb73451d2006-02-24 16:29:00 +00001319 got_dos_table:
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001320#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001321
1322 if (!valid_part_table_flag(MBRbuffer)) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001323#if !ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001324 return -1;
1325#else
Rob Landleyb73451d2006-02-24 16:29:00 +00001326 switch (what) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001327 case fdisk:
Denis Vlasenkobd852072007-03-19 14:43:38 +00001328 printf("Device contains neither a valid DOS "
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001329 "partition table, nor Sun, SGI or OSF "
Denis Vlasenkobd852072007-03-19 14:43:38 +00001330 "disklabel\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001331#ifdef __sparc__
Denis Vlasenko834410a2006-11-29 12:00:28 +00001332#if ENABLE_FEATURE_SUN_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001333 create_sunlabel();
1334#endif
1335#else
1336 create_doslabel();
1337#endif
1338 return 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001339 case try_only:
1340 return -1;
1341 case create_empty_dos:
Denis Vlasenko834410a2006-11-29 12:00:28 +00001342#if ENABLE_FEATURE_SUN_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001343 case create_empty_sun:
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001344#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001345 break;
1346 default:
Denis Vlasenkobd852072007-03-19 14:43:38 +00001347 bb_error_msg_and_die("internal error");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001348 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001349#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001350 }
1351
Denis Vlasenko834410a2006-11-29 12:00:28 +00001352#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001353 warn_cylinders();
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001354#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001355 warn_geometry();
1356
1357 for (i = 0; i < 4; i++) {
1358 struct pte *pe = &ptes[i];
1359
Rob Landleyb73451d2006-02-24 16:29:00 +00001360 if (IS_EXTENDED(pe->part_table->sys_ind)) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001361 if (g_partitions != 4)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001362 printf("Ignoring extra extended "
1363 "partition %d\n", i + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001364 else
1365 read_extended(i);
1366 }
1367 }
1368
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001369 for (i = 3; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001370 struct pte *pe = &ptes[i];
1371
1372 if (!valid_part_table_flag(pe->sectorbuffer)) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001373 printf("Warning: invalid flag 0x%02x,0x%02x of partition "
1374 "table %d will be corrected by w(rite)\n",
Denis Vlasenko834410a2006-11-29 12:00:28 +00001375 pe->sectorbuffer[510],
1376 pe->sectorbuffer[511],
1377 i + 1);
1378#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001379 pe->changed = 1;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001380#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001381 }
1382 }
1383
1384 return 0;
1385}
1386
Denis Vlasenko834410a2006-11-29 12:00:28 +00001387#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001388/*
1389 * Print the message MESG, then read an integer between LOW and HIGH (inclusive).
1390 * If the user hits Enter, DFLT is returned.
1391 * Answers like +10 are interpreted as offsets from BASE.
1392 *
1393 * There is no default if DFLT is not between LOW and HIGH.
1394 */
Denis Vlasenko834410a2006-11-29 12:00:28 +00001395static unsigned
Denis Vlasenko06c0a712007-01-29 22:51:44 +00001396read_int(unsigned low, unsigned dflt, unsigned high, unsigned base, const char *mesg)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001397{
Denis Vlasenko834410a2006-11-29 12:00:28 +00001398 unsigned i;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001399 int default_ok = 1;
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001400 const char *fmt = "%s (%u-%u, default %u): ";
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001401
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001402 if (dflt < low || dflt > high) {
1403 fmt = "%s (%u-%u): ";
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001404 default_ok = 0;
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001405 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001406
1407 while (1) {
1408 int use_default = default_ok;
1409
1410 /* ask question and read answer */
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001411 do {
1412 printf(fmt, mesg, low, high, dflt);
1413 read_maybe_empty("");
1414 } while (*line_ptr != '\n' && !isdigit(*line_ptr)
1415 && *line_ptr != '-' && *line_ptr != '+');
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001416
Eric Andersen84bdea82004-05-19 10:49:17 +00001417 if (*line_ptr == '+' || *line_ptr == '-') {
Rob Landleyb73451d2006-02-24 16:29:00 +00001418 int minus = (*line_ptr == '-');
1419 int absolute = 0;
Eric Andersenc48d49a2003-07-03 10:02:32 +00001420
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001421 i = atoi(line_ptr + 1);
Eric Andersenc48d49a2003-07-03 10:02:32 +00001422
Rob Landleyb73451d2006-02-24 16:29:00 +00001423 while (isdigit(*++line_ptr))
1424 use_default = 0;
Eric Andersen84bdea82004-05-19 10:49:17 +00001425
Rob Landleyb73451d2006-02-24 16:29:00 +00001426 switch (*line_ptr) {
1427 case 'c':
1428 case 'C':
1429 if (!display_in_cyl_units)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001430 i *= g_heads * g_sectors;
Rob Landleyb73451d2006-02-24 16:29:00 +00001431 break;
1432 case 'K':
1433 absolute = 1024;
1434 break;
1435 case 'k':
1436 absolute = 1000;
1437 break;
1438 case 'm':
1439 case 'M':
1440 absolute = 1000000;
1441 break;
1442 case 'g':
1443 case 'G':
1444 absolute = 1000000000;
1445 break;
1446 default:
1447 break;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001448 }
Rob Landleyb73451d2006-02-24 16:29:00 +00001449 if (absolute) {
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00001450 ullong bytes;
Rob Landleyb73451d2006-02-24 16:29:00 +00001451 unsigned long unit;
1452
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00001453 bytes = (ullong) i * absolute;
Rob Landleyb73451d2006-02-24 16:29:00 +00001454 unit = sector_size * units_per_sector;
1455 bytes += unit/2; /* round */
1456 bytes /= unit;
1457 i = bytes;
1458 }
1459 if (minus)
1460 i = -i;
1461 i += base;
Eric Andersen84bdea82004-05-19 10:49:17 +00001462 } else {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001463 i = atoi(line_ptr);
1464 while (isdigit(*line_ptr)) {
1465 line_ptr++;
1466 use_default = 0;
1467 }
1468 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00001469 if (use_default) {
1470 i = dflt;
1471 printf("Using default value %u\n", i);
1472 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001473 if (i >= low && i <= high)
1474 break;
Denis Vlasenkobd852072007-03-19 14:43:38 +00001475 printf("Value is out of range\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001476 }
1477 return i;
1478}
1479
Rob Landleyb73451d2006-02-24 16:29:00 +00001480static int
1481get_partition(int warn, int max)
1482{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001483 struct pte *pe;
1484 int i;
1485
Denis Vlasenkobd852072007-03-19 14:43:38 +00001486 i = read_int(1, 0, max, 0, "Partition number") - 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001487 pe = &ptes[i];
1488
1489 if (warn) {
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001490 if ((!LABEL_IS_SUN && !LABEL_IS_SGI && !pe->part_table->sys_ind)
1491 || (LABEL_IS_SUN && (!sunlabel->partitions[i].num_sectors || !sunlabel->infos[i].id))
1492 || (LABEL_IS_SGI && !sgi_get_num_sectors(i))
1493 ) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001494 printf("Warning: partition %d has empty type\n", i+1);
Rob Landley5527b912006-02-25 03:46:10 +00001495 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001496 }
1497 return i;
1498}
1499
1500static int
Rob Landleyb73451d2006-02-24 16:29:00 +00001501get_existing_partition(int warn, int max)
1502{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001503 int pno = -1;
1504 int i;
1505
1506 for (i = 0; i < max; i++) {
1507 struct pte *pe = &ptes[i];
1508 struct partition *p = pe->part_table;
1509
1510 if (p && !is_cleared_partition(p)) {
1511 if (pno >= 0)
1512 goto not_unique;
1513 pno = i;
1514 }
1515 }
1516 if (pno >= 0) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001517 printf("Selected partition %d\n", pno+1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001518 return pno;
1519 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00001520 printf("No partition is defined yet!\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001521 return -1;
1522
1523 not_unique:
1524 return get_partition(warn, max);
1525}
1526
1527static int
Rob Landleyb73451d2006-02-24 16:29:00 +00001528get_nonexisting_partition(int warn, int max)
1529{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001530 int pno = -1;
1531 int i;
1532
1533 for (i = 0; i < max; i++) {
1534 struct pte *pe = &ptes[i];
1535 struct partition *p = pe->part_table;
1536
1537 if (p && is_cleared_partition(p)) {
1538 if (pno >= 0)
1539 goto not_unique;
1540 pno = i;
1541 }
1542 }
1543 if (pno >= 0) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001544 printf("Selected partition %d\n", pno+1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001545 return pno;
1546 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00001547 printf("All primary partitions have been defined already!\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001548 return -1;
1549
1550 not_unique:
1551 return get_partition(warn, max);
1552}
1553
1554
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001555static void
1556change_units(void)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001557{
1558 display_in_cyl_units = !display_in_cyl_units;
1559 update_units();
Denis Vlasenkobd852072007-03-19 14:43:38 +00001560 printf("Changing display/entry units to %s\n",
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001561 str_units(PLURAL));
1562}
1563
1564static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001565toggle_active(int i)
1566{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001567 struct pte *pe = &ptes[i];
1568 struct partition *p = pe->part_table;
1569
Rob Landleyb73451d2006-02-24 16:29:00 +00001570 if (IS_EXTENDED(p->sys_ind) && !p->boot_ind)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001571 printf("WARNING: Partition %d is an extended partition\n", i + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001572 p->boot_ind = (p->boot_ind ? 0 : ACTIVE_FLAG);
1573 pe->changed = 1;
1574}
1575
1576static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001577toggle_dos_compatibility_flag(void)
1578{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001579 dos_compatible_flag = ~dos_compatible_flag;
1580 if (dos_compatible_flag) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001581 sector_offset = g_sectors;
Denis Vlasenkobd852072007-03-19 14:43:38 +00001582 printf("DOS Compatibility flag is set\n");
1583 } else {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001584 sector_offset = 1;
Denis Vlasenkobd852072007-03-19 14:43:38 +00001585 printf("DOS Compatibility flag is not set\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001586 }
1587}
1588
1589static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001590delete_partition(int i)
1591{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001592 struct pte *pe = &ptes[i];
1593 struct partition *p = pe->part_table;
1594 struct partition *q = pe->ext_pointer;
1595
1596/* Note that for the fifth partition (i == 4) we don't actually
1597 * decrement partitions.
1598 */
1599
1600 if (warn_geometry())
1601 return; /* C/H/S not set */
1602 pe->changed = 1;
1603
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001604 if (LABEL_IS_SUN) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001605 sun_delete_partition(i);
1606 return;
1607 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001608 if (LABEL_IS_SGI) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001609 sgi_delete_partition(i);
1610 return;
1611 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001612
1613 if (i < 4) {
Rob Landleyb73451d2006-02-24 16:29:00 +00001614 if (IS_EXTENDED(p->sys_ind) && i == ext_index) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001615 g_partitions = 4;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001616 ptes[ext_index].ext_pointer = NULL;
1617 extended_offset = 0;
1618 }
1619 clear_partition(p);
1620 return;
1621 }
1622
1623 if (!q->sys_ind && i > 4) {
1624 /* the last one in the chain - just delete */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001625 --g_partitions;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001626 --i;
1627 clear_partition(ptes[i].ext_pointer);
1628 ptes[i].changed = 1;
1629 } else {
1630 /* not the last one - further ones will be moved down */
1631 if (i > 4) {
1632 /* delete this link in the chain */
1633 p = ptes[i-1].ext_pointer;
1634 *p = *q;
1635 set_start_sect(p, get_start_sect(q));
1636 set_nr_sects(p, get_nr_sects(q));
1637 ptes[i-1].changed = 1;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001638 } else if (g_partitions > 5) { /* 5 will be moved to 4 */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001639 /* the first logical in a longer chain */
1640 pe = &ptes[5];
1641
1642 if (pe->part_table) /* prevent SEGFAULT */
1643 set_start_sect(pe->part_table,
Rob Landleyb73451d2006-02-24 16:29:00 +00001644 get_partition_start(pe) -
1645 extended_offset);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001646 pe->offset = extended_offset;
1647 pe->changed = 1;
1648 }
1649
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001650 if (g_partitions > 5) {
1651 g_partitions--;
1652 while (i < g_partitions) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001653 ptes[i] = ptes[i+1];
1654 i++;
1655 }
1656 } else
1657 /* the only logical: clear only */
1658 clear_partition(ptes[i].part_table);
1659 }
1660}
1661
1662static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001663change_sysid(void)
1664{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001665 int i, sys, origsys;
1666 struct partition *p;
1667
Eric Andersen040f4402003-07-30 08:40:37 +00001668 /* If sgi_label then don't use get_existing_partition,
1669 let the user select a partition, since get_existing_partition()
1670 only works for Linux like partition tables. */
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001671 if (!LABEL_IS_SGI) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001672 i = get_existing_partition(0, g_partitions);
Eric Andersen040f4402003-07-30 08:40:37 +00001673 } else {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001674 i = get_partition(0, g_partitions);
Eric Andersen040f4402003-07-30 08:40:37 +00001675 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001676 if (i == -1)
1677 return;
1678 p = ptes[i].part_table;
1679 origsys = sys = get_sysid(i);
1680
1681 /* if changing types T to 0 is allowed, then
1682 the reverse change must be allowed, too */
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001683 if (!sys && !LABEL_IS_SGI && !LABEL_IS_SUN && !get_nr_sects(p)) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001684 printf("Partition %d does not exist yet!\n", i + 1);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001685 return;
1686 }
1687 while (1) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001688 sys = read_hex(get_sys_types());
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001689
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001690 if (!sys && !LABEL_IS_SGI && !LABEL_IS_SUN) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001691 printf("Type 0 means free space to many systems\n"
Rob Landleyb73451d2006-02-24 16:29:00 +00001692 "(but not to Linux). Having partitions of\n"
Denis Vlasenkobd852072007-03-19 14:43:38 +00001693 "type 0 is probably unwise.\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001694 /* break; */
1695 }
1696
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001697 if (!LABEL_IS_SUN && !LABEL_IS_SGI) {
Rob Landleyb73451d2006-02-24 16:29:00 +00001698 if (IS_EXTENDED(sys) != IS_EXTENDED(p->sys_ind)) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001699 printf("You cannot change a partition into"
1700 " an extended one or vice versa\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001701 break;
1702 }
1703 }
1704
1705 if (sys < 256) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001706#if ENABLE_FEATURE_SUN_LABEL
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001707 if (LABEL_IS_SUN && i == 2 && sys != SUN_WHOLE_DISK)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001708 printf("Consider leaving partition 3 "
Rob Landleyb73451d2006-02-24 16:29:00 +00001709 "as Whole disk (5),\n"
1710 "as SunOS/Solaris expects it and "
Denis Vlasenkobd852072007-03-19 14:43:38 +00001711 "even Linux likes it\n\n");
1712#endif
1713#if ENABLE_FEATURE_SGI_LABEL
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001714 if (LABEL_IS_SGI &&
Rob Landley5527b912006-02-25 03:46:10 +00001715 (
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001716 (i == 10 && sys != SGI_ENTIRE_DISK) ||
Rob Landley5527b912006-02-25 03:46:10 +00001717 (i == 8 && sys != 0)
1718 )
Denis Vlasenkobd852072007-03-19 14:43:38 +00001719 ) {
1720 printf("Consider leaving partition 9 "
Rob Landleyb73451d2006-02-24 16:29:00 +00001721 "as volume header (0),\nand "
1722 "partition 11 as entire volume (6)"
Denis Vlasenkobd852072007-03-19 14:43:38 +00001723 "as IRIX expects it\n\n");
Rob Landley5527b912006-02-25 03:46:10 +00001724 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00001725#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001726 if (sys == origsys)
1727 break;
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001728 if (LABEL_IS_SUN) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001729 sun_change_sysid(i, sys);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001730 } else if (LABEL_IS_SGI) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001731 sgi_change_sysid(i, sys);
1732 } else
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001733 p->sys_ind = sys;
Rob Landley5527b912006-02-25 03:46:10 +00001734
Denis Vlasenkobd852072007-03-19 14:43:38 +00001735 printf("Changed system type of partition %d "
1736 "to %x (%s)\n", i + 1, sys,
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001737 partition_type(sys));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001738 ptes[i].changed = 1;
Denis Vlasenkoa5549c92008-01-24 22:49:15 +00001739 //if (is_dos_partition(origsys) || is_dos_partition(sys))
1740 // dos_changed = 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001741 break;
1742 }
1743 }
1744}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001745#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001746
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001747
Denis Vlasenko28703012006-12-19 20:32:02 +00001748/* check_consistency() and linear2chs() added Sat Mar 6 12:28:16 1993,
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001749 * faith@cs.unc.edu, based on code fragments from pfdisk by Gordon W. Ross,
1750 * Jan. 1990 (version 1.2.1 by Gordon W. Ross Aug. 1990; Modified by S.
1751 * Lubkin Oct. 1991). */
1752
Rob Landleyb73451d2006-02-24 16:29:00 +00001753static void
Denis Vlasenko28703012006-12-19 20:32:02 +00001754linear2chs(unsigned ls, unsigned *c, unsigned *h, unsigned *s)
Rob Landleyb73451d2006-02-24 16:29:00 +00001755{
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001756 int spc = g_heads * g_sectors;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001757
1758 *c = ls / spc;
1759 ls = ls % spc;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001760 *h = ls / g_sectors;
1761 *s = ls % g_sectors + 1; /* sectors count from 1 */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001762}
1763
Rob Landleyb73451d2006-02-24 16:29:00 +00001764static void
1765check_consistency(const struct partition *p, int partition)
1766{
Denis Vlasenko834410a2006-11-29 12:00:28 +00001767 unsigned pbc, pbh, pbs; /* physical beginning c, h, s */
1768 unsigned pec, peh, pes; /* physical ending c, h, s */
1769 unsigned lbc, lbh, lbs; /* logical beginning c, h, s */
1770 unsigned lec, leh, les; /* logical ending c, h, s */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001771
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001772 if (!g_heads || !g_sectors || (partition >= 4))
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001773 return; /* do not check extended partitions */
1774
1775/* physical beginning c, h, s */
1776 pbc = (p->cyl & 0xff) | ((p->sector << 2) & 0x300);
1777 pbh = p->head;
1778 pbs = p->sector & 0x3f;
1779
1780/* physical ending c, h, s */
1781 pec = (p->end_cyl & 0xff) | ((p->end_sector << 2) & 0x300);
1782 peh = p->end_head;
1783 pes = p->end_sector & 0x3f;
1784
1785/* compute logical beginning (c, h, s) */
Denis Vlasenko28703012006-12-19 20:32:02 +00001786 linear2chs(get_start_sect(p), &lbc, &lbh, &lbs);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001787
1788/* compute logical ending (c, h, s) */
Denis Vlasenko28703012006-12-19 20:32:02 +00001789 linear2chs(get_start_sect(p) + get_nr_sects(p) - 1, &lec, &leh, &les);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001790
1791/* Same physical / logical beginning? */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001792 if (g_cylinders <= 1024 && (pbc != lbc || pbh != lbh || pbs != lbs)) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001793 printf("Partition %d has different physical/logical "
1794 "beginnings (non-Linux?):\n", partition + 1);
1795 printf(" phys=(%d, %d, %d) ", pbc, pbh, pbs);
1796 printf("logical=(%d, %d, %d)\n",lbc, lbh, lbs);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001797 }
1798
1799/* Same physical / logical ending? */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001800 if (g_cylinders <= 1024 && (pec != lec || peh != leh || pes != les)) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001801 printf("Partition %d has different physical/logical "
1802 "endings:\n", partition + 1);
1803 printf(" phys=(%d, %d, %d) ", pec, peh, pes);
1804 printf("logical=(%d, %d, %d)\n", lec, leh, les);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001805 }
1806
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001807/* Ending on cylinder boundary? */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001808 if (peh != (g_heads - 1) || pes != g_sectors) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001809 printf("Partition %i does not end on cylinder boundary\n",
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001810 partition + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001811 }
1812}
1813
1814static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001815list_disk_geometry(void)
1816{
Eric Andersen040f4402003-07-30 08:40:37 +00001817 long long bytes = (total_number_of_sectors << 9);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001818 long megabytes = bytes/1000000;
1819
1820 if (megabytes < 10000)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001821 printf("\nDisk %s: %ld MB, %lld bytes\n",
Rob Landleyb73451d2006-02-24 16:29:00 +00001822 disk_device, megabytes, bytes);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001823 else
Denis Vlasenkobd852072007-03-19 14:43:38 +00001824 printf("\nDisk %s: %ld.%ld GB, %lld bytes\n",
Rob Landleyb73451d2006-02-24 16:29:00 +00001825 disk_device, megabytes/1000, (megabytes/100)%10, bytes);
Denis Vlasenkobd852072007-03-19 14:43:38 +00001826 printf("%d heads, %d sectors/track, %d cylinders",
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001827 g_heads, g_sectors, g_cylinders);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001828 if (units_per_sector == 1)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001829 printf(", total %llu sectors",
Rob Landleyb73451d2006-02-24 16:29:00 +00001830 total_number_of_sectors / (sector_size/512));
Denis Vlasenkobd852072007-03-19 14:43:38 +00001831 printf("\nUnits = %s of %d * %d = %d bytes\n\n",
Rob Landleyb73451d2006-02-24 16:29:00 +00001832 str_units(PLURAL),
1833 units_per_sector, sector_size, units_per_sector * sector_size);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001834}
1835
1836/*
1837 * Check whether partition entries are ordered by their starting positions.
1838 * Return 0 if OK. Return i if partition i should have been earlier.
1839 * Two separate checks: primary and logical partitions.
1840 */
1841static int
Rob Landleyb73451d2006-02-24 16:29:00 +00001842wrong_p_order(int *prev)
1843{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001844 const struct pte *pe;
1845 const struct partition *p;
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00001846 ullong last_p_start_pos = 0, p_start_pos;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001847 int i, last_i = 0;
1848
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001849 for (i = 0; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001850 if (i == 4) {
1851 last_i = 4;
1852 last_p_start_pos = 0;
1853 }
1854 pe = &ptes[i];
Denis Vlasenko6bef3d12007-11-06 03:05:54 +00001855 p = pe->part_table;
1856 if (p->sys_ind) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001857 p_start_pos = get_partition_start(pe);
1858
1859 if (last_p_start_pos > p_start_pos) {
1860 if (prev)
1861 *prev = last_i;
1862 return i;
1863 }
1864
1865 last_p_start_pos = p_start_pos;
1866 last_i = i;
1867 }
1868 }
1869 return 0;
1870}
1871
Denis Vlasenko834410a2006-11-29 12:00:28 +00001872#if ENABLE_FEATURE_FDISK_ADVANCED
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001873/*
1874 * Fix the chain of logicals.
1875 * extended_offset is unchanged, the set of sectors used is unchanged
1876 * The chain is sorted so that sectors increase, and so that
1877 * starting sectors increase.
1878 *
1879 * After this it may still be that cfdisk doesnt like the table.
1880 * (This is because cfdisk considers expanded parts, from link to
1881 * end of partition, and these may still overlap.)
1882 * Now
1883 * sfdisk /dev/hda > ohda; sfdisk /dev/hda < ohda
1884 * may help.
1885 */
1886static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001887fix_chain_of_logicals(void)
1888{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001889 int j, oj, ojj, sj, sjj;
1890 struct partition *pj,*pjj,tmp;
1891
1892 /* Stage 1: sort sectors but leave sector of part 4 */
1893 /* (Its sector is the global extended_offset.) */
1894 stage1:
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001895 for (j = 5; j < g_partitions - 1; j++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001896 oj = ptes[j].offset;
1897 ojj = ptes[j+1].offset;
1898 if (oj > ojj) {
1899 ptes[j].offset = ojj;
1900 ptes[j+1].offset = oj;
1901 pj = ptes[j].part_table;
1902 set_start_sect(pj, get_start_sect(pj)+oj-ojj);
1903 pjj = ptes[j+1].part_table;
1904 set_start_sect(pjj, get_start_sect(pjj)+ojj-oj);
1905 set_start_sect(ptes[j-1].ext_pointer,
Rob Landleyb73451d2006-02-24 16:29:00 +00001906 ojj-extended_offset);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001907 set_start_sect(ptes[j].ext_pointer,
Rob Landleyb73451d2006-02-24 16:29:00 +00001908 oj-extended_offset);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001909 goto stage1;
1910 }
1911 }
1912
1913 /* Stage 2: sort starting sectors */
1914 stage2:
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001915 for (j = 4; j < g_partitions - 1; j++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001916 pj = ptes[j].part_table;
1917 pjj = ptes[j+1].part_table;
1918 sj = get_start_sect(pj);
1919 sjj = get_start_sect(pjj);
1920 oj = ptes[j].offset;
1921 ojj = ptes[j+1].offset;
1922 if (oj+sj > ojj+sjj) {
1923 tmp = *pj;
1924 *pj = *pjj;
1925 *pjj = tmp;
1926 set_start_sect(pj, ojj+sjj-oj);
1927 set_start_sect(pjj, oj+sj-ojj);
1928 goto stage2;
1929 }
1930 }
1931
1932 /* Probably something was changed */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001933 for (j = 4; j < g_partitions; j++)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001934 ptes[j].changed = 1;
1935}
1936
1937
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001938static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001939fix_partition_table_order(void)
1940{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001941 struct pte *pei, *pek;
1942 int i,k;
1943
1944 if (!wrong_p_order(NULL)) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001945 printf("Ordering is already correct\n\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001946 return;
1947 }
1948
1949 while ((i = wrong_p_order(&k)) != 0 && i < 4) {
1950 /* partition i should have come earlier, move it */
1951 /* We have to move data in the MBR */
1952 struct partition *pi, *pk, *pe, pbuf;
1953 pei = &ptes[i];
1954 pek = &ptes[k];
1955
1956 pe = pei->ext_pointer;
1957 pei->ext_pointer = pek->ext_pointer;
1958 pek->ext_pointer = pe;
1959
1960 pi = pei->part_table;
1961 pk = pek->part_table;
1962
1963 memmove(&pbuf, pi, sizeof(struct partition));
1964 memmove(pi, pk, sizeof(struct partition));
1965 memmove(pk, &pbuf, sizeof(struct partition));
1966
1967 pei->changed = pek->changed = 1;
1968 }
1969
1970 if (i)
1971 fix_chain_of_logicals();
1972
1973 printf("Done.\n");
1974
1975}
1976#endif
1977
1978static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001979list_table(int xtra)
1980{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001981 const struct partition *p;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001982 int i, w;
1983
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001984 if (LABEL_IS_SUN) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001985 sun_list_table(xtra);
1986 return;
1987 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001988 if (LABEL_IS_SUN) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001989 sgi_list_table(xtra);
1990 return;
1991 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001992
1993 list_disk_geometry();
1994
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001995 if (LABEL_IS_OSF) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001996 xbsd_print_disklabel(xtra);
1997 return;
1998 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001999
2000 /* Heuristic: we list partition 3 of /dev/foo as /dev/foo3,
2001 but if the device name ends in a digit, say /dev/foo1,
2002 then the partition is called /dev/foo1p3. */
2003 w = strlen(disk_device);
2004 if (w && isdigit(disk_device[w-1]))
2005 w++;
2006 if (w < 5)
2007 w = 5;
2008
Denis Vlasenkobd852072007-03-19 14:43:38 +00002009 // 1 12345678901 12345678901 12345678901 12
2010 printf("%*s Boot Start End Blocks Id System\n",
2011 w+1, "Device");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002012
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002013 for (i = 0; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002014 const struct pte *pe = &ptes[i];
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002015 ullong psects;
2016 ullong pblocks;
Denis Vlasenko834410a2006-11-29 12:00:28 +00002017 unsigned podd;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002018
2019 p = pe->part_table;
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002020 if (!p || is_cleared_partition(p))
2021 continue;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002022
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002023 psects = get_nr_sects(p);
2024 pblocks = psects;
2025 podd = 0;
2026
2027 if (sector_size < 1024) {
2028 pblocks /= (1024 / sector_size);
2029 podd = psects % (1024 / sector_size);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002030 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002031 if (sector_size > 1024)
2032 pblocks *= (sector_size / 1024);
2033
2034 printf("%s %c %11llu %11llu %11llu%c %2x %s\n",
2035 partname(disk_device, i+1, w+2),
2036 !p->boot_ind ? ' ' : p->boot_ind == ACTIVE_FLAG /* boot flag */
2037 ? '*' : '?',
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002038 (ullong) cround(get_partition_start(pe)), /* start */
2039 (ullong) cround(get_partition_start(pe) + psects /* end */
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002040 - (psects ? 1 : 0)),
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002041 (ullong) pblocks, podd ? '+' : ' ', /* odd flag on end */
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002042 p->sys_ind, /* type id */
2043 partition_type(p->sys_ind)); /* type name */
2044
2045 check_consistency(p, i);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002046 }
2047
2048 /* Is partition table in disk order? It need not be, but... */
2049 /* partition table entries are not checked for correct order if this
2050 is a sgi, sun or aix labeled disk... */
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002051 if (LABEL_IS_DOS && wrong_p_order(NULL)) {
Rob Landley5527b912006-02-25 03:46:10 +00002052 /* FIXME */
Denis Vlasenkobd852072007-03-19 14:43:38 +00002053 printf("\nPartition table entries are not in disk order\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002054 }
2055}
2056
Denis Vlasenko834410a2006-11-29 12:00:28 +00002057#if ENABLE_FEATURE_FDISK_ADVANCED
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002058static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002059x_list_table(int extend)
2060{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002061 const struct pte *pe;
2062 const struct partition *p;
2063 int i;
2064
Denis Vlasenkobd852072007-03-19 14:43:38 +00002065 printf("\nDisk %s: %d heads, %d sectors, %d cylinders\n\n",
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002066 disk_device, g_heads, g_sectors, g_cylinders);
Denis Vlasenkobd852072007-03-19 14:43:38 +00002067 printf("Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID\n");
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002068 for (i = 0; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002069 pe = &ptes[i];
2070 p = (extend ? pe->ext_pointer : pe->part_table);
2071 if (p != NULL) {
Eric Andersen040f4402003-07-30 08:40:37 +00002072 printf("%2d %02x%4d%4d%5d%4d%4d%5d%11u%11u %02x\n",
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002073 i + 1, p->boot_ind, p->head,
2074 sector(p->sector),
2075 cylinder(p->sector, p->cyl), p->end_head,
2076 sector(p->end_sector),
2077 cylinder(p->end_sector, p->end_cyl),
2078 get_start_sect(p), get_nr_sects(p), p->sys_ind);
2079 if (p->sys_ind)
2080 check_consistency(p, i);
2081 }
2082 }
2083}
2084#endif
2085
Denis Vlasenko834410a2006-11-29 12:00:28 +00002086#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002087static void
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002088fill_bounds(ullong *first, ullong *last)
Rob Landleyb73451d2006-02-24 16:29:00 +00002089{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002090 int i;
2091 const struct pte *pe = &ptes[0];
2092 const struct partition *p;
2093
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002094 for (i = 0; i < g_partitions; pe++,i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002095 p = pe->part_table;
Rob Landleyb73451d2006-02-24 16:29:00 +00002096 if (!p->sys_ind || IS_EXTENDED(p->sys_ind)) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002097 first[i] = 0xffffffff;
2098 last[i] = 0;
2099 } else {
2100 first[i] = get_partition_start(pe);
2101 last[i] = first[i] + get_nr_sects(p) - 1;
2102 }
2103 }
2104}
2105
2106static void
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002107check(int n, unsigned h, unsigned s, unsigned c, ullong start)
Rob Landleyb73451d2006-02-24 16:29:00 +00002108{
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002109 ullong total, real_s, real_c;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002110
2111 real_s = sector(s) - 1;
2112 real_c = cylinder(s, c);
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002113 total = (real_c * g_sectors + real_s) * g_heads + h;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002114 if (!total)
Denis Vlasenkobd852072007-03-19 14:43:38 +00002115 printf("Partition %d contains sector 0\n", n);
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002116 if (h >= g_heads)
Denis Vlasenkobd852072007-03-19 14:43:38 +00002117 printf("Partition %d: head %d greater than maximum %d\n",
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002118 n, h + 1, g_heads);
2119 if (real_s >= g_sectors)
Denis Vlasenkobd852072007-03-19 14:43:38 +00002120 printf("Partition %d: sector %d greater than "
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002121 "maximum %d\n", n, s, g_sectors);
2122 if (real_c >= g_cylinders)
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002123 printf("Partition %d: cylinder %llu greater than "
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002124 "maximum %d\n", n, real_c + 1, g_cylinders);
2125 if (g_cylinders <= 1024 && start != total)
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002126 printf("Partition %d: previous sectors %llu disagrees with "
2127 "total %llu\n", n, start, total);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002128}
2129
2130static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002131verify(void)
2132{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002133 int i, j;
Denis Vlasenko834410a2006-11-29 12:00:28 +00002134 unsigned total = 1;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002135 ullong first[g_partitions], last[g_partitions];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002136 struct partition *p;
2137
2138 if (warn_geometry())
2139 return;
2140
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002141 if (LABEL_IS_SUN) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002142 verify_sun();
2143 return;
2144 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002145 if (LABEL_IS_SGI) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002146 verify_sgi(1);
2147 return;
2148 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002149
2150 fill_bounds(first, last);
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002151 for (i = 0; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002152 struct pte *pe = &ptes[i];
2153
2154 p = pe->part_table;
Rob Landleyb73451d2006-02-24 16:29:00 +00002155 if (p->sys_ind && !IS_EXTENDED(p->sys_ind)) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002156 check_consistency(p, i);
2157 if (get_partition_start(pe) < first[i])
Denis Vlasenkobd852072007-03-19 14:43:38 +00002158 printf("Warning: bad start-of-data in "
2159 "partition %d\n", i + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002160 check(i + 1, p->end_head, p->end_sector, p->end_cyl,
2161 last[i]);
2162 total += last[i] + 1 - first[i];
Denis Vlasenkobd852072007-03-19 14:43:38 +00002163 for (j = 0; j < i; j++) {
2164 if ((first[i] >= first[j] && first[i] <= last[j])
2165 || ((last[i] <= last[j] && last[i] >= first[j]))) {
2166 printf("Warning: partition %d overlaps "
2167 "partition %d\n", j + 1, i + 1);
2168 total += first[i] >= first[j] ?
2169 first[i] : first[j];
2170 total -= last[i] <= last[j] ?
2171 last[i] : last[j];
2172 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002173 }
2174 }
2175 }
2176
2177 if (extended_offset) {
2178 struct pte *pex = &ptes[ext_index];
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002179 ullong e_last = get_start_sect(pex->part_table) +
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002180 get_nr_sects(pex->part_table) - 1;
2181
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002182 for (i = 4; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002183 total++;
2184 p = ptes[i].part_table;
2185 if (!p->sys_ind) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002186 if (i != 4 || i + 1 < g_partitions)
Denis Vlasenkobd852072007-03-19 14:43:38 +00002187 printf("Warning: partition %d "
2188 "is empty\n", i + 1);
2189 } else if (first[i] < extended_offset || last[i] > e_last) {
2190 printf("Logical partition %d not entirely in "
2191 "partition %d\n", i + 1, ext_index + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002192 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002193 }
2194 }
2195
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002196 if (total > g_heads * g_sectors * g_cylinders)
Denis Vlasenkobd852072007-03-19 14:43:38 +00002197 printf("Total allocated sectors %d greater than the maximum "
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002198 "%d\n", total, g_heads * g_sectors * g_cylinders);
Denis Vlasenkobd852072007-03-19 14:43:38 +00002199 else {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002200 total = g_heads * g_sectors * g_cylinders - total;
Denis Vlasenkobd852072007-03-19 14:43:38 +00002201 if (total != 0)
2202 printf("%d unallocated sectors\n", total);
2203 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002204}
2205
2206static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002207add_partition(int n, int sys)
2208{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002209 char mesg[256]; /* 48 does not suffice in Japanese */
Mike Frysingerfa6c4842006-05-26 01:48:17 +00002210 int i, num_read = 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002211 struct partition *p = ptes[n].part_table;
2212 struct partition *q = ptes[ext_index].part_table;
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002213 ullong limit, temp;
2214 ullong start, stop = 0;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002215 ullong first[g_partitions], last[g_partitions];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002216
2217 if (p && p->sys_ind) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00002218 printf(msg_part_already_defined, n + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002219 return;
2220 }
2221 fill_bounds(first, last);
2222 if (n < 4) {
2223 start = sector_offset;
Eric Andersen040f4402003-07-30 08:40:37 +00002224 if (display_in_cyl_units || !total_number_of_sectors)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002225 limit = (ullong) g_heads * g_sectors * g_cylinders - 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002226 else
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002227 limit = total_number_of_sectors - 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002228 if (extended_offset) {
2229 first[ext_index] = extended_offset;
2230 last[ext_index] = get_start_sect(q) +
2231 get_nr_sects(q) - 1;
2232 }
2233 } else {
2234 start = extended_offset + sector_offset;
2235 limit = get_start_sect(q) + get_nr_sects(q) - 1;
2236 }
2237 if (display_in_cyl_units)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002238 for (i = 0; i < g_partitions; i++)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002239 first[i] = (cround(first[i]) - 1) * units_per_sector;
2240
Denis Vlasenkobd852072007-03-19 14:43:38 +00002241 snprintf(mesg, sizeof(mesg), "First %s", str_units(SINGULAR));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002242 do {
2243 temp = start;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002244 for (i = 0; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002245 int lastplusoff;
2246
2247 if (start == ptes[i].offset)
2248 start += sector_offset;
Rob Landleyb73451d2006-02-24 16:29:00 +00002249 lastplusoff = last[i] + ((n < 4) ? 0 : sector_offset);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002250 if (start >= first[i] && start <= lastplusoff)
2251 start = lastplusoff + 1;
2252 }
2253 if (start > limit)
2254 break;
Mike Frysingerfa6c4842006-05-26 01:48:17 +00002255 if (start >= temp+units_per_sector && num_read) {
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002256 printf("Sector %lld is already allocated\n", temp);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002257 temp = start;
Mike Frysingerfa6c4842006-05-26 01:48:17 +00002258 num_read = 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002259 }
Mike Frysingerfa6c4842006-05-26 01:48:17 +00002260 if (!num_read && start == temp) {
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002261 ullong saved_start;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002262
2263 saved_start = start;
2264 start = read_int(cround(saved_start), cround(saved_start), cround(limit),
2265 0, mesg);
2266 if (display_in_cyl_units) {
2267 start = (start - 1) * units_per_sector;
2268 if (start < saved_start) start = saved_start;
2269 }
Mike Frysingerfa6c4842006-05-26 01:48:17 +00002270 num_read = 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002271 }
Mike Frysingerfa6c4842006-05-26 01:48:17 +00002272 } while (start != temp || !num_read);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002273 if (n > 4) { /* NOT for fifth partition */
2274 struct pte *pe = &ptes[n];
2275
2276 pe->offset = start - sector_offset;
2277 if (pe->offset == extended_offset) { /* must be corrected */
2278 pe->offset++;
2279 if (sector_offset == 1)
2280 start++;
2281 }
2282 }
2283
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002284 for (i = 0; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002285 struct pte *pe = &ptes[i];
2286
2287 if (start < pe->offset && limit >= pe->offset)
2288 limit = pe->offset - 1;
2289 if (start < first[i] && limit >= first[i])
2290 limit = first[i] - 1;
2291 }
2292 if (start > limit) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00002293 printf("No free sectors available\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002294 if (n > 4)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002295 g_partitions--;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002296 return;
2297 }
2298 if (cround(start) == cround(limit)) {
2299 stop = limit;
2300 } else {
2301 snprintf(mesg, sizeof(mesg),
Denis Vlasenkobd852072007-03-19 14:43:38 +00002302 "Last %s or +size or +sizeM or +sizeK",
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002303 str_units(SINGULAR));
2304 stop = read_int(cround(start), cround(limit), cround(limit),
2305 cround(start), mesg);
2306 if (display_in_cyl_units) {
2307 stop = stop * units_per_sector - 1;
2308 if (stop >limit)
2309 stop = limit;
2310 }
2311 }
2312
2313 set_partition(n, 0, start, stop, sys);
2314 if (n > 4)
2315 set_partition(n - 1, 1, ptes[n].offset, stop, EXTENDED);
2316
Rob Landleyb73451d2006-02-24 16:29:00 +00002317 if (IS_EXTENDED(sys)) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002318 struct pte *pe4 = &ptes[4];
2319 struct pte *pen = &ptes[n];
2320
2321 ext_index = n;
2322 pen->ext_pointer = p;
2323 pe4->offset = extended_offset = start;
Rob Landley081e3842006-08-03 20:07:35 +00002324 pe4->sectorbuffer = xzalloc(sector_size);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002325 pe4->part_table = pt_offset(pe4->sectorbuffer, 0);
2326 pe4->ext_pointer = pe4->part_table + 1;
2327 pe4->changed = 1;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002328 g_partitions = 5;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002329 }
2330}
2331
2332static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002333add_logical(void)
2334{
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002335 if (g_partitions > 5 || ptes[4].part_table->sys_ind) {
2336 struct pte *pe = &ptes[g_partitions];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002337
Rob Landley081e3842006-08-03 20:07:35 +00002338 pe->sectorbuffer = xzalloc(sector_size);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002339 pe->part_table = pt_offset(pe->sectorbuffer, 0);
2340 pe->ext_pointer = pe->part_table + 1;
2341 pe->offset = 0;
2342 pe->changed = 1;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002343 g_partitions++;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002344 }
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002345 add_partition(g_partitions - 1, LINUX_NATIVE);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002346}
2347
2348static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002349new_partition(void)
2350{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002351 int i, free_primary = 0;
2352
2353 if (warn_geometry())
2354 return;
2355
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002356 if (LABEL_IS_SUN) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002357 add_sun_partition(get_partition(0, g_partitions), LINUX_NATIVE);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002358 return;
2359 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002360 if (LABEL_IS_SGI) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002361 sgi_add_partition(get_partition(0, g_partitions), LINUX_NATIVE);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002362 return;
2363 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002364 if (LABEL_IS_AIX) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00002365 printf("Sorry - this fdisk cannot handle AIX disk labels.\n"
2366"If you want to add DOS-type partitions, create a new empty DOS partition\n"
2367"table first (use 'o'). This will destroy the present disk contents.\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002368 return;
2369 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002370
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002371 for (i = 0; i < 4; i++)
2372 free_primary += !ptes[i].part_table->sys_ind;
Eric Andersenc48d49a2003-07-03 10:02:32 +00002373
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002374 if (!free_primary && g_partitions >= MAXIMUM_PARTS) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00002375 printf("The maximum number of partitions has been created\n");
Eric Andersen84bdea82004-05-19 10:49:17 +00002376 return;
Rob Landleyb73451d2006-02-24 16:29:00 +00002377 }
Eric Andersenc48d49a2003-07-03 10:02:32 +00002378
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002379 if (!free_primary) {
2380 if (extended_offset)
2381 add_logical();
2382 else
Denis Vlasenkobd852072007-03-19 14:43:38 +00002383 printf("You must delete some partition and add "
2384 "an extended partition first\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002385 } else {
Denis Vlasenkodfce08f2007-03-19 14:45:10 +00002386 char c, line[80];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002387 snprintf(line, sizeof(line),
2388 "Command action\n"
2389 " %s\n"
2390 " p primary partition (1-4)\n",
2391 (extended_offset ?
2392 "l logical (5 or over)" : "e extended"));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002393 while (1) {
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002394 c = read_nonempty(line);
2395 if (c == 'p' || c == 'P') {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002396 i = get_nonexisting_partition(0, 4);
2397 if (i >= 0)
2398 add_partition(i, LINUX_NATIVE);
2399 return;
2400 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00002401 if (c == 'l' && extended_offset) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002402 add_logical();
2403 return;
2404 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00002405 if (c == 'e' && !extended_offset) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002406 i = get_nonexisting_partition(0, 4);
2407 if (i >= 0)
2408 add_partition(i, EXTENDED);
2409 return;
2410 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00002411 printf("Invalid partition number "
2412 "for type '%c'\n", c);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002413 }
2414 }
2415}
2416
2417static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002418write_table(void)
2419{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002420 int i;
2421
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002422 if (LABEL_IS_DOS) {
Rob Landleyb73451d2006-02-24 16:29:00 +00002423 for (i = 0; i < 3; i++)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002424 if (ptes[i].changed)
2425 ptes[3].changed = 1;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002426 for (i = 3; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002427 struct pte *pe = &ptes[i];
2428
2429 if (pe->changed) {
2430 write_part_table_flag(pe->sectorbuffer);
2431 write_sector(pe->offset, pe->sectorbuffer);
2432 }
2433 }
2434 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002435 else if (LABEL_IS_SGI) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002436 /* no test on change? the printf below might be mistaken */
2437 sgi_write_table();
2438 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002439 else if (LABEL_IS_SUN) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002440 int needw = 0;
2441
Rob Landleyb73451d2006-02-24 16:29:00 +00002442 for (i = 0; i < 8; i++)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002443 if (ptes[i].changed)
2444 needw = 1;
2445 if (needw)
2446 sun_write_table();
2447 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002448
Denis Vlasenkobd852072007-03-19 14:43:38 +00002449 printf("The partition table has been altered!\n\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002450 reread_partition_table(1);
2451}
2452
Rob Landleyb73451d2006-02-24 16:29:00 +00002453static void
2454reread_partition_table(int leave)
2455{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002456 int i;
2457
Denis Vlasenkobd852072007-03-19 14:43:38 +00002458 printf("Calling ioctl() to re-read partition table\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002459 sync();
Denis Vlasenkobd852072007-03-19 14:43:38 +00002460 /* sleep(2); Huh? */
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +00002461 i = ioctl_or_perror(fd, BLKRRPART, NULL,
2462 "WARNING: rereading partition table "
Denis Vlasenko28703012006-12-19 20:32:02 +00002463 "failed, kernel still uses old table");
Denis Vlasenko28703012006-12-19 20:32:02 +00002464#if 0
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002465 if (dos_changed)
Rob Landleyb73451d2006-02-24 16:29:00 +00002466 printf(
Denis Vlasenkobd852072007-03-19 14:43:38 +00002467 "\nWARNING: If you have created or modified any DOS 6.x\n"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002468 "partitions, please see the fdisk manual page for additional\n"
Denis Vlasenkobd852072007-03-19 14:43:38 +00002469 "information\n");
Denis Vlasenko28703012006-12-19 20:32:02 +00002470#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002471
2472 if (leave) {
Denis Vlasenko28703012006-12-19 20:32:02 +00002473 if (ENABLE_FEATURE_CLEAN_UP)
2474 close(fd);
2475 exit(i != 0);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002476 }
2477}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002478#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002479
Denis Vlasenko834410a2006-11-29 12:00:28 +00002480#if ENABLE_FEATURE_FDISK_ADVANCED
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002481#define MAX_PER_LINE 16
2482static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002483print_buffer(char *pbuffer)
2484{
2485 int i,l;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002486
2487 for (i = 0, l = 0; i < sector_size; i++, l++) {
2488 if (l == 0)
2489 printf("0x%03X:", i);
2490 printf(" %02X", (unsigned char) pbuffer[i]);
2491 if (l == MAX_PER_LINE - 1) {
Denis Vlasenko4daad902007-09-27 10:20:47 +00002492 bb_putchar('\n');
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002493 l = -1;
2494 }
2495 }
2496 if (l > 0)
Denis Vlasenko4daad902007-09-27 10:20:47 +00002497 bb_putchar('\n');
2498 bb_putchar('\n');
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002499}
2500
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002501static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002502print_raw(void)
2503{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002504 int i;
2505
Denis Vlasenkobd852072007-03-19 14:43:38 +00002506 printf("Device: %s\n", disk_device);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002507 if (LABEL_IS_SGI || LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002508 print_buffer(MBRbuffer);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002509 else {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002510 for (i = 3; i < g_partitions; i++)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002511 print_buffer(ptes[i].sectorbuffer);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002512 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002513}
2514
2515static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002516move_begin(int i)
2517{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002518 struct pte *pe = &ptes[i];
2519 struct partition *p = pe->part_table;
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002520 ullong new, first;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002521
2522 if (warn_geometry())
2523 return;
Rob Landleyb73451d2006-02-24 16:29:00 +00002524 if (!p->sys_ind || !get_nr_sects(p) || IS_EXTENDED(p->sys_ind)) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00002525 printf("Partition %d has no data area\n", i + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002526 return;
2527 }
2528 first = get_partition_start(pe);
2529 new = read_int(first, first, first + get_nr_sects(p) - 1, first,
Denis Vlasenkobd852072007-03-19 14:43:38 +00002530 "New beginning of data") - pe->offset;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002531
2532 if (new != get_nr_sects(p)) {
2533 first = get_nr_sects(p) + get_start_sect(p) - new;
2534 set_nr_sects(p, first);
2535 set_start_sect(p, new);
2536 pe->changed = 1;
2537 }
2538}
2539
2540static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002541xselect(void)
2542{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002543 char c;
2544
Rob Landleyb73451d2006-02-24 16:29:00 +00002545 while (1) {
Denis Vlasenko4daad902007-09-27 10:20:47 +00002546 bb_putchar('\n');
Denis Vlasenkobd852072007-03-19 14:43:38 +00002547 c = tolower(read_nonempty("Expert command (m for help): "));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002548 switch (c) {
2549 case 'a':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002550 if (LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002551 sun_set_alt_cyl();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002552 break;
2553 case 'b':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002554 if (LABEL_IS_DOS)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002555 move_begin(get_partition(0, g_partitions));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002556 break;
2557 case 'c':
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002558 user_cylinders = g_cylinders =
2559 read_int(1, g_cylinders, 1048576, 0,
Denis Vlasenkobd852072007-03-19 14:43:38 +00002560 "Number of cylinders");
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002561 if (LABEL_IS_SUN)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002562 sun_set_ncyl(g_cylinders);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002563 if (LABEL_IS_DOS)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002564 warn_cylinders();
2565 break;
2566 case 'd':
2567 print_raw();
2568 break;
2569 case 'e':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002570 if (LABEL_IS_SGI)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002571 sgi_set_xcyl();
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002572 else if (LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002573 sun_set_xcyl();
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002574 else if (LABEL_IS_DOS)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002575 x_list_table(1);
2576 break;
2577 case 'f':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002578 if (LABEL_IS_DOS)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002579 fix_partition_table_order();
2580 break;
2581 case 'g':
Denis Vlasenko834410a2006-11-29 12:00:28 +00002582#if ENABLE_FEATURE_SGI_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002583 create_sgilabel();
2584#endif
2585 break;
2586 case 'h':
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002587 user_heads = g_heads = read_int(1, g_heads, 256, 0,
Denis Vlasenkobd852072007-03-19 14:43:38 +00002588 "Number of heads");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002589 update_units();
2590 break;
2591 case 'i':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002592 if (LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002593 sun_set_ilfact();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002594 break;
2595 case 'o':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002596 if (LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002597 sun_set_rspeed();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002598 break;
2599 case 'p':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002600 if (LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002601 list_table(1);
2602 else
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002603 x_list_table(0);
2604 break;
2605 case 'q':
2606 close(fd);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002607 bb_putchar('\n');
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002608 exit(0);
2609 case 'r':
2610 return;
2611 case 's':
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002612 user_sectors = g_sectors = read_int(1, g_sectors, 63, 0,
Denis Vlasenkobd852072007-03-19 14:43:38 +00002613 "Number of sectors");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002614 if (dos_compatible_flag) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002615 sector_offset = g_sectors;
Denis Vlasenkobd852072007-03-19 14:43:38 +00002616 printf("Warning: setting sector offset for DOS "
2617 "compatiblity\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002618 }
2619 update_units();
2620 break;
2621 case 'v':
2622 verify();
2623 break;
2624 case 'w':
2625 write_table(); /* does not return */
2626 break;
2627 case 'y':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002628 if (LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002629 sun_set_pcylcount();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002630 break;
2631 default:
2632 xmenu();
2633 }
2634 }
2635}
2636#endif /* ADVANCED mode */
2637
2638static int
Rob Landleyb73451d2006-02-24 16:29:00 +00002639is_ide_cdrom_or_tape(const char *device)
2640{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002641 FILE *procf;
2642 char buf[100];
2643 struct stat statbuf;
2644 int is_ide = 0;
2645
2646 /* No device was given explicitly, and we are trying some
2647 likely things. But opening /dev/hdc may produce errors like
2648 "hdc: tray open or drive not ready"
2649 if it happens to be a CD-ROM drive. It even happens that
2650 the process hangs on the attempt to read a music CD.
2651 So try to be careful. This only works since 2.1.73. */
2652
2653 if (strncmp("/dev/hd", device, 7))
2654 return 0;
2655
2656 snprintf(buf, sizeof(buf), "/proc/ide/%s/media", device+5);
2657 procf = fopen(buf, "r");
2658 if (procf != NULL && fgets(buf, sizeof(buf), procf))
2659 is_ide = (!strncmp(buf, "cdrom", 5) ||
2660 !strncmp(buf, "tape", 4));
2661 else
2662 /* Now when this proc file does not exist, skip the
2663 device when it is read-only. */
2664 if (stat(device, &statbuf) == 0)
2665 is_ide = ((statbuf.st_mode & 0222) == 0);
2666
2667 if (procf)
2668 fclose(procf);
2669 return is_ide;
2670}
2671
Rob Landley5527b912006-02-25 03:46:10 +00002672
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002673static void
Denis Vlasenkod5470832007-01-03 02:58:54 +00002674trydev(const char *device, int user_specified)
Rob Landleyb73451d2006-02-24 16:29:00 +00002675{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002676 int gb;
2677
2678 disk_device = device;
2679 if (setjmp(listingbuf))
2680 return;
2681 if (!user_specified)
2682 if (is_ide_cdrom_or_tape(device))
2683 return;
Denis Vlasenko28703012006-12-19 20:32:02 +00002684 fd = open(disk_device, type_open);
2685 if (fd >= 0) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002686 gb = get_boot(try_only);
2687 if (gb > 0) { /* I/O error */
2688 close(fd);
2689 } else if (gb < 0) { /* no DOS signature */
2690 list_disk_geometry();
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002691 if (LABEL_IS_AIX) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002692 return;
Rob Landley5527b912006-02-25 03:46:10 +00002693 }
Denis Vlasenko834410a2006-11-29 12:00:28 +00002694#if ENABLE_FEATURE_OSF_LABEL
Denis Vlasenkod5470832007-01-03 02:58:54 +00002695 if (bsd_trydev(device) < 0)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002696#endif
Denis Vlasenkobd852072007-03-19 14:43:38 +00002697 printf("Disk %s doesn't contain a valid "
2698 "partition table\n", device);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002699 close(fd);
2700 } else {
2701 close(fd);
2702 list_table(0);
Denis Vlasenko834410a2006-11-29 12:00:28 +00002703#if ENABLE_FEATURE_FDISK_WRITABLE
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002704 if (!LABEL_IS_SUN && g_partitions > 4){
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002705 delete_partition(ext_index);
Rob Landley5527b912006-02-25 03:46:10 +00002706 }
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00002707#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002708 }
2709 } else {
2710 /* Ignore other errors, since we try IDE
2711 and SCSI hard disks which may not be
2712 installed on the system. */
2713 if (errno == EACCES) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00002714 printf("Cannot open %s\n", device);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002715 return;
2716 }
2717 }
2718}
2719
2720/* for fdisk -l: try all things in /proc/partitions
2721 that look like a partition name (do not end in a digit) */
2722static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002723tryprocpt(void)
2724{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002725 FILE *procpt;
2726 char line[100], ptname[100], devname[120], *s;
2727 int ma, mi, sz;
2728
Denis Vlasenkoddec5af2006-10-26 23:25:17 +00002729 procpt = fopen_or_warn("/proc/partitions", "r");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002730
2731 while (fgets(line, sizeof(line), procpt)) {
Rob Landleyb73451d2006-02-24 16:29:00 +00002732 if (sscanf(line, " %d %d %d %[^\n ]",
2733 &ma, &mi, &sz, ptname) != 4)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002734 continue;
2735 for (s = ptname; *s; s++);
2736 if (isdigit(s[-1]))
2737 continue;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00002738 sprintf(devname, "/dev/%s", ptname);
Denis Vlasenkod5470832007-01-03 02:58:54 +00002739 trydev(devname, 0);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002740 }
Denis Vlasenko834410a2006-11-29 12:00:28 +00002741#if ENABLE_FEATURE_CLEAN_UP
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002742 fclose(procpt);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00002743#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002744}
2745
Denis Vlasenko834410a2006-11-29 12:00:28 +00002746#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002747static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002748unknown_command(int c)
2749{
Denis Vlasenkobd852072007-03-19 14:43:38 +00002750 printf("%c: unknown command\n", c);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002751}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00002752#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002753
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00002754int fdisk_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleyb73451d2006-02-24 16:29:00 +00002755int fdisk_main(int argc, char **argv)
2756{
Denis Vlasenko834410a2006-11-29 12:00:28 +00002757 unsigned opt;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002758 /*
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002759 * fdisk -v
2760 * fdisk -l [-b sectorsize] [-u] device ...
2761 * fdisk -s [partition] ...
2762 * fdisk [-b sectorsize] [-u] device
2763 *
2764 * Options -C, -H, -S set the geometry.
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002765 */
Denis Vlasenko834410a2006-11-29 12:00:28 +00002766 enum {
2767 OPT_b = 1 << 0,
2768 OPT_C = 1 << 1,
2769 OPT_H = 1 << 2,
2770 OPT_l = 1 << 3,
2771 OPT_S = 1 << 4,
2772 OPT_u = 1 << 5,
2773 OPT_s = (1 << 6) * ENABLE_FEATURE_FDISK_BLKSIZE,
2774 };
Denis Vlasenko8e1a0cc2007-03-18 14:42:45 +00002775
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002776 INIT_G();
Denis Vlasenko8e1a0cc2007-03-18 14:42:45 +00002777
Denis Vlasenko04e11c92008-02-10 19:44:20 +00002778 opt_complementary = "b+:C+:H+:S+"; /* numeric params */
Denis Vlasenkofe7cd642007-08-18 15:32:12 +00002779 opt = getopt32(argv, "b:C:H:lS:u" USE_FEATURE_FDISK_BLKSIZE("s"),
Denis Vlasenko04e11c92008-02-10 19:44:20 +00002780 &sector_size, &user_cylinders, &user_heads, &user_sectors);
Denis Vlasenko834410a2006-11-29 12:00:28 +00002781 argc -= optind;
2782 argv += optind;
2783 if (opt & OPT_b) { // -b
2784 /* Ugly: this sector size is really per device,
2785 so cannot be combined with multiple disks,
2786 and the same goes for the C/H/S options.
2787 */
Denis Vlasenko04e11c92008-02-10 19:44:20 +00002788 if (sector_size != 512 && sector_size != 1024
2789 && sector_size != 2048)
Manuel Novoa III cad53642003-03-19 09:13:01 +00002790 bb_show_usage();
Denis Vlasenko834410a2006-11-29 12:00:28 +00002791 sector_offset = 2;
2792 user_set_sector_size = 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002793 }
Denis Vlasenko04e11c92008-02-10 19:44:20 +00002794 if (user_heads <= 0 || user_heads >= 256)
2795 user_heads = 0;
2796 if (user_sectors <= 0 || user_sectors >= 64)
2797 user_sectors = 0;
2798 if (opt & OPT_u)
2799 display_in_cyl_units = 0; // -u
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002800
Denis Vlasenko834410a2006-11-29 12:00:28 +00002801 if (user_set_sector_size && argc != 1)
Denis Vlasenkobd852072007-03-19 14:43:38 +00002802 printf("Warning: the -b (set sector size) option should"
2803 " be used with one specified device\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002804
Denis Vlasenko834410a2006-11-29 12:00:28 +00002805#if ENABLE_FEATURE_FDISK_WRITABLE
2806 if (opt & OPT_l) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002807 nowarn = 1;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00002808#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002809 type_open = O_RDONLY;
Denis Vlasenko834410a2006-11-29 12:00:28 +00002810 if (argc > 0) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002811 int k;
Denis Vlasenko28703012006-12-19 20:32:02 +00002812#if defined(__GNUC__)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002813 /* avoid gcc warning:
2814 variable `k' might be clobbered by `longjmp' */
2815 (void)&k;
2816#endif
2817 listing = 1;
Denis Vlasenko834410a2006-11-29 12:00:28 +00002818 for (k = 0; k < argc; k++)
Denis Vlasenkod5470832007-01-03 02:58:54 +00002819 trydev(argv[k], 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002820 } else {
2821 /* we no longer have default device names */
2822 /* but, we can use /proc/partitions instead */
2823 tryprocpt();
2824 }
2825 return 0;
Denis Vlasenko834410a2006-11-29 12:00:28 +00002826#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002827 }
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00002828#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002829
Denis Vlasenko834410a2006-11-29 12:00:28 +00002830#if ENABLE_FEATURE_FDISK_BLKSIZE
2831 if (opt & OPT_s) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002832 long size;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00002833 int j;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002834
2835 nowarn = 1;
2836 type_open = O_RDONLY;
2837
Denis Vlasenko834410a2006-11-29 12:00:28 +00002838 if (argc <= 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +00002839 bb_show_usage();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002840
Denis Vlasenko834410a2006-11-29 12:00:28 +00002841 for (j = 0; j < argc; j++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002842 disk_device = argv[j];
Denis Vlasenko834410a2006-11-29 12:00:28 +00002843 fd = open(disk_device, type_open);
2844 if (fd < 0)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002845 fdisk_fatal(unable_to_open);
2846 if (ioctl(fd, BLKGETSIZE, &size))
2847 fdisk_fatal(ioctl_error);
2848 close(fd);
Denis Vlasenko834410a2006-11-29 12:00:28 +00002849 if (argc == 1)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002850 printf("%ld\n", size/2);
2851 else
2852 printf("%s: %ld\n", argv[j], size/2);
2853 }
2854 return 0;
2855 }
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00002856#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002857
Denis Vlasenko834410a2006-11-29 12:00:28 +00002858#if ENABLE_FEATURE_FDISK_WRITABLE
2859 if (argc != 1)
Manuel Novoa III cad53642003-03-19 09:13:01 +00002860 bb_show_usage();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002861
Denis Vlasenko834410a2006-11-29 12:00:28 +00002862 disk_device = argv[0];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002863 get_boot(fdisk);
2864
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002865 if (LABEL_IS_OSF) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002866 /* OSF label, and no DOS label */
Denis Vlasenkobd852072007-03-19 14:43:38 +00002867 printf("Detected an OSF/1 disklabel on %s, entering "
2868 "disklabel mode\n", disk_device);
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +00002869 bsd_select();
Rob Landley5527b912006-02-25 03:46:10 +00002870 /*Why do we do this? It seems to be counter-intuitive*/
2871 current_label_type = label_dos;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002872 /* If we return we may want to make an empty DOS label? */
2873 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002874
2875 while (1) {
Denis Vlasenko3bba5452006-12-30 17:57:03 +00002876 int c;
Denis Vlasenko4daad902007-09-27 10:20:47 +00002877 bb_putchar('\n');
Denis Vlasenkobd852072007-03-19 14:43:38 +00002878 c = tolower(read_nonempty("Command (m for help): "));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002879 switch (c) {
2880 case 'a':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002881 if (LABEL_IS_DOS)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002882 toggle_active(get_partition(1, g_partitions));
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002883 else if (LABEL_IS_SUN)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002884 toggle_sunflags(get_partition(1, g_partitions),
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002885 0x01);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002886 else if (LABEL_IS_SGI)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002887 sgi_set_bootpartition(
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002888 get_partition(1, g_partitions));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002889 else
2890 unknown_command(c);
2891 break;
2892 case 'b':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002893 if (LABEL_IS_SGI) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00002894 printf("\nThe current boot file is: %s\n",
Rob Landleyb73451d2006-02-24 16:29:00 +00002895 sgi_get_bootfile());
Denis Vlasenkobd852072007-03-19 14:43:38 +00002896 if (read_maybe_empty("Please enter the name of the "
2897 "new boot file: ") == '\n')
2898 printf("Boot file unchanged\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002899 else
2900 sgi_set_bootfile(line_ptr);
Denis Vlasenko834410a2006-11-29 12:00:28 +00002901 }
2902#if ENABLE_FEATURE_OSF_LABEL
2903 else
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +00002904 bsd_select();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002905#endif
2906 break;
2907 case 'c':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002908 if (LABEL_IS_DOS)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002909 toggle_dos_compatibility_flag();
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002910 else if (LABEL_IS_SUN)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002911 toggle_sunflags(get_partition(1, g_partitions),
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002912 0x10);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002913 else if (LABEL_IS_SGI)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002914 sgi_set_swappartition(
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002915 get_partition(1, g_partitions));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002916 else
2917 unknown_command(c);
2918 break;
2919 case 'd':
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00002920 {
Eric Andersen040f4402003-07-30 08:40:37 +00002921 int j;
Eric Andersen040f4402003-07-30 08:40:37 +00002922 /* If sgi_label then don't use get_existing_partition,
2923 let the user select a partition, since
2924 get_existing_partition() only works for Linux-like
2925 partition tables */
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002926 if (!LABEL_IS_SGI) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002927 j = get_existing_partition(1, g_partitions);
Eric Andersen040f4402003-07-30 08:40:37 +00002928 } else {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002929 j = get_partition(1, g_partitions);
Eric Andersen040f4402003-07-30 08:40:37 +00002930 }
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00002931 if (j >= 0)
2932 delete_partition(j);
2933 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002934 break;
2935 case 'i':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002936 if (LABEL_IS_SGI)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002937 create_sgiinfo();
2938 else
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002939 unknown_command(c);
2940 case 'l':
2941 list_types(get_sys_types());
2942 break;
2943 case 'm':
2944 menu();
2945 break;
2946 case 'n':
2947 new_partition();
2948 break;
2949 case 'o':
2950 create_doslabel();
2951 break;
2952 case 'p':
2953 list_table(0);
2954 break;
2955 case 'q':
2956 close(fd);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002957 bb_putchar('\n');
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002958 return 0;
2959 case 's':
Denis Vlasenko834410a2006-11-29 12:00:28 +00002960#if ENABLE_FEATURE_SUN_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002961 create_sunlabel();
2962#endif
2963 break;
2964 case 't':
2965 change_sysid();
2966 break;
2967 case 'u':
2968 change_units();
2969 break;
2970 case 'v':
2971 verify();
2972 break;
2973 case 'w':
2974 write_table(); /* does not return */
2975 break;
Denis Vlasenko834410a2006-11-29 12:00:28 +00002976#if ENABLE_FEATURE_FDISK_ADVANCED
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002977 case 'x':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002978 if (LABEL_IS_SGI) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00002979 printf("\n\tSorry, no experts menu for SGI "
2980 "partition tables available\n\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002981 } else
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002982 xselect();
2983 break;
2984#endif
2985 default:
2986 unknown_command(c);
2987 menu();
2988 }
2989 }
2990 return 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002991#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002992}