blob: 1c2a7d683da4174e62e5ea1fa9b85aa4d94935ec [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 */
358 "\xfd" "Linux raid autodetect", /* New (2.2.x) raid partition with
359 autodetect using persistent
360 superblock */
361#if 0 /* ENABLE_WEIRD_PARTITION_TYPES */
362 "\x02" "XENIX root",
363 "\x03" "XENIX usr",
364 "\x08" "AIX", /* AIX boot (AIX -- PS/2 port) or SplitDrive */
365 "\x09" "AIX bootable", /* AIX data or Coherent */
366 "\x10" "OPUS",
367 "\x18" "AST SmartSleep",
368 "\x24" "NEC DOS",
369 "\x39" "Plan 9",
370 "\x40" "Venix 80286",
371 "\x4d" "QNX4.x",
372 "\x4e" "QNX4.x 2nd part",
373 "\x4f" "QNX4.x 3rd part",
374 "\x50" "OnTrack DM",
375 "\x51" "OnTrack DM6 Aux1", /* (or Novell) */
376 "\x52" "CP/M", /* CP/M or Microport SysV/AT */
377 "\x53" "OnTrack DM6 Aux3",
378 "\x54" "OnTrackDM6",
379 "\x55" "EZ-Drive",
380 "\x56" "Golden Bow",
381 "\x5c" "Priam Edisk",
382 "\x61" "SpeedStor",
383 "\x64" "Novell Netware 286",
384 "\x65" "Novell Netware 386",
385 "\x70" "DiskSecure Multi-Boot",
386 "\x75" "PC/IX",
387 "\x93" "Amoeba",
388 "\x94" "Amoeba BBT", /* (bad block table) */
389 "\xa7" "NeXTSTEP",
390 "\xbb" "Boot Wizard hidden",
391 "\xc1" "DRDOS/sec (FAT-12)",
392 "\xc4" "DRDOS/sec (FAT-16 < 32M)",
393 "\xc6" "DRDOS/sec (FAT-16)",
394 "\xc7" "Syrinx",
395 "\xda" "Non-FS data",
Denys Vlasenkoa6e48de2020-02-14 13:57:41 +0100396 "\xdb" "CP/M / CTOS / ...",/* CP/M or Concurrent CP/M or Concurrent DOS or CTOS */
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000397 "\xde" "Dell Utility", /* Dell PowerEdge Server utilities */
398 "\xdf" "BootIt", /* BootIt EMBRM */
Denys Vlasenkoa6e48de2020-02-14 13:57:41 +0100399 "\xe1" "DOS access", /* DOS access or SpeedStor 12-bit FAT extended partition */
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000400 "\xe3" "DOS R/O", /* DOS R/O or SpeedStor */
Denys Vlasenkoa6e48de2020-02-14 13:57:41 +0100401 "\xe4" "SpeedStor", /* SpeedStor 16-bit FAT extended partition <1024 cyl. */
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000402 "\xf1" "SpeedStor",
403 "\xf4" "SpeedStor", /* SpeedStor large partition */
404 "\xfe" "LANstep", /* SpeedStor >1024 cyl. or LANstep */
405 "\xff" "BBT", /* Xenix Bad Block Table */
406#endif
407 NULL
408};
409
Denis Vlasenko4437d192008-04-17 00:12:10 +0000410enum {
411 dev_fd = 3 /* the disk */
412};
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000413
414/* Globals */
Denis Vlasenko8e1a0cc2007-03-18 14:42:45 +0000415struct globals {
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000416 char *line_ptr;
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000417
418 const char *disk_device;
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000419 int g_partitions; // = 4; /* maximum partition + 1 */
420 unsigned units_per_sector; // = 1;
421 unsigned sector_size; // = DEFAULT_SECTOR_SIZE;
422 unsigned user_set_sector_size;
423 unsigned sector_offset; // = 1;
424 unsigned g_heads, g_sectors, g_cylinders;
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +0000425 smallint /* enum label_type */ current_label_type;
Denys Vlasenkoc1045492018-07-25 13:45:36 +0200426 smallint display_in_cyl_units;
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000427#if ENABLE_FEATURE_OSF_LABEL
428 smallint possibly_osf_label;
429#endif
430
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +0000431 smallint listing; /* no aborts for fdisk -l */
432 smallint dos_compatible_flag; // = 1;
433#if ENABLE_FEATURE_FDISK_WRITABLE
434 //int dos_changed;
435 smallint nowarn; /* no warnings for fdisk -l/-s */
436#endif
437 int ext_index; /* the prime extended partition */
438 unsigned user_cylinders, user_heads, user_sectors;
439 unsigned pt_heads, pt_sectors;
440 unsigned kern_heads, kern_sectors;
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200441 sector_t extended_offset; /* offset of link pointers */
442 sector_t total_number_of_sectors;
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +0000443
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000444 jmp_buf listingbuf;
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000445 char line_buffer[80];
Denis Vlasenko8e1a0cc2007-03-18 14:42:45 +0000446 /* Raw disk label. For DOS-type partition tables the MBR,
447 * with descriptions of the primary partitions. */
448 char MBRbuffer[MAX_SECTOR_SIZE];
449 /* Partition tables */
450 struct pte ptes[MAXIMUM_PARTS];
451};
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000452#define G (*ptr_to_globals)
Denis Vlasenko270d5d72008-06-29 05:16:45 +0000453#define line_ptr (G.line_ptr )
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000454#define disk_device (G.disk_device )
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000455#define g_partitions (G.g_partitions )
456#define units_per_sector (G.units_per_sector )
457#define sector_size (G.sector_size )
458#define user_set_sector_size (G.user_set_sector_size)
459#define sector_offset (G.sector_offset )
460#define g_heads (G.g_heads )
461#define g_sectors (G.g_sectors )
462#define g_cylinders (G.g_cylinders )
463#define current_label_type (G.current_label_type )
464#define display_in_cyl_units (G.display_in_cyl_units)
465#define possibly_osf_label (G.possibly_osf_label )
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +0000466#define listing (G.listing )
467#define dos_compatible_flag (G.dos_compatible_flag )
468#define nowarn (G.nowarn )
469#define ext_index (G.ext_index )
470#define user_cylinders (G.user_cylinders )
471#define user_heads (G.user_heads )
472#define user_sectors (G.user_sectors )
473#define pt_heads (G.pt_heads )
474#define pt_sectors (G.pt_sectors )
475#define kern_heads (G.kern_heads )
476#define kern_sectors (G.kern_sectors )
477#define extended_offset (G.extended_offset )
478#define total_number_of_sectors (G.total_number_of_sectors)
Denis Vlasenko270d5d72008-06-29 05:16:45 +0000479#define listingbuf (G.listingbuf )
480#define line_buffer (G.line_buffer )
Denis Vlasenko270d5d72008-06-29 05:16:45 +0000481#define MBRbuffer (G.MBRbuffer )
482#define ptes (G.ptes )
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000483#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000484 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000485 sector_size = DEFAULT_SECTOR_SIZE; \
486 sector_offset = 1; \
487 g_partitions = 4; \
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000488 units_per_sector = 1; \
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +0000489 dos_compatible_flag = 1; \
Denis Vlasenkof77f3692007-12-16 17:22:33 +0000490} while (0)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000491
Denis Vlasenkobd852072007-03-19 14:43:38 +0000492
Denis Vlasenkocdf62772008-03-17 08:42:43 +0000493/* TODO: move to libbb? */
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200494/* TODO: return unsigned long long, FEATURE_FDISK_BLKSIZE _can_ handle
495 * disks > 2^32 sectors
496 */
497static sector_t bb_BLKGETSIZE_sectors(int fd)
Denis Vlasenkocdf62772008-03-17 08:42:43 +0000498{
499 uint64_t v64;
500 unsigned long longsectors;
501
502 if (ioctl(fd, BLKGETSIZE64, &v64) == 0) {
Denis Vlasenko270d5d72008-06-29 05:16:45 +0000503 /* Got bytes, convert to 512 byte sectors */
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200504 v64 >>= 9;
505 if (v64 != (sector_t)v64) {
506 ret_trunc:
507 /* Not only DOS, but all other partition tables
508 * we support can't record more than 32 bit
509 * sector counts or offsets
510 */
James Byrne69374872019-07-02 11:35:03 +0200511 bb_simple_error_msg("device has more than 2^32 sectors, can't use all of them");
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200512 v64 = (uint32_t)-1L;
513 }
514 return v64;
Denis Vlasenkocdf62772008-03-17 08:42:43 +0000515 }
516 /* Needs temp of type long */
Denys Vlasenkod958e902010-04-06 02:32:26 +0200517 if (ioctl(fd, BLKGETSIZE, &longsectors)) {
518 /* Perhaps this is a disk image */
519 off_t sz = lseek(fd, 0, SEEK_END);
Denis Vlasenkocdf62772008-03-17 08:42:43 +0000520 longsectors = 0;
Denys Vlasenkod958e902010-04-06 02:32:26 +0200521 if (sz > 0)
522 longsectors = (uoff_t)sz / sector_size;
523 lseek(fd, 0, SEEK_SET);
524 }
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200525 if (sizeof(long) > sizeof(sector_t)
526 && longsectors != (sector_t)longsectors
527 ) {
528 goto ret_trunc;
529 }
Denis Vlasenkocdf62772008-03-17 08:42:43 +0000530 return longsectors;
531}
532
533
Denis Vlasenkodfce08f2007-03-19 14:45:10 +0000534#define IS_EXTENDED(i) \
535 ((i) == EXTENDED || (i) == WIN98_EXTENDED || (i) == LINUX_EXTENDED)
536
537#define cround(n) (display_in_cyl_units ? ((n)/units_per_sector)+1 : (n))
538
539#define scround(x) (((x)+units_per_sector-1)/units_per_sector)
540
541#define pt_offset(b, n) \
542 ((struct partition *)((b) + 0x1be + (n) * sizeof(struct partition)))
543
544#define sector(s) ((s) & 0x3f)
545
546#define cylinder(s, c) ((c) | (((s) & 0xc0) << 2))
547
Denis Vlasenkoc033d512008-04-17 01:52:28 +0000548static void
549close_dev_fd(void)
550{
551 /* Not really closing, but making sure it is open, and to harmless place */
552 xmove_fd(xopen(bb_dev_null, O_RDONLY), dev_fd);
553}
554
Denys Vlasenkob157eb12016-09-17 21:05:06 +0200555/* Return partition name */
556static const char *
557partname(const char *dev, int pno, int lth)
558{
559 const char *p;
560 int w, wp;
561 int bufsiz;
562 char *bufp;
563
564 bufp = auto_string(xzalloc(80));
565 bufsiz = 80;
566
567 w = strlen(dev);
568 p = "";
569
570 if (isdigit(dev[w-1]))
571 p = "p";
572
573 /* devfs kludge - note: fdisk partition names are not supposed
574 to equal kernel names, so there is no reason to do this */
575 if (strcmp(dev + w - 4, "disc") == 0) {
576 w -= 4;
577 p = "part";
578 }
579
580 wp = strlen(p);
581
582 if (lth) {
583 snprintf(bufp, bufsiz, "%*.*s%s%-2u",
584 lth-wp-2, w, dev, p, pno);
585 } else {
586 snprintf(bufp, bufsiz, "%.*s%s%-2u", w, dev, p, pno);
587 }
588 return bufp;
589}
590
Denys Vlasenkoe5897d02019-10-25 13:05:15 +0200591#if ENABLE_FEATURE_SGI_LABEL || ENABLE_FEATURE_OSF_LABEL
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000592static ALWAYS_INLINE struct partition *
Rob Landleyb73451d2006-02-24 16:29:00 +0000593get_part_table(int i)
594{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000595 return ptes[i].part_table;
596}
Denys Vlasenkoe5897d02019-10-25 13:05:15 +0200597#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000598
Denys Vlasenkod8e4ce02019-10-04 16:45:04 +0200599static ALWAYS_INLINE const char *
600str_units(void)
601{
602 return display_in_cyl_units ? "cylinder" : "sector";
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000603}
604
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000605static int
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000606valid_part_table_flag(const char *mbuffer)
607{
Denis Vlasenko834410a2006-11-29 12:00:28 +0000608 return (mbuffer[510] == 0x55 && (uint8_t)mbuffer[511] == 0xaa);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000609}
610
Denys Vlasenko5ea1de22010-04-06 02:31:43 +0200611static void fdisk_fatal(const char *why)
612{
613 if (listing) {
614 close_dev_fd();
615 longjmp(listingbuf, 1);
616 }
617 bb_error_msg_and_die(why, disk_device);
618}
619
620static void
621seek_sector(sector_t secno)
622{
623#if ENABLE_FDISK_SUPPORT_LARGE_DISKS
624 off64_t off = (off64_t)secno * sector_size;
625 if (lseek64(dev_fd, off, SEEK_SET) == (off64_t) -1)
626 fdisk_fatal(unable_to_seek);
627#else
628 uint64_t off = (uint64_t)secno * sector_size;
629 if (off > MAXINT(off_t)
630 || lseek(dev_fd, (off_t)off, SEEK_SET) == (off_t) -1
631 ) {
632 fdisk_fatal(unable_to_seek);
633 }
634#endif
635}
636
Denis Vlasenko834410a2006-11-29 12:00:28 +0000637#if ENABLE_FEATURE_FDISK_WRITABLE
Denys Vlasenko5ea1de22010-04-06 02:31:43 +0200638static void
639set_all_unchanged(void)
640{
641 int i;
642
643 for (i = 0; i < MAXIMUM_PARTS; i++)
644 ptes[i].changed = 0;
645}
646
647static ALWAYS_INLINE void
648set_changed(int i)
649{
650 ptes[i].changed = 1;
651}
652
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000653static ALWAYS_INLINE void
Denis Vlasenko834410a2006-11-29 12:00:28 +0000654write_part_table_flag(char *b)
655{
656 b[510] = 0x55;
657 b[511] = 0xaa;
658}
659
Denys Vlasenkoc1045492018-07-25 13:45:36 +0200660/* Read line; return 0 or first printable non-space char */
661static int
662read_line(const char *prompt)
663{
664 int sz;
665
666 sz = read_line_input(NULL, prompt, line_buffer, sizeof(line_buffer));
667 if (sz <= 0)
668 exit(EXIT_SUCCESS); /* Ctrl-D or Ctrl-C */
669
670 if (line_buffer[sz-1] == '\n')
671 line_buffer[--sz] = '\0';
672
673 line_ptr = line_buffer;
674 while (*line_ptr != '\0' && (unsigned char)*line_ptr <= ' ')
675 line_ptr++;
676 return *line_ptr;
677}
678
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000679static char
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000680read_nonempty(const char *mesg)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000681{
Denis Vlasenko9764d692008-07-09 21:20:50 +0000682 while (!read_line(mesg))
683 continue;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000684 return *line_ptr;
685}
686
687static char
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000688read_maybe_empty(const char *mesg)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000689{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000690 if (!read_line(mesg)) {
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000691 line_ptr = line_buffer;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000692 line_ptr[0] = '\n';
693 line_ptr[1] = '\0';
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000694 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000695 return line_ptr[0];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000696}
697
698static int
Denis Vlasenkobd852072007-03-19 14:43:38 +0000699read_hex(const char *const *sys)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000700{
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000701 unsigned long v;
Rob Landleyb73451d2006-02-24 16:29:00 +0000702 while (1) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000703 read_nonempty("Hex code (type L to list codes): ");
Denys Vlasenkod958e902010-04-06 02:32:26 +0200704 if ((line_ptr[0] | 0x20) == 'l') {
Rob Landleyb73451d2006-02-24 16:29:00 +0000705 list_types(sys);
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000706 continue;
Rob Landleyb73451d2006-02-24 16:29:00 +0000707 }
Denis Vlasenkoc6ce8732006-11-29 18:15:52 +0000708 v = bb_strtoul(line_ptr, NULL, 16);
Denys Vlasenko5ea1de22010-04-06 02:31:43 +0200709 if (v <= 0xff)
710 return v;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000711 }
712}
713
Denis Vlasenko9764d692008-07-09 21:20:50 +0000714static void
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200715write_sector(sector_t secno, const void *buf)
Denis Vlasenko9764d692008-07-09 21:20:50 +0000716{
717 seek_sector(secno);
718 xwrite(dev_fd, buf, sector_size);
719}
Denys Vlasenko5ea1de22010-04-06 02:31:43 +0200720#endif /* FEATURE_FDISK_WRITABLE */
Denis Vlasenko9764d692008-07-09 21:20:50 +0000721
722
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000723#include "fdisk_aix.c"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000724
Denys Vlasenko36659fd2010-02-05 14:40:23 +0100725struct sun_partition {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000726 unsigned char info[128]; /* Informative text string */
727 unsigned char spare0[14];
728 struct sun_info {
729 unsigned char spare1;
730 unsigned char id;
731 unsigned char spare2;
732 unsigned char flags;
733 } infos[8];
734 unsigned char spare1[246]; /* Boot information etc. */
735 unsigned short rspeed; /* Disk rotational speed */
736 unsigned short pcylcount; /* Physical cylinder count */
737 unsigned short sparecyl; /* extra sects per cylinder */
738 unsigned char spare2[4]; /* More magic... */
739 unsigned short ilfact; /* Interleave factor */
740 unsigned short ncyl; /* Data cylinder count */
741 unsigned short nacyl; /* Alt. cylinder count */
742 unsigned short ntrks; /* Tracks per cylinder */
743 unsigned short nsect; /* Sectors per track */
744 unsigned char spare3[4]; /* Even more magic... */
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000745 struct sun_partinfo {
Eric Andersenacd244a2002-12-11 03:49:33 +0000746 uint32_t start_cylinder;
747 uint32_t num_sectors;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000748 } partitions[8];
749 unsigned short magic; /* Magic number */
750 unsigned short csum; /* Label xor'd checksum */
Denys Vlasenko36659fd2010-02-05 14:40:23 +0100751} FIX_ALIASING;
752typedef struct sun_partition sun_partition;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000753#define sunlabel ((sun_partition *)MBRbuffer)
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000754STATIC_OSF void bsd_select(void);
755STATIC_OSF void xbsd_print_disklabel(int);
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000756#include "fdisk_osf.c"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000757
Denys Vlasenkod7559c22010-10-30 02:40:08 +0200758STATIC_GPT void gpt_list_table(int xtra);
Kevin Cernekeeccb07042010-10-25 02:00:24 +0200759#include "fdisk_gpt.c"
760
Denis Vlasenko28703012006-12-19 20:32:02 +0000761#if ENABLE_FEATURE_SGI_LABEL || ENABLE_FEATURE_SUN_LABEL
Denis Vlasenko10d0d4e2006-11-27 16:48:17 +0000762static uint16_t
Denis Vlasenko28703012006-12-19 20:32:02 +0000763fdisk_swap16(uint16_t x)
Rob Landleyb73451d2006-02-24 16:29:00 +0000764{
Denis Vlasenko10d0d4e2006-11-27 16:48:17 +0000765 return (x << 8) | (x >> 8);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000766}
767
Rob Landley88621d72006-08-29 19:41:06 +0000768static uint32_t
Denis Vlasenko28703012006-12-19 20:32:02 +0000769fdisk_swap32(uint32_t x)
Rob Landleyb73451d2006-02-24 16:29:00 +0000770{
Denis Vlasenko10d0d4e2006-11-27 16:48:17 +0000771 return (x << 24) |
772 ((x & 0xFF00) << 8) |
773 ((x & 0xFF0000) >> 8) |
774 (x >> 24);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000775}
776#endif
777
Denis Vlasenkobd852072007-03-19 14:43:38 +0000778STATIC_SGI const char *const sgi_sys_types[];
Denis Vlasenko834410a2006-11-29 12:00:28 +0000779STATIC_SGI unsigned sgi_get_num_sectors(int i);
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000780STATIC_SGI int sgi_get_sysid(int i);
781STATIC_SGI void sgi_delete_partition(int i);
782STATIC_SGI void sgi_change_sysid(int i, int sys);
783STATIC_SGI void sgi_list_table(int xtra);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000784#if ENABLE_FEATURE_FDISK_ADVANCED
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000785STATIC_SGI void sgi_set_xcyl(void);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000786#endif
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000787STATIC_SGI int verify_sgi(int verbose);
788STATIC_SGI void sgi_add_partition(int n, int sys);
789STATIC_SGI void sgi_set_swappartition(int i);
790STATIC_SGI const char *sgi_get_bootfile(void);
791STATIC_SGI void sgi_set_bootfile(const char* aFile);
792STATIC_SGI void create_sgiinfo(void);
793STATIC_SGI void sgi_write_table(void);
794STATIC_SGI void sgi_set_bootpartition(int i);
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000795#include "fdisk_sgi.c"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000796
Denis Vlasenkobd852072007-03-19 14:43:38 +0000797STATIC_SUN const char *const sun_sys_types[];
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000798STATIC_SUN void sun_delete_partition(int i);
799STATIC_SUN void sun_change_sysid(int i, int sys);
800STATIC_SUN void sun_list_table(int xtra);
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000801STATIC_SUN void add_sun_partition(int n, int sys);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000802#if ENABLE_FEATURE_FDISK_ADVANCED
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000803STATIC_SUN void sun_set_alt_cyl(void);
804STATIC_SUN void sun_set_ncyl(int cyl);
805STATIC_SUN void sun_set_xcyl(void);
806STATIC_SUN void sun_set_ilfact(void);
807STATIC_SUN void sun_set_rspeed(void);
808STATIC_SUN void sun_set_pcylcount(void);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000809#endif
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +0000810STATIC_SUN void toggle_sunflags(int i, unsigned char mask);
811STATIC_SUN void verify_sun(void);
812STATIC_SUN void sun_write_table(void);
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000813#include "fdisk_sun.c"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000814
Denis Vlasenko9764d692008-07-09 21:20:50 +0000815
Denys Vlasenko5ea1de22010-04-06 02:31:43 +0200816static inline_if_little_endian unsigned
Rob Landleyb73451d2006-02-24 16:29:00 +0000817read4_little_endian(const unsigned char *cp)
818{
Denys Vlasenko5ea1de22010-04-06 02:31:43 +0200819 uint32_t v;
820 move_from_unaligned32(v, cp);
821 return SWAP_LE32(v);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000822}
823
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200824static sector_t
Rob Landleyb73451d2006-02-24 16:29:00 +0000825get_start_sect(const struct partition *p)
826{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000827 return read4_little_endian(p->start4);
828}
829
Denys Vlasenko5ea1de22010-04-06 02:31:43 +0200830static sector_t
831get_nr_sects(const struct partition *p)
832{
833 return read4_little_endian(p->size4);
834}
835
Denis Vlasenko834410a2006-11-29 12:00:28 +0000836#if ENABLE_FEATURE_FDISK_WRITABLE
Denys Vlasenko5ea1de22010-04-06 02:31:43 +0200837/* start_sect and nr_sects are stored little endian on all machines */
838/* moreover, they are not aligned correctly */
839static inline_if_little_endian void
840store4_little_endian(unsigned char *cp, unsigned val)
841{
842 uint32_t v = SWAP_LE32(val);
843 move_to_unaligned32(cp, v);
844}
845
846static void
847set_start_sect(struct partition *p, unsigned start_sect)
848{
849 store4_little_endian(p->start4, start_sect);
850}
851
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000852static void
Denis Vlasenko28703012006-12-19 20:32:02 +0000853set_nr_sects(struct partition *p, unsigned nr_sects)
Rob Landleyb73451d2006-02-24 16:29:00 +0000854{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000855 store4_little_endian(p->size4, nr_sects);
856}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000857#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000858
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000859/* Allocate a buffer and read a partition table sector */
860static void
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200861read_pte(struct pte *pe, sector_t offset)
Rob Landleyb73451d2006-02-24 16:29:00 +0000862{
Denys Vlasenkod958e902010-04-06 02:32:26 +0200863 pe->offset_from_dev_start = offset;
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +0000864 pe->sectorbuffer = xzalloc(sector_size);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000865 seek_sector(offset);
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +0000866 /* xread would make us abort - bad for fdisk -l */
867 if (full_read(dev_fd, pe->sectorbuffer, sector_size) != sector_size)
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000868 fdisk_fatal(unable_to_read);
Denis Vlasenko834410a2006-11-29 12:00:28 +0000869#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000870 pe->changed = 0;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000871#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000872 pe->part_table = pe->ext_pointer = NULL;
873}
874
Denys Vlasenkoddf78502009-09-16 03:03:13 +0200875static sector_t
Denys Vlasenkod958e902010-04-06 02:32:26 +0200876get_partition_start_from_dev_start(const struct pte *pe)
Rob Landleyb73451d2006-02-24 16:29:00 +0000877{
Denys Vlasenkod958e902010-04-06 02:32:26 +0200878 return pe->offset_from_dev_start + get_start_sect(pe->part_table);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000879}
880
Denis Vlasenko834410a2006-11-29 12:00:28 +0000881#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000882/*
883 * Avoid warning about DOS partitions when no DOS partition was changed.
884 * Here a heuristic "is probably dos partition".
885 * We might also do the opposite and warn in all cases except
886 * for "is probably nondos partition".
887 */
Denis Vlasenko89398812008-01-25 20:18:46 +0000888#ifdef UNUSED
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000889static int
Rob Landleyb73451d2006-02-24 16:29:00 +0000890is_dos_partition(int t)
891{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000892 return (t == 1 || t == 4 || t == 6 ||
893 t == 0x0b || t == 0x0c || t == 0x0e ||
894 t == 0x11 || t == 0x12 || t == 0x14 || t == 0x16 ||
895 t == 0x1b || t == 0x1c || t == 0x1e || t == 0x24 ||
896 t == 0xc1 || t == 0xc4 || t == 0xc6);
897}
Denis Vlasenko89398812008-01-25 20:18:46 +0000898#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000899
900static void
Rob Landleyb73451d2006-02-24 16:29:00 +0000901menu(void)
902{
Denis Vlasenkobd852072007-03-19 14:43:38 +0000903 puts("Command Action");
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000904 if (LABEL_IS_SUN) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000905 puts("a\ttoggle a read only flag"); /* sun */
906 puts("b\tedit bsd disklabel");
907 puts("c\ttoggle the mountable flag"); /* sun */
908 puts("d\tdelete a partition");
909 puts("l\tlist known partition types");
910 puts("n\tadd a new partition");
911 puts("o\tcreate a new empty DOS partition table");
912 puts("p\tprint the partition table");
913 puts("q\tquit without saving changes");
914 puts("s\tcreate a new empty Sun disklabel"); /* sun */
915 puts("t\tchange a partition's system id");
916 puts("u\tchange display/entry units");
917 puts("v\tverify the partition table");
918 puts("w\twrite table to disk and exit");
Denis Vlasenko834410a2006-11-29 12:00:28 +0000919#if ENABLE_FEATURE_FDISK_ADVANCED
Denis Vlasenkobd852072007-03-19 14:43:38 +0000920 puts("x\textra functionality (experts only)");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000921#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000922 } else if (LABEL_IS_SGI) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000923 puts("a\tselect bootable partition"); /* sgi flavour */
924 puts("b\tedit bootfile entry"); /* sgi */
925 puts("c\tselect sgi swap partition"); /* sgi flavour */
926 puts("d\tdelete a partition");
927 puts("l\tlist known partition types");
928 puts("n\tadd a new partition");
929 puts("o\tcreate a new empty DOS partition table");
930 puts("p\tprint the partition table");
931 puts("q\tquit without saving changes");
932 puts("s\tcreate a new empty Sun disklabel"); /* sun */
933 puts("t\tchange a partition's system id");
934 puts("u\tchange display/entry units");
935 puts("v\tverify the partition table");
936 puts("w\twrite table to disk and exit");
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000937 } else if (LABEL_IS_AIX) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000938 puts("o\tcreate a new empty DOS partition table");
939 puts("q\tquit without saving changes");
940 puts("s\tcreate a new empty Sun disklabel"); /* sun */
Kevin Cernekeeccb07042010-10-25 02:00:24 +0200941 } else if (LABEL_IS_GPT) {
942 puts("o\tcreate a new empty DOS partition table");
943 puts("p\tprint the partition table");
944 puts("q\tquit without saving changes");
945 puts("s\tcreate a new empty Sun disklabel"); /* sun */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000946 } else {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000947 puts("a\ttoggle a bootable flag");
948 puts("b\tedit bsd disklabel");
949 puts("c\ttoggle the dos compatibility flag");
950 puts("d\tdelete a partition");
951 puts("l\tlist known partition types");
952 puts("n\tadd a new partition");
953 puts("o\tcreate a new empty DOS partition table");
954 puts("p\tprint the partition table");
955 puts("q\tquit without saving changes");
956 puts("s\tcreate a new empty Sun disklabel"); /* sun */
957 puts("t\tchange a partition's system id");
958 puts("u\tchange display/entry units");
959 puts("v\tverify the partition table");
960 puts("w\twrite table to disk and exit");
Denis Vlasenko834410a2006-11-29 12:00:28 +0000961#if ENABLE_FEATURE_FDISK_ADVANCED
Denis Vlasenkobd852072007-03-19 14:43:38 +0000962 puts("x\textra functionality (experts only)");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000963#endif
964 }
965}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000966#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000967
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000968
Denis Vlasenko834410a2006-11-29 12:00:28 +0000969#if ENABLE_FEATURE_FDISK_ADVANCED
Glenn L McGrath441e7ef2002-11-26 22:00:21 +0000970static void
Rob Landleyb73451d2006-02-24 16:29:00 +0000971xmenu(void)
972{
Denis Vlasenkobd852072007-03-19 14:43:38 +0000973 puts("Command Action");
Denis Vlasenko98ae2162006-10-12 19:30:44 +0000974 if (LABEL_IS_SUN) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000975 puts("a\tchange number of alternate cylinders"); /*sun*/
976 puts("c\tchange number of cylinders");
977 puts("d\tprint the raw data in the partition table");
978 puts("e\tchange number of extra sectors per cylinder");/*sun*/
979 puts("h\tchange number of heads");
980 puts("i\tchange interleave factor"); /*sun*/
981 puts("o\tchange rotation speed (rpm)"); /*sun*/
982 puts("p\tprint the partition table");
983 puts("q\tquit without saving changes");
984 puts("r\treturn to main menu");
985 puts("s\tchange number of sectors/track");
986 puts("v\tverify the partition table");
987 puts("w\twrite table to disk and exit");
988 puts("y\tchange number of physical cylinders"); /*sun*/
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000989 } else if (LABEL_IS_SGI) {
Denis Vlasenkobd852072007-03-19 14:43:38 +0000990 puts("b\tmove beginning of data in a partition"); /* !sun */
991 puts("c\tchange number of cylinders");
992 puts("d\tprint the raw data in the partition table");
993 puts("e\tlist extended partitions"); /* !sun */
994 puts("g\tcreate an IRIX (SGI) partition table");/* sgi */
995 puts("h\tchange number of heads");
996 puts("p\tprint the partition table");
997 puts("q\tquit without saving changes");
998 puts("r\treturn to main menu");
999 puts("s\tchange number of sectors/track");
1000 puts("v\tverify the partition table");
1001 puts("w\twrite table to disk and exit");
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001002 } else if (LABEL_IS_AIX) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001003 puts("b\tmove beginning of data in a partition"); /* !sun */
1004 puts("c\tchange number of cylinders");
1005 puts("d\tprint the raw data in the partition table");
1006 puts("e\tlist extended partitions"); /* !sun */
1007 puts("g\tcreate an IRIX (SGI) partition table");/* sgi */
1008 puts("h\tchange number of heads");
1009 puts("p\tprint the partition table");
1010 puts("q\tquit without saving changes");
1011 puts("r\treturn to main menu");
1012 puts("s\tchange number of sectors/track");
1013 puts("v\tverify the partition table");
1014 puts("w\twrite table to disk and exit");
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001015 } else {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001016 puts("b\tmove beginning of data in a partition"); /* !sun */
1017 puts("c\tchange number of cylinders");
1018 puts("d\tprint the raw data in the partition table");
1019 puts("e\tlist extended partitions"); /* !sun */
1020 puts("f\tfix partition order"); /* !sun, !aix, !sgi */
Denis Vlasenko834410a2006-11-29 12:00:28 +00001021#if ENABLE_FEATURE_SGI_LABEL
Denis Vlasenkobd852072007-03-19 14:43:38 +00001022 puts("g\tcreate an IRIX (SGI) partition table");/* sgi */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001023#endif
Denis Vlasenkobd852072007-03-19 14:43:38 +00001024 puts("h\tchange number of heads");
1025 puts("p\tprint the partition table");
1026 puts("q\tquit without saving changes");
1027 puts("r\treturn to main menu");
1028 puts("s\tchange number of sectors/track");
1029 puts("v\tverify the partition table");
1030 puts("w\twrite table to disk and exit");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001031 }
1032}
1033#endif /* ADVANCED mode */
1034
Denis Vlasenko834410a2006-11-29 12:00:28 +00001035#if ENABLE_FEATURE_FDISK_WRITABLE
Denis Vlasenkobd852072007-03-19 14:43:38 +00001036static const char *const *
Rob Landleyb73451d2006-02-24 16:29:00 +00001037get_sys_types(void)
1038{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001039 return (
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001040 LABEL_IS_SUN ? sun_sys_types :
1041 LABEL_IS_SGI ? sgi_sys_types :
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001042 i386_sys_types);
1043}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001044#else
1045#define get_sys_types() i386_sys_types
Denys Vlasenko5ea1de22010-04-06 02:31:43 +02001046#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001047
Denis Vlasenkobd852072007-03-19 14:43:38 +00001048static const char *
1049partition_type(unsigned char type)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001050{
1051 int i;
Denis Vlasenkobd852072007-03-19 14:43:38 +00001052 const char *const *types = get_sys_types();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001053
Denis Vlasenkobd852072007-03-19 14:43:38 +00001054 for (i = 0; types[i]; i++)
1055 if ((unsigned char)types[i][0] == type)
1056 return types[i] + 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001057
Denis Vlasenkobd852072007-03-19 14:43:38 +00001058 return "Unknown";
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001059}
1060
Denys Vlasenko5ea1de22010-04-06 02:31:43 +02001061static int
1062is_cleared_partition(const struct partition *p)
1063{
1064 /* We consider partition "cleared" only if it has only zeros */
1065 const char *cp = (const char *)p;
1066 int cnt = sizeof(*p);
1067 char bits = 0;
1068 while (--cnt >= 0)
1069 bits |= *cp++;
1070 return (bits == 0);
1071}
1072
1073static void
1074clear_partition(struct partition *p)
1075{
1076 if (p)
1077 memset(p, 0, sizeof(*p));
1078}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001079
Denis Vlasenko834410a2006-11-29 12:00:28 +00001080#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001081static int
Rob Landleyb73451d2006-02-24 16:29:00 +00001082get_sysid(int i)
1083{
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001084 return LABEL_IS_SUN ? sunlabel->infos[i].id :
1085 (LABEL_IS_SGI ? sgi_get_sysid(i) :
1086 ptes[i].part_table->sys_ind);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001087}
1088
Denis Vlasenkobd852072007-03-19 14:43:38 +00001089static void
1090list_types(const char *const *sys)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001091{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001092 enum { COLS = 3 };
1093
1094 unsigned last[COLS];
1095 unsigned done, next, size;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001096 int i;
1097
Denis Vlasenko9764d692008-07-09 21:20:50 +00001098 for (size = 0; sys[size]; size++)
1099 continue;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001100
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001101 done = 0;
1102 for (i = COLS-1; i >= 0; i--) {
1103 done += (size + i - done) / (i + 1);
1104 last[COLS-1 - i] = done;
1105 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001106
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001107 i = done = next = 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001108 do {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001109 printf("%c%2x %-22.22s", i ? ' ' : '\n',
Denis Vlasenkobd852072007-03-19 14:43:38 +00001110 (unsigned char)sys[next][0],
1111 sys[next] + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001112 next = last[i++] + done;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001113 if (i >= COLS || next >= last[i]) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001114 i = 0;
1115 next = ++done;
1116 }
1117 } while (done < last[0]);
Denis Vlasenko4daad902007-09-27 10:20:47 +00001118 bb_putchar('\n');
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001119}
1120
Denys Vlasenkod958e902010-04-06 02:32:26 +02001121#define set_hsc(h, s, c, sector) do \
1122{ \
1123 s = sector % g_sectors + 1; \
1124 sector /= g_sectors; \
1125 h = sector % g_heads; \
1126 sector /= g_heads; \
1127 c = sector & 0xff; \
1128 s |= (sector >> 2) & 0xc0; \
1129} while (0)
1130
1131static void set_hsc_start_end(struct partition *p, sector_t start, sector_t stop)
1132{
1133 if (dos_compatible_flag && (start / (g_sectors * g_heads) > 1023))
1134 start = g_heads * g_sectors * 1024 - 1;
1135 set_hsc(p->head, p->sector, p->cyl, start);
1136
1137 if (dos_compatible_flag && (stop / (g_sectors * g_heads) > 1023))
1138 stop = g_heads * g_sectors * 1024 - 1;
1139 set_hsc(p->end_head, p->end_sector, p->end_cyl, stop);
1140}
1141
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001142static void
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001143set_partition(int i, int doext, sector_t start, sector_t stop, int sysid)
Rob Landleyb73451d2006-02-24 16:29:00 +00001144{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001145 struct partition *p;
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001146 sector_t offset;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001147
1148 if (doext) {
1149 p = ptes[i].ext_pointer;
1150 offset = extended_offset;
1151 } else {
1152 p = ptes[i].part_table;
Denys Vlasenkod958e902010-04-06 02:32:26 +02001153 offset = ptes[i].offset_from_dev_start;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001154 }
1155 p->boot_ind = 0;
1156 p->sys_ind = sysid;
1157 set_start_sect(p, start - offset);
1158 set_nr_sects(p, stop - start + 1);
Denys Vlasenkod958e902010-04-06 02:32:26 +02001159 set_hsc_start_end(p, start, stop);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001160 ptes[i].changed = 1;
1161}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001162#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001163
1164static int
Rob Landleyb73451d2006-02-24 16:29:00 +00001165warn_geometry(void)
1166{
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001167 if (g_heads && g_sectors && g_cylinders)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001168 return 0;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001169
Denis Vlasenkobd852072007-03-19 14:43:38 +00001170 printf("Unknown value(s) for:");
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001171 if (!g_heads)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001172 printf(" heads");
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001173 if (!g_sectors)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001174 printf(" sectors");
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001175 if (!g_cylinders)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001176 printf(" cylinders");
Denis Vlasenko834410a2006-11-29 12:00:28 +00001177#if ENABLE_FEATURE_FDISK_WRITABLE
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001178 puts(" (settable in the extra functions menu)");
1179#else
1180 bb_putchar('\n');
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001181#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001182 return 1;
1183}
1184
Denis Vlasenko8e1a0cc2007-03-18 14:42:45 +00001185static void
1186update_units(void)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001187{
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001188 int cyl_units = g_heads * g_sectors;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001189
1190 if (display_in_cyl_units && cyl_units)
1191 units_per_sector = cyl_units;
1192 else
1193 units_per_sector = 1; /* in sectors */
1194}
1195
Denis Vlasenko834410a2006-11-29 12:00:28 +00001196#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001197static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001198warn_cylinders(void)
1199{
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001200 if (LABEL_IS_DOS && g_cylinders > 1024 && !nowarn)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001201 printf("\n"
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001202"The number of cylinders for this disk is set to %u.\n"
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001203"There is nothing wrong with that, but this is larger than 1024,\n"
1204"and could in certain setups cause problems with:\n"
1205"1) software that runs at boot time (e.g., old versions of LILO)\n"
1206"2) booting and partitioning software from other OSs\n"
Denis Vlasenkobd852072007-03-19 14:43:38 +00001207" (e.g., DOS FDISK, OS/2 FDISK)\n",
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001208 g_cylinders);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001209}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001210#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001211
1212static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001213read_extended(int ext)
1214{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001215 int i;
1216 struct pte *pex;
1217 struct partition *p, *q;
1218
1219 ext_index = ext;
1220 pex = &ptes[ext];
1221 pex->ext_pointer = pex->part_table;
1222
1223 p = pex->part_table;
1224 if (!get_start_sect(p)) {
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001225 puts("Bad offset in primary extended partition");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001226 return;
1227 }
1228
Rob Landleyb73451d2006-02-24 16:29:00 +00001229 while (IS_EXTENDED(p->sys_ind)) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001230 struct pte *pe = &ptes[g_partitions];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001231
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001232 if (g_partitions >= MAXIMUM_PARTS) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001233 /* This is not a Linux restriction, but
1234 this program uses arrays of size MAXIMUM_PARTS.
Denis Vlasenko89f0b342006-11-18 22:04:09 +00001235 Do not try to 'improve' this test. */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001236 struct pte *pre = &ptes[g_partitions - 1];
Denis Vlasenko834410a2006-11-29 12:00:28 +00001237#if ENABLE_FEATURE_FDISK_WRITABLE
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001238 printf("Warning: deleting partitions after %u\n",
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001239 g_partitions);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001240 pre->changed = 1;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001241#endif
1242 clear_partition(pre->ext_pointer);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001243 return;
1244 }
1245
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001246 read_pte(pe, extended_offset + get_start_sect(p));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001247
1248 if (!extended_offset)
1249 extended_offset = get_start_sect(p);
1250
1251 q = p = pt_offset(pe->sectorbuffer, 0);
1252 for (i = 0; i < 4; i++, p++) if (get_nr_sects(p)) {
Rob Landleyb73451d2006-02-24 16:29:00 +00001253 if (IS_EXTENDED(p->sys_ind)) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001254 if (pe->ext_pointer)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001255 printf("Warning: extra link "
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001256 "pointer in partition table"
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001257 " %u\n", g_partitions + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001258 else
1259 pe->ext_pointer = p;
1260 } else if (p->sys_ind) {
1261 if (pe->part_table)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001262 printf("Warning: ignoring extra "
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001263 "data in partition table"
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001264 " %u\n", g_partitions + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001265 else
1266 pe->part_table = p;
1267 }
1268 }
1269
1270 /* very strange code here... */
1271 if (!pe->part_table) {
1272 if (q != pe->ext_pointer)
1273 pe->part_table = q;
1274 else
1275 pe->part_table = q + 1;
1276 }
1277 if (!pe->ext_pointer) {
1278 if (q != pe->part_table)
1279 pe->ext_pointer = q;
1280 else
1281 pe->ext_pointer = q + 1;
1282 }
1283
1284 p = pe->ext_pointer;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001285 g_partitions++;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001286 }
1287
Denis Vlasenko834410a2006-11-29 12:00:28 +00001288#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001289 /* remove empty links */
1290 remove:
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001291 for (i = 4; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001292 struct pte *pe = &ptes[i];
1293
Denis Vlasenkobd852072007-03-19 14:43:38 +00001294 if (!get_nr_sects(pe->part_table)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001295 && (g_partitions > 5 || ptes[4].part_table->sys_ind)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001296 ) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001297 printf("Omitting empty partition (%u)\n", i+1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001298 delete_partition(i);
1299 goto remove; /* numbering changed */
1300 }
1301 }
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001302#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001303}
1304
Denis Vlasenko834410a2006-11-29 12:00:28 +00001305#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001306static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001307create_doslabel(void)
1308{
Denis Vlasenkobd852072007-03-19 14:43:38 +00001309 printf(msg_building_new_label, "DOS disklabel");
Rob Landley5527b912006-02-25 03:46:10 +00001310
Denis Vlasenko4437d192008-04-17 00:12:10 +00001311 current_label_type = LABEL_DOS;
Denis Vlasenko834410a2006-11-29 12:00:28 +00001312#if ENABLE_FEATURE_OSF_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001313 possibly_osf_label = 0;
1314#endif
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001315 g_partitions = 4;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001316
Denys Vlasenko5ea1de22010-04-06 02:31:43 +02001317 memset(&MBRbuffer[510 - 4*16], 0, 4*16);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001318 write_part_table_flag(MBRbuffer);
1319 extended_offset = 0;
1320 set_all_unchanged();
1321 set_changed(0);
Denis Vlasenko4437d192008-04-17 00:12:10 +00001322 get_boot(CREATE_EMPTY_DOS);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001323}
Denys Vlasenko5ea1de22010-04-06 02:31:43 +02001324#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001325
1326static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001327get_sectorsize(void)
1328{
Rob Landley736e5252006-02-25 03:36:00 +00001329 if (!user_set_sector_size) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001330 int arg;
Denis Vlasenko4437d192008-04-17 00:12:10 +00001331 if (ioctl(dev_fd, BLKSSZGET, &arg) == 0)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001332 sector_size = arg;
1333 if (sector_size != DEFAULT_SECTOR_SIZE)
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001334 printf("Note: sector size is %u "
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +00001335 "(not " DEFAULT_SECTOR_SIZE_STR ")\n",
1336 sector_size);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001337 }
1338}
1339
Rob Landley88621d72006-08-29 19:41:06 +00001340static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001341get_kernel_geometry(void)
1342{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001343 struct hd_geometry geometry;
1344
Denis Vlasenko4437d192008-04-17 00:12:10 +00001345 if (!ioctl(dev_fd, HDIO_GETGEO, &geometry)) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001346 kern_heads = geometry.heads;
1347 kern_sectors = geometry.sectors;
1348 /* never use geometry.cylinders - it is truncated */
1349 }
1350}
1351
1352static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001353get_partition_table_geometry(void)
1354{
"Vladimir N. Oleynik"a972c872005-12-02 10:06:04 +00001355 const unsigned char *bufp = (const unsigned char *)MBRbuffer;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001356 struct partition *p;
1357 int i, h, s, hh, ss;
1358 int first = 1;
1359 int bad = 0;
1360
Eric Andersen3496fdc2006-01-30 23:09:20 +00001361 if (!(valid_part_table_flag((char*)bufp)))
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001362 return;
1363
1364 hh = ss = 0;
Rob Landleyb73451d2006-02-24 16:29:00 +00001365 for (i = 0; i < 4; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001366 p = pt_offset(bufp, i);
1367 if (p->sys_ind != 0) {
1368 h = p->end_head + 1;
1369 s = (p->end_sector & 077);
1370 if (first) {
1371 hh = h;
1372 ss = s;
1373 first = 0;
1374 } else if (hh != h || ss != s)
1375 bad = 1;
1376 }
1377 }
1378
1379 if (!first && !bad) {
1380 pt_heads = hh;
1381 pt_sectors = ss;
1382 }
1383}
1384
Rob Landleyb73451d2006-02-24 16:29:00 +00001385static void
1386get_geometry(void)
1387{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001388 int sec_fac;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001389
1390 get_sectorsize();
1391 sec_fac = sector_size / 512;
Denis Vlasenko834410a2006-11-29 12:00:28 +00001392#if ENABLE_FEATURE_SUN_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001393 guess_device_type();
1394#endif
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001395 g_heads = g_cylinders = g_sectors = 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001396 kern_heads = kern_sectors = 0;
1397 pt_heads = pt_sectors = 0;
1398
1399 get_kernel_geometry();
1400 get_partition_table_geometry();
1401
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001402 g_heads = user_heads ? user_heads :
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001403 pt_heads ? pt_heads :
1404 kern_heads ? kern_heads : 255;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001405 g_sectors = user_sectors ? user_sectors :
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001406 pt_sectors ? pt_sectors :
1407 kern_sectors ? kern_sectors : 63;
Denis Vlasenko4437d192008-04-17 00:12:10 +00001408 total_number_of_sectors = bb_BLKGETSIZE_sectors(dev_fd);
Eric Andersen040f4402003-07-30 08:40:37 +00001409
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001410 sector_offset = 1;
1411 if (dos_compatible_flag)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001412 sector_offset = g_sectors;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001413
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001414 g_cylinders = total_number_of_sectors / (g_heads * g_sectors * sec_fac);
1415 if (!g_cylinders)
1416 g_cylinders = user_cylinders;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001417}
1418
1419/*
Denis Vlasenko4437d192008-04-17 00:12:10 +00001420 * Opens disk_device and optionally reads MBR.
Kevin Cernekeeccb07042010-10-25 02:00:24 +02001421 * If what == OPEN_MAIN:
1422 * Open device, read MBR. Abort program on short read. Create empty
1423 * disklabel if the on-disk structure is invalid (WRITABLE mode).
1424 * If what == TRY_ONLY:
1425 * Open device, read MBR. Return an error if anything is out of place.
1426 * Do not create an empty disklabel. This is used for the "list"
1427 * operations: "fdisk -l /dev/sda" and "fdisk -l" (all devices).
1428 * If what == CREATE_EMPTY_*:
1429 * This means that get_boot() was called recursively from create_*label().
1430 * Do not re-open the device; just set up the ptes array and print
1431 * geometry warnings.
1432 *
Denis Vlasenko4437d192008-04-17 00:12:10 +00001433 * Returns:
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001434 * -1: no 0xaa55 flag present (possibly entire disk BSD)
1435 * 0: found or created label
1436 * 1: I/O error
1437 */
Denis Vlasenko85c24712008-03-17 09:04:04 +00001438#if ENABLE_FEATURE_SUN_LABEL || ENABLE_FEATURE_FDISK_WRITABLE
1439static int get_boot(enum action what)
1440#else
1441static int get_boot(void)
1442#define get_boot(what) get_boot()
1443#endif
Rob Landleyb73451d2006-02-24 16:29:00 +00001444{
Denis Vlasenko4437d192008-04-17 00:12:10 +00001445 int i, fd;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001446
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001447 g_partitions = 4;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001448 for (i = 0; i < 4; i++) {
1449 struct pte *pe = &ptes[i];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001450 pe->part_table = pt_offset(MBRbuffer, i);
1451 pe->ext_pointer = NULL;
Denys Vlasenkod958e902010-04-06 02:32:26 +02001452 pe->offset_from_dev_start = 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001453 pe->sectorbuffer = MBRbuffer;
Denis Vlasenko834410a2006-11-29 12:00:28 +00001454#if ENABLE_FEATURE_FDISK_WRITABLE
Denis Vlasenko4437d192008-04-17 00:12:10 +00001455 pe->changed = (what == CREATE_EMPTY_DOS);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001456#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001457 }
1458
Denis Vlasenko834410a2006-11-29 12:00:28 +00001459#if ENABLE_FEATURE_FDISK_WRITABLE
Denis Vlasenko4437d192008-04-17 00:12:10 +00001460// ALERT! highly idiotic design!
1461// We end up here when we call get_boot() recursively
1462// via get_boot() [table is bad] -> create_doslabel() -> get_boot(CREATE_EMPTY_DOS).
1463// or get_boot() [table is bad] -> create_sunlabel() -> get_boot(CREATE_EMPTY_SUN).
1464// (just factor out re-init of ptes[0,1,2,3] in a separate fn instead?)
1465// So skip opening device _again_...
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001466 if (what == CREATE_EMPTY_DOS IF_FEATURE_SUN_LABEL(|| what == CREATE_EMPTY_SUN))
Denis Vlasenko4437d192008-04-17 00:12:10 +00001467 goto created_table;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001468
Denis Vlasenko4437d192008-04-17 00:12:10 +00001469 fd = open(disk_device, (option_mask32 & OPT_l) ? O_RDONLY : O_RDWR);
1470
Denis Vlasenkobd852072007-03-19 14:43:38 +00001471 if (fd < 0) {
1472 fd = open(disk_device, O_RDONLY);
1473 if (fd < 0) {
Denis Vlasenko4437d192008-04-17 00:12:10 +00001474 if (what == TRY_ONLY)
Rob Landleyb73451d2006-02-24 16:29:00 +00001475 return 1;
1476 fdisk_fatal(unable_to_open);
Denis Vlasenko4437d192008-04-17 00:12:10 +00001477 }
Denis Vlasenko4437d192008-04-17 00:12:10 +00001478 printf("'%s' is opened for read only\n", disk_device);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001479 }
Denis Vlasenkoc033d512008-04-17 01:52:28 +00001480 xmove_fd(fd, dev_fd);
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +00001481 if (512 != full_read(dev_fd, MBRbuffer, 512)) {
Denis Vlasenko4437d192008-04-17 00:12:10 +00001482 if (what == TRY_ONLY) {
Denis Vlasenkoc033d512008-04-17 01:52:28 +00001483 close_dev_fd();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001484 return 1;
Denis Vlasenko4437d192008-04-17 00:12:10 +00001485 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001486 fdisk_fatal(unable_to_read);
1487 }
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001488#else
Denis Vlasenkobd852072007-03-19 14:43:38 +00001489 fd = open(disk_device, O_RDONLY);
1490 if (fd < 0)
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001491 return 1;
Denis Vlasenko6eaf0a92008-06-29 05:10:47 +00001492 if (512 != full_read(fd, MBRbuffer, 512)) {
Denis Vlasenko4437d192008-04-17 00:12:10 +00001493 close(fd);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001494 return 1;
Denis Vlasenko4437d192008-04-17 00:12:10 +00001495 }
1496 xmove_fd(fd, dev_fd);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001497#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001498
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001499 get_geometry();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001500 update_units();
1501
Denis Vlasenko834410a2006-11-29 12:00:28 +00001502#if ENABLE_FEATURE_SUN_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001503 if (check_sun_label())
1504 return 0;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001505#endif
Denis Vlasenko834410a2006-11-29 12:00:28 +00001506#if ENABLE_FEATURE_SGI_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001507 if (check_sgi_label())
1508 return 0;
1509#endif
Denis Vlasenko834410a2006-11-29 12:00:28 +00001510#if ENABLE_FEATURE_AIX_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001511 if (check_aix_label())
1512 return 0;
1513#endif
Kevin Cernekeeccb07042010-10-25 02:00:24 +02001514#if ENABLE_FEATURE_GPT_LABEL
1515 if (check_gpt_label())
1516 return 0;
1517#endif
Denis Vlasenko834410a2006-11-29 12:00:28 +00001518#if ENABLE_FEATURE_OSF_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001519 if (check_osf_label()) {
1520 possibly_osf_label = 1;
1521 if (!valid_part_table_flag(MBRbuffer)) {
Denis Vlasenko4437d192008-04-17 00:12:10 +00001522 current_label_type = LABEL_OSF;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001523 return 0;
1524 }
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001525 puts("This disk has both DOS and BSD magic.\n"
1526 "Give the 'b' command to go to BSD mode.");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001527 }
1528#endif
1529
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001530#if !ENABLE_FEATURE_FDISK_WRITABLE
Denis Vlasenko4437d192008-04-17 00:12:10 +00001531 if (!valid_part_table_flag(MBRbuffer))
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001532 return -1;
1533#else
Denis Vlasenko4437d192008-04-17 00:12:10 +00001534 if (!valid_part_table_flag(MBRbuffer)) {
1535 if (what == OPEN_MAIN) {
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001536 puts("Device contains neither a valid DOS "
1537 "partition table, nor Sun, SGI, OSF or GPT "
1538 "disklabel");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001539#ifdef __sparc__
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001540 IF_FEATURE_SUN_LABEL(create_sunlabel();)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001541#else
1542 create_doslabel();
1543#endif
1544 return 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001545 }
Denis Vlasenko4437d192008-04-17 00:12:10 +00001546 /* TRY_ONLY: */
1547 return -1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001548 }
Denis Vlasenko4437d192008-04-17 00:12:10 +00001549 created_table:
1550#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001551
Denis Vlasenko4437d192008-04-17 00:12:10 +00001552
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001553 IF_FEATURE_FDISK_WRITABLE(warn_cylinders();)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001554 warn_geometry();
1555
1556 for (i = 0; i < 4; i++) {
Denis Vlasenko4437d192008-04-17 00:12:10 +00001557 if (IS_EXTENDED(ptes[i].part_table->sys_ind)) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001558 if (g_partitions != 4)
Denis Vlasenkobd852072007-03-19 14:43:38 +00001559 printf("Ignoring extra extended "
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001560 "partition %u\n", i + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001561 else
1562 read_extended(i);
1563 }
1564 }
1565
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001566 for (i = 3; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001567 struct pte *pe = &ptes[i];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001568 if (!valid_part_table_flag(pe->sectorbuffer)) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001569 printf("Warning: invalid flag 0x%02x,0x%02x of partition "
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001570 "table %u will be corrected by w(rite)\n",
Denis Vlasenko834410a2006-11-29 12:00:28 +00001571 pe->sectorbuffer[510],
1572 pe->sectorbuffer[511],
1573 i + 1);
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001574 IF_FEATURE_FDISK_WRITABLE(pe->changed = 1;)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001575 }
1576 }
1577
1578 return 0;
1579}
1580
Denis Vlasenko834410a2006-11-29 12:00:28 +00001581#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001582/*
1583 * Print the message MESG, then read an integer between LOW and HIGH (inclusive).
1584 * If the user hits Enter, DFLT is returned.
1585 * Answers like +10 are interpreted as offsets from BASE.
1586 *
1587 * There is no default if DFLT is not between LOW and HIGH.
1588 */
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001589static sector_t
1590read_int(sector_t low, sector_t dflt, sector_t high, sector_t base, const char *mesg)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001591{
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001592 sector_t value;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001593 int default_ok = 1;
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001594 const char *fmt = "%s (%u-%u, default %u): ";
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001595
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001596 if (dflt < low || dflt > high) {
1597 fmt = "%s (%u-%u): ";
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001598 default_ok = 0;
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001599 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001600
1601 while (1) {
1602 int use_default = default_ok;
1603
1604 /* ask question and read answer */
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001605 do {
1606 printf(fmt, mesg, low, high, dflt);
1607 read_maybe_empty("");
1608 } while (*line_ptr != '\n' && !isdigit(*line_ptr)
1609 && *line_ptr != '-' && *line_ptr != '+');
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001610
Eric Andersen84bdea82004-05-19 10:49:17 +00001611 if (*line_ptr == '+' || *line_ptr == '-') {
Rob Landleyb73451d2006-02-24 16:29:00 +00001612 int minus = (*line_ptr == '-');
Denys Vlasenkoc1045492018-07-25 13:45:36 +02001613 unsigned scale_shift;
Eric Andersenc48d49a2003-07-03 10:02:32 +00001614
Denys Vlasenko163e6372018-07-25 12:08:26 +02001615 if (sizeof(value) <= sizeof(long))
1616 value = strtoul(line_ptr + 1, NULL, 10);
1617 else
1618 value = strtoull(line_ptr + 1, NULL, 10);
Eric Andersenc48d49a2003-07-03 10:02:32 +00001619
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001620 /* (1) if 2nd char is digit, use_default = 0.
Denys Vlasenkoc1045492018-07-25 13:45:36 +02001621 * (2) move line_ptr to first non-digit.
1622 */
Rob Landleyb73451d2006-02-24 16:29:00 +00001623 while (isdigit(*++line_ptr))
1624 use_default = 0;
Eric Andersen84bdea82004-05-19 10:49:17 +00001625
Denys Vlasenkoc1045492018-07-25 13:45:36 +02001626 scale_shift = 0;
1627 switch (*line_ptr | 0x20) {
Rob Landleyb73451d2006-02-24 16:29:00 +00001628 case 'k':
Denys Vlasenkoc1045492018-07-25 13:45:36 +02001629 scale_shift = 10; /* 1024 */
Rob Landleyb73451d2006-02-24 16:29:00 +00001630 break;
Denys Vlasenko1ab38992018-07-25 14:42:53 +02001631/*
1632 * fdisk from util-linux 2.31 seems to round '+NNNk' and '+NNNK' to megabytes,
1633 * (512-byte) sector count of the partition does not equal NNN*2:
1634 *
1635 * Last sector, +sectors or +size{K,M,G,T,P} (1953792-1000215215, default 1000215215): +9727k
1636 * Device Boot Start End Sectors Size Id Type
1637 * /dev/sdaN 1953792 1972223 18432 9M 83 Linux <-- size exactly 9*1024*1024 bytes
1638 *
1639 * Last sector, +sectors or +size{K,M,G,T,P} (1953792-1000215215, default 1000215215): +9728k
1640 * /dev/sdaN 1953792 1974271 20480 10M 83 Linux <-- size exactly 10*1024*1024 bytes
1641 *
1642 * If 'k' means 1000 bytes (not 1024), then 9728k = 9728*1000 = 9500*1024,
1643 * exactly halfway from 9000 to 10000, which explains why it jumps to next mbyte
1644 * at this value.
1645 *
1646 * 'm' does not seem to behave this way: it means 1024*1024 bytes.
1647 *
1648 * Not sure we want to copy this. If user says he wants 1234kbyte partition,
1649 * we do _exactly that_: 1234kbytes = 2468 sectors.
1650 */
Rob Landleyb73451d2006-02-24 16:29:00 +00001651 case 'm':
Denys Vlasenkoc1045492018-07-25 13:45:36 +02001652 scale_shift = 20; /* 1024*1024 */
Rob Landleyb73451d2006-02-24 16:29:00 +00001653 break;
1654 case 'g':
Denys Vlasenkoc1045492018-07-25 13:45:36 +02001655 scale_shift = 30; /* 1024*1024*1024 */
1656 break;
1657 case 't':
1658 scale_shift = 40; /* 1024*1024*1024*1024 */
Rob Landleyb73451d2006-02-24 16:29:00 +00001659 break;
1660 default:
1661 break;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001662 }
Denys Vlasenkoc1045492018-07-25 13:45:36 +02001663 if (scale_shift) {
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00001664 ullong bytes;
Rob Landleyb73451d2006-02-24 16:29:00 +00001665 unsigned long unit;
1666
Denys Vlasenkoc1045492018-07-25 13:45:36 +02001667 bytes = (ullong) value << scale_shift;
Rob Landleyb73451d2006-02-24 16:29:00 +00001668 unit = sector_size * units_per_sector;
1669 bytes += unit/2; /* round */
1670 bytes /= unit;
Denys Vlasenkoc1045492018-07-25 13:45:36 +02001671 value = (bytes != 0 ? bytes - 1 : 0);
Rob Landleyb73451d2006-02-24 16:29:00 +00001672 }
1673 if (minus)
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001674 value = -value;
1675 value += base;
Eric Andersen84bdea82004-05-19 10:49:17 +00001676 } else {
Denys Vlasenkoc1045492018-07-25 13:45:36 +02001677 if (sizeof(value) <= sizeof(long))
1678 value = strtoul(line_ptr, NULL, 10);
1679 else
1680 value = strtoull(line_ptr, NULL, 10);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001681 while (isdigit(*line_ptr)) {
1682 line_ptr++;
1683 use_default = 0;
1684 }
1685 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00001686 if (use_default) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001687 value = dflt;
1688 printf("Using default value %u\n", value);
Denis Vlasenkobd852072007-03-19 14:43:38 +00001689 }
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001690 if (value >= low && value <= high)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001691 break;
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001692 puts("Value is out of range");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001693 }
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001694 return value;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001695}
1696
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001697static unsigned
1698get_partition(int warn, unsigned max)
Rob Landleyb73451d2006-02-24 16:29:00 +00001699{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001700 struct pte *pe;
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001701 unsigned i;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001702
Denis Vlasenkobd852072007-03-19 14:43:38 +00001703 i = read_int(1, 0, max, 0, "Partition number") - 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001704 pe = &ptes[i];
1705
1706 if (warn) {
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001707 if ((!LABEL_IS_SUN && !LABEL_IS_SGI && !pe->part_table->sys_ind)
1708 || (LABEL_IS_SUN && (!sunlabel->partitions[i].num_sectors || !sunlabel->infos[i].id))
1709 || (LABEL_IS_SGI && !sgi_get_num_sectors(i))
1710 ) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001711 printf("Warning: partition %u has empty type\n", i+1);
Rob Landley5527b912006-02-25 03:46:10 +00001712 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001713 }
1714 return i;
1715}
1716
1717static int
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001718get_existing_partition(int warn, unsigned max)
Rob Landleyb73451d2006-02-24 16:29:00 +00001719{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001720 int pno = -1;
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001721 unsigned i;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001722
1723 for (i = 0; i < max; i++) {
1724 struct pte *pe = &ptes[i];
1725 struct partition *p = pe->part_table;
1726
1727 if (p && !is_cleared_partition(p)) {
1728 if (pno >= 0)
1729 goto not_unique;
1730 pno = i;
1731 }
1732 }
1733 if (pno >= 0) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001734 printf("Selected partition %u\n", pno+1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001735 return pno;
1736 }
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001737 puts("No partition is defined yet!");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001738 return -1;
1739
1740 not_unique:
1741 return get_partition(warn, max);
1742}
1743
1744static int
Denys Vlasenko1ab38992018-07-25 14:42:53 +02001745get_nonexisting_partition(void)
Rob Landleyb73451d2006-02-24 16:29:00 +00001746{
Denys Vlasenko1ab38992018-07-25 14:42:53 +02001747 const int max = 4;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001748 int pno = -1;
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001749 unsigned i;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001750
1751 for (i = 0; i < max; i++) {
1752 struct pte *pe = &ptes[i];
1753 struct partition *p = pe->part_table;
1754
1755 if (p && is_cleared_partition(p)) {
1756 if (pno >= 0)
1757 goto not_unique;
1758 pno = i;
1759 }
1760 }
1761 if (pno >= 0) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001762 printf("Selected partition %u\n", pno+1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001763 return pno;
1764 }
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001765 puts("All primary partitions have been defined already!");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001766 return -1;
1767
1768 not_unique:
Denys Vlasenko1ab38992018-07-25 14:42:53 +02001769 return get_partition(/*warn*/ 0, max);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001770}
1771
1772
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001773static void
1774change_units(void)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001775{
1776 display_in_cyl_units = !display_in_cyl_units;
1777 update_units();
Denys Vlasenkod8e4ce02019-10-04 16:45:04 +02001778 printf("Changing display/entry units to %ss\n",
1779 str_units());
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001780}
1781
1782static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001783toggle_active(int i)
1784{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001785 struct pte *pe = &ptes[i];
1786 struct partition *p = pe->part_table;
1787
Rob Landleyb73451d2006-02-24 16:29:00 +00001788 if (IS_EXTENDED(p->sys_ind) && !p->boot_ind)
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001789 printf("WARNING: Partition %u is an extended partition\n", i + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001790 p->boot_ind = (p->boot_ind ? 0 : ACTIVE_FLAG);
1791 pe->changed = 1;
1792}
1793
1794static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001795toggle_dos_compatibility_flag(void)
1796{
Denis Vlasenkocdf62772008-03-17 08:42:43 +00001797 dos_compatible_flag = 1 - dos_compatible_flag;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001798 if (dos_compatible_flag) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001799 sector_offset = g_sectors;
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001800 printf("DOS Compatibility flag is %sset\n", "");
Denis Vlasenkobd852072007-03-19 14:43:38 +00001801 } else {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001802 sector_offset = 1;
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001803 printf("DOS Compatibility flag is %sset\n", "not ");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001804 }
1805}
1806
1807static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001808delete_partition(int i)
1809{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001810 struct pte *pe = &ptes[i];
1811 struct partition *p = pe->part_table;
1812 struct partition *q = pe->ext_pointer;
1813
1814/* Note that for the fifth partition (i == 4) we don't actually
1815 * decrement partitions.
1816 */
1817
1818 if (warn_geometry())
1819 return; /* C/H/S not set */
1820 pe->changed = 1;
1821
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001822 if (LABEL_IS_SUN) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001823 sun_delete_partition(i);
1824 return;
1825 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001826 if (LABEL_IS_SGI) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001827 sgi_delete_partition(i);
1828 return;
1829 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001830
1831 if (i < 4) {
Rob Landleyb73451d2006-02-24 16:29:00 +00001832 if (IS_EXTENDED(p->sys_ind) && i == ext_index) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001833 g_partitions = 4;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001834 ptes[ext_index].ext_pointer = NULL;
1835 extended_offset = 0;
1836 }
1837 clear_partition(p);
1838 return;
1839 }
1840
1841 if (!q->sys_ind && i > 4) {
1842 /* the last one in the chain - just delete */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001843 --g_partitions;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001844 --i;
1845 clear_partition(ptes[i].ext_pointer);
1846 ptes[i].changed = 1;
1847 } else {
1848 /* not the last one - further ones will be moved down */
1849 if (i > 4) {
1850 /* delete this link in the chain */
1851 p = ptes[i-1].ext_pointer;
1852 *p = *q;
1853 set_start_sect(p, get_start_sect(q));
1854 set_nr_sects(p, get_nr_sects(q));
1855 ptes[i-1].changed = 1;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001856 } else if (g_partitions > 5) { /* 5 will be moved to 4 */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001857 /* the first logical in a longer chain */
1858 pe = &ptes[5];
1859
1860 if (pe->part_table) /* prevent SEGFAULT */
1861 set_start_sect(pe->part_table,
Denys Vlasenkod958e902010-04-06 02:32:26 +02001862 get_partition_start_from_dev_start(pe) -
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001863 extended_offset);
Denys Vlasenkod958e902010-04-06 02:32:26 +02001864 pe->offset_from_dev_start = extended_offset;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001865 pe->changed = 1;
1866 }
1867
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001868 if (g_partitions > 5) {
1869 g_partitions--;
1870 while (i < g_partitions) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001871 ptes[i] = ptes[i+1];
1872 i++;
1873 }
Denys Vlasenko5ea1de22010-04-06 02:31:43 +02001874 } else {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001875 /* the only logical: clear only */
1876 clear_partition(ptes[i].part_table);
Denys Vlasenko5ea1de22010-04-06 02:31:43 +02001877 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001878 }
1879}
1880
1881static void
Rob Landleyb73451d2006-02-24 16:29:00 +00001882change_sysid(void)
1883{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001884 int i, sys, origsys;
1885 struct partition *p;
1886
Eric Andersen040f4402003-07-30 08:40:37 +00001887 /* If sgi_label then don't use get_existing_partition,
1888 let the user select a partition, since get_existing_partition()
1889 only works for Linux like partition tables. */
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001890 if (!LABEL_IS_SGI) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001891 i = get_existing_partition(0, g_partitions);
Eric Andersen040f4402003-07-30 08:40:37 +00001892 } else {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001893 i = get_partition(0, g_partitions);
Eric Andersen040f4402003-07-30 08:40:37 +00001894 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001895 if (i == -1)
1896 return;
1897 p = ptes[i].part_table;
1898 origsys = sys = get_sysid(i);
1899
1900 /* if changing types T to 0 is allowed, then
1901 the reverse change must be allowed, too */
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001902 if (!sys && !LABEL_IS_SGI && !LABEL_IS_SUN && !get_nr_sects(p)) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001903 printf("Partition %u does not exist yet!\n", i + 1);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001904 return;
1905 }
1906 while (1) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001907 sys = read_hex(get_sys_types());
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001908
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001909 if (!sys && !LABEL_IS_SGI && !LABEL_IS_SUN) {
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001910 puts("Type 0 means free space to many systems\n"
1911 "(but not to Linux). Having partitions of\n"
1912 "type 0 is probably unwise.");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001913 /* break; */
1914 }
1915
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001916 if (!LABEL_IS_SUN && !LABEL_IS_SGI) {
Rob Landleyb73451d2006-02-24 16:29:00 +00001917 if (IS_EXTENDED(sys) != IS_EXTENDED(p->sys_ind)) {
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001918 puts("You cannot change a partition into"
1919 " an extended one or vice versa");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001920 break;
1921 }
1922 }
1923
1924 if (sys < 256) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00001925#if ENABLE_FEATURE_SUN_LABEL
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001926 if (LABEL_IS_SUN && i == 2 && sys != SUN_WHOLE_DISK)
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001927 puts("Consider leaving partition 3 "
1928 "as Whole disk (5),\n"
1929 "as SunOS/Solaris expects it and "
1930 "even Linux likes it\n");
Denis Vlasenkobd852072007-03-19 14:43:38 +00001931#endif
1932#if ENABLE_FEATURE_SGI_LABEL
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001933 if (LABEL_IS_SGI &&
Rob Landley5527b912006-02-25 03:46:10 +00001934 (
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001935 (i == 10 && sys != SGI_ENTIRE_DISK) ||
Rob Landley5527b912006-02-25 03:46:10 +00001936 (i == 8 && sys != 0)
1937 )
Denis Vlasenkobd852072007-03-19 14:43:38 +00001938 ) {
Denys Vlasenkod60752f2015-10-07 22:42:45 +02001939 puts("Consider leaving partition 9 "
1940 "as volume header (0),\nand "
1941 "partition 11 as entire volume (6)"
1942 "as IRIX expects it\n");
Rob Landley5527b912006-02-25 03:46:10 +00001943 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00001944#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001945 if (sys == origsys)
1946 break;
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001947 if (LABEL_IS_SUN) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001948 sun_change_sysid(i, sys);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00001949 } else if (LABEL_IS_SGI) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001950 sgi_change_sysid(i, sys);
1951 } else
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001952 p->sys_ind = sys;
Rob Landley5527b912006-02-25 03:46:10 +00001953
Denys Vlasenkoddf78502009-09-16 03:03:13 +02001954 printf("Changed system type of partition %u "
Denis Vlasenkobd852072007-03-19 14:43:38 +00001955 "to %x (%s)\n", i + 1, sys,
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001956 partition_type(sys));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001957 ptes[i].changed = 1;
Denis Vlasenkoa5549c92008-01-24 22:49:15 +00001958 //if (is_dos_partition(origsys) || is_dos_partition(sys))
1959 // dos_changed = 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001960 break;
1961 }
1962 }
1963}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001964#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00001965
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001966
Denis Vlasenko28703012006-12-19 20:32:02 +00001967/* check_consistency() and linear2chs() added Sat Mar 6 12:28:16 1993,
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001968 * faith@cs.unc.edu, based on code fragments from pfdisk by Gordon W. Ross,
1969 * Jan. 1990 (version 1.2.1 by Gordon W. Ross Aug. 1990; Modified by S.
1970 * Lubkin Oct. 1991). */
1971
Rob Landleyb73451d2006-02-24 16:29:00 +00001972static void
Denis Vlasenko28703012006-12-19 20:32:02 +00001973linear2chs(unsigned ls, unsigned *c, unsigned *h, unsigned *s)
Rob Landleyb73451d2006-02-24 16:29:00 +00001974{
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001975 int spc = g_heads * g_sectors;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001976
1977 *c = ls / spc;
1978 ls = ls % spc;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001979 *h = ls / g_sectors;
1980 *s = ls % g_sectors + 1; /* sectors count from 1 */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001981}
1982
Rob Landleyb73451d2006-02-24 16:29:00 +00001983static void
1984check_consistency(const struct partition *p, int partition)
1985{
Denis Vlasenko834410a2006-11-29 12:00:28 +00001986 unsigned pbc, pbh, pbs; /* physical beginning c, h, s */
1987 unsigned pec, peh, pes; /* physical ending c, h, s */
1988 unsigned lbc, lbh, lbs; /* logical beginning c, h, s */
1989 unsigned lec, leh, les; /* logical ending c, h, s */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001990
Denis Vlasenkof77f3692007-12-16 17:22:33 +00001991 if (!g_heads || !g_sectors || (partition >= 4))
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001992 return; /* do not check extended partitions */
1993
1994/* physical beginning c, h, s */
Denys Vlasenko607f2b42016-08-23 16:13:33 +02001995 pbc = cylinder(p->sector, p->cyl);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001996 pbh = p->head;
Denys Vlasenko607f2b42016-08-23 16:13:33 +02001997 pbs = sector(p->sector);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00001998
1999/* physical ending c, h, s */
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002000 pec = cylinder(p->end_sector, p->end_cyl);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002001 peh = p->end_head;
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002002 pes = sector(p->end_sector);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002003
2004/* compute logical beginning (c, h, s) */
Denis Vlasenko28703012006-12-19 20:32:02 +00002005 linear2chs(get_start_sect(p), &lbc, &lbh, &lbs);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002006
2007/* compute logical ending (c, h, s) */
Denis Vlasenko28703012006-12-19 20:32:02 +00002008 linear2chs(get_start_sect(p) + get_nr_sects(p) - 1, &lec, &leh, &les);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002009
2010/* Same physical / logical beginning? */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002011 if (g_cylinders <= 1024 && (pbc != lbc || pbh != lbh || pbs != lbs)) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002012 printf("Partition %u has different physical/logical "
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002013 "start (non-Linux?):\n", partition + 1);
2014 printf(" phys=(%u,%u,%u) ", pbc, pbh, pbs);
2015 printf("logical=(%u,%u,%u)\n", lbc, lbh, lbs);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002016 }
2017
2018/* Same physical / logical ending? */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002019 if (g_cylinders <= 1024 && (pec != lec || peh != leh || pes != les)) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002020 printf("Partition %u has different physical/logical "
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002021 "end:\n", partition + 1);
2022 printf(" phys=(%u,%u,%u) ", pec, peh, pes);
2023 printf("logical=(%u,%u,%u)\n", lec, leh, les);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002024 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002025}
2026
2027static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002028list_disk_geometry(void)
2029{
Denys Vlasenkod8e4ce02019-10-04 16:45:04 +02002030 ullong xbytes = total_number_of_sectors / (1024*1024 / 512);
Denys Vlasenko29483ff2016-08-23 17:18:45 +02002031 char x = 'M';
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002032
Denys Vlasenko29483ff2016-08-23 17:18:45 +02002033 if (xbytes >= 10000) {
2034 xbytes += 512; /* fdisk util-linux 2.28 does this */
2035 xbytes /= 1024;
2036 x = 'G';
2037 }
2038 printf("Disk %s: %llu %cB, %llu bytes, %"SECT_FMT"u sectors\n"
2039 "%u cylinders, %u heads, %u sectors/track\n"
Denys Vlasenkod8e4ce02019-10-04 16:45:04 +02002040 "Units: %ss of %u * %u = %u bytes\n"
2041 "\n",
Denys Vlasenko29483ff2016-08-23 17:18:45 +02002042 disk_device, xbytes, x,
Denys Vlasenkod8e4ce02019-10-04 16:45:04 +02002043 ((ullong)total_number_of_sectors * 512), total_number_of_sectors,
Denys Vlasenko29483ff2016-08-23 17:18:45 +02002044 g_cylinders, g_heads, g_sectors,
Denys Vlasenkod8e4ce02019-10-04 16:45:04 +02002045 str_units(),
Denys Vlasenko29483ff2016-08-23 17:18:45 +02002046 units_per_sector, sector_size, units_per_sector * sector_size
2047 );
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002048}
2049
2050/*
2051 * Check whether partition entries are ordered by their starting positions.
2052 * Return 0 if OK. Return i if partition i should have been earlier.
2053 * Two separate checks: primary and logical partitions.
2054 */
2055static int
Rob Landleyb73451d2006-02-24 16:29:00 +00002056wrong_p_order(int *prev)
2057{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002058 const struct pte *pe;
2059 const struct partition *p;
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002060 sector_t last_p_start_pos = 0, p_start_pos;
2061 unsigned i, last_i = 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002062
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002063 for (i = 0; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002064 if (i == 4) {
2065 last_i = 4;
2066 last_p_start_pos = 0;
2067 }
2068 pe = &ptes[i];
Denis Vlasenko6bef3d12007-11-06 03:05:54 +00002069 p = pe->part_table;
2070 if (p->sys_ind) {
Denys Vlasenkod958e902010-04-06 02:32:26 +02002071 p_start_pos = get_partition_start_from_dev_start(pe);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002072
2073 if (last_p_start_pos > p_start_pos) {
2074 if (prev)
2075 *prev = last_i;
2076 return i;
2077 }
2078
2079 last_p_start_pos = p_start_pos;
2080 last_i = i;
2081 }
2082 }
2083 return 0;
2084}
2085
Denis Vlasenko834410a2006-11-29 12:00:28 +00002086#if ENABLE_FEATURE_FDISK_ADVANCED
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002087/*
2088 * Fix the chain of logicals.
2089 * extended_offset is unchanged, the set of sectors used is unchanged
2090 * The chain is sorted so that sectors increase, and so that
2091 * starting sectors increase.
2092 *
2093 * After this it may still be that cfdisk doesnt like the table.
2094 * (This is because cfdisk considers expanded parts, from link to
2095 * end of partition, and these may still overlap.)
2096 * Now
2097 * sfdisk /dev/hda > ohda; sfdisk /dev/hda < ohda
2098 * may help.
2099 */
2100static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002101fix_chain_of_logicals(void)
2102{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002103 int j, oj, ojj, sj, sjj;
2104 struct partition *pj,*pjj,tmp;
2105
2106 /* Stage 1: sort sectors but leave sector of part 4 */
2107 /* (Its sector is the global extended_offset.) */
2108 stage1:
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002109 for (j = 5; j < g_partitions - 1; j++) {
Denys Vlasenkod958e902010-04-06 02:32:26 +02002110 oj = ptes[j].offset_from_dev_start;
2111 ojj = ptes[j+1].offset_from_dev_start;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002112 if (oj > ojj) {
Denys Vlasenkod958e902010-04-06 02:32:26 +02002113 ptes[j].offset_from_dev_start = ojj;
2114 ptes[j+1].offset_from_dev_start = oj;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002115 pj = ptes[j].part_table;
2116 set_start_sect(pj, get_start_sect(pj)+oj-ojj);
2117 pjj = ptes[j+1].part_table;
2118 set_start_sect(pjj, get_start_sect(pjj)+ojj-oj);
2119 set_start_sect(ptes[j-1].ext_pointer,
Rob Landleyb73451d2006-02-24 16:29:00 +00002120 ojj-extended_offset);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002121 set_start_sect(ptes[j].ext_pointer,
Rob Landleyb73451d2006-02-24 16:29:00 +00002122 oj-extended_offset);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002123 goto stage1;
2124 }
2125 }
2126
2127 /* Stage 2: sort starting sectors */
2128 stage2:
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002129 for (j = 4; j < g_partitions - 1; j++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002130 pj = ptes[j].part_table;
2131 pjj = ptes[j+1].part_table;
2132 sj = get_start_sect(pj);
2133 sjj = get_start_sect(pjj);
Denys Vlasenkod958e902010-04-06 02:32:26 +02002134 oj = ptes[j].offset_from_dev_start;
2135 ojj = ptes[j+1].offset_from_dev_start;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002136 if (oj+sj > ojj+sjj) {
2137 tmp = *pj;
2138 *pj = *pjj;
2139 *pjj = tmp;
2140 set_start_sect(pj, ojj+sjj-oj);
2141 set_start_sect(pjj, oj+sj-ojj);
2142 goto stage2;
2143 }
2144 }
2145
2146 /* Probably something was changed */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002147 for (j = 4; j < g_partitions; j++)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002148 ptes[j].changed = 1;
2149}
2150
2151
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002152static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002153fix_partition_table_order(void)
2154{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002155 struct pte *pei, *pek;
2156 int i,k;
2157
2158 if (!wrong_p_order(NULL)) {
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002159 puts("Ordering is already correct\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002160 return;
2161 }
2162
2163 while ((i = wrong_p_order(&k)) != 0 && i < 4) {
2164 /* partition i should have come earlier, move it */
2165 /* We have to move data in the MBR */
2166 struct partition *pi, *pk, *pe, pbuf;
2167 pei = &ptes[i];
2168 pek = &ptes[k];
2169
2170 pe = pei->ext_pointer;
2171 pei->ext_pointer = pek->ext_pointer;
2172 pek->ext_pointer = pe;
2173
2174 pi = pei->part_table;
2175 pk = pek->part_table;
2176
2177 memmove(&pbuf, pi, sizeof(struct partition));
2178 memmove(pi, pk, sizeof(struct partition));
2179 memmove(pk, &pbuf, sizeof(struct partition));
2180
2181 pei->changed = pek->changed = 1;
2182 }
2183
2184 if (i)
2185 fix_chain_of_logicals();
2186
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002187 puts("Done");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002188}
2189#endif
2190
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002191static const char *
2192chs_string11(unsigned cyl, unsigned head, unsigned sect)
2193{
2194 char *buf = auto_string(xzalloc(sizeof(int)*3 * 3));
2195 sprintf(buf, "%u,%u,%u", cylinder(sect,cyl), head, sector(sect));
2196 return buf;
2197}
2198
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002199static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002200list_table(int xtra)
2201{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002202 int i, w;
2203
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002204 if (LABEL_IS_SUN) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002205 sun_list_table(xtra);
2206 return;
2207 }
Kevin Cernekeeccb07042010-10-25 02:00:24 +02002208 if (LABEL_IS_SGI) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002209 sgi_list_table(xtra);
2210 return;
2211 }
Kevin Cernekeeccb07042010-10-25 02:00:24 +02002212 if (LABEL_IS_GPT) {
2213 gpt_list_table(xtra);
2214 return;
2215 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002216
2217 list_disk_geometry();
2218
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002219 if (LABEL_IS_OSF) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002220 xbsd_print_disklabel(xtra);
2221 return;
2222 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002223
2224 /* Heuristic: we list partition 3 of /dev/foo as /dev/foo3,
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002225 * but if the device name ends in a digit, say /dev/foo1,
2226 * then the partition is called /dev/foo1p3.
2227 */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002228 w = strlen(disk_device);
2229 if (w && isdigit(disk_device[w-1]))
2230 w++;
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002231 if (w < 7)
2232 w = 7;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002233
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002234 printf("%-*s Boot StartCHS EndCHS StartLBA EndLBA Sectors Size Id Type\n",
2235 w-1, "Device");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002236
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002237 for (i = 0; i < g_partitions; i++) {
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002238 const struct partition *p;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002239 const struct pte *pe = &ptes[i];
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002240 char boot4[4];
2241 char numstr6[6];
2242 sector_t start_sect;
2243 sector_t end_sect;
2244 sector_t nr_sects;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002245
2246 p = pe->part_table;
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002247 if (!p || is_cleared_partition(p))
2248 continue;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002249
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002250 sprintf(boot4, "%02x", p->boot_ind);
2251 if ((p->boot_ind & 0x7f) == 0) {
2252 /* 0x80 shown as '*', 0x00 is ' ' */
2253 boot4[0] = p->boot_ind ? '*' : ' ';
2254 boot4[1] = ' ';
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002255 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002256
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002257 start_sect = get_partition_start_from_dev_start(pe);
2258 end_sect = start_sect;
2259 nr_sects = get_nr_sects(p);
2260 if (nr_sects != 0)
2261 end_sect += nr_sects - 1;
2262
2263 smart_ulltoa5((ullong)nr_sects * sector_size,
2264 numstr6, " KMGTPEZY")[0] = '\0';
2265
2266#define SFMT SECT_FMT
2267 // Boot StartCHS EndCHS StartLBA EndLBA Sectors Size Id Type
2268 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 +00002269 partname(disk_device, i+1, w+2),
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002270 boot4,
2271 chs_string11(p->cyl, p->head, p->sector),
2272 chs_string11(p->end_cyl, p->end_head, p->end_sector),
2273 start_sect,
2274 end_sect,
2275 nr_sects,
2276 numstr6,
2277 p->sys_ind,
2278 partition_type(p->sys_ind)
2279 );
2280#undef SFMT
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002281 check_consistency(p, i);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002282 }
2283
2284 /* Is partition table in disk order? It need not be, but... */
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002285 /* partition table entries are not checked for correct order
2286 * if this is a sgi, sun or aix labeled disk... */
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002287 if (LABEL_IS_DOS && wrong_p_order(NULL)) {
Rob Landley5527b912006-02-25 03:46:10 +00002288 /* FIXME */
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002289 puts("\nPartition table entries are not in disk order");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002290 }
2291}
2292
Denis Vlasenko834410a2006-11-29 12:00:28 +00002293#if ENABLE_FEATURE_FDISK_ADVANCED
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002294static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002295x_list_table(int extend)
2296{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002297 const struct pte *pe;
2298 const struct partition *p;
2299 int i;
2300
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002301 printf("\nDisk %s: %u heads, %u sectors, %u cylinders\n\n",
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002302 disk_device, g_heads, g_sectors, g_cylinders);
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002303 puts("Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID");
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002304 for (i = 0; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002305 pe = &ptes[i];
2306 p = (extend ? pe->ext_pointer : pe->part_table);
2307 if (p != NULL) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002308 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 +02002309 i + 1, p->boot_ind,
2310 p->head,
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002311 sector(p->sector),
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002312 cylinder(p->sector, p->cyl),
2313 p->end_head,
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002314 sector(p->end_sector),
2315 cylinder(p->end_sector, p->end_cyl),
Denys Vlasenko607f2b42016-08-23 16:13:33 +02002316 get_start_sect(p),
2317 get_nr_sects(p),
2318 p->sys_ind
2319 );
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002320 if (p->sys_ind)
2321 check_consistency(p, i);
2322 }
2323 }
2324}
2325#endif
2326
Denis Vlasenko834410a2006-11-29 12:00:28 +00002327#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002328static void
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002329fill_bounds(sector_t *first, sector_t *last)
Rob Landleyb73451d2006-02-24 16:29:00 +00002330{
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002331 unsigned i;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002332 const struct pte *pe = &ptes[0];
2333 const struct partition *p;
2334
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002335 for (i = 0; i < g_partitions; pe++,i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002336 p = pe->part_table;
Rob Landleyb73451d2006-02-24 16:29:00 +00002337 if (!p->sys_ind || IS_EXTENDED(p->sys_ind)) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002338 first[i] = 0xffffffff;
2339 last[i] = 0;
2340 } else {
Denys Vlasenkod958e902010-04-06 02:32:26 +02002341 first[i] = get_partition_start_from_dev_start(pe);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002342 last[i] = first[i] + get_nr_sects(p) - 1;
2343 }
2344 }
2345}
2346
2347static void
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002348check(int n, unsigned h, unsigned s, unsigned c, sector_t start)
Rob Landleyb73451d2006-02-24 16:29:00 +00002349{
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002350 sector_t total, real_s, real_c;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002351
2352 real_s = sector(s) - 1;
2353 real_c = cylinder(s, c);
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002354 total = (real_c * g_sectors + real_s) * g_heads + h;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002355 if (!total)
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002356 printf("Partition %u contains sector 0\n", n);
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002357 if (h >= g_heads)
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002358 printf("Partition %u: head %u greater than maximum %u\n",
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002359 n, h + 1, g_heads);
2360 if (real_s >= g_sectors)
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002361 printf("Partition %u: sector %u greater than "
2362 "maximum %u\n", n, s, g_sectors);
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002363 if (real_c >= g_cylinders)
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002364 printf("Partition %u: cylinder %"SECT_FMT"u greater than "
2365 "maximum %u\n", n, real_c + 1, g_cylinders);
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002366 if (g_cylinders <= 1024 && start != total)
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002367 printf("Partition %u: previous sectors %"SECT_FMT"u disagrees with "
2368 "total %"SECT_FMT"u\n", n, start, total);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002369}
2370
2371static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002372verify(void)
2373{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002374 int i, j;
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002375 sector_t total = 1;
Denys Vlasenko29483ff2016-08-23 17:18:45 +02002376 sector_t chs_size;
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002377 sector_t first[g_partitions], last[g_partitions];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002378 struct partition *p;
2379
2380 if (warn_geometry())
2381 return;
2382
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002383 if (LABEL_IS_SUN) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002384 verify_sun();
2385 return;
2386 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002387 if (LABEL_IS_SGI) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002388 verify_sgi(1);
2389 return;
2390 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002391
2392 fill_bounds(first, last);
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002393 for (i = 0; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002394 struct pte *pe = &ptes[i];
2395
2396 p = pe->part_table;
Rob Landleyb73451d2006-02-24 16:29:00 +00002397 if (p->sys_ind && !IS_EXTENDED(p->sys_ind)) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002398 check_consistency(p, i);
Denys Vlasenkod958e902010-04-06 02:32:26 +02002399 if (get_partition_start_from_dev_start(pe) < first[i])
Denis Vlasenkobd852072007-03-19 14:43:38 +00002400 printf("Warning: bad start-of-data in "
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002401 "partition %u\n", i + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002402 check(i + 1, p->end_head, p->end_sector, p->end_cyl,
2403 last[i]);
2404 total += last[i] + 1 - first[i];
Denis Vlasenkobd852072007-03-19 14:43:38 +00002405 for (j = 0; j < i; j++) {
2406 if ((first[i] >= first[j] && first[i] <= last[j])
2407 || ((last[i] <= last[j] && last[i] >= first[j]))) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002408 printf("Warning: partition %u overlaps "
2409 "partition %u\n", j + 1, i + 1);
Denis Vlasenkobd852072007-03-19 14:43:38 +00002410 total += first[i] >= first[j] ?
2411 first[i] : first[j];
2412 total -= last[i] <= last[j] ?
2413 last[i] : last[j];
2414 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002415 }
2416 }
2417 }
2418
2419 if (extended_offset) {
2420 struct pte *pex = &ptes[ext_index];
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002421 sector_t e_last = get_start_sect(pex->part_table) +
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002422 get_nr_sects(pex->part_table) - 1;
2423
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002424 for (i = 4; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002425 total++;
2426 p = ptes[i].part_table;
2427 if (!p->sys_ind) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002428 if (i != 4 || i + 1 < g_partitions)
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002429 printf("Warning: partition %u "
Denis Vlasenkobd852072007-03-19 14:43:38 +00002430 "is empty\n", i + 1);
2431 } else if (first[i] < extended_offset || last[i] > e_last) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002432 printf("Logical partition %u not entirely in "
2433 "partition %u\n", i + 1, ext_index + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002434 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002435 }
2436 }
2437
Denys Vlasenko29483ff2016-08-23 17:18:45 +02002438 chs_size = (sector_t)g_heads * g_sectors * g_cylinders;
2439 if (total > chs_size)
2440 printf("Total allocated sectors %u"
2441 " greater than CHS size %"SECT_FMT"u\n",
2442 total, chs_size
2443 );
Denis Vlasenkobd852072007-03-19 14:43:38 +00002444 else {
Denys Vlasenko29483ff2016-08-23 17:18:45 +02002445 total = chs_size - total;
Denis Vlasenkobd852072007-03-19 14:43:38 +00002446 if (total != 0)
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002447 printf("%"SECT_FMT"u unallocated sectors\n", total);
Denis Vlasenkobd852072007-03-19 14:43:38 +00002448 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002449}
2450
2451static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002452add_partition(int n, int sys)
2453{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002454 char mesg[256]; /* 48 does not suffice in Japanese */
Mike Frysingerfa6c4842006-05-26 01:48:17 +00002455 int i, num_read = 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002456 struct partition *p = ptes[n].part_table;
2457 struct partition *q = ptes[ext_index].part_table;
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002458 sector_t limit, temp;
2459 sector_t start, stop = 0;
2460 sector_t first[g_partitions], last[g_partitions];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002461
2462 if (p && p->sys_ind) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00002463 printf(msg_part_already_defined, n + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002464 return;
2465 }
2466 fill_bounds(first, last);
2467 if (n < 4) {
2468 start = sector_offset;
Eric Andersen040f4402003-07-30 08:40:37 +00002469 if (display_in_cyl_units || !total_number_of_sectors)
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002470 limit = (sector_t) g_heads * g_sectors * g_cylinders - 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002471 else
Denis Vlasenko3f22b7f2007-06-02 12:46:55 +00002472 limit = total_number_of_sectors - 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002473 if (extended_offset) {
2474 first[ext_index] = extended_offset;
2475 last[ext_index] = get_start_sect(q) +
2476 get_nr_sects(q) - 1;
2477 }
2478 } else {
2479 start = extended_offset + sector_offset;
2480 limit = get_start_sect(q) + get_nr_sects(q) - 1;
2481 }
2482 if (display_in_cyl_units)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002483 for (i = 0; i < g_partitions; i++)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002484 first[i] = (cround(first[i]) - 1) * units_per_sector;
2485
Denys Vlasenkod8e4ce02019-10-04 16:45:04 +02002486 snprintf(mesg, sizeof(mesg), "First %s", str_units());
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002487 do {
2488 temp = start;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002489 for (i = 0; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002490 int lastplusoff;
2491
Denys Vlasenkod958e902010-04-06 02:32:26 +02002492 if (start == ptes[i].offset_from_dev_start)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002493 start += sector_offset;
Rob Landleyb73451d2006-02-24 16:29:00 +00002494 lastplusoff = last[i] + ((n < 4) ? 0 : sector_offset);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002495 if (start >= first[i] && start <= lastplusoff)
2496 start = lastplusoff + 1;
2497 }
2498 if (start > limit)
2499 break;
Mike Frysingerfa6c4842006-05-26 01:48:17 +00002500 if (start >= temp+units_per_sector && num_read) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002501 printf("Sector %"SECT_FMT"u is already allocated\n", temp);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002502 temp = start;
Mike Frysingerfa6c4842006-05-26 01:48:17 +00002503 num_read = 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002504 }
Mike Frysingerfa6c4842006-05-26 01:48:17 +00002505 if (!num_read && start == temp) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002506 sector_t saved_start;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002507
2508 saved_start = start;
Denys Vlasenkod958e902010-04-06 02:32:26 +02002509 start = read_int(cround(saved_start), cround(saved_start), cround(limit), 0, mesg);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002510 if (display_in_cyl_units) {
2511 start = (start - 1) * units_per_sector;
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002512 if (start < saved_start)
2513 start = saved_start;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002514 }
Mike Frysingerfa6c4842006-05-26 01:48:17 +00002515 num_read = 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002516 }
Mike Frysingerfa6c4842006-05-26 01:48:17 +00002517 } while (start != temp || !num_read);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002518 if (n > 4) { /* NOT for fifth partition */
2519 struct pte *pe = &ptes[n];
2520
Denys Vlasenkod958e902010-04-06 02:32:26 +02002521 pe->offset_from_dev_start = start - sector_offset;
2522 if (pe->offset_from_dev_start == extended_offset) { /* must be corrected */
2523 pe->offset_from_dev_start++;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002524 if (sector_offset == 1)
2525 start++;
2526 }
2527 }
2528
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002529 for (i = 0; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002530 struct pte *pe = &ptes[i];
2531
Denys Vlasenkod958e902010-04-06 02:32:26 +02002532 if (start < pe->offset_from_dev_start && limit >= pe->offset_from_dev_start)
2533 limit = pe->offset_from_dev_start - 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002534 if (start < first[i] && limit >= first[i])
2535 limit = first[i] - 1;
2536 }
2537 if (start > limit) {
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002538 puts("No free sectors available");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002539 if (n > 4)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002540 g_partitions--;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002541 return;
2542 }
2543 if (cround(start) == cround(limit)) {
2544 stop = limit;
2545 } else {
2546 snprintf(mesg, sizeof(mesg),
Denys Vlasenkoc1045492018-07-25 13:45:36 +02002547 "Last %s or +size{,K,M,G,T}",
Denys Vlasenkod8e4ce02019-10-04 16:45:04 +02002548 str_units()
Denys Vlasenkoc1045492018-07-25 13:45:36 +02002549 );
Denys Vlasenkod958e902010-04-06 02:32:26 +02002550 stop = read_int(cround(start), cround(limit), cround(limit), cround(start), mesg);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002551 if (display_in_cyl_units) {
2552 stop = stop * units_per_sector - 1;
2553 if (stop >limit)
2554 stop = limit;
2555 }
2556 }
2557
2558 set_partition(n, 0, start, stop, sys);
2559 if (n > 4)
Denys Vlasenkod958e902010-04-06 02:32:26 +02002560 set_partition(n - 1, 1, ptes[n].offset_from_dev_start, stop, EXTENDED);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002561
Rob Landleyb73451d2006-02-24 16:29:00 +00002562 if (IS_EXTENDED(sys)) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002563 struct pte *pe4 = &ptes[4];
2564 struct pte *pen = &ptes[n];
2565
2566 ext_index = n;
2567 pen->ext_pointer = p;
Denys Vlasenkod958e902010-04-06 02:32:26 +02002568 pe4->offset_from_dev_start = extended_offset = start;
Rob Landley081e3842006-08-03 20:07:35 +00002569 pe4->sectorbuffer = xzalloc(sector_size);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002570 pe4->part_table = pt_offset(pe4->sectorbuffer, 0);
2571 pe4->ext_pointer = pe4->part_table + 1;
2572 pe4->changed = 1;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002573 g_partitions = 5;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002574 }
2575}
2576
2577static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002578add_logical(void)
2579{
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002580 if (g_partitions > 5 || ptes[4].part_table->sys_ind) {
2581 struct pte *pe = &ptes[g_partitions];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002582
Rob Landley081e3842006-08-03 20:07:35 +00002583 pe->sectorbuffer = xzalloc(sector_size);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002584 pe->part_table = pt_offset(pe->sectorbuffer, 0);
2585 pe->ext_pointer = pe->part_table + 1;
Denys Vlasenkod958e902010-04-06 02:32:26 +02002586 pe->offset_from_dev_start = 0;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002587 pe->changed = 1;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002588 g_partitions++;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002589 }
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002590 add_partition(g_partitions - 1, LINUX_NATIVE);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002591}
2592
2593static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002594new_partition(void)
2595{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002596 int i, free_primary = 0;
2597
2598 if (warn_geometry())
2599 return;
2600
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002601 if (LABEL_IS_SUN) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002602 add_sun_partition(get_partition(0, g_partitions), LINUX_NATIVE);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002603 return;
2604 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002605 if (LABEL_IS_SGI) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002606 sgi_add_partition(get_partition(0, g_partitions), LINUX_NATIVE);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002607 return;
2608 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002609 if (LABEL_IS_AIX) {
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002610 puts("Sorry - this fdisk cannot handle AIX disk labels.\n"
Denis Vlasenkobd852072007-03-19 14:43:38 +00002611"If you want to add DOS-type partitions, create a new empty DOS partition\n"
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002612"table first (use 'o'). This will destroy the present disk contents.");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002613 return;
2614 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002615
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002616 for (i = 0; i < 4; i++)
2617 free_primary += !ptes[i].part_table->sys_ind;
Eric Andersenc48d49a2003-07-03 10:02:32 +00002618
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002619 if (!free_primary && g_partitions >= MAXIMUM_PARTS) {
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002620 puts("The maximum number of partitions has been created");
Eric Andersen84bdea82004-05-19 10:49:17 +00002621 return;
Rob Landleyb73451d2006-02-24 16:29:00 +00002622 }
Eric Andersenc48d49a2003-07-03 10:02:32 +00002623
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002624 if (!free_primary) {
2625 if (extended_offset)
2626 add_logical();
2627 else
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002628 puts("You must delete some partition and add "
2629 "an extended partition first");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002630 } else {
Denis Vlasenkodfce08f2007-03-19 14:45:10 +00002631 char c, line[80];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002632 snprintf(line, sizeof(line),
Denys Vlasenkoc1045492018-07-25 13:45:36 +02002633 "Partition type\n"
2634 " p primary partition (1-4)\n"
2635 " %s\n",
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002636 (extended_offset ?
2637 "l logical (5 or over)" : "e extended"));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002638 while (1) {
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002639 c = read_nonempty(line);
Denys Vlasenko1ab38992018-07-25 14:42:53 +02002640 c |= 0x20; /* lowercase */
2641 if (c == 'p') {
2642 i = get_nonexisting_partition();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002643 if (i >= 0)
2644 add_partition(i, LINUX_NATIVE);
2645 return;
2646 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00002647 if (c == 'l' && extended_offset) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002648 add_logical();
2649 return;
2650 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00002651 if (c == 'e' && !extended_offset) {
Denys Vlasenko1ab38992018-07-25 14:42:53 +02002652 i = get_nonexisting_partition();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002653 if (i >= 0)
2654 add_partition(i, EXTENDED);
2655 return;
2656 }
Denis Vlasenkobd852072007-03-19 14:43:38 +00002657 printf("Invalid partition number "
2658 "for type '%c'\n", c);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002659 }
2660 }
2661}
2662
2663static void
Denys Vlasenkob347df92011-08-09 22:49:15 +02002664reread_partition_table(int leave)
2665{
2666 int i;
2667
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002668 puts("Calling ioctl() to re-read partition table");
Denys Vlasenkob347df92011-08-09 22:49:15 +02002669 sync();
2670 /* Users with slow external USB disks on a 320MHz ARM system (year 2011)
2671 * report that sleep is needed, otherwise BLKRRPART may fail with -EIO:
2672 */
Denys Vlasenkoec16c032020-11-29 11:37:34 +01002673 sleep1();
Denys Vlasenkob347df92011-08-09 22:49:15 +02002674 i = ioctl_or_perror(dev_fd, BLKRRPART, NULL,
2675 "WARNING: rereading partition table "
2676 "failed, kernel still uses old table");
2677#if 0
2678 if (dos_changed)
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002679 puts(
Denys Vlasenkob347df92011-08-09 22:49:15 +02002680 "\nWARNING: If you have created or modified any DOS 6.x\n"
2681 "partitions, please see the fdisk manual page for additional\n"
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002682 "information");
Denys Vlasenkob347df92011-08-09 22:49:15 +02002683#endif
2684
2685 if (leave) {
2686 if (ENABLE_FEATURE_CLEAN_UP)
2687 close_dev_fd();
2688 exit(i != 0);
2689 }
2690}
2691
2692static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002693write_table(void)
2694{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002695 int i;
2696
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002697 if (LABEL_IS_DOS) {
Rob Landleyb73451d2006-02-24 16:29:00 +00002698 for (i = 0; i < 3; i++)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002699 if (ptes[i].changed)
2700 ptes[3].changed = 1;
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002701 for (i = 3; i < g_partitions; i++) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002702 struct pte *pe = &ptes[i];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002703 if (pe->changed) {
2704 write_part_table_flag(pe->sectorbuffer);
Denys Vlasenkod958e902010-04-06 02:32:26 +02002705 write_sector(pe->offset_from_dev_start, pe->sectorbuffer);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002706 }
2707 }
2708 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002709 else if (LABEL_IS_SGI) {
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002710 /* no test on change? the "altered" msg below might be mistaken */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002711 sgi_write_table();
2712 }
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002713 else if (LABEL_IS_SUN) {
Denys Vlasenko80856b32011-07-13 09:06:32 +02002714 for (i = 0; i < 8; i++) {
2715 if (ptes[i].changed) {
2716 sun_write_table();
2717 break;
2718 }
2719 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002720 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002721
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002722 puts("The partition table has been altered.");
Denys Vlasenkob347df92011-08-09 22:49:15 +02002723 reread_partition_table(1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002724}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002725#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002726
Denis Vlasenko834410a2006-11-29 12:00:28 +00002727#if ENABLE_FEATURE_FDISK_ADVANCED
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002728#define MAX_PER_LINE 16
2729static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002730print_buffer(char *pbuffer)
2731{
2732 int i,l;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002733
2734 for (i = 0, l = 0; i < sector_size; i++, l++) {
2735 if (l == 0)
2736 printf("0x%03X:", i);
2737 printf(" %02X", (unsigned char) pbuffer[i]);
2738 if (l == MAX_PER_LINE - 1) {
Denis Vlasenko4daad902007-09-27 10:20:47 +00002739 bb_putchar('\n');
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002740 l = -1;
2741 }
2742 }
2743 if (l > 0)
Denis Vlasenko4daad902007-09-27 10:20:47 +00002744 bb_putchar('\n');
2745 bb_putchar('\n');
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002746}
2747
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002748static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002749print_raw(void)
2750{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002751 int i;
2752
Denis Vlasenkobd852072007-03-19 14:43:38 +00002753 printf("Device: %s\n", disk_device);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002754 if (LABEL_IS_SGI || LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002755 print_buffer(MBRbuffer);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002756 else {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002757 for (i = 3; i < g_partitions; i++)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002758 print_buffer(ptes[i].sectorbuffer);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002759 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002760}
2761
2762static void
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002763move_begin(unsigned i)
Rob Landleyb73451d2006-02-24 16:29:00 +00002764{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002765 struct pte *pe = &ptes[i];
2766 struct partition *p = pe->part_table;
Denys Vlasenkod958e902010-04-06 02:32:26 +02002767 sector_t new, first, nr_sects;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002768
2769 if (warn_geometry())
2770 return;
Denys Vlasenkod958e902010-04-06 02:32:26 +02002771 nr_sects = get_nr_sects(p);
2772 if (!p->sys_ind || !nr_sects || IS_EXTENDED(p->sys_ind)) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02002773 printf("Partition %u has no data area\n", i + 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002774 return;
2775 }
Denys Vlasenkofcad7682010-04-06 16:56:33 +02002776 first = get_partition_start_from_dev_start(pe); /* == pe->offset_from_dev_start + get_start_sect(p) */
Denys Vlasenkod958e902010-04-06 02:32:26 +02002777 new = read_int(0 /*was:first*/, first, first + nr_sects - 1, first, "New beginning of data");
2778 if (new != first) {
2779 sector_t new_relative = new - pe->offset_from_dev_start;
2780 nr_sects += (get_start_sect(p) - new_relative);
2781 set_start_sect(p, new_relative);
2782 set_nr_sects(p, nr_sects);
2783 read_nonempty("Recalculate C/H/S values? (Y/N): ");
2784 if ((line_ptr[0] | 0x20) == 'y')
2785 set_hsc_start_end(p, new, new + nr_sects - 1);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002786 pe->changed = 1;
2787 }
2788}
2789
2790static void
Rob Landleyb73451d2006-02-24 16:29:00 +00002791xselect(void)
2792{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002793 char c;
2794
Rob Landleyb73451d2006-02-24 16:29:00 +00002795 while (1) {
Denis Vlasenko4daad902007-09-27 10:20:47 +00002796 bb_putchar('\n');
Denys Vlasenkod958e902010-04-06 02:32:26 +02002797 c = 0x20 | read_nonempty("Expert command (m for help): ");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002798 switch (c) {
2799 case 'a':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002800 if (LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002801 sun_set_alt_cyl();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002802 break;
2803 case 'b':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002804 if (LABEL_IS_DOS)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002805 move_begin(get_partition(0, g_partitions));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002806 break;
2807 case 'c':
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002808 user_cylinders = g_cylinders =
2809 read_int(1, g_cylinders, 1048576, 0,
Denis Vlasenkobd852072007-03-19 14:43:38 +00002810 "Number of cylinders");
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002811 if (LABEL_IS_SUN)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002812 sun_set_ncyl(g_cylinders);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002813 if (LABEL_IS_DOS)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002814 warn_cylinders();
2815 break;
2816 case 'd':
2817 print_raw();
2818 break;
2819 case 'e':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002820 if (LABEL_IS_SGI)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002821 sgi_set_xcyl();
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002822 else if (LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002823 sun_set_xcyl();
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002824 else if (LABEL_IS_DOS)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002825 x_list_table(1);
2826 break;
2827 case 'f':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002828 if (LABEL_IS_DOS)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002829 fix_partition_table_order();
2830 break;
2831 case 'g':
Denis Vlasenko834410a2006-11-29 12:00:28 +00002832#if ENABLE_FEATURE_SGI_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002833 create_sgilabel();
2834#endif
2835 break;
2836 case 'h':
Denys Vlasenkod958e902010-04-06 02:32:26 +02002837 user_heads = g_heads = read_int(1, g_heads, 256, 0, "Number of heads");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002838 update_units();
2839 break;
2840 case 'i':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002841 if (LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002842 sun_set_ilfact();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002843 break;
2844 case 'o':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002845 if (LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002846 sun_set_rspeed();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002847 break;
2848 case 'p':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002849 if (LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002850 list_table(1);
2851 else
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002852 x_list_table(0);
2853 break;
2854 case 'q':
Denis Vlasenko4437d192008-04-17 00:12:10 +00002855 if (ENABLE_FEATURE_CLEAN_UP)
Denis Vlasenkoc033d512008-04-17 01:52:28 +00002856 close_dev_fd();
Denis Vlasenko4daad902007-09-27 10:20:47 +00002857 bb_putchar('\n');
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00002858 exit(EXIT_SUCCESS);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002859 case 'r':
2860 return;
2861 case 's':
Denys Vlasenkod958e902010-04-06 02:32:26 +02002862 user_sectors = g_sectors = read_int(1, g_sectors, 63, 0, "Number of sectors");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002863 if (dos_compatible_flag) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00002864 sector_offset = g_sectors;
Denys Vlasenkod60752f2015-10-07 22:42:45 +02002865 puts("Warning: setting sector offset for DOS "
Denys Vlasenkoc52dc0e2017-08-10 15:12:11 +02002866 "compatibility");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002867 }
2868 update_units();
2869 break;
2870 case 'v':
2871 verify();
2872 break;
2873 case 'w':
2874 write_table(); /* does not return */
2875 break;
2876 case 'y':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00002877 if (LABEL_IS_SUN)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002878 sun_set_pcylcount();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002879 break;
2880 default:
2881 xmenu();
2882 }
2883 }
2884}
2885#endif /* ADVANCED mode */
2886
2887static int
Rob Landleyb73451d2006-02-24 16:29:00 +00002888is_ide_cdrom_or_tape(const char *device)
2889{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002890 FILE *procf;
2891 char buf[100];
2892 struct stat statbuf;
2893 int is_ide = 0;
2894
2895 /* No device was given explicitly, and we are trying some
2896 likely things. But opening /dev/hdc may produce errors like
2897 "hdc: tray open or drive not ready"
2898 if it happens to be a CD-ROM drive. It even happens that
2899 the process hangs on the attempt to read a music CD.
2900 So try to be careful. This only works since 2.1.73. */
2901
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01002902 if (!is_prefixed_with(device, "/dev/hd"))
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002903 return 0;
2904
2905 snprintf(buf, sizeof(buf), "/proc/ide/%s/media", device+5);
Denis Vlasenko5415c852008-07-21 23:05:26 +00002906 procf = fopen_for_read(buf);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002907 if (procf != NULL && fgets(buf, sizeof(buf), procf))
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01002908 is_ide = (is_prefixed_with(buf, "cdrom") ||
2909 is_prefixed_with(buf, "tape"));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002910 else
2911 /* Now when this proc file does not exist, skip the
2912 device when it is read-only. */
2913 if (stat(device, &statbuf) == 0)
2914 is_ide = ((statbuf.st_mode & 0222) == 0);
2915
2916 if (procf)
2917 fclose(procf);
2918 return is_ide;
2919}
2920
Rob Landley5527b912006-02-25 03:46:10 +00002921
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002922static void
Denis Vlasenko4437d192008-04-17 00:12:10 +00002923open_list_and_close(const char *device, int user_specified)
Rob Landleyb73451d2006-02-24 16:29:00 +00002924{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002925 int gb;
2926
2927 disk_device = device;
2928 if (setjmp(listingbuf))
2929 return;
2930 if (!user_specified)
2931 if (is_ide_cdrom_or_tape(device))
2932 return;
Denis Vlasenko4437d192008-04-17 00:12:10 +00002933
2934 /* Open disk_device, save file descriptor to dev_fd */
2935 errno = 0;
2936 gb = get_boot(TRY_ONLY);
2937 if (gb > 0) { /* I/O error */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002938 /* Ignore other errors, since we try IDE
2939 and SCSI hard disks which may not be
2940 installed on the system. */
Denis Vlasenko4437d192008-04-17 00:12:10 +00002941 if (user_specified || errno == EACCES)
2942 bb_perror_msg("can't open '%s'", device);
2943 return;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002944 }
Denis Vlasenko4437d192008-04-17 00:12:10 +00002945
2946 if (gb < 0) { /* no DOS signature */
2947 list_disk_geometry();
2948 if (LABEL_IS_AIX)
2949 goto ret;
2950#if ENABLE_FEATURE_OSF_LABEL
2951 if (bsd_trydev(device) < 0)
2952#endif
2953 printf("Disk %s doesn't contain a valid "
2954 "partition table\n", device);
2955 } else {
2956 list_table(0);
2957#if ENABLE_FEATURE_FDISK_WRITABLE
2958 if (!LABEL_IS_SUN && g_partitions > 4) {
2959 delete_partition(ext_index);
2960 }
2961#endif
2962 }
2963 ret:
Denis Vlasenkoc033d512008-04-17 01:52:28 +00002964 close_dev_fd();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002965}
2966
Lauri Kasanen9cfcc4d2011-04-30 21:31:05 +02002967/* Is it a whole disk? The digit check is still useful
2968 for Xen devices for example. */
2969static int is_whole_disk(const char *disk)
2970{
2971 unsigned len;
2972 int fd = open(disk, O_RDONLY);
2973
2974 if (fd != -1) {
2975 struct hd_geometry geometry;
2976 int err = ioctl(fd, HDIO_GETGEO, &geometry);
2977 close(fd);
2978 if (!err)
2979 return (geometry.start == 0);
2980 }
2981
2982 /* Treat "nameN" as a partition name, not whole disk */
2983 /* note: mmcblk0 should work from the geometry check above */
2984 len = strlen(disk);
2985 if (len != 0 && isdigit(disk[len - 1]))
2986 return 0;
2987
2988 return 1;
2989}
2990
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002991/* for fdisk -l: try all things in /proc/partitions
2992 that look like a partition name (do not end in a digit) */
2993static void
Denis Vlasenko4437d192008-04-17 00:12:10 +00002994list_devs_in_proc_partititons(void)
Rob Landleyb73451d2006-02-24 16:29:00 +00002995{
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002996 FILE *procpt;
Lauri Kasanen9cfcc4d2011-04-30 21:31:05 +02002997 char line[100], ptname[100], devname[120];
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00002998 int ma, mi, sz;
2999
Denis Vlasenkoddec5af2006-10-26 23:25:17 +00003000 procpt = fopen_or_warn("/proc/partitions", "r");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003001
3002 while (fgets(line, sizeof(line), procpt)) {
Denys Vlasenkoddf78502009-09-16 03:03:13 +02003003 if (sscanf(line, " %u %u %u %[^\n ]",
Rob Landleyb73451d2006-02-24 16:29:00 +00003004 &ma, &mi, &sz, ptname) != 4)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003005 continue;
Lauri Kasanen9cfcc4d2011-04-30 21:31:05 +02003006
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00003007 sprintf(devname, "/dev/%s", ptname);
Lauri Kasanen9cfcc4d2011-04-30 21:31:05 +02003008 if (is_whole_disk(devname))
3009 open_list_and_close(devname, 0);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003010 }
Denis Vlasenko834410a2006-11-29 12:00:28 +00003011#if ENABLE_FEATURE_CLEAN_UP
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003012 fclose(procpt);
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00003013#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003014}
3015
Denis Vlasenko834410a2006-11-29 12:00:28 +00003016#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003017static void
Rob Landleyb73451d2006-02-24 16:29:00 +00003018unknown_command(int c)
3019{
Denis Vlasenkobd852072007-03-19 14:43:38 +00003020 printf("%c: unknown command\n", c);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003021}
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00003022#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003023
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00003024int fdisk_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenkoe992bae2009-11-28 15:18:53 +01003025int fdisk_main(int argc UNUSED_PARAM, char **argv)
Rob Landleyb73451d2006-02-24 16:29:00 +00003026{
Denis Vlasenko834410a2006-11-29 12:00:28 +00003027 unsigned opt;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003028 /*
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003029 * fdisk -v
3030 * fdisk -l [-b sectorsize] [-u] device ...
3031 * fdisk -s [partition] ...
3032 * fdisk [-b sectorsize] [-u] device
3033 *
3034 * Options -C, -H, -S set the geometry.
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003035 */
Denis Vlasenkof77f3692007-12-16 17:22:33 +00003036 INIT_G();
Denis Vlasenko8e1a0cc2007-03-18 14:42:45 +00003037
Denis Vlasenkoc033d512008-04-17 01:52:28 +00003038 close_dev_fd(); /* needed: fd 3 must not stay closed */
Denis Vlasenko4437d192008-04-17 00:12:10 +00003039
Denys Vlasenko237bedd2016-07-06 21:58:02 +02003040 opt = getopt32(argv, "b:+C:+H:+lS:+u" IF_FEATURE_FDISK_BLKSIZE("s"),
Denis Vlasenko04e11c92008-02-10 19:44:20 +00003041 &sector_size, &user_cylinders, &user_heads, &user_sectors);
Denis Vlasenko834410a2006-11-29 12:00:28 +00003042 argv += optind;
Denys Vlasenkod958e902010-04-06 02:32:26 +02003043 if (opt & OPT_b) {
Denis Vlasenko834410a2006-11-29 12:00:28 +00003044 /* Ugly: this sector size is really per device,
Denys Vlasenkod958e902010-04-06 02:32:26 +02003045 * so cannot be combined with multiple disks,
3046 * and the same goes for the C/H/S options.
3047 */
3048 if (sector_size < 512
3049 || sector_size > 0x10000
3050 || (sector_size & (sector_size-1)) /* not power of 2 */
3051 ) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00003052 bb_show_usage();
Denys Vlasenkod958e902010-04-06 02:32:26 +02003053 }
Denis Vlasenko834410a2006-11-29 12:00:28 +00003054 sector_offset = 2;
3055 user_set_sector_size = 1;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003056 }
Denis Vlasenko04e11c92008-02-10 19:44:20 +00003057 if (user_heads <= 0 || user_heads >= 256)
3058 user_heads = 0;
3059 if (user_sectors <= 0 || user_sectors >= 64)
3060 user_sectors = 0;
3061 if (opt & OPT_u)
3062 display_in_cyl_units = 0; // -u
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003063
Denis Vlasenko834410a2006-11-29 12:00:28 +00003064#if ENABLE_FEATURE_FDISK_WRITABLE
3065 if (opt & OPT_l) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003066 nowarn = 1;
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00003067#endif
Denis Vlasenkocdf62772008-03-17 08:42:43 +00003068 if (*argv) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003069 listing = 1;
Denis Vlasenkocdf62772008-03-17 08:42:43 +00003070 do {
Denis Vlasenko4437d192008-04-17 00:12:10 +00003071 open_list_and_close(*argv, 1);
Denis Vlasenkocdf62772008-03-17 08:42:43 +00003072 } while (*++argv);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003073 } else {
Denis Vlasenkocdf62772008-03-17 08:42:43 +00003074 /* we don't have device names, */
3075 /* use /proc/partitions instead */
Denis Vlasenko4437d192008-04-17 00:12:10 +00003076 list_devs_in_proc_partititons();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003077 }
3078 return 0;
Denis Vlasenko834410a2006-11-29 12:00:28 +00003079#if ENABLE_FEATURE_FDISK_WRITABLE
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003080 }
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00003081#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003082
Denis Vlasenko834410a2006-11-29 12:00:28 +00003083#if ENABLE_FEATURE_FDISK_BLKSIZE
3084 if (opt & OPT_s) {
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00003085 int j;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003086
3087 nowarn = 1;
Denys Vlasenkoe992bae2009-11-28 15:18:53 +01003088 if (!argv[0])
Manuel Novoa III cad53642003-03-19 09:13:01 +00003089 bb_show_usage();
Denys Vlasenkoe992bae2009-11-28 15:18:53 +01003090 for (j = 0; argv[j]; j++) {
Denis Vlasenkocdf62772008-03-17 08:42:43 +00003091 unsigned long long size;
3092 fd = xopen(argv[j], O_RDONLY);
Denis Vlasenko4437d192008-04-17 00:12:10 +00003093 size = bb_BLKGETSIZE_sectors(fd) / 2;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003094 close(fd);
Denys Vlasenkoe992bae2009-11-28 15:18:53 +01003095 if (argv[1])
Denys Vlasenkoddf78502009-09-16 03:03:13 +02003096 printf("%llu\n", size);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003097 else
Denys Vlasenkoddf78502009-09-16 03:03:13 +02003098 printf("%s: %llu\n", argv[j], size);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003099 }
3100 return 0;
3101 }
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00003102#endif
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003103
Denis Vlasenko834410a2006-11-29 12:00:28 +00003104#if ENABLE_FEATURE_FDISK_WRITABLE
Denys Vlasenkoe992bae2009-11-28 15:18:53 +01003105 if (!argv[0] || argv[1])
Manuel Novoa III cad53642003-03-19 09:13:01 +00003106 bb_show_usage();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003107
Denis Vlasenko834410a2006-11-29 12:00:28 +00003108 disk_device = argv[0];
Denis Vlasenko4437d192008-04-17 00:12:10 +00003109 get_boot(OPEN_MAIN);
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003110
Denis Vlasenko98ae2162006-10-12 19:30:44 +00003111 if (LABEL_IS_OSF) {
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003112 /* OSF label, and no DOS label */
Denis Vlasenkobd852072007-03-19 14:43:38 +00003113 printf("Detected an OSF/1 disklabel on %s, entering "
3114 "disklabel mode\n", disk_device);
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +00003115 bsd_select();
Rob Landley5527b912006-02-25 03:46:10 +00003116 /*Why do we do this? It seems to be counter-intuitive*/
Denis Vlasenko4437d192008-04-17 00:12:10 +00003117 current_label_type = LABEL_DOS;
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003118 /* If we return we may want to make an empty DOS label? */
3119 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003120
3121 while (1) {
Denis Vlasenko3bba5452006-12-30 17:57:03 +00003122 int c;
Denis Vlasenko4daad902007-09-27 10:20:47 +00003123 bb_putchar('\n');
Denys Vlasenkod958e902010-04-06 02:32:26 +02003124 c = 0x20 | read_nonempty("Command (m for help): ");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003125 switch (c) {
3126 case 'a':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00003127 if (LABEL_IS_DOS)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00003128 toggle_active(get_partition(1, g_partitions));
Denis Vlasenko98ae2162006-10-12 19:30:44 +00003129 else if (LABEL_IS_SUN)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00003130 toggle_sunflags(get_partition(1, g_partitions),
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003131 0x01);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00003132 else if (LABEL_IS_SGI)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003133 sgi_set_bootpartition(
Denis Vlasenkof77f3692007-12-16 17:22:33 +00003134 get_partition(1, g_partitions));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003135 else
3136 unknown_command(c);
3137 break;
3138 case 'b':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00003139 if (LABEL_IS_SGI) {
Denis Vlasenkobd852072007-03-19 14:43:38 +00003140 printf("\nThe current boot file is: %s\n",
Rob Landleyb73451d2006-02-24 16:29:00 +00003141 sgi_get_bootfile());
Denis Vlasenkobd852072007-03-19 14:43:38 +00003142 if (read_maybe_empty("Please enter the name of the "
Denys Vlasenko69675782013-01-14 01:34:48 +01003143 "new boot file: ") == '\n')
Denys Vlasenkod60752f2015-10-07 22:42:45 +02003144 puts("Boot file unchanged");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003145 else
3146 sgi_set_bootfile(line_ptr);
Denis Vlasenko834410a2006-11-29 12:00:28 +00003147 }
3148#if ENABLE_FEATURE_OSF_LABEL
3149 else
Denis Vlasenkoefeed5e2006-10-14 16:16:03 +00003150 bsd_select();
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003151#endif
3152 break;
3153 case 'c':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00003154 if (LABEL_IS_DOS)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003155 toggle_dos_compatibility_flag();
Denis Vlasenko98ae2162006-10-12 19:30:44 +00003156 else if (LABEL_IS_SUN)
Denis Vlasenkof77f3692007-12-16 17:22:33 +00003157 toggle_sunflags(get_partition(1, g_partitions),
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003158 0x10);
Denis Vlasenko98ae2162006-10-12 19:30:44 +00003159 else if (LABEL_IS_SGI)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003160 sgi_set_swappartition(
Denis Vlasenkof77f3692007-12-16 17:22:33 +00003161 get_partition(1, g_partitions));
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003162 else
3163 unknown_command(c);
3164 break;
3165 case 'd':
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00003166 {
Eric Andersen040f4402003-07-30 08:40:37 +00003167 int j;
Eric Andersen040f4402003-07-30 08:40:37 +00003168 /* If sgi_label then don't use get_existing_partition,
3169 let the user select a partition, since
3170 get_existing_partition() only works for Linux-like
3171 partition tables */
Denis Vlasenko98ae2162006-10-12 19:30:44 +00003172 if (!LABEL_IS_SGI) {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00003173 j = get_existing_partition(1, g_partitions);
Eric Andersen040f4402003-07-30 08:40:37 +00003174 } else {
Denis Vlasenkof77f3692007-12-16 17:22:33 +00003175 j = get_partition(1, g_partitions);
Eric Andersen040f4402003-07-30 08:40:37 +00003176 }
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +00003177 if (j >= 0)
3178 delete_partition(j);
3179 }
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003180 break;
3181 case 'i':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00003182 if (LABEL_IS_SGI)
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003183 create_sgiinfo();
3184 else
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003185 unknown_command(c);
3186 case 'l':
3187 list_types(get_sys_types());
3188 break;
3189 case 'm':
3190 menu();
3191 break;
3192 case 'n':
3193 new_partition();
3194 break;
3195 case 'o':
3196 create_doslabel();
3197 break;
3198 case 'p':
3199 list_table(0);
3200 break;
3201 case 'q':
Denis Vlasenkoc033d512008-04-17 01:52:28 +00003202 if (ENABLE_FEATURE_CLEAN_UP)
3203 close_dev_fd();
Denis Vlasenko4daad902007-09-27 10:20:47 +00003204 bb_putchar('\n');
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003205 return 0;
3206 case 's':
Denis Vlasenko834410a2006-11-29 12:00:28 +00003207#if ENABLE_FEATURE_SUN_LABEL
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003208 create_sunlabel();
3209#endif
3210 break;
3211 case 't':
3212 change_sysid();
3213 break;
3214 case 'u':
3215 change_units();
3216 break;
3217 case 'v':
3218 verify();
3219 break;
3220 case 'w':
Denys Vlasenko80856b32011-07-13 09:06:32 +02003221 write_table(); /* does not return */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003222 break;
Denis Vlasenko834410a2006-11-29 12:00:28 +00003223#if ENABLE_FEATURE_FDISK_ADVANCED
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003224 case 'x':
Denis Vlasenko98ae2162006-10-12 19:30:44 +00003225 if (LABEL_IS_SGI) {
Denys Vlasenkod60752f2015-10-07 22:42:45 +02003226 puts("\n\tSorry, no experts menu for SGI "
3227 "partition tables available\n");
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003228 } else
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003229 xselect();
3230 break;
3231#endif
3232 default:
3233 unknown_command(c);
3234 menu();
3235 }
3236 }
3237 return 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003238#endif /* FEATURE_FDISK_WRITABLE */
Glenn L McGrath441e7ef2002-11-26 22:00:21 +00003239}