From: Nick Vinson <nvinson234@gmail.com>
To: Steve Kenton <skenton@ou.edu>,
Andrei Borzenkov <arvidjaar@gmail.com>,
The development of GNU GRUB <grub-devel@gnu.org>
Subject: Re: [PATCH 1/1] add --partuuid to probe
Date: Tue, 14 Feb 2017 19:36:28 -0800 [thread overview]
Message-ID: <acf9afb4-1bf9-9686-2cb0-43f80bc4947b@gmail.com> (raw)
In-Reply-To: <84ba2661-e272-716c-52f7-79059a37dfbd@ou.edu>
[-- Attachment #1.1: Type: text/plain, Size: 4947 bytes --]
I'll need to check it against the 2.02 sources, but even if it needs
updating, it shouldn't be too hard to do it. I can add your changes to
the patchset.
-Nick
On 02/14/2017 11:39 AM, Steve Kenton wrote:
> Nick,
>
> What is the state of your patch set? I think mine is much smaller if you
> want to roll it into yours and resubmit. We were told all along to wait
> until after 2.02, which should to be very soon, so it looks like it's
> show time!
>
> Steve Kenton
>
>
> On 02/14/2017 07:12 PM, Andrei Borzenkov wrote:
>> 14.02.2017 21:00, Steve Kenton пишет:
>>> Support both EFI and NT Disk Signature for passing to kernel as
>>> root=PARTUUID=$val
>>>
>> Yes, I guess we need to add it finally. Unfortunately it is too late for
>> 2.02, but it should go after in release. There were also patches for
>> grub-probe and we also need to support it in search to be on par with
>> filesystem UUID. May be if you could prepare consolidated patch set it
>> would be great.
>>
>> I apologize that it tool so long. Thank you for not giving up!
>>
>>> Signed-off-by: Steve Kenton <skenton@ou.edu>
>>> ---
>>> It's been six months so I thought I'd resend this so it does not get
>>> lost
>>> in case I get hit by a meteor or something before the next release
>>>
>>> grub-core/commands/probe.c | 53
>>> ++++++++++++++++++++++++++++++++++++++++++++++
>>> 1 file changed, 53 insertions(+)
>>>
>>> diff --git a/grub-core/commands/probe.c b/grub-core/commands/probe.c
>>> index cf2793e..3afc8b8 100644
>>> --- a/grub-core/commands/probe.c
>>> +++ b/grub-core/commands/probe.c
>> Please also add patch for manual.
>>
>>> @@ -45,6 +45,7 @@ static const struct grub_arg_option options[] =
>>> {"fs", 'f', 0, N_("Determine filesystem type."), 0, 0},
>>> {"fs-uuid", 'u', 0, N_("Determine filesystem UUID."), 0,
>>> 0},
>>> {"label", 'l', 0, N_("Determine filesystem label."), 0, 0},
>>> + {"partuuid", 'g', 0, N_("Determine partition GUID/UUID."), 0,
>>> 0}, /* GUID but Linux kernel calls it "PARTUUID" */
>>> {0, 0, 0, 0, 0, 0}
>>> };
>>> @@ -154,6 +155,58 @@ grub_cmd_probe (grub_extcmd_context_t ctxt,
>>> int argc, char **args)
>>> grub_device_close (dev);
>>> return GRUB_ERR_NONE;
>>> }
>>> + if (state[6].set)
>>> + {
>>> + char *partuuid = NULL; /* NULL to silence a spurious GCC
>>> warning */
>>> + grub_uint8_t diskbuf[16];
>>> + if (dev->disk && dev->disk->partition)
>>> + {
>>> + grub_partition_t p = dev->disk->partition;
>>> + if (!grub_strcmp (p->partmap->name, "msdos"))
>>> + {
>>> + const int diskid_offset = 440; /* location in MBR */
>>> + dev->disk->partition = p->parent;
>>> + /* little-endian 4-byte NT disk signature */
>>> + err = grub_disk_read (dev->disk, 0, diskid_offset, 4,
>>> diskbuf);
>>> + dev->disk->partition = p;
>>> + if (err)
>>> + return grub_errno;
>>> + partuuid = grub_xasprintf ("%02x%02x%02x%02x-%02x",
>>> + diskbuf[3], diskbuf[2], diskbuf[1], diskbuf[0],
>>> + p->number + 1); /* one based partition number */
>>> + }
>>> + else if (!grub_strcmp (p->partmap->name, "gpt"))
>>> + {
>>> + const int guid_offset = 16; /* location in entry */
>>> + dev->disk->partition = p->parent;
>>> + /* little-endian 16-byte EFI partition GUID */
>>> + err = grub_disk_read (dev->disk, p->offset, p->index +
>>> guid_offset, 16, diskbuf);
>>> + dev->disk->partition = p;
>>> + if (err)
>>> + return grub_errno;
>>> + partuuid = grub_xasprintf
>>> ("%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x",
>>> + diskbuf[3], diskbuf[2], diskbuf[1], diskbuf[0],
>>> + diskbuf[5], diskbuf[4],
>>> + diskbuf[7], diskbuf[6],
>>> + diskbuf[8], diskbuf[9],
>>> + diskbuf[10], diskbuf[11], diskbuf[12],
>>> diskbuf[13], diskbuf[14], diskbuf[15]);
>>> + }
>>> + else
>>> + return grub_error (GRUB_ERR_NOT_IMPLEMENTED_YET,
>>> + N_("partition map %s does not support partition
>>> UUIDs"),
>>> + dev->disk->partition->partmap->name);
>>> + }
>>> + else
>>> + partuuid = grub_strdup (""); /* a freeable empty string */
>>> +
>>> + if (state[0].set)
>>> + grub_env_set (state[0].arg, partuuid);
>>> + else
>>> + grub_printf ("%s", partuuid);
>>> + grub_free (partuuid);
>>> + grub_device_close (dev);
>>> + return GRUB_ERR_NONE;
>>> + }
>>> grub_device_close (dev);
>>> return grub_error (GRUB_ERR_BAD_ARGUMENT, "unrecognised target");
>>> }
>>>
>
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2017-02-15 3:36 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-14 18:00 [PATCH 1/1] add --partuuid to probe Steve Kenton
2017-02-14 19:12 ` Andrei Borzenkov
2017-02-14 19:39 ` Steve Kenton
2017-02-15 3:36 ` Nick Vinson [this message]
2017-02-15 10:56 ` Vladimir 'phcoder' Serbinenko
2017-02-15 16:26 ` Andrei Borzenkov
2017-02-15 17:25 ` Vladimir 'phcoder' Serbinenko
2017-02-19 6:12 ` Andrei Borzenkov
2017-02-27 0:37 ` Vladimir 'phcoder' Serbinenko
2017-02-27 17:53 ` Andrei Borzenkov
2017-02-27 18:20 ` Vladimir 'phcoder' Serbinenko
2017-02-28 4:11 ` Andrei Borzenkov
2017-02-28 14:08 ` Vladimir 'phcoder' Serbinenko
2017-02-28 17:13 ` grub-probe for nested BSD partition on Linux (was: [PATCH 1/1] add --partuuid to probe) Andrei Borzenkov
2017-02-28 18:31 ` Lennart Sorensen
2017-02-28 18:50 ` grub-probe for nested BSD partition on Linux Andrei Borzenkov
2017-02-28 22:05 ` Lennart Sorensen
2017-03-01 3:39 ` Andrei Borzenkov
-- strict thread matches above, loose matches on Subject: below --
2016-08-16 14:56 [PATCH 1/1] add --partuuid to probe Steve Kenton
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=acf9afb4-1bf9-9686-2cb0-43f80bc4947b@gmail.com \
--to=nvinson234@gmail.com \
--cc=arvidjaar@gmail.com \
--cc=grub-devel@gnu.org \
--cc=skenton@ou.edu \
/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).