blob: 20e7d56fa8fabcd429d83cb99a8194e8e887d1ac [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Denys Vlasenko2ab94032017-10-05 15:33:28 +02002/*
3 * fdisk.c -- Partition table manipulator for Linux.
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00004 *
5 * Copyright (C) 1992 A. V. Le Blanc (LeBlanc@mcc.ac.uk)
Mike Frysinger983e0ca2006-02-25 07:42:02 +00006 * Copyright (C) 2001,2002 Vladimir Oleynik <dzo@simtreas.ru> (initial bb port)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00007 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02008 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00009 */
Denys Vlasenkodd898c92016-11-23 11:46:32 +010010//config:config FDISK
Denys Vlasenkob097a842018-12-28 03:20:17 +010011//config: bool "fdisk (37 kb)"
Denys Vlasenkodd898c92016-11-23 11:46:32 +010012//config: default y
Denys Vlasenkodd898c92016-11-23 11:46:32 +010013//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020014//config: The fdisk utility is used to divide hard disks into one or more
15//config: logical disks, which are generally called partitions. This utility
16//config: can be used to list and edit the set of partitions or BSD style
17//config: 'disk slices' that are defined on a hard drive.
Denys Vlasenkodd898c92016-11-23 11:46:32 +010018//config:
19//config:config FDISK_SUPPORT_LARGE_DISKS
20//config: bool "Support over 4GB disks"
21//config: default y
22//config: depends on FDISK
23//config: depends on !LFS # with LFS no special code is needed
Denys Vlasenkodd898c92016-11-23 11:46:32 +010024//config:
25//config:config FEATURE_FDISK_WRITABLE
26//config: bool "Write support"
27//config: default y
28//config: depends on FDISK
29//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020030//config: Enabling this option allows you to create or change a partition table
31//config: and write those changes out to disk. If you leave this option
32//config: disabled, you will only be able to view the partition table.
Denys Vlasenkodd898c92016-11-23 11:46:32 +010033//config:
34//config:config FEATURE_AIX_LABEL
35//config: bool "Support AIX disklabels"
36//config: default n
37//config: depends on FDISK && FEATURE_FDISK_WRITABLE
38//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020039//config: Enabling this option allows you to create or change AIX disklabels.
40//config: Most people can safely leave this option disabled.
Denys Vlasenkodd898c92016-11-23 11:46:32 +010041//config:
42//config:config FEATURE_SGI_LABEL
43//config: bool "Support SGI disklabels"
44//config: default n
45//config: depends on FDISK && FEATURE_FDISK_WRITABLE
46//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020047//config: Enabling this option allows you to create or change SGI disklabels.
48//config: Most people can safely leave this option disabled.
Denys Vlasenkodd898c92016-11-23 11:46:32 +010049//config:
50//config:config FEATURE_SUN_LABEL
51//config: bool "Support SUN disklabels"
52//config: default n
53//config: depends on FDISK && FEATURE_FDISK_WRITABLE
54//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020055//config: Enabling this option allows you to create or change SUN disklabels.
56//config: Most people can safely leave this option disabled.
Denys Vlasenkodd898c92016-11-23 11:46:32 +010057//config:
58//config:config FEATURE_OSF_LABEL
59//config: bool "Support BSD disklabels"
60//config: default n
61//config: depends on FDISK && FEATURE_FDISK_WRITABLE
62//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020063//config: Enabling this option allows you to create or change BSD disklabels
64//config: and define and edit BSD disk slices.
Denys Vlasenkodd898c92016-11-23 11:46:32 +010065//config:
66//config:config FEATURE_GPT_LABEL
67//config: bool "Support GPT disklabels"
68//config: default n
69//config: depends on FDISK && FEATURE_FDISK_WRITABLE
70//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020071//config: Enabling this option allows you to view GUID Partition Table
72//config: disklabels.
Denys Vlasenkodd898c92016-11-23 11:46:32 +010073//config:
74//config:config FEATURE_FDISK_ADVANCED
75//config: bool "Support expert mode"
76//config: default y
77//config: depends on FDISK && FEATURE_FDISK_WRITABLE
78//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020079//config: Enabling this option allows you to do terribly unsafe things like
80//config: define arbitrary drive geometry, move the beginning of data in a
81//config: partition, and similarly evil things. Unless you have a very good
82//config: reason you would be wise to leave this disabled.
Denys Vlasenkodd898c92016-11-23 11:46:32 +010083
84//applet:IF_FDISK(APPLET(fdisk, BB_DIR_SBIN, BB_SUID_DROP))
85
86//kbuild:lib-$(CONFIG_FDISK) += fdisk.o
Glenn L McGrath441e7ef2002-11-26 22:00:21 +000087
Pere Orga5bc8c002011-04-11 03:29:49 +020088/* Looks like someone forgot to add this to config system */
89//usage:#ifndef ENABLE_FEATURE_FDISK_BLKSIZE
90//usage:# define ENABLE_FEATURE_FDISK_BLKSIZE 0
91//usage:# define IF_FEATURE_FDISK_BLKSIZE(a)
92//usage:#endif
93//usage:
94//usage:#define fdisk_trivial_usage
95//usage: "[-ul" IF_FEATURE_FDISK_BLKSIZE("s") "] "
96//usage: "[-C CYLINDERS] [-H HEADS] [-S SECTORS] [-b SSZ] DISK"
97//usage:#define fdisk_full_usage "\n\n"
98//usage: "Change partition table\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020099//usage: "\n -u Start and End are in sectors (instead of cylinders)"
100//usage: "\n -l Show partition table for each DISK, then exit"
101//usage: IF_FEATURE_FDISK_BLKSIZE(
102//usage: "\n -s Show partition sizes in kb for each DISK, then exit"
103//usage: )
104//usage: "\n -b 2048 (for certain MO disks) use 2048-byte sectors"
105//usage: "\n -C CYLINDERS Set number of cylinders/heads/sectors"
Denys Vlasenko704c6062017-01-19 14:29:42 +0100106//usage: "\n -H HEADS Typically 255"
107//usage: "\n -S SECTORS Typically 63"
Pere Orga5bc8c002011-04-11 03:29:49 +0200108
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +0000109#ifndef _LARGEFILE64_SOURCE
110/* For lseek64 */
Denys Vlasenkoaf3fd142009-09-22 23:16:39 +0200111# define _LARGEFILE64_SOURCE
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +0000112#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000113#include <assert.h> /* assert */
Denys Vlasenkoda49f582009-07-08 02:58:38 +0200114#include <sys/mount.h>
115#if !defined(BLKSSZGET)
116# define BLKSSZGET _IO(0x12, 104)
117#endif
Denys Vlasenkoaf3fd142009-09-22 23:16:39 +0200118#if !defined(BLKGETSIZE64)
119# define BLKGETSIZE64 _IOR(0x12,114,size_t)
120#endif
Denis Vlasenkob6adbf12007-05-26 19:00:18 +0000121#include "libbb.h"
Denys Vlasenko29516ac2016-11-27 06:13:43 +0100122#include "unicode.h"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000123
Denys Vlasenko5ea1de22010-04-06 02:31:43 +0200124#if BB_LITTLE_ENDIAN
125# define inline_if_little_endian ALWAYS_INLINE
126#else
127# define inline_if_little_endian /* nothing */
128#endif
129
130
Denis Vlasenko834410a2006-11-29 12:00:28 +0000131/* Looks like someone forgot to add this to config system */
132#ifndef ENABLE_FEATURE_FDISK_BLKSIZE
133# define ENABLE_FEATURE_FDISK_BLKSIZE 0
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000134# define IF_FEATURE_FDISK_BLKSIZE(a)
Denis Vlasenko834410a2006-11-29 12:00:28 +0000135#endif
136
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +0000137#define DEFAULT_SECTOR_SIZE 512
138#define DEFAULT_SECTOR_SIZE_STR "512"
139#define MAX_SECTOR_SIZE 2048
140#define SECTOR_SIZE 512 /* still used in osf/sgi/sun code */
141#define MAXIMUM_PARTS 60
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000142
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +0000143#define ACTIVE_FLAG 0x80
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000144
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +0000145#define EXTENDED 0x05
146#define WIN98_EXTENDED 0x0f
147#define LINUX_PARTITION 0x81
148#define LINUX_SWAP 0x82
149#define LINUX_NATIVE 0x83
150#define LINUX_EXTENDED 0x85
151#define LINUX_LVM 0x8e
152#define LINUX_RAID 0xfd
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000153
Denis Vlasenkoc033d512008-04-17 01:52:28 +0000154
155enum {
156 OPT_b = 1 << 0,
157 OPT_C = 1 << 1,
158 OPT_H = 1 << 2,
159 OPT_l = 1 << 3,
160 OPT_S = 1 << 4,
161 OPT_u = 1 << 5,
162 OPT_s = (1 << 6) * ENABLE_FEATURE_FDISK_BLKSIZE,
163};
164
165
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +0000166typedef unsigned long long ullong;
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200167/* Used for sector numbers. Partition formats we know
168 * do not support more than 2^32 sectors
169 */
170typedef uint32_t sector_t;
Denys Vlasenko163e6372018-07-25 12:08:26 +0200171#if UINT_MAX == 0xffffffff
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200172# define SECT_FMT ""
Denys Vlasenko163e6372018-07-25 12:08:26 +0200173#elif ULONG_MAX == 0xffffffff
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200174# define SECT_FMT "l"
175#else
176# error Cant detect sizeof(uint32_t)
177#endif
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +0000178
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000179struct hd_geometry {
Rob Landleyb73451d2006-02-24 16:29:00 +0000180 unsigned char heads;
181 unsigned char sectors;
182 unsigned short cylinders;
183 unsigned long start;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000184};
185
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000186#define HDIO_GETGEO 0x0301 /* get device geometry */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000187
Denys Vlasenko77a51a22020-12-29 16:53:11 +0100188/* TODO: just #if ENABLE_FEATURE_FDISK_WRITABLE */
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +0200189/* (currently fdisk_sun/sgi.c do not have proper WRITABLE #ifs) */
Denys Vlasenko77a51a22020-12-29 16:53:11 +0100190#if ENABLE_FEATURE_FDISK_WRITABLE \
191 || ENABLE_FEATURE_SGI_LABEL \
192 || ENABLE_FEATURE_SUN_LABEL
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000193static const char msg_building_new_label[] ALIGN1 =
Denis Vlasenkobd852072007-03-19 14:43:38 +0000194"Building a new %s. Changes will remain in memory only,\n"
195"until you decide to write them. After that the previous content\n"
196"won't be recoverable.\n\n";
197
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000198static const char msg_part_already_defined[] ALIGN1 =
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200199"Partition %u is already defined, delete it before re-adding\n";
Denys Vlasenko77a51a22020-12-29 16:53:11 +0100200#endif
Denis Vlasenkobd852072007-03-19 14:43:38 +0000201
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000202
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000203struct partition {
204 unsigned char boot_ind; /* 0x80 - active */
205 unsigned char head; /* starting head */
206 unsigned char sector; /* starting sector */
207 unsigned char cyl; /* starting cylinder */
Denis Vlasenko9764d692008-07-09 21:20:50 +0000208 unsigned char sys_ind; /* what partition type */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000209 unsigned char end_head; /* end head */
210 unsigned char end_sector; /* end sector */
211 unsigned char end_cyl; /* end cylinder */
212 unsigned char start4[4]; /* starting sector counting from 0 */
213 unsigned char size4[4]; /* nr of sectors in partition */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000214} PACKED;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000215
Kevin Cernekeeccb07042010-10-25 02:00:24 +0200216/*
217 * per partition table entry data
218 *
219 * The four primary partitions have the same sectorbuffer (MBRbuffer)
220 * and have NULL ext_pointer.
221 * Each logical partition table entry has two pointers, one for the
222 * partition and one link to the next one.
223 */
224struct pte {
225 struct partition *part_table; /* points into sectorbuffer */
226 struct partition *ext_pointer; /* points into sectorbuffer */
227 sector_t offset_from_dev_start; /* disk sector number */
228 char *sectorbuffer; /* disk sector contents */
229#if ENABLE_FEATURE_FDISK_WRITABLE
230 char changed; /* boolean */
231#endif
232};
233
Denys Vlasenkoea8b2522010-06-02 12:57:26 +0200234#define unable_to_open "can't open '%s'"
Denys Vlasenko53e5c592021-06-25 01:14:43 +0200235#define unable_to_read "can't read '%s'"
236#define unable_to_seek "can't seek '%s'"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000237
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000238enum label_type {
Kevin Cernekeeccb07042010-10-25 02:00:24 +0200239 LABEL_DOS, LABEL_SUN, LABEL_SGI, LABEL_AIX, LABEL_OSF, LABEL_GPT
Rob Landley5527b912006-02-25 03:46:10 +0000240};
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000241
Denis Vlasenko4437d192008-04-17 00:12:10 +0000242#define LABEL_IS_DOS (LABEL_DOS == current_label_type)
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000243
Denis Vlasenko834410a2006-11-29 12:00:28 +0000244#if ENABLE_FEATURE_SUN_LABEL
Denis Vlasenko4437d192008-04-17 00:12:10 +0000245#define LABEL_IS_SUN (LABEL_SUN == current_label_type)
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000246#define STATIC_SUN static
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000247#else
248#define LABEL_IS_SUN 0
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000249#define STATIC_SUN extern
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000250#endif
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000251
Denis Vlasenko834410a2006-11-29 12:00:28 +0000252#if ENABLE_FEATURE_SGI_LABEL
Denis Vlasenko4437d192008-04-17 00:12:10 +0000253#define LABEL_IS_SGI (LABEL_SGI == current_label_type)
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000254#define STATIC_SGI static
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000255#else
256#define LABEL_IS_SGI 0
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000257#define STATIC_SGI extern
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000258#endif
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000259
Denis Vlasenko834410a2006-11-29 12:00:28 +0000260#if ENABLE_FEATURE_AIX_LABEL
Denis Vlasenko4437d192008-04-17 00:12:10 +0000261#define LABEL_IS_AIX (LABEL_AIX == current_label_type)
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000262#define STATIC_AIX static
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000263#else
264#define LABEL_IS_AIX 0
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000265#define STATIC_AIX extern
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000266#endif
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000267
Denis Vlasenko834410a2006-11-29 12:00:28 +0000268#if ENABLE_FEATURE_OSF_LABEL
Denis Vlasenko4437d192008-04-17 00:12:10 +0000269#define LABEL_IS_OSF (LABEL_OSF == current_label_type)
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000270#define STATIC_OSF static
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000271#else
272#define LABEL_IS_OSF 0
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000273#define STATIC_OSF extern
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000274#endif
Rob Landley5527b912006-02-25 03:46:10 +0000275
Kevin Cernekeeccb07042010-10-25 02:00:24 +0200276#if ENABLE_FEATURE_GPT_LABEL
277#define LABEL_IS_GPT (LABEL_GPT == current_label_type)
278#define STATIC_GPT static
279#else
280#define LABEL_IS_GPT 0
281#define STATIC_GPT extern
282#endif
283
Denis Vlasenko4437d192008-04-17 00:12:10 +0000284enum action { OPEN_MAIN, TRY_ONLY, CREATE_EMPTY_DOS, CREATE_EMPTY_SUN };
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000285
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000286static void update_units(void);
Denis Vlasenko834410a2006-11-29 12:00:28 +0000287#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000288static void change_units(void);
Denys Vlasenkob347df92011-08-09 22:49:15 +0200289static void reread_partition_table(int leave);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000290static void delete_partition(int i);
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200291static unsigned get_partition(int warn, unsigned max);
Denis Vlasenkobd852072007-03-19 14:43:38 +0000292static void list_types(const char *const *sys);
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200293static sector_t read_int(sector_t low, sector_t dflt, sector_t high, sector_t base, const char *mesg);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000294#endif
295static const char *partition_type(unsigned char type);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000296static void get_geometry(void);
Kevin Cernekeeccb07042010-10-25 02:00:24 +0200297static void read_pte(struct pte *pe, sector_t offset);
Denis Vlasenko85c24712008-03-17 09:04:04 +0000298#if ENABLE_FEATURE_SUN_LABEL || ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000299static int get_boot(enum action what);
Denis Vlasenko85c24712008-03-17 09:04:04 +0000300#else
301static int get_boot(void);
302#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000303
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200304static sector_t get_start_sect(const struct partition *p);
305static sector_t get_nr_sects(const struct partition *p);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000306
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000307/* DOS partition types */
308
Denys Vlasenko965b7952020-11-30 13:03:03 +0100309static const char *const i386_sys_types[] ALIGN_PTR = {
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000310 "\x00" "Empty",
311 "\x01" "FAT12",
312 "\x04" "FAT16 <32M",
313 "\x05" "Extended", /* DOS 3.3+ extended partition */
314 "\x06" "FAT16", /* DOS 16-bit >=32M */
315 "\x07" "HPFS/NTFS", /* OS/2 IFS, eg, HPFS or NTFS or QNX */
316 "\x0a" "OS/2 Boot Manager",/* OS/2 Boot Manager */
317 "\x0b" "Win95 FAT32",
318 "\x0c" "Win95 FAT32 (LBA)",/* LBA really is 'Extended Int 13h' */
319 "\x0e" "Win95 FAT16 (LBA)",
320 "\x0f" "Win95 Ext'd (LBA)",
321 "\x11" "Hidden FAT12",
322 "\x12" "Compaq diagnostics",
323 "\x14" "Hidden FAT16 <32M",
324 "\x16" "Hidden FAT16",
325 "\x17" "Hidden HPFS/NTFS",
326 "\x1b" "Hidden Win95 FAT32",
327 "\x1c" "Hidden W95 FAT32 (LBA)",
328 "\x1e" "Hidden W95 FAT16 (LBA)",
329 "\x3c" "Part.Magic recovery",
330 "\x41" "PPC PReP Boot",
331 "\x42" "SFS",
332 "\x63" "GNU HURD or SysV", /* GNU HURD or Mach or Sys V/386 (such as ISC UNIX) */
333 "\x80" "Old Minix", /* Minix 1.4a and earlier */
334 "\x81" "Minix / old Linux",/* Minix 1.4b and later */
335 "\x82" "Linux swap", /* also Solaris */
336 "\x83" "Linux",
337 "\x84" "OS/2 hidden C: drive",
338 "\x85" "Linux extended",
339 "\x86" "NTFS volume set",
340 "\x87" "NTFS volume set",
341 "\x8e" "Linux LVM",
342 "\x9f" "BSD/OS", /* BSDI */
343 "\xa0" "Thinkpad hibernation",
344 "\xa5" "FreeBSD", /* various BSD flavours */
345 "\xa6" "OpenBSD",
346 "\xa8" "Darwin UFS",
347 "\xa9" "NetBSD",
348 "\xab" "Darwin boot",
Denys Vlasenkoa6e48de2020-02-14 13:57:41 +0100349 "\xaf" "HFS / HFS+",
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000350 "\xb7" "BSDI fs",
351 "\xb8" "BSDI swap",
352 "\xbe" "Solaris boot",
353 "\xeb" "BeOS fs",
354 "\xee" "EFI GPT", /* Intel EFI GUID Partition Table */
355 "\xef" "EFI (FAT-12/16/32)", /* Intel EFI System Partition */
356 "\xf0" "Linux/PA-RISC boot", /* Linux/PA-RISC boot loader */
357 "\xf2" "DOS secondary", /* DOS 3.3+ secondary */
Vincent Stehléa93668c2021-12-13 10:07:18 +0100358 "\xf8" "EBBR protective", /* Arm EBBR firmware protective partition */
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000359 "\xfd" "Linux raid autodetect", /* New (2.2.x) raid partition with
360 autodetect using persistent
361 superblock */
362#if 0 /* ENABLE_WEIRD_PARTITION_TYPES */
363 "\x02" "XENIX root",
364 "\x03" "XENIX usr",
365 "\x08" "AIX", /* AIX boot (AIX -- PS/2 port) or SplitDrive */
366 "\x09" "AIX bootable", /* AIX data or Coherent */
367 "\x10" "OPUS",
368 "\x18" "AST SmartSleep",
369 "\x24" "NEC DOS",
370 "\x39" "Plan 9",
371 "\x40" "Venix 80286",
372 "\x4d" "QNX4.x",
373 "\x4e" "QNX4.x 2nd part",
374 "\x4f" "QNX4.x 3rd part",
375 "\x50" "OnTrack DM",
376 "\x51" "OnTrack DM6 Aux1", /* (or Novell) */
377 "\x52" "CP/M", /* CP/M or Microport SysV/AT */
378 "\x53" "OnTrack DM6 Aux3",
379 "\x54" "OnTrackDM6",
380 "\x55" "EZ-Drive",
381 "\x56" "Golden Bow",
382 "\x5c" "Priam Edisk",
383 "\x61" "SpeedStor",
384 "\x64" "Novell Netware 286",
385 "\x65" "Novell Netware 386",
386 "\x70" "DiskSecure Multi-Boot",
387 "\x75" "PC/IX",
388 "\x93" "Amoeba",
389 "\x94" "Amoeba BBT", /* (bad block table) */
390 "\xa7" "NeXTSTEP",
391 "\xbb" "Boot Wizard hidden",
392 "\xc1" "DRDOS/sec (FAT-12)",
393 "\xc4" "DRDOS/sec (FAT-16 < 32M)",
394 "\xc6" "DRDOS/sec (FAT-16)",
395 "\xc7" "Syrinx",
396 "\xda" "Non-FS data",
Denys Vlasenkoa6e48de2020-02-14 13:57:41 +0100397 "\xdb" "CP/M / CTOS / ...",/* CP/M or Concurrent CP/M or Concurrent DOS or CTOS */
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000398 "\xde" "Dell Utility", /* Dell PowerEdge Server utilities */
399 "\xdf" "BootIt", /* BootIt EMBRM */
Denys Vlasenkoa6e48de2020-02-14 13:57:41 +0100400 "\xe1" "DOS access", /* DOS access or SpeedStor 12-bit FAT extended partition */
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000401 "\xe3" "DOS R/O", /* DOS R/O or SpeedStor */
Denys Vlasenkoa6e48de2020-02-14 13:57:41 +0100402 "\xe4" "SpeedStor", /* SpeedStor 16-bit FAT extended partition <1024 cyl. */
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000403 "\xf1" "SpeedStor",
404 "\xf4" "SpeedStor", /* SpeedStor large partition */
405 "\xfe" "LANstep", /* SpeedStor >1024 cyl. or LANstep */
406 "\xff" "BBT", /* Xenix Bad Block Table */
407#endif
408 NULL
409};
410
Denis Vlasenko4437d192008-04-17 00:12:10 +0000411enum {
412 dev_fd = 3 /* the disk */
413};
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000414
415/* Globals */
Denis Vlasenko8e1a0cc2007-03-18 14:42:45 +0000416struct globals {
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000417 char *line_ptr;
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000418
419 const char *disk_device;
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000420 int g_partitions; // = 4; /* maximum partition + 1 */
421 unsigned units_per_sector; // = 1;
422 unsigned sector_size; // = DEFAULT_SECTOR_SIZE;
423 unsigned user_set_sector_size;
424 unsigned sector_offset; // = 1;
425 unsigned g_heads, g_sectors, g_cylinders;
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +0000426 smallint /* enum label_type */ current_label_type;
Denys Vlasenkoc1045492018-07-25 13:45:36 +0200427 smallint display_in_cyl_units;
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000428#if ENABLE_FEATURE_OSF_LABEL
429 smallint possibly_osf_label;
430#endif
431
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +0000432 smallint listing; /* no aborts for fdisk -l */
433 smallint dos_compatible_flag; // = 1;
434#if ENABLE_FEATURE_FDISK_WRITABLE
435 //int dos_changed;
436 smallint nowarn; /* no warnings for fdisk -l/-s */
437#endif
438 int ext_index; /* the prime extended partition */
439 unsigned user_cylinders, user_heads, user_sectors;
440 unsigned pt_heads, pt_sectors;
441 unsigned kern_heads, kern_sectors;
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200442 sector_t extended_offset; /* offset of link pointers */
443 sector_t total_number_of_sectors;
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +0000444
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000445 jmp_buf listingbuf;
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000446 char line_buffer[80];
Denis Vlasenko8e1a0cc2007-03-18 14:42:45 +0000447 /* Raw disk label. For DOS-type partition tables the MBR,
448 * with descriptions of the primary partitions. */
449 char MBRbuffer[MAX_SECTOR_SIZE];
450 /* Partition tables */
451 struct pte ptes[MAXIMUM_PARTS];
452};
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000453#define G (*ptr_to_globals)
Denis Vlasenko270d5d72008-06-29 05:16:45 +0000454#define line_ptr (G.line_ptr )
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000455#define disk_device (G.disk_device )
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000456#define g_partitions (G.g_partitions )
457#define units_per_sector (G.units_per_sector )
458#define sector_size (G.sector_size )
459#define user_set_sector_size (G.user_set_sector_size)
460#define sector_offset (G.sector_offset )
461#define g_heads (G.g_heads )
462#define g_sectors (G.g_sectors )
463#define g_cylinders (G.g_cylinders )
464#define current_label_type (G.current_label_type )
465#define display_in_cyl_units (G.display_in_cyl_units)
466#define possibly_osf_label (G.possibly_osf_label )
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +0000467#define listing (G.listing )
468#define dos_compatible_flag (G.dos_compatible_flag )
469#define nowarn (G.nowarn )
470#define ext_index (G.ext_index )
471#define user_cylinders (G.user_cylinders )
472#define user_heads (G.user_heads )
473#define user_sectors (G.user_sectors )
474#define pt_heads (G.pt_heads )
475#define pt_sectors (G.pt_sectors )
476#define kern_heads (G.kern_heads )
477#define kern_sectors (G.kern_sectors )
478#define extended_offset (G.extended_offset )
479#define total_number_of_sectors (G.total_number_of_sectors)
Denis Vlasenko270d5d72008-06-29 05:16:45 +0000480#define listingbuf (G.listingbuf )
481#define line_buffer (G.line_buffer )
Denis Vlasenko270d5d72008-06-29 05:16:45 +0000482#define MBRbuffer (G.MBRbuffer )
483#define ptes (G.ptes )
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000484#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000485 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000486 sector_size = DEFAULT_SECTOR_SIZE; \
487 sector_offset = 1; \
488 g_partitions = 4; \
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000489 units_per_sector = 1; \
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +0000490 dos_compatible_flag = 1; \
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000491} while (0)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000492
Denis Vlasenkobd852072007-03-19 14:43:38 +0000493
Denis Vlasenkocdf62772008-03-17 08:42:43 +0000494/* TODO: move to libbb? */
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200495/* TODO: return unsigned long long, FEATURE_FDISK_BLKSIZE _can_ handle
496 * disks > 2^32 sectors
497 */
498static sector_t bb_BLKGETSIZE_sectors(int fd)
Denis Vlasenkocdf62772008-03-17 08:42:43 +0000499{
500 uint64_t v64;
501 unsigned long longsectors;
502
503 if (ioctl(fd, BLKGETSIZE64, &v64) == 0) {
Denis Vlasenko270d5d72008-06-29 05:16:45 +0000504 /* Got bytes, convert to 512 byte sectors */
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200505 v64 >>= 9;
506 if (v64 != (sector_t)v64) {
507 ret_trunc:
508 /* Not only DOS, but all other partition tables
509 * we support can't record more than 32 bit
510 * sector counts or offsets
511 */
James Byrne69374872019-07-02 11:35:03 +0200512 bb_simple_error_msg("device has more than 2^32 sectors, can't use all of them");
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200513 v64 = (uint32_t)-1L;
514 }
515 return v64;
Denis Vlasenkocdf62772008-03-17 08:42:43 +0000516 }
517 /* Needs temp of type long */
Denys Vlasenkod958e902010-04-06 02:32:26 +0200518 if (ioctl(fd, BLKGETSIZE, &longsectors)) {
519 /* Perhaps this is a disk image */
520 off_t sz = lseek(fd, 0, SEEK_END);
Denis Vlasenkocdf62772008-03-17 08:42:43 +0000521 longsectors = 0;
Denys Vlasenkod958e902010-04-06 02:32:26 +0200522 if (sz > 0)
523 longsectors = (uoff_t)sz / sector_size;
524 lseek(fd, 0, SEEK_SET);
525 }
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200526 if (sizeof(long) > sizeof(sector_t)
527 && longsectors != (sector_t)longsectors
528 ) {
529 goto ret_trunc;
530 }
Denis Vlasenkocdf62772008-03-17 08:42:43 +0000531 return longsectors;
532}
533
534
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000535#define IS_EXTENDED(i) \
536 ((i) == EXTENDED || (i) == WIN98_EXTENDED || (i) == LINUX_EXTENDED)
537
538#define cround(n) (display_in_cyl_units ? ((n)/units_per_sector)+1 : (n))
539
540#define scround(x) (((x)+units_per_sector-1)/units_per_sector)
541
542#define pt_offset(b, n) \
543 ((struct partition *)((b) + 0x1be + (n) * sizeof(struct partition)))
544
545#define sector(s) ((s) & 0x3f)
546
547#define cylinder(s, c) ((c) | (((s) & 0xc0) << 2))
548
Denis Vlasenkoc033d512008-04-17 01:52:28 +0000549static void
550close_dev_fd(void)
551{
552 /* Not really closing, but making sure it is open, and to harmless place */
553 xmove_fd(xopen(bb_dev_null, O_RDONLY), dev_fd);
554}
555
Denys Vlasenkob157eb12016-09-17 21:05:06 +0200556/* Return partition name */
557static const char *
558partname(const char *dev, int pno, int lth)
559{
560 const char *p;
561 int w, wp;
562 int bufsiz;
563 char *bufp;
564
565 bufp = auto_string(xzalloc(80));
566 bufsiz = 80;
567
568 w = strlen(dev);
569 p = "";
570
571 if (isdigit(dev[w-1]))
572 p = "p";
573
574 /* devfs kludge - note: fdisk partition names are not supposed
575 to equal kernel names, so there is no reason to do this */
576 if (strcmp(dev + w - 4, "disc") == 0) {
577 w -= 4;
578 p = "part";
579 }
580
581 wp = strlen(p);
582
583 if (lth) {
584 snprintf(bufp, bufsiz, "%*.*s%s%-2u",
585 lth-wp-2, w, dev, p, pno);
586 } else {
587 snprintf(bufp, bufsiz, "%.*s%s%-2u", w, dev, p, pno);
588 }
589 return bufp;
590}
591
Denys Vlasenkoe5897d02019-10-25 13:05:15 +0200592#if ENABLE_FEATURE_SGI_LABEL || ENABLE_FEATURE_OSF_LABEL
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000593static ALWAYS_INLINE struct partition *
Rob Landleyb73451d2006-02-24 16:29:00 +0000594get_part_table(int i)
595{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000596 return ptes[i].part_table;
597}
Denys Vlasenkoe5897d02019-10-25 13:05:15 +0200598#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000599
Denys Vlasenkod8e4ce02019-10-04 16:45:04 +0200600static ALWAYS_INLINE const char *
601str_units(void)
602{
603 return display_in_cyl_units ? "cylinder" : "sector";
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000604}
605
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000606static int
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000607valid_part_table_flag(const char *mbuffer)
608{
Denis Vlasenko834410a2006-11-29 12:00:28 +0000609 return (mbuffer[510] == 0x55 && (uint8_t)mbuffer[511] == 0xaa);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000610}
611
Denys Vlasenko5ea1de22010-04-06 02:31:43 +0200612static void fdisk_fatal(const char *why)
613{
614 if (listing) {
615 close_dev_fd();
616 longjmp(listingbuf, 1);
617 }
618 bb_error_msg_and_die(why, disk_device);
619}
620
621static void
622seek_sector(sector_t secno)
623{
624#if ENABLE_FDISK_SUPPORT_LARGE_DISKS
625 off64_t off = (off64_t)secno * sector_size;
626 if (lseek64(dev_fd, off, SEEK_SET) == (off64_t) -1)
627 fdisk_fatal(unable_to_seek);
628#else
629 uint64_t off = (uint64_t)secno * sector_size;
630 if (off > MAXINT(off_t)
631 || lseek(dev_fd, (off_t)off, SEEK_SET) == (off_t) -1
632 ) {
633 fdisk_fatal(unable_to_seek);
634 }
635#endif
636}
637
Denis Vlasenko834410a2006-11-29 12:00:28 +0000638#if ENABLE_FEATURE_FDISK_WRITABLE
Denys Vlasenko5ea1de22010-04-06 02:31:43 +0200639static void
640set_all_unchanged(void)
641{
642 int i;
643
644 for (i = 0; i < MAXIMUM_PARTS; i++)
645 ptes[i].changed = 0;
646}
647
648static ALWAYS_INLINE void
649set_changed(int i)
650{
651 ptes[i].changed = 1;
652}
653
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000654static ALWAYS_INLINE void
Denis Vlasenko834410a2006-11-29 12:00:28 +0000655write_part_table_flag(char *b)
656{
657 b[510] = 0x55;
658 b[511] = 0xaa;
659}
660
Denys Vlasenkoc1045492018-07-25 13:45:36 +0200661/* Read line; return 0 or first printable non-space char */
662static int
663read_line(const char *prompt)
664{
665 int sz;
666
667 sz = read_line_input(NULL, prompt, line_buffer, sizeof(line_buffer));
668 if (sz <= 0)
Denys Vlasenkodb5546c2022-01-05 22:16:06 +0100669 exit_SUCCESS(); /* Ctrl-D or Ctrl-C */
Denys Vlasenkoc1045492018-07-25 13:45:36 +0200670
671 if (line_buffer[sz-1] == '\n')
672 line_buffer[--sz] = '\0';
673
674 line_ptr = line_buffer;
675 while (*line_ptr != '\0' && (unsigned char)*line_ptr <= ' ')
676 line_ptr++;
677 return *line_ptr;
678}
679
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000680static char
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000681read_nonempty(const char *mesg)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000682{
Denis Vlasenko9764d692008-07-09 21:20:50 +0000683 while (!read_line(mesg))
684 continue;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000685 return *line_ptr;
686}
687
688static char
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000689read_maybe_empty(const char *mesg)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000690{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000691 if (!read_line(mesg)) {
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000692 line_ptr = line_buffer;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000693 line_ptr[0] = '\n';
694 line_ptr[1] = '\0';
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000695 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000696 return line_ptr[0];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000697}
698
699static int
Denis Vlasenkobd852072007-03-19 14:43:38 +0000700read_hex(const char *const *sys)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000701{
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000702 unsigned long v;
Rob Landleyb73451d2006-02-24 16:29:00 +0000703 while (1) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000704 read_nonempty("Hex code (type L to list codes): ");
Denys Vlasenkod958e902010-04-06 02:32:26 +0200705 if ((line_ptr[0] | 0x20) == 'l') {
Rob Landleyb73451d2006-02-24 16:29:00 +0000706 list_types(sys);
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000707 continue;
Rob Landleyb73451d2006-02-24 16:29:00 +0000708 }
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000709 v = bb_strtoul(line_ptr, NULL, 16);
Denys Vlasenko5ea1de22010-04-06 02:31:43 +0200710 if (v <= 0xff)
711 return v;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000712 }
713}
714
Denis Vlasenko9764d692008-07-09 21:20:50 +0000715static void
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200716write_sector(sector_t secno, const void *buf)
Denis Vlasenko9764d692008-07-09 21:20:50 +0000717{
718 seek_sector(secno);
719 xwrite(dev_fd, buf, sector_size);
720}
Denys Vlasenko5ea1de22010-04-06 02:31:43 +0200721#endif /* FEATURE_FDISK_WRITABLE */
Denis Vlasenko9764d692008-07-09 21:20:50 +0000722
723
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000724#include "fdisk_aix.c"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000725
Denys Vlasenko36659fd2010-02-05 14:40:23 +0100726struct sun_partition {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000727 unsigned char info[128]; /* Informative text string */
728 unsigned char spare0[14];
729 struct sun_info {
730 unsigned char spare1;
731 unsigned char id;
732 unsigned char spare2;
733 unsigned char flags;
734 } infos[8];
735 unsigned char spare1[246]; /* Boot information etc. */
736 unsigned short rspeed; /* Disk rotational speed */
737 unsigned short pcylcount; /* Physical cylinder count */
738 unsigned short sparecyl; /* extra sects per cylinder */
739 unsigned char spare2[4]; /* More magic... */
740 unsigned short ilfact; /* Interleave factor */
741 unsigned short ncyl; /* Data cylinder count */
742 unsigned short nacyl; /* Alt. cylinder count */
743 unsigned short ntrks; /* Tracks per cylinder */
744 unsigned short nsect; /* Sectors per track */
745 unsigned char spare3[4]; /* Even more magic... */
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000746 struct sun_partinfo {
Eric Andersenacd244a2002-12-11 03:49:33 +0000747 uint32_t start_cylinder;
748 uint32_t num_sectors;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000749 } partitions[8];
750 unsigned short magic; /* Magic number */
751 unsigned short csum; /* Label xor'd checksum */
Denys Vlasenko36659fd2010-02-05 14:40:23 +0100752} FIX_ALIASING;
753typedef struct sun_partition sun_partition;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000754#define sunlabel ((sun_partition *)MBRbuffer)
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000755STATIC_OSF void bsd_select(void);
756STATIC_OSF void xbsd_print_disklabel(int);
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000757#include "fdisk_osf.c"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000758
Denys Vlasenkod7559c22010-10-30 02:40:08 +0200759STATIC_GPT void gpt_list_table(int xtra);
Kevin Cernekeeccb07042010-10-25 02:00:24 +0200760#include "fdisk_gpt.c"
761
Denis Vlasenko28703012006-12-19 20:32:02 +0000762#if ENABLE_FEATURE_SGI_LABEL || ENABLE_FEATURE_SUN_LABEL
Denis Vlasenko10d0d4e2006-11-27 16:48:17 +0000763static uint16_t
Denis Vlasenko28703012006-12-19 20:32:02 +0000764fdisk_swap16(uint16_t x)
Rob Landleyb73451d2006-02-24 16:29:00 +0000765{
Denis Vlasenko10d0d4e2006-11-27 16:48:17 +0000766 return (x << 8) | (x >> 8);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000767}
768
Rob Landley88621d72006-08-29 19:41:06 +0000769static uint32_t
Denis Vlasenko28703012006-12-19 20:32:02 +0000770fdisk_swap32(uint32_t x)
Rob Landleyb73451d2006-02-24 16:29:00 +0000771{
Denis Vlasenko10d0d4e2006-11-27 16:48:17 +0000772 return (x << 24) |
773 ((x & 0xFF00) << 8) |
774 ((x & 0xFF0000) >> 8) |
775 (x >> 24);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000776}
777#endif
778
Denis Vlasenkobd852072007-03-19 14:43:38 +0000779STATIC_SGI const char *const sgi_sys_types[];
Denis Vlasenko834410a2006-11-29 12:00:28 +0000780STATIC_SGI unsigned sgi_get_num_sectors(int i);
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000781STATIC_SGI int sgi_get_sysid(int i);
782STATIC_SGI void sgi_delete_partition(int i);
783STATIC_SGI void sgi_change_sysid(int i, int sys);
784STATIC_SGI void sgi_list_table(int xtra);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000785#if ENABLE_FEATURE_FDISK_ADVANCED
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000786STATIC_SGI void sgi_set_xcyl(void);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000787#endif
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000788STATIC_SGI int verify_sgi(int verbose);
789STATIC_SGI void sgi_add_partition(int n, int sys);
790STATIC_SGI void sgi_set_swappartition(int i);
791STATIC_SGI const char *sgi_get_bootfile(void);
792STATIC_SGI void sgi_set_bootfile(const char* aFile);
793STATIC_SGI void create_sgiinfo(void);
794STATIC_SGI void sgi_write_table(void);
795STATIC_SGI void sgi_set_bootpartition(int i);
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000796#include "fdisk_sgi.c"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000797
Denis Vlasenkobd852072007-03-19 14:43:38 +0000798STATIC_SUN const char *const sun_sys_types[];
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000799STATIC_SUN void sun_delete_partition(int i);
800STATIC_SUN void sun_change_sysid(int i, int sys);
801STATIC_SUN void sun_list_table(int xtra);
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000802STATIC_SUN void add_sun_partition(int n, int sys);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000803#if ENABLE_FEATURE_FDISK_ADVANCED
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000804STATIC_SUN void sun_set_alt_cyl(void);
805STATIC_SUN void sun_set_ncyl(int cyl);
806STATIC_SUN void sun_set_xcyl(void);
807STATIC_SUN void sun_set_ilfact(void);
808STATIC_SUN void sun_set_rspeed(void);
809STATIC_SUN void sun_set_pcylcount(void);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000810#endif
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000811STATIC_SUN void toggle_sunflags(int i, unsigned char mask);
812STATIC_SUN void verify_sun(void);
813STATIC_SUN void sun_write_table(void);
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000814#include "fdisk_sun.c"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000815
Denis Vlasenko9764d692008-07-09 21:20:50 +0000816
Denys Vlasenko5ea1de22010-04-06 02:31:43 +0200817static inline_if_little_endian unsigned
Rob Landleyb73451d2006-02-24 16:29:00 +0000818read4_little_endian(const unsigned char *cp)
819{
Denys Vlasenko5ea1de22010-04-06 02:31:43 +0200820 uint32_t v;
821 move_from_unaligned32(v, cp);
822 return SWAP_LE32(v);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000823}
824
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200825static sector_t
Rob Landleyb73451d2006-02-24 16:29:00 +0000826get_start_sect(const struct partition *p)
827{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000828 return read4_little_endian(p->start4);
829}
830
Denys Vlasenko5ea1de22010-04-06 02:31:43 +0200831static sector_t
832get_nr_sects(const struct partition *p)
833{
834 return read4_little_endian(p->size4);
835}
836
Denis Vlasenko834410a2006-11-29 12:00:28 +0000837#if ENABLE_FEATURE_FDISK_WRITABLE
Denys Vlasenko5ea1de22010-04-06 02:31:43 +0200838/* start_sect and nr_sects are stored little endian on all machines */
839/* moreover, they are not aligned correctly */
840static inline_if_little_endian void
841store4_little_endian(unsigned char *cp, unsigned val)
842{
843 uint32_t v = SWAP_LE32(val);
844 move_to_unaligned32(cp, v);
845}
846
847static void
848set_start_sect(struct partition *p, unsigned start_sect)
849{
850 store4_little_endian(p->start4, start_sect);
851}
852
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000853static void
Denis Vlasenko28703012006-12-19 20:32:02 +0000854set_nr_sects(struct partition *p, unsigned nr_sects)
Rob Landleyb73451d2006-02-24 16:29:00 +0000855{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000856 store4_little_endian(p->size4, nr_sects);
857}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000858#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000859
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000860/* Allocate a buffer and read a partition table sector */
861static void
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200862read_pte(struct pte *pe, sector_t offset)
Rob Landleyb73451d2006-02-24 16:29:00 +0000863{
Denys Vlasenkod958e902010-04-06 02:32:26 +0200864 pe->offset_from_dev_start = offset;
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +0000865 pe->sectorbuffer = xzalloc(sector_size);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000866 seek_sector(offset);
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +0000867 /* xread would make us abort - bad for fdisk -l */
868 if (full_read(dev_fd, pe->sectorbuffer, sector_size) != sector_size)
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000869 fdisk_fatal(unable_to_read);
Denis Vlasenko834410a2006-11-29 12:00:28 +0000870#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000871 pe->changed = 0;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000872#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000873 pe->part_table = pe->ext_pointer = NULL;
874}
875
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200876static sector_t
Denys Vlasenkod958e902010-04-06 02:32:26 +0200877get_partition_start_from_dev_start(const struct pte *pe)
Rob Landleyb73451d2006-02-24 16:29:00 +0000878{
Denys Vlasenkod958e902010-04-06 02:32:26 +0200879 return pe->offset_from_dev_start + get_start_sect(pe->part_table);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000880}
881
Denis Vlasenko834410a2006-11-29 12:00:28 +0000882#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000883/*
884 * Avoid warning about DOS partitions when no DOS partition was changed.
885 * Here a heuristic "is probably dos partition".
886 * We might also do the opposite and warn in all cases except
887 * for "is probably nondos partition".
888 */
Denis Vlasenko89398812008-01-25 20:18:46 +0000889#ifdef UNUSED
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000890static int
Rob Landleyb73451d2006-02-24 16:29:00 +0000891is_dos_partition(int t)
892{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000893 return (t == 1 || t == 4 || t == 6 ||
894 t == 0x0b || t == 0x0c || t == 0x0e ||
895 t == 0x11 || t == 0x12 || t == 0x14 || t == 0x16 ||
896 t == 0x1b || t == 0x1c || t == 0x1e || t == 0x24 ||
897 t == 0xc1 || t == 0xc4 || t == 0xc6);
898}
Denis Vlasenko89398812008-01-25 20:18:46 +0000899#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000900
901static void
Rob Landleyb73451d2006-02-24 16:29:00 +0000902menu(void)
903{
Denis Vlasenkobd852072007-03-19 14:43:38 +0000904 puts("Command Action");
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000905 if (LABEL_IS_SUN) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000906 puts("a\ttoggle a read only flag"); /* sun */
907 puts("b\tedit bsd disklabel");
908 puts("c\ttoggle the mountable flag"); /* sun */
909 puts("d\tdelete a partition");
910 puts("l\tlist known partition types");
911 puts("n\tadd a new partition");
912 puts("o\tcreate a new empty DOS partition table");
913 puts("p\tprint the partition table");
914 puts("q\tquit without saving changes");
915 puts("s\tcreate a new empty Sun disklabel"); /* sun */
916 puts("t\tchange a partition's system id");
917 puts("u\tchange display/entry units");
918 puts("v\tverify the partition table");
919 puts("w\twrite table to disk and exit");
Denis Vlasenko834410a2006-11-29 12:00:28 +0000920#if ENABLE_FEATURE_FDISK_ADVANCED
Denis Vlasenkobd852072007-03-19 14:43:38 +0000921 puts("x\textra functionality (experts only)");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000922#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000923 } else if (LABEL_IS_SGI) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000924 puts("a\tselect bootable partition"); /* sgi flavour */
925 puts("b\tedit bootfile entry"); /* sgi */
926 puts("c\tselect sgi swap partition"); /* sgi flavour */
927 puts("d\tdelete a partition");
928 puts("l\tlist known partition types");
929 puts("n\tadd a new partition");
930 puts("o\tcreate a new empty DOS partition table");
931 puts("p\tprint the partition table");
932 puts("q\tquit without saving changes");
933 puts("s\tcreate a new empty Sun disklabel"); /* sun */
934 puts("t\tchange a partition's system id");
935 puts("u\tchange display/entry units");
936 puts("v\tverify the partition table");
937 puts("w\twrite table to disk and exit");
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000938 } else if (LABEL_IS_AIX) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000939 puts("o\tcreate a new empty DOS partition table");
940 puts("q\tquit without saving changes");
941 puts("s\tcreate a new empty Sun disklabel"); /* sun */
Kevin Cernekeeccb07042010-10-25 02:00:24 +0200942 } else if (LABEL_IS_GPT) {
943 puts("o\tcreate a new empty DOS partition table");
944 puts("p\tprint the partition table");
945 puts("q\tquit without saving changes");
946 puts("s\tcreate a new empty Sun disklabel"); /* sun */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000947 } else {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000948 puts("a\ttoggle a bootable flag");
949 puts("b\tedit bsd disklabel");
950 puts("c\ttoggle the dos compatibility flag");
951 puts("d\tdelete a partition");
952 puts("l\tlist known partition types");
953 puts("n\tadd a new partition");
954 puts("o\tcreate a new empty DOS partition table");
955 puts("p\tprint the partition table");
956 puts("q\tquit without saving changes");
957 puts("s\tcreate a new empty Sun disklabel"); /* sun */
958 puts("t\tchange a partition's system id");
959 puts("u\tchange display/entry units");
960 puts("v\tverify the partition table");
961 puts("w\twrite table to disk and exit");
Denis Vlasenko834410a2006-11-29 12:00:28 +0000962#if ENABLE_FEATURE_FDISK_ADVANCED
Denis Vlasenkobd852072007-03-19 14:43:38 +0000963 puts("x\textra functionality (experts only)");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000964#endif
965 }
966}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000967#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000968
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000969
Denis Vlasenko834410a2006-11-29 12:00:28 +0000970#if ENABLE_FEATURE_FDISK_ADVANCED
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000971static void
Rob Landleyb73451d2006-02-24 16:29:00 +0000972xmenu(void)
973{
Denis Vlasenkobd852072007-03-19 14:43:38 +0000974 puts("Command Action");
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000975 if (LABEL_IS_SUN) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000976 puts("a\tchange number of alternate cylinders"); /*sun*/
977 puts("c\tchange number of cylinders");
978 puts("d\tprint the raw data in the partition table");
979 puts("e\tchange number of extra sectors per cylinder");/*sun*/
980 puts("h\tchange number of heads");
981 puts("i\tchange interleave factor"); /*sun*/
982 puts("o\tchange rotation speed (rpm)"); /*sun*/
983 puts("p\tprint the partition table");
984 puts("q\tquit without saving changes");
985 puts("r\treturn to main menu");
986 puts("s\tchange number of sectors/track");
987 puts("v\tverify the partition table");
988 puts("w\twrite table to disk and exit");
989 puts("y\tchange number of physical cylinders"); /*sun*/
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000990 } else if (LABEL_IS_SGI) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000991 puts("b\tmove beginning of data in a partition"); /* !sun */
992 puts("c\tchange number of cylinders");
993 puts("d\tprint the raw data in the partition table");
994 puts("e\tlist extended partitions"); /* !sun */
995 puts("g\tcreate an IRIX (SGI) partition table");/* sgi */
996 puts("h\tchange number of heads");
997 puts("p\tprint the partition table");
998 puts("q\tquit without saving changes");
999 puts("r\treturn to main menu");
1000 puts("s\tchange number of sectors/track");
1001 puts("v\tverify the partition table");
1002 puts("w\twrite table to disk and exit");
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001003 } else if (LABEL_IS_AIX) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001004 puts("b\tmove beginning of data in a partition"); /* !sun */
1005 puts("c\tchange number of cylinders");
1006 puts("d\tprint the raw data in the partition table");
1007 puts("e\tlist extended partitions"); /* !sun */
1008 puts("g\tcreate an IRIX (SGI) partition table");/* sgi */
1009 puts("h\tchange number of heads");
1010 puts("p\tprint the partition table");
1011 puts("q\tquit without saving changes");
1012 puts("r\treturn to main menu");
1013 puts("s\tchange number of sectors/track");
1014 puts("v\tverify the partition table");
1015 puts("w\twrite table to disk and exit");
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001016 } else {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001017 puts("b\tmove beginning of data in a partition"); /* !sun */
1018 puts("c\tchange number of cylinders");
1019 puts("d\tprint the raw data in the partition table");
1020 puts("e\tlist extended partitions"); /* !sun */
1021 puts("f\tfix partition order"); /* !sun, !aix, !sgi */
Denis Vlasenko834410a2006-11-29 12:00:28 +00001022#if ENABLE_FEATURE_SGI_LABEL
Denis Vlasenkobd852072007-03-19 14:43:38 +00001023 puts("g\tcreate an IRIX (SGI) partition table");/* sgi */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001024#endif
Denis Vlasenkobd852072007-03-19 14:43:38 +00001025 puts("h\tchange number of heads");
1026 puts("p\tprint the partition table");
1027 puts("q\tquit without saving changes");
1028 puts("r\treturn to main menu");
1029 puts("s\tchange number of sectors/track");
1030 puts("v\tverify the partition table");
1031 puts("w\twrite table to disk and exit");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001032 }
1033}
1034#endif /* ADVANCED mode */
1035
Denis Vlasenko834410a2006-11-29 12:00:28 +00001036#if ENABLE_FEATURE_FDISK_WRITABLE
Denis Vlasenkobd852072007-03-19 14:43:38 +00001037static const char *const *
Rob Landleyb73451d2006-02-24 16:29:00 +00001038get_sys_types(void)
1039{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001040 return (
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001041 LABEL_IS_SUN ? sun_sys_types :
1042 LABEL_IS_SGI ? sgi_sys_types :
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001043 i386_sys_types);
1044}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001045#else
1046#define get_sys_types() i386_sys_types
Denys Vlasenko5ea1de22010-04-06 02:31:43 +02001047#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001048
Denis Vlasenkobd852072007-03-19 14:43:38 +00001049static const char *
1050partition_type(unsigned char type)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001051{
1052 int i;
Denis Vlasenkobd852072007-03-19 14:43:38 +00001053 const char *const *types = get_sys_types();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001054
Denis Vlasenkobd852072007-03-19 14:43:38 +00001055 for (i = 0; types[i]; i++)
1056 if ((unsigned char)types[i][0] == type)
1057 return types[i] + 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001058
Denis Vlasenkobd852072007-03-19 14:43:38 +00001059 return "Unknown";
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001060}
1061
Denys Vlasenko5ea1de22010-04-06 02:31:43 +02001062static int
1063is_cleared_partition(const struct partition *p)
1064{
1065 /* We consider partition "cleared" only if it has only zeros */
1066 const char *cp = (const char *)p;
1067 int cnt = sizeof(*p);
1068 char bits = 0;
1069 while (--cnt >= 0)
1070 bits |= *cp++;
1071 return (bits == 0);
1072}
1073
1074static void
1075clear_partition(struct partition *p)
1076{
1077 if (p)
1078 memset(p, 0, sizeof(*p));
1079}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001080
Denis Vlasenko834410a2006-11-29 12:00:28 +00001081#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001082static int
Rob Landleyb73451d2006-02-24 16:29:00 +00001083get_sysid(int i)
1084{
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001085 return LABEL_IS_SUN ? sunlabel->infos[i].id :
1086 (LABEL_IS_SGI ? sgi_get_sysid(i) :
1087 ptes[i].part_table->sys_ind);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001088}
1089
Denis Vlasenkobd852072007-03-19 14:43:38 +00001090static void
1091list_types(const char *const *sys)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001092{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001093 enum { COLS = 3 };
1094
1095 unsigned last[COLS];
1096 unsigned done, next, size;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001097 int i;
1098
Denis Vlasenko9764d692008-07-09 21:20:50 +00001099 for (size = 0; sys[size]; size++)
1100 continue;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001101
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001102 done = 0;
1103 for (i = COLS-1; i >= 0; i--) {
1104 done += (size + i - done) / (i + 1);
1105 last[COLS-1 - i] = done;
1106 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001107
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001108 i = done = next = 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001109 do {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001110 printf("%c%2x %-22.22s", i ? ' ' : '\n',
Denis Vlasenkobd852072007-03-19 14:43:38 +00001111 (unsigned char)sys[next][0],
1112 sys[next] + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001113 next = last[i++] + done;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001114 if (i >= COLS || next >= last[i]) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001115 i = 0;
1116 next = ++done;
1117 }
1118 } while (done < last[0]);
Denis Vlasenko4daad902007-09-27 10:20:47 +00001119 bb_putchar('\n');
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001120}
1121
Denys Vlasenkod958e902010-04-06 02:32:26 +02001122#define set_hsc(h, s, c, sector) do \
1123{ \
1124 s = sector % g_sectors + 1; \
1125 sector /= g_sectors; \
1126 h = sector % g_heads; \
1127 sector /= g_heads; \
1128 c = sector & 0xff; \
1129 s |= (sector >> 2) & 0xc0; \
1130} while (0)
1131
1132static void set_hsc_start_end(struct partition *p, sector_t start, sector_t stop)
1133{
1134 if (dos_compatible_flag && (start / (g_sectors * g_heads) > 1023))
1135 start = g_heads * g_sectors * 1024 - 1;
1136 set_hsc(p->head, p->sector, p->cyl, start);
1137
1138 if (dos_compatible_flag && (stop / (g_sectors * g_heads) > 1023))
1139 stop = g_heads * g_sectors * 1024 - 1;
1140 set_hsc(p->end_head, p->end_sector, p->end_cyl, stop);
1141}
1142
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001143static void
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001144set_partition(int i, int doext, sector_t start, sector_t stop, int sysid)
Rob Landleyb73451d2006-02-24 16:29:00 +00001145{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001146 struct partition *p;
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001147 sector_t offset;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001148
1149 if (doext) {
1150 p = ptes[i].ext_pointer;
1151 offset = extended_offset;
1152 } else {
1153 p = ptes[i].part_table;
Denys Vlasenkod958e902010-04-06 02:32:26 +02001154 offset = ptes[i].offset_from_dev_start;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001155 }
1156 p->boot_ind = 0;
1157 p->sys_ind = sysid;
1158 set_start_sect(p, start - offset);
1159 set_nr_sects(p, stop - start + 1);
Denys Vlasenkod958e902010-04-06 02:32:26 +02001160 set_hsc_start_end(p, start, stop);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001161 ptes[i].changed = 1;
1162}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001163#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001164
1165static int
Rob Landleyb73451d2006-02-24 16:29:00 +00001166warn_geometry(void)
1167{
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001168 if (g_heads && g_sectors && g_cylinders)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001169 return 0;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001170
Denis Vlasenkobd852072007-03-19 14:43:38 +00001171 printf("Unknown value(s) for:");
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001172 if (!g_heads)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001173 printf(" heads");
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001174 if (!g_sectors)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001175 printf(" sectors");
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001176 if (!g_cylinders)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001177 printf(" cylinders");
Denis Vlasenko834410a2006-11-29 12:00:28 +00001178#if ENABLE_FEATURE_FDISK_WRITABLE
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001179 puts(" (settable in the extra functions menu)");
1180#else
1181 bb_putchar('\n');
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001182#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001183 return 1;
1184}
1185
Denis Vlasenko8e1a0cc2007-03-18 14:42:45 +00001186static void
1187update_units(void)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001188{
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001189 int cyl_units = g_heads * g_sectors;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001190
1191 if (display_in_cyl_units && cyl_units)
1192 units_per_sector = cyl_units;
1193 else
1194 units_per_sector = 1; /* in sectors */
1195}
1196
Denis Vlasenko834410a2006-11-29 12:00:28 +00001197#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001198static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001199warn_cylinders(void)
1200{
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001201 if (LABEL_IS_DOS && g_cylinders > 1024 && !nowarn)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001202 printf("\n"
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001203"The number of cylinders for this disk is set to %u.\n"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001204"There is nothing wrong with that, but this is larger than 1024,\n"
1205"and could in certain setups cause problems with:\n"
1206"1) software that runs at boot time (e.g., old versions of LILO)\n"
1207"2) booting and partitioning software from other OSs\n"
Denis Vlasenkobd852072007-03-19 14:43:38 +00001208" (e.g., DOS FDISK, OS/2 FDISK)\n",
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001209 g_cylinders);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001210}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001211#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001212
1213static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001214read_extended(int ext)
1215{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001216 int i;
1217 struct pte *pex;
1218 struct partition *p, *q;
1219
1220 ext_index = ext;
1221 pex = &ptes[ext];
1222 pex->ext_pointer = pex->part_table;
1223
1224 p = pex->part_table;
1225 if (!get_start_sect(p)) {
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001226 puts("Bad offset in primary extended partition");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001227 return;
1228 }
1229
Rob Landleyb73451d2006-02-24 16:29:00 +00001230 while (IS_EXTENDED(p->sys_ind)) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001231 struct pte *pe = &ptes[g_partitions];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001232
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001233 if (g_partitions >= MAXIMUM_PARTS) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001234 /* This is not a Linux restriction, but
1235 this program uses arrays of size MAXIMUM_PARTS.
Denis Vlasenko89f0b342006-11-18 22:04:09 +00001236 Do not try to 'improve' this test. */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001237 struct pte *pre = &ptes[g_partitions - 1];
Denis Vlasenko834410a2006-11-29 12:00:28 +00001238#if ENABLE_FEATURE_FDISK_WRITABLE
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001239 printf("Warning: deleting partitions after %u\n",
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001240 g_partitions);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001241 pre->changed = 1;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001242#endif
1243 clear_partition(pre->ext_pointer);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001244 return;
1245 }
1246
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001247 read_pte(pe, extended_offset + get_start_sect(p));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001248
1249 if (!extended_offset)
1250 extended_offset = get_start_sect(p);
1251
1252 q = p = pt_offset(pe->sectorbuffer, 0);
1253 for (i = 0; i < 4; i++, p++) if (get_nr_sects(p)) {
Rob Landleyb73451d2006-02-24 16:29:00 +00001254 if (IS_EXTENDED(p->sys_ind)) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001255 if (pe->ext_pointer)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001256 printf("Warning: extra link "
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001257 "pointer in partition table"
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001258 " %u\n", g_partitions + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001259 else
1260 pe->ext_pointer = p;
1261 } else if (p->sys_ind) {
1262 if (pe->part_table)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001263 printf("Warning: ignoring extra "
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001264 "data in partition table"
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001265 " %u\n", g_partitions + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001266 else
1267 pe->part_table = p;
1268 }
1269 }
1270
1271 /* very strange code here... */
1272 if (!pe->part_table) {
1273 if (q != pe->ext_pointer)
1274 pe->part_table = q;
1275 else
1276 pe->part_table = q + 1;
1277 }
1278 if (!pe->ext_pointer) {
1279 if (q != pe->part_table)
1280 pe->ext_pointer = q;
1281 else
1282 pe->ext_pointer = q + 1;
1283 }
1284
1285 p = pe->ext_pointer;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001286 g_partitions++;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001287 }
1288
Denis Vlasenko834410a2006-11-29 12:00:28 +00001289#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001290 /* remove empty links */
1291 remove:
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001292 for (i = 4; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001293 struct pte *pe = &ptes[i];
1294
Denis Vlasenkobd852072007-03-19 14:43:38 +00001295 if (!get_nr_sects(pe->part_table)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001296 && (g_partitions > 5 || ptes[4].part_table->sys_ind)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001297 ) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001298 printf("Omitting empty partition (%u)\n", i+1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001299 delete_partition(i);
1300 goto remove; /* numbering changed */
1301 }
1302 }
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001303#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001304}
1305
Denis Vlasenko834410a2006-11-29 12:00:28 +00001306#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001307static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001308create_doslabel(void)
1309{
Denis Vlasenkobd852072007-03-19 14:43:38 +00001310 printf(msg_building_new_label, "DOS disklabel");
Rob Landley5527b912006-02-25 03:46:10 +00001311
Denis Vlasenko4437d192008-04-17 00:12:10 +00001312 current_label_type = LABEL_DOS;
Denis Vlasenko834410a2006-11-29 12:00:28 +00001313#if ENABLE_FEATURE_OSF_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001314 possibly_osf_label = 0;
1315#endif
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001316 g_partitions = 4;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001317
Denys Vlasenko5ea1de22010-04-06 02:31:43 +02001318 memset(&MBRbuffer[510 - 4*16], 0, 4*16);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001319 write_part_table_flag(MBRbuffer);
1320 extended_offset = 0;
1321 set_all_unchanged();
1322 set_changed(0);
Denis Vlasenko4437d192008-04-17 00:12:10 +00001323 get_boot(CREATE_EMPTY_DOS);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001324}
Denys Vlasenko5ea1de22010-04-06 02:31:43 +02001325#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001326
1327static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001328get_sectorsize(void)
1329{
Rob Landley736e5252006-02-25 03:36:00 +00001330 if (!user_set_sector_size) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001331 int arg;
Denis Vlasenko4437d192008-04-17 00:12:10 +00001332 if (ioctl(dev_fd, BLKSSZGET, &arg) == 0)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001333 sector_size = arg;
1334 if (sector_size != DEFAULT_SECTOR_SIZE)
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001335 printf("Note: sector size is %u "
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +00001336 "(not " DEFAULT_SECTOR_SIZE_STR ")\n",
1337 sector_size);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001338 }
1339}
1340
Rob Landley88621d72006-08-29 19:41:06 +00001341static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001342get_kernel_geometry(void)
1343{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001344 struct hd_geometry geometry;
1345
Denis Vlasenko4437d192008-04-17 00:12:10 +00001346 if (!ioctl(dev_fd, HDIO_GETGEO, &geometry)) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001347 kern_heads = geometry.heads;
1348 kern_sectors = geometry.sectors;
1349 /* never use geometry.cylinders - it is truncated */
1350 }
1351}
1352
1353static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001354get_partition_table_geometry(void)
1355{
"Vladimir N. Oleynik"a972c872005-12-02 10:06:04 +00001356 const unsigned char *bufp = (const unsigned char *)MBRbuffer;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001357 struct partition *p;
1358 int i, h, s, hh, ss;
1359 int first = 1;
1360 int bad = 0;
1361
Eric Andersen3496fdc2006-01-30 23:09:20 +00001362 if (!(valid_part_table_flag((char*)bufp)))
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001363 return;
1364
1365 hh = ss = 0;
Rob Landleyb73451d2006-02-24 16:29:00 +00001366 for (i = 0; i < 4; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001367 p = pt_offset(bufp, i);
1368 if (p->sys_ind != 0) {
1369 h = p->end_head + 1;
1370 s = (p->end_sector & 077);
1371 if (first) {
1372 hh = h;
1373 ss = s;
1374 first = 0;
1375 } else if (hh != h || ss != s)
1376 bad = 1;
1377 }
1378 }
1379
1380 if (!first && !bad) {
1381 pt_heads = hh;
1382 pt_sectors = ss;
1383 }
1384}
1385
Rob Landleyb73451d2006-02-24 16:29:00 +00001386static void
1387get_geometry(void)
1388{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001389 int sec_fac;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001390
1391 get_sectorsize();
1392 sec_fac = sector_size / 512;
Denis Vlasenko834410a2006-11-29 12:00:28 +00001393#if ENABLE_FEATURE_SUN_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001394 guess_device_type();
1395#endif
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001396 g_heads = g_cylinders = g_sectors = 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001397 kern_heads = kern_sectors = 0;
1398 pt_heads = pt_sectors = 0;
1399
1400 get_kernel_geometry();
1401 get_partition_table_geometry();
1402
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001403 g_heads = user_heads ? user_heads :
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001404 pt_heads ? pt_heads :
1405 kern_heads ? kern_heads : 255;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001406 g_sectors = user_sectors ? user_sectors :
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001407 pt_sectors ? pt_sectors :
1408 kern_sectors ? kern_sectors : 63;
Denis Vlasenko4437d192008-04-17 00:12:10 +00001409 total_number_of_sectors = bb_BLKGETSIZE_sectors(dev_fd);
Eric Andersen040f4402003-07-30 08:40:37 +00001410
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001411 sector_offset = 1;
1412 if (dos_compatible_flag)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001413 sector_offset = g_sectors;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001414
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001415 g_cylinders = total_number_of_sectors / (g_heads * g_sectors * sec_fac);
1416 if (!g_cylinders)
1417 g_cylinders = user_cylinders;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001418}
1419
1420/*
Denis Vlasenko4437d192008-04-17 00:12:10 +00001421 * Opens disk_device and optionally reads MBR.
Kevin Cernekeeccb07042010-10-25 02:00:24 +02001422 * If what == OPEN_MAIN:
1423 * Open device, read MBR. Abort program on short read. Create empty
1424 * disklabel if the on-disk structure is invalid (WRITABLE mode).
1425 * If what == TRY_ONLY:
1426 * Open device, read MBR. Return an error if anything is out of place.
1427 * Do not create an empty disklabel. This is used for the "list"
1428 * operations: "fdisk -l /dev/sda" and "fdisk -l" (all devices).
1429 * If what == CREATE_EMPTY_*:
1430 * This means that get_boot() was called recursively from create_*label().
1431 * Do not re-open the device; just set up the ptes array and print
1432 * geometry warnings.
1433 *
Denis Vlasenko4437d192008-04-17 00:12:10 +00001434 * Returns:
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001435 * -1: no 0xaa55 flag present (possibly entire disk BSD)
1436 * 0: found or created label
1437 * 1: I/O error
1438 */
Denis Vlasenko85c24712008-03-17 09:04:04 +00001439#if ENABLE_FEATURE_SUN_LABEL || ENABLE_FEATURE_FDISK_WRITABLE
1440static int get_boot(enum action what)
1441#else
1442static int get_boot(void)
1443#define get_boot(what) get_boot()
1444#endif
Rob Landleyb73451d2006-02-24 16:29:00 +00001445{
Denis Vlasenko4437d192008-04-17 00:12:10 +00001446 int i, fd;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001447
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001448 g_partitions = 4;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001449 for (i = 0; i < 4; i++) {
1450 struct pte *pe = &ptes[i];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001451 pe->part_table = pt_offset(MBRbuffer, i);
1452 pe->ext_pointer = NULL;
Denys Vlasenkod958e902010-04-06 02:32:26 +02001453 pe->offset_from_dev_start = 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001454 pe->sectorbuffer = MBRbuffer;
Denis Vlasenko834410a2006-11-29 12:00:28 +00001455#if ENABLE_FEATURE_FDISK_WRITABLE
Denis Vlasenko4437d192008-04-17 00:12:10 +00001456 pe->changed = (what == CREATE_EMPTY_DOS);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001457#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001458 }
1459
Denis Vlasenko834410a2006-11-29 12:00:28 +00001460#if ENABLE_FEATURE_FDISK_WRITABLE
Denis Vlasenko4437d192008-04-17 00:12:10 +00001461// ALERT! highly idiotic design!
1462// We end up here when we call get_boot() recursively
1463// via get_boot() [table is bad] -> create_doslabel() -> get_boot(CREATE_EMPTY_DOS).
1464// or get_boot() [table is bad] -> create_sunlabel() -> get_boot(CREATE_EMPTY_SUN).
1465// (just factor out re-init of ptes[0,1,2,3] in a separate fn instead?)
1466// So skip opening device _again_...
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001467 if (what == CREATE_EMPTY_DOS IF_FEATURE_SUN_LABEL(|| what == CREATE_EMPTY_SUN))
Denis Vlasenko4437d192008-04-17 00:12:10 +00001468 goto created_table;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001469
Denis Vlasenko4437d192008-04-17 00:12:10 +00001470 fd = open(disk_device, (option_mask32 & OPT_l) ? O_RDONLY : O_RDWR);
1471
Denis Vlasenkobd852072007-03-19 14:43:38 +00001472 if (fd < 0) {
1473 fd = open(disk_device, O_RDONLY);
1474 if (fd < 0) {
Denis Vlasenko4437d192008-04-17 00:12:10 +00001475 if (what == TRY_ONLY)
Rob Landleyb73451d2006-02-24 16:29:00 +00001476 return 1;
1477 fdisk_fatal(unable_to_open);
Denis Vlasenko4437d192008-04-17 00:12:10 +00001478 }
Denis Vlasenko4437d192008-04-17 00:12:10 +00001479 printf("'%s' is opened for read only\n", disk_device);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001480 }
Denis Vlasenkoc033d512008-04-17 01:52:28 +00001481 xmove_fd(fd, dev_fd);
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +00001482 if (512 != full_read(dev_fd, MBRbuffer, 512)) {
Denis Vlasenko4437d192008-04-17 00:12:10 +00001483 if (what == TRY_ONLY) {
Denis Vlasenkoc033d512008-04-17 01:52:28 +00001484 close_dev_fd();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001485 return 1;
Denis Vlasenko4437d192008-04-17 00:12:10 +00001486 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001487 fdisk_fatal(unable_to_read);
1488 }
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001489#else
Denis Vlasenkobd852072007-03-19 14:43:38 +00001490 fd = open(disk_device, O_RDONLY);
1491 if (fd < 0)
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001492 return 1;
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +00001493 if (512 != full_read(fd, MBRbuffer, 512)) {
Denis Vlasenko4437d192008-04-17 00:12:10 +00001494 close(fd);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001495 return 1;
Denis Vlasenko4437d192008-04-17 00:12:10 +00001496 }
1497 xmove_fd(fd, dev_fd);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001498#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001499
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001500 get_geometry();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001501 update_units();
1502
Denis Vlasenko834410a2006-11-29 12:00:28 +00001503#if ENABLE_FEATURE_SUN_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001504 if (check_sun_label())
1505 return 0;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001506#endif
Denis Vlasenko834410a2006-11-29 12:00:28 +00001507#if ENABLE_FEATURE_SGI_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001508 if (check_sgi_label())
1509 return 0;
1510#endif
Denis Vlasenko834410a2006-11-29 12:00:28 +00001511#if ENABLE_FEATURE_AIX_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001512 if (check_aix_label())
1513 return 0;
1514#endif
Kevin Cernekeeccb07042010-10-25 02:00:24 +02001515#if ENABLE_FEATURE_GPT_LABEL
1516 if (check_gpt_label())
1517 return 0;
1518#endif
Denis Vlasenko834410a2006-11-29 12:00:28 +00001519#if ENABLE_FEATURE_OSF_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001520 if (check_osf_label()) {
1521 possibly_osf_label = 1;
1522 if (!valid_part_table_flag(MBRbuffer)) {
Denis Vlasenko4437d192008-04-17 00:12:10 +00001523 current_label_type = LABEL_OSF;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001524 return 0;
1525 }
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001526 puts("This disk has both DOS and BSD magic.\n"
1527 "Give the 'b' command to go to BSD mode.");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001528 }
1529#endif
1530
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001531#if !ENABLE_FEATURE_FDISK_WRITABLE
Denis Vlasenko4437d192008-04-17 00:12:10 +00001532 if (!valid_part_table_flag(MBRbuffer))
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001533 return -1;
1534#else
Denis Vlasenko4437d192008-04-17 00:12:10 +00001535 if (!valid_part_table_flag(MBRbuffer)) {
1536 if (what == OPEN_MAIN) {
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001537 puts("Device contains neither a valid DOS "
1538 "partition table, nor Sun, SGI, OSF or GPT "
1539 "disklabel");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001540#ifdef __sparc__
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001541 IF_FEATURE_SUN_LABEL(create_sunlabel();)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001542#else
1543 create_doslabel();
1544#endif
1545 return 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001546 }
Denis Vlasenko4437d192008-04-17 00:12:10 +00001547 /* TRY_ONLY: */
1548 return -1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001549 }
Denis Vlasenko4437d192008-04-17 00:12:10 +00001550 created_table:
1551#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001552
Denis Vlasenko4437d192008-04-17 00:12:10 +00001553
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001554 IF_FEATURE_FDISK_WRITABLE(warn_cylinders();)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001555 warn_geometry();
1556
1557 for (i = 0; i < 4; i++) {
Denis Vlasenko4437d192008-04-17 00:12:10 +00001558 if (IS_EXTENDED(ptes[i].part_table->sys_ind)) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001559 if (g_partitions != 4)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001560 printf("Ignoring extra extended "
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001561 "partition %u\n", i + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001562 else
1563 read_extended(i);
1564 }
1565 }
1566
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001567 for (i = 3; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001568 struct pte *pe = &ptes[i];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001569 if (!valid_part_table_flag(pe->sectorbuffer)) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001570 printf("Warning: invalid flag 0x%02x,0x%02x of partition "
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001571 "table %u will be corrected by w(rite)\n",
Denis Vlasenko834410a2006-11-29 12:00:28 +00001572 pe->sectorbuffer[510],
1573 pe->sectorbuffer[511],
1574 i + 1);
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001575 IF_FEATURE_FDISK_WRITABLE(pe->changed = 1;)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001576 }
1577 }
1578
1579 return 0;
1580}
1581
Denis Vlasenko834410a2006-11-29 12:00:28 +00001582#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001583/*
1584 * Print the message MESG, then read an integer between LOW and HIGH (inclusive).
1585 * If the user hits Enter, DFLT is returned.
1586 * Answers like +10 are interpreted as offsets from BASE.
1587 *
1588 * There is no default if DFLT is not between LOW and HIGH.
1589 */
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001590static sector_t
1591read_int(sector_t low, sector_t dflt, sector_t high, sector_t base, const char *mesg)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001592{
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001593 sector_t value;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001594 int default_ok = 1;
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001595 const char *fmt = "%s (%u-%u, default %u): ";
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001596
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001597 if (dflt < low || dflt > high) {
1598 fmt = "%s (%u-%u): ";
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001599 default_ok = 0;
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001600 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001601
1602 while (1) {
1603 int use_default = default_ok;
1604
1605 /* ask question and read answer */
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001606 do {
1607 printf(fmt, mesg, low, high, dflt);
1608 read_maybe_empty("");
1609 } while (*line_ptr != '\n' && !isdigit(*line_ptr)
1610 && *line_ptr != '-' && *line_ptr != '+');
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001611
Eric Andersen84bdea82004-05-19 10:49:17 +00001612 if (*line_ptr == '+' || *line_ptr == '-') {
Rob Landleyb73451d2006-02-24 16:29:00 +00001613 int minus = (*line_ptr == '-');
Denys Vlasenkoc1045492018-07-25 13:45:36 +02001614 unsigned scale_shift;
Eric Andersenc48d49a2003-07-03 10:02:32 +00001615
Denys Vlasenko163e6372018-07-25 12:08:26 +02001616 if (sizeof(value) <= sizeof(long))
1617 value = strtoul(line_ptr + 1, NULL, 10);
1618 else
1619 value = strtoull(line_ptr + 1, NULL, 10);
Eric Andersenc48d49a2003-07-03 10:02:32 +00001620
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001621 /* (1) if 2nd char is digit, use_default = 0.
Denys Vlasenkoc1045492018-07-25 13:45:36 +02001622 * (2) move line_ptr to first non-digit.
1623 */
Rob Landleyb73451d2006-02-24 16:29:00 +00001624 while (isdigit(*++line_ptr))
1625 use_default = 0;
Eric Andersen84bdea82004-05-19 10:49:17 +00001626
Denys Vlasenkoc1045492018-07-25 13:45:36 +02001627 scale_shift = 0;
1628 switch (*line_ptr | 0x20) {
Rob Landleyb73451d2006-02-24 16:29:00 +00001629 case 'k':
Denys Vlasenkoc1045492018-07-25 13:45:36 +02001630 scale_shift = 10; /* 1024 */
Rob Landleyb73451d2006-02-24 16:29:00 +00001631 break;
Denys Vlasenko1ab38992018-07-25 14:42:53 +02001632/*
1633 * fdisk from util-linux 2.31 seems to round '+NNNk' and '+NNNK' to megabytes,
1634 * (512-byte) sector count of the partition does not equal NNN*2:
1635 *
1636 * Last sector, +sectors or +size{K,M,G,T,P} (1953792-1000215215, default 1000215215): +9727k
1637 * Device Boot Start End Sectors Size Id Type
1638 * /dev/sdaN 1953792 1972223 18432 9M 83 Linux <-- size exactly 9*1024*1024 bytes
1639 *
1640 * Last sector, +sectors or +size{K,M,G,T,P} (1953792-1000215215, default 1000215215): +9728k
1641 * /dev/sdaN 1953792 1974271 20480 10M 83 Linux <-- size exactly 10*1024*1024 bytes
1642 *
1643 * If 'k' means 1000 bytes (not 1024), then 9728k = 9728*1000 = 9500*1024,
1644 * exactly halfway from 9000 to 10000, which explains why it jumps to next mbyte
1645 * at this value.
1646 *
1647 * 'm' does not seem to behave this way: it means 1024*1024 bytes.
1648 *
1649 * Not sure we want to copy this. If user says he wants 1234kbyte partition,
1650 * we do _exactly that_: 1234kbytes = 2468 sectors.
1651 */
Rob Landleyb73451d2006-02-24 16:29:00 +00001652 case 'm':
Denys Vlasenkoc1045492018-07-25 13:45:36 +02001653 scale_shift = 20; /* 1024*1024 */
Rob Landleyb73451d2006-02-24 16:29:00 +00001654 break;
1655 case 'g':
Denys Vlasenkoc1045492018-07-25 13:45:36 +02001656 scale_shift = 30; /* 1024*1024*1024 */
1657 break;
1658 case 't':
1659 scale_shift = 40; /* 1024*1024*1024*1024 */
Rob Landleyb73451d2006-02-24 16:29:00 +00001660 break;
1661 default:
1662 break;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001663 }
Denys Vlasenkoc1045492018-07-25 13:45:36 +02001664 if (scale_shift) {
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00001665 ullong bytes;
Rob Landleyb73451d2006-02-24 16:29:00 +00001666 unsigned long unit;
1667
Denys Vlasenkoc1045492018-07-25 13:45:36 +02001668 bytes = (ullong) value << scale_shift;
Rob Landleyb73451d2006-02-24 16:29:00 +00001669 unit = sector_size * units_per_sector;
1670 bytes += unit/2; /* round */
1671 bytes /= unit;
Denys Vlasenkoc1045492018-07-25 13:45:36 +02001672 value = (bytes != 0 ? bytes - 1 : 0);
Rob Landleyb73451d2006-02-24 16:29:00 +00001673 }
1674 if (minus)
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001675 value = -value;
1676 value += base;
Eric Andersen84bdea82004-05-19 10:49:17 +00001677 } else {
Denys Vlasenkoc1045492018-07-25 13:45:36 +02001678 if (sizeof(value) <= sizeof(long))
1679 value = strtoul(line_ptr, NULL, 10);
1680 else
1681 value = strtoull(line_ptr, NULL, 10);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001682 while (isdigit(*line_ptr)) {
1683 line_ptr++;
1684 use_default = 0;
1685 }
1686 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00001687 if (use_default) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001688 value = dflt;
1689 printf("Using default value %u\n", value);
Denis Vlasenkobd852072007-03-19 14:43:38 +00001690 }
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001691 if (value >= low && value <= high)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001692 break;
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001693 puts("Value is out of range");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001694 }
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001695 return value;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001696}
1697
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001698static unsigned
1699get_partition(int warn, unsigned max)
Rob Landleyb73451d2006-02-24 16:29:00 +00001700{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001701 struct pte *pe;
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001702 unsigned i;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001703
Denis Vlasenkobd852072007-03-19 14:43:38 +00001704 i = read_int(1, 0, max, 0, "Partition number") - 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001705 pe = &ptes[i];
1706
1707 if (warn) {
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001708 if ((!LABEL_IS_SUN && !LABEL_IS_SGI && !pe->part_table->sys_ind)
1709 || (LABEL_IS_SUN && (!sunlabel->partitions[i].num_sectors || !sunlabel->infos[i].id))
1710 || (LABEL_IS_SGI && !sgi_get_num_sectors(i))
1711 ) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001712 printf("Warning: partition %u has empty type\n", i+1);
Rob Landley5527b912006-02-25 03:46:10 +00001713 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001714 }
1715 return i;
1716}
1717
1718static int
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001719get_existing_partition(int warn, unsigned max)
Rob Landleyb73451d2006-02-24 16:29:00 +00001720{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001721 int pno = -1;
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001722 unsigned i;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001723
1724 for (i = 0; i < max; i++) {
1725 struct pte *pe = &ptes[i];
1726 struct partition *p = pe->part_table;
1727
1728 if (p && !is_cleared_partition(p)) {
1729 if (pno >= 0)
1730 goto not_unique;
1731 pno = i;
1732 }
1733 }
1734 if (pno >= 0) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001735 printf("Selected partition %u\n", pno+1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001736 return pno;
1737 }
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001738 puts("No partition is defined yet!");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001739 return -1;
1740
1741 not_unique:
1742 return get_partition(warn, max);
1743}
1744
1745static int
Denys Vlasenko1ab38992018-07-25 14:42:53 +02001746get_nonexisting_partition(void)
Rob Landleyb73451d2006-02-24 16:29:00 +00001747{
Denys Vlasenko1ab38992018-07-25 14:42:53 +02001748 const int max = 4;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001749 int pno = -1;
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001750 unsigned i;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001751
1752 for (i = 0; i < max; i++) {
1753 struct pte *pe = &ptes[i];
1754 struct partition *p = pe->part_table;
1755
1756 if (p && is_cleared_partition(p)) {
1757 if (pno >= 0)
1758 goto not_unique;
1759 pno = i;
1760 }
1761 }
1762 if (pno >= 0) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001763 printf("Selected partition %u\n", pno+1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001764 return pno;
1765 }
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001766 puts("All primary partitions have been defined already!");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001767 return -1;
1768
1769 not_unique:
Denys Vlasenko1ab38992018-07-25 14:42:53 +02001770 return get_partition(/*warn*/ 0, max);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001771}
1772
1773
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001774static void
1775change_units(void)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001776{
1777 display_in_cyl_units = !display_in_cyl_units;
1778 update_units();
Denys Vlasenkod8e4ce02019-10-04 16:45:04 +02001779 printf("Changing display/entry units to %ss\n",
1780 str_units());
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001781}
1782
1783static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001784toggle_active(int i)
1785{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001786 struct pte *pe = &ptes[i];
1787 struct partition *p = pe->part_table;
1788
Rob Landleyb73451d2006-02-24 16:29:00 +00001789 if (IS_EXTENDED(p->sys_ind) && !p->boot_ind)
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001790 printf("WARNING: Partition %u is an extended partition\n", i + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001791 p->boot_ind = (p->boot_ind ? 0 : ACTIVE_FLAG);
1792 pe->changed = 1;
1793}
1794
1795static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001796toggle_dos_compatibility_flag(void)
1797{
Denis Vlasenkocdf62772008-03-17 08:42:43 +00001798 dos_compatible_flag = 1 - dos_compatible_flag;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001799 if (dos_compatible_flag) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001800 sector_offset = g_sectors;
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001801 printf("DOS Compatibility flag is %sset\n", "");
Denis Vlasenkobd852072007-03-19 14:43:38 +00001802 } else {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001803 sector_offset = 1;
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001804 printf("DOS Compatibility flag is %sset\n", "not ");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001805 }
1806}
1807
1808static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001809delete_partition(int i)
1810{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001811 struct pte *pe = &ptes[i];
1812 struct partition *p = pe->part_table;
1813 struct partition *q = pe->ext_pointer;
1814
1815/* Note that for the fifth partition (i == 4) we don't actually
1816 * decrement partitions.
1817 */
1818
1819 if (warn_geometry())
1820 return; /* C/H/S not set */
1821 pe->changed = 1;
1822
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001823 if (LABEL_IS_SUN) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001824 sun_delete_partition(i);
1825 return;
1826 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001827 if (LABEL_IS_SGI) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001828 sgi_delete_partition(i);
1829 return;
1830 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001831
1832 if (i < 4) {
Rob Landleyb73451d2006-02-24 16:29:00 +00001833 if (IS_EXTENDED(p->sys_ind) && i == ext_index) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001834 g_partitions = 4;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001835 ptes[ext_index].ext_pointer = NULL;
1836 extended_offset = 0;
1837 }
1838 clear_partition(p);
1839 return;
1840 }
1841
1842 if (!q->sys_ind && i > 4) {
1843 /* the last one in the chain - just delete */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001844 --g_partitions;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001845 --i;
1846 clear_partition(ptes[i].ext_pointer);
1847 ptes[i].changed = 1;
1848 } else {
1849 /* not the last one - further ones will be moved down */
1850 if (i > 4) {
1851 /* delete this link in the chain */
1852 p = ptes[i-1].ext_pointer;
1853 *p = *q;
1854 set_start_sect(p, get_start_sect(q));
1855 set_nr_sects(p, get_nr_sects(q));
1856 ptes[i-1].changed = 1;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001857 } else if (g_partitions > 5) { /* 5 will be moved to 4 */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001858 /* the first logical in a longer chain */
1859 pe = &ptes[5];
1860
1861 if (pe->part_table) /* prevent SEGFAULT */
1862 set_start_sect(pe->part_table,
Denys Vlasenkod958e902010-04-06 02:32:26 +02001863 get_partition_start_from_dev_start(pe) -
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001864 extended_offset);
Denys Vlasenkod958e902010-04-06 02:32:26 +02001865 pe->offset_from_dev_start = extended_offset;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001866 pe->changed = 1;
1867 }
1868
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001869 if (g_partitions > 5) {
1870 g_partitions--;
1871 while (i < g_partitions) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001872 ptes[i] = ptes[i+1];
1873 i++;
1874 }
Denys Vlasenko5ea1de22010-04-06 02:31:43 +02001875 } else {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001876 /* the only logical: clear only */
1877 clear_partition(ptes[i].part_table);
Denys Vlasenko5ea1de22010-04-06 02:31:43 +02001878 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001879 }
1880}
1881
1882static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001883change_sysid(void)
1884{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001885 int i, sys, origsys;
1886 struct partition *p;
1887
Eric Andersen040f4402003-07-30 08:40:37 +00001888 /* If sgi_label then don't use get_existing_partition,
1889 let the user select a partition, since get_existing_partition()
1890 only works for Linux like partition tables. */
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001891 if (!LABEL_IS_SGI) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001892 i = get_existing_partition(0, g_partitions);
Eric Andersen040f4402003-07-30 08:40:37 +00001893 } else {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001894 i = get_partition(0, g_partitions);
Eric Andersen040f4402003-07-30 08:40:37 +00001895 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001896 if (i == -1)
1897 return;
1898 p = ptes[i].part_table;
1899 origsys = sys = get_sysid(i);
1900
1901 /* if changing types T to 0 is allowed, then
1902 the reverse change must be allowed, too */
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001903 if (!sys && !LABEL_IS_SGI && !LABEL_IS_SUN && !get_nr_sects(p)) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001904 printf("Partition %u does not exist yet!\n", i + 1);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001905 return;
1906 }
1907 while (1) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001908 sys = read_hex(get_sys_types());
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001909
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001910 if (!sys && !LABEL_IS_SGI && !LABEL_IS_SUN) {
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001911 puts("Type 0 means free space to many systems\n"
1912 "(but not to Linux). Having partitions of\n"
1913 "type 0 is probably unwise.");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001914 /* break; */
1915 }
1916
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001917 if (!LABEL_IS_SUN && !LABEL_IS_SGI) {
Rob Landleyb73451d2006-02-24 16:29:00 +00001918 if (IS_EXTENDED(sys) != IS_EXTENDED(p->sys_ind)) {
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001919 puts("You cannot change a partition into"
1920 " an extended one or vice versa");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001921 break;
1922 }
1923 }
1924
1925 if (sys < 256) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001926#if ENABLE_FEATURE_SUN_LABEL
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001927 if (LABEL_IS_SUN && i == 2 && sys != SUN_WHOLE_DISK)
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001928 puts("Consider leaving partition 3 "
1929 "as Whole disk (5),\n"
1930 "as SunOS/Solaris expects it and "
1931 "even Linux likes it\n");
Denis Vlasenkobd852072007-03-19 14:43:38 +00001932#endif
1933#if ENABLE_FEATURE_SGI_LABEL
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001934 if (LABEL_IS_SGI &&
Rob Landley5527b912006-02-25 03:46:10 +00001935 (
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001936 (i == 10 && sys != SGI_ENTIRE_DISK) ||
Rob Landley5527b912006-02-25 03:46:10 +00001937 (i == 8 && sys != 0)
1938 )
Denis Vlasenkobd852072007-03-19 14:43:38 +00001939 ) {
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001940 puts("Consider leaving partition 9 "
1941 "as volume header (0),\nand "
1942 "partition 11 as entire volume (6)"
1943 "as IRIX expects it\n");
Rob Landley5527b912006-02-25 03:46:10 +00001944 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00001945#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001946 if (sys == origsys)
1947 break;
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001948 if (LABEL_IS_SUN) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001949 sun_change_sysid(i, sys);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001950 } else if (LABEL_IS_SGI) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001951 sgi_change_sysid(i, sys);
1952 } else
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001953 p->sys_ind = sys;
Rob Landley5527b912006-02-25 03:46:10 +00001954
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001955 printf("Changed system type of partition %u "
Denis Vlasenkobd852072007-03-19 14:43:38 +00001956 "to %x (%s)\n", i + 1, sys,
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001957 partition_type(sys));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001958 ptes[i].changed = 1;
Denis Vlasenkoa5549c92008-01-24 22:49:15 +00001959 //if (is_dos_partition(origsys) || is_dos_partition(sys))
1960 // dos_changed = 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001961 break;
1962 }
1963 }
1964}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001965#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001966
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001967
Denis Vlasenko28703012006-12-19 20:32:02 +00001968/* check_consistency() and linear2chs() added Sat Mar 6 12:28:16 1993,
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001969 * faith@cs.unc.edu, based on code fragments from pfdisk by Gordon W. Ross,
1970 * Jan. 1990 (version 1.2.1 by Gordon W. Ross Aug. 1990; Modified by S.
1971 * Lubkin Oct. 1991). */
1972
Rob Landleyb73451d2006-02-24 16:29:00 +00001973static void
Denis Vlasenko28703012006-12-19 20:32:02 +00001974linear2chs(unsigned ls, unsigned *c, unsigned *h, unsigned *s)
Rob Landleyb73451d2006-02-24 16:29:00 +00001975{
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001976 int spc = g_heads * g_sectors;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001977
1978 *c = ls / spc;
1979 ls = ls % spc;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001980 *h = ls / g_sectors;
1981 *s = ls % g_sectors + 1; /* sectors count from 1 */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001982}
1983
Rob Landleyb73451d2006-02-24 16:29:00 +00001984static void
1985check_consistency(const struct partition *p, int partition)
1986{
Denis Vlasenko834410a2006-11-29 12:00:28 +00001987 unsigned pbc, pbh, pbs; /* physical beginning c, h, s */
1988 unsigned pec, peh, pes; /* physical ending c, h, s */
1989 unsigned lbc, lbh, lbs; /* logical beginning c, h, s */
1990 unsigned lec, leh, les; /* logical ending c, h, s */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001991
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001992 if (!g_heads || !g_sectors || (partition >= 4))
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001993 return; /* do not check extended partitions */
1994
1995/* physical beginning c, h, s */
Denys Vlasenko607f2b42016-08-23 16:13:33 +02001996 pbc = cylinder(p->sector, p->cyl);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001997 pbh = p->head;
Denys Vlasenko607f2b42016-08-23 16:13:33 +02001998 pbs = sector(p->sector);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001999
2000/* physical ending c, h, s */
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002001 pec = cylinder(p->end_sector, p->end_cyl);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002002 peh = p->end_head;
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002003 pes = sector(p->end_sector);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002004
2005/* compute logical beginning (c, h, s) */
Denis Vlasenko28703012006-12-19 20:32:02 +00002006 linear2chs(get_start_sect(p), &lbc, &lbh, &lbs);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002007
2008/* compute logical ending (c, h, s) */
Denis Vlasenko28703012006-12-19 20:32:02 +00002009 linear2chs(get_start_sect(p) + get_nr_sects(p) - 1, &lec, &leh, &les);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002010
2011/* Same physical / logical beginning? */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002012 if (g_cylinders <= 1024 && (pbc != lbc || pbh != lbh || pbs != lbs)) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002013 printf("Partition %u has different physical/logical "
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002014 "start (non-Linux?):\n", partition + 1);
2015 printf(" phys=(%u,%u,%u) ", pbc, pbh, pbs);
2016 printf("logical=(%u,%u,%u)\n", lbc, lbh, lbs);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002017 }
2018
2019/* Same physical / logical ending? */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002020 if (g_cylinders <= 1024 && (pec != lec || peh != leh || pes != les)) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002021 printf("Partition %u has different physical/logical "
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002022 "end:\n", partition + 1);
2023 printf(" phys=(%u,%u,%u) ", pec, peh, pes);
2024 printf("logical=(%u,%u,%u)\n", lec, leh, les);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002025 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002026}
2027
2028static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002029list_disk_geometry(void)
2030{
Denys Vlasenkod8e4ce02019-10-04 16:45:04 +02002031 ullong xbytes = total_number_of_sectors / (1024*1024 / 512);
Denys Vlasenko29483ff2016-08-23 17:18:45 +02002032 char x = 'M';
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002033
Denys Vlasenko29483ff2016-08-23 17:18:45 +02002034 if (xbytes >= 10000) {
2035 xbytes += 512; /* fdisk util-linux 2.28 does this */
2036 xbytes /= 1024;
2037 x = 'G';
2038 }
2039 printf("Disk %s: %llu %cB, %llu bytes, %"SECT_FMT"u sectors\n"
2040 "%u cylinders, %u heads, %u sectors/track\n"
Denys Vlasenkod8e4ce02019-10-04 16:45:04 +02002041 "Units: %ss of %u * %u = %u bytes\n"
2042 "\n",
Denys Vlasenko29483ff2016-08-23 17:18:45 +02002043 disk_device, xbytes, x,
Denys Vlasenkod8e4ce02019-10-04 16:45:04 +02002044 ((ullong)total_number_of_sectors * 512), total_number_of_sectors,
Denys Vlasenko29483ff2016-08-23 17:18:45 +02002045 g_cylinders, g_heads, g_sectors,
Denys Vlasenkod8e4ce02019-10-04 16:45:04 +02002046 str_units(),
Denys Vlasenko29483ff2016-08-23 17:18:45 +02002047 units_per_sector, sector_size, units_per_sector * sector_size
2048 );
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002049}
2050
2051/*
2052 * Check whether partition entries are ordered by their starting positions.
2053 * Return 0 if OK. Return i if partition i should have been earlier.
2054 * Two separate checks: primary and logical partitions.
2055 */
2056static int
Rob Landleyb73451d2006-02-24 16:29:00 +00002057wrong_p_order(int *prev)
2058{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002059 const struct pte *pe;
2060 const struct partition *p;
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002061 sector_t last_p_start_pos = 0, p_start_pos;
2062 unsigned i, last_i = 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002063
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002064 for (i = 0; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002065 if (i == 4) {
2066 last_i = 4;
2067 last_p_start_pos = 0;
2068 }
2069 pe = &ptes[i];
Denis Vlasenko6bef3d12007-11-06 03:05:54 +00002070 p = pe->part_table;
2071 if (p->sys_ind) {
Denys Vlasenkod958e902010-04-06 02:32:26 +02002072 p_start_pos = get_partition_start_from_dev_start(pe);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002073
2074 if (last_p_start_pos > p_start_pos) {
2075 if (prev)
2076 *prev = last_i;
2077 return i;
2078 }
2079
2080 last_p_start_pos = p_start_pos;
2081 last_i = i;
2082 }
2083 }
2084 return 0;
2085}
2086
Denis Vlasenko834410a2006-11-29 12:00:28 +00002087#if ENABLE_FEATURE_FDISK_ADVANCED
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002088/*
2089 * Fix the chain of logicals.
2090 * extended_offset is unchanged, the set of sectors used is unchanged
2091 * The chain is sorted so that sectors increase, and so that
2092 * starting sectors increase.
2093 *
2094 * After this it may still be that cfdisk doesnt like the table.
2095 * (This is because cfdisk considers expanded parts, from link to
2096 * end of partition, and these may still overlap.)
2097 * Now
2098 * sfdisk /dev/hda > ohda; sfdisk /dev/hda < ohda
2099 * may help.
2100 */
2101static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002102fix_chain_of_logicals(void)
2103{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002104 int j, oj, ojj, sj, sjj;
2105 struct partition *pj,*pjj,tmp;
2106
2107 /* Stage 1: sort sectors but leave sector of part 4 */
2108 /* (Its sector is the global extended_offset.) */
2109 stage1:
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002110 for (j = 5; j < g_partitions - 1; j++) {
Denys Vlasenkod958e902010-04-06 02:32:26 +02002111 oj = ptes[j].offset_from_dev_start;
2112 ojj = ptes[j+1].offset_from_dev_start;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002113 if (oj > ojj) {
Denys Vlasenkod958e902010-04-06 02:32:26 +02002114 ptes[j].offset_from_dev_start = ojj;
2115 ptes[j+1].offset_from_dev_start = oj;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002116 pj = ptes[j].part_table;
2117 set_start_sect(pj, get_start_sect(pj)+oj-ojj);
2118 pjj = ptes[j+1].part_table;
2119 set_start_sect(pjj, get_start_sect(pjj)+ojj-oj);
2120 set_start_sect(ptes[j-1].ext_pointer,
Rob Landleyb73451d2006-02-24 16:29:00 +00002121 ojj-extended_offset);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002122 set_start_sect(ptes[j].ext_pointer,
Rob Landleyb73451d2006-02-24 16:29:00 +00002123 oj-extended_offset);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002124 goto stage1;
2125 }
2126 }
2127
2128 /* Stage 2: sort starting sectors */
2129 stage2:
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002130 for (j = 4; j < g_partitions - 1; j++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002131 pj = ptes[j].part_table;
2132 pjj = ptes[j+1].part_table;
2133 sj = get_start_sect(pj);
2134 sjj = get_start_sect(pjj);
Denys Vlasenkod958e902010-04-06 02:32:26 +02002135 oj = ptes[j].offset_from_dev_start;
2136 ojj = ptes[j+1].offset_from_dev_start;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002137 if (oj+sj > ojj+sjj) {
2138 tmp = *pj;
2139 *pj = *pjj;
2140 *pjj = tmp;
2141 set_start_sect(pj, ojj+sjj-oj);
2142 set_start_sect(pjj, oj+sj-ojj);
2143 goto stage2;
2144 }
2145 }
2146
2147 /* Probably something was changed */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002148 for (j = 4; j < g_partitions; j++)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002149 ptes[j].changed = 1;
2150}
2151
2152
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002153static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002154fix_partition_table_order(void)
2155{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002156 struct pte *pei, *pek;
2157 int i,k;
2158
2159 if (!wrong_p_order(NULL)) {
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002160 puts("Ordering is already correct\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002161 return;
2162 }
2163
2164 while ((i = wrong_p_order(&k)) != 0 && i < 4) {
2165 /* partition i should have come earlier, move it */
2166 /* We have to move data in the MBR */
2167 struct partition *pi, *pk, *pe, pbuf;
2168 pei = &ptes[i];
2169 pek = &ptes[k];
2170
2171 pe = pei->ext_pointer;
2172 pei->ext_pointer = pek->ext_pointer;
2173 pek->ext_pointer = pe;
2174
2175 pi = pei->part_table;
2176 pk = pek->part_table;
2177
2178 memmove(&pbuf, pi, sizeof(struct partition));
2179 memmove(pi, pk, sizeof(struct partition));
2180 memmove(pk, &pbuf, sizeof(struct partition));
2181
2182 pei->changed = pek->changed = 1;
2183 }
2184
2185 if (i)
2186 fix_chain_of_logicals();
2187
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002188 puts("Done");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002189}
2190#endif
2191
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002192static const char *
2193chs_string11(unsigned cyl, unsigned head, unsigned sect)
2194{
2195 char *buf = auto_string(xzalloc(sizeof(int)*3 * 3));
2196 sprintf(buf, "%u,%u,%u", cylinder(sect,cyl), head, sector(sect));
2197 return buf;
2198}
2199
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002200static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002201list_table(int xtra)
2202{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002203 int i, w;
2204
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002205 if (LABEL_IS_SUN) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002206 sun_list_table(xtra);
2207 return;
2208 }
Kevin Cernekeeccb07042010-10-25 02:00:24 +02002209 if (LABEL_IS_SGI) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002210 sgi_list_table(xtra);
2211 return;
2212 }
Kevin Cernekeeccb07042010-10-25 02:00:24 +02002213 if (LABEL_IS_GPT) {
2214 gpt_list_table(xtra);
2215 return;
2216 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002217
2218 list_disk_geometry();
2219
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002220 if (LABEL_IS_OSF) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002221 xbsd_print_disklabel(xtra);
2222 return;
2223 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002224
2225 /* Heuristic: we list partition 3 of /dev/foo as /dev/foo3,
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002226 * but if the device name ends in a digit, say /dev/foo1,
2227 * then the partition is called /dev/foo1p3.
2228 */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002229 w = strlen(disk_device);
2230 if (w && isdigit(disk_device[w-1]))
2231 w++;
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002232 if (w < 7)
2233 w = 7;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002234
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002235 printf("%-*s Boot StartCHS EndCHS StartLBA EndLBA Sectors Size Id Type\n",
2236 w-1, "Device");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002237
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002238 for (i = 0; i < g_partitions; i++) {
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002239 const struct partition *p;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002240 const struct pte *pe = &ptes[i];
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002241 char boot4[4];
2242 char numstr6[6];
2243 sector_t start_sect;
2244 sector_t end_sect;
2245 sector_t nr_sects;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002246
2247 p = pe->part_table;
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002248 if (!p || is_cleared_partition(p))
2249 continue;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002250
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002251 sprintf(boot4, "%02x", p->boot_ind);
2252 if ((p->boot_ind & 0x7f) == 0) {
2253 /* 0x80 shown as '*', 0x00 is ' ' */
2254 boot4[0] = p->boot_ind ? '*' : ' ';
2255 boot4[1] = ' ';
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002256 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002257
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002258 start_sect = get_partition_start_from_dev_start(pe);
2259 end_sect = start_sect;
2260 nr_sects = get_nr_sects(p);
2261 if (nr_sects != 0)
2262 end_sect += nr_sects - 1;
2263
2264 smart_ulltoa5((ullong)nr_sects * sector_size,
2265 numstr6, " KMGTPEZY")[0] = '\0';
2266
2267#define SFMT SECT_FMT
2268 // Boot StartCHS EndCHS StartLBA EndLBA Sectors Size Id Type
2269 printf("%s%s %-11s"/**/" %-11s"/**/" %10"SFMT"u %10"SFMT"u %10"SFMT"u %s %2x %s\n",
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002270 partname(disk_device, i+1, w+2),
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002271 boot4,
2272 chs_string11(p->cyl, p->head, p->sector),
2273 chs_string11(p->end_cyl, p->end_head, p->end_sector),
2274 start_sect,
2275 end_sect,
2276 nr_sects,
2277 numstr6,
2278 p->sys_ind,
2279 partition_type(p->sys_ind)
2280 );
2281#undef SFMT
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002282 check_consistency(p, i);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002283 }
2284
2285 /* Is partition table in disk order? It need not be, but... */
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002286 /* partition table entries are not checked for correct order
2287 * if this is a sgi, sun or aix labeled disk... */
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002288 if (LABEL_IS_DOS && wrong_p_order(NULL)) {
Rob Landley5527b912006-02-25 03:46:10 +00002289 /* FIXME */
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002290 puts("\nPartition table entries are not in disk order");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002291 }
2292}
2293
Denis Vlasenko834410a2006-11-29 12:00:28 +00002294#if ENABLE_FEATURE_FDISK_ADVANCED
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002295static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002296x_list_table(int extend)
2297{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002298 const struct pte *pe;
2299 const struct partition *p;
2300 int i;
2301
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002302 printf("\nDisk %s: %u heads, %u sectors, %u cylinders\n\n",
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002303 disk_device, g_heads, g_sectors, g_cylinders);
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002304 puts("Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID");
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002305 for (i = 0; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002306 pe = &ptes[i];
2307 p = (extend ? pe->ext_pointer : pe->part_table);
2308 if (p != NULL) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002309 printf("%2u %02x%4u%4u%5u%4u%4u%5u%11"SECT_FMT"u%11"SECT_FMT"u %02x\n",
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002310 i + 1, p->boot_ind,
2311 p->head,
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002312 sector(p->sector),
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002313 cylinder(p->sector, p->cyl),
2314 p->end_head,
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002315 sector(p->end_sector),
2316 cylinder(p->end_sector, p->end_cyl),
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002317 get_start_sect(p),
2318 get_nr_sects(p),
2319 p->sys_ind
2320 );
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002321 if (p->sys_ind)
2322 check_consistency(p, i);
2323 }
2324 }
2325}
2326#endif
2327
Denis Vlasenko834410a2006-11-29 12:00:28 +00002328#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002329static void
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002330fill_bounds(sector_t *first, sector_t *last)
Rob Landleyb73451d2006-02-24 16:29:00 +00002331{
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002332 unsigned i;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002333 const struct pte *pe = &ptes[0];
2334 const struct partition *p;
2335
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002336 for (i = 0; i < g_partitions; pe++,i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002337 p = pe->part_table;
Rob Landleyb73451d2006-02-24 16:29:00 +00002338 if (!p->sys_ind || IS_EXTENDED(p->sys_ind)) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002339 first[i] = 0xffffffff;
2340 last[i] = 0;
2341 } else {
Denys Vlasenkod958e902010-04-06 02:32:26 +02002342 first[i] = get_partition_start_from_dev_start(pe);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002343 last[i] = first[i] + get_nr_sects(p) - 1;
2344 }
2345 }
2346}
2347
2348static void
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002349check(int n, unsigned h, unsigned s, unsigned c, sector_t start)
Rob Landleyb73451d2006-02-24 16:29:00 +00002350{
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002351 sector_t total, real_s, real_c;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002352
2353 real_s = sector(s) - 1;
2354 real_c = cylinder(s, c);
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002355 total = (real_c * g_sectors + real_s) * g_heads + h;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002356 if (!total)
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002357 printf("Partition %u contains sector 0\n", n);
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002358 if (h >= g_heads)
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002359 printf("Partition %u: head %u greater than maximum %u\n",
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002360 n, h + 1, g_heads);
2361 if (real_s >= g_sectors)
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002362 printf("Partition %u: sector %u greater than "
2363 "maximum %u\n", n, s, g_sectors);
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002364 if (real_c >= g_cylinders)
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002365 printf("Partition %u: cylinder %"SECT_FMT"u greater than "
2366 "maximum %u\n", n, real_c + 1, g_cylinders);
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002367 if (g_cylinders <= 1024 && start != total)
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002368 printf("Partition %u: previous sectors %"SECT_FMT"u disagrees with "
2369 "total %"SECT_FMT"u\n", n, start, total);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002370}
2371
2372static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002373verify(void)
2374{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002375 int i, j;
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002376 sector_t total = 1;
Denys Vlasenko29483ff2016-08-23 17:18:45 +02002377 sector_t chs_size;
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002378 sector_t first[g_partitions], last[g_partitions];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002379 struct partition *p;
2380
2381 if (warn_geometry())
2382 return;
2383
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002384 if (LABEL_IS_SUN) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002385 verify_sun();
2386 return;
2387 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002388 if (LABEL_IS_SGI) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002389 verify_sgi(1);
2390 return;
2391 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002392
2393 fill_bounds(first, last);
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002394 for (i = 0; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002395 struct pte *pe = &ptes[i];
2396
2397 p = pe->part_table;
Rob Landleyb73451d2006-02-24 16:29:00 +00002398 if (p->sys_ind && !IS_EXTENDED(p->sys_ind)) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002399 check_consistency(p, i);
Denys Vlasenkod958e902010-04-06 02:32:26 +02002400 if (get_partition_start_from_dev_start(pe) < first[i])
Denis Vlasenkobd852072007-03-19 14:43:38 +00002401 printf("Warning: bad start-of-data in "
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002402 "partition %u\n", i + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002403 check(i + 1, p->end_head, p->end_sector, p->end_cyl,
2404 last[i]);
2405 total += last[i] + 1 - first[i];
Denis Vlasenkobd852072007-03-19 14:43:38 +00002406 for (j = 0; j < i; j++) {
2407 if ((first[i] >= first[j] && first[i] <= last[j])
2408 || ((last[i] <= last[j] && last[i] >= first[j]))) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002409 printf("Warning: partition %u overlaps "
2410 "partition %u\n", j + 1, i + 1);
Denis Vlasenkobd852072007-03-19 14:43:38 +00002411 total += first[i] >= first[j] ?
2412 first[i] : first[j];
2413 total -= last[i] <= last[j] ?
2414 last[i] : last[j];
2415 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002416 }
2417 }
2418 }
2419
2420 if (extended_offset) {
2421 struct pte *pex = &ptes[ext_index];
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002422 sector_t e_last = get_start_sect(pex->part_table) +
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002423 get_nr_sects(pex->part_table) - 1;
2424
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002425 for (i = 4; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002426 total++;
2427 p = ptes[i].part_table;
2428 if (!p->sys_ind) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002429 if (i != 4 || i + 1 < g_partitions)
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002430 printf("Warning: partition %u "
Denis Vlasenkobd852072007-03-19 14:43:38 +00002431 "is empty\n", i + 1);
2432 } else if (first[i] < extended_offset || last[i] > e_last) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002433 printf("Logical partition %u not entirely in "
2434 "partition %u\n", i + 1, ext_index + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002435 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002436 }
2437 }
2438
Denys Vlasenko29483ff2016-08-23 17:18:45 +02002439 chs_size = (sector_t)g_heads * g_sectors * g_cylinders;
2440 if (total > chs_size)
2441 printf("Total allocated sectors %u"
2442 " greater than CHS size %"SECT_FMT"u\n",
2443 total, chs_size
2444 );
Denis Vlasenkobd852072007-03-19 14:43:38 +00002445 else {
Denys Vlasenko29483ff2016-08-23 17:18:45 +02002446 total = chs_size - total;
Denis Vlasenkobd852072007-03-19 14:43:38 +00002447 if (total != 0)
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002448 printf("%"SECT_FMT"u unallocated sectors\n", total);
Denis Vlasenkobd852072007-03-19 14:43:38 +00002449 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002450}
2451
2452static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002453add_partition(int n, int sys)
2454{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002455 char mesg[256]; /* 48 does not suffice in Japanese */
Mike Frysingerfa6c4842006-05-26 01:48:17 +00002456 int i, num_read = 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002457 struct partition *p = ptes[n].part_table;
2458 struct partition *q = ptes[ext_index].part_table;
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002459 sector_t limit, temp;
2460 sector_t start, stop = 0;
2461 sector_t first[g_partitions], last[g_partitions];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002462
2463 if (p && p->sys_ind) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00002464 printf(msg_part_already_defined, n + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002465 return;
2466 }
2467 fill_bounds(first, last);
2468 if (n < 4) {
2469 start = sector_offset;
Eric Andersen040f4402003-07-30 08:40:37 +00002470 if (display_in_cyl_units || !total_number_of_sectors)
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002471 limit = (sector_t) g_heads * g_sectors * g_cylinders - 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002472 else
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002473 limit = total_number_of_sectors - 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002474 if (extended_offset) {
2475 first[ext_index] = extended_offset;
2476 last[ext_index] = get_start_sect(q) +
2477 get_nr_sects(q) - 1;
2478 }
2479 } else {
2480 start = extended_offset + sector_offset;
2481 limit = get_start_sect(q) + get_nr_sects(q) - 1;
2482 }
2483 if (display_in_cyl_units)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002484 for (i = 0; i < g_partitions; i++)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002485 first[i] = (cround(first[i]) - 1) * units_per_sector;
2486
Denys Vlasenkod8e4ce02019-10-04 16:45:04 +02002487 snprintf(mesg, sizeof(mesg), "First %s", str_units());
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002488 do {
2489 temp = start;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002490 for (i = 0; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002491 int lastplusoff;
2492
Denys Vlasenkod958e902010-04-06 02:32:26 +02002493 if (start == ptes[i].offset_from_dev_start)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002494 start += sector_offset;
Rob Landleyb73451d2006-02-24 16:29:00 +00002495 lastplusoff = last[i] + ((n < 4) ? 0 : sector_offset);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002496 if (start >= first[i] && start <= lastplusoff)
2497 start = lastplusoff + 1;
2498 }
2499 if (start > limit)
2500 break;
Mike Frysingerfa6c4842006-05-26 01:48:17 +00002501 if (start >= temp+units_per_sector && num_read) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002502 printf("Sector %"SECT_FMT"u is already allocated\n", temp);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002503 temp = start;
Mike Frysingerfa6c4842006-05-26 01:48:17 +00002504 num_read = 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002505 }
Mike Frysingerfa6c4842006-05-26 01:48:17 +00002506 if (!num_read && start == temp) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002507 sector_t saved_start;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002508
2509 saved_start = start;
Denys Vlasenkod958e902010-04-06 02:32:26 +02002510 start = read_int(cround(saved_start), cround(saved_start), cround(limit), 0, mesg);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002511 if (display_in_cyl_units) {
2512 start = (start - 1) * units_per_sector;
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002513 if (start < saved_start)
2514 start = saved_start;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002515 }
Mike Frysingerfa6c4842006-05-26 01:48:17 +00002516 num_read = 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002517 }
Mike Frysingerfa6c4842006-05-26 01:48:17 +00002518 } while (start != temp || !num_read);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002519 if (n > 4) { /* NOT for fifth partition */
2520 struct pte *pe = &ptes[n];
2521
Denys Vlasenkod958e902010-04-06 02:32:26 +02002522 pe->offset_from_dev_start = start - sector_offset;
2523 if (pe->offset_from_dev_start == extended_offset) { /* must be corrected */
2524 pe->offset_from_dev_start++;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002525 if (sector_offset == 1)
2526 start++;
2527 }
2528 }
2529
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002530 for (i = 0; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002531 struct pte *pe = &ptes[i];
2532
Denys Vlasenkod958e902010-04-06 02:32:26 +02002533 if (start < pe->offset_from_dev_start && limit >= pe->offset_from_dev_start)
2534 limit = pe->offset_from_dev_start - 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002535 if (start < first[i] && limit >= first[i])
2536 limit = first[i] - 1;
2537 }
2538 if (start > limit) {
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002539 puts("No free sectors available");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002540 if (n > 4)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002541 g_partitions--;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002542 return;
2543 }
2544 if (cround(start) == cround(limit)) {
2545 stop = limit;
2546 } else {
2547 snprintf(mesg, sizeof(mesg),
Denys Vlasenkoc1045492018-07-25 13:45:36 +02002548 "Last %s or +size{,K,M,G,T}",
Denys Vlasenkod8e4ce02019-10-04 16:45:04 +02002549 str_units()
Denys Vlasenkoc1045492018-07-25 13:45:36 +02002550 );
Denys Vlasenkod958e902010-04-06 02:32:26 +02002551 stop = read_int(cround(start), cround(limit), cround(limit), cround(start), mesg);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002552 if (display_in_cyl_units) {
2553 stop = stop * units_per_sector - 1;
2554 if (stop >limit)
2555 stop = limit;
2556 }
2557 }
2558
2559 set_partition(n, 0, start, stop, sys);
2560 if (n > 4)
Denys Vlasenkod958e902010-04-06 02:32:26 +02002561 set_partition(n - 1, 1, ptes[n].offset_from_dev_start, stop, EXTENDED);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002562
Rob Landleyb73451d2006-02-24 16:29:00 +00002563 if (IS_EXTENDED(sys)) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002564 struct pte *pe4 = &ptes[4];
2565 struct pte *pen = &ptes[n];
2566
2567 ext_index = n;
2568 pen->ext_pointer = p;
Denys Vlasenkod958e902010-04-06 02:32:26 +02002569 pe4->offset_from_dev_start = extended_offset = start;
Rob Landley081e3842006-08-03 20:07:35 +00002570 pe4->sectorbuffer = xzalloc(sector_size);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002571 pe4->part_table = pt_offset(pe4->sectorbuffer, 0);
2572 pe4->ext_pointer = pe4->part_table + 1;
2573 pe4->changed = 1;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002574 g_partitions = 5;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002575 }
2576}
2577
2578static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002579add_logical(void)
2580{
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002581 if (g_partitions > 5 || ptes[4].part_table->sys_ind) {
2582 struct pte *pe = &ptes[g_partitions];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002583
Rob Landley081e3842006-08-03 20:07:35 +00002584 pe->sectorbuffer = xzalloc(sector_size);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002585 pe->part_table = pt_offset(pe->sectorbuffer, 0);
2586 pe->ext_pointer = pe->part_table + 1;
Denys Vlasenkod958e902010-04-06 02:32:26 +02002587 pe->offset_from_dev_start = 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002588 pe->changed = 1;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002589 g_partitions++;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002590 }
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002591 add_partition(g_partitions - 1, LINUX_NATIVE);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002592}
2593
2594static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002595new_partition(void)
2596{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002597 int i, free_primary = 0;
2598
2599 if (warn_geometry())
2600 return;
2601
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002602 if (LABEL_IS_SUN) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002603 add_sun_partition(get_partition(0, g_partitions), LINUX_NATIVE);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002604 return;
2605 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002606 if (LABEL_IS_SGI) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002607 sgi_add_partition(get_partition(0, g_partitions), LINUX_NATIVE);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002608 return;
2609 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002610 if (LABEL_IS_AIX) {
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002611 puts("Sorry - this fdisk cannot handle AIX disk labels.\n"
Denis Vlasenkobd852072007-03-19 14:43:38 +00002612"If you want to add DOS-type partitions, create a new empty DOS partition\n"
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002613"table first (use 'o'). This will destroy the present disk contents.");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002614 return;
2615 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002616
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002617 for (i = 0; i < 4; i++)
2618 free_primary += !ptes[i].part_table->sys_ind;
Eric Andersenc48d49a2003-07-03 10:02:32 +00002619
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002620 if (!free_primary && g_partitions >= MAXIMUM_PARTS) {
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002621 puts("The maximum number of partitions has been created");
Eric Andersen84bdea82004-05-19 10:49:17 +00002622 return;
Rob Landleyb73451d2006-02-24 16:29:00 +00002623 }
Eric Andersenc48d49a2003-07-03 10:02:32 +00002624
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002625 if (!free_primary) {
2626 if (extended_offset)
2627 add_logical();
2628 else
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002629 puts("You must delete some partition and add "
2630 "an extended partition first");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002631 } else {
Denis Vlasenkodfce08f2007-03-19 14:45:10 +00002632 char c, line[80];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002633 snprintf(line, sizeof(line),
Denys Vlasenkoc1045492018-07-25 13:45:36 +02002634 "Partition type\n"
2635 " p primary partition (1-4)\n"
2636 " %s\n",
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002637 (extended_offset ?
2638 "l logical (5 or over)" : "e extended"));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002639 while (1) {
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002640 c = read_nonempty(line);
Denys Vlasenko1ab38992018-07-25 14:42:53 +02002641 c |= 0x20; /* lowercase */
2642 if (c == 'p') {
2643 i = get_nonexisting_partition();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002644 if (i >= 0)
2645 add_partition(i, LINUX_NATIVE);
2646 return;
2647 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00002648 if (c == 'l' && extended_offset) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002649 add_logical();
2650 return;
2651 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00002652 if (c == 'e' && !extended_offset) {
Denys Vlasenko1ab38992018-07-25 14:42:53 +02002653 i = get_nonexisting_partition();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002654 if (i >= 0)
2655 add_partition(i, EXTENDED);
2656 return;
2657 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00002658 printf("Invalid partition number "
2659 "for type '%c'\n", c);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002660 }
2661 }
2662}
2663
2664static void
Denys Vlasenkob347df92011-08-09 22:49:15 +02002665reread_partition_table(int leave)
2666{
2667 int i;
2668
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002669 puts("Calling ioctl() to re-read partition table");
Denys Vlasenkob347df92011-08-09 22:49:15 +02002670 sync();
2671 /* Users with slow external USB disks on a 320MHz ARM system (year 2011)
2672 * report that sleep is needed, otherwise BLKRRPART may fail with -EIO:
2673 */
Denys Vlasenkoec16c032020-11-29 11:37:34 +01002674 sleep1();
Denys Vlasenkob347df92011-08-09 22:49:15 +02002675 i = ioctl_or_perror(dev_fd, BLKRRPART, NULL,
2676 "WARNING: rereading partition table "
2677 "failed, kernel still uses old table");
2678#if 0
2679 if (dos_changed)
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002680 puts(
Denys Vlasenkob347df92011-08-09 22:49:15 +02002681 "\nWARNING: If you have created or modified any DOS 6.x\n"
2682 "partitions, please see the fdisk manual page for additional\n"
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002683 "information");
Denys Vlasenkob347df92011-08-09 22:49:15 +02002684#endif
2685
2686 if (leave) {
2687 if (ENABLE_FEATURE_CLEAN_UP)
2688 close_dev_fd();
2689 exit(i != 0);
2690 }
2691}
2692
2693static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002694write_table(void)
2695{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002696 int i;
2697
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002698 if (LABEL_IS_DOS) {
Rob Landleyb73451d2006-02-24 16:29:00 +00002699 for (i = 0; i < 3; i++)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002700 if (ptes[i].changed)
2701 ptes[3].changed = 1;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002702 for (i = 3; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002703 struct pte *pe = &ptes[i];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002704 if (pe->changed) {
2705 write_part_table_flag(pe->sectorbuffer);
Denys Vlasenkod958e902010-04-06 02:32:26 +02002706 write_sector(pe->offset_from_dev_start, pe->sectorbuffer);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002707 }
2708 }
2709 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002710 else if (LABEL_IS_SGI) {
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002711 /* no test on change? the "altered" msg below might be mistaken */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002712 sgi_write_table();
2713 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002714 else if (LABEL_IS_SUN) {
Denys Vlasenko80856b32011-07-13 09:06:32 +02002715 for (i = 0; i < 8; i++) {
2716 if (ptes[i].changed) {
2717 sun_write_table();
2718 break;
2719 }
2720 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002721 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002722
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002723 puts("The partition table has been altered.");
Denys Vlasenkob347df92011-08-09 22:49:15 +02002724 reread_partition_table(1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002725}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002726#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002727
Denis Vlasenko834410a2006-11-29 12:00:28 +00002728#if ENABLE_FEATURE_FDISK_ADVANCED
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002729#define MAX_PER_LINE 16
2730static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002731print_buffer(char *pbuffer)
2732{
2733 int i,l;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002734
2735 for (i = 0, l = 0; i < sector_size; i++, l++) {
2736 if (l == 0)
2737 printf("0x%03X:", i);
2738 printf(" %02X", (unsigned char) pbuffer[i]);
2739 if (l == MAX_PER_LINE - 1) {
Denis Vlasenko4daad902007-09-27 10:20:47 +00002740 bb_putchar('\n');
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002741 l = -1;
2742 }
2743 }
2744 if (l > 0)
Denis Vlasenko4daad902007-09-27 10:20:47 +00002745 bb_putchar('\n');
2746 bb_putchar('\n');
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002747}
2748
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002749static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002750print_raw(void)
2751{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002752 int i;
2753
Denis Vlasenkobd852072007-03-19 14:43:38 +00002754 printf("Device: %s\n", disk_device);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002755 if (LABEL_IS_SGI || LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002756 print_buffer(MBRbuffer);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002757 else {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002758 for (i = 3; i < g_partitions; i++)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002759 print_buffer(ptes[i].sectorbuffer);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002760 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002761}
2762
2763static void
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002764move_begin(unsigned i)
Rob Landleyb73451d2006-02-24 16:29:00 +00002765{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002766 struct pte *pe = &ptes[i];
2767 struct partition *p = pe->part_table;
Denys Vlasenkod958e902010-04-06 02:32:26 +02002768 sector_t new, first, nr_sects;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002769
2770 if (warn_geometry())
2771 return;
Denys Vlasenkod958e902010-04-06 02:32:26 +02002772 nr_sects = get_nr_sects(p);
2773 if (!p->sys_ind || !nr_sects || IS_EXTENDED(p->sys_ind)) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002774 printf("Partition %u has no data area\n", i + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002775 return;
2776 }
Denys Vlasenkofcad7682010-04-06 16:56:33 +02002777 first = get_partition_start_from_dev_start(pe); /* == pe->offset_from_dev_start + get_start_sect(p) */
Denys Vlasenkod958e902010-04-06 02:32:26 +02002778 new = read_int(0 /*was:first*/, first, first + nr_sects - 1, first, "New beginning of data");
2779 if (new != first) {
2780 sector_t new_relative = new - pe->offset_from_dev_start;
2781 nr_sects += (get_start_sect(p) - new_relative);
2782 set_start_sect(p, new_relative);
2783 set_nr_sects(p, nr_sects);
2784 read_nonempty("Recalculate C/H/S values? (Y/N): ");
2785 if ((line_ptr[0] | 0x20) == 'y')
2786 set_hsc_start_end(p, new, new + nr_sects - 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002787 pe->changed = 1;
2788 }
2789}
2790
2791static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002792xselect(void)
2793{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002794 char c;
2795
Rob Landleyb73451d2006-02-24 16:29:00 +00002796 while (1) {
Denis Vlasenko4daad902007-09-27 10:20:47 +00002797 bb_putchar('\n');
Denys Vlasenkod958e902010-04-06 02:32:26 +02002798 c = 0x20 | read_nonempty("Expert command (m for help): ");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002799 switch (c) {
2800 case 'a':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002801 if (LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002802 sun_set_alt_cyl();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002803 break;
2804 case 'b':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002805 if (LABEL_IS_DOS)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002806 move_begin(get_partition(0, g_partitions));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002807 break;
2808 case 'c':
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002809 user_cylinders = g_cylinders =
2810 read_int(1, g_cylinders, 1048576, 0,
Denis Vlasenkobd852072007-03-19 14:43:38 +00002811 "Number of cylinders");
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002812 if (LABEL_IS_SUN)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002813 sun_set_ncyl(g_cylinders);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002814 if (LABEL_IS_DOS)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002815 warn_cylinders();
2816 break;
2817 case 'd':
2818 print_raw();
2819 break;
2820 case 'e':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002821 if (LABEL_IS_SGI)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002822 sgi_set_xcyl();
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002823 else if (LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002824 sun_set_xcyl();
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002825 else if (LABEL_IS_DOS)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002826 x_list_table(1);
2827 break;
2828 case 'f':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002829 if (LABEL_IS_DOS)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002830 fix_partition_table_order();
2831 break;
2832 case 'g':
Denis Vlasenko834410a2006-11-29 12:00:28 +00002833#if ENABLE_FEATURE_SGI_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002834 create_sgilabel();
2835#endif
2836 break;
2837 case 'h':
Denys Vlasenkod958e902010-04-06 02:32:26 +02002838 user_heads = g_heads = read_int(1, g_heads, 256, 0, "Number of heads");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002839 update_units();
2840 break;
2841 case 'i':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002842 if (LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002843 sun_set_ilfact();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002844 break;
2845 case 'o':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002846 if (LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002847 sun_set_rspeed();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002848 break;
2849 case 'p':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002850 if (LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002851 list_table(1);
2852 else
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002853 x_list_table(0);
2854 break;
2855 case 'q':
Denis Vlasenko4437d192008-04-17 00:12:10 +00002856 if (ENABLE_FEATURE_CLEAN_UP)
Denis Vlasenkoc033d512008-04-17 01:52:28 +00002857 close_dev_fd();
Denis Vlasenko4daad902007-09-27 10:20:47 +00002858 bb_putchar('\n');
Denys Vlasenkodb5546c2022-01-05 22:16:06 +01002859 exit_SUCCESS();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002860 case 'r':
2861 return;
2862 case 's':
Denys Vlasenkod958e902010-04-06 02:32:26 +02002863 user_sectors = g_sectors = read_int(1, g_sectors, 63, 0, "Number of sectors");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002864 if (dos_compatible_flag) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002865 sector_offset = g_sectors;
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002866 puts("Warning: setting sector offset for DOS "
Denys Vlasenkoc52dc0e2017-08-10 15:12:11 +02002867 "compatibility");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002868 }
2869 update_units();
2870 break;
2871 case 'v':
2872 verify();
2873 break;
2874 case 'w':
2875 write_table(); /* does not return */
2876 break;
2877 case 'y':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002878 if (LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002879 sun_set_pcylcount();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002880 break;
2881 default:
2882 xmenu();
2883 }
2884 }
2885}
2886#endif /* ADVANCED mode */
2887
2888static int
Rob Landleyb73451d2006-02-24 16:29:00 +00002889is_ide_cdrom_or_tape(const char *device)
2890{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002891 FILE *procf;
2892 char buf[100];
2893 struct stat statbuf;
2894 int is_ide = 0;
2895
2896 /* No device was given explicitly, and we are trying some
2897 likely things. But opening /dev/hdc may produce errors like
2898 "hdc: tray open or drive not ready"
2899 if it happens to be a CD-ROM drive. It even happens that
2900 the process hangs on the attempt to read a music CD.
2901 So try to be careful. This only works since 2.1.73. */
2902
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01002903 if (!is_prefixed_with(device, "/dev/hd"))
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002904 return 0;
2905
2906 snprintf(buf, sizeof(buf), "/proc/ide/%s/media", device+5);
Denis Vlasenko5415c852008-07-21 23:05:26 +00002907 procf = fopen_for_read(buf);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002908 if (procf != NULL && fgets(buf, sizeof(buf), procf))
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01002909 is_ide = (is_prefixed_with(buf, "cdrom") ||
2910 is_prefixed_with(buf, "tape"));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002911 else
2912 /* Now when this proc file does not exist, skip the
2913 device when it is read-only. */
2914 if (stat(device, &statbuf) == 0)
2915 is_ide = ((statbuf.st_mode & 0222) == 0);
2916
2917 if (procf)
2918 fclose(procf);
2919 return is_ide;
2920}
2921
Rob Landley5527b912006-02-25 03:46:10 +00002922
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002923static void
Denis Vlasenko4437d192008-04-17 00:12:10 +00002924open_list_and_close(const char *device, int user_specified)
Rob Landleyb73451d2006-02-24 16:29:00 +00002925{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002926 int gb;
2927
2928 disk_device = device;
2929 if (setjmp(listingbuf))
2930 return;
2931 if (!user_specified)
2932 if (is_ide_cdrom_or_tape(device))
2933 return;
Denis Vlasenko4437d192008-04-17 00:12:10 +00002934
2935 /* Open disk_device, save file descriptor to dev_fd */
2936 errno = 0;
2937 gb = get_boot(TRY_ONLY);
2938 if (gb > 0) { /* I/O error */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002939 /* Ignore other errors, since we try IDE
2940 and SCSI hard disks which may not be
2941 installed on the system. */
Denis Vlasenko4437d192008-04-17 00:12:10 +00002942 if (user_specified || errno == EACCES)
2943 bb_perror_msg("can't open '%s'", device);
2944 return;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002945 }
Denis Vlasenko4437d192008-04-17 00:12:10 +00002946
2947 if (gb < 0) { /* no DOS signature */
2948 list_disk_geometry();
2949 if (LABEL_IS_AIX)
2950 goto ret;
2951#if ENABLE_FEATURE_OSF_LABEL
2952 if (bsd_trydev(device) < 0)
2953#endif
2954 printf("Disk %s doesn't contain a valid "
2955 "partition table\n", device);
2956 } else {
2957 list_table(0);
2958#if ENABLE_FEATURE_FDISK_WRITABLE
2959 if (!LABEL_IS_SUN && g_partitions > 4) {
2960 delete_partition(ext_index);
2961 }
2962#endif
2963 }
2964 ret:
Denis Vlasenkoc033d512008-04-17 01:52:28 +00002965 close_dev_fd();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002966}
2967
Lauri Kasanen9cfcc4d2011-04-30 21:31:05 +02002968/* Is it a whole disk? The digit check is still useful
2969 for Xen devices for example. */
2970static int is_whole_disk(const char *disk)
2971{
2972 unsigned len;
2973 int fd = open(disk, O_RDONLY);
2974
2975 if (fd != -1) {
2976 struct hd_geometry geometry;
2977 int err = ioctl(fd, HDIO_GETGEO, &geometry);
2978 close(fd);
2979 if (!err)
2980 return (geometry.start == 0);
2981 }
2982
2983 /* Treat "nameN" as a partition name, not whole disk */
2984 /* note: mmcblk0 should work from the geometry check above */
2985 len = strlen(disk);
2986 if (len != 0 && isdigit(disk[len - 1]))
2987 return 0;
2988
2989 return 1;
2990}
2991
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002992/* for fdisk -l: try all things in /proc/partitions
2993 that look like a partition name (do not end in a digit) */
2994static void
Denis Vlasenko4437d192008-04-17 00:12:10 +00002995list_devs_in_proc_partititons(void)
Rob Landleyb73451d2006-02-24 16:29:00 +00002996{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002997 FILE *procpt;
Lauri Kasanen9cfcc4d2011-04-30 21:31:05 +02002998 char line[100], ptname[100], devname[120];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002999 int ma, mi, sz;
3000
Denis Vlasenkoddec5af2006-10-26 23:25:17 +00003001 procpt = fopen_or_warn("/proc/partitions", "r");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003002
3003 while (fgets(line, sizeof(line), procpt)) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02003004 if (sscanf(line, " %u %u %u %[^\n ]",
Rob Landleyb73451d2006-02-24 16:29:00 +00003005 &ma, &mi, &sz, ptname) != 4)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003006 continue;
Lauri Kasanen9cfcc4d2011-04-30 21:31:05 +02003007
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00003008 sprintf(devname, "/dev/%s", ptname);
Lauri Kasanen9cfcc4d2011-04-30 21:31:05 +02003009 if (is_whole_disk(devname))
3010 open_list_and_close(devname, 0);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003011 }
Denis Vlasenko834410a2006-11-29 12:00:28 +00003012#if ENABLE_FEATURE_CLEAN_UP
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003013 fclose(procpt);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00003014#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003015}
3016
Denis Vlasenko834410a2006-11-29 12:00:28 +00003017#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003018static void
Rob Landleyb73451d2006-02-24 16:29:00 +00003019unknown_command(int c)
3020{
Denis Vlasenkobd852072007-03-19 14:43:38 +00003021 printf("%c: unknown command\n", c);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003022}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00003023#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003024
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00003025int fdisk_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenkoe992bae2009-11-28 15:18:53 +01003026int fdisk_main(int argc UNUSED_PARAM, char **argv)
Rob Landleyb73451d2006-02-24 16:29:00 +00003027{
Denis Vlasenko834410a2006-11-29 12:00:28 +00003028 unsigned opt;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003029 /*
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003030 * fdisk -v
3031 * fdisk -l [-b sectorsize] [-u] device ...
3032 * fdisk -s [partition] ...
3033 * fdisk [-b sectorsize] [-u] device
3034 *
3035 * Options -C, -H, -S set the geometry.
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003036 */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00003037 INIT_G();
Denis Vlasenko8e1a0cc2007-03-18 14:42:45 +00003038
Denis Vlasenkoc033d512008-04-17 01:52:28 +00003039 close_dev_fd(); /* needed: fd 3 must not stay closed */
Denis Vlasenko4437d192008-04-17 00:12:10 +00003040
Denys Vlasenko237bedd2016-07-06 21:58:02 +02003041 opt = getopt32(argv, "b:+C:+H:+lS:+u" IF_FEATURE_FDISK_BLKSIZE("s"),
Denis Vlasenko04e11c92008-02-10 19:44:20 +00003042 &sector_size, &user_cylinders, &user_heads, &user_sectors);
Denis Vlasenko834410a2006-11-29 12:00:28 +00003043 argv += optind;
Denys Vlasenkod958e902010-04-06 02:32:26 +02003044 if (opt & OPT_b) {
Denis Vlasenko834410a2006-11-29 12:00:28 +00003045 /* Ugly: this sector size is really per device,
Denys Vlasenkod958e902010-04-06 02:32:26 +02003046 * so cannot be combined with multiple disks,
3047 * and the same goes for the C/H/S options.
3048 */
3049 if (sector_size < 512
3050 || sector_size > 0x10000
3051 || (sector_size & (sector_size-1)) /* not power of 2 */
3052 ) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00003053 bb_show_usage();
Denys Vlasenkod958e902010-04-06 02:32:26 +02003054 }
Denis Vlasenko834410a2006-11-29 12:00:28 +00003055 sector_offset = 2;
3056 user_set_sector_size = 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003057 }
Denis Vlasenko04e11c92008-02-10 19:44:20 +00003058 if (user_heads <= 0 || user_heads >= 256)
3059 user_heads = 0;
3060 if (user_sectors <= 0 || user_sectors >= 64)
3061 user_sectors = 0;
3062 if (opt & OPT_u)
3063 display_in_cyl_units = 0; // -u
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003064
Denis Vlasenko834410a2006-11-29 12:00:28 +00003065#if ENABLE_FEATURE_FDISK_WRITABLE
3066 if (opt & OPT_l) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003067 nowarn = 1;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00003068#endif
Denis Vlasenkocdf62772008-03-17 08:42:43 +00003069 if (*argv) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003070 listing = 1;
Denis Vlasenkocdf62772008-03-17 08:42:43 +00003071 do {
Denis Vlasenko4437d192008-04-17 00:12:10 +00003072 open_list_and_close(*argv, 1);
Denis Vlasenkocdf62772008-03-17 08:42:43 +00003073 } while (*++argv);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003074 } else {
Denis Vlasenkocdf62772008-03-17 08:42:43 +00003075 /* we don't have device names, */
3076 /* use /proc/partitions instead */
Denis Vlasenko4437d192008-04-17 00:12:10 +00003077 list_devs_in_proc_partititons();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003078 }
3079 return 0;
Denis Vlasenko834410a2006-11-29 12:00:28 +00003080#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003081 }
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00003082#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003083
Denis Vlasenko834410a2006-11-29 12:00:28 +00003084#if ENABLE_FEATURE_FDISK_BLKSIZE
3085 if (opt & OPT_s) {
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00003086 int j;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003087
3088 nowarn = 1;
Denys Vlasenkoe992bae2009-11-28 15:18:53 +01003089 if (!argv[0])
Manuel Novoa III cad53642003-03-19 09:13:01 +00003090 bb_show_usage();
Denys Vlasenkoe992bae2009-11-28 15:18:53 +01003091 for (j = 0; argv[j]; j++) {
Denis Vlasenkocdf62772008-03-17 08:42:43 +00003092 unsigned long long size;
3093 fd = xopen(argv[j], O_RDONLY);
Denis Vlasenko4437d192008-04-17 00:12:10 +00003094 size = bb_BLKGETSIZE_sectors(fd) / 2;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003095 close(fd);
Denys Vlasenkoe992bae2009-11-28 15:18:53 +01003096 if (argv[1])
Denys Vlasenkoddf78502009-09-16 03:03:13 +02003097 printf("%llu\n", size);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003098 else
Denys Vlasenkoddf78502009-09-16 03:03:13 +02003099 printf("%s: %llu\n", argv[j], size);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003100 }
3101 return 0;
3102 }
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00003103#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003104
Denis Vlasenko834410a2006-11-29 12:00:28 +00003105#if ENABLE_FEATURE_FDISK_WRITABLE
Denys Vlasenkoe992bae2009-11-28 15:18:53 +01003106 if (!argv[0] || argv[1])
Manuel Novoa III cad53642003-03-19 09:13:01 +00003107 bb_show_usage();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003108
Denis Vlasenko834410a2006-11-29 12:00:28 +00003109 disk_device = argv[0];
Denis Vlasenko4437d192008-04-17 00:12:10 +00003110 get_boot(OPEN_MAIN);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003111
Denis Vlasenko98ae2162006-10-12 19:30:44 +00003112 if (LABEL_IS_OSF) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003113 /* OSF label, and no DOS label */
Denis Vlasenkobd852072007-03-19 14:43:38 +00003114 printf("Detected an OSF/1 disklabel on %s, entering "
3115 "disklabel mode\n", disk_device);
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +00003116 bsd_select();
Rob Landley5527b912006-02-25 03:46:10 +00003117 /*Why do we do this? It seems to be counter-intuitive*/
Denis Vlasenko4437d192008-04-17 00:12:10 +00003118 current_label_type = LABEL_DOS;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003119 /* If we return we may want to make an empty DOS label? */
3120 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003121
3122 while (1) {
Denis Vlasenko3bba5452006-12-30 17:57:03 +00003123 int c;
Denis Vlasenko4daad902007-09-27 10:20:47 +00003124 bb_putchar('\n');
Denys Vlasenkod958e902010-04-06 02:32:26 +02003125 c = 0x20 | read_nonempty("Command (m for help): ");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003126 switch (c) {
3127 case 'a':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00003128 if (LABEL_IS_DOS)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00003129 toggle_active(get_partition(1, g_partitions));
Denis Vlasenko98ae2162006-10-12 19:30:44 +00003130 else if (LABEL_IS_SUN)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00003131 toggle_sunflags(get_partition(1, g_partitions),
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003132 0x01);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00003133 else if (LABEL_IS_SGI)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003134 sgi_set_bootpartition(
Denis Vlasenkof77f3692007-12-16 17:22:33 +00003135 get_partition(1, g_partitions));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003136 else
3137 unknown_command(c);
3138 break;
3139 case 'b':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00003140 if (LABEL_IS_SGI) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00003141 printf("\nThe current boot file is: %s\n",
Rob Landleyb73451d2006-02-24 16:29:00 +00003142 sgi_get_bootfile());
Denis Vlasenkobd852072007-03-19 14:43:38 +00003143 if (read_maybe_empty("Please enter the name of the "
Denys Vlasenko69675782013-01-14 01:34:48 +01003144 "new boot file: ") == '\n')
Denys Vlasenkod60752f2015-10-07 22:42:45 +02003145 puts("Boot file unchanged");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003146 else
3147 sgi_set_bootfile(line_ptr);
Denis Vlasenko834410a2006-11-29 12:00:28 +00003148 }
3149#if ENABLE_FEATURE_OSF_LABEL
3150 else
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +00003151 bsd_select();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003152#endif
3153 break;
3154 case 'c':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00003155 if (LABEL_IS_DOS)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003156 toggle_dos_compatibility_flag();
Denis Vlasenko98ae2162006-10-12 19:30:44 +00003157 else if (LABEL_IS_SUN)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00003158 toggle_sunflags(get_partition(1, g_partitions),
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003159 0x10);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00003160 else if (LABEL_IS_SGI)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003161 sgi_set_swappartition(
Denis Vlasenkof77f3692007-12-16 17:22:33 +00003162 get_partition(1, g_partitions));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003163 else
3164 unknown_command(c);
3165 break;
3166 case 'd':
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00003167 {
Eric Andersen040f4402003-07-30 08:40:37 +00003168 int j;
Eric Andersen040f4402003-07-30 08:40:37 +00003169 /* If sgi_label then don't use get_existing_partition,
3170 let the user select a partition, since
3171 get_existing_partition() only works for Linux-like
3172 partition tables */
Denis Vlasenko98ae2162006-10-12 19:30:44 +00003173 if (!LABEL_IS_SGI) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00003174 j = get_existing_partition(1, g_partitions);
Eric Andersen040f4402003-07-30 08:40:37 +00003175 } else {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00003176 j = get_partition(1, g_partitions);
Eric Andersen040f4402003-07-30 08:40:37 +00003177 }
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00003178 if (j >= 0)
3179 delete_partition(j);
3180 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003181 break;
3182 case 'i':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00003183 if (LABEL_IS_SGI)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003184 create_sgiinfo();
3185 else
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003186 unknown_command(c);
3187 case 'l':
3188 list_types(get_sys_types());
3189 break;
3190 case 'm':
3191 menu();
3192 break;
3193 case 'n':
3194 new_partition();
3195 break;
3196 case 'o':
3197 create_doslabel();
3198 break;
3199 case 'p':
3200 list_table(0);
3201 break;
3202 case 'q':
Denis Vlasenkoc033d512008-04-17 01:52:28 +00003203 if (ENABLE_FEATURE_CLEAN_UP)
3204 close_dev_fd();
Denis Vlasenko4daad902007-09-27 10:20:47 +00003205 bb_putchar('\n');
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003206 return 0;
3207 case 's':
Denis Vlasenko834410a2006-11-29 12:00:28 +00003208#if ENABLE_FEATURE_SUN_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003209 create_sunlabel();
3210#endif
3211 break;
3212 case 't':
3213 change_sysid();
3214 break;
3215 case 'u':
3216 change_units();
3217 break;
3218 case 'v':
3219 verify();
3220 break;
3221 case 'w':
Denys Vlasenko80856b32011-07-13 09:06:32 +02003222 write_table(); /* does not return */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003223 break;
Denis Vlasenko834410a2006-11-29 12:00:28 +00003224#if ENABLE_FEATURE_FDISK_ADVANCED
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003225 case 'x':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00003226 if (LABEL_IS_SGI) {
Denys Vlasenkod60752f2015-10-07 22:42:45 +02003227 puts("\n\tSorry, no experts menu for SGI "
3228 "partition tables available\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003229 } else
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003230 xselect();
3231 break;
3232#endif
3233 default:
3234 unknown_command(c);
3235 menu();
3236 }
3237 }
3238 return 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003239#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003240}