License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 22:07:57 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* fs/partitions/msdos.c
|
|
|
|
*
|
|
|
|
* Code extracted from drivers/block/genhd.c
|
|
|
|
* Copyright (C) 1991-1998 Linus Torvalds
|
|
|
|
*
|
|
|
|
* Thanks to Branko Lankester, lankeste@fwi.uva.nl, who found a bug
|
|
|
|
* in the early extended-partition checks and added DM partitions
|
|
|
|
*
|
|
|
|
* Support for DiskManager v6.0x added by Mark Lord,
|
|
|
|
* with information provided by OnTrack. This now works for linux fdisk
|
|
|
|
* and LILO, as well as loadlin and bootln. Note that disks other than
|
|
|
|
* /dev/hda *must* have a "DOS" type 0x51 partition in the first slot (hda1).
|
|
|
|
*
|
|
|
|
* More flexible handling of extended partitions - aeb, 950831
|
|
|
|
*
|
|
|
|
* Check partition table on IDE disks for common CHS translations
|
|
|
|
*
|
|
|
|
* Re-organised Feb 1998 Russell King
|
2020-03-24 15:25:29 +08:00
|
|
|
*
|
|
|
|
* BSD disklabel support by Yossi Gottlieb <yogo@math.tau.ac.il>
|
|
|
|
* updated by Marc Espie <Marc.Espie@openbsd.org>
|
|
|
|
*
|
|
|
|
* Unixware slices support by Andrzej Krzysztofowicz <ankry@mif.pg.gda.pl>
|
|
|
|
* and Krzysztof G. Baranowski <kgb@knm.org.pl>
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
2008-04-28 17:16:31 +08:00
|
|
|
#include <linux/msdos_fs.h>
|
2020-03-24 15:25:26 +08:00
|
|
|
#include <linux/msdos_partition.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#include "check.h"
|
|
|
|
#include "efi.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Many architectures don't like unaligned accesses, while
|
|
|
|
* the nr_sects and start_sect partition table entries are
|
|
|
|
* at a 2 (mod 4) address.
|
|
|
|
*/
|
|
|
|
#include <asm/unaligned.h>
|
|
|
|
|
2020-03-24 15:25:26 +08:00
|
|
|
static inline sector_t nr_sects(struct msdos_partition *p)
|
2010-03-24 04:35:50 +08:00
|
|
|
{
|
|
|
|
return (sector_t)get_unaligned_le32(&p->nr_sects);
|
|
|
|
}
|
|
|
|
|
2020-03-24 15:25:26 +08:00
|
|
|
static inline sector_t start_sect(struct msdos_partition *p)
|
2010-03-24 04:35:50 +08:00
|
|
|
{
|
|
|
|
return (sector_t)get_unaligned_le32(&p->start_sect);
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2020-03-24 15:25:26 +08:00
|
|
|
static inline int is_extended_partition(struct msdos_partition *p)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2021-05-08 06:07:53 +08:00
|
|
|
return (p->sys_ind == DOS_EXTENDED_PARTITION ||
|
|
|
|
p->sys_ind == WIN98_EXTENDED_PARTITION ||
|
|
|
|
p->sys_ind == LINUX_EXTENDED_PARTITION);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#define MSDOS_LABEL_MAGIC1 0x55
|
|
|
|
#define MSDOS_LABEL_MAGIC2 0xAA
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
msdos_magic_present(unsigned char *p)
|
|
|
|
{
|
|
|
|
return (p[0] == MSDOS_LABEL_MAGIC1 && p[1] == MSDOS_LABEL_MAGIC2);
|
|
|
|
}
|
|
|
|
|
2006-09-29 16:59:39 +08:00
|
|
|
/* Value is EBCDIC 'IBMA' */
|
|
|
|
#define AIX_LABEL_MAGIC1 0xC9
|
|
|
|
#define AIX_LABEL_MAGIC2 0xC2
|
|
|
|
#define AIX_LABEL_MAGIC3 0xD4
|
|
|
|
#define AIX_LABEL_MAGIC4 0xC1
|
2010-05-16 02:09:30 +08:00
|
|
|
static int aix_magic_present(struct parsed_partitions *state, unsigned char *p)
|
2006-09-29 16:59:39 +08:00
|
|
|
{
|
2020-03-24 15:25:26 +08:00
|
|
|
struct msdos_partition *pt = (struct msdos_partition *) (p + 0x1be);
|
2006-09-29 16:59:39 +08:00
|
|
|
Sector sect;
|
|
|
|
unsigned char *d;
|
2007-02-10 17:45:47 +08:00
|
|
|
int slot, ret = 0;
|
2006-09-29 16:59:39 +08:00
|
|
|
|
2007-02-10 17:45:48 +08:00
|
|
|
if (!(p[0] == AIX_LABEL_MAGIC1 &&
|
|
|
|
p[1] == AIX_LABEL_MAGIC2 &&
|
|
|
|
p[2] == AIX_LABEL_MAGIC3 &&
|
|
|
|
p[3] == AIX_LABEL_MAGIC4))
|
2006-09-29 16:59:39 +08:00
|
|
|
return 0;
|
2020-03-24 15:25:28 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Assume the partition table is valid if Linux partitions exists.
|
|
|
|
* Note that old Solaris/x86 partitions use the same indicator as
|
|
|
|
* Linux swap partitions, so we consider that a Linux partition as
|
|
|
|
* well.
|
|
|
|
*/
|
2007-02-10 17:45:47 +08:00
|
|
|
for (slot = 1; slot <= 4; slot++, pt++) {
|
2020-03-24 15:25:28 +08:00
|
|
|
if (pt->sys_ind == SOLARIS_X86_PARTITION ||
|
|
|
|
pt->sys_ind == LINUX_RAID_PARTITION ||
|
|
|
|
pt->sys_ind == LINUX_DATA_PARTITION ||
|
|
|
|
pt->sys_ind == LINUX_LVM_PARTITION ||
|
|
|
|
is_extended_partition(pt))
|
2007-02-10 17:45:47 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2010-05-16 02:09:30 +08:00
|
|
|
d = read_part_sector(state, 7, §);
|
2006-09-29 16:59:39 +08:00
|
|
|
if (d) {
|
|
|
|
if (d[0] == '_' && d[1] == 'L' && d[2] == 'V' && d[3] == 'M')
|
|
|
|
ret = 1;
|
|
|
|
put_dev_sector(sect);
|
2013-07-09 07:01:28 +08:00
|
|
|
}
|
2006-09-29 16:59:39 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-11-09 08:12:28 +08:00
|
|
|
static void set_info(struct parsed_partitions *state, int slot,
|
|
|
|
u32 disksig)
|
|
|
|
{
|
|
|
|
struct partition_meta_info *info = &state->parts[slot].info;
|
|
|
|
|
|
|
|
snprintf(info->uuid, sizeof(info->uuid), "%08x-%02x", disksig,
|
|
|
|
slot);
|
|
|
|
info->volname[0] = 0;
|
|
|
|
state->parts[slot].has_info = true;
|
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Create devices for each logical partition in an extended partition.
|
|
|
|
* The logical partitions form a linked list, with each entry being
|
|
|
|
* a partition table with two entries. The first entry
|
|
|
|
* is the real data partition (with a start relative to the partition
|
|
|
|
* table start). The second is a pointer to the next logical partition
|
|
|
|
* (with a start relative to the entire extended partition).
|
|
|
|
* We do not create a Linux partition for the partition tables, but
|
|
|
|
* only for the actual data partitions.
|
|
|
|
*/
|
|
|
|
|
2010-05-16 02:09:30 +08:00
|
|
|
static void parse_extended(struct parsed_partitions *state,
|
2012-11-09 08:12:28 +08:00
|
|
|
sector_t first_sector, sector_t first_size,
|
|
|
|
u32 disksig)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2020-03-24 15:25:26 +08:00
|
|
|
struct msdos_partition *p;
|
2005-04-17 06:20:36 +08:00
|
|
|
Sector sect;
|
|
|
|
unsigned char *data;
|
2010-03-24 04:35:50 +08:00
|
|
|
sector_t this_sector, this_size;
|
2021-08-10 23:45:09 +08:00
|
|
|
sector_t sector_size;
|
2005-04-17 06:20:36 +08:00
|
|
|
int loopct = 0; /* number of links followed
|
|
|
|
without finding a data partition */
|
|
|
|
int i;
|
|
|
|
|
2021-08-10 23:45:09 +08:00
|
|
|
sector_size = queue_logical_block_size(state->disk->queue) / 512;
|
2005-04-17 06:20:36 +08:00
|
|
|
this_sector = first_sector;
|
|
|
|
this_size = first_size;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
if (++loopct > 100)
|
|
|
|
return;
|
|
|
|
if (state->next == state->limit)
|
|
|
|
return;
|
2010-05-16 02:09:30 +08:00
|
|
|
data = read_part_sector(state, this_sector, §);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (!data)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!msdos_magic_present(data + 510))
|
2013-07-09 07:01:28 +08:00
|
|
|
goto done;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2020-03-24 15:25:26 +08:00
|
|
|
p = (struct msdos_partition *) (data + 0x1be);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Usually, the first entry is the real data partition,
|
|
|
|
* the 2nd entry is the next extended partition, or empty,
|
|
|
|
* and the 3rd and 4th entries are unused.
|
|
|
|
* However, DRDOS sometimes has the extended partition as
|
|
|
|
* the first entry (when the data partition is empty),
|
|
|
|
* and OS/2 seems to use all four entries.
|
|
|
|
*/
|
|
|
|
|
2013-07-09 07:01:28 +08:00
|
|
|
/*
|
2005-04-17 06:20:36 +08:00
|
|
|
* First process the data partition(s)
|
|
|
|
*/
|
2014-06-13 02:16:57 +08:00
|
|
|
for (i = 0; i < 4; i++, p++) {
|
2010-03-24 04:35:50 +08:00
|
|
|
sector_t offs, size, next;
|
2014-06-13 02:16:57 +08:00
|
|
|
|
2010-03-24 04:35:50 +08:00
|
|
|
if (!nr_sects(p) || is_extended_partition(p))
|
2005-04-17 06:20:36 +08:00
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Check the 3rd and 4th entries -
|
|
|
|
these sometimes contain random garbage */
|
2010-03-24 04:35:50 +08:00
|
|
|
offs = start_sect(p)*sector_size;
|
|
|
|
size = nr_sects(p)*sector_size;
|
2005-04-17 06:20:36 +08:00
|
|
|
next = this_sector + offs;
|
|
|
|
if (i >= 2) {
|
|
|
|
if (offs + size > this_size)
|
|
|
|
continue;
|
|
|
|
if (next < first_sector)
|
|
|
|
continue;
|
|
|
|
if (next + size > first_sector + first_size)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
put_partition(state, state->next, next, size);
|
2012-11-09 08:12:28 +08:00
|
|
|
set_info(state, state->next, disksig);
|
2021-05-08 06:07:53 +08:00
|
|
|
if (p->sys_ind == LINUX_RAID_PARTITION)
|
2007-02-11 15:50:00 +08:00
|
|
|
state->parts[state->next].flags = ADDPART_FLAG_RAID;
|
2005-04-17 06:20:36 +08:00
|
|
|
loopct = 0;
|
|
|
|
if (++state->next == state->limit)
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Next, process the (first) extended partition, if present.
|
|
|
|
* (So far, there seems to be no reason to make
|
|
|
|
* parse_extended() recursive and allow a tree
|
|
|
|
* of extended partitions.)
|
|
|
|
* It should be a link to the next logical partition.
|
|
|
|
*/
|
|
|
|
p -= 4;
|
2014-06-13 02:16:57 +08:00
|
|
|
for (i = 0; i < 4; i++, p++)
|
2010-03-24 04:35:50 +08:00
|
|
|
if (nr_sects(p) && is_extended_partition(p))
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
if (i == 4)
|
|
|
|
goto done; /* nothing left to do */
|
|
|
|
|
2010-03-24 04:35:50 +08:00
|
|
|
this_sector = first_sector + start_sect(p) * sector_size;
|
|
|
|
this_size = nr_sects(p) * sector_size;
|
2005-04-17 06:20:36 +08:00
|
|
|
put_dev_sector(sect);
|
|
|
|
}
|
|
|
|
done:
|
|
|
|
put_dev_sector(sect);
|
|
|
|
}
|
|
|
|
|
2020-03-24 15:25:29 +08:00
|
|
|
#define SOLARIS_X86_NUMSLICE 16
|
|
|
|
#define SOLARIS_X86_VTOC_SANE (0x600DDEEEUL)
|
|
|
|
|
|
|
|
struct solaris_x86_slice {
|
|
|
|
__le16 s_tag; /* ID tag of partition */
|
|
|
|
__le16 s_flag; /* permission flags */
|
|
|
|
__le32 s_start; /* start sector no of partition */
|
|
|
|
__le32 s_size; /* # of blocks in partition */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct solaris_x86_vtoc {
|
|
|
|
unsigned int v_bootinfo[3]; /* info needed by mboot */
|
|
|
|
__le32 v_sanity; /* to verify vtoc sanity */
|
|
|
|
__le32 v_version; /* layout version */
|
|
|
|
char v_volume[8]; /* volume name */
|
|
|
|
__le16 v_sectorsz; /* sector size in bytes */
|
|
|
|
__le16 v_nparts; /* number of partitions */
|
|
|
|
unsigned int v_reserved[10]; /* free space */
|
|
|
|
struct solaris_x86_slice
|
|
|
|
v_slice[SOLARIS_X86_NUMSLICE]; /* slice headers */
|
|
|
|
unsigned int timestamp[SOLARIS_X86_NUMSLICE]; /* timestamp */
|
|
|
|
char v_asciilabel[128]; /* for compatibility */
|
|
|
|
};
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* james@bpgc.com: Solaris has a nasty indicator: 0x82 which also
|
|
|
|
indicates linux swap. Be careful before believing this is Solaris. */
|
|
|
|
|
2010-05-16 02:09:30 +08:00
|
|
|
static void parse_solaris_x86(struct parsed_partitions *state,
|
|
|
|
sector_t offset, sector_t size, int origin)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
#ifdef CONFIG_SOLARIS_X86_PARTITION
|
|
|
|
Sector sect;
|
|
|
|
struct solaris_x86_vtoc *v;
|
|
|
|
int i;
|
2007-07-26 09:30:08 +08:00
|
|
|
short max_nparts;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2010-05-16 02:09:30 +08:00
|
|
|
v = read_part_sector(state, offset + 1, §);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (!v)
|
|
|
|
return;
|
|
|
|
if (le32_to_cpu(v->v_sanity) != SOLARIS_X86_VTOC_SANE) {
|
|
|
|
put_dev_sector(sect);
|
|
|
|
return;
|
|
|
|
}
|
2010-08-11 09:03:14 +08:00
|
|
|
{
|
|
|
|
char tmp[1 + BDEVNAME_SIZE + 10 + 11 + 1];
|
|
|
|
|
|
|
|
snprintf(tmp, sizeof(tmp), " %s%d: <solaris:", state->name, origin);
|
|
|
|
strlcat(state->pp_buf, tmp, PAGE_SIZE);
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
if (le32_to_cpu(v->v_version) != 1) {
|
2010-08-11 09:03:14 +08:00
|
|
|
char tmp[64];
|
|
|
|
|
|
|
|
snprintf(tmp, sizeof(tmp), " cannot handle version %d vtoc>\n",
|
|
|
|
le32_to_cpu(v->v_version));
|
|
|
|
strlcat(state->pp_buf, tmp, PAGE_SIZE);
|
2005-04-17 06:20:36 +08:00
|
|
|
put_dev_sector(sect);
|
|
|
|
return;
|
|
|
|
}
|
2007-07-26 09:30:08 +08:00
|
|
|
/* Ensure we can handle previous case of VTOC with 8 entries gracefully */
|
2014-06-13 02:16:57 +08:00
|
|
|
max_nparts = le16_to_cpu(v->v_nparts) > 8 ? SOLARIS_X86_NUMSLICE : 8;
|
|
|
|
for (i = 0; i < max_nparts && state->next < state->limit; i++) {
|
2005-04-17 06:20:36 +08:00
|
|
|
struct solaris_x86_slice *s = &v->v_slice[i];
|
2010-08-11 09:03:14 +08:00
|
|
|
char tmp[3 + 10 + 1 + 1];
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
if (s->s_size == 0)
|
|
|
|
continue;
|
2010-08-11 09:03:14 +08:00
|
|
|
snprintf(tmp, sizeof(tmp), " [s%d]", i);
|
|
|
|
strlcat(state->pp_buf, tmp, PAGE_SIZE);
|
2005-04-17 06:20:36 +08:00
|
|
|
/* solaris partitions are relative to current MS-DOS
|
|
|
|
* one; must add the offset of the current partition */
|
|
|
|
put_partition(state, state->next++,
|
|
|
|
le32_to_cpu(s->s_start)+offset,
|
|
|
|
le32_to_cpu(s->s_size));
|
|
|
|
}
|
|
|
|
put_dev_sector(sect);
|
2010-08-11 09:03:14 +08:00
|
|
|
strlcat(state->pp_buf, " >\n", PAGE_SIZE);
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-03-24 15:25:29 +08:00
|
|
|
/* check against BSD src/sys/sys/disklabel.h for consistency */
|
|
|
|
#define BSD_DISKMAGIC (0x82564557UL) /* The disk magic number */
|
|
|
|
#define BSD_MAXPARTITIONS 16
|
|
|
|
#define OPENBSD_MAXPARTITIONS 16
|
|
|
|
#define BSD_FS_UNUSED 0 /* disklabel unused partition entry ID */
|
|
|
|
struct bsd_disklabel {
|
|
|
|
__le32 d_magic; /* the magic number */
|
|
|
|
__s16 d_type; /* drive type */
|
|
|
|
__s16 d_subtype; /* controller/d_type specific */
|
|
|
|
char d_typename[16]; /* type name, e.g. "eagle" */
|
|
|
|
char d_packname[16]; /* pack identifier */
|
|
|
|
__u32 d_secsize; /* # of bytes per sector */
|
|
|
|
__u32 d_nsectors; /* # of data sectors per track */
|
|
|
|
__u32 d_ntracks; /* # of tracks per cylinder */
|
|
|
|
__u32 d_ncylinders; /* # of data cylinders per unit */
|
|
|
|
__u32 d_secpercyl; /* # of data sectors per cylinder */
|
|
|
|
__u32 d_secperunit; /* # of data sectors per unit */
|
|
|
|
__u16 d_sparespertrack; /* # of spare sectors per track */
|
|
|
|
__u16 d_sparespercyl; /* # of spare sectors per cylinder */
|
|
|
|
__u32 d_acylinders; /* # of alt. cylinders per unit */
|
|
|
|
__u16 d_rpm; /* rotational speed */
|
|
|
|
__u16 d_interleave; /* hardware sector interleave */
|
|
|
|
__u16 d_trackskew; /* sector 0 skew, per track */
|
|
|
|
__u16 d_cylskew; /* sector 0 skew, per cylinder */
|
|
|
|
__u32 d_headswitch; /* head switch time, usec */
|
|
|
|
__u32 d_trkseek; /* track-to-track seek, usec */
|
|
|
|
__u32 d_flags; /* generic flags */
|
|
|
|
#define NDDATA 5
|
|
|
|
__u32 d_drivedata[NDDATA]; /* drive-type specific information */
|
|
|
|
#define NSPARE 5
|
|
|
|
__u32 d_spare[NSPARE]; /* reserved for future use */
|
|
|
|
__le32 d_magic2; /* the magic number (again) */
|
|
|
|
__le16 d_checksum; /* xor of data incl. partitions */
|
|
|
|
|
|
|
|
/* filesystem and partition information: */
|
|
|
|
__le16 d_npartitions; /* number of partitions in following */
|
|
|
|
__le32 d_bbsize; /* size of boot area at sn0, bytes */
|
|
|
|
__le32 d_sbsize; /* max size of fs superblock, bytes */
|
|
|
|
struct bsd_partition { /* the partition table */
|
|
|
|
__le32 p_size; /* number of sectors in partition */
|
|
|
|
__le32 p_offset; /* starting sector */
|
|
|
|
__le32 p_fsize; /* filesystem basic fragment size */
|
|
|
|
__u8 p_fstype; /* filesystem type, see below */
|
|
|
|
__u8 p_frag; /* filesystem fragments per block */
|
|
|
|
__le16 p_cpg; /* filesystem cylinders per group */
|
|
|
|
} d_partitions[BSD_MAXPARTITIONS]; /* actually may be more */
|
|
|
|
};
|
|
|
|
|
2005-06-26 05:58:47 +08:00
|
|
|
#if defined(CONFIG_BSD_DISKLABEL)
|
2013-07-09 07:01:28 +08:00
|
|
|
/*
|
2005-04-17 06:20:36 +08:00
|
|
|
* Create devices for BSD partitions listed in a disklabel, under a
|
|
|
|
* dos-like partition. See parse_extended() for more information.
|
|
|
|
*/
|
2010-05-16 02:09:30 +08:00
|
|
|
static void parse_bsd(struct parsed_partitions *state,
|
|
|
|
sector_t offset, sector_t size, int origin, char *flavour,
|
|
|
|
int max_partitions)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
Sector sect;
|
|
|
|
struct bsd_disklabel *l;
|
|
|
|
struct bsd_partition *p;
|
2010-08-11 09:03:14 +08:00
|
|
|
char tmp[64];
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2010-05-16 02:09:30 +08:00
|
|
|
l = read_part_sector(state, offset + 1, §);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (!l)
|
|
|
|
return;
|
|
|
|
if (le32_to_cpu(l->d_magic) != BSD_DISKMAGIC) {
|
|
|
|
put_dev_sector(sect);
|
|
|
|
return;
|
|
|
|
}
|
2010-08-11 09:03:14 +08:00
|
|
|
|
|
|
|
snprintf(tmp, sizeof(tmp), " %s%d: <%s:", state->name, origin, flavour);
|
|
|
|
strlcat(state->pp_buf, tmp, PAGE_SIZE);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
if (le16_to_cpu(l->d_npartitions) < max_partitions)
|
|
|
|
max_partitions = le16_to_cpu(l->d_npartitions);
|
|
|
|
for (p = l->d_partitions; p - l->d_partitions < max_partitions; p++) {
|
2010-03-24 04:35:50 +08:00
|
|
|
sector_t bsd_start, bsd_size;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
if (state->next == state->limit)
|
|
|
|
break;
|
2013-07-09 07:01:28 +08:00
|
|
|
if (p->p_fstype == BSD_FS_UNUSED)
|
2005-04-17 06:20:36 +08:00
|
|
|
continue;
|
|
|
|
bsd_start = le32_to_cpu(p->p_offset);
|
|
|
|
bsd_size = le32_to_cpu(p->p_size);
|
2018-01-11 00:12:16 +08:00
|
|
|
/* FreeBSD has relative offset if C partition offset is zero */
|
|
|
|
if (memcmp(flavour, "bsd\0", 4) == 0 &&
|
|
|
|
le32_to_cpu(l->d_partitions[2].p_offset) == 0)
|
2017-05-22 03:27:00 +08:00
|
|
|
bsd_start += offset;
|
2005-04-17 06:20:36 +08:00
|
|
|
if (offset == bsd_start && size == bsd_size)
|
|
|
|
/* full parent partition, we have it already */
|
|
|
|
continue;
|
|
|
|
if (offset > bsd_start || offset+size < bsd_start+bsd_size) {
|
2010-08-11 09:03:14 +08:00
|
|
|
strlcat(state->pp_buf, "bad subpartition - ignored\n", PAGE_SIZE);
|
2005-04-17 06:20:36 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
put_partition(state, state->next++, bsd_start, bsd_size);
|
|
|
|
}
|
|
|
|
put_dev_sector(sect);
|
2010-08-11 09:03:14 +08:00
|
|
|
if (le16_to_cpu(l->d_npartitions) > max_partitions) {
|
|
|
|
snprintf(tmp, sizeof(tmp), " (ignored %d more)",
|
|
|
|
le16_to_cpu(l->d_npartitions) - max_partitions);
|
|
|
|
strlcat(state->pp_buf, tmp, PAGE_SIZE);
|
|
|
|
}
|
|
|
|
strlcat(state->pp_buf, " >\n", PAGE_SIZE);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-05-16 02:09:30 +08:00
|
|
|
static void parse_freebsd(struct parsed_partitions *state,
|
|
|
|
sector_t offset, sector_t size, int origin)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
#ifdef CONFIG_BSD_DISKLABEL
|
2010-05-16 02:09:30 +08:00
|
|
|
parse_bsd(state, offset, size, origin, "bsd", BSD_MAXPARTITIONS);
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-05-16 02:09:30 +08:00
|
|
|
static void parse_netbsd(struct parsed_partitions *state,
|
|
|
|
sector_t offset, sector_t size, int origin)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
#ifdef CONFIG_BSD_DISKLABEL
|
2010-05-16 02:09:30 +08:00
|
|
|
parse_bsd(state, offset, size, origin, "netbsd", BSD_MAXPARTITIONS);
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-05-16 02:09:30 +08:00
|
|
|
static void parse_openbsd(struct parsed_partitions *state,
|
|
|
|
sector_t offset, sector_t size, int origin)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
#ifdef CONFIG_BSD_DISKLABEL
|
2010-05-16 02:09:30 +08:00
|
|
|
parse_bsd(state, offset, size, origin, "openbsd",
|
|
|
|
OPENBSD_MAXPARTITIONS);
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-03-24 15:25:29 +08:00
|
|
|
#define UNIXWARE_DISKMAGIC (0xCA5E600DUL) /* The disk magic number */
|
|
|
|
#define UNIXWARE_DISKMAGIC2 (0x600DDEEEUL) /* The slice table magic nr */
|
|
|
|
#define UNIXWARE_NUMSLICE 16
|
|
|
|
#define UNIXWARE_FS_UNUSED 0 /* Unused slice entry ID */
|
|
|
|
|
|
|
|
struct unixware_slice {
|
|
|
|
__le16 s_label; /* label */
|
|
|
|
__le16 s_flags; /* permission flags */
|
|
|
|
__le32 start_sect; /* starting sector */
|
|
|
|
__le32 nr_sects; /* number of sectors in slice */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct unixware_disklabel {
|
|
|
|
__le32 d_type; /* drive type */
|
|
|
|
__le32 d_magic; /* the magic number */
|
|
|
|
__le32 d_version; /* version number */
|
|
|
|
char d_serial[12]; /* serial number of the device */
|
|
|
|
__le32 d_ncylinders; /* # of data cylinders per device */
|
|
|
|
__le32 d_ntracks; /* # of tracks per cylinder */
|
|
|
|
__le32 d_nsectors; /* # of data sectors per track */
|
|
|
|
__le32 d_secsize; /* # of bytes per sector */
|
|
|
|
__le32 d_part_start; /* # of first sector of this partition*/
|
|
|
|
__le32 d_unknown1[12]; /* ? */
|
|
|
|
__le32 d_alt_tbl; /* byte offset of alternate table */
|
|
|
|
__le32 d_alt_len; /* byte length of alternate table */
|
|
|
|
__le32 d_phys_cyl; /* # of physical cylinders per device */
|
|
|
|
__le32 d_phys_trk; /* # of physical tracks per cylinder */
|
|
|
|
__le32 d_phys_sec; /* # of physical sectors per track */
|
|
|
|
__le32 d_phys_bytes; /* # of physical bytes per sector */
|
|
|
|
__le32 d_unknown2; /* ? */
|
|
|
|
__le32 d_unknown3; /* ? */
|
|
|
|
__le32 d_pad[8]; /* pad */
|
|
|
|
|
|
|
|
struct unixware_vtoc {
|
|
|
|
__le32 v_magic; /* the magic number */
|
|
|
|
__le32 v_version; /* version number */
|
|
|
|
char v_name[8]; /* volume name */
|
|
|
|
__le16 v_nslices; /* # of slices */
|
|
|
|
__le16 v_unknown1; /* ? */
|
|
|
|
__le32 v_reserved[10]; /* reserved */
|
|
|
|
struct unixware_slice
|
|
|
|
v_slice[UNIXWARE_NUMSLICE]; /* slice headers */
|
|
|
|
} vtoc;
|
|
|
|
}; /* 408 */
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Create devices for Unixware partitions listed in a disklabel, under a
|
|
|
|
* dos-like partition. See parse_extended() for more information.
|
|
|
|
*/
|
2010-05-16 02:09:30 +08:00
|
|
|
static void parse_unixware(struct parsed_partitions *state,
|
|
|
|
sector_t offset, sector_t size, int origin)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
#ifdef CONFIG_UNIXWARE_DISKLABEL
|
|
|
|
Sector sect;
|
|
|
|
struct unixware_disklabel *l;
|
|
|
|
struct unixware_slice *p;
|
|
|
|
|
2010-05-16 02:09:30 +08:00
|
|
|
l = read_part_sector(state, offset + 29, §);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (!l)
|
|
|
|
return;
|
|
|
|
if (le32_to_cpu(l->d_magic) != UNIXWARE_DISKMAGIC ||
|
|
|
|
le32_to_cpu(l->vtoc.v_magic) != UNIXWARE_DISKMAGIC2) {
|
|
|
|
put_dev_sector(sect);
|
|
|
|
return;
|
|
|
|
}
|
2010-08-11 09:03:14 +08:00
|
|
|
{
|
|
|
|
char tmp[1 + BDEVNAME_SIZE + 10 + 12 + 1];
|
|
|
|
|
|
|
|
snprintf(tmp, sizeof(tmp), " %s%d: <unixware:", state->name, origin);
|
|
|
|
strlcat(state->pp_buf, tmp, PAGE_SIZE);
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
p = &l->vtoc.v_slice[1];
|
|
|
|
/* I omit the 0th slice as it is the same as whole disk. */
|
|
|
|
while (p - &l->vtoc.v_slice[0] < UNIXWARE_NUMSLICE) {
|
|
|
|
if (state->next == state->limit)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (p->s_label != UNIXWARE_FS_UNUSED)
|
|
|
|
put_partition(state, state->next++,
|
2010-03-24 04:35:50 +08:00
|
|
|
le32_to_cpu(p->start_sect),
|
|
|
|
le32_to_cpu(p->nr_sects));
|
2005-04-17 06:20:36 +08:00
|
|
|
p++;
|
|
|
|
}
|
|
|
|
put_dev_sector(sect);
|
2010-08-11 09:03:14 +08:00
|
|
|
strlcat(state->pp_buf, " >\n", PAGE_SIZE);
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-03-24 15:25:29 +08:00
|
|
|
#define MINIX_NR_SUBPARTITIONS 4
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Minix 2.0.0/2.0.2 subpartition support.
|
|
|
|
* Anand Krishnamurthy <anandk@wiproge.med.ge.com>
|
|
|
|
* Rajeev V. Pillai <rajeevvp@yahoo.com>
|
|
|
|
*/
|
2010-05-16 02:09:30 +08:00
|
|
|
static void parse_minix(struct parsed_partitions *state,
|
|
|
|
sector_t offset, sector_t size, int origin)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
#ifdef CONFIG_MINIX_SUBPARTITION
|
|
|
|
Sector sect;
|
|
|
|
unsigned char *data;
|
2020-03-24 15:25:26 +08:00
|
|
|
struct msdos_partition *p;
|
2005-04-17 06:20:36 +08:00
|
|
|
int i;
|
|
|
|
|
2010-05-16 02:09:30 +08:00
|
|
|
data = read_part_sector(state, offset, §);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (!data)
|
|
|
|
return;
|
|
|
|
|
2020-03-24 15:25:26 +08:00
|
|
|
p = (struct msdos_partition *)(data + 0x1be);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* The first sector of a Minix partition can have either
|
|
|
|
* a secondary MBR describing its subpartitions, or
|
|
|
|
* the normal boot sector. */
|
2014-06-13 02:16:57 +08:00
|
|
|
if (msdos_magic_present(data + 510) &&
|
2021-05-08 06:07:53 +08:00
|
|
|
p->sys_ind == MINIX_PARTITION) { /* subpartition table present */
|
2010-08-11 09:03:14 +08:00
|
|
|
char tmp[1 + BDEVNAME_SIZE + 10 + 9 + 1];
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2010-08-11 09:03:14 +08:00
|
|
|
snprintf(tmp, sizeof(tmp), " %s%d: <minix:", state->name, origin);
|
|
|
|
strlcat(state->pp_buf, tmp, PAGE_SIZE);
|
2005-04-17 06:20:36 +08:00
|
|
|
for (i = 0; i < MINIX_NR_SUBPARTITIONS; i++, p++) {
|
|
|
|
if (state->next == state->limit)
|
|
|
|
break;
|
|
|
|
/* add each partition in use */
|
2021-05-08 06:07:53 +08:00
|
|
|
if (p->sys_ind == MINIX_PARTITION)
|
2005-04-17 06:20:36 +08:00
|
|
|
put_partition(state, state->next++,
|
2010-03-24 04:35:50 +08:00
|
|
|
start_sect(p), nr_sects(p));
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2010-08-11 09:03:14 +08:00
|
|
|
strlcat(state->pp_buf, " >\n", PAGE_SIZE);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
put_dev_sector(sect);
|
|
|
|
#endif /* CONFIG_MINIX_SUBPARTITION */
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct {
|
|
|
|
unsigned char id;
|
2010-05-16 02:09:30 +08:00
|
|
|
void (*parse)(struct parsed_partitions *, sector_t, sector_t, int);
|
2005-04-17 06:20:36 +08:00
|
|
|
} subtypes[] = {
|
|
|
|
{FREEBSD_PARTITION, parse_freebsd},
|
|
|
|
{NETBSD_PARTITION, parse_netbsd},
|
|
|
|
{OPENBSD_PARTITION, parse_openbsd},
|
|
|
|
{MINIX_PARTITION, parse_minix},
|
|
|
|
{UNIXWARE_PARTITION, parse_unixware},
|
|
|
|
{SOLARIS_X86_PARTITION, parse_solaris_x86},
|
|
|
|
{NEW_SOLARIS_X86_PARTITION, parse_solaris_x86},
|
|
|
|
{0, NULL},
|
|
|
|
};
|
2013-07-09 07:01:28 +08:00
|
|
|
|
2010-05-16 02:09:30 +08:00
|
|
|
int msdos_partition(struct parsed_partitions *state)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2021-08-10 23:45:09 +08:00
|
|
|
sector_t sector_size;
|
2005-04-17 06:20:36 +08:00
|
|
|
Sector sect;
|
|
|
|
unsigned char *data;
|
2020-03-24 15:25:26 +08:00
|
|
|
struct msdos_partition *p;
|
2008-04-28 17:16:31 +08:00
|
|
|
struct fat_boot_sector *fb;
|
2005-04-17 06:20:36 +08:00
|
|
|
int slot;
|
2012-11-09 08:12:28 +08:00
|
|
|
u32 disksig;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2021-08-10 23:45:09 +08:00
|
|
|
sector_size = queue_logical_block_size(state->disk->queue) / 512;
|
2010-05-16 02:09:30 +08:00
|
|
|
data = read_part_sector(state, 0, §);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (!data)
|
|
|
|
return -1;
|
2013-02-28 09:05:16 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Note order! (some AIX disks, e.g. unbootable kind,
|
|
|
|
* have no MSDOS 55aa)
|
|
|
|
*/
|
|
|
|
if (aix_magic_present(state, data)) {
|
2005-04-17 06:20:36 +08:00
|
|
|
put_dev_sector(sect);
|
2013-07-09 07:01:30 +08:00
|
|
|
#ifdef CONFIG_AIX_PARTITION
|
|
|
|
return aix_partition(state);
|
|
|
|
#else
|
2013-02-28 09:05:16 +08:00
|
|
|
strlcat(state->pp_buf, " [AIX]", PAGE_SIZE);
|
2005-04-17 06:20:36 +08:00
|
|
|
return 0;
|
2013-07-09 07:01:30 +08:00
|
|
|
#endif
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2013-02-28 09:05:16 +08:00
|
|
|
if (!msdos_magic_present(data + 510)) {
|
2006-09-29 16:59:39 +08:00
|
|
|
put_dev_sector(sect);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Now that the 55aa signature is present, this is probably
|
|
|
|
* either the boot sector of a FAT filesystem or a DOS-type
|
|
|
|
* partition table. Reject this in case the boot indicator
|
|
|
|
* is not 0 or 0x80.
|
|
|
|
*/
|
2020-03-24 15:25:26 +08:00
|
|
|
p = (struct msdos_partition *) (data + 0x1be);
|
2005-04-17 06:20:36 +08:00
|
|
|
for (slot = 1; slot <= 4; slot++, p++) {
|
|
|
|
if (p->boot_ind != 0 && p->boot_ind != 0x80) {
|
2008-04-28 17:16:31 +08:00
|
|
|
/*
|
2021-06-20 03:51:31 +08:00
|
|
|
* Even without a valid boot indicator value
|
2008-04-28 17:16:31 +08:00
|
|
|
* its still possible this is valid FAT filesystem
|
|
|
|
* without a partition table.
|
|
|
|
*/
|
|
|
|
fb = (struct fat_boot_sector *) data;
|
|
|
|
if (slot == 1 && fb->reserved && fb->fats
|
|
|
|
&& fat_valid_media(fb->media)) {
|
2010-08-11 09:03:14 +08:00
|
|
|
strlcat(state->pp_buf, "\n", PAGE_SIZE);
|
2008-04-28 17:16:31 +08:00
|
|
|
put_dev_sector(sect);
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
put_dev_sector(sect);
|
|
|
|
return 0;
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_EFI_PARTITION
|
2020-03-24 15:25:26 +08:00
|
|
|
p = (struct msdos_partition *) (data + 0x1be);
|
2005-04-17 06:20:36 +08:00
|
|
|
for (slot = 1 ; slot <= 4 ; slot++, p++) {
|
|
|
|
/* If this is an EFI GPT disk, msdos should ignore it. */
|
2021-05-08 06:07:53 +08:00
|
|
|
if (p->sys_ind == EFI_PMBR_OSTYPE_EFI_GPT) {
|
2005-04-17 06:20:36 +08:00
|
|
|
put_dev_sector(sect);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2020-03-24 15:25:26 +08:00
|
|
|
p = (struct msdos_partition *) (data + 0x1be);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-11-09 08:12:28 +08:00
|
|
|
disksig = le32_to_cpup((__le32 *)(data + 0x1b8));
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Look for partitions in two passes:
|
|
|
|
* First find the primary and DOS-type extended partitions.
|
|
|
|
* On the second pass look inside *BSD, Unixware and Solaris partitions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
state->next = 5;
|
|
|
|
for (slot = 1 ; slot <= 4 ; slot++, p++) {
|
2010-03-24 04:35:50 +08:00
|
|
|
sector_t start = start_sect(p)*sector_size;
|
|
|
|
sector_t size = nr_sects(p)*sector_size;
|
2014-06-13 02:16:57 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
if (!size)
|
|
|
|
continue;
|
|
|
|
if (is_extended_partition(p)) {
|
2010-03-24 04:35:50 +08:00
|
|
|
/*
|
|
|
|
* prevent someone doing mkfs or mkswap on an
|
|
|
|
* extended partition, but leave room for LILO
|
|
|
|
* FIXME: this uses one logical sector for > 512b
|
|
|
|
* sector, although it may not be enough/proper.
|
|
|
|
*/
|
|
|
|
sector_t n = 2;
|
2014-06-13 02:16:57 +08:00
|
|
|
|
2010-03-24 04:35:50 +08:00
|
|
|
n = min(size, max(sector_size, n));
|
|
|
|
put_partition(state, slot, start, n);
|
|
|
|
|
2010-08-11 09:03:14 +08:00
|
|
|
strlcat(state->pp_buf, " <", PAGE_SIZE);
|
2012-11-09 08:12:28 +08:00
|
|
|
parse_extended(state, start, size, disksig);
|
2010-08-11 09:03:14 +08:00
|
|
|
strlcat(state->pp_buf, " >", PAGE_SIZE);
|
2005-04-17 06:20:36 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
put_partition(state, slot, start, size);
|
2012-11-09 08:12:28 +08:00
|
|
|
set_info(state, slot, disksig);
|
2021-05-08 06:07:53 +08:00
|
|
|
if (p->sys_ind == LINUX_RAID_PARTITION)
|
2010-04-18 06:28:09 +08:00
|
|
|
state->parts[slot].flags = ADDPART_FLAG_RAID;
|
2021-05-08 06:07:53 +08:00
|
|
|
if (p->sys_ind == DM6_PARTITION)
|
2010-08-11 09:03:14 +08:00
|
|
|
strlcat(state->pp_buf, "[DM]", PAGE_SIZE);
|
2021-05-08 06:07:53 +08:00
|
|
|
if (p->sys_ind == EZD_PARTITION)
|
2010-08-11 09:03:14 +08:00
|
|
|
strlcat(state->pp_buf, "[EZD]", PAGE_SIZE);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2010-08-11 09:03:14 +08:00
|
|
|
strlcat(state->pp_buf, "\n", PAGE_SIZE);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* second pass - output for each on a separate line */
|
2020-03-24 15:25:26 +08:00
|
|
|
p = (struct msdos_partition *) (0x1be + data);
|
2005-04-17 06:20:36 +08:00
|
|
|
for (slot = 1 ; slot <= 4 ; slot++, p++) {
|
2021-05-08 06:07:53 +08:00
|
|
|
unsigned char id = p->sys_ind;
|
2005-04-17 06:20:36 +08:00
|
|
|
int n;
|
|
|
|
|
2010-03-24 04:35:50 +08:00
|
|
|
if (!nr_sects(p))
|
2005-04-17 06:20:36 +08:00
|
|
|
continue;
|
|
|
|
|
|
|
|
for (n = 0; subtypes[n].parse && id != subtypes[n].id; n++)
|
|
|
|
;
|
|
|
|
|
|
|
|
if (!subtypes[n].parse)
|
|
|
|
continue;
|
2010-05-16 02:09:30 +08:00
|
|
|
subtypes[n].parse(state, start_sect(p) * sector_size,
|
|
|
|
nr_sects(p) * sector_size, slot);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
put_dev_sector(sect);
|
|
|
|
return 1;
|
|
|
|
}
|