]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
sandbox: correct determination of the text base
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Sat, 15 May 2021 17:29:13 +0000 (19:29 +0200)
committerSimon Glass <sjg@chromium.org>
Sat, 5 Jun 2021 13:35:47 +0000 (07:35 -0600)
os_find_text_base() assumes that first line of /proc/self/maps holds
information about the text. Hence we must call the function before calling
os_malloc() which calls mmap(0x10000000,).

Failure to do so has led to incorrect values for pc_reloc when an
exception was reported

    => exception undefined

    Illegal instruction
    pc = 0x5628d82e9d3c, pc_reloc = 0x5628c82e9d3c

as well as incorrect output of the bdinfo command

    => bdinfo
    relocaddr   = 0x0000000007858000
    reloc off   = 0x0000000010000000

Fixes: b308d9fd18fa ("sandbox: Avoid using malloc() for system state")
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
arch/sandbox/cpu/start.c

index 63ca514ebd57af41d6fd7b32970f2f96de4f998c..6bb94473f195b70f6a37752f6f97f91673148984 100644 (file)
@@ -436,10 +436,13 @@ void sandbox_reset(void)
 int main(int argc, char *argv[])
 {
        struct sandbox_state *state;
+       void * text_base;
        gd_t data;
        int size;
        int ret;
 
+       text_base = os_find_text_base();
+
        /*
         * Copy argv[] so that we can pass the arguments in the original
         * sequence when resetting the sandbox.
@@ -452,7 +455,7 @@ int main(int argc, char *argv[])
 
        memset(&data, '\0', sizeof(data));
        gd = &data;
-       gd->arch.text_base = os_find_text_base();
+       gd->arch.text_base = text_base;
 
        ret = state_init();
        if (ret)