All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] vsprintf: replace space with readable '=' before crng is ready
@ 2018-02-13  6:20 Shunyong Yang
  2018-02-13  7:16 ` Rasmus Villemoes
  0 siblings, 1 reply; 4+ messages in thread
From: Shunyong Yang @ 2018-02-13  6:20 UTC (permalink / raw)
  To: me; +Cc: linux-kernel, linux, Shunyong Yang, Andy Shevchenko, Joey Zheng

Before crng is ready, output of "%p" composes of "(ptrval)" and
left padding spaces for alignment as no random address can be
generated. This seems a little strange when default string width
is larger than strlen("(ptrval)").

For example, when irq domain names are built with "%p", the nodes
under /sys/kernel/debug/irq/domains like this on AArch64 system,

[root@y irq]# ls domains/
default                   irqchip@        (ptrval)-2
irqchip@        (ptrval)-4  \_SB_.TCS0.QIC1  \_SB_.TCS0.QIC3
irqchip@        (ptrval)  irqchip@        (ptrval)-3
\_SB_.TCS0.QIC0             \_SB_.TCS0.QIC2

The name "irqchip@        (ptrval)-2" is not so readable in console
output.

This patch replaces space with readable "=" when output needs padding.
Following is the output after applying the patch,

[root@y domains]# ls
default                   irqchip@(====ptrval====)-2
irqchip@(====ptrval====)-4  \_SB_.TCS0.QIC1  \_SB_.TCS0.QIC3
irqchip@(====ptrval====)  irqchip@(====ptrval====)-3  \_SB_.TCS0.QIC0
\_SB_.TCS0.QIC2

There is same problem in some subsystem's dmesg output. Moreover,
someone may call "%p" in a similar case. In addition, the timing of
crng initialization done may vary on different system. So, the change
is made in vsprintf.c.

Link: https://patchwork.kernel.org/patch/10185199/

Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: Joey Zheng <yu.zheng@hxt-semitech.com>
Suggested-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: Shunyong Yang <shunyong.yang@hxt-semitech.com>
---
 lib/vsprintf.c | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)

diff --git a/lib/vsprintf.c b/lib/vsprintf.c
index 77ee6ced11b1..9fdc8376752a 100644
--- a/lib/vsprintf.c
+++ b/lib/vsprintf.c
@@ -1700,9 +1700,25 @@ static char *ptr_to_id(char *buf, char *end, void *ptr, struct printf_spec spec)
 	const int default_width = 2 * sizeof(ptr);
 
 	if (unlikely(!have_filled_random_ptr_key)) {
+		char *ptrval_str = "(ptrval)";
+		char str[default_width + 1];
+		int len = strlen(ptrval_str);
+
+		if (default_width > len) {
+			int pos;
+
+			pos = (default_width - len) / 2;
+			memset(str, '=', default_width);
+			memcpy(str + pos + 1, ptrval_str + 1, len - 2);
+			str[0] = '(';
+			str[default_width - 1] = ')';
+			str[default_width] = 0;
+			ptrval_str = str;
+		}
+
 		spec.field_width = default_width;
 		/* string length must be less than default_width */
-		return string(buf, end, "(ptrval)", spec);
+		return string(buf, end, ptrval_str, spec);
 	}
 
 #ifdef CONFIG_64BIT
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] vsprintf: replace space with readable '=' before crng is ready
  2018-02-13  6:20 [PATCH] vsprintf: replace space with readable '=' before crng is ready Shunyong Yang
@ 2018-02-13  7:16 ` Rasmus Villemoes
  2018-02-13  7:57   ` Yang, Shunyong
  2018-02-13 19:46   ` Tobin C. Harding
  0 siblings, 2 replies; 4+ messages in thread
From: Rasmus Villemoes @ 2018-02-13  7:16 UTC (permalink / raw)
  To: Shunyong Yang; +Cc: me, linux-kernel, Andy Shevchenko, Joey Zheng

On 13 February 2018 at 07:20, Shunyong Yang
<shunyong.yang@hxt-semitech.com> wrote:

>
> This patch replaces space with readable "=" when output needs padding.
> Following is the output after applying the patch,

> Suggested-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
>
>         if (unlikely(!have_filled_random_ptr_key)) {
> +               char *ptrval_str = "(ptrval)";
> +               char str[default_width + 1];
> +               int len = strlen(ptrval_str);
> +
> +               if (default_width > len) {
> +                       int pos;
> +
> +                       pos = (default_width - len) / 2;
> +                       memset(str, '=', default_width);
> +                       memcpy(str + pos + 1, ptrval_str + 1, len - 2);
> +                       str[0] = '(';
> +                       str[default_width - 1] = ')';
> +                       str[default_width] = 0;
> +                       ptrval_str = str;
> +               }
> +

I'm sorry, but that's way too convoluted.

>                 spec.field_width = default_width;
>                 /* string length must be less than default_width */
> -               return string(buf, end, "(ptrval)", spec);
> +               return string(buf, end, ptrval_str, spec);
>         }

I was thinking of just doing something like

-               return string(buf, end, "(ptrval)", spec);
+               return string(buf, end, sizeof(void *) == 8 ?
"(====ptrval====)" : "(ptrval)", spec);

Rasmus

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] vsprintf: replace space with readable '=' before crng is ready
  2018-02-13  7:16 ` Rasmus Villemoes
@ 2018-02-13  7:57   ` Yang, Shunyong
  2018-02-13 19:46   ` Tobin C. Harding
  1 sibling, 0 replies; 4+ messages in thread
From: Yang, Shunyong @ 2018-02-13  7:57 UTC (permalink / raw)
  To: linux; +Cc: linux-kernel, andriy.shevchenko, Zheng, Joey, me

Hi, Rasmus,

On Tue, 2018-02-13 at 08:16 +0100, Rasmus Villemoes wrote:
> On 13 February 2018 at 07:20, Shunyong Yang
> <shunyong.yang@hxt-semitech.com> wrote:
> 
> > 
> > 
> > This patch replaces space with readable "=" when output needs
> > padding.
> > Following is the output after applying the patch,
> > 
> > Suggested-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
> > 
> >         if (unlikely(!have_filled_random_ptr_key)) {
> > +               char *ptrval_str = "(ptrval)";
> > +               char str[default_width + 1];
> > +               int len = strlen(ptrval_str);
> > +
> > +               if (default_width > len) {
> > +                       int pos;
> > +
> > +                       pos = (default_width - len) / 2;
> > +                       memset(str, '=', default_width);
> > +                       memcpy(str + pos + 1, ptrval_str + 1, len -
> > 2);
> > +                       str[0] = '(';
> > +                       str[default_width - 1] = ')';
> > +                       str[default_width] = 0;
> > +                       ptrval_str = str;
> > +               }
> > +
> I'm sorry, but that's way too convoluted.
> 
> > 
> >                 spec.field_width = default_width;
> >                 /* string length must be less than default_width */
> > -               return string(buf, end, "(ptrval)", spec);
> > +               return string(buf, end, ptrval_str, spec);
> >         }
> I was thinking of just doing something like
> 
> -               return string(buf, end, "(ptrval)", spec);
> +               return string(buf, end, sizeof(void *) == 8 ?
> "(====ptrval====)" : "(ptrval)", spec);
> 

Thanks a lot! It's more straightforward considering 32/64-bit system.

Thanks.
Shunyong.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] vsprintf: replace space with readable '=' before crng is ready
  2018-02-13  7:16 ` Rasmus Villemoes
  2018-02-13  7:57   ` Yang, Shunyong
@ 2018-02-13 19:46   ` Tobin C. Harding
  1 sibling, 0 replies; 4+ messages in thread
From: Tobin C. Harding @ 2018-02-13 19:46 UTC (permalink / raw)
  To: Rasmus Villemoes; +Cc: Shunyong Yang, linux-kernel, Andy Shevchenko, Joey Zheng

On Tue, Feb 13, 2018 at 08:16:57AM +0100, Rasmus Villemoes wrote:
> On 13 February 2018 at 07:20, Shunyong Yang
> <shunyong.yang@hxt-semitech.com> wrote:
> 
> >
> > This patch replaces space with readable "=" when output needs padding.
> > Following is the output after applying the patch,
> 
> > Suggested-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
> >
> >         if (unlikely(!have_filled_random_ptr_key)) {
> > +               char *ptrval_str = "(ptrval)";
> > +               char str[default_width + 1];
> > +               int len = strlen(ptrval_str);
> > +
> > +               if (default_width > len) {
> > +                       int pos;
> > +
> > +                       pos = (default_width - len) / 2;
> > +                       memset(str, '=', default_width);
> > +                       memcpy(str + pos + 1, ptrval_str + 1, len - 2);
> > +                       str[0] = '(';
> > +                       str[default_width - 1] = ')';
> > +                       str[default_width] = 0;
> > +                       ptrval_str = str;
> > +               }
> > +
> 
> I'm sorry, but that's way too convoluted.
> 
> >                 spec.field_width = default_width;
> >                 /* string length must be less than default_width */
> > -               return string(buf, end, "(ptrval)", spec);
> > +               return string(buf, end, ptrval_str, spec);
> >         }
> 
> I was thinking of just doing something like
> 
> -               return string(buf, end, "(ptrval)", spec);
> +               return string(buf, end, sizeof(void *) == 8 ?
> "(====ptrval====)" : "(ptrval)", spec);

Awesome.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-02-13 19:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-13  6:20 [PATCH] vsprintf: replace space with readable '=' before crng is ready Shunyong Yang
2018-02-13  7:16 ` Rasmus Villemoes
2018-02-13  7:57   ` Yang, Shunyong
2018-02-13 19:46   ` Tobin C. Harding

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.