public inbox for linux-block@vger.kernel.org
 help / color / mirror / Atom feed
From: David Laight <david.laight.linux@gmail.com>
To: Ben Hutchings <ben@decadent.org.uk>
Cc: Ming Lei <ming.lei@redhat.com>, Jens Axboe <axboe@kernel.dk>,
	linux-block@vger.kernel.org, linux-efi@vger.kernel.org,
	Olivier Gayot <olivier.gayot@canonical.com>,
	Mulhern <amulhern@redhat.com>,
	Davidlohr Bueso <dave@stgolabs.net>,
	stable@vger.kernel.org
Subject: Re: [PATCH V3] block: fix conversion of GPT partition name to 7-bit
Date: Fri, 28 Mar 2025 19:57:16 +0000	[thread overview]
Message-ID: <20250328195716.54325489@pumpkin> (raw)
In-Reply-To: <3fa05bba190bec01df2bc117cf7e3e2f00e8b946.camel@decadent.org.uk>

On Thu, 27 Mar 2025 23:34:29 +0100
Ben Hutchings <ben@decadent.org.uk> wrote:

> On Wed, 2025-03-05 at 10:21 +0800, Ming Lei wrote:
> > From: Olivier Gayot <olivier.gayot@canonical.com>
> > 
> > The utf16_le_to_7bit function claims to, naively, convert a UTF-16
> > string to a 7-bit ASCII string. By naively, we mean that it:
> >  * drops the first byte of every character in the original UTF-16 string
> >  * checks if all characters are printable, and otherwise replaces them
> >    by exclamation mark "!".
> > 
> > This means that theoretically, all characters outside the 7-bit ASCII
> > range should be replaced by another character. Examples:
> > 
> >  * lower-case alpha (ɒ) 0x0252 becomes 0x52 (R)
> >  * ligature OE (œ) 0x0153 becomes 0x53 (S)
> >  * hangul letter pieup (ㅂ) 0x3142 becomes 0x42 (B)
> >  * upper-case gamma (Ɣ) 0x0194 becomes 0x94 (not printable) so gets
> >    replaced by "!"  
> 
> Also any character with low 8 bits equal to 0 terminates the string.
> 
> > The result of this conversion for the GPT partition name is passed to
> > user-space as PARTNAME via udev, which is confusing and feels questionable.  
> 
> Indeed.  But this change seems to make it worse!
> 
> [...]
> > This results in many values which should be replaced by "!" to be kept
> > as-is, despite not being valid 7-bit ASCII. Examples:
> > 
> >  * e with acute accent (é) 0x00E9 becomes 0xE9 - kept as-is because
> >    isprint(0xE9) returns 1.
> >
> >  * euro sign (€) 0x20AC becomes 0xAC - kept as-is because isprint(0xAC)
> >    returns 1.  
> [...]
> > --- a/block/partitions/efi.c
> > +++ b/block/partitions/efi.c
> > @@ -682,7 +682,7 @@ static void utf16_le_to_7bit(const __le16 *in, unsigned int size, u8 *out)
> >  	out[size] = 0;
> >  
> >  	while (i < size) {
> > -		u8 c = le16_to_cpu(in[i]) & 0xff;
> > +		u8 c = le16_to_cpu(in[i]) & 0x7f;
> >  
> >  		if (c && !isprint(c))
> >  			c = '!';  
> 
> Now we map 'é' to 'i' and '€' to ','.  Didn't we want to map them to
> '!'?
> 
> We shouldn't mask the input character; instead we should do a range
> check before calling isprint().  Something like:
> 
> 	u16 uc = le16_to_cpu(in[i]);
> 	u8 c;
> 
> 	if (uc < 0x80 && (uc == 0 || isprint(uc)))

Given that, for 7-bit ascii, isprint(uc) is equivalent to (uc >= 0x20 && uc <= 0x7e)
you can do:
	if (uc >= 0x20 && uc <= 0x7e)
		c = uc;
	else
		c = uc ? '!' : 0;

  David

> 		c = uc;
> 	else
> 		c = '!';
> 
> Ben.
> 


      parent reply	other threads:[~2025-03-28 19:57 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-05  2:21 [PATCH V3] block: fix conversion of GPT partition name to 7-bit Ming Lei
2025-03-05 14:45 ` Jens Axboe
2025-03-27 22:34 ` Ben Hutchings
2025-03-28  9:29   ` Olivier Gayot
2025-03-28 18:03     ` Ben Hutchings
2025-03-28 19:57   ` David Laight [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=20250328195716.54325489@pumpkin \
    --to=david.laight.linux@gmail.com \
    --cc=amulhern@redhat.com \
    --cc=axboe@kernel.dk \
    --cc=ben@decadent.org.uk \
    --cc=dave@stgolabs.net \
    --cc=linux-block@vger.kernel.org \
    --cc=linux-efi@vger.kernel.org \
    --cc=ming.lei@redhat.com \
    --cc=olivier.gayot@canonical.com \
    --cc=stable@vger.kernel.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