All of lore.kernel.org
 help / color / mirror / Atom feed
From: Vincent Pelletier <subdino2004@yahoo.fr>
To: Grub-devel@gnu.org
Subject: [PATCH] sun partition map support
Date: Sun, 02 Jan 2005 19:04:18 +0100	[thread overview]
Message-ID: <41D837A2.7080501@yahoo.fr> (raw)

[-- Attachment #1: Type: text/plain, Size: 552 bytes --]

Hello.
Here is my first work about porting grub2 to ultrasparc : sun's
partition map support.
The code was inspired by libparted (structs and the checksum function
that I slightly modified).
This patch also enables i386-pc to test it, maybe it should also be done
for apple. Tested to work with parted-generated disk images, not tested
with a real disk.

2005-01-02  Vincent Pelletier  <subdino2004@yahoo.fr>
	* partmap/sun.c: Added
	* conf/i386-pc.rmk, include/grub/partition.h, util/grub-emu.c:
	References to partmap/sun.c added

Vincent Pelletier


[-- Attachment #2: partmap_sun.diff --]
[-- Type: text/plain, Size: 9195 bytes --]

Index: conf/i386-pc.rmk
===================================================================
RCS file: /cvsroot/grub/grub2/conf/i386-pc.rmk,v
retrieving revision 1.23
diff -u -p -r1.23 i386-pc.rmk
--- conf/i386-pc.rmk	4 Dec 2004 18:45:45 -0000	1.23
+++ conf/i386-pc.rmk	2 Jan 2005 17:41:34 -0000
@@ -62,6 +62,7 @@ grub_setup_SOURCES = util/i386/pc/grub-s
 	util/misc.c util/i386/pc/getroot.c kern/device.c kern/disk.c \
 	kern/err.c kern/misc.c fs/fat.c fs/ext2.c \
 	kern/partition.c partmap/amiga.c partmap/apple.c partmap/pc.c \
+	partmap/sun.c \
 	fs/ufs.c fs/minix.c fs/hfs.c fs/jfs.c kern/file.c kern/fs.c kern/env.c fs/fshelp.c
 
 # For grub
@@ -70,6 +71,7 @@ grub_emu_SOURCES = kern/main.c kern/devi
         kern/misc.c kern/loader.c kern/rescue.c kern/term.c		\
 	kern/partition.c kern/env.c commands/ls.c partmap/amiga.c	\
 	partmap/pc.c partmap/apple.c					\
+	partmap/sun.c \
 	commands/terminal.c commands/boot.c commands/cmp.c commands/cat.c		\
 	util/i386/pc/biosdisk.c fs/fat.c fs/ext2.c fs/ufs.c fs/minix.c fs/hfs.c fs/jfs.c fs/iso9660.c \
 	normal/cmdline.c normal/command.c normal/main.c normal/menu.c normal/arg.c	\
@@ -83,7 +85,7 @@ genmoddep_SOURCES = util/genmoddep.c
 pkgdata_MODULES = _chain.mod _linux.mod linux.mod fat.mod ufs.mod ext2.mod minix.mod \
 	hfs.mod jfs.mod normal.mod hello.mod vga.mod font.mod _multiboot.mod ls.mod \
 	boot.mod cmp.mod cat.mod terminal.mod fshelp.mod chain.mod multiboot.mod \
-	amiga.mod apple.mod pc.mod
+	amiga.mod apple.mod pc.mod sun.mod
 
 # For _chain.mod.
 _chain_mod_SOURCES = loader/i386/pc/chainloader.c
@@ -190,3 +192,12 @@ apple_mod_CFLAGS = $(COMMON_CFLAGS)
 # For pc.mod
 pc_mod_SOURCES = partmap/pc.c
 pc_mod_CFLAGS = $(COMMON_CFLAGS)
+
+# For sun.mod
+sun_mod_SOURCES = partmap/sun.c
+sun_mod_CFLAGS = $(COMMON_CFLAGS)
+
Index: include/grub/partition.h
===================================================================
RCS file: /cvsroot/grub/grub2/include/grub/partition.h,v
retrieving revision 1.1
diff -u -p -r1.1 partition.h
--- include/grub/partition.h	4 Dec 2004 18:45:45 -0000	1.1
+++ include/grub/partition.h	2 Jan 2005 17:41:35 -0000
@@ -89,6 +89,8 @@ void grub_amiga_partition_map_init (void
 void grub_amiga_partition_map_fini (void);
 void grub_apple_partition_map_init (void);
 void grub_apple_partition_map_fini (void);
+void grub_sun_partition_map_init (void);
+void grub_sun_partition_map_fini (void);
#endif
 \f
 static inline unsigned long
Index: partmap/sun.c
===================================================================
RCS file: partmap/sun.c
diff -N partmap/sun.c
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ partmap/sun.c	2 Jan 2005 17:41:37 -0000
@@ -0,0 +1,204 @@
+/* sun.c - Read SUN style partition tables.  */
+/*
+ *  GRUB  --  GRand Unified Bootloader
+ *  Copyright (C) 2002, 2004 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.
+ */
+
+#include <grub/partition.h>
+#include <grub/disk.h>
+#include <grub/mm.h>
+#include <grub/misc.h>
+#include <grub/dl.h>
+
+#include <grub/symbol.h>
+#include <grub/types.h>
+#include <grub/err.h>
+
+#define GRUB_PARTMAP_SUN_MAGIC 0xDABE
+#define WHOLE_DISK_ID 0x05
+
+
+struct grub_sun_partition_info{
+  grub_uint8_t spare1;
+  grub_uint8_t id;
+  grub_uint8_t spare2;
+  grub_uint8_t flags;
+}__attribute__ ((packed));
+
+struct grub_sun_partition_descriptor{
+  grub_uint32_t start_cylinder;
+  grub_uint32_t num_sectors;
+}__attribute__ ((packed));
+
+struct grub_sun_block {
+  grub_uint8_t  info[128]; /* Informative text string */
+  grub_uint8_t  spare0[14];
+  struct grub_sun_partition_info infos[8];
+  grub_uint8_t  spare1[246]; /* Boot information etc. */
+  grub_uint16_t  rspeed; /* Disk rotational speed */
+  grub_uint16_t  pcylcount; /* Physical cylinder count */
+  grub_uint16_t  sparecyl; /* extra sects per cylinder */
+  grub_uint8_t  spare2[4]; /* More magic... */
+  grub_uint16_t  ilfact; /* Interleave factor */
+  grub_uint16_t  ncyl; /* Data cylinder count */
+  grub_uint16_t  nacyl; /* Alt. cylinder count */
+  grub_uint16_t  ntrks; /* Tracks per cylinder */
+  grub_uint16_t  nsect; /* Sectors per track */
+  grub_uint8_t  spare3[4]; /* Even more magic... */
+  struct grub_sun_partition_descriptor partitions[8];
+  grub_uint16_t  magic; /* Magic number */
+  grub_uint16_t  csum; /* Label xor'd checksum */
+}__attribute__ ((packed));
+
+static struct grub_partition_map grub_sun_partition_map;
+#ifndef GRUB_UTIL
+static grub_dl_t my_mod;
+#endif
+
+/* Verify checksum (true=ok) */
+static int grub_sun_is_valid(struct grub_sun_block *label)
+{
+  grub_uint16_t *pos;
+  grub_uint16_t sum=0;
+  for(pos=(grub_uint16_t *)label;pos<(grub_uint16_t *)(label+1);pos++)
+    sum^=*pos;
+  return !sum;
+}
+
+static grub_err_t
+sun_partition_map_iterate (grub_disk_t disk,
+			  int (*hook) (const grub_partition_t partition))
+{
+  struct grub_partition *p;
+  struct grub_disk raw;
+  struct grub_sun_block block;
+  int partnum;
+  raw=*disk;
+  raw.partition=0;
+  p=(struct grub_partition *)grub_malloc(sizeof(struct grub_partition));
+  if(p)
+  {
+    p->offset=0;
+    p->data=0;
+    p->partmap=&grub_sun_partition_map;
+    if(grub_disk_read(&raw,0,0,sizeof(struct grub_sun_block),(char *)&block)==GRUB_ERR_NONE)
+    {
+      if(GRUB_PARTMAP_SUN_MAGIC!=grub_be_to_cpu16(block.magic))
+        grub_error(GRUB_ERR_BAD_PART_TABLE,"no signature");
+      if(!grub_sun_is_valid(&block))
+        grub_error(GRUB_ERR_BAD_PART_TABLE,"invalid checksum"); /* another value ? */
+      for(partnum=0;partnum<8;partnum++)
+      {
+        if(block.infos[partnum].id==0 || block.infos[partnum].id==WHOLE_DISK_ID)
+          continue;
+        p->start=grub_be_to_cpu32(block.partitions[partnum].start_cylinder)*
+          grub_be_to_cpu16(block.ntrks)*
+          grub_be_to_cpu16(block.nsect);
+        p->len=grub_be_to_cpu32(block.partitions[partnum].num_sectors);
+        p->index=partnum;
+	if(p->len)
+        {
+          if(hook(p))
+            partnum=8;
+        }
+      }
+    }
+    grub_free(p);
+  }
+  return grub_errno;
+}
+
+static grub_partition_t
+sun_partition_map_probe (grub_disk_t disk, const char *str)
+{
+  grub_partition_t p=0;
+  int partnum = 0;
+  char *s = (char *) str;
+
+  auto int find_func (const grub_partition_t partition);
+  int find_func (const grub_partition_t partition)
+  {
+    if (partnum==partition->index)
+    {
+      p=(grub_partition_t)grub_malloc(sizeof(*p));
+      if(p)
+        grub_memcpy(p,partition,sizeof(*p));
+      return 1;
+    }
+    return 0;
+  }
+  grub_errno=GRUB_ERR_NONE;
+  partnum=grub_strtoul(s,0,10);
+  if(grub_errno==GRUB_ERR_NONE)
+  {
+    if(sun_partition_map_iterate(disk,find_func))
+    {
+      grub_free(p);
+      p=0;
+    }
+  }
+  else
+  {
+    grub_error(GRUB_ERR_BAD_FILENAME,"invalid partition");
+    p=0;
+  }
+  return p;
+}
+
+static char *
+sun_partition_map_get_name (const grub_partition_t p)
+{
+  char *name;
+  name = grub_malloc (13);
+  if (name)
+    grub_sprintf (name, "%d", p->index);
+  return name;
+}
+
+/* Partition map type.  */
+static struct grub_partition_map grub_sun_partition_map =
+  {
+    .name = "sun_partition_map",
+    .iterate = sun_partition_map_iterate,
+    .probe = sun_partition_map_probe,
+    .get_name = sun_partition_map_get_name
+  };
+
+#ifdef GRUB_UTIL
+void
+grub_sun_partition_map_init (void)
+{
+  grub_partition_map_register (&grub_sun_partition_map);
+}
+
+void
+grub_sun_partition_map_fini (void)
+{
+  grub_partition_map_unregister (&grub_sun_partition_map);
+}
+#else
+GRUB_MOD_INIT
+{
+  grub_partition_map_register (&grub_sun_partition_map);
+  my_mod = mod;
+}
+
+GRUB_MOD_FINI
+{
+  grub_partition_map_unregister (&grub_sun_partition_map);
+}
+#endif
Index: util/grub-emu.c
===================================================================
RCS file: /cvsroot/grub/grub2/util/grub-emu.c,v
retrieving revision 1.9
diff -u -p -r1.9 grub-emu.c
--- util/grub-emu.c	4 Dec 2004 18:45:45 -0000	1.9
+++ util/grub-emu.c	2 Jan 2005 17:41:37 -0000
@@ -156,6 +156,8 @@ main (int argc, char *argv[])
   /* XXX: This is a bit unportable.  */
   grub_util_biosdisk_init (args.dev_map);
   grub_pc_partition_map_init ();
+  grub_sun_partition_map_init ();
   grub_amiga_partition_map_init ();
   grub_apple_partition_map_init ();
 
@@ -192,6 +193,8 @@ main (int argc, char *argv[])
   grub_cat_fini ();
   grub_terminal_fini ();
   grub_amiga_partition_map_fini ();
+  grub_sun_partition_map_fini ();
   grub_pc_partition_map_fini ();
   grub_apple_partition_map_fini ();
   


             reply	other threads:[~2005-01-02 18:16 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-01-02 18:04 Vincent Pelletier [this message]
2005-01-20 16:56 ` [PATCH] sun partition map support Vincent Pelletier
2005-01-20 17:33   ` Yoshinori K. Okuji
2005-01-20 20:12     ` Marco Gerards
2005-01-21 12:54       ` Marco Gerards
2005-01-20 17:38   ` Marco Gerards
2005-01-29 16:42   ` Marco Gerards
2005-02-07 19:01     ` Vincent Pelletier
2005-02-07 21:46       ` Marco Gerards
2005-02-07 21:56         ` Vincent Pelletier
2005-02-21 19:25         ` Vincent Pelletier
2005-02-21 22:01           ` Marco Gerards
2005-02-21 22:21           ` Yoshinori K. Okuji

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=41D837A2.7080501@yahoo.fr \
    --to=subdino2004@yahoo.fr \
    --cc=Grub-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.