The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/sys/disk/gpt.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * Copyright (c) 2002 Marcel Moolenaar
    3  * All rights reserved.
    4  *
    5  * Redistribution and use in source and binary forms, with or without
    6  * modification, are permitted provided that the following conditions
    7  * are met:
    8  *
    9  * 1. Redistributions of source code must retain the above copyright
   10  *    notice, this list of conditions and the following disclaimer.
   11  * 2. Redistributions in binary form must reproduce the above copyright
   12  *    notice, this list of conditions and the following disclaimer in the
   13  *    documentation and/or other materials provided with the distribution.
   14  *
   15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
   16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
   18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
   19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
   20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
   21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
   22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
   24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   25  *
   26  * $FreeBSD$
   27  */
   28 
   29 #ifndef _SYS_DISK_GPT_H_
   30 #define _SYS_DISK_GPT_H_
   31 
   32 #include <sys/types.h>
   33 
   34 /*
   35  * Applications can define GPT_UUID_TYPE if they want the GPT structures
   36  * to use a particular type definition for UUIDs/GUIDs.  This header uses
   37  * a generic (DCE 1.1 compatible) definition otherwise.
   38  */
   39 #ifndef GPT_UUID_TYPE
   40 struct gpt_uuid {
   41         uint32_t        time_low;
   42         uint16_t        time_mid;
   43         uint16_t        time_hi_and_version;
   44         uint8_t         clock_seq_hi_and_reserved;
   45         uint8_t         clock_seq_low;
   46         uint8_t         node[6];
   47 };
   48 #define GPT_UUID_TYPE   struct gpt_uuid
   49 #endif /* !GPT_UUID_TYPE */
   50 
   51 typedef GPT_UUID_TYPE gpt_uuid_t;
   52 
   53 #ifdef CTASSERT
   54 CTASSERT(sizeof(gpt_uuid_t) == 16);
   55 #endif
   56 
   57 struct gpt_hdr {
   58         char            hdr_sig[8];
   59 #define GPT_HDR_SIG             "EFI PART"
   60         uint32_t        hdr_revision;
   61 #define GPT_HDR_REVISION        0x00010000
   62         uint32_t        hdr_size;
   63         uint32_t        hdr_crc_self;
   64         uint32_t        __reserved;
   65         uint64_t        hdr_lba_self;
   66         uint64_t        hdr_lba_alt;
   67         uint64_t        hdr_lba_start;
   68         uint64_t        hdr_lba_end;
   69         gpt_uuid_t      hdr_uuid;
   70         uint64_t        hdr_lba_table;
   71         uint32_t        hdr_entries;
   72         uint32_t        hdr_entsz;
   73         uint32_t        hdr_crc_table;
   74         /*
   75          * The header as defined in the EFI spec is not a multiple of 8 bytes
   76          * and given that the alignment requirement is on an 8 byte boundary,
   77          * padding will happen. We make the padding explicit so that we can
   78          * correct the value returned by sizeof() when we put the size of the
   79          * header in field hdr_size, or otherwise use offsetof().
   80          */
   81         uint32_t        padding;
   82 };
   83 #ifdef CTASSERT
   84 CTASSERT(offsetof(struct gpt_hdr, padding) == 92);
   85 #endif
   86 
   87 struct gpt_ent {
   88         gpt_uuid_t      ent_type;
   89         gpt_uuid_t      ent_uuid;
   90         uint64_t        ent_lba_start;
   91         uint64_t        ent_lba_end;
   92         uint64_t        ent_attr;
   93 #define GPT_ENT_ATTR_PLATFORM           (1ULL << 0)
   94 #define GPT_ENT_ATTR_BOOTME             (1ULL << 59)
   95 #define GPT_ENT_ATTR_BOOTONCE           (1ULL << 58)
   96 #define GPT_ENT_ATTR_BOOTFAILED         (1ULL << 57)
   97         uint16_t        ent_name[36];           /* UTF-16. */
   98 };
   99 #ifdef CTASSERT
  100 CTASSERT(sizeof(struct gpt_ent) == 128);
  101 #endif /* CTASSERT */
  102 
  103 #define GPT_ENT_TYPE_UNUSED             \
  104         {0x00000000,0x0000,0x0000,0x00,0x00,{0x00,0x00,0x00,0x00,0x00,0x00}}
  105 #define GPT_ENT_TYPE_EFI                \
  106         {0xc12a7328,0xf81f,0x11d2,0xba,0x4b,{0x00,0xa0,0xc9,0x3e,0xc9,0x3b}}
  107 #define GPT_ENT_TYPE_MBR                \
  108         {0x024dee41,0x33e7,0x11d3,0x9d,0x69,{0x00,0x08,0xc7,0x81,0xf3,0x9f}}
  109 #define GPT_ENT_TYPE_FREEBSD            \
  110         {0x516e7cb4,0x6ecf,0x11d6,0x8f,0xf8,{0x00,0x02,0x2d,0x09,0x71,0x2b}}
  111 #define GPT_ENT_TYPE_FREEBSD_BOOT       \
  112         {0x83bd6b9d,0x7f41,0x11dc,0xbe,0x0b,{0x00,0x15,0x60,0xb8,0x4f,0x0f}}
  113 #define GPT_ENT_TYPE_FREEBSD_NANDFS     \
  114         {0x74ba7dd9,0xa689,0x11e1,0xbd,0x04,{0x00,0xe0,0x81,0x28,0x6a,0xcf}}
  115 #define GPT_ENT_TYPE_FREEBSD_SWAP       \
  116         {0x516e7cb5,0x6ecf,0x11d6,0x8f,0xf8,{0x00,0x02,0x2d,0x09,0x71,0x2b}}
  117 #define GPT_ENT_TYPE_FREEBSD_UFS        \
  118         {0x516e7cb6,0x6ecf,0x11d6,0x8f,0xf8,{0x00,0x02,0x2d,0x09,0x71,0x2b}}
  119 #define GPT_ENT_TYPE_FREEBSD_VINUM      \
  120         {0x516e7cb8,0x6ecf,0x11d6,0x8f,0xf8,{0x00,0x02,0x2d,0x09,0x71,0x2b}}
  121 #define GPT_ENT_TYPE_FREEBSD_ZFS        \
  122         {0x516e7cba,0x6ecf,0x11d6,0x8f,0xf8,{0x00,0x02,0x2d,0x09,0x71,0x2b}}
  123 #define GPT_ENT_TYPE_PREP_BOOT          \
  124         {0x9e1a2d38,0xc612,0x4316,0xaa,0x26,{0x8b,0x49,0x52,0x1e,0x5a,0x8b}}
  125 
  126 /*
  127  * The following are unused but documented here to avoid reuse.
  128  *
  129  * GPT_ENT_TYPE_FREEBSD_UFS2    \
  130  *      {0x516e7cb7,0x6ecf,0x11d6,0x8f,0xf8,{0x00,0x02,0x2d,0x09,0x71,0x2b}}
  131  */
  132 
  133 /*
  134  * Foreign partition types that we're likely to encounter. Note that Linux
  135  * apparently choose to share data partitions with MS. I don't what the
  136  * advantage might be. I can see how sharing swap partitions is advantageous
  137  * though.
  138  */
  139 #define GPT_ENT_TYPE_MS_BASIC_DATA      \
  140         {0xebd0a0a2,0xb9e5,0x4433,0x87,0xc0,{0x68,0xb6,0xb7,0x26,0x99,0xc7}}
  141 #define GPT_ENT_TYPE_MS_LDM_DATA        \
  142         {0xaf9b60a0,0x1431,0x4f62,0xbc,0x68,{0x33,0x11,0x71,0x4a,0x69,0xad}}
  143 #define GPT_ENT_TYPE_MS_LDM_METADATA    \
  144         {0x5808c8aa,0x7e8f,0x42e0,0x85,0xd2,{0xe1,0xe9,0x04,0x34,0xcf,0xb3}}
  145 #define GPT_ENT_TYPE_MS_RECOVERY        \
  146         {0xde94bba4,0x06d1,0x4d40,0xa1,0x6a,{0xbf,0xd5,0x01,0x79,0xd6,0xac}}
  147 #define GPT_ENT_TYPE_MS_RESERVED        \
  148         {0xe3c9e316,0x0b5c,0x4db8,0x81,0x7d,{0xf9,0x2d,0xf0,0x02,0x15,0xae}}
  149 #define GPT_ENT_TYPE_MS_SPACES  \
  150         {0xe75caf8f,0xf680,0x4cee,0xaf,0xa3,{0xb0,0x01,0xe5,0x6e,0xfc,0x2d}}
  151 
  152 #define GPT_ENT_TYPE_LINUX_DATA         \
  153         {0x0fc63daf,0x8483,0x4772,0x8e,0x79,{0x3d,0x69,0xd8,0x47,0x7d,0xe4}}
  154 #define GPT_ENT_TYPE_LINUX_RAID         \
  155         {0xa19d880f,0x05fc,0x4d3b,0xa0,0x06,{0x74,0x3f,0x0f,0x84,0x91,0x1e}}
  156 #define GPT_ENT_TYPE_LINUX_SWAP         \
  157         {0x0657fd6d,0xa4ab,0x43c4,0x84,0xe5,{0x09,0x33,0xc8,0x4b,0x4f,0x4f}}
  158 #define GPT_ENT_TYPE_LINUX_LVM          \
  159         {0xe6d6d379,0xf507,0x44c2,0xa2,0x3c,{0x23,0x8f,0x2a,0x3d,0xf9,0x28}}
  160 
  161 #define GPT_ENT_TYPE_VMFS               \
  162         {0xaa31e02a,0x400f,0x11db,0x95,0x90,{0x00,0x0c,0x29,0x11,0xd1,0xb8}}
  163 #define GPT_ENT_TYPE_VMKDIAG            \
  164         {0x9d275380,0x40ad,0x11db,0xbf,0x97,{0x00,0x0c,0x29,0x11,0xd1,0xb8}}
  165 #define GPT_ENT_TYPE_VMRESERVED         \
  166         {0x9198effc,0x31c0,0x11db,0x8f,0x78,{0x00,0x0c,0x29,0x11,0xd1,0xb8}}
  167 #define GPT_ENT_TYPE_VMVSANHDR          \
  168         {0x381cfccc,0x7288,0x11e0,0x92,0xee,{0x00,0x0c,0x29,0x11,0xd0,0xb2}}
  169 
  170 #define GPT_ENT_TYPE_APPLE_BOOT         \
  171         {0x426F6F74,0x0000,0x11aa,0xaa,0x11,{0x00,0x30,0x65,0x43,0xec,0xac}}
  172 #define GPT_ENT_TYPE_APPLE_HFS          \
  173         {0x48465300,0x0000,0x11aa,0xaa,0x11,{0x00,0x30,0x65,0x43,0xec,0xac}}
  174 #define GPT_ENT_TYPE_APPLE_UFS          \
  175         {0x55465300,0x0000,0x11aa,0xaa,0x11,{0x00,0x30,0x65,0x43,0xec,0xac}}
  176 #define GPT_ENT_TYPE_APPLE_ZFS          \
  177         {0x6a898cc3,0x1dd2,0x11b2,0x99,0xa6,{0x08,0x00,0x20,0x73,0x66,0x31}}
  178 #define GPT_ENT_TYPE_APPLE_RAID         \
  179         {0x52414944,0x0000,0x11aa,0xaa,0x22,{0x00,0x30,0x65,0x43,0xec,0xac}}
  180 #define GPT_ENT_TYPE_APPLE_RAID_OFFLINE \
  181         {0x52414944,0x5f4f,0x11aa,0xaa,0x22,{0x00,0x30,0x65,0x43,0xec,0xac}}
  182 #define GPT_ENT_TYPE_APPLE_LABEL        \
  183         {0x4C616265,0x6c00,0x11aa,0xaa,0x11,{0x00,0x30,0x65,0x43,0xec,0xac}}
  184 #define GPT_ENT_TYPE_APPLE_TV_RECOVERY  \
  185         {0x5265636f,0x7665,0x11AA,0xaa,0x11,{0x00,0x30,0x65,0x43,0xec,0xac}}
  186 #define GPT_ENT_TYPE_APPLE_CORE_STORAGE \
  187         {0x53746f72,0x6167,0x11AA,0xaa,0x11,{0x00,0x30,0x65,0x43,0xec,0xac}}
  188 #define GPT_ENT_TYPE_APPLE_APFS \
  189         {0x7c3457ef,0x0000,0x11aa,0xaa,0x11,{0x00,0x30,0x65,0x43,0xec,0xac}}
  190 
  191 #define GPT_ENT_TYPE_NETBSD_FFS         \
  192         {0x49f48d5a,0xb10e,0x11dc,0xb9,0x9b,{0x00,0x19,0xd1,0x87,0x96,0x48}}
  193 #define GPT_ENT_TYPE_NETBSD_LFS         \
  194         {0x49f48d82,0xb10e,0x11dc,0xb9,0x9b,{0x00,0x19,0xd1,0x87,0x96,0x48}}
  195 #define GPT_ENT_TYPE_NETBSD_SWAP        \
  196         {0x49f48d32,0xb10e,0x11dc,0xB9,0x9B,{0x00,0x19,0xd1,0x87,0x96,0x48}}
  197 #define GPT_ENT_TYPE_NETBSD_RAID        \
  198         {0x49f48daa,0xb10e,0x11dc,0xb9,0x9b,{0x00,0x19,0xd1,0x87,0x96,0x48}}
  199 #define GPT_ENT_TYPE_NETBSD_CCD         \
  200         {0x2db519c4,0xb10f,0x11dc,0xb9,0x9b,{0x00,0x19,0xd1,0x87,0x96,0x48}}
  201 #define GPT_ENT_TYPE_NETBSD_CGD         \
  202         {0x2db519ec,0xb10f,0x11dc,0xb9,0x9b,{0x00,0x19,0xd1,0x87,0x96,0x48}}
  203 
  204 #define GPT_ENT_TYPE_DRAGONFLY_LABEL32  \
  205         {0x9d087404,0x1ca5,0x11dc,0x88,0x17,{0x01,0x30,0x1b,0xb8,0xa9,0xf5}}
  206 #define GPT_ENT_TYPE_DRAGONFLY_SWAP     \
  207         {0x9d58fdbd,0x1ca5,0x11dc,0x88,0x17,{0x01,0x30,0x1b,0xb8,0xa9,0xf5}}
  208 #define GPT_ENT_TYPE_DRAGONFLY_UFS1     \
  209         {0x9d94ce7c,0x1ca5,0x11dc,0x88,0x17,{0x01,0x30,0x1b,0xb8,0xa9,0xf5}}
  210 #define GPT_ENT_TYPE_DRAGONFLY_VINUM    \
  211         {0x9dd4478f,0x1ca5,0x11dc,0x88,0x17,{0x01,0x30,0x1b,0xb8,0xa9,0xf5}}
  212 #define GPT_ENT_TYPE_DRAGONFLY_CCD      \
  213         {0xdbd5211b,0x1ca5,0x11dc,0x88,0x17,{0x01,0x30,0x1b,0xb8,0xa9,0xf5}}
  214 #define GPT_ENT_TYPE_DRAGONFLY_LABEL64  \
  215         {0x3d48ce54,0x1d16,0x11dc,0x86,0x96,{0x01,0x30,0x1b,0xb8,0xa9,0xf5}}
  216 #define GPT_ENT_TYPE_DRAGONFLY_LEGACY   \
  217         {0xbd215ab2,0x1d16,0x11dc,0x86,0x96,{0x01,0x30,0x1b,0xb8,0xa9,0xf5}}
  218 #define GPT_ENT_TYPE_DRAGONFLY_HAMMER   \
  219         {0x61dc63ac,0x6e38,0x11dc,0x85,0x13,{0x01,0x30,0x1b,0xb8,0xa9,0xf5}}
  220 #define GPT_ENT_TYPE_DRAGONFLY_HAMMER2  \
  221         {0x5cbb9ad1,0x862d,0x11dc,0xa9,0x4d,{0x01,0x30,0x1b,0xb8,0xa9,0xf5}}
  222 
  223 #define GPT_ENT_TYPE_CHROMEOS_FIRMWARE  \
  224         {0xcab6e88e,0xabf3,0x4102,0xa0,0x7a,{0xd4,0xbb,0x9b,0xe3,0xc1,0xd3}}
  225 #define GPT_ENT_TYPE_CHROMEOS_KERNEL    \
  226         {0xfe3a2a5d,0x4f32,0x41a7,0xb7,0x25,{0xac,0xcc,0x32,0x85,0xa3,0x09}}
  227 #define GPT_ENT_TYPE_CHROMEOS_RESERVED  \
  228         {0x2e0a753d,0x9e48,0x43b0,0x83,0x37,{0xb1,0x51,0x92,0xcb,0x1b,0x5e}}
  229 #define GPT_ENT_TYPE_CHROMEOS_ROOT      \
  230         {0x3cb8e202,0x3b7e,0x47dd,0x8a,0x3c,{0x7f,0xf2,0xa1,0x3c,0xfc,0xec}}
  231 
  232 #define GPT_ENT_TYPE_OPENBSD_DATA       \
  233         {0x824cc7a0,0x36a8,0x11e3,0x89,0x0a,{0x95,0x25,0x19,0xad,0x3f,0x61}}
  234 
  235 /*
  236  * Boot partition used by GRUB 2.
  237  */
  238 #define GPT_ENT_TYPE_BIOS_BOOT          \
  239         {0x21686148,0x6449,0x6e6f,0x74,0x4e,{0x65,0x65,0x64,0x45,0x46,0x49}}
  240 
  241 #endif /* _SYS_DISK_GPT_H_ */

Cache object: cf90c5d0d449d7a68294c1d1011f6962


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.