1*3a9fd824SRoger Pau Monné /****************************************************************************** 2*3a9fd824SRoger Pau Monné * elfnote.h 3*3a9fd824SRoger Pau Monné * 4*3a9fd824SRoger Pau Monné * Definitions used for the Xen ELF notes. 5*3a9fd824SRoger Pau Monné * 6*3a9fd824SRoger Pau Monné * Permission is hereby granted, free of charge, to any person obtaining a copy 7*3a9fd824SRoger Pau Monné * of this software and associated documentation files (the "Software"), to 8*3a9fd824SRoger Pau Monné * deal in the Software without restriction, including without limitation the 9*3a9fd824SRoger Pau Monné * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 10*3a9fd824SRoger Pau Monné * sell copies of the Software, and to permit persons to whom the Software is 11*3a9fd824SRoger Pau Monné * furnished to do so, subject to the following conditions: 12*3a9fd824SRoger Pau Monné * 13*3a9fd824SRoger Pau Monné * The above copyright notice and this permission notice shall be included in 14*3a9fd824SRoger Pau Monné * all copies or substantial portions of the Software. 15*3a9fd824SRoger Pau Monné * 16*3a9fd824SRoger Pau Monné * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17*3a9fd824SRoger Pau Monné * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18*3a9fd824SRoger Pau Monné * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19*3a9fd824SRoger Pau Monné * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20*3a9fd824SRoger Pau Monné * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21*3a9fd824SRoger Pau Monné * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22*3a9fd824SRoger Pau Monné * DEALINGS IN THE SOFTWARE. 23*3a9fd824SRoger Pau Monné * 24*3a9fd824SRoger Pau Monné * Copyright (c) 2006, Ian Campbell, XenSource Ltd. 25*3a9fd824SRoger Pau Monné */ 26*3a9fd824SRoger Pau Monné 27*3a9fd824SRoger Pau Monné #ifndef __XEN_PUBLIC_ELFNOTE_H__ 28*3a9fd824SRoger Pau Monné #define __XEN_PUBLIC_ELFNOTE_H__ 29*3a9fd824SRoger Pau Monné 30*3a9fd824SRoger Pau Monné /* 31*3a9fd824SRoger Pau Monné * `incontents 200 elfnotes ELF notes 32*3a9fd824SRoger Pau Monné * 33*3a9fd824SRoger Pau Monné * The notes should live in a PT_NOTE segment and have "Xen" in the 34*3a9fd824SRoger Pau Monné * name field. 35*3a9fd824SRoger Pau Monné * 36*3a9fd824SRoger Pau Monné * Numeric types are either 4 or 8 bytes depending on the content of 37*3a9fd824SRoger Pau Monné * the desc field. 38*3a9fd824SRoger Pau Monné * 39*3a9fd824SRoger Pau Monné * LEGACY indicated the fields in the legacy __xen_guest string which 40*3a9fd824SRoger Pau Monné * this a note type replaces. 41*3a9fd824SRoger Pau Monné * 42*3a9fd824SRoger Pau Monné * String values (for non-legacy) are NULL terminated ASCII, also known 43*3a9fd824SRoger Pau Monné * as ASCIZ type. 44*3a9fd824SRoger Pau Monné */ 45*3a9fd824SRoger Pau Monné 46*3a9fd824SRoger Pau Monné /* 47*3a9fd824SRoger Pau Monné * NAME=VALUE pair (string). 48*3a9fd824SRoger Pau Monné */ 49*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_INFO 0 50*3a9fd824SRoger Pau Monné 51*3a9fd824SRoger Pau Monné /* 52*3a9fd824SRoger Pau Monné * The virtual address of the entry point (numeric). 53*3a9fd824SRoger Pau Monné * 54*3a9fd824SRoger Pau Monné * LEGACY: VIRT_ENTRY 55*3a9fd824SRoger Pau Monné */ 56*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_ENTRY 1 57*3a9fd824SRoger Pau Monné 58*3a9fd824SRoger Pau Monné /* The virtual address of the hypercall transfer page (numeric). 59*3a9fd824SRoger Pau Monné * 60*3a9fd824SRoger Pau Monné * LEGACY: HYPERCALL_PAGE. (n.b. legacy value is a physical page 61*3a9fd824SRoger Pau Monné * number not a virtual address) 62*3a9fd824SRoger Pau Monné */ 63*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_HYPERCALL_PAGE 2 64*3a9fd824SRoger Pau Monné 65*3a9fd824SRoger Pau Monné /* The virtual address where the kernel image should be mapped (numeric). 66*3a9fd824SRoger Pau Monné * 67*3a9fd824SRoger Pau Monné * Defaults to 0. 68*3a9fd824SRoger Pau Monné * 69*3a9fd824SRoger Pau Monné * LEGACY: VIRT_BASE 70*3a9fd824SRoger Pau Monné */ 71*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_VIRT_BASE 3 72*3a9fd824SRoger Pau Monné 73*3a9fd824SRoger Pau Monné /* 74*3a9fd824SRoger Pau Monné * The offset of the ELF paddr field from the actual required 75*3a9fd824SRoger Pau Monné * pseudo-physical address (numeric). 76*3a9fd824SRoger Pau Monné * 77*3a9fd824SRoger Pau Monné * This is used to maintain backwards compatibility with older kernels 78*3a9fd824SRoger Pau Monné * which wrote __PAGE_OFFSET into that field. This field defaults to 0 79*3a9fd824SRoger Pau Monné * if not present. 80*3a9fd824SRoger Pau Monné * 81*3a9fd824SRoger Pau Monné * LEGACY: ELF_PADDR_OFFSET. (n.b. legacy default is VIRT_BASE) 82*3a9fd824SRoger Pau Monné */ 83*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_PADDR_OFFSET 4 84*3a9fd824SRoger Pau Monné 85*3a9fd824SRoger Pau Monné /* 86*3a9fd824SRoger Pau Monné * The version of Xen that we work with (string). 87*3a9fd824SRoger Pau Monné * 88*3a9fd824SRoger Pau Monné * LEGACY: XEN_VER 89*3a9fd824SRoger Pau Monné */ 90*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_XEN_VERSION 5 91*3a9fd824SRoger Pau Monné 92*3a9fd824SRoger Pau Monné /* 93*3a9fd824SRoger Pau Monné * The name of the guest operating system (string). 94*3a9fd824SRoger Pau Monné * 95*3a9fd824SRoger Pau Monné * LEGACY: GUEST_OS 96*3a9fd824SRoger Pau Monné */ 97*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_GUEST_OS 6 98*3a9fd824SRoger Pau Monné 99*3a9fd824SRoger Pau Monné /* 100*3a9fd824SRoger Pau Monné * The version of the guest operating system (string). 101*3a9fd824SRoger Pau Monné * 102*3a9fd824SRoger Pau Monné * LEGACY: GUEST_VER 103*3a9fd824SRoger Pau Monné */ 104*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_GUEST_VERSION 7 105*3a9fd824SRoger Pau Monné 106*3a9fd824SRoger Pau Monné /* 107*3a9fd824SRoger Pau Monné * The loader type (string). 108*3a9fd824SRoger Pau Monné * 109*3a9fd824SRoger Pau Monné * LEGACY: LOADER 110*3a9fd824SRoger Pau Monné */ 111*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_LOADER 8 112*3a9fd824SRoger Pau Monné 113*3a9fd824SRoger Pau Monné /* 114*3a9fd824SRoger Pau Monné * The kernel supports PAE (x86/32 only, string = "yes", "no" or 115*3a9fd824SRoger Pau Monné * "bimodal"). 116*3a9fd824SRoger Pau Monné * 117*3a9fd824SRoger Pau Monné * For compatibility with Xen 3.0.3 and earlier the "bimodal" setting 118*3a9fd824SRoger Pau Monné * may be given as "yes,bimodal" which will cause older Xen to treat 119*3a9fd824SRoger Pau Monné * this kernel as PAE. 120*3a9fd824SRoger Pau Monné * 121*3a9fd824SRoger Pau Monné * LEGACY: PAE (n.b. The legacy interface included a provision to 122*3a9fd824SRoger Pau Monné * indicate 'extended-cr3' support allowing L3 page tables to be 123*3a9fd824SRoger Pau Monné * placed above 4G. It is assumed that any kernel new enough to use 124*3a9fd824SRoger Pau Monné * these ELF notes will include this and therefore "yes" here is 125*3a9fd824SRoger Pau Monné * equivalent to "yes[entended-cr3]" in the __xen_guest interface. 126*3a9fd824SRoger Pau Monné */ 127*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_PAE_MODE 9 128*3a9fd824SRoger Pau Monné 129*3a9fd824SRoger Pau Monné /* 130*3a9fd824SRoger Pau Monné * The features supported/required by this kernel (string). 131*3a9fd824SRoger Pau Monné * 132*3a9fd824SRoger Pau Monné * The string must consist of a list of feature names (as given in 133*3a9fd824SRoger Pau Monné * features.h, without the "XENFEAT_" prefix) separated by '|' 134*3a9fd824SRoger Pau Monné * characters. If a feature is required for the kernel to function 135*3a9fd824SRoger Pau Monné * then the feature name must be preceded by a '!' character. 136*3a9fd824SRoger Pau Monné * 137*3a9fd824SRoger Pau Monné * LEGACY: FEATURES 138*3a9fd824SRoger Pau Monné */ 139*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_FEATURES 10 140*3a9fd824SRoger Pau Monné 141*3a9fd824SRoger Pau Monné /* 142*3a9fd824SRoger Pau Monné * The kernel requires the symbol table to be loaded (string = "yes" or "no") 143*3a9fd824SRoger Pau Monné * LEGACY: BSD_SYMTAB (n.b. The legacy treated the presence or absence 144*3a9fd824SRoger Pau Monné * of this string as a boolean flag rather than requiring "yes" or 145*3a9fd824SRoger Pau Monné * "no". 146*3a9fd824SRoger Pau Monné */ 147*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_BSD_SYMTAB 11 148*3a9fd824SRoger Pau Monné 149*3a9fd824SRoger Pau Monné /* 150*3a9fd824SRoger Pau Monné * The lowest address the hypervisor hole can begin at (numeric). 151*3a9fd824SRoger Pau Monné * 152*3a9fd824SRoger Pau Monné * This must not be set higher than HYPERVISOR_VIRT_START. Its presence 153*3a9fd824SRoger Pau Monné * also indicates to the hypervisor that the kernel can deal with the 154*3a9fd824SRoger Pau Monné * hole starting at a higher address. 155*3a9fd824SRoger Pau Monné */ 156*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_HV_START_LOW 12 157*3a9fd824SRoger Pau Monné 158*3a9fd824SRoger Pau Monné /* 159*3a9fd824SRoger Pau Monné * List of maddr_t-sized mask/value pairs describing how to recognize 160*3a9fd824SRoger Pau Monné * (non-present) L1 page table entries carrying valid MFNs (numeric). 161*3a9fd824SRoger Pau Monné */ 162*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_L1_MFN_VALID 13 163*3a9fd824SRoger Pau Monné 164*3a9fd824SRoger Pau Monné /* 165*3a9fd824SRoger Pau Monné * Whether or not the guest supports cooperative suspend cancellation. 166*3a9fd824SRoger Pau Monné * This is a numeric value. 167*3a9fd824SRoger Pau Monné * 168*3a9fd824SRoger Pau Monné * Default is 0 169*3a9fd824SRoger Pau Monné */ 170*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_SUSPEND_CANCEL 14 171*3a9fd824SRoger Pau Monné 172*3a9fd824SRoger Pau Monné /* 173*3a9fd824SRoger Pau Monné * The (non-default) location the initial phys-to-machine map should be 174*3a9fd824SRoger Pau Monné * placed at by the hypervisor (Dom0) or the tools (DomU). 175*3a9fd824SRoger Pau Monné * The kernel must be prepared for this mapping to be established using 176*3a9fd824SRoger Pau Monné * large pages, despite such otherwise not being available to guests. Note 177*3a9fd824SRoger Pau Monné * that these large pages may be misaligned in PFN space (they'll obviously 178*3a9fd824SRoger Pau Monné * be aligned in MFN and virtual address spaces). 179*3a9fd824SRoger Pau Monné * The kernel must also be able to handle the page table pages used for 180*3a9fd824SRoger Pau Monné * this mapping not being accessible through the initial mapping. 181*3a9fd824SRoger Pau Monné * (Only x86-64 supports this at present.) 182*3a9fd824SRoger Pau Monné */ 183*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_INIT_P2M 15 184*3a9fd824SRoger Pau Monné 185*3a9fd824SRoger Pau Monné /* 186*3a9fd824SRoger Pau Monné * Whether or not the guest can deal with being passed an initrd not 187*3a9fd824SRoger Pau Monné * mapped through its initial page tables. 188*3a9fd824SRoger Pau Monné */ 189*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_MOD_START_PFN 16 190*3a9fd824SRoger Pau Monné 191*3a9fd824SRoger Pau Monné /* 192*3a9fd824SRoger Pau Monné * The features supported by this kernel (numeric). 193*3a9fd824SRoger Pau Monné * 194*3a9fd824SRoger Pau Monné * Other than XEN_ELFNOTE_FEATURES on pre-4.2 Xen, this note allows a 195*3a9fd824SRoger Pau Monné * kernel to specify support for features that older hypervisors don't 196*3a9fd824SRoger Pau Monné * know about. The set of features 4.2 and newer hypervisors will 197*3a9fd824SRoger Pau Monné * consider supported by the kernel is the combination of the sets 198*3a9fd824SRoger Pau Monné * specified through this and the string note. 199*3a9fd824SRoger Pau Monné * 200*3a9fd824SRoger Pau Monné * LEGACY: FEATURES 201*3a9fd824SRoger Pau Monné */ 202*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_SUPPORTED_FEATURES 17 203*3a9fd824SRoger Pau Monné 204*3a9fd824SRoger Pau Monné /* 205*3a9fd824SRoger Pau Monné * Physical entry point into the kernel. 206*3a9fd824SRoger Pau Monné * 207*3a9fd824SRoger Pau Monné * 32bit entry point into the kernel. When requested to launch the 208*3a9fd824SRoger Pau Monné * guest kernel in a HVM container, Xen will use this entry point to 209*3a9fd824SRoger Pau Monné * launch the guest in 32bit protected mode with paging disabled. 210*3a9fd824SRoger Pau Monné * Ignored otherwise. 211*3a9fd824SRoger Pau Monné */ 212*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_PHYS32_ENTRY 18 213*3a9fd824SRoger Pau Monné 214*3a9fd824SRoger Pau Monné /* 215*3a9fd824SRoger Pau Monné * The number of the highest elfnote defined. 216*3a9fd824SRoger Pau Monné */ 217*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_MAX XEN_ELFNOTE_PHYS32_ENTRY 218*3a9fd824SRoger Pau Monné 219*3a9fd824SRoger Pau Monné /* 220*3a9fd824SRoger Pau Monné * System information exported through crash notes. 221*3a9fd824SRoger Pau Monné * 222*3a9fd824SRoger Pau Monné * The kexec / kdump code will create one XEN_ELFNOTE_CRASH_INFO 223*3a9fd824SRoger Pau Monné * note in case of a system crash. This note will contain various 224*3a9fd824SRoger Pau Monné * information about the system, see xen/include/xen/elfcore.h. 225*3a9fd824SRoger Pau Monné */ 226*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_CRASH_INFO 0x1000001 227*3a9fd824SRoger Pau Monné 228*3a9fd824SRoger Pau Monné /* 229*3a9fd824SRoger Pau Monné * System registers exported through crash notes. 230*3a9fd824SRoger Pau Monné * 231*3a9fd824SRoger Pau Monné * The kexec / kdump code will create one XEN_ELFNOTE_CRASH_REGS 232*3a9fd824SRoger Pau Monné * note per cpu in case of a system crash. This note is architecture 233*3a9fd824SRoger Pau Monné * specific and will contain registers not saved in the "CORE" note. 234*3a9fd824SRoger Pau Monné * See xen/include/xen/elfcore.h for more information. 235*3a9fd824SRoger Pau Monné */ 236*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_CRASH_REGS 0x1000002 237*3a9fd824SRoger Pau Monné 238*3a9fd824SRoger Pau Monné 239*3a9fd824SRoger Pau Monné /* 240*3a9fd824SRoger Pau Monné * xen dump-core none note. 241*3a9fd824SRoger Pau Monné * xm dump-core code will create one XEN_ELFNOTE_DUMPCORE_NONE 242*3a9fd824SRoger Pau Monné * in its dump file to indicate that the file is xen dump-core 243*3a9fd824SRoger Pau Monné * file. This note doesn't have any other information. 244*3a9fd824SRoger Pau Monné * See tools/libxc/xc_core.h for more information. 245*3a9fd824SRoger Pau Monné */ 246*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_DUMPCORE_NONE 0x2000000 247*3a9fd824SRoger Pau Monné 248*3a9fd824SRoger Pau Monné /* 249*3a9fd824SRoger Pau Monné * xen dump-core header note. 250*3a9fd824SRoger Pau Monné * xm dump-core code will create one XEN_ELFNOTE_DUMPCORE_HEADER 251*3a9fd824SRoger Pau Monné * in its dump file. 252*3a9fd824SRoger Pau Monné * See tools/libxc/xc_core.h for more information. 253*3a9fd824SRoger Pau Monné */ 254*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_DUMPCORE_HEADER 0x2000001 255*3a9fd824SRoger Pau Monné 256*3a9fd824SRoger Pau Monné /* 257*3a9fd824SRoger Pau Monné * xen dump-core xen version note. 258*3a9fd824SRoger Pau Monné * xm dump-core code will create one XEN_ELFNOTE_DUMPCORE_XEN_VERSION 259*3a9fd824SRoger Pau Monné * in its dump file. It contains the xen version obtained via the 260*3a9fd824SRoger Pau Monné * XENVER hypercall. 261*3a9fd824SRoger Pau Monné * See tools/libxc/xc_core.h for more information. 262*3a9fd824SRoger Pau Monné */ 263*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_DUMPCORE_XEN_VERSION 0x2000002 264*3a9fd824SRoger Pau Monné 265*3a9fd824SRoger Pau Monné /* 266*3a9fd824SRoger Pau Monné * xen dump-core format version note. 267*3a9fd824SRoger Pau Monné * xm dump-core code will create one XEN_ELFNOTE_DUMPCORE_FORMAT_VERSION 268*3a9fd824SRoger Pau Monné * in its dump file. It contains a format version identifier. 269*3a9fd824SRoger Pau Monné * See tools/libxc/xc_core.h for more information. 270*3a9fd824SRoger Pau Monné */ 271*3a9fd824SRoger Pau Monné #define XEN_ELFNOTE_DUMPCORE_FORMAT_VERSION 0x2000003 272*3a9fd824SRoger Pau Monné 273*3a9fd824SRoger Pau Monné #endif /* __XEN_PUBLIC_ELFNOTE_H__ */ 274*3a9fd824SRoger Pau Monné 275*3a9fd824SRoger Pau Monné /* 276*3a9fd824SRoger Pau Monné * Local variables: 277*3a9fd824SRoger Pau Monné * mode: C 278*3a9fd824SRoger Pau Monné * c-file-style: "BSD" 279*3a9fd824SRoger Pau Monné * c-basic-offset: 4 280*3a9fd824SRoger Pau Monné * tab-width: 4 281*3a9fd824SRoger Pau Monné * indent-tabs-mode: nil 282*3a9fd824SRoger Pau Monné * End: 283*3a9fd824SRoger Pau Monné */ 284