1*3a9fd824SRoger Pau Monné /****************************************************************************** 2*3a9fd824SRoger Pau Monné * kexec.h - Public portion 3*3a9fd824SRoger Pau Monné * 4*3a9fd824SRoger Pau Monné * Permission is hereby granted, free of charge, to any person obtaining a copy 5*3a9fd824SRoger Pau Monné * of this software and associated documentation files (the "Software"), to 6*3a9fd824SRoger Pau Monné * deal in the Software without restriction, including without limitation the 7*3a9fd824SRoger Pau Monné * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 8*3a9fd824SRoger Pau Monné * sell copies of the Software, and to permit persons to whom the Software is 9*3a9fd824SRoger Pau Monné * furnished to do so, subject to the following conditions: 10*3a9fd824SRoger Pau Monné * 11*3a9fd824SRoger Pau Monné * The above copyright notice and this permission notice shall be included in 12*3a9fd824SRoger Pau Monné * all copies or substantial portions of the Software. 13*3a9fd824SRoger Pau Monné * 14*3a9fd824SRoger Pau Monné * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15*3a9fd824SRoger Pau Monné * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16*3a9fd824SRoger Pau Monné * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17*3a9fd824SRoger Pau Monné * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18*3a9fd824SRoger Pau Monné * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 19*3a9fd824SRoger Pau Monné * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 20*3a9fd824SRoger Pau Monné * DEALINGS IN THE SOFTWARE. 21*3a9fd824SRoger Pau Monné * 22*3a9fd824SRoger Pau Monné * Xen port written by: 23*3a9fd824SRoger Pau Monné * - Simon 'Horms' Horman <horms@verge.net.au> 24*3a9fd824SRoger Pau Monné * - Magnus Damm <magnus@valinux.co.jp> 25*3a9fd824SRoger Pau Monné */ 26*3a9fd824SRoger Pau Monné 27*3a9fd824SRoger Pau Monné #ifndef _XEN_PUBLIC_KEXEC_H 28*3a9fd824SRoger Pau Monné #define _XEN_PUBLIC_KEXEC_H 29*3a9fd824SRoger Pau Monné 30*3a9fd824SRoger Pau Monné 31*3a9fd824SRoger Pau Monné /* This file describes the Kexec / Kdump hypercall interface for Xen. 32*3a9fd824SRoger Pau Monné * 33*3a9fd824SRoger Pau Monné * Kexec under vanilla Linux allows a user to reboot the physical machine 34*3a9fd824SRoger Pau Monné * into a new user-specified kernel. The Xen port extends this idea 35*3a9fd824SRoger Pau Monné * to allow rebooting of the machine from dom0. When kexec for dom0 36*3a9fd824SRoger Pau Monné * is used to reboot, both the hypervisor and the domains get replaced 37*3a9fd824SRoger Pau Monné * with some other kernel. It is possible to kexec between vanilla 38*3a9fd824SRoger Pau Monné * Linux and Xen and back again. Xen to Xen works well too. 39*3a9fd824SRoger Pau Monné * 40*3a9fd824SRoger Pau Monné * The hypercall interface for kexec can be divided into three main 41*3a9fd824SRoger Pau Monné * types of hypercall operations: 42*3a9fd824SRoger Pau Monné * 43*3a9fd824SRoger Pau Monné * 1) Range information: 44*3a9fd824SRoger Pau Monné * This is used by the dom0 kernel to ask the hypervisor about various 45*3a9fd824SRoger Pau Monné * address information. This information is needed to allow kexec-tools 46*3a9fd824SRoger Pau Monné * to fill in the ELF headers for /proc/vmcore properly. 47*3a9fd824SRoger Pau Monné * 48*3a9fd824SRoger Pau Monné * 2) Load and unload of images: 49*3a9fd824SRoger Pau Monné * There are no big surprises here, the kexec binary from kexec-tools 50*3a9fd824SRoger Pau Monné * runs in userspace in dom0. The tool loads/unloads data into the 51*3a9fd824SRoger Pau Monné * dom0 kernel such as new kernel, initramfs and hypervisor. When 52*3a9fd824SRoger Pau Monné * loaded the dom0 kernel performs a load hypercall operation, and 53*3a9fd824SRoger Pau Monné * before releasing all page references the dom0 kernel calls unload. 54*3a9fd824SRoger Pau Monné * 55*3a9fd824SRoger Pau Monné * 3) Kexec operation: 56*3a9fd824SRoger Pau Monné * This is used to start a previously loaded kernel. 57*3a9fd824SRoger Pau Monné */ 58*3a9fd824SRoger Pau Monné 59*3a9fd824SRoger Pau Monné #include "xen.h" 60*3a9fd824SRoger Pau Monné 61*3a9fd824SRoger Pau Monné #if defined(__i386__) || defined(__x86_64__) 62*3a9fd824SRoger Pau Monné #define KEXEC_XEN_NO_PAGES 17 63*3a9fd824SRoger Pau Monné #endif 64*3a9fd824SRoger Pau Monné 65*3a9fd824SRoger Pau Monné /* 66*3a9fd824SRoger Pau Monné * Prototype for this hypercall is: 67*3a9fd824SRoger Pau Monné * int kexec_op(int cmd, void *args) 68*3a9fd824SRoger Pau Monné * @cmd == KEXEC_CMD_... 69*3a9fd824SRoger Pau Monné * KEXEC operation to perform 70*3a9fd824SRoger Pau Monné * @args == Operation-specific extra arguments (NULL if none). 71*3a9fd824SRoger Pau Monné */ 72*3a9fd824SRoger Pau Monné 73*3a9fd824SRoger Pau Monné /* 74*3a9fd824SRoger Pau Monné * Kexec supports two types of operation: 75*3a9fd824SRoger Pau Monné * - kexec into a regular kernel, very similar to a standard reboot 76*3a9fd824SRoger Pau Monné * - KEXEC_TYPE_DEFAULT is used to specify this type 77*3a9fd824SRoger Pau Monné * - kexec into a special "crash kernel", aka kexec-on-panic 78*3a9fd824SRoger Pau Monné * - KEXEC_TYPE_CRASH is used to specify this type 79*3a9fd824SRoger Pau Monné * - parts of our system may be broken at kexec-on-panic time 80*3a9fd824SRoger Pau Monné * - the code should be kept as simple and self-contained as possible 81*3a9fd824SRoger Pau Monné */ 82*3a9fd824SRoger Pau Monné 83*3a9fd824SRoger Pau Monné #define KEXEC_TYPE_DEFAULT 0 84*3a9fd824SRoger Pau Monné #define KEXEC_TYPE_CRASH 1 85*3a9fd824SRoger Pau Monné 86*3a9fd824SRoger Pau Monné 87*3a9fd824SRoger Pau Monné /* The kexec implementation for Xen allows the user to load two 88*3a9fd824SRoger Pau Monné * types of kernels, KEXEC_TYPE_DEFAULT and KEXEC_TYPE_CRASH. 89*3a9fd824SRoger Pau Monné * All data needed for a kexec reboot is kept in one xen_kexec_image_t 90*3a9fd824SRoger Pau Monné * per "instance". The data mainly consists of machine address lists to pages 91*3a9fd824SRoger Pau Monné * together with destination addresses. The data in xen_kexec_image_t 92*3a9fd824SRoger Pau Monné * is passed to the "code page" which is one page of code that performs 93*3a9fd824SRoger Pau Monné * the final relocations before jumping to the new kernel. 94*3a9fd824SRoger Pau Monné */ 95*3a9fd824SRoger Pau Monné 96*3a9fd824SRoger Pau Monné typedef struct xen_kexec_image { 97*3a9fd824SRoger Pau Monné #if defined(__i386__) || defined(__x86_64__) 98*3a9fd824SRoger Pau Monné unsigned long page_list[KEXEC_XEN_NO_PAGES]; 99*3a9fd824SRoger Pau Monné #endif 100*3a9fd824SRoger Pau Monné unsigned long indirection_page; 101*3a9fd824SRoger Pau Monné unsigned long start_address; 102*3a9fd824SRoger Pau Monné } xen_kexec_image_t; 103*3a9fd824SRoger Pau Monné 104*3a9fd824SRoger Pau Monné /* 105*3a9fd824SRoger Pau Monné * Perform kexec having previously loaded a kexec or kdump kernel 106*3a9fd824SRoger Pau Monné * as appropriate. 107*3a9fd824SRoger Pau Monné * type == KEXEC_TYPE_DEFAULT or KEXEC_TYPE_CRASH [in] 108*3a9fd824SRoger Pau Monné * 109*3a9fd824SRoger Pau Monné * Control is transferred to the image entry point with the host in 110*3a9fd824SRoger Pau Monné * the following state. 111*3a9fd824SRoger Pau Monné * 112*3a9fd824SRoger Pau Monné * - The image may be executed on any PCPU and all other PCPUs are 113*3a9fd824SRoger Pau Monné * stopped. 114*3a9fd824SRoger Pau Monné * 115*3a9fd824SRoger Pau Monné * - Local interrupts are disabled. 116*3a9fd824SRoger Pau Monné * 117*3a9fd824SRoger Pau Monné * - Register values are undefined. 118*3a9fd824SRoger Pau Monné * 119*3a9fd824SRoger Pau Monné * - The image segments have writeable 1:1 virtual to machine 120*3a9fd824SRoger Pau Monné * mappings. The location of any page tables is undefined and these 121*3a9fd824SRoger Pau Monné * page table frames are not be mapped. 122*3a9fd824SRoger Pau Monné */ 123*3a9fd824SRoger Pau Monné #define KEXEC_CMD_kexec 0 124*3a9fd824SRoger Pau Monné typedef struct xen_kexec_exec { 125*3a9fd824SRoger Pau Monné int type; 126*3a9fd824SRoger Pau Monné } xen_kexec_exec_t; 127*3a9fd824SRoger Pau Monné 128*3a9fd824SRoger Pau Monné /* 129*3a9fd824SRoger Pau Monné * Load/Unload kernel image for kexec or kdump. 130*3a9fd824SRoger Pau Monné * type == KEXEC_TYPE_DEFAULT or KEXEC_TYPE_CRASH [in] 131*3a9fd824SRoger Pau Monné * image == relocation information for kexec (ignored for unload) [in] 132*3a9fd824SRoger Pau Monné */ 133*3a9fd824SRoger Pau Monné #define KEXEC_CMD_kexec_load_v1 1 /* obsolete since 0x00040400 */ 134*3a9fd824SRoger Pau Monné #define KEXEC_CMD_kexec_unload_v1 2 /* obsolete since 0x00040400 */ 135*3a9fd824SRoger Pau Monné typedef struct xen_kexec_load_v1 { 136*3a9fd824SRoger Pau Monné int type; 137*3a9fd824SRoger Pau Monné xen_kexec_image_t image; 138*3a9fd824SRoger Pau Monné } xen_kexec_load_v1_t; 139*3a9fd824SRoger Pau Monné 140*3a9fd824SRoger Pau Monné #define KEXEC_RANGE_MA_CRASH 0 /* machine address and size of crash area */ 141*3a9fd824SRoger Pau Monné #define KEXEC_RANGE_MA_XEN 1 /* machine address and size of Xen itself */ 142*3a9fd824SRoger Pau Monné #define KEXEC_RANGE_MA_CPU 2 /* machine address and size of a CPU note */ 143*3a9fd824SRoger Pau Monné #define KEXEC_RANGE_MA_XENHEAP 3 /* machine address and size of xenheap 144*3a9fd824SRoger Pau Monné * Note that although this is adjacent 145*3a9fd824SRoger Pau Monné * to Xen it exists in a separate EFI 146*3a9fd824SRoger Pau Monné * region on ia64, and thus needs to be 147*3a9fd824SRoger Pau Monné * inserted into iomem_machine separately */ 148*3a9fd824SRoger Pau Monné #define KEXEC_RANGE_MA_BOOT_PARAM 4 /* Obsolete: machine address and size of 149*3a9fd824SRoger Pau Monné * the ia64_boot_param */ 150*3a9fd824SRoger Pau Monné #define KEXEC_RANGE_MA_EFI_MEMMAP 5 /* machine address and size of 151*3a9fd824SRoger Pau Monné * of the EFI Memory Map */ 152*3a9fd824SRoger Pau Monné #define KEXEC_RANGE_MA_VMCOREINFO 6 /* machine address and size of vmcoreinfo */ 153*3a9fd824SRoger Pau Monné 154*3a9fd824SRoger Pau Monné /* 155*3a9fd824SRoger Pau Monné * Find the address and size of certain memory areas 156*3a9fd824SRoger Pau Monné * range == KEXEC_RANGE_... [in] 157*3a9fd824SRoger Pau Monné * nr == physical CPU number (starting from 0) if KEXEC_RANGE_MA_CPU [in] 158*3a9fd824SRoger Pau Monné * size == number of bytes reserved in window [out] 159*3a9fd824SRoger Pau Monné * start == address of the first byte in the window [out] 160*3a9fd824SRoger Pau Monné */ 161*3a9fd824SRoger Pau Monné #define KEXEC_CMD_kexec_get_range 3 162*3a9fd824SRoger Pau Monné typedef struct xen_kexec_range { 163*3a9fd824SRoger Pau Monné int range; 164*3a9fd824SRoger Pau Monné int nr; 165*3a9fd824SRoger Pau Monné unsigned long size; 166*3a9fd824SRoger Pau Monné unsigned long start; 167*3a9fd824SRoger Pau Monné } xen_kexec_range_t; 168*3a9fd824SRoger Pau Monné 169*3a9fd824SRoger Pau Monné #if __XEN_INTERFACE_VERSION__ >= 0x00040400 170*3a9fd824SRoger Pau Monné /* 171*3a9fd824SRoger Pau Monné * A contiguous chunk of a kexec image and it's destination machine 172*3a9fd824SRoger Pau Monné * address. 173*3a9fd824SRoger Pau Monné */ 174*3a9fd824SRoger Pau Monné typedef struct xen_kexec_segment { 175*3a9fd824SRoger Pau Monné union { 176*3a9fd824SRoger Pau Monné XEN_GUEST_HANDLE(const_void) h; 177*3a9fd824SRoger Pau Monné uint64_t _pad; 178*3a9fd824SRoger Pau Monné } buf; 179*3a9fd824SRoger Pau Monné uint64_t buf_size; 180*3a9fd824SRoger Pau Monné uint64_t dest_maddr; 181*3a9fd824SRoger Pau Monné uint64_t dest_size; 182*3a9fd824SRoger Pau Monné } xen_kexec_segment_t; 183*3a9fd824SRoger Pau Monné DEFINE_XEN_GUEST_HANDLE(xen_kexec_segment_t); 184*3a9fd824SRoger Pau Monné 185*3a9fd824SRoger Pau Monné /* 186*3a9fd824SRoger Pau Monné * Load a kexec image into memory. 187*3a9fd824SRoger Pau Monné * 188*3a9fd824SRoger Pau Monné * For KEXEC_TYPE_DEFAULT images, the segments may be anywhere in RAM. 189*3a9fd824SRoger Pau Monné * The image is relocated prior to being executed. 190*3a9fd824SRoger Pau Monné * 191*3a9fd824SRoger Pau Monné * For KEXEC_TYPE_CRASH images, each segment of the image must reside 192*3a9fd824SRoger Pau Monné * in the memory region reserved for kexec (KEXEC_RANGE_MA_CRASH) and 193*3a9fd824SRoger Pau Monné * the entry point must be within the image. The caller is responsible 194*3a9fd824SRoger Pau Monné * for ensuring that multiple images do not overlap. 195*3a9fd824SRoger Pau Monné * 196*3a9fd824SRoger Pau Monné * All image segments will be loaded to their destination machine 197*3a9fd824SRoger Pau Monné * addresses prior to being executed. The trailing portion of any 198*3a9fd824SRoger Pau Monné * segments with a source buffer (from dest_maddr + buf_size to 199*3a9fd824SRoger Pau Monné * dest_maddr + dest_size) will be zeroed. 200*3a9fd824SRoger Pau Monné * 201*3a9fd824SRoger Pau Monné * Segments with no source buffer will be accessible to the image when 202*3a9fd824SRoger Pau Monné * it is executed. 203*3a9fd824SRoger Pau Monné */ 204*3a9fd824SRoger Pau Monné 205*3a9fd824SRoger Pau Monné #define KEXEC_CMD_kexec_load 4 206*3a9fd824SRoger Pau Monné typedef struct xen_kexec_load { 207*3a9fd824SRoger Pau Monné uint8_t type; /* One of KEXEC_TYPE_* */ 208*3a9fd824SRoger Pau Monné uint8_t _pad; 209*3a9fd824SRoger Pau Monné uint16_t arch; /* ELF machine type (EM_*). */ 210*3a9fd824SRoger Pau Monné uint32_t nr_segments; 211*3a9fd824SRoger Pau Monné union { 212*3a9fd824SRoger Pau Monné XEN_GUEST_HANDLE(xen_kexec_segment_t) h; 213*3a9fd824SRoger Pau Monné uint64_t _pad; 214*3a9fd824SRoger Pau Monné } segments; 215*3a9fd824SRoger Pau Monné uint64_t entry_maddr; /* image entry point machine address. */ 216*3a9fd824SRoger Pau Monné } xen_kexec_load_t; 217*3a9fd824SRoger Pau Monné DEFINE_XEN_GUEST_HANDLE(xen_kexec_load_t); 218*3a9fd824SRoger Pau Monné 219*3a9fd824SRoger Pau Monné /* 220*3a9fd824SRoger Pau Monné * Unload a kexec image. 221*3a9fd824SRoger Pau Monné * 222*3a9fd824SRoger Pau Monné * Type must be one of KEXEC_TYPE_DEFAULT or KEXEC_TYPE_CRASH. 223*3a9fd824SRoger Pau Monné */ 224*3a9fd824SRoger Pau Monné #define KEXEC_CMD_kexec_unload 5 225*3a9fd824SRoger Pau Monné typedef struct xen_kexec_unload { 226*3a9fd824SRoger Pau Monné uint8_t type; 227*3a9fd824SRoger Pau Monné } xen_kexec_unload_t; 228*3a9fd824SRoger Pau Monné DEFINE_XEN_GUEST_HANDLE(xen_kexec_unload_t); 229*3a9fd824SRoger Pau Monné 230*3a9fd824SRoger Pau Monné /* 231*3a9fd824SRoger Pau Monné * Figure out whether we have an image loaded. A return value of 232*3a9fd824SRoger Pau Monné * zero indicates no image loaded. A return value of one 233*3a9fd824SRoger Pau Monné * indicates an image is loaded. A negative return value 234*3a9fd824SRoger Pau Monné * indicates an error. 235*3a9fd824SRoger Pau Monné * 236*3a9fd824SRoger Pau Monné * Type must be one of KEXEC_TYPE_DEFAULT or KEXEC_TYPE_CRASH. 237*3a9fd824SRoger Pau Monné */ 238*3a9fd824SRoger Pau Monné #define KEXEC_CMD_kexec_status 6 239*3a9fd824SRoger Pau Monné typedef struct xen_kexec_status { 240*3a9fd824SRoger Pau Monné uint8_t type; 241*3a9fd824SRoger Pau Monné } xen_kexec_status_t; 242*3a9fd824SRoger Pau Monné DEFINE_XEN_GUEST_HANDLE(xen_kexec_status_t); 243*3a9fd824SRoger Pau Monné 244*3a9fd824SRoger Pau Monné #else /* __XEN_INTERFACE_VERSION__ < 0x00040400 */ 245*3a9fd824SRoger Pau Monné 246*3a9fd824SRoger Pau Monné #define KEXEC_CMD_kexec_load KEXEC_CMD_kexec_load_v1 247*3a9fd824SRoger Pau Monné #define KEXEC_CMD_kexec_unload KEXEC_CMD_kexec_unload_v1 248*3a9fd824SRoger Pau Monné #define xen_kexec_load xen_kexec_load_v1 249*3a9fd824SRoger Pau Monné #define xen_kexec_load_t xen_kexec_load_v1_t 250*3a9fd824SRoger Pau Monné 251*3a9fd824SRoger Pau Monné #endif 252*3a9fd824SRoger Pau Monné 253*3a9fd824SRoger Pau Monné #endif /* _XEN_PUBLIC_KEXEC_H */ 254*3a9fd824SRoger Pau Monné 255*3a9fd824SRoger Pau Monné /* 256*3a9fd824SRoger Pau Monné * Local variables: 257*3a9fd824SRoger Pau Monné * mode: C 258*3a9fd824SRoger Pau Monné * c-file-style: "BSD" 259*3a9fd824SRoger Pau Monné * c-basic-offset: 4 260*3a9fd824SRoger Pau Monné * tab-width: 4 261*3a9fd824SRoger Pau Monné * indent-tabs-mode: nil 262*3a9fd824SRoger Pau Monné * End: 263*3a9fd824SRoger Pau Monné */ 264