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