On Jan 2, 2006, at 12:02 PM, Marco Gerards wrote:

Hollis Blanchard <[EMAIL PROTECTED]> writes:

+void EXPORT_FUNC (grub_jump) (unsigned long text, unsigned long
stack,
+                             unsigned long arg1, unsigned long arg2);

Shouldn't a pointer be used here?

Used where?

For grub_jump's arguments.  It jumps to some address, right?

Yes, but I don't believe using pointers would be appropriate here. The addresses passed in are addresses, so would need to be cast into pointers.

Here is the updated patch. I believe I've resolved all your other comments.

-Hollis
Index: ChangeLog
===================================================================
RCS file: /cvsroot/grub/grub2/ChangeLog,v
retrieving revision 1.217
diff -u -p -r1.217 ChangeLog
--- ChangeLog   25 Dec 2005 19:40:31 -0000      1.217
+++ ChangeLog   3 Jan 2006 00:35:01 -0000
@@ -1,3 +1,22 @@
+2006-01-02  Hollis Blanchard  <[EMAIL PROTECTED]>
+
+       * conf/powerpc-ieee1275.rmk (grubof_HEADERS): Add cache.h.
+       (grubof_SOURCES): Add kern/powerpc/misc.S.
+       (pkgdata_MODULES): Add _macosx.mod and macosx.mod.
+       (_macosx_mod_SOURCES): New variable.
+       (_macosx_mod_CFLAGS): Likewise.
+       (macosx_mod_SOURCES): Likewise.
+       (macosx_mod_CFLAGS): Likewise.
+       * include/grub/misc.h (grub_memstr): New prototype.
+       * include/grub/powerpc/ieee1275/kernel.h (grub_jump): Likewise.
+       * include/grub/powerpc/ieee1275/loader.h (grub_rescue_cmd_macosx):
+       Likewise.
+       * kern/misc.c (grub_memstr): New function.
+       * include/grub/xcoff.h: New file.
+       * kern/powerpc/misc.S: Likewise.
+       * loader/powerpc/ieee1275/macosx.c: Likewise.
+       * loader/powerpc/ieee1275/macosx_normal.c: Likewise.
+
 2005-12-25  Yoshinori K. Okuji  <[EMAIL PROTECTED]>
 
        * include/grub/i386/pc/boot.h (GRUB_BOOT_MACHINE_DRP_ADDR):
Index: conf/powerpc-ieee1275.rmk
===================================================================
RCS file: /cvsroot/grub/grub2/conf/powerpc-ieee1275.rmk,v
retrieving revision 1.52
diff -u -p -r1.52 powerpc-ieee1275.rmk
--- conf/powerpc-ieee1275.rmk   25 Dec 2005 15:59:50 -0000      1.52
+++ conf/powerpc-ieee1275.rmk   3 Jan 2006 00:35:02 -0000
@@ -9,7 +9,7 @@ COMMON_CFLAGS = -ffreestanding -msoft-fl
 MOSTLYCLEANFILES += grubof_symlist.c kernel_syms.lst
 DEFSYMFILES += kernel_syms.lst
 
-grubof_HEADERS = arg.h boot.h device.h disk.h dl.h elf.h env.h err.h \
+grubof_HEADERS = arg.h boot.h cache.h device.h disk.h dl.h elf.h env.h err.h \
        file.h fs.h kernel.h misc.h mm.h net.h parser.h rescue.h symbol.h \
        term.h types.h powerpc/libgcc.h loader.h \
        partition.h pc_partition.h ieee1275/ieee1275.h machine/time.h \
@@ -65,7 +65,7 @@ grubof_SOURCES = kern/powerpc/ieee1275/c
        kern/powerpc/ieee1275/init.c term/ieee1275/ofconsole.c          \
        kern/powerpc/ieee1275/openfw.c disk/ieee1275/ofdisk.c           \
        kern/parser.c kern/partition.c kern/env.c kern/powerpc/dl.c     \
-       grubof_symlist.c kern/powerpc/cache.S
+       grubof_symlist.c kern/powerpc/cache.S kern/powerpc/misc.S
 grubof_HEADERS = grub/powerpc/ieee1275/ieee1275.h
 grubof_CFLAGS = $(COMMON_CFLAGS)
 grubof_ASFLAGS = $(COMMON_ASFLAGS)
