diff mbox series

[U-Boot,V2,3/4] cmd: aes: use map_sysmem when accessing memory

Message ID 1569256745-15380-4-git-send-email-philippe.reynes@softathome.com
State Superseded
Delegated to: Simon Glass
Headers show
Series pytest: add a simple test to check the command aes | expand

Commit Message

Philippe REYNES Sept. 23, 2019, 4:39 p.m. UTC
The aes command used to segfault when accessing memory in sandbox.
The pointer accesses should be mapped.

Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
---
 cmd/aes.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

Comments

Simon Glass Sept. 23, 2019, 5:33 p.m. UTC | #1
On Mon, 23 Sep 2019 at 09:39, Philippe Reynes
<philippe.reynes@softathome.com> wrote:
>
> The aes command used to segfault when accessing memory in sandbox.
> The pointer accesses should be mapped.
>
> Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
> ---
>  cmd/aes.c | 9 +++++----
>  1 file changed, 5 insertions(+), 4 deletions(-)
>
> diff --git a/cmd/aes.c b/cmd/aes.c
> index 7ff4a71..3db110c 100644
> --- a/cmd/aes.c
> +++ b/cmd/aes.c
> @@ -11,6 +11,7 @@
>  #include <malloc.h>
>  #include <asm/byteorder.h>
>  #include <linux/compiler.h>
> +#include <mapmem.h>
>
>  /**
>   * do_aes() - Handle the "aes" command-line command
> @@ -46,10 +47,10 @@ static int do_aes(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
>         dst_addr = simple_strtoul(argv[5], NULL, 16);
>         len = simple_strtoul(argv[6], NULL, 16);
>
> -       key_ptr = (uint8_t *)key_addr;
> -       iv_ptr = (uint8_t *)iv_addr;
> -       src_ptr = (uint8_t *)src_addr;
> -       dst_ptr = (uint8_t *)dst_addr;
> +       key_ptr = (uint8_t *)map_sysmem(key_addr, 128 / 8);
> +       iv_ptr = (uint8_t *)map_sysmem(iv_addr, 128 / 8);
> +       src_ptr = (uint8_t *)map_sysmem(src_addr, len);
> +       dst_ptr = (uint8_t *)map_sysmem(dst_addr, len);
>
>         /* First we expand the key. */
>         aes_expand_key(key_ptr, key_exp);

Please can you unmap_sysmem() as well?

Regards,
SImon
diff mbox series

Patch

diff --git a/cmd/aes.c b/cmd/aes.c
index 7ff4a71..3db110c 100644
--- a/cmd/aes.c
+++ b/cmd/aes.c
@@ -11,6 +11,7 @@ 
 #include <malloc.h>
 #include <asm/byteorder.h>
 #include <linux/compiler.h>
+#include <mapmem.h>
 
 /**
  * do_aes() - Handle the "aes" command-line command
@@ -46,10 +47,10 @@  static int do_aes(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
 	dst_addr = simple_strtoul(argv[5], NULL, 16);
 	len = simple_strtoul(argv[6], NULL, 16);
 
-	key_ptr = (uint8_t *)key_addr;
-	iv_ptr = (uint8_t *)iv_addr;
-	src_ptr = (uint8_t *)src_addr;
-	dst_ptr = (uint8_t *)dst_addr;
+	key_ptr = (uint8_t *)map_sysmem(key_addr, 128 / 8);
+	iv_ptr = (uint8_t *)map_sysmem(iv_addr, 128 / 8);
+	src_ptr = (uint8_t *)map_sysmem(src_addr, len);
+	dst_ptr = (uint8_t *)map_sysmem(dst_addr, len);
 
 	/* First we expand the key. */
 	aes_expand_key(key_ptr, key_exp);