1 /* Dynamic linker/loader of ACPI tables
3 * Copyright (C) 2013 Red Hat Inc
5 * Author: Michael S. Tsirkin <mst@redhat.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, see <http://www.gnu.org/licenses/>.
21 #include "qemu/osdep.h"
22 #include "qemu-common.h"
23 #include "hw/acpi/bios-linker-loader.h"
24 #include "hw/nvram/fw_cfg.h"
26 #include "qemu/bswap.h"
29 * Linker/loader is a paravirtualized interface that passes commands to guest.
30 * The commands can be used to request guest to
31 * - allocate memory chunks and initialize them from QEMU FW CFG files
32 * - link allocated chunks by storing pointer to one chunk into another
33 * - calculate ACPI checksum of part of the chunk and store into same chunk
35 #define BIOS_LINKER_LOADER_FILESZ FW_CFG_MAX_FILE_PATH
37 struct BiosLinkerLoaderEntry
{
41 * COMMAND_ALLOCATE - allocate a table from @alloc.file
42 * subject to @alloc.align alignment (must be power of 2)
43 * and @alloc.zone (can be HIGH or FSEG) requirements.
45 * Must appear exactly once for each file, and before
46 * this file is referenced by any other command.
49 char file
[BIOS_LINKER_LOADER_FILESZ
];
55 * COMMAND_ADD_POINTER - patch the table (originating from
56 * @dest_file) at @pointer.offset, by adding a pointer to the table
57 * originating from @src_file. 1,2,4 or 8 byte unsigned
58 * addition is used depending on @pointer.size.
61 char dest_file
[BIOS_LINKER_LOADER_FILESZ
];
62 char src_file
[BIOS_LINKER_LOADER_FILESZ
];
68 * COMMAND_ADD_CHECKSUM - calculate checksum of the range specified by
69 * @cksum_start and @cksum_length fields,
70 * and then add the value at @cksum.offset.
71 * Checksum simply sums -X for each byte X in the range
75 char file
[BIOS_LINKER_LOADER_FILESZ
];
82 * COMMAND_WRITE_POINTER - write the fw_cfg file (originating from
83 * @dest_file) at @wr_pointer.offset, by adding a pointer to
84 * @src_offset within the table originating from @src_file.
85 * 1,2,4 or 8 byte unsigned addition is used depending on
89 char dest_file
[BIOS_LINKER_LOADER_FILESZ
];
90 char src_file
[BIOS_LINKER_LOADER_FILESZ
];
100 typedef struct BiosLinkerLoaderEntry BiosLinkerLoaderEntry
;
103 BIOS_LINKER_LOADER_COMMAND_ALLOCATE
= 0x1,
104 BIOS_LINKER_LOADER_COMMAND_ADD_POINTER
= 0x2,
105 BIOS_LINKER_LOADER_COMMAND_ADD_CHECKSUM
= 0x3,
106 BIOS_LINKER_LOADER_COMMAND_WRITE_POINTER
= 0x4,
110 BIOS_LINKER_LOADER_ALLOC_ZONE_HIGH
= 0x1,
111 BIOS_LINKER_LOADER_ALLOC_ZONE_FSEG
= 0x2,
115 * BiosLinkerFileEntry:
117 * An internal type used for book-keeping file entries
119 typedef struct BiosLinkerFileEntry
{
120 char *name
; /* file name */
121 GArray
*blob
; /* data accosiated with @name */
122 } BiosLinkerFileEntry
;
125 * bios_linker_loader_init: allocate a new linker object instance.
127 * After initialization, linker commands can be added, and will
128 * be stored in the linker.cmd_blob array.
130 BIOSLinker
*bios_linker_loader_init(void)
132 BIOSLinker
*linker
= g_new(BIOSLinker
, 1);
134 linker
->cmd_blob
= g_array_new(false, true /* clear */, 1);
135 linker
->file_list
= g_array_new(false, true /* clear */,
136 sizeof(BiosLinkerFileEntry
));
140 /* Free linker wrapper */
141 void bios_linker_loader_cleanup(BIOSLinker
*linker
)
144 BiosLinkerFileEntry
*entry
;
146 g_array_free(linker
->cmd_blob
, true);
148 for (i
= 0; i
< linker
->file_list
->len
; i
++) {
149 entry
= &g_array_index(linker
->file_list
, BiosLinkerFileEntry
, i
);
152 g_array_free(linker
->file_list
, true);
156 static const BiosLinkerFileEntry
*
157 bios_linker_find_file(const BIOSLinker
*linker
, const char *name
)
160 BiosLinkerFileEntry
*entry
;
162 for (i
= 0; i
< linker
->file_list
->len
; i
++) {
163 entry
= &g_array_index(linker
->file_list
, BiosLinkerFileEntry
, i
);
164 if (!strcmp(entry
->name
, name
)) {
172 * board code must realize fw_cfg first, as a fixed device, before
173 * another device realize function call bios_linker_loader_can_write_pointer()
175 bool bios_linker_loader_can_write_pointer(void)
177 FWCfgState
*fw_cfg
= fw_cfg_find();
178 return fw_cfg
&& fw_cfg_dma_enabled(fw_cfg
);
182 * bios_linker_loader_alloc: ask guest to load file into guest memory.
184 * @linker: linker object instance
185 * @file_name: name of the file blob to be loaded
186 * @file_blob: pointer to blob corresponding to @file_name
187 * @alloc_align: required minimal alignment in bytes. Must be a power of 2.
188 * @alloc_fseg: request allocation in FSEG zone (useful for the RSDP ACPI table)
190 * Note: this command must precede any other linker command using this file.
192 void bios_linker_loader_alloc(BIOSLinker
*linker
,
193 const char *file_name
,
195 uint32_t alloc_align
,
198 BiosLinkerLoaderEntry entry
;
199 BiosLinkerFileEntry file
= { g_strdup(file_name
), file_blob
};
201 assert(!(alloc_align
& (alloc_align
- 1)));
203 assert(!bios_linker_find_file(linker
, file_name
));
204 g_array_append_val(linker
->file_list
, file
);
206 memset(&entry
, 0, sizeof entry
);
207 strncpy(entry
.alloc
.file
, file_name
, sizeof entry
.alloc
.file
- 1);
208 entry
.command
= cpu_to_le32(BIOS_LINKER_LOADER_COMMAND_ALLOCATE
);
209 entry
.alloc
.align
= cpu_to_le32(alloc_align
);
210 entry
.alloc
.zone
= alloc_fseg
? BIOS_LINKER_LOADER_ALLOC_ZONE_FSEG
:
211 BIOS_LINKER_LOADER_ALLOC_ZONE_HIGH
;
213 /* Alloc entries must come first, so prepend them */
214 g_array_prepend_vals(linker
->cmd_blob
, &entry
, sizeof entry
);
218 * bios_linker_loader_add_checksum: ask guest to add checksum of ACPI
219 * table in the specified file at the specified offset.
221 * Checksum calculation simply sums -X for each byte X in the range
222 * using 8-bit math (i.e. ACPI checksum).
224 * @linker: linker object instance
225 * @file: file that includes the checksum to be calculated
226 * and the data to be checksummed
227 * @start_offset, @size: range of data in the file to checksum,
228 * relative to the start of file blob
229 * @checksum_offset: location of the checksum to be patched within file blob,
230 * relative to the start of file blob
232 void bios_linker_loader_add_checksum(BIOSLinker
*linker
, const char *file_name
,
233 unsigned start_offset
, unsigned size
,
234 unsigned checksum_offset
)
236 BiosLinkerLoaderEntry entry
;
237 const BiosLinkerFileEntry
*file
= bios_linker_find_file(linker
, file_name
);
240 assert(start_offset
< file
->blob
->len
);
241 assert(start_offset
+ size
<= file
->blob
->len
);
242 assert(checksum_offset
>= start_offset
);
243 assert(checksum_offset
+ 1 <= start_offset
+ size
);
245 *(file
->blob
->data
+ checksum_offset
) = 0;
246 memset(&entry
, 0, sizeof entry
);
247 strncpy(entry
.cksum
.file
, file_name
, sizeof entry
.cksum
.file
- 1);
248 entry
.command
= cpu_to_le32(BIOS_LINKER_LOADER_COMMAND_ADD_CHECKSUM
);
249 entry
.cksum
.offset
= cpu_to_le32(checksum_offset
);
250 entry
.cksum
.start
= cpu_to_le32(start_offset
);
251 entry
.cksum
.length
= cpu_to_le32(size
);
253 g_array_append_vals(linker
->cmd_blob
, &entry
, sizeof entry
);
257 * bios_linker_loader_add_pointer: ask guest to patch address in
258 * destination file with a pointer to source file
260 * @linker: linker object instance
261 * @dest_file: destination file that must be changed
262 * @dst_patched_offset: location within destination file blob to be patched
263 * with the pointer to @src_file+@src_offset (i.e. source
264 * blob allocated in guest memory + @src_offset), in bytes
265 * @dst_patched_offset_size: size of the pointer to be patched
266 * at @dst_patched_offset in @dest_file blob, in bytes
267 * @src_file: source file who's address must be taken
268 * @src_offset: location within source file blob to which
269 * @dest_file+@dst_patched_offset will point to after
270 * firmware's executed ADD_POINTER command
272 void bios_linker_loader_add_pointer(BIOSLinker
*linker
,
273 const char *dest_file
,
274 uint32_t dst_patched_offset
,
275 uint8_t dst_patched_size
,
276 const char *src_file
,
279 uint64_t le_src_offset
;
280 BiosLinkerLoaderEntry entry
;
281 const BiosLinkerFileEntry
*dst_file
=
282 bios_linker_find_file(linker
, dest_file
);
283 const BiosLinkerFileEntry
*source_file
=
284 bios_linker_find_file(linker
, src_file
);
286 assert(dst_patched_offset
< dst_file
->blob
->len
);
287 assert(dst_patched_offset
+ dst_patched_size
<= dst_file
->blob
->len
);
288 assert(src_offset
< source_file
->blob
->len
);
290 memset(&entry
, 0, sizeof entry
);
291 strncpy(entry
.pointer
.dest_file
, dest_file
,
292 sizeof entry
.pointer
.dest_file
- 1);
293 strncpy(entry
.pointer
.src_file
, src_file
,
294 sizeof entry
.pointer
.src_file
- 1);
295 entry
.command
= cpu_to_le32(BIOS_LINKER_LOADER_COMMAND_ADD_POINTER
);
296 entry
.pointer
.offset
= cpu_to_le32(dst_patched_offset
);
297 entry
.pointer
.size
= dst_patched_size
;
298 assert(dst_patched_size
== 1 || dst_patched_size
== 2 ||
299 dst_patched_size
== 4 || dst_patched_size
== 8);
301 le_src_offset
= cpu_to_le64(src_offset
);
302 memcpy(dst_file
->blob
->data
+ dst_patched_offset
,
303 &le_src_offset
, dst_patched_size
);
305 g_array_append_vals(linker
->cmd_blob
, &entry
, sizeof entry
);
309 * bios_linker_loader_write_pointer: ask guest to write a pointer to the
310 * source file into the destination file, and write it back to QEMU via
313 * @linker: linker object instance
314 * @dest_file: destination file that must be written
315 * @dst_patched_offset: location within destination file blob to be patched
316 * with the pointer to @src_file, in bytes
317 * @dst_patched_offset_size: size of the pointer to be patched
318 * at @dst_patched_offset in @dest_file blob, in bytes
319 * @src_file: source file who's address must be taken
320 * @src_offset: location within source file blob to which
321 * @dest_file+@dst_patched_offset will point to after
322 * firmware's executed WRITE_POINTER command
324 void bios_linker_loader_write_pointer(BIOSLinker
*linker
,
325 const char *dest_file
,
326 uint32_t dst_patched_offset
,
327 uint8_t dst_patched_size
,
328 const char *src_file
,
331 BiosLinkerLoaderEntry entry
;
332 const BiosLinkerFileEntry
*source_file
=
333 bios_linker_find_file(linker
, src_file
);
336 assert(src_offset
< source_file
->blob
->len
);
337 memset(&entry
, 0, sizeof entry
);
338 strncpy(entry
.wr_pointer
.dest_file
, dest_file
,
339 sizeof entry
.wr_pointer
.dest_file
- 1);
340 strncpy(entry
.wr_pointer
.src_file
, src_file
,
341 sizeof entry
.wr_pointer
.src_file
- 1);
342 entry
.command
= cpu_to_le32(BIOS_LINKER_LOADER_COMMAND_WRITE_POINTER
);
343 entry
.wr_pointer
.dst_offset
= cpu_to_le32(dst_patched_offset
);
344 entry
.wr_pointer
.src_offset
= cpu_to_le32(src_offset
);
345 entry
.wr_pointer
.size
= dst_patched_size
;
346 assert(dst_patched_size
== 1 || dst_patched_size
== 2 ||
347 dst_patched_size
== 4 || dst_patched_size
== 8);
349 g_array_append_vals(linker
->cmd_blob
, &entry
, sizeof entry
);