@@ -84,6 +84,8 @@ grub_install_SOURCES = util/powerpc/ieee
 pkgdata_MODULES = halt.mod \
        _linux.mod \
        linux.mod \
+       _macosx.mod \
+       macosx.mod \
        normal.mod \
        reboot.mod \
        suspend.mod
@@ -117,4 +119,12 @@ reboot_mod_CFLAGS = $(COMMON_CFLAGS)
 halt_mod_SOURCES = commands/ieee1275/halt.c
 halt_mod_CFLAGS = $(COMMON_CFLAGS)
 
+# For _macosx.mod.
+_macosx_mod_SOURCES = loader/powerpc/ieee1275/macosx.c
+_macosx_mod_CFLAGS = $(COMMON_CFLAGS)
+
+# For macosx.mod.
+macosx_mod_SOURCES = loader/powerpc/ieee1275/macosx_normal.c
+macosx_mod_CFLAGS = $(COMMON_CFLAGS)
+
 include $(srcdir)/conf/common.mk
Index: include/grub/misc.h
===================================================================
RCS file: /cvsroot/grub/grub2/include/grub/misc.h,v
retrieving revision 1.17
diff -u -p -r1.17 misc.h
--- include/grub/misc.h 24 Oct 2005 10:23:46 -0000      1.17
+++ include/grub/misc.h 3 Jan 2006 00:35:02 -0000
@@ -1,7 +1,7 @@
 /* misc.h - prototypes for misc functions */
 /*
  *  GRUB  --  GRand Unified Bootloader
- *  Copyright (C) 2002,2003,2005  Free Software Foundation, Inc.
+ *  Copyright (C) 2002,2003,2005,2006  Free Software Foundation, Inc.
  *
  *  GRUB is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -75,5 +75,6 @@ grub_uint8_t *EXPORT_FUNC(grub_utf16_to_
 grub_ssize_t EXPORT_FUNC(grub_utf8_to_ucs4) (grub_uint32_t *dest,
                                             const grub_uint8_t *src,
                                             grub_size_t size);
+void *EXPORT_FUNC(grub_memstr) (void *haystack, int len, char *needle);
 
 #endif /* ! GRUB_MISC_HEADER */
Index: include/grub/xcoff.h
===================================================================
RCS file: include/grub/xcoff.h
diff -N include/grub/xcoff.h
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ include/grub/xcoff.h        3 Jan 2006 00:35:02 -0000
@@ -0,0 +1,90 @@
+/*
+ *  GRUB  --  GRand Unified Bootloader
+ *  Copyright (C) 2006  Free Software Foundation, Inc.
+ *
+ *  GRUB is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with GRUB; if not, write to the Free Software
+ *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+/* See http://www16.boulder.ibm.com/pseries/en_US/files/aixfiles/XCOFF.htm */
+
+#ifndef GRUB_XCOFF_HEADER
+#define GRUB_XCOFF_HEADER      1
+
+#include <grub/types.h>
+
+struct grub_xcoff_func_desc
+{
+  grub_uint32_t address;
+  grub_uint32_t toc;
+};
+
+struct grub_xcoff_filehdr
+{
+  grub_uint16_t f_magic;
+  grub_uint16_t f_nscns;
+  grub_uint32_t f_timdat;
+  grub_uint32_t f_symptr;
+  grub_uint32_t f_nsyms;
+  grub_uint16_t f_opthdr;
+  grub_uint16_t f_flags;
+};
+
+#define GRUB_XCOFF32_MAGIC 0x01df
+
+struct grub_xcoff_auxhdr
+{
+  grub_uint16_t o_mflag;
+  grub_uint16_t o_vstamp;
+  grub_uint32_t o_tsize;
+  grub_uint32_t o_dsize;
+  grub_uint32_t o_bsize;
+  grub_uint32_t o_entry;
+  grub_uint32_t o_text_start;
+  grub_uint32_t o_data_start;
+  grub_uint32_t o_toc;
+  grub_uint16_t o_snentry;
+  grub_uint16_t o_sntext;
+  grub_uint16_t o_sndata;
+  grub_uint16_t o_sntoc;
+  grub_uint16_t o_snloader;
+  grub_uint16_t o_snbss;
+  grub_uint16_t o_algntext;
+  grub_uint16_t o_algndata;
+  grub_uint16_t o_modtype;
+  grub_uint8_t o_cpuflag;
+  grub_uint8_t o_cputype;
+  grub_uint32_t o_maxstack;
+  grub_uint32_t o_maxdata;
+  grub_uint32_t o_debugger;
+  char o_resv2[8];
+};
+
+#define GRUB_XCOFF_MFLAGS_PAGEALIGNED 0x010b
+
+struct grub_xcoff_scnhdr
+{
+  char s_name[8];
+  grub_uint32_t s_paddr;
+  grub_uint32_t s_vaddr;
+  grub_uint32_t s_size;
+  grub_uint32_t s_scnptr;
+  grub_uint32_t s_relptr;
+  grub_uint32_t s_lnnoptr;
+  grub_uint16_t s_nreloc;
+  grub_uint16_t s_nlnno;
+  grub_uint16_t s_flags;
+};
+
+#endif
Index: include/grub/powerpc/ieee1275/kernel.h
===================================================================
RCS file: /cvsroot/grub/grub2/include/grub/powerpc/ieee1275/kernel.h,v
retrieving revision 1.3
diff -u -p -r1.3 kernel.h
--- include/grub/powerpc/ieee1275/kernel.h      3 Aug 2005 22:53:50 -0000       
1.3
+++ include/grub/powerpc/ieee1275/kernel.h      3 Jan 2006 00:35:02 -0000
@@ -1,6 +1,6 @@
 /*
  *  GRUB  --  GRand Unified Bootloader
- *  Copyright (C) 2005  Free Software Foundation, Inc.
+ *  Copyright (C) 2005,2006  Free Software Foundation, Inc.
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -26,6 +26,9 @@ void EXPORT_FUNC (abort) (void);
 void EXPORT_FUNC (grub_reboot) (void);
 void EXPORT_FUNC (grub_halt) (void);
 
+void EXPORT_FUNC (grub_jump) (unsigned long text, unsigned long stack,
+                             unsigned long arg1, unsigned long arg2);
+
 /* Where grub-mkimage places the core modules in memory.  */
 #define GRUB_IEEE1275_MODULE_BASE 0x00300000
 
Index: include/grub/powerpc/ieee1275/loader.h
===================================================================
RCS file: /cvsroot/grub/grub2/include/grub/powerpc/ieee1275/loader.h,v
retrieving revision 1.4
diff -u -p -r1.4 loader.h
--- include/grub/powerpc/ieee1275/loader.h      31 Jan 2005 21:44:35 -0000      
1.4
+++ include/grub/powerpc/ieee1275/loader.h      3 Jan 2006 00:35:02 -0000
@@ -1,6 +1,6 @@
 /*
  *  GRUB  --  GRand Unified Bootloader
- *  Copyright (C) 2004  Free Software Foundation, Inc.
+ *  Copyright (C) 2004,2005,2006  Free Software Foundation, Inc.
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -24,6 +24,7 @@
    loader.  */
 void grub_rescue_cmd_linux (int argc, char *argv[]);
 void grub_rescue_cmd_initrd (int argc, char *argv[]);
+void grub_rescue_cmd_macosx (int argc, char *argv[]);
 
 void grub_linux_init (void);
 void grub_linux_fini (void);
Index: kern/misc.c
===================================================================
RCS file: /cvsroot/grub/grub2/kern/misc.c,v
retrieving revision 1.25
diff -u -p -r1.25 misc.c
--- kern/misc.c 28 Oct 2005 03:14:33 -0000      1.25
+++ kern/misc.c 3 Jan 2006 00:35:02 -0000
@@ -1,7 +1,7 @@
 /* misc.c - definitions of misc functions */
 /*
  *  GRUB  --  GRand Unified Bootloader
- *  Copyright (C) 1999,2000,2001,2002,2003,2004,2005  Free Software 
Foundation, Inc.
+ *  Copyright (C) 1999,2000,2001,2002,2003,2004,2005,2006  Free Software 
Foundation, Inc.
  *
  *  GRUB is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -875,3 +875,20 @@ grub_utf8_to_ucs4 (grub_uint32_t *dest, 
 
   return p - dest;
 }
+
+/* Find NULL-terminated `needle' in non-terminated `haystack'.  */
+void *
+grub_memstr (void *haystack, int len, char *needle)
+{
+  char *ptr = haystack;
+  int needle_len = grub_strlen (needle);
+  int i;
+
+  for (i = 0; i < len - needle_len; i++)
+    {
+      if (0 == grub_memcmp (ptr + i, needle, needle_len))
+       return ptr + i;
+    }
+
+  return 0;
+}
Index: kern/powerpc/misc.S
===================================================================
RCS file: kern/powerpc/misc.S
diff -N kern/powerpc/misc.S
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ kern/powerpc/misc.S 3 Jan 2006 00:35:02 -0000
@@ -0,0 +1,30 @@
+/* misc.S - Miscellaneous assembly routines.  */
+/*
+ *  GRUB  --  GRand Unified Bootloader
+ *  Copyright (C) 2006  Free Software Foundation, Inc.
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+       .text
+
+       /* Jump to a function and switch to a new stack.  */
+       .globl grub_jump
+grub_jump:
+       mtctr 3
+       mr 1, 4
+       mr 3, 5
+       mr 4, 6
+       bctr
Index: loader/powerpc/ieee1275/macosx.c
===================================================================
RCS file: loader/powerpc/ieee1275/macosx.c
diff -N loader/powerpc/ieee1275/macosx.c
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ loader/powerpc/ieee1275/macosx.c    3 Jan 2006 00:35:02 -0000
@@ -0,0 +1,329 @@
+/* macosx.c - boot Mac OS X */
+/*
+ *  GRUB  --  GRand Unified Bootloader
+ *  Copyright (C) 2006  Free Software Foundation, Inc.
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+/* BootX, the Mac OS X bootloader, is an XCOFF executable with a CHRP script
+   prepended to it.  We skip the script and load the XCOFF file.  */
+
+#include <grub/xcoff.h>
+#include <grub/loader.h>
+#include <grub/dl.h>
+#include <grub/mm.h>
+#include <grub/rescue.h>
+#include <grub/misc.h>
+#include <grub/cache.h>
+#include <grub/machine/kernel.h>
+#include <grub/machine/loader.h>
+#include <grub/ieee1275/ieee1275.h>
+
+#define MAX_XCOFF_POS (8<<10) /* Search first 8 KiB.  */
+#define READ_SIZE 512
+#define END_STRING "</CHRP-BOOT>\n"
+
+/* This must be larger than the functions copied into high memory.  */
+#define TRAMPOLINE_SIZE 0x200
+
+#define GRUB_MACOSX_CHAIN_AREA    0x06000000
+#define GRUB_MACOSX_RELEASE_AREA  (GRUB_MACOSX_CHAIN_AREA + TRAMPOLINE_SIZE)
+#define GRUB_MACOSX_STACK_AREA    (GRUB_MACOSX_RELEASE_AREA + TRAMPOLINE_SIZE)
+
+/* BootX will fail poorly if it is unable to claim this region.  */
+#define GRUB_BOOTX_CLAIM_BASE     0x00003000
+#define GRUB_BOOTX_CLAIM_SIZE     (0x06000000 - GRUB_BOOTX_CLAIM_BASE)
+
+static grub_dl_t my_mod;
+
+static grub_addr_t macosx_entry;
+static grub_size_t macosx_size;
+
+
+static grub_err_t
+grub_macosx_boot (void)
+{
+  grub_dprintf ("loader", "BootX entry point: 0x%x\n", macosx_entry);
+  grub_dprintf ("loader", "trampoline entry point: 0x%x\n",
+               GRUB_MACOSX_CHAIN_AREA);
+  grub_dprintf ("loader", "trampoline stack pointer: 0x%x\n",
+               GRUB_MACOSX_STACK_AREA + TRAMPOLINE_SIZE);
+  grub_dprintf ("loader", "jumping to trampoline...\n");
+
+  /* Call the trampoline to boot the kernel.  */
+  grub_jump (GRUB_MACOSX_CHAIN_AREA, GRUB_MACOSX_STACK_AREA + TRAMPOLINE_SIZE,
+            macosx_entry, GRUB_MACOSX_RELEASE_AREA);
+
+  return GRUB_ERR_NONE;
+}
+
+static grub_err_t
+grub_macosx_release_mem (void)
+{
+  if (macosx_entry && grub_ieee1275_release (macosx_entry, macosx_size))
+    return grub_error (GRUB_ERR_OUT_OF_MEMORY, "Can not release memory");
+
+  macosx_entry = 0;
+  macosx_size = 0;
+
+  return GRUB_ERR_NONE;
+}
+
+static grub_err_t
+grub_macosx_unload (void)
+{
+  grub_err_t err;
+
+  err = grub_macosx_release_mem ();
+  grub_dl_unref (my_mod);
+
+  return err;
+}
+
+static grub_err_t
+grub_xcoff_load_section (grub_file_t file, grub_off_t xcoff_pos,
+                        struct grub_xcoff_scnhdr *scnhdr)
+{
+  int rc;
+
+  grub_dprintf ("loader", "section %.8s:\n", scnhdr->s_name);
+  grub_dprintf ("loader", "  paddr 0x%08x\n", scnhdr->s_paddr);
+  grub_dprintf ("loader", "  vaddr 0x%08x\n", scnhdr->s_vaddr);
+  grub_dprintf ("loader", "  size 0x%x\n", scnhdr->s_size);
+  grub_dprintf ("loader", "  scnptr 0x%x\n", scnhdr->s_scnptr);
+  grub_dprintf ("loader", "  flags 0x%x\n", scnhdr->s_flags);
+
+  rc = grub_claimmap (scnhdr->s_paddr, scnhdr->s_size);
+  if (rc == -1)
+    return grub_error (GRUB_ERR_OUT_OF_MEMORY, "could not claim 0x%x",
+                      scnhdr->s_paddr);
+
+  if (scnhdr->s_scnptr)
+    {
+      grub_file_seek (file, xcoff_pos + scnhdr->s_scnptr);
+
+      if (grub_file_read (file, (void *)scnhdr->s_paddr, scnhdr->s_size)
+         != (grub_ssize_t)scnhdr->s_size)
+       return grub_error (GRUB_ERR_READ_ERROR,
+                          "could not load section %.8s\n",
+                          scnhdr->s_name);
+      grub_arch_sync_caches ((void *) scnhdr->s_paddr, scnhdr->s_size);
+    }
+  else
+    /* BSS.  */
+    grub_memset ((void *) scnhdr->s_paddr, 0, scnhdr->s_size);
+
+  /* Assume sections are contiguous.  */
+  macosx_size += scnhdr->s_size;
+
+  return 0;
+}
+
+static grub_err_t
+grub_xcoff_load_file (grub_file_t file, grub_off_t xcoff_pos)
+{
+  struct grub_xcoff_filehdr _filehdr;
+  struct grub_xcoff_auxhdr _auxhdr;
+  struct grub_xcoff_filehdr *filehdr = &_filehdr;
+  struct grub_xcoff_auxhdr *auxhdr = &_auxhdr;
+  struct grub_xcoff_scnhdr *scnhdrs;
+  struct grub_xcoff_func_desc *desc;
+  int scnhdr_bytes;
+  int i;
+
+  /* Read the file header.  */
+  if (grub_file_read (file, (void *)filehdr, sizeof (struct 
grub_xcoff_filehdr))
+      != sizeof (struct grub_xcoff_filehdr))
+    {
+      grub_error (GRUB_ERR_READ_ERROR, "could not read the XCOFF file header");
+      goto out;
+    }
+
+  if (filehdr->f_magic != GRUB_XCOFF32_MAGIC)
+    {
+      grub_error (GRUB_ERR_BAD_FILE_TYPE, "bad XCOFF magic: 0x%x",
+                 filehdr->f_magic);
+      goto out;
+    }
+
+  grub_dprintf ("loader", "number of sections: %d\n", filehdr->f_nscns);
+  grub_dprintf ("loader", "flags: 0x%x\n", filehdr->f_flags);
+
+  /* Read the auxiliary header.  */
+  if (filehdr->f_opthdr != sizeof (struct grub_xcoff_auxhdr))
+    {
+      grub_error (GRUB_ERR_BAD_FILE_TYPE, "missing auxiliary header");
+      goto out;
+    }
+
+  if (grub_file_read (file, (void *)auxhdr, sizeof (struct grub_xcoff_auxhdr))
+      != sizeof (struct grub_xcoff_auxhdr))
+    return grub_error (GRUB_ERR_READ_ERROR,
+                      "could not read the XCOFF auxiliary header");
+
+  if (auxhdr->o_mflag != GRUB_XCOFF_MFLAGS_PAGEALIGNED)
+    return grub_error (GRUB_ERR_BAD_FILE_TYPE,
+                      "unknown auxiliary header flags: 0x%x\n",
+                      auxhdr->o_mflag);
+
+  /* Load all section headers.  */
+  scnhdr_bytes = filehdr->f_nscns * sizeof (struct grub_xcoff_scnhdr);
+  scnhdrs = grub_malloc (scnhdr_bytes);
+  if (! scnhdrs)
+    return grub_errno;
+
+  if (grub_file_read (file, (void *) scnhdrs, scnhdr_bytes) != scnhdr_bytes)
+    {
+      grub_free (scnhdrs);
+      return grub_error (GRUB_ERR_READ_ERROR,
+                        "could not read XCOFF section headers");
+    }
+
+  for (i = 0; i < filehdr->f_nscns; i++)
+    {
+      if (grub_xcoff_load_section (file, xcoff_pos, scnhdrs + i))
+       break;
+    }
+
+  /* Find the entry point.  */
+  desc = (struct grub_xcoff_func_desc *) auxhdr->o_entry;
+  macosx_entry = desc->address;
+  grub_dprintf ("loader", "entry point 0x%08x\n", macosx_entry);
+
+ out:
+  return grub_errno;
+}
+
+/* grub_chain_trampoline is copied somewhere other than its link address
+   and executes after all other code has been blown away. In order to call
+   other functions from here, they must have been copied into a safe place and
+   their addresses passed as parameters. */
+typedef void (*kernel_entry_t) (unsigned long, unsigned long, int (void *));
+typedef int (*release_t) (grub_addr_t addr, grub_size_t size);
+static void
+grub_chain_trampoline (kernel_entry_t entry, release_t release)
+{
+  /* Release all memory BootX will claim.  */
+  release (GRUB_BOOTX_CLAIM_BASE, GRUB_BOOTX_CLAIM_SIZE);
+  entry (0, 0, grub_ieee1275_entry_fn);
+}
+
+static int
+grub_macosx_install_trampoline (void)
+{
+  int rc;
+
+  /* We want to copy grub_chain_trampoline and grub_ieee1275_release into high
+     memory for use after we release all other code. Unfortunately, we don't
+     know exactly how big those functions are, so we just hope that
+     TRAMPOLINE_SIZE is big enough.  */
+
+  rc = grub_claimmap (GRUB_MACOSX_CHAIN_AREA, TRAMPOLINE_SIZE);
+  rc |= grub_claimmap (GRUB_MACOSX_RELEASE_AREA, TRAMPOLINE_SIZE);
+  rc |= grub_claimmap (GRUB_MACOSX_STACK_AREA, TRAMPOLINE_SIZE);
+  if (rc)
+    return rc;
+
+  grub_memcpy ((void *) GRUB_MACOSX_CHAIN_AREA, grub_chain_trampoline,
+              TRAMPOLINE_SIZE);
+  grub_arch_sync_caches ((void *) GRUB_MACOSX_CHAIN_AREA, TRAMPOLINE_SIZE);
+  grub_memcpy ((void *) GRUB_MACOSX_RELEASE_AREA, grub_ieee1275_release,
+              TRAMPOLINE_SIZE);
+  grub_arch_sync_caches ((void *) GRUB_MACOSX_RELEASE_AREA, TRAMPOLINE_SIZE);
+
+  return 0;
+}
+
+void
+grub_rescue_cmd_macosx (int argc, char *argv[])
+{
+  static char _buf[READ_SIZE];
+  char *buf = _buf;
+  grub_file_t file = 0;
+  grub_off_t pos = 0;
+  grub_ssize_t bytes_read;
+
+  grub_dl_ref (my_mod);
+
+  if (argc == 0)
+    {
+      grub_error (GRUB_ERR_BAD_ARGUMENT, "no kernel specified");
+      goto out;
+    }
+
+  file = grub_file_open (argv[0]);
+  if (! file)
+    goto out;
+
+  /* Search for the end of the script to find the XCOFF header.  */
+  while (pos < MAX_XCOFF_POS) {
+    char *match;
+
+    bytes_read = grub_file_read (file, buf, READ_SIZE);
+    if (bytes_read < 0)
+      goto out;
+
+    match = grub_memstr (buf, bytes_read, END_STRING);
+    if (match)
+      {
+       pos += (int) (match - buf) + grub_strlen (END_STRING);
+       grub_dprintf ("loader", "XCOFF header at file offset 0x%x\n", pos);
+       grub_file_seek (file, pos);
+       break;
+      }
+
+    pos += READ_SIZE;
+  }
+
+  if (pos < MAX_XCOFF_POS)
+    {
+      /* Install the trampoline we need to jump through.  */
+      if (grub_macosx_install_trampoline ())
+       {
+         grub_error (GRUB_ERR_OUT_OF_RANGE, "Failed to install trampoline.\n");
+         goto out;
+       }
+      /* Load the XCOFF.  */
+      grub_xcoff_load_file (file, pos);
+    }
+
+ out:
+
+  if (file)
+    grub_file_close (file);
+
+  if (grub_errno != GRUB_ERR_NONE)
+    {
+      grub_macosx_release_mem ();
+      grub_dl_unref (my_mod);
+      return;
+    }
+
+  grub_loader_set (grub_macosx_boot, grub_macosx_unload);
+}
+
+
+GRUB_MOD_INIT (macosx)
+{
+  grub_rescue_register_command ("macosx", grub_rescue_cmd_macosx,
+                               "load BootX, the Mac OS X bootloader");
+  my_mod = mod;
+}
+
+GRUB_MOD_FINI (macosx)
+{
+  grub_rescue_unregister_command ("macosx");
+}
Index: loader/powerpc/ieee1275/macosx_normal.c
===================================================================
RCS file: loader/powerpc/ieee1275/macosx_normal.c
diff -N loader/powerpc/ieee1275/macosx_normal.c
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ loader/powerpc/ieee1275/macosx_normal.c     3 Jan 2006 00:35:02 -0000
@@ -0,0 +1,49 @@
+/* macosx_normal.c - boot Mac OS X */
+/*
+ *  GRUB  --  Preliminary Universal Programming Architecture for GRUB
+ *  Copyright (C) 2006  Free Software Foundation, Inc.
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+#include <grub/normal.h>
+#include <grub/dl.h>
+#include <grub/machine/loader.h>
+
+static const struct grub_arg_option options[] =
+  {
+    {0, 0, 0, 0, 0, 0}
+  };
+
+static grub_err_t
+grub_cmd_macosx (struct grub_arg_list *state  __attribute__ ((unused)),
+               int argc, char **args)
+{
+  grub_rescue_cmd_macosx (argc, args);
+  return GRUB_ERR_NONE;
+}
+
+GRUB_MOD_INIT(macosx_normal)
+{
+  (void) mod;
+  grub_register_command ("macosx", grub_cmd_macosx, GRUB_COMMAND_FLAG_BOTH,
+                        "macosx [KERNELARGS...]",
+                        "Loads BootX, the Mac OS X bootloader.", options);
+}
+
+GRUB_MOD_FINI(macosx_normal)
+{
+  grub_unregister_command ("macosx");
+}
_______________________________________________
Grub-devel mailing list
Grub-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/grub-devel

Reply via email to