the config of uvisor_box_heapsize can't set to 17*1024
Closed this issue · 9 comments
when i set uvisor_box_heapsize(161024),no error. when i set uvisor_box_heapsize(171024),
and compile the program ,the error log is:
c:/program files (x86)/gnu tools arm embedded/4.9 2015q1/bin/../lib/gcc/arm-none-eabi/4.9.3/../../../../arm-none-eabi/bin/ld.exe: address 0x20002080 of ./BUILD/K64F/GCC_ARM/mbed-os-example-uvisor-master.elf section .uvisor.bss' is not within region
m_data'
so can i set the box_heapsize to 17*1024?
ARM Internal Ref: IOTSEC-493
Probably not, otherwise there won't be an error reported by the linker.
Refer to the linker script: https://github.com/ARMmbed/mbed-os/blob/master/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/device/TOOLCHAIN_GCC_ARM/MK64FN1M0xxx12.ld
Apparently you have request too big chunk of memory for your box, so the resulting image won't fit in to the memory.
I would advise double checking whether you really need that much heap memory for your box.
Hi alzix,thanks for your answer!
In my graduation project, i ‘m trying to combine mbedTLS and mbed uvisor to protect https commmunication。some errors i have sloved,some not。
For example,in https communication there need malloc 341024 memory in mbedtls_ssl_setup function.
because it's use malloc() ,whatever heap size i set to secure_box,it always fails.then I find use secure_malloc(secure,161024) ,can success malloc 16K memory,but use
if(mbedtls_calloc(1,81024)==NULL||mbedtls_calloc(1,81024)==NULL),i failed. the mbedtls_calloc use calloc function .so i try to replace mbedtls_calloc to secure_malloc() in mbetls_library. unfortunately,it halt in uvisor_api(). and i follow the uvsior debug ,can‘t see the reason why it halt。
Thanks !
could you please share your code snippet with us?
hi alzix
the project is upload to github, the url is https://github.com/gylalahuo/test1.git.
now i only want realise https communicate with my server in secure box. the main problem is memory malloc. in https communication there are many function use calloc() function. it seems thart use calloc() function directly,can't get the memory i want.
- Actually you don't need to replace the mbedtls
calloc()
calls because if you enable uvisor then all the memory operations are swapped by thesecure_*()
calls, so callingcalloc()
will actually callsecure_calloc()
. - Wouldn't it be easier just to change the linker script of the target you are working on?
The linker error you encounter is because the.uvisor_bss
section got to big because of the huge heap you gave for the https box which caused this section to overflow the boundries of them_data
memory area.
So you can increase the length of them_data
memory area and of course move the starting address of them_data_2
memory area to accommodate your memory requirements.
For example: the memory areas of K64F board: https://github.com/ARMmbed/mbed-os/blob/master/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/device/TOOLCHAIN_GCC_ARM/MK64FN1M0xxx12.ld#L78:L86
Hi mikisch81 ,
i will try it on your advise。but i still have a probelm. If i call https function in my main.cpp ,there no error ,when i use mbedtls_calloc() function to get 32K heap size. but if i call https function in secure box in https.cpp , it can't get the corresponding heap size。i still don't find the cause of this problem.
Thanks!
what is the relation of
UVISOR_SET_PAGE_HEAP(), UVISOR_BOX_HEAPSIZE(), secure_allocator_create_with_page() .
from the test. UVISOR_BOX_HEAPSIZE() allocates memory seems to don't have relation of secure_create_with_page() , the memory allocated by secure_create_with_page() can bigger than UVISOR_BOX_HEAPSIZE().
hi alzix ,mikisch81,
Thank you for your help.
i have solved the memory allocate problem after do a lot of experiments. but there's another problem .
now i'm analyzing the reason for this problem .