You-Cheng Syu | d569294 | 2018-01-04 14:40:59 +0800 | [diff] [blame] | 1 | #!/usr/bin/env python |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 2 | # Copyright 2017 The Chromium OS Authors. All rights reserved. |
| 3 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | # found in the LICENSE file. |
| 5 | |
| 6 | """An utility to manipulate GPT on a disk image. |
| 7 | |
| 8 | Chromium OS factory software usually needs to access partitions from disk |
| 9 | images. However, there is no good, lightweight, and portable GPT utility. |
| 10 | Most Chromium OS systems use `cgpt`, but that's not by default installed on |
| 11 | Ubuntu. Most systems have parted (GNU) or partx (util-linux-ng) but they have |
| 12 | their own problems. |
| 13 | |
| 14 | For example, when a disk image is resized (usually enlarged for putting more |
| 15 | resources on stateful partition), GPT table must be updated. However, |
| 16 | - `parted` can't repair partition without interactive console in exception |
| 17 | handler. |
| 18 | - `partx` cannot fix headers nor make changes to partition table. |
| 19 | - `cgpt repair` does not fix `LastUsableLBA` so we cannot enlarge partition. |
| 20 | - `gdisk` is not installed on most systems. |
| 21 | |
| 22 | As a result, we need a dedicated tool to help processing GPT. |
| 23 | |
| 24 | This pygpt.py provides a simple and customized implementation for processing |
| 25 | GPT, as a replacement for `cgpt`. |
| 26 | """ |
| 27 | |
| 28 | |
| 29 | from __future__ import print_function |
| 30 | |
| 31 | import argparse |
| 32 | import binascii |
| 33 | import collections |
| 34 | import logging |
| 35 | import os |
| 36 | import struct |
Hung-Te Lin | f641d30 | 2018-04-18 15:09:35 +0800 | [diff] [blame] | 37 | import subprocess |
| 38 | import sys |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 39 | import uuid |
| 40 | |
| 41 | |
| 42 | # The binascii.crc32 returns signed integer, so CRC32 in in struct must be |
| 43 | # declared as 'signed' (l) instead of 'unsigned' (L). |
| 44 | # http://en.wikipedia.org/wiki/GUID_Partition_Table#Partition_table_header_.28LBA_1.29 |
Hung-Te Lin | 49ac3c2 | 2018-04-17 14:37:54 +0800 | [diff] [blame] | 45 | HEADER_DESCRIPTION = """ |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 46 | 8s Signature |
| 47 | 4s Revision |
| 48 | L HeaderSize |
| 49 | l CRC32 |
| 50 | 4s Reserved |
| 51 | Q CurrentLBA |
| 52 | Q BackupLBA |
| 53 | Q FirstUsableLBA |
| 54 | Q LastUsableLBA |
| 55 | 16s DiskGUID |
| 56 | Q PartitionEntriesStartingLBA |
| 57 | L PartitionEntriesNumber |
| 58 | L PartitionEntrySize |
| 59 | l PartitionArrayCRC32 |
| 60 | """ |
| 61 | |
| 62 | # http://en.wikipedia.org/wiki/GUID_Partition_Table#Partition_entries |
Hung-Te Lin | 49ac3c2 | 2018-04-17 14:37:54 +0800 | [diff] [blame] | 63 | PARTITION_DESCRIPTION = """ |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 64 | 16s TypeGUID |
| 65 | 16s UniqueGUID |
| 66 | Q FirstLBA |
| 67 | Q LastLBA |
| 68 | Q Attributes |
| 69 | 72s Names |
| 70 | """ |
| 71 | |
Hung-Te Lin | c6e009c | 2018-04-17 15:06:16 +0800 | [diff] [blame] | 72 | # The PMBR has so many variants. The basic format is defined in |
| 73 | # https://en.wikipedia.org/wiki/Master_boot_record#Sector_layout, and our |
| 74 | # implementation, as derived from `cgpt`, is following syslinux as: |
| 75 | # https://chromium.googlesource.com/chromiumos/platform/vboot_reference/+/master/cgpt/cgpt.h#32 |
| 76 | PMBR_DESCRIPTION = """ |
| 77 | 424s BootCode |
| 78 | 16s BootGUID |
| 79 | L DiskID |
| 80 | 2s Magic |
| 81 | 16s LegacyPart0 |
| 82 | 16s LegacyPart1 |
| 83 | 16s LegacyPart2 |
| 84 | 16s LegacyPart3 |
| 85 | 2s Signature |
| 86 | """ |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 87 | |
Hung-Te Lin | 49ac3c2 | 2018-04-17 14:37:54 +0800 | [diff] [blame] | 88 | def BitProperty(getter, setter, shift, mask): |
| 89 | """A generator for bit-field properties. |
| 90 | |
| 91 | This is used inside a class to manipulate an integer-like variable using |
| 92 | properties. The getter and setter should be member functions to change the |
| 93 | underlying member data. |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 94 | |
| 95 | Args: |
Hung-Te Lin | 49ac3c2 | 2018-04-17 14:37:54 +0800 | [diff] [blame] | 96 | getter: a function to read integer type variable (for all the bits). |
| 97 | setter: a function to set the new changed integer type variable. |
| 98 | shift: integer for how many bits should be shifted (right). |
| 99 | mask: integer for the mask to filter out bit field. |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 100 | """ |
Hung-Te Lin | 49ac3c2 | 2018-04-17 14:37:54 +0800 | [diff] [blame] | 101 | def _getter(self): |
| 102 | return (getter(self) >> shift) & mask |
| 103 | def _setter(self, value): |
| 104 | assert value & mask == value, ( |
| 105 | 'Value %s out of range (mask=%s)' % (value, mask)) |
| 106 | setter(self, getter(self) & ~(mask << shift) | value << shift) |
| 107 | return property(_getter, _setter) |
| 108 | |
| 109 | |
| 110 | class GPTBlob(object): |
| 111 | """A decorator class to help accessing GPT blobs as named tuple. |
| 112 | |
| 113 | To use this, specify the blob description (struct format and named tuple field |
| 114 | names) above the derived class, for example: |
| 115 | |
| 116 | @GPTBlob(description): |
| 117 | class Header(GPTObject): |
| 118 | pass |
| 119 | """ |
| 120 | def __init__(self, description): |
| 121 | spec = description.split() |
| 122 | self.struct_format = '<' + ''.join(spec[::2]) |
| 123 | self.fields = spec[1::2] |
| 124 | |
| 125 | def __call__(self, cls): |
| 126 | new_bases = (( |
| 127 | collections.namedtuple(cls.__name__, self.fields),) + cls.__bases__) |
| 128 | new_cls = type(cls.__name__, new_bases, dict(cls.__dict__)) |
| 129 | setattr(new_cls, 'FORMAT', self.struct_format) |
| 130 | return new_cls |
| 131 | |
| 132 | |
| 133 | class GPTObject(object): |
| 134 | """An object in GUID Partition Table. |
| 135 | |
| 136 | This needs to be decorated by @GPTBlob(description) and inherited by a real |
| 137 | class. Properties (not member functions) in CamelCase should be reserved for |
| 138 | named tuple attributes. |
| 139 | |
| 140 | To create a new object, use class method ReadFrom(), which takes a stream |
| 141 | as input or None to create with all elements set to zero. To make changes to |
| 142 | named tuple elements, use member function Clone(changes). |
| 143 | |
| 144 | It is also possible to attach some additional properties to the object as meta |
| 145 | data (for example path of the underlying image file). To do that, specify the |
| 146 | data as keyword arguments when calling ReadFrom(). These properties will be |
| 147 | preserved when you call Clone(). |
| 148 | |
| 149 | A special case is "reset named tuple elements of an object but keeping all |
| 150 | properties", for example changing a partition object to unused (zeroed). |
| 151 | ReadFrom() is a class method so properties won't be copied. You need to |
| 152 | call as cls.ReadFrom(None, **p.__dict__), or a short cut - p.CloneAndZero(). |
| 153 | """ |
| 154 | |
| 155 | FORMAT = None |
| 156 | """The struct.{pack,unpack} format string, and should be set by GPTBlob.""" |
| 157 | |
| 158 | CLONE_CONVERTERS = None |
| 159 | """A dict (name, cvt) to convert input arguments into named tuple data. |
| 160 | |
| 161 | `name` is a string for the name of argument to convert. |
| 162 | `cvt` is a callable to convert value. The return value may be: |
| 163 | - a tuple in (new_name, value): save the value as new name. |
| 164 | - otherwise, save the value in original name. |
| 165 | Note tuple is an invalid input for struct.unpack so it's used for the |
| 166 | special value. |
| 167 | """ |
| 168 | |
| 169 | @classmethod |
| 170 | def ReadFrom(cls, f, **kargs): |
| 171 | """Reads and decode an object from stream. |
| 172 | |
| 173 | Args: |
| 174 | f: a stream to read blob, or None to decode with all zero bytes. |
| 175 | kargs: a dict for additional attributes in object. |
| 176 | """ |
| 177 | if f is None: |
| 178 | reader = lambda num: '\x00' * num |
| 179 | else: |
| 180 | reader = f.read |
| 181 | data = cls(*struct.unpack(cls.FORMAT, reader(struct.calcsize(cls.FORMAT)))) |
| 182 | # Named tuples do not accept kargs in constructor. |
| 183 | data.__dict__.update(kargs) |
| 184 | return data |
| 185 | |
| 186 | def Clone(self, **dargs): |
| 187 | """Clones a new instance with modifications. |
| 188 | |
| 189 | GPT objects are usually named tuples that are immutable, so the only way |
| 190 | to make changes is to create a new instance with modifications. |
| 191 | |
| 192 | Args: |
| 193 | dargs: a dict with all modifications. |
| 194 | """ |
| 195 | for name, convert in (self.CLONE_CONVERTERS or {}).iteritems(): |
| 196 | if name not in dargs: |
| 197 | continue |
| 198 | result = convert(dargs.pop(name)) |
| 199 | if isinstance(result, tuple): |
| 200 | assert len(result) == 2, 'Converted tuple must be (name, value).' |
| 201 | dargs[result[0]] = result[1] |
| 202 | else: |
| 203 | dargs[name] = result |
| 204 | |
| 205 | cloned = self._replace(**dargs) |
| 206 | cloned.__dict__.update(self.__dict__) |
| 207 | return cloned |
| 208 | |
| 209 | def CloneAndZero(self, **dargs): |
| 210 | """Short cut to create a zeroed object while keeping all properties. |
| 211 | |
| 212 | This is very similar to Clone except all named tuple elements will be zero. |
| 213 | Also different from class method ReadFrom(None) because this keeps all |
| 214 | properties from one object. |
| 215 | """ |
| 216 | cloned = self.ReadFrom(None, **self.__dict__) |
| 217 | return cloned.Clone(**dargs) if dargs else cloned |
| 218 | |
| 219 | @property |
| 220 | def blob(self): |
| 221 | """Returns the object in formatted bytes.""" |
| 222 | return struct.pack(self.FORMAT, *self) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 223 | |
| 224 | |
Hung-Te Lin | 4dfd330 | 2018-04-17 14:47:52 +0800 | [diff] [blame] | 225 | class GPTError(Exception): |
| 226 | """All exceptions by GPT.""" |
| 227 | pass |
| 228 | |
| 229 | |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 230 | class GPT(object): |
| 231 | """A GPT helper class. |
| 232 | |
| 233 | To load GPT from an existing disk image file, use `LoadFromFile`. |
| 234 | After modifications were made, use `WriteToFile` to commit changes. |
| 235 | |
| 236 | Attributes: |
Hung-Te Lin | 49ac3c2 | 2018-04-17 14:37:54 +0800 | [diff] [blame] | 237 | header: a namedtuple of GPT header. |
Hung-Te Lin | c6e009c | 2018-04-17 15:06:16 +0800 | [diff] [blame] | 238 | pmbr: a namedtuple of Protective MBR. |
Hung-Te Lin | 49ac3c2 | 2018-04-17 14:37:54 +0800 | [diff] [blame] | 239 | partitions: a list of GPT partition entry nametuple. |
| 240 | block_size: integer for size of bytes in one block (sector). |
Hung-Te Lin | c34d89c | 2018-04-17 15:11:34 +0800 | [diff] [blame] | 241 | is_secondary: boolean to indicate if the header is from primary or backup. |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 242 | """ |
| 243 | |
Hung-Te Lin | f148d32 | 2018-04-13 10:24:42 +0800 | [diff] [blame] | 244 | DEFAULT_BLOCK_SIZE = 512 |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 245 | TYPE_GUID_UNUSED = '\x00' * 16 |
| 246 | TYPE_GUID_MAP = { |
| 247 | '00000000-0000-0000-0000-000000000000': 'Unused', |
| 248 | 'EBD0A0A2-B9E5-4433-87C0-68B6B72699C7': 'Linux data', |
Hung-Te Lin | fe724f8 | 2018-04-18 15:03:58 +0800 | [diff] [blame] | 249 | 'FE3A2A5D-4F32-41A7-B725-ACCC3285A309': 'ChromeOS kernel', |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 250 | '3CB8E202-3B7E-47DD-8A3C-7FF2A13CFCEC': 'ChromeOS rootfs', |
| 251 | '2E0A753D-9E48-43B0-8337-B15192CB1B5E': 'ChromeOS reserved', |
| 252 | 'CAB6E88E-ABF3-4102-A07A-D4BB9BE3C1D3': 'ChromeOS firmware', |
| 253 | 'C12A7328-F81F-11D2-BA4B-00A0C93EC93B': 'EFI System Partition', |
| 254 | } |
Hung-Te Lin | fcd1a8d | 2018-04-17 15:15:01 +0800 | [diff] [blame] | 255 | TYPE_GUID_REVERSE_MAP = dict( |
| 256 | ('efi' if v.startswith('EFI') else v.lower().split()[-1], k) |
| 257 | for k, v in TYPE_GUID_MAP.iteritems()) |
Hung-Te Lin | fe724f8 | 2018-04-18 15:03:58 +0800 | [diff] [blame] | 258 | STR_TYPE_GUID_LIST_BOOTABLE = [ |
| 259 | TYPE_GUID_REVERSE_MAP['kernel'], |
| 260 | TYPE_GUID_REVERSE_MAP['efi'], |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 261 | ] |
| 262 | |
Hung-Te Lin | c6e009c | 2018-04-17 15:06:16 +0800 | [diff] [blame] | 263 | @GPTBlob(PMBR_DESCRIPTION) |
| 264 | class ProtectiveMBR(GPTObject): |
| 265 | """Protective MBR (PMBR) in GPT.""" |
| 266 | SIGNATURE = '\x55\xAA' |
| 267 | MAGIC = '\x1d\x9a' |
| 268 | |
| 269 | CLONE_CONVERTERS = { |
| 270 | 'BootGUID': lambda v: v.bytes_le if isinstance(v, uuid.UUID) else v |
| 271 | } |
| 272 | |
| 273 | @property |
| 274 | def boot_guid(self): |
| 275 | """Returns the BootGUID in decoded (uuid.UUID) format.""" |
| 276 | return uuid.UUID(bytes_le=self.BootGUID) |
| 277 | |
Hung-Te Lin | 49ac3c2 | 2018-04-17 14:37:54 +0800 | [diff] [blame] | 278 | @GPTBlob(HEADER_DESCRIPTION) |
| 279 | class Header(GPTObject): |
| 280 | """Wrapper to Header in GPT.""" |
| 281 | SIGNATURES = ['EFI PART', 'CHROMEOS'] |
| 282 | SIGNATURE_IGNORE = 'IGNOREME' |
| 283 | DEFAULT_REVISION = '\x00\x00\x01\x00' |
| 284 | |
| 285 | DEFAULT_PARTITION_ENTRIES = 128 |
| 286 | DEFAULT_PARTITIONS_LBA = 2 # LBA 0 = MBR, LBA 1 = GPT Header. |
| 287 | |
| 288 | def Clone(self, **dargs): |
| 289 | """Creates a new instance with modifications. |
| 290 | |
| 291 | GPT objects are usually named tuples that are immutable, so the only way |
| 292 | to make changes is to create a new instance with modifications. |
| 293 | |
| 294 | CRC32 is always updated but PartitionArrayCRC32 must be updated explicitly |
| 295 | since we can't track changes in GPT.partitions automatically. |
| 296 | |
| 297 | Note since GPTHeader.Clone will always update CRC, we can only check and |
| 298 | compute CRC by super(GPT.Header, header).Clone, or header._replace. |
| 299 | """ |
| 300 | dargs['CRC32'] = 0 |
| 301 | header = super(GPT.Header, self).Clone(**dargs) |
| 302 | return super(GPT.Header, header).Clone(CRC32=binascii.crc32(header.blob)) |
| 303 | |
Hung-Te Lin | 6c3575a | 2018-04-17 15:00:49 +0800 | [diff] [blame] | 304 | @classmethod |
| 305 | def Create(cls, size, block_size, pad_blocks=0, |
| 306 | part_entries=DEFAULT_PARTITION_ENTRIES): |
| 307 | """Creates a header with default values. |
| 308 | |
| 309 | Args: |
| 310 | size: integer of expected image size. |
| 311 | block_size: integer for size of each block (sector). |
| 312 | pad_blocks: number of preserved sectors between header and partitions. |
| 313 | part_entries: number of partitions to include in header. |
| 314 | """ |
| 315 | part_entry_size = struct.calcsize(GPT.Partition.FORMAT) |
| 316 | parts_lba = cls.DEFAULT_PARTITIONS_LBA + pad_blocks |
| 317 | parts_bytes = part_entries * part_entry_size |
| 318 | parts_blocks = parts_bytes / block_size |
| 319 | if parts_bytes % block_size: |
| 320 | parts_blocks += 1 |
| 321 | # PartitionsCRC32 must be updated later explicitly. |
| 322 | return cls.ReadFrom(None).Clone( |
| 323 | Signature=cls.SIGNATURES[0], |
| 324 | Revision=cls.DEFAULT_REVISION, |
| 325 | HeaderSize=struct.calcsize(cls.FORMAT), |
| 326 | CurrentLBA=1, |
| 327 | BackupLBA=size / block_size - 1, |
| 328 | FirstUsableLBA=parts_lba + parts_blocks, |
| 329 | LastUsableLBA=size / block_size - parts_blocks - parts_lba, |
| 330 | DiskGUID=uuid.uuid4().get_bytes(), |
| 331 | PartitionEntriesStartingLBA=parts_lba, |
| 332 | PartitionEntriesNumber=part_entries, |
| 333 | PartitionEntrySize=part_entry_size, |
| 334 | ) |
| 335 | |
Hung-Te Lin | 49ac3c2 | 2018-04-17 14:37:54 +0800 | [diff] [blame] | 336 | class PartitionAttributes(object): |
| 337 | """Wrapper for Partition.Attributes. |
| 338 | |
| 339 | This can be created using Partition.attrs, but the changed properties won't |
| 340 | apply to underlying Partition until an explicit call with |
| 341 | Partition.Clone(Attributes=new_attrs). |
| 342 | """ |
| 343 | |
| 344 | def __init__(self, attrs): |
| 345 | self._attrs = attrs |
| 346 | |
| 347 | @property |
| 348 | def raw(self): |
| 349 | """Returns the raw integer type attributes.""" |
| 350 | return self._Get() |
| 351 | |
| 352 | def _Get(self): |
| 353 | return self._attrs |
| 354 | |
| 355 | def _Set(self, value): |
| 356 | self._attrs = value |
| 357 | |
| 358 | successful = BitProperty(_Get, _Set, 56, 1) |
| 359 | tries = BitProperty(_Get, _Set, 52, 0xf) |
| 360 | priority = BitProperty(_Get, _Set, 48, 0xf) |
| 361 | legacy_boot = BitProperty(_Get, _Set, 2, 1) |
| 362 | required = BitProperty(_Get, _Set, 0, 1) |
Hung-Te Lin | fcd1a8d | 2018-04-17 15:15:01 +0800 | [diff] [blame] | 363 | raw_16 = BitProperty(_Get, _Set, 48, 0xffff) |
Hung-Te Lin | 49ac3c2 | 2018-04-17 14:37:54 +0800 | [diff] [blame] | 364 | |
| 365 | @GPTBlob(PARTITION_DESCRIPTION) |
| 366 | class Partition(GPTObject): |
| 367 | """The partition entry in GPT. |
| 368 | |
| 369 | Please include following properties when creating a Partition object: |
| 370 | - image: a string for path to the image file the partition maps to. |
| 371 | - number: the 1-based partition number. |
| 372 | - block_size: an integer for size of each block (LBA, or sector). |
| 373 | """ |
| 374 | NAMES_ENCODING = 'utf-16-le' |
| 375 | NAMES_LENGTH = 72 |
| 376 | |
| 377 | CLONE_CONVERTERS = { |
| 378 | # TODO(hungte) check if encoded name is too long. |
| 379 | 'label': lambda l: (None if l is None else |
| 380 | ('Names', l.encode(GPT.Partition.NAMES_ENCODING))), |
| 381 | 'TypeGUID': lambda v: v.bytes_le if isinstance(v, uuid.UUID) else v, |
| 382 | 'UniqueGUID': lambda v: v.bytes_le if isinstance(v, uuid.UUID) else v, |
| 383 | 'Attributes': ( |
| 384 | lambda v: v.raw if isinstance(v, GPT.PartitionAttributes) else v), |
| 385 | } |
| 386 | |
| 387 | def __str__(self): |
| 388 | return '%s#%s' % (self.image, self.number) |
| 389 | |
Hung-Te Lin | 6c3575a | 2018-04-17 15:00:49 +0800 | [diff] [blame] | 390 | @classmethod |
| 391 | def Create(cls, block_size, image, number): |
| 392 | """Creates a new partition entry with given meta data.""" |
| 393 | part = cls.ReadFrom( |
| 394 | None, image=image, number=number, block_size=block_size) |
| 395 | return part |
| 396 | |
Hung-Te Lin | 49ac3c2 | 2018-04-17 14:37:54 +0800 | [diff] [blame] | 397 | def IsUnused(self): |
| 398 | """Returns if the partition is unused and can be allocated.""" |
| 399 | return self.TypeGUID == GPT.TYPE_GUID_UNUSED |
| 400 | |
Hung-Te Lin | fe724f8 | 2018-04-18 15:03:58 +0800 | [diff] [blame] | 401 | def IsChromeOSKernel(self): |
| 402 | """Returns if the partition is a Chrome OS kernel partition.""" |
| 403 | return self.TypeGUID == uuid.UUID( |
| 404 | GPT.TYPE_GUID_REVERSE_MAP['kernel']).bytes_le |
| 405 | |
Hung-Te Lin | 49ac3c2 | 2018-04-17 14:37:54 +0800 | [diff] [blame] | 406 | @property |
| 407 | def blocks(self): |
| 408 | """Return size of partition in blocks (see block_size).""" |
| 409 | return self.LastLBA - self.FirstLBA + 1 |
| 410 | |
| 411 | @property |
| 412 | def offset(self): |
| 413 | """Returns offset to partition in bytes.""" |
| 414 | return self.FirstLBA * self.block_size |
| 415 | |
| 416 | @property |
| 417 | def size(self): |
| 418 | """Returns size of partition in bytes.""" |
| 419 | return self.blocks * self.block_size |
| 420 | |
| 421 | @property |
| 422 | def type_guid(self): |
| 423 | return uuid.UUID(bytes_le=self.TypeGUID) |
| 424 | |
| 425 | @property |
| 426 | def unique_guid(self): |
| 427 | return uuid.UUID(bytes_le=self.UniqueGUID) |
| 428 | |
| 429 | @property |
| 430 | def label(self): |
| 431 | """Returns the Names in decoded string type.""" |
| 432 | return self.Names.decode(self.NAMES_ENCODING).strip('\0') |
| 433 | |
| 434 | @property |
| 435 | def attrs(self): |
| 436 | return GPT.PartitionAttributes(self.Attributes) |
| 437 | |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 438 | def __init__(self): |
Hung-Te Lin | 49ac3c2 | 2018-04-17 14:37:54 +0800 | [diff] [blame] | 439 | """GPT constructor. |
| 440 | |
| 441 | See LoadFromFile for how it's usually used. |
| 442 | """ |
Hung-Te Lin | c6e009c | 2018-04-17 15:06:16 +0800 | [diff] [blame] | 443 | self.pmbr = None |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 444 | self.header = None |
| 445 | self.partitions = None |
Hung-Te Lin | f148d32 | 2018-04-13 10:24:42 +0800 | [diff] [blame] | 446 | self.block_size = self.DEFAULT_BLOCK_SIZE |
Hung-Te Lin | c34d89c | 2018-04-17 15:11:34 +0800 | [diff] [blame] | 447 | self.is_secondary = False |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 448 | |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 449 | @classmethod |
Hung-Te Lin | f641d30 | 2018-04-18 15:09:35 +0800 | [diff] [blame] | 450 | def GetTypeGUID(cls, input_uuid): |
| 451 | if input_uuid.lower() in cls.TYPE_GUID_REVERSE_MAP: |
| 452 | input_uuid = cls.TYPE_GUID_REVERSE_MAP[input_uuid.lower()] |
| 453 | return uuid.UUID(input_uuid) |
| 454 | |
| 455 | @classmethod |
Hung-Te Lin | 6c3575a | 2018-04-17 15:00:49 +0800 | [diff] [blame] | 456 | def Create(cls, image_name, size, block_size, pad_blocks=0): |
| 457 | """Creates a new GPT instance from given size and block_size. |
| 458 | |
| 459 | Args: |
| 460 | image_name: a string of underlying disk image file name. |
| 461 | size: expected size of disk image. |
| 462 | block_size: size of each block (sector) in bytes. |
| 463 | pad_blocks: number of blocks between header and partitions array. |
| 464 | """ |
| 465 | gpt = cls() |
| 466 | gpt.block_size = block_size |
| 467 | gpt.header = cls.Header.Create(size, block_size, pad_blocks) |
| 468 | gpt.partitions = [ |
| 469 | cls.Partition.Create(block_size, image_name, i + 1) |
| 470 | for i in xrange(gpt.header.PartitionEntriesNumber)] |
| 471 | return gpt |
| 472 | |
| 473 | @classmethod |
Hung-Te Lin | 6977ae1 | 2018-04-17 12:20:32 +0800 | [diff] [blame] | 474 | def LoadFromFile(cls, image): |
| 475 | """Loads a GPT table from give disk image file object. |
| 476 | |
| 477 | Args: |
| 478 | image: a string as file path or a file-like object to read from. |
| 479 | """ |
| 480 | if isinstance(image, basestring): |
| 481 | with open(image, 'rb') as f: |
| 482 | return cls.LoadFromFile(f) |
| 483 | |
Hung-Te Lin | 49ac3c2 | 2018-04-17 14:37:54 +0800 | [diff] [blame] | 484 | gpt = cls() |
Hung-Te Lin | c6e009c | 2018-04-17 15:06:16 +0800 | [diff] [blame] | 485 | image.seek(0) |
| 486 | pmbr = gpt.ProtectiveMBR.ReadFrom(image) |
| 487 | if pmbr.Signature == cls.ProtectiveMBR.SIGNATURE: |
| 488 | logging.debug('Found MBR signature in %s', image.name) |
| 489 | if pmbr.Magic == cls.ProtectiveMBR.MAGIC: |
| 490 | logging.debug('Found PMBR in %s', image.name) |
| 491 | gpt.pmbr = pmbr |
| 492 | |
Hung-Te Lin | f148d32 | 2018-04-13 10:24:42 +0800 | [diff] [blame] | 493 | # Try DEFAULT_BLOCK_SIZE, then 4K. |
| 494 | for block_size in [cls.DEFAULT_BLOCK_SIZE, 4096]: |
Hung-Te Lin | c34d89c | 2018-04-17 15:11:34 +0800 | [diff] [blame] | 495 | # Note because there are devices setting Primary as ignored and the |
| 496 | # partition table signature accepts 'CHROMEOS' which is also used by |
| 497 | # Chrome OS kernel partition, we have to look for Secondary (backup) GPT |
| 498 | # first before trying other block sizes, otherwise we may incorrectly |
| 499 | # identify a kernel partition as LBA 1 of larger block size system. |
| 500 | for i, seek in enumerate([(block_size * 1, os.SEEK_SET), |
| 501 | (-block_size, os.SEEK_END)]): |
| 502 | image.seek(*seek) |
| 503 | header = gpt.Header.ReadFrom(image) |
| 504 | if header.Signature in cls.Header.SIGNATURES: |
| 505 | gpt.block_size = block_size |
| 506 | if i != 0: |
| 507 | gpt.is_secondary = True |
| 508 | break |
| 509 | else: |
| 510 | # Nothing found, try next block size. |
| 511 | continue |
| 512 | # Found a valid signature. |
| 513 | break |
Hung-Te Lin | f148d32 | 2018-04-13 10:24:42 +0800 | [diff] [blame] | 514 | else: |
Hung-Te Lin | 4dfd330 | 2018-04-17 14:47:52 +0800 | [diff] [blame] | 515 | raise GPTError('Invalid signature in GPT header.') |
Hung-Te Lin | f148d32 | 2018-04-13 10:24:42 +0800 | [diff] [blame] | 516 | |
Hung-Te Lin | 6977ae1 | 2018-04-17 12:20:32 +0800 | [diff] [blame] | 517 | image.seek(gpt.block_size * header.PartitionEntriesStartingLBA) |
Hung-Te Lin | 49ac3c2 | 2018-04-17 14:37:54 +0800 | [diff] [blame] | 518 | def ReadPartition(image, i): |
| 519 | p = gpt.Partition.ReadFrom( |
| 520 | image, image=image.name, number=i + 1, block_size=gpt.block_size) |
| 521 | return p |
| 522 | |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 523 | gpt.header = header |
Hung-Te Lin | 49ac3c2 | 2018-04-17 14:37:54 +0800 | [diff] [blame] | 524 | gpt.partitions = [ |
| 525 | ReadPartition(image, i) for i in range(header.PartitionEntriesNumber)] |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 526 | return gpt |
| 527 | |
Hung-Te Lin | c519668 | 2018-04-18 22:59:59 +0800 | [diff] [blame] | 528 | def GetUsedPartitions(self): |
| 529 | """Returns a list of partitions with type GUID not set to unused. |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 530 | |
Hung-Te Lin | c519668 | 2018-04-18 22:59:59 +0800 | [diff] [blame] | 531 | Use 'number' property to find the real location of partition in |
| 532 | self.partitions. |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 533 | """ |
Hung-Te Lin | c519668 | 2018-04-18 22:59:59 +0800 | [diff] [blame] | 534 | return [p for p in self.partitions if not p.IsUnused()] |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 535 | |
| 536 | def GetMaxUsedLBA(self): |
Hung-Te Lin | d3a2e9a | 2018-04-19 13:07:26 +0800 | [diff] [blame] | 537 | """Returns the max LastLBA from all used partitions.""" |
Hung-Te Lin | c519668 | 2018-04-18 22:59:59 +0800 | [diff] [blame] | 538 | parts = self.GetUsedPartitions() |
Hung-Te Lin | d3a2e9a | 2018-04-19 13:07:26 +0800 | [diff] [blame] | 539 | return (max(p.LastLBA for p in parts) |
| 540 | if parts else self.header.FirstUsableLBA - 1) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 541 | |
| 542 | def GetPartitionTableBlocks(self, header=None): |
| 543 | """Returns the blocks (or LBA) of partition table from given header.""" |
| 544 | if header is None: |
| 545 | header = self.header |
| 546 | size = header.PartitionEntrySize * header.PartitionEntriesNumber |
Hung-Te Lin | f148d32 | 2018-04-13 10:24:42 +0800 | [diff] [blame] | 547 | blocks = size / self.block_size |
| 548 | if size % self.block_size: |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 549 | blocks += 1 |
| 550 | return blocks |
| 551 | |
Hung-Te Lin | 5f0dea4 | 2018-04-18 23:20:11 +0800 | [diff] [blame^] | 552 | def GetPartition(self, number): |
| 553 | """Gets the Partition by given (1-based) partition number. |
| 554 | |
| 555 | Args: |
| 556 | number: an integer as 1-based partition number. |
| 557 | """ |
| 558 | if not 0 < number <= len(self.partitions): |
| 559 | raise GPTError('Invalid partition number %s.' % number) |
| 560 | return self.partitions[number - 1] |
| 561 | |
| 562 | def UpdatePartition(self, part, number=None): |
| 563 | """Updates the entry in partition table by given Partition object. |
| 564 | |
| 565 | Args: |
| 566 | part: a Partition GPT object. |
| 567 | number: an integer as 1-based partition number. None to use part.number. |
| 568 | """ |
| 569 | number = part.number if number is None else number |
| 570 | self.partitions[number - 1] = part |
| 571 | |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 572 | def Resize(self, new_size): |
| 573 | """Adjust GPT for a disk image in given size. |
| 574 | |
| 575 | Args: |
| 576 | new_size: Integer for new size of disk image file. |
| 577 | """ |
Hung-Te Lin | f148d32 | 2018-04-13 10:24:42 +0800 | [diff] [blame] | 578 | old_size = self.block_size * (self.header.BackupLBA + 1) |
| 579 | if new_size % self.block_size: |
Hung-Te Lin | 4dfd330 | 2018-04-17 14:47:52 +0800 | [diff] [blame] | 580 | raise GPTError( |
| 581 | 'New file size %d is not valid for image files.' % new_size) |
Hung-Te Lin | f148d32 | 2018-04-13 10:24:42 +0800 | [diff] [blame] | 582 | new_blocks = new_size / self.block_size |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 583 | if old_size != new_size: |
| 584 | logging.warn('Image size (%d, LBA=%d) changed from %d (LBA=%d).', |
Hung-Te Lin | f148d32 | 2018-04-13 10:24:42 +0800 | [diff] [blame] | 585 | new_size, new_blocks, old_size, old_size / self.block_size) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 586 | else: |
| 587 | logging.info('Image size (%d, LBA=%d) not changed.', |
| 588 | new_size, new_blocks) |
Hung-Te Lin | d3a2e9a | 2018-04-19 13:07:26 +0800 | [diff] [blame] | 589 | return |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 590 | |
Hung-Te Lin | d3a2e9a | 2018-04-19 13:07:26 +0800 | [diff] [blame] | 591 | # Expected location |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 592 | backup_lba = new_blocks - 1 |
Hung-Te Lin | d3a2e9a | 2018-04-19 13:07:26 +0800 | [diff] [blame] | 593 | last_usable_lba = backup_lba - self.header.FirstUsableLBA |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 594 | |
Hung-Te Lin | d3a2e9a | 2018-04-19 13:07:26 +0800 | [diff] [blame] | 595 | if last_usable_lba < self.header.LastUsableLBA: |
| 596 | max_used_lba = self.GetMaxUsedLBA() |
| 597 | if last_usable_lba < max_used_lba: |
Hung-Te Lin | 4dfd330 | 2018-04-17 14:47:52 +0800 | [diff] [blame] | 598 | raise GPTError('Backup partition tables will overlap used partitions') |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 599 | |
Hung-Te Lin | 49ac3c2 | 2018-04-17 14:37:54 +0800 | [diff] [blame] | 600 | self.header = self.header.Clone( |
| 601 | BackupLBA=backup_lba, LastUsableLBA=last_usable_lba) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 602 | |
| 603 | def GetFreeSpace(self): |
| 604 | """Returns the free (available) space left according to LastUsableLBA.""" |
| 605 | max_lba = self.GetMaxUsedLBA() |
| 606 | assert max_lba <= self.header.LastUsableLBA, "Partitions too large." |
Hung-Te Lin | f148d32 | 2018-04-13 10:24:42 +0800 | [diff] [blame] | 607 | return self.block_size * (self.header.LastUsableLBA - max_lba) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 608 | |
Hung-Te Lin | 5f0dea4 | 2018-04-18 23:20:11 +0800 | [diff] [blame^] | 609 | def ExpandPartition(self, number): |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 610 | """Expands a given partition to last usable LBA. |
| 611 | |
| 612 | Args: |
Hung-Te Lin | 5f0dea4 | 2018-04-18 23:20:11 +0800 | [diff] [blame^] | 613 | number: an integer to specify partition in 1-based number. |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 614 | |
| 615 | Returns: |
| 616 | (old_blocks, new_blocks) for size in blocks. |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 617 | """ |
| 618 | # Assume no partitions overlap, we need to make sure partition[i] has |
| 619 | # largest LBA. |
Hung-Te Lin | 5f0dea4 | 2018-04-18 23:20:11 +0800 | [diff] [blame^] | 620 | p = self.GetPartition(number) |
| 621 | if p.IsUnused(): |
| 622 | raise GPTError('Partition %s is unused.' % p) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 623 | max_used_lba = self.GetMaxUsedLBA() |
Hung-Te Lin | c519668 | 2018-04-18 22:59:59 +0800 | [diff] [blame] | 624 | # TODO(hungte) We can do more by finding free space after i. |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 625 | if max_used_lba > p.LastLBA: |
Hung-Te Lin | 4dfd330 | 2018-04-17 14:47:52 +0800 | [diff] [blame] | 626 | raise GPTError( |
Hung-Te Lin | c519668 | 2018-04-18 22:59:59 +0800 | [diff] [blame] | 627 | 'Cannot expand %s because it is not allocated at last.' % p) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 628 | |
Hung-Te Lin | 49ac3c2 | 2018-04-17 14:37:54 +0800 | [diff] [blame] | 629 | old_blocks = p.blocks |
| 630 | p = p.Clone(LastLBA=self.header.LastUsableLBA) |
| 631 | new_blocks = p.blocks |
Hung-Te Lin | 5f0dea4 | 2018-04-18 23:20:11 +0800 | [diff] [blame^] | 632 | self.UpdatePartition(p) |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 633 | logging.warn( |
| 634 | '%s expanded, size in LBA: %d -> %d.', p, old_blocks, new_blocks) |
| 635 | return (old_blocks, new_blocks) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 636 | |
Hung-Te Lin | c34d89c | 2018-04-17 15:11:34 +0800 | [diff] [blame] | 637 | def GetIgnoredHeader(self): |
| 638 | """Returns a primary header with signature set to 'IGNOREME'. |
| 639 | |
| 640 | This is a special trick to enforce using backup header, when there is |
| 641 | some security exploit in LBA1. |
| 642 | """ |
| 643 | return self.header.Clone(Signature=self.header.SIGNATURE_IGNORE) |
| 644 | |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 645 | def UpdateChecksum(self): |
Hung-Te Lin | 49ac3c2 | 2018-04-17 14:37:54 +0800 | [diff] [blame] | 646 | """Updates all checksum fields in GPT objects. |
| 647 | |
| 648 | The Header.CRC32 is automatically updated in Header.Clone(). |
| 649 | """ |
| 650 | parts = ''.join(p.blob for p in self.partitions) |
| 651 | self.header = self.header.Clone( |
| 652 | PartitionArrayCRC32=binascii.crc32(parts)) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 653 | |
Hung-Te Lin | c34d89c | 2018-04-17 15:11:34 +0800 | [diff] [blame] | 654 | def GetBackupHeader(self, header): |
| 655 | """Returns the backup header according to given header.""" |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 656 | partitions_starting_lba = ( |
Hung-Te Lin | c34d89c | 2018-04-17 15:11:34 +0800 | [diff] [blame] | 657 | header.BackupLBA - self.GetPartitionTableBlocks()) |
| 658 | return header.Clone( |
| 659 | BackupLBA=header.CurrentLBA, |
| 660 | CurrentLBA=header.BackupLBA, |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 661 | PartitionEntriesStartingLBA=partitions_starting_lba) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 662 | |
Hung-Te Lin | c6e009c | 2018-04-17 15:06:16 +0800 | [diff] [blame] | 663 | @classmethod |
| 664 | def WriteProtectiveMBR(cls, image, create, bootcode=None, boot_guid=None): |
| 665 | """Writes a protective MBR to given file. |
| 666 | |
| 667 | Each MBR is 512 bytes: 424 bytes for bootstrap code, 16 bytes of boot GUID, |
| 668 | 4 bytes of disk id, 2 bytes of bootcode magic, 4*16 for 4 partitions, and 2 |
| 669 | byte as signature. cgpt has hard-coded the CHS and bootstrap magic values so |
| 670 | we can follow that. |
| 671 | |
| 672 | Args: |
| 673 | create: True to re-create PMBR structure. |
| 674 | bootcode: a blob of new boot code. |
| 675 | boot_guid a blob for new boot GUID. |
| 676 | |
| 677 | Returns: |
| 678 | The written PMBR structure. |
| 679 | """ |
| 680 | if isinstance(image, basestring): |
| 681 | with open(image, 'rb+') as f: |
| 682 | return cls.WriteProtectiveMBR(f, create, bootcode, boot_guid) |
| 683 | |
| 684 | image.seek(0) |
| 685 | assert struct.calcsize(cls.ProtectiveMBR.FORMAT) == cls.DEFAULT_BLOCK_SIZE |
| 686 | pmbr = cls.ProtectiveMBR.ReadFrom(image) |
| 687 | |
| 688 | if create: |
| 689 | legacy_sectors = min( |
| 690 | 0x100000000, |
| 691 | os.path.getsize(image.name) / cls.DEFAULT_BLOCK_SIZE) - 1 |
| 692 | # Partition 0 must have have the fixed CHS with number of sectors |
| 693 | # (calculated as legacy_sectors later). |
| 694 | part0 = ('00000200eeffffff01000000'.decode('hex') + |
| 695 | struct.pack('<I', legacy_sectors)) |
| 696 | # Partition 1~3 should be all zero. |
| 697 | part1 = '\x00' * 16 |
| 698 | assert len(part0) == len(part1) == 16, 'MBR entry is wrong.' |
| 699 | pmbr = pmbr.Clone( |
| 700 | BootGUID=cls.TYPE_GUID_UNUSED, |
| 701 | DiskID=0, |
| 702 | Magic=cls.ProtectiveMBR.MAGIC, |
| 703 | LegacyPart0=part0, |
| 704 | LegacyPart1=part1, |
| 705 | LegacyPart2=part1, |
| 706 | LegacyPart3=part1, |
| 707 | Signature=cls.ProtectiveMBR.SIGNATURE) |
| 708 | |
| 709 | if bootcode: |
| 710 | if len(bootcode) > len(pmbr.BootCode): |
| 711 | logging.info( |
| 712 | 'Bootcode is larger (%d > %d)!', len(bootcode), len(pmbr.BootCode)) |
| 713 | bootcode = bootcode[:len(pmbr.BootCode)] |
| 714 | pmbr = pmbr.Clone(BootCode=bootcode) |
| 715 | if boot_guid: |
| 716 | pmbr = pmbr.Clone(BootGUID=boot_guid) |
| 717 | |
| 718 | blob = pmbr.blob |
| 719 | assert len(blob) == cls.DEFAULT_BLOCK_SIZE |
| 720 | image.seek(0) |
| 721 | image.write(blob) |
| 722 | return pmbr |
| 723 | |
Hung-Te Lin | 6977ae1 | 2018-04-17 12:20:32 +0800 | [diff] [blame] | 724 | def WriteToFile(self, image): |
| 725 | """Updates partition table in a disk image file. |
| 726 | |
| 727 | Args: |
| 728 | image: a string as file path or a file-like object to write into. |
| 729 | """ |
| 730 | if isinstance(image, basestring): |
| 731 | with open(image, 'rb+') as f: |
| 732 | return self.WriteToFile(f) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 733 | |
| 734 | def WriteData(name, blob, lba): |
| 735 | """Writes a blob into given location.""" |
| 736 | logging.info('Writing %s in LBA %d (offset %d)', |
Hung-Te Lin | f148d32 | 2018-04-13 10:24:42 +0800 | [diff] [blame] | 737 | name, lba, lba * self.block_size) |
Hung-Te Lin | 6977ae1 | 2018-04-17 12:20:32 +0800 | [diff] [blame] | 738 | image.seek(lba * self.block_size) |
| 739 | image.write(blob) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 740 | |
| 741 | self.UpdateChecksum() |
Hung-Te Lin | 49ac3c2 | 2018-04-17 14:37:54 +0800 | [diff] [blame] | 742 | parts_blob = ''.join(p.blob for p in self.partitions) |
Hung-Te Lin | c34d89c | 2018-04-17 15:11:34 +0800 | [diff] [blame] | 743 | |
| 744 | header = self.header |
| 745 | WriteData('GPT Header', header.blob, header.CurrentLBA) |
| 746 | WriteData('GPT Partitions', parts_blob, header.PartitionEntriesStartingLBA) |
| 747 | logging.info( |
| 748 | 'Usable LBA: First=%d, Last=%d', header.FirstUsableLBA, |
| 749 | header.LastUsableLBA) |
| 750 | |
| 751 | if not self.is_secondary: |
| 752 | # When is_secondary is True, the header we have is actually backup header. |
| 753 | backup_header = self.GetBackupHeader(self.header) |
| 754 | WriteData( |
| 755 | 'Backup Partitions', parts_blob, |
| 756 | backup_header.PartitionEntriesStartingLBA) |
| 757 | WriteData( |
| 758 | 'Backup Header', backup_header.blob, backup_header.CurrentLBA) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 759 | |
| 760 | |
| 761 | class GPTCommands(object): |
| 762 | """Collection of GPT sub commands for command line to use. |
| 763 | |
| 764 | The commands are derived from `cgpt`, but not necessary to be 100% compatible |
| 765 | with cgpt. |
| 766 | """ |
| 767 | |
| 768 | FORMAT_ARGS = [ |
Peter Shih | c7156ca | 2018-02-26 14:46:24 +0800 | [diff] [blame] | 769 | ('begin', 'beginning sector'), |
Hung-Te Lin | 49ac3c2 | 2018-04-17 14:37:54 +0800 | [diff] [blame] | 770 | ('size', 'partition size (in sectors)'), |
Peter Shih | c7156ca | 2018-02-26 14:46:24 +0800 | [diff] [blame] | 771 | ('type', 'type guid'), |
| 772 | ('unique', 'unique guid'), |
| 773 | ('label', 'label'), |
| 774 | ('Successful', 'Successful flag'), |
| 775 | ('Tries', 'Tries flag'), |
| 776 | ('Priority', 'Priority flag'), |
| 777 | ('Legacy', 'Legacy Boot flag'), |
| 778 | ('Attribute', 'raw 16-bit attribute value (bits 48-63)')] |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 779 | |
| 780 | def __init__(self): |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 781 | commands = dict( |
| 782 | (command.lower(), getattr(self, command)()) |
| 783 | for command in dir(self) |
| 784 | if (isinstance(getattr(self, command), type) and |
| 785 | issubclass(getattr(self, command), self.SubCommand) and |
| 786 | getattr(self, command) is not self.SubCommand) |
| 787 | ) |
| 788 | self.commands = commands |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 789 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 790 | def DefineArgs(self, parser): |
| 791 | """Defines all available commands to an argparser subparsers instance.""" |
| 792 | subparsers = parser.add_subparsers(help='Sub-command help.', dest='command') |
| 793 | for name, instance in sorted(self.commands.iteritems()): |
| 794 | parser = subparsers.add_parser( |
| 795 | name, description=instance.__doc__, |
| 796 | formatter_class=argparse.RawDescriptionHelpFormatter, |
| 797 | help=instance.__doc__.splitlines()[0]) |
| 798 | instance.DefineArgs(parser) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 799 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 800 | def Execute(self, args): |
| 801 | """Execute the sub commands by given parsed arguments.""" |
Hung-Te Lin | f641d30 | 2018-04-18 15:09:35 +0800 | [diff] [blame] | 802 | return self.commands[args.command].Execute(args) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 803 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 804 | class SubCommand(object): |
| 805 | """A base class for sub commands to derive from.""" |
| 806 | |
| 807 | def DefineArgs(self, parser): |
| 808 | """Defines command line arguments to argparse parser. |
| 809 | |
| 810 | Args: |
| 811 | parser: An argparse parser instance. |
| 812 | """ |
| 813 | del parser # Unused. |
| 814 | raise NotImplementedError |
| 815 | |
| 816 | def Execute(self, args): |
| 817 | """Execute the command. |
| 818 | |
| 819 | Args: |
| 820 | args: An argparse parsed namespace. |
| 821 | """ |
| 822 | del args # Unused. |
| 823 | raise NotImplementedError |
| 824 | |
Hung-Te Lin | 6c3575a | 2018-04-17 15:00:49 +0800 | [diff] [blame] | 825 | class Create(SubCommand): |
| 826 | """Create or reset GPT headers and tables. |
| 827 | |
| 828 | Create or reset an empty GPT. |
| 829 | """ |
| 830 | |
| 831 | def DefineArgs(self, parser): |
| 832 | parser.add_argument( |
| 833 | '-z', '--zero', action='store_true', |
| 834 | help='Zero the sectors of the GPT table and entries') |
| 835 | parser.add_argument( |
| 836 | '-p', '--pad_blocks', type=int, default=0, |
| 837 | help=('Size (in blocks) of the disk to pad between the ' |
| 838 | 'primary GPT header and its entries, default %(default)s')) |
| 839 | parser.add_argument( |
| 840 | '--block_size', type=int, default=GPT.DEFAULT_BLOCK_SIZE, |
| 841 | help='Size of each block (sector) in bytes.') |
| 842 | parser.add_argument( |
| 843 | 'image_file', type=argparse.FileType('rb+'), |
| 844 | help='Disk image file to create.') |
| 845 | |
| 846 | def Execute(self, args): |
| 847 | block_size = args.block_size |
| 848 | gpt = GPT.Create( |
| 849 | args.image_file.name, os.path.getsize(args.image_file.name), |
| 850 | block_size, args.pad_blocks) |
| 851 | if args.zero: |
| 852 | # In theory we only need to clear LBA 1, but to make sure images already |
| 853 | # initialized with different block size won't have GPT signature in |
| 854 | # different locations, we should zero until first usable LBA. |
| 855 | args.image_file.seek(0) |
| 856 | args.image_file.write('\0' * block_size * gpt.header.FirstUsableLBA) |
| 857 | gpt.WriteToFile(args.image_file) |
| 858 | print('OK: Created GPT for %s' % args.image_file.name) |
| 859 | |
Hung-Te Lin | c6e009c | 2018-04-17 15:06:16 +0800 | [diff] [blame] | 860 | class Boot(SubCommand): |
| 861 | """Edit the PMBR sector for legacy BIOSes. |
| 862 | |
| 863 | With no options, it will just print the PMBR boot guid. |
| 864 | """ |
| 865 | |
| 866 | def DefineArgs(self, parser): |
| 867 | parser.add_argument( |
| 868 | '-i', '--number', type=int, |
| 869 | help='Set bootable partition') |
| 870 | parser.add_argument( |
| 871 | '-b', '--bootloader', type=argparse.FileType('r'), |
| 872 | help='Install bootloader code in the PMBR') |
| 873 | parser.add_argument( |
| 874 | '-p', '--pmbr', action='store_true', |
| 875 | help='Create legacy PMBR partition table') |
| 876 | parser.add_argument( |
| 877 | 'image_file', type=argparse.FileType('rb+'), |
| 878 | help='Disk image file to change PMBR.') |
| 879 | |
| 880 | def Execute(self, args): |
| 881 | """Rebuilds the protective MBR.""" |
| 882 | bootcode = args.bootloader.read() if args.bootloader else None |
| 883 | boot_guid = None |
| 884 | if args.number is not None: |
| 885 | gpt = GPT.LoadFromFile(args.image_file) |
Hung-Te Lin | 5f0dea4 | 2018-04-18 23:20:11 +0800 | [diff] [blame^] | 886 | boot_guid = gpt.GetPartition(args.number).UniqueGUID |
Hung-Te Lin | c6e009c | 2018-04-17 15:06:16 +0800 | [diff] [blame] | 887 | pmbr = GPT.WriteProtectiveMBR( |
| 888 | args.image_file, args.pmbr, bootcode=bootcode, boot_guid=boot_guid) |
| 889 | |
| 890 | print(str(pmbr.boot_guid).upper()) |
| 891 | |
Hung-Te Lin | c34d89c | 2018-04-17 15:11:34 +0800 | [diff] [blame] | 892 | class Legacy(SubCommand): |
| 893 | """Switch between GPT and Legacy GPT. |
| 894 | |
| 895 | Switch GPT header signature to "CHROMEOS". |
| 896 | """ |
| 897 | |
| 898 | def DefineArgs(self, parser): |
| 899 | parser.add_argument( |
| 900 | '-e', '--efi', action='store_true', |
| 901 | help='Switch GPT header signature back to "EFI PART"') |
| 902 | parser.add_argument( |
| 903 | '-p', '--primary-ignore', action='store_true', |
| 904 | help='Switch primary GPT header signature to "IGNOREME"') |
| 905 | parser.add_argument( |
| 906 | 'image_file', type=argparse.FileType('rb+'), |
| 907 | help='Disk image file to change.') |
| 908 | |
| 909 | def Execute(self, args): |
| 910 | gpt = GPT.LoadFromFile(args.image_file) |
| 911 | # cgpt behavior: if -p is specified, -e is ignored. |
| 912 | if args.primary_ignore: |
| 913 | if gpt.is_secondary: |
| 914 | raise GPTError('Sorry, the disk already has primary GPT ignored.') |
| 915 | args.image_file.seek(gpt.header.CurrentLBA * gpt.block_size) |
| 916 | args.image_file.write(gpt.header.SIGNATURE_IGNORE) |
| 917 | gpt.header = gpt.GetBackupHeader(self.header) |
| 918 | gpt.is_secondary = True |
| 919 | else: |
| 920 | new_signature = gpt.Header.SIGNATURES[0 if args.efi else 1] |
| 921 | gpt.header = gpt.header.Clone(Signature=new_signature) |
| 922 | gpt.WriteToFile(args.image_file) |
| 923 | if args.primary_ignore: |
| 924 | print('OK: Set %s primary GPT header to %s.' % |
| 925 | (args.image_file.name, gpt.header.SIGNATURE_IGNORE)) |
| 926 | else: |
| 927 | print('OK: Changed GPT signature for %s to %s.' % |
| 928 | (args.image_file.name, new_signature)) |
| 929 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 930 | class Repair(SubCommand): |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 931 | """Repair damaged GPT headers and tables.""" |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 932 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 933 | def DefineArgs(self, parser): |
| 934 | parser.add_argument( |
| 935 | 'image_file', type=argparse.FileType('rb+'), |
| 936 | help='Disk image file to repair.') |
| 937 | |
| 938 | def Execute(self, args): |
| 939 | gpt = GPT.LoadFromFile(args.image_file) |
| 940 | gpt.Resize(os.path.getsize(args.image_file.name)) |
| 941 | gpt.WriteToFile(args.image_file) |
| 942 | print('Disk image file %s repaired.' % args.image_file.name) |
| 943 | |
| 944 | class Expand(SubCommand): |
| 945 | """Expands a GPT partition to all available free space.""" |
| 946 | |
| 947 | def DefineArgs(self, parser): |
| 948 | parser.add_argument( |
| 949 | '-i', '--number', type=int, required=True, |
| 950 | help='The partition to expand.') |
| 951 | parser.add_argument( |
| 952 | 'image_file', type=argparse.FileType('rb+'), |
| 953 | help='Disk image file to modify.') |
| 954 | |
| 955 | def Execute(self, args): |
| 956 | gpt = GPT.LoadFromFile(args.image_file) |
Hung-Te Lin | 5f0dea4 | 2018-04-18 23:20:11 +0800 | [diff] [blame^] | 957 | old_blocks, new_blocks = gpt.ExpandPartition(args.number) |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 958 | gpt.WriteToFile(args.image_file) |
| 959 | if old_blocks < new_blocks: |
| 960 | print( |
| 961 | 'Partition %s on disk image file %s has been extended ' |
| 962 | 'from %s to %s .' % |
| 963 | (args.number, args.image_file.name, old_blocks * gpt.block_size, |
| 964 | new_blocks * gpt.block_size)) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 965 | else: |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 966 | print('Nothing to expand for disk image %s partition %s.' % |
| 967 | (args.image_file.name, args.number)) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 968 | |
Hung-Te Lin | fcd1a8d | 2018-04-17 15:15:01 +0800 | [diff] [blame] | 969 | class Add(SubCommand): |
| 970 | """Add, edit, or remove a partition entry. |
| 971 | |
| 972 | Use the -i option to modify an existing partition. |
| 973 | The -b, -s, and -t options must be given for new partitions. |
| 974 | |
| 975 | The partition type may also be given as one of these aliases: |
| 976 | |
| 977 | firmware ChromeOS firmware |
| 978 | kernel ChromeOS kernel |
| 979 | rootfs ChromeOS rootfs |
| 980 | data Linux data |
| 981 | reserved ChromeOS reserved |
| 982 | efi EFI System Partition |
| 983 | unused Unused (nonexistent) partition |
| 984 | """ |
| 985 | def DefineArgs(self, parser): |
| 986 | parser.add_argument( |
| 987 | '-i', '--number', type=int, |
| 988 | help='Specify partition (default is next available)') |
| 989 | parser.add_argument( |
| 990 | '-b', '--begin', type=int, |
| 991 | help='Beginning sector') |
| 992 | parser.add_argument( |
| 993 | '-s', '--sectors', type=int, |
| 994 | help='Size in sectors (logical blocks).') |
| 995 | parser.add_argument( |
| 996 | '-t', '--type_guid', |
| 997 | help='Partition Type GUID') |
| 998 | parser.add_argument( |
| 999 | '-u', '--unique_guid', |
| 1000 | help='Partition Unique ID') |
| 1001 | parser.add_argument( |
| 1002 | '-l', '--label', |
| 1003 | help='Label') |
| 1004 | parser.add_argument( |
| 1005 | '-S', '--successful', type=int, choices=xrange(2), |
| 1006 | help='set Successful flag') |
| 1007 | parser.add_argument( |
| 1008 | '-T', '--tries', type=int, |
| 1009 | help='set Tries flag (0-15)') |
| 1010 | parser.add_argument( |
| 1011 | '-P', '--priority', type=int, |
| 1012 | help='set Priority flag (0-15)') |
| 1013 | parser.add_argument( |
| 1014 | '-R', '--required', type=int, choices=xrange(2), |
| 1015 | help='set Required flag') |
| 1016 | parser.add_argument( |
| 1017 | '-B', '--boot_legacy', dest='legacy_boot', type=int, |
| 1018 | choices=xrange(2), |
| 1019 | help='set Legacy Boot flag') |
| 1020 | parser.add_argument( |
| 1021 | '-A', '--attribute', dest='raw_16', type=int, |
| 1022 | help='set raw 16-bit attribute value (bits 48-63)') |
| 1023 | parser.add_argument( |
| 1024 | 'image_file', type=argparse.FileType('rb+'), |
| 1025 | help='Disk image file to modify.') |
| 1026 | |
Hung-Te Lin | fcd1a8d | 2018-04-17 15:15:01 +0800 | [diff] [blame] | 1027 | def Execute(self, args): |
| 1028 | gpt = GPT.LoadFromFile(args.image_file) |
Hung-Te Lin | fcd1a8d | 2018-04-17 15:15:01 +0800 | [diff] [blame] | 1029 | number = args.number |
| 1030 | if number is None: |
Hung-Te Lin | c519668 | 2018-04-18 22:59:59 +0800 | [diff] [blame] | 1031 | number = next(p for p in gpt.partitions if p.IsUnused()).number |
Hung-Te Lin | fcd1a8d | 2018-04-17 15:15:01 +0800 | [diff] [blame] | 1032 | |
| 1033 | # First and last LBA must be calculated explicitly because the given |
| 1034 | # argument is size. |
Hung-Te Lin | 5f0dea4 | 2018-04-18 23:20:11 +0800 | [diff] [blame^] | 1035 | part = gpt.GetPartition(number) |
Hung-Te Lin | c519668 | 2018-04-18 22:59:59 +0800 | [diff] [blame] | 1036 | is_new_part = part.IsUnused() |
Hung-Te Lin | fcd1a8d | 2018-04-17 15:15:01 +0800 | [diff] [blame] | 1037 | |
| 1038 | if is_new_part: |
| 1039 | part = part.ReadFrom(None, **part.__dict__).Clone( |
Hung-Te Lin | c519668 | 2018-04-18 22:59:59 +0800 | [diff] [blame] | 1040 | FirstLBA=gpt.GetMaxUsedLBA() + 1, |
Hung-Te Lin | fcd1a8d | 2018-04-17 15:15:01 +0800 | [diff] [blame] | 1041 | LastLBA=gpt.header.LastUsableLBA, |
| 1042 | UniqueGUID=uuid.uuid4(), |
Hung-Te Lin | f641d30 | 2018-04-18 15:09:35 +0800 | [diff] [blame] | 1043 | TypeGUID=gpt.GetTypeGUID('data')) |
Hung-Te Lin | fcd1a8d | 2018-04-17 15:15:01 +0800 | [diff] [blame] | 1044 | |
| 1045 | attr = part.attrs |
| 1046 | if args.legacy_boot is not None: |
| 1047 | attr.legacy_boot = args.legacy_boot |
| 1048 | if args.required is not None: |
| 1049 | attr.required = args.required |
| 1050 | if args.priority is not None: |
| 1051 | attr.priority = args.priority |
| 1052 | if args.tries is not None: |
| 1053 | attr.tries = args.tries |
| 1054 | if args.successful is not None: |
| 1055 | attr.successful = args.successful |
| 1056 | if args.raw_16 is not None: |
| 1057 | attr.raw_16 = args.raw_16 |
| 1058 | |
| 1059 | first_lba = part.FirstLBA if args.begin is None else args.begin |
| 1060 | last_lba = first_lba - 1 + ( |
| 1061 | part.blocks if args.sectors is None else args.sectors) |
| 1062 | dargs = dict( |
| 1063 | FirstLBA=first_lba, |
| 1064 | LastLBA=last_lba, |
| 1065 | TypeGUID=(part.TypeGUID if args.type_guid is None else |
Hung-Te Lin | f641d30 | 2018-04-18 15:09:35 +0800 | [diff] [blame] | 1066 | gpt.GetTypeGUID(args.type_guid)), |
Hung-Te Lin | fcd1a8d | 2018-04-17 15:15:01 +0800 | [diff] [blame] | 1067 | UniqueGUID=(part.UniqueGUID if args.unique_guid is None else |
| 1068 | uuid.UUID(bytes_le=args.unique_guid)), |
| 1069 | Attributes=attr, |
| 1070 | ) |
| 1071 | if args.label is not None: |
| 1072 | dargs['label'] = args.label |
| 1073 | |
| 1074 | part = part.Clone(**dargs) |
| 1075 | # Wipe partition again if it should be empty. |
| 1076 | if part.IsUnused(): |
| 1077 | part = part.ReadFrom(None, **part.__dict__) |
| 1078 | |
Hung-Te Lin | fcd1a8d | 2018-04-17 15:15:01 +0800 | [diff] [blame] | 1079 | # TODO(hungte) Sanity check if part is valid. |
Hung-Te Lin | 5f0dea4 | 2018-04-18 23:20:11 +0800 | [diff] [blame^] | 1080 | gpt.UpdatePartition(part) |
Hung-Te Lin | fcd1a8d | 2018-04-17 15:15:01 +0800 | [diff] [blame] | 1081 | gpt.WriteToFile(args.image_file) |
| 1082 | if part.IsUnused(): |
| 1083 | # If we do ('%s' % part) there will be TypeError. |
| 1084 | print('OK: Deleted (zeroed) %s.' % (part,)) |
| 1085 | else: |
| 1086 | print('OK: %s %s (%s+%s).' % |
| 1087 | ('Added' if is_new_part else 'Modified', |
| 1088 | part, part.FirstLBA, part.blocks)) |
| 1089 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1090 | class Show(SubCommand): |
| 1091 | """Show partition table and entries. |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1092 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1093 | Display the GPT table. |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1094 | """ |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1095 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1096 | def DefineArgs(self, parser): |
| 1097 | parser.add_argument( |
| 1098 | '--numeric', '-n', action='store_true', |
| 1099 | help='Numeric output only.') |
| 1100 | parser.add_argument( |
| 1101 | '--quick', '-q', action='store_true', |
| 1102 | help='Quick output.') |
| 1103 | parser.add_argument( |
| 1104 | '-i', '--number', type=int, |
| 1105 | help='Show specified partition only, with format args.') |
| 1106 | for name, help_str in GPTCommands.FORMAT_ARGS: |
| 1107 | # TODO(hungte) Alert if multiple args were specified. |
| 1108 | parser.add_argument( |
| 1109 | '--%s' % name, '-%c' % name[0], action='store_true', |
| 1110 | help='[format] %s.' % help_str) |
| 1111 | parser.add_argument( |
| 1112 | 'image_file', type=argparse.FileType('rb'), |
| 1113 | help='Disk image file to show.') |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1114 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1115 | def Execute(self, args): |
| 1116 | """Show partition table and entries.""" |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1117 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1118 | def FormatGUID(bytes_le): |
| 1119 | return str(uuid.UUID(bytes_le=bytes_le)).upper() |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1120 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1121 | def FormatTypeGUID(p): |
| 1122 | guid_str = FormatGUID(p.TypeGUID) |
| 1123 | if not args.numeric: |
| 1124 | names = gpt.TYPE_GUID_MAP.get(guid_str) |
| 1125 | if names: |
| 1126 | return names |
| 1127 | return guid_str |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1128 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1129 | def FormatNames(p): |
Hung-Te Lin | 49ac3c2 | 2018-04-17 14:37:54 +0800 | [diff] [blame] | 1130 | return p.label |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1131 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1132 | def IsBootableType(type_guid): |
Hung-Te Lin | fe724f8 | 2018-04-18 15:03:58 +0800 | [diff] [blame] | 1133 | return type_guid in gpt.STR_TYPE_GUID_LIST_BOOTABLE |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1134 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1135 | def FormatAttribute(attrs, chromeos_kernel=False): |
| 1136 | if args.numeric: |
| 1137 | return '[%x]' % (attrs.raw >> 48) |
| 1138 | results = [] |
| 1139 | if chromeos_kernel: |
| 1140 | results += [ |
| 1141 | 'priority=%d' % attrs.priority, |
| 1142 | 'tries=%d' % attrs.tries, |
| 1143 | 'successful=%d' % attrs.successful] |
| 1144 | if attrs.required: |
| 1145 | results += ['required=1'] |
| 1146 | if attrs.legacy_boot: |
| 1147 | results += ['legacy_boot=1'] |
| 1148 | return ' '.join(results) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1149 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1150 | def ApplyFormatArgs(p): |
| 1151 | if args.begin: |
| 1152 | return p.FirstLBA |
| 1153 | elif args.size: |
| 1154 | return p.blocks |
| 1155 | elif args.type: |
| 1156 | return FormatTypeGUID(p) |
| 1157 | elif args.unique: |
| 1158 | return FormatGUID(p.UniqueGUID) |
| 1159 | elif args.label: |
| 1160 | return FormatNames(p) |
| 1161 | elif args.Successful: |
| 1162 | return p.attrs.successful |
| 1163 | elif args.Priority: |
| 1164 | return p.attrs.priority |
| 1165 | elif args.Tries: |
| 1166 | return p.attrs.tries |
| 1167 | elif args.Legacy: |
| 1168 | return p.attrs.legacy_boot |
| 1169 | elif args.Attribute: |
| 1170 | return '[%x]' % (p.Attributes >> 48) |
| 1171 | else: |
| 1172 | return None |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1173 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1174 | def IsFormatArgsSpecified(): |
| 1175 | return any(getattr(args, arg[0]) for arg in GPTCommands.FORMAT_ARGS) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1176 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1177 | gpt = GPT.LoadFromFile(args.image_file) |
| 1178 | logging.debug('%r', gpt.header) |
| 1179 | fmt = '%12s %11s %7s %s' |
| 1180 | fmt2 = '%32s %s: %s' |
| 1181 | header = ('start', 'size', 'part', 'contents') |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1182 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1183 | if IsFormatArgsSpecified() and args.number is None: |
| 1184 | raise GPTError('Format arguments must be used with -i.') |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1185 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1186 | if not (args.number is None or |
| 1187 | 0 < args.number <= gpt.header.PartitionEntriesNumber): |
| 1188 | raise GPTError('Invalid partition number: %d' % args.number) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1189 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1190 | partitions = gpt.partitions |
| 1191 | do_print_gpt_blocks = False |
| 1192 | if not (args.quick or IsFormatArgsSpecified()): |
| 1193 | print(fmt % header) |
| 1194 | if args.number is None: |
| 1195 | do_print_gpt_blocks = True |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1196 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1197 | if do_print_gpt_blocks: |
Hung-Te Lin | c34d89c | 2018-04-17 15:11:34 +0800 | [diff] [blame] | 1198 | if gpt.pmbr: |
| 1199 | print(fmt % (0, 1, '', 'PMBR')) |
| 1200 | if gpt.is_secondary: |
| 1201 | print(fmt % (gpt.header.BackupLBA, 1, 'IGNORED', 'Pri GPT header')) |
| 1202 | else: |
| 1203 | print(fmt % (gpt.header.CurrentLBA, 1, '', 'Pri GPT header')) |
| 1204 | print(fmt % (gpt.header.PartitionEntriesStartingLBA, |
| 1205 | gpt.GetPartitionTableBlocks(), '', 'Pri GPT table')) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1206 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1207 | for p in partitions: |
| 1208 | if args.number is None: |
| 1209 | # Skip unused partitions. |
| 1210 | if p.IsUnused(): |
| 1211 | continue |
| 1212 | elif p.number != args.number: |
| 1213 | continue |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1214 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1215 | if IsFormatArgsSpecified(): |
| 1216 | print(ApplyFormatArgs(p)) |
| 1217 | continue |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1218 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1219 | type_guid = FormatGUID(p.TypeGUID) |
| 1220 | print(fmt % (p.FirstLBA, p.blocks, p.number, |
| 1221 | FormatTypeGUID(p) if args.quick else |
| 1222 | 'Label: "%s"' % FormatNames(p))) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1223 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1224 | if not args.quick: |
| 1225 | print(fmt2 % ('', 'Type', FormatTypeGUID(p))) |
| 1226 | print(fmt2 % ('', 'UUID', FormatGUID(p.UniqueGUID))) |
| 1227 | if args.numeric or IsBootableType(type_guid): |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1228 | print(fmt2 % ('', 'Attr', FormatAttribute( |
Hung-Te Lin | fe724f8 | 2018-04-18 15:03:58 +0800 | [diff] [blame] | 1229 | p.attrs, p.IsChromeOSKernel()))) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1230 | |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1231 | if do_print_gpt_blocks: |
Hung-Te Lin | c34d89c | 2018-04-17 15:11:34 +0800 | [diff] [blame] | 1232 | if gpt.is_secondary: |
| 1233 | header = gpt.header |
| 1234 | else: |
| 1235 | f = args.image_file |
| 1236 | f.seek(gpt.header.BackupLBA * gpt.block_size) |
| 1237 | header = gpt.Header.ReadFrom(f) |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1238 | print(fmt % (header.PartitionEntriesStartingLBA, |
| 1239 | gpt.GetPartitionTableBlocks(header), '', |
| 1240 | 'Sec GPT table')) |
| 1241 | print(fmt % (header.CurrentLBA, 1, '', 'Sec GPT header')) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1242 | |
Hung-Te Lin | fe724f8 | 2018-04-18 15:03:58 +0800 | [diff] [blame] | 1243 | class Prioritize(SubCommand): |
| 1244 | """Reorder the priority of all kernel partitions. |
| 1245 | |
| 1246 | Reorder the priority of all active ChromeOS Kernel partitions. |
| 1247 | |
| 1248 | With no options this will set the lowest active kernel to priority 1 while |
| 1249 | maintaining the original order. |
| 1250 | """ |
| 1251 | |
| 1252 | def DefineArgs(self, parser): |
| 1253 | parser.add_argument( |
| 1254 | '-P', '--priority', type=int, |
| 1255 | help=('Highest priority to use in the new ordering. ' |
| 1256 | 'The other partitions will be ranked in decreasing ' |
| 1257 | 'priority while preserving their original order. ' |
| 1258 | 'If necessary the lowest ranks will be coalesced. ' |
| 1259 | 'No active kernels will be lowered to priority 0.')) |
| 1260 | parser.add_argument( |
| 1261 | '-i', '--number', type=int, |
| 1262 | help='Specify the partition to make the highest in the new order.') |
| 1263 | parser.add_argument( |
| 1264 | '-f', '--friends', action='store_true', |
| 1265 | help=('Friends of the given partition (those with the same ' |
| 1266 | 'starting priority) are also updated to the new ' |
| 1267 | 'highest priority. ')) |
| 1268 | parser.add_argument( |
| 1269 | 'image_file', type=argparse.FileType('rb+'), |
| 1270 | help='Disk image file to prioritize.') |
| 1271 | |
| 1272 | def Execute(self, args): |
| 1273 | gpt = GPT.LoadFromFile(args.image_file) |
| 1274 | parts = [p for p in gpt.partitions if p.IsChromeOSKernel()] |
| 1275 | prios = list(set(p.attrs.priority for p in parts if p.attrs.priority)) |
| 1276 | prios.sort(reverse=True) |
| 1277 | groups = [[p for p in parts if p.attrs.priority == priority] |
| 1278 | for priority in prios] |
| 1279 | if args.number: |
Hung-Te Lin | 5f0dea4 | 2018-04-18 23:20:11 +0800 | [diff] [blame^] | 1280 | p = gpt.GetPartition(args.number) |
Hung-Te Lin | fe724f8 | 2018-04-18 15:03:58 +0800 | [diff] [blame] | 1281 | if p not in parts: |
| 1282 | raise GPTError('%s is not a ChromeOS kernel.' % p) |
| 1283 | if args.friends: |
| 1284 | group0 = [f for f in parts if f.attrs.priority == p.attrs.priority] |
| 1285 | else: |
| 1286 | group0 = [p] |
| 1287 | groups.insert(0, group0) |
| 1288 | |
| 1289 | # Max priority is 0xf. |
| 1290 | highest = min(args.priority or len(prios), 0xf) |
| 1291 | logging.info('New highest priority: %s', highest) |
| 1292 | done = [] |
| 1293 | |
| 1294 | new_priority = highest |
| 1295 | for g in groups: |
| 1296 | has_new_part = False |
| 1297 | for p in g: |
| 1298 | if p.number in done: |
| 1299 | continue |
| 1300 | done.append(p.number) |
| 1301 | attrs = p.attrs |
| 1302 | old_priority = attrs.priority |
| 1303 | assert new_priority > 0, 'Priority must be > 0.' |
| 1304 | attrs.priority = new_priority |
| 1305 | p = p.Clone(Attributes=attrs) |
Hung-Te Lin | 5f0dea4 | 2018-04-18 23:20:11 +0800 | [diff] [blame^] | 1306 | gpt.UpdatePartition(p) |
Hung-Te Lin | fe724f8 | 2018-04-18 15:03:58 +0800 | [diff] [blame] | 1307 | has_new_part = True |
| 1308 | logging.info('%s priority changed from %s to %s.', p, old_priority, |
| 1309 | new_priority) |
| 1310 | if has_new_part: |
| 1311 | new_priority -= 1 |
| 1312 | |
| 1313 | gpt.WriteToFile(args.image_file) |
| 1314 | |
Hung-Te Lin | f641d30 | 2018-04-18 15:09:35 +0800 | [diff] [blame] | 1315 | class Find(SubCommand): |
| 1316 | """Locate a partition by its GUID. |
| 1317 | |
| 1318 | Find a partition by its UUID or label. With no specified DRIVE it scans all |
| 1319 | physical drives. |
| 1320 | |
| 1321 | The partition type may also be given as one of these aliases: |
| 1322 | |
| 1323 | firmware ChromeOS firmware |
| 1324 | kernel ChromeOS kernel |
| 1325 | rootfs ChromeOS rootfs |
| 1326 | data Linux data |
| 1327 | reserved ChromeOS reserved |
| 1328 | efi EFI System Partition |
| 1329 | unused Unused (nonexistent) partition |
| 1330 | """ |
| 1331 | def DefineArgs(self, parser): |
| 1332 | parser.add_argument( |
| 1333 | '-t', '--type-guid', |
| 1334 | help='Search for Partition Type GUID') |
| 1335 | parser.add_argument( |
| 1336 | '-u', '--unique-guid', |
| 1337 | help='Search for Partition Unique GUID') |
| 1338 | parser.add_argument( |
| 1339 | '-l', '--label', |
| 1340 | help='Search for Label') |
| 1341 | parser.add_argument( |
| 1342 | '-n', '--numeric', action='store_true', |
| 1343 | help='Numeric output only.') |
| 1344 | parser.add_argument( |
| 1345 | '-1', '--single-match', action='store_true', |
| 1346 | help='Fail if more than one match is found.') |
| 1347 | parser.add_argument( |
| 1348 | '-M', '--match-file', type=str, |
| 1349 | help='Matching partition data must also contain MATCH_FILE content.') |
| 1350 | parser.add_argument( |
| 1351 | '-O', '--offset', type=int, default=0, |
| 1352 | help='Byte offset into partition to match content (default 0).') |
| 1353 | parser.add_argument( |
| 1354 | 'drive', type=argparse.FileType('rb+'), nargs='?', |
| 1355 | help='Drive or disk image file to find.') |
| 1356 | |
| 1357 | def Execute(self, args): |
| 1358 | if not any((args.type_guid, args.unique_guid, args.label)): |
| 1359 | raise GPTError('You must specify at least one of -t, -u, or -l') |
| 1360 | |
| 1361 | drives = [args.drive.name] if args.drive else ( |
| 1362 | '/dev/%s' % name for name in subprocess.check_output( |
| 1363 | 'lsblk -d -n -r -o name', shell=True).split()) |
| 1364 | |
| 1365 | match_pattern = None |
| 1366 | if args.match_file: |
| 1367 | with open(args.match_file) as f: |
| 1368 | match_pattern = f.read() |
| 1369 | |
| 1370 | found = 0 |
| 1371 | for drive in drives: |
| 1372 | try: |
| 1373 | gpt = GPT.LoadFromFile(drive) |
| 1374 | except GPTError: |
| 1375 | if args.drive: |
| 1376 | raise |
| 1377 | # When scanning all block devices on system, ignore failure. |
| 1378 | |
| 1379 | for p in gpt.partitions: |
| 1380 | if p.IsUnused(): |
| 1381 | continue |
| 1382 | if args.label is not None and args.label != p.label: |
| 1383 | continue |
| 1384 | if args.unique_guid is not None and ( |
| 1385 | uuid.UUID(args.unique_guid) != uuid.UUID(bytes_le=p.UniqueGUID)): |
| 1386 | continue |
| 1387 | type_guid = gpt.GetTypeGUID(args.type_guid) |
| 1388 | if args.type_guid is not None and ( |
| 1389 | type_guid != uuid.UUID(bytes_le=p.TypeGUID)): |
| 1390 | continue |
| 1391 | if match_pattern: |
| 1392 | with open(drive, 'rb') as f: |
| 1393 | f.seek(p.offset + args.offset) |
| 1394 | if f.read(len(match_pattern)) != match_pattern: |
| 1395 | continue |
| 1396 | # Found the partition, now print. |
| 1397 | found += 1 |
| 1398 | if args.numeric: |
| 1399 | print(p.number) |
| 1400 | else: |
| 1401 | # This is actually more for block devices. |
| 1402 | print('%s%s%s' % (p.image, 'p' if p.image[-1].isdigit() else '', |
| 1403 | p.number)) |
| 1404 | |
| 1405 | if found < 1 or (args.single_match and found > 1): |
| 1406 | return 1 |
| 1407 | return 0 |
| 1408 | |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1409 | |
| 1410 | def main(): |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1411 | commands = GPTCommands() |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1412 | parser = argparse.ArgumentParser(description='GPT Utility.') |
| 1413 | parser.add_argument('--verbose', '-v', action='count', default=0, |
| 1414 | help='increase verbosity.') |
| 1415 | parser.add_argument('--debug', '-d', action='store_true', |
| 1416 | help='enable debug output.') |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1417 | commands.DefineArgs(parser) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1418 | |
| 1419 | args = parser.parse_args() |
| 1420 | log_level = max(logging.WARNING - args.verbose * 10, logging.DEBUG) |
| 1421 | if args.debug: |
| 1422 | log_level = logging.DEBUG |
| 1423 | logging.basicConfig(format='%(module)s:%(funcName)s %(message)s', |
| 1424 | level=log_level) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1425 | try: |
Hung-Te Lin | f641d30 | 2018-04-18 15:09:35 +0800 | [diff] [blame] | 1426 | code = commands.Execute(args) |
| 1427 | if type(code) is int: |
| 1428 | sys.exit(code) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1429 | except Exception as e: |
| 1430 | if args.verbose or args.debug: |
| 1431 | logging.exception('Failure in command [%s]', args.command) |
Hung-Te Lin | 5cb0c31 | 2018-04-17 14:56:43 +0800 | [diff] [blame] | 1432 | exit('ERROR: %s: %s' % (args.command, str(e) or 'Unknown error.')) |
Hung-Te Lin | c772e1a | 2017-04-14 16:50:50 +0800 | [diff] [blame] | 1433 | |
| 1434 | |
| 1435 | if __name__ == '__main__': |
| 1436 | main() |