From: "Pali Rohár" <pali.rohar@gmail.com>
To: grub-devel@gnu.org
Subject: Re: [PATCH] * grub-core/fs/udf.c: Fix reading label, lvd.ident is dstring
Date: Sun, 2 Jul 2017 12:36:09 +0200 [thread overview]
Message-ID: <201707021236.09793@pali> (raw)
In-Reply-To: <1498134797-11903-1-git-send-email-pali.rohar@gmail.com>
[-- Attachment #1: Type: Text/Plain, Size: 1813 bytes --]
On Thursday 22 June 2017 14:33:17 Pali Rohár wrote:
> UDF dstring has stored length in the last byte of buffer. Therefore
> last byte is not part of recorded characters. And empty string in
> dstring is encoded as empty buffer, including first byte
> (compression id).
> ---
> I'm not sure how Grub2 should handle empty label. Current patch set
> empty buffer for empty label. But it is possible to ignore and do not
> set label in this case at all.
> ---
Hi! Any comments on this patch? Specially how to deal with empty labels?
> grub-core/fs/udf.c | 21 ++++++++++++++++++++-
> 1 file changed, 20 insertions(+), 1 deletion(-)
>
> diff --git a/grub-core/fs/udf.c b/grub-core/fs/udf.c
> index 839bff8..e7a4d4e 100644
> --- a/grub-core/fs/udf.c
> +++ b/grub-core/fs/udf.c
> @@ -860,6 +860,25 @@ read_string (const grub_uint8_t *raw,
> grub_size_t sz, char *outbuf) return outbuf;
> }
>
> +static char *
> +read_dstring (const grub_uint8_t *raw, grub_size_t sz, char *outbuf)
> +{
> + grub_size_t len;
> +
> + if (raw[0] == 0)
> + {
> + if (!outbuf)
> + outbuf = grub_malloc (1);
> + outbuf[0] = 0;
> + return outbuf;
> + }
> +
> + len = raw[sz - 1];
> + if (len > sz - 1)
> + len = sz - 1;
> + return read_string (raw, len, outbuf);
> +}
> +
> static int
> grub_udf_iterate_dir (grub_fshelp_node_t dir,
> grub_fshelp_iterate_dir_hook_t hook, void *hook_data)
> @@ -1197,7 +1216,7 @@ grub_udf_label (grub_device_t device, char
> **label)
>
> if (data)
> {
> - *label = read_string (data->lvd.ident, sizeof
> (data->lvd.ident), 0); + *label = read_dstring
> (data->lvd.ident, sizeof (data->lvd.ident), 0); grub_free (data);
> }
> else
--
Pali Rohár
pali.rohar@gmail.com
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
next prev parent reply other threads:[~2017-07-02 10:36 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-22 12:33 [PATCH] * grub-core/fs/udf.c: Fix reading label, lvd.ident is dstring Pali Rohár
2017-07-02 10:36 ` Pali Rohár [this message]
2017-08-07 15:40 ` Vladimir 'phcoder' Serbinenko
2017-08-08 7:18 ` Pali Rohár
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=201707021236.09793@pali \
--to=pali.rohar@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 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.