From: "Vladimir 'φ-coder/phcoder' Serbinenko" <phcoder@gmail.com>
To: The development of GNU GRUB <grub-devel@gnu.org>
Subject: Re: [PATCH] On Linux, read partition start offsets from sysfs if possible
Date: Thu, 05 Dec 2013 14:45:49 +0100 [thread overview]
Message-ID: <52A0838D.3060308@gmail.com> (raw)
In-Reply-To: <20131205121723.GN16147@riva.ucam.org>
[-- Attachment #1: Type: text/plain, Size: 4064 bytes --]
Looks good. Go ahead.
On 05.12.2013 13:17, Colin Watson wrote:
> This lets us cope with block device drivers that don't implement
> HDIO_GETGEO. Fixes Ubuntu bug #1237519.
>
> * grub-core/osdep/linux/hostdisk.c (sysfs_partition_path): New
> function.
> (sysfs_partition_start): Likewise.
> (grub_util_find_partition_start_os): Try sysfs_partition_start
> before HDIO_GETGEO.
> ---
> ChangeLog | 12 ++++++
> grub-core/osdep/linux/hostdisk.c | 89 ++++++++++++++++++++++++++++++++++++++++
> 2 files changed, 101 insertions(+)
>
> diff --git a/ChangeLog b/ChangeLog
> index d60acab..d08d841 100644
> --- a/ChangeLog
> +++ b/ChangeLog
> @@ -1,3 +1,15 @@
> +2013-12-05 Colin Watson <cjwatson@ubuntu.com>
> +
> + On Linux, read partition start offsets from sysfs if possible, to
> + cope with block device drivers that don't implement HDIO_GETGEO.
> + Fixes Ubuntu bug #1237519.
> +
> + * grub-core/osdep/linux/hostdisk.c (sysfs_partition_path): New
> + function.
> + (sysfs_partition_start): Likewise.
> + (grub_util_find_partition_start_os): Try sysfs_partition_start
> + before HDIO_GETGEO.
> +
> 2013-12-05 Vladimir Serbinenko <phcoder@gmail.com>
>
> Handle unaligned .bss on sparc64.
> diff --git a/grub-core/osdep/linux/hostdisk.c b/grub-core/osdep/linux/hostdisk.c
> index a2c80f3..74d87a4 100644
> --- a/grub-core/osdep/linux/hostdisk.c
> +++ b/grub-core/osdep/linux/hostdisk.c
> @@ -27,6 +27,7 @@
> #include <grub/emu/misc.h>
> #include <grub/emu/hostdisk.h>
> #include <grub/emu/getroot.h>
> +#include <grub/emu/exec.h>
> #include <grub/misc.h>
> #include <grub/i18n.h>
> #include <grub/list.h>
> @@ -39,6 +40,7 @@
> #include <unistd.h>
> #include <sys/types.h>
> #include <sys/stat.h>
> +#include <sys/wait.h>
> #include <fcntl.h>
> #include <errno.h>
> #include <limits.h>
> @@ -93,12 +95,99 @@ grub_util_get_fd_size_os (grub_util_fd_t fd, const char *name, unsigned *log_sec
> return nr;
> }
>
> +static char *
> +sysfs_partition_path (const char *dev, const char *entry)
> +{
> + const char *argv[7];
> + int fd;
> + pid_t pid;
> + FILE *udevadm;
> + char *buf = NULL;
> + size_t len = 0;
> + char *path = NULL;
> +
> + argv[0] = "udevadm";
> + argv[1] = "info";
> + argv[2] = "--query";
> + argv[3] = "path";
> + argv[4] = "--name";
> + argv[5] = dev;
> + argv[6] = NULL;
> +
> + pid = grub_util_exec_pipe (argv, &fd);
> +
> + if (!pid)
> + return NULL;
> +
> + /* Parent. Read udevadm's output. */
> + udevadm = fdopen (fd, "r");
> + if (!udevadm)
> + {
> + grub_util_warn (_("Unable to open stream from %s: %s"),
> + "udevadm", strerror (errno));
> + close (fd);
> + goto out;
> + }
> +
> + if (getline (&buf, &len, udevadm) > 0)
> + {
> + char *newline;
> +
> + newline = strchr (buf, '\n');
> + if (newline)
> + *newline = '\0';
> + path = xasprintf ("/sys%s/%s", buf, entry);
> + }
> +
> +out:
> + if (udevadm)
> + fclose (udevadm);
> + waitpid (pid, NULL, 0);
> + free (buf);
> +
> + return path;
> +}
> +
> +static int
> +sysfs_partition_start (const char *dev, grub_disk_addr_t *start)
> +{
> + char *path;
> + FILE *fp;
> + unsigned long long val;
> + int ret = 0;
> +
> + path = sysfs_partition_path (dev, "start");
> + if (!path)
> + return 0;
> +
> + fp = grub_util_fopen (path, "r");
> + if (!fp)
> + goto out;
> +
> + if (fscanf (fp, "%llu", &val) == 1)
> + {
> + *start = (grub_disk_addr_t) val;
> + ret = 1;
> + }
> +
> +out:
> + free (path);
> + if (fp)
> + fclose (fp);
> +
> + return ret;
> +}
> +
> grub_disk_addr_t
> grub_util_find_partition_start_os (const char *dev)
> {
> + grub_disk_addr_t start;
> grub_util_fd_t fd;
> struct hd_geometry hdg;
>
> + if (sysfs_partition_start (dev, &start))
> + return start;
> +
> fd = open (dev, O_RDONLY);
> if (fd == -1)
> {
>
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 291 bytes --]
prev parent reply other threads:[~2013-12-05 13:46 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-05 12:17 [PATCH] On Linux, read partition start offsets from sysfs if possible Colin Watson
2013-12-05 12:22 ` Colin Watson
2013-12-05 13:45 ` Vladimir 'φ-coder/phcoder' Serbinenko [this message]
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=52A0838D.3060308@gmail.com \
--to=phcoder@gmail.com \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).