* [PATCH] hexdump: fix for non-naturally-aligned buffers
@ 2015-06-21 16:36 =?UTF-8?q?Horacio=20Mijail=20Ant=C3=B3n=20Quiles?=
2015-06-21 16:47 ` Joe Perches
0 siblings, 1 reply; 2+ messages in thread
From: =?UTF-8?q?Horacio=20Mijail=20Ant=C3=B3n=20Quiles?= @ 2015-06-21 16:36 UTC (permalink / raw)
To: Andrew Morton, Andy Shevchenko, David Howells, Vivek Goyal,
linux-kernel, trivial
Calling hex_dump_to_buffer() with a buffer non-naturally-aligned to the
groupsize causes non-naturally-aligned memory accesses. This was causing
a kernel panic on the BlackFin BF527, when such a call was made by
ubifs_scanned_corruption() in fs/ubifs/scan.c .
To fix this, if the buffer is non-naturally aligned in a platform which
does not define CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS, then change the
groupsize to 1, so alignment is no longer a problem.
This behavior is coherent with the way the function currently deals with
inappropriate parameter combinations, which is to fall back to safe
"defaults", even if that means changing the output format and the implicit
access patterns that could have been expected.
Signed-off-by: Horacio Mijail Antón Quiles <hmijail@gmail.com>
---
lib/hexdump.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/lib/hexdump.c b/lib/hexdump.c
index 7ea0969..ba9f384 100644
--- a/lib/hexdump.c
+++ b/lib/hexdump.c
@@ -123,6 +123,11 @@ int hex_dump_to_buffer(const void *buf, size_t len, int rowsize, int groupsize,
groupsize = 1;
if ((len % groupsize) != 0) /* no mixed size output */
groupsize = 1;
+
+ /* fall back to 1-byte groups if buf is not naturally aligned */
+ if (!IS_ENABLED(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) &&
+ (((uintptr_t)buf % groupsize) != 0))
+ groupsize = 1;
ngroups = len / groupsize;
ascii_column = rowsize * 2 + rowsize / groupsize + 1;
--
2.1.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] hexdump: fix for non-naturally-aligned buffers
2015-06-21 16:36 [PATCH] hexdump: fix for non-naturally-aligned buffers =?UTF-8?q?Horacio=20Mijail=20Ant=C3=B3n=20Quiles?=
@ 2015-06-21 16:47 ` Joe Perches
0 siblings, 0 replies; 2+ messages in thread
From: Joe Perches @ 2015-06-21 16:47 UTC (permalink / raw)
To: Horacio Mijail Antón Quiles
Cc: Andrew Morton, Andy Shevchenko, David Howells, Vivek Goyal,
linux-kernel, trivial
On Sun, 2015-06-21 at 18:36 +0200,
=?UTF-8?q?Horacio=20Mijail=20Ant=C3=B3n=20Quiles?= wrote:
> Calling hex_dump_to_buffer() with a buffer non-naturally-aligned to the
> groupsize causes non-naturally-aligned memory accesses. This was causing
> a kernel panic on the BlackFin BF527, when such a call was made by
> ubifs_scanned_corruption() in fs/ubifs/scan.c .
[]
> diff --git a/lib/hexdump.c b/lib/hexdump.c
[]
> @@ -123,6 +123,11 @@ int hex_dump_to_buffer(const void *buf, size_t len, int rowsize, int groupsize,
> groupsize = 1;
> if ((len % groupsize) != 0) /* no mixed size output */
> groupsize = 1;
> +
> + /* fall back to 1-byte groups if buf is not naturally aligned */
> + if (!IS_ENABLED(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) &&
> + (((uintptr_t)buf % groupsize) != 0))
> + groupsize = 1;
Maybe !IS_ALIGNED(buf, groupsize) reads better.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-06-21 16:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-21 16:36 [PATCH] hexdump: fix for non-naturally-aligned buffers =?UTF-8?q?Horacio=20Mijail=20Ant=C3=B3n=20Quiles?=
2015-06-21 16:47 ` Joe Perches
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox