Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 312973 Details for
Bug 457199
RHEL5.3 xen: include support for booting Fedora 10 DomU (i.e. bzImage support)
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
xen-3.1.0-bzimage.patch
xen-3.1.0-bzimage.patch (text/plain), 6.08 KB, created by
Mark McLoughlin
on 2008-07-30 08:18:14 UTC
(
hide
)
Description:
xen-3.1.0-bzimage.patch
Filename:
MIME Type:
Creator:
Mark McLoughlin
Created:
2008-07-30 08:18:14 UTC
Size:
6.08 KB
patch
obsolete
>x86: Support loading Linux bzImage v2.08 and up. > >The latest -mm kernel (2.6.25-rc3-mm1) contains v2.08 of the Linux >bzImage format which embeds an ELF file in place of the raw payload >allowing it to be extracted and used by the Xen domain builder. > >It is expected that this functionality will be put forward for 2.6.26. > >Signed-off-by : Ian Campbell <ijc@hellion.org.uk> > >diff -up /dev/null xen-3.1.2-src/tools/libxc/xc_dom_bzimageloader.c >--- /dev/null 2008-07-30 07:06:19.721092644 +0100 >+++ xen-3.1.2-src/tools/libxc/xc_dom_bzimageloader.c 2008-07-30 08:51:24.000000000 +0100 >@@ -0,0 +1,159 @@ >+/* >+ * Xen domain builder -- bzImage bits >+ * >+ * Parse and load bzImage kernel images. >+ * >+ * This relies on version 2.08 of the boot protocol, which contains an >+ * ELF file embedded in the bzImage. The loader extracts this ELF >+ * image and passes it off to the standard ELF loader. >+ * >+ * This code is licenced under the GPL. >+ * written 2006 by Gerd Hoffmann <kraxel@suse.de>. >+ * written 2007 by Jeremy Fitzhardinge <jeremy@xensource.com> >+ * written 2008 by Ian Campbell <ijc@hellion.org.uk> >+ * >+ */ >+#include <stdio.h> >+#include <stdlib.h> >+#include <inttypes.h> >+ >+#include "xg_private.h" >+#include "xc_dom.h" >+ >+struct setup_header { >+ uint8_t _pad0[0x1f1]; /* skip uninteresting stuff */ >+ uint8_t setup_sects; >+ uint16_t root_flags; >+ uint32_t syssize; >+ uint16_t ram_size; >+ uint16_t vid_mode; >+ uint16_t root_dev; >+ uint16_t boot_flag; >+ uint16_t jump; >+ uint32_t header; >+#define HDR_MAGIC "HdrS" >+#define HDR_MAGIC_SZ 4 >+ uint16_t version; >+#define VERSION(h,l) (((h)<<8) | (l)) >+ uint32_t realmode_swtch; >+ uint16_t start_sys; >+ uint16_t kernel_version; >+ uint8_t type_of_loader; >+ uint8_t loadflags; >+ uint16_t setup_move_size; >+ uint32_t code32_start; >+ uint32_t ramdisk_image; >+ uint32_t ramdisk_size; >+ uint32_t bootsect_kludge; >+ uint16_t heap_end_ptr; >+ uint16_t _pad1; >+ uint32_t cmd_line_ptr; >+ uint32_t initrd_addr_max; >+ uint32_t kernel_alignment; >+ uint8_t relocatable_kernel; >+ uint8_t _pad2[3]; >+ uint32_t cmdline_size; >+ uint32_t hardware_subarch; >+ uint64_t hardware_subarch_data; >+ uint32_t payload_offset; >+ uint32_t payload_length; >+} __attribute__((packed)); >+ >+extern struct xc_dom_loader elf_loader; >+ >+static unsigned int payload_offset(struct setup_header *hdr) >+{ >+ unsigned int off; >+ >+ off = (hdr->setup_sects + 1) * 512; >+ off += hdr->payload_offset; >+ return off; >+} >+ >+static int check_bzimage_kernel(struct xc_dom_image *dom, int verbose) >+{ >+ struct setup_header *hdr; >+ >+ if ( dom->kernel_blob == NULL ) >+ { >+ if ( verbose ) >+ xc_dom_panic(XC_INTERNAL_ERROR, "%s: no kernel image loaded\n", >+ __FUNCTION__); >+ return -EINVAL; >+ } >+ if ( dom->kernel_size < sizeof(struct setup_header) ) >+ { >+ if ( verbose ) >+ xc_dom_panic(XC_INTERNAL_ERROR, "%s: kernel image too small\n", >+ __FUNCTION__); >+ return -EINVAL; >+ } >+ >+ hdr = dom->kernel_blob; >+ >+ if ( memcmp(&hdr->header, HDR_MAGIC, HDR_MAGIC_SZ) != 0 ) >+ { >+ if ( verbose ) >+ xc_dom_panic(XC_INVALID_KERNEL, "%s: kernel is not a bzImage\n", >+ __FUNCTION__); >+ return -EINVAL; >+ } >+ >+ if ( hdr->version < VERSION(2,8) ) >+ { >+ if ( verbose ) >+ xc_dom_panic(XC_INVALID_KERNEL, "%s: boot protocol too old (%04x)\n", >+ __FUNCTION__, hdr->version); >+ return -EINVAL; >+ } >+ >+ dom->kernel_blob = dom->kernel_blob + payload_offset(hdr); >+ dom->kernel_size = hdr->payload_length; >+ >+ if ( xc_dom_try_gunzip(dom, &dom->kernel_blob, &dom->kernel_size) == -1 ) >+ { >+ if ( verbose ) >+ xc_dom_panic(XC_INVALID_KERNEL, "%s: unable to decompress kernel\n", >+ __FUNCTION__); >+ return -EINVAL; >+ } >+ >+ return elf_loader.probe(dom); >+} >+ >+static int xc_dom_probe_bzimage_kernel(struct xc_dom_image *dom) >+{ >+ return check_bzimage_kernel(dom, 0); >+} >+ >+static int xc_dom_parse_bzimage_kernel(struct xc_dom_image *dom) >+{ >+ return elf_loader.parser(dom); >+} >+ >+static int xc_dom_load_bzimage_kernel(struct xc_dom_image *dom) >+{ >+ return elf_loader.loader(dom); >+} >+ >+static struct xc_dom_loader bzimage_loader = { >+ .name = "Linux bzImage", >+ .probe = xc_dom_probe_bzimage_kernel, >+ .parser = xc_dom_parse_bzimage_kernel, >+ .loader = xc_dom_load_bzimage_kernel, >+}; >+ >+static void __init register_loader(void) >+{ >+ xc_dom_register_loader(&bzimage_loader); >+} >+ >+/* >+ * Local variables: >+ * mode: C >+ * c-set-style: "BSD" >+ * c-basic-offset: 4 >+ * tab-width: 4 >+ * indent-tabs-mode: nil >+ * End: >+ */ >diff -up xen-3.1.2-src/tools/libxc/Makefile.bzImage xen-3.1.2-src/tools/libxc/Makefile >--- xen-3.1.2-src/tools/libxc/Makefile.bzImage 2007-11-14 23:35:27.000000000 +0000 >+++ xen-3.1.2-src/tools/libxc/Makefile 2008-07-30 08:51:24.000000000 +0100 >@@ -45,10 +45,11 @@ $(LIBELF_SRCS) libelf-private.h: > GUEST_SRCS-y += $(LIBELF_SRCS) > > # new domain builder >-GUEST_SRCS-y += xc_dom_core.c xc_dom_boot.c >-GUEST_SRCS-y += xc_dom_elfloader.c >-GUEST_SRCS-y += xc_dom_binloader.c >-GUEST_SRCS-y += xc_dom_compat_linux.c >+GUEST_SRCS-y += xc_dom_core.c xc_dom_boot.c >+GUEST_SRCS-y += xc_dom_elfloader.c >+GUEST_SRCS-$(CONFIG_X86) += xc_dom_bzimageloader.c >+GUEST_SRCS-y += xc_dom_binloader.c >+GUEST_SRCS-y += xc_dom_compat_linux.c > > GUEST_SRCS-$(CONFIG_X86) += xc_dom_x86.c > GUEST_SRCS-$(CONFIG_IA64) += xc_dom_ia64.c >diff -up xen-3.1.2-src/tools/libxc/xc_dom_elfloader.c.bzImage xen-3.1.2-src/tools/libxc/xc_dom_elfloader.c >--- xen-3.1.2-src/tools/libxc/xc_dom_elfloader.c.bzImage 2007-11-14 23:35:27.000000000 +0000 >+++ xen-3.1.2-src/tools/libxc/xc_dom_elfloader.c 2008-07-30 08:51:24.000000000 +0100 >@@ -281,7 +281,7 @@ static int xc_dom_load_elf_kernel(struct > > /* ------------------------------------------------------------------------ */ > >-static struct xc_dom_loader elf_loader = { >+struct xc_dom_loader elf_loader = { > .name = "ELF-generic", > .probe = xc_dom_probe_elf_kernel, > .parser = xc_dom_parse_elf_kernel,
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 457199
: 312973