-
Notifications
You must be signed in to change notification settings - Fork 366
llext: fully relocatable llext modules in virtual memory #11037
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
lgirdwood
wants to merge
3
commits into
thesofproject:main
Choose a base branch
from
lgirdwood:topic/llext-relocatable
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,2 @@ | ||
| CONFIG_LLEXT_TYPE_ELF_RELOCATABLE=y | ||
| CONFIG_LLEXT_EXPORT_BUILTINS_BY_SLID=y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,7 +19,7 @@ | |
| #include <rtos/spinlock.h> | ||
| #include <sof/lib/cpu-clk-manager.h> | ||
| #include <sof/lib_manager.h> | ||
| #include <sof/lib/regions_mm.h> | ||
| #include <sof/lib/vpage.h> | ||
| #include <sof/llext_manager.h> | ||
| #include <sof/audio/module_adapter/module/generic.h> | ||
| #include <sof/audio/module_adapter/module/modules.h> | ||
|
|
@@ -50,6 +50,94 @@ extern struct tr_ctx lib_manager_tr; | |
|
|
||
| #define PAGE_SZ CONFIG_MM_DRV_PAGE_SIZE | ||
|
|
||
| #include <zephyr/llext/elf.h> | ||
|
|
||
| static uintptr_t llext_manager_alloc_vma(size_t size) | ||
| { | ||
| size_t num_pages = ALIGN_UP(size, PAGE_SZ) / PAGE_SZ; | ||
| void *vma; | ||
|
|
||
| vma = vpage_reserve(num_pages); | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Today this is both text/data, but will have to be updated later to split text/data. |
||
| if (!vma) { | ||
| tr_err(&lib_manager_tr, "llext_manager_alloc_vma: failed to reserve %zu pages", | ||
| num_pages); | ||
| return 0; | ||
| } | ||
|
|
||
| return (uintptr_t)vma; | ||
| } | ||
|
|
||
| void llext_manager_free_vma(uintptr_t vma, size_t size) | ||
| { | ||
| if (!vma || !size) | ||
| return; | ||
|
|
||
| vpage_release((void *)vma); | ||
| } | ||
|
|
||
| static enum llext_mem llext_manager_get_sec_mem_idx(const char *name, const elf_shdr_t *shdr) | ||
| { | ||
| if (strcmp(name, ".exported_sym") == 0) | ||
| return LLEXT_MEM_EXPORT; | ||
|
|
||
| switch (shdr->sh_type) { | ||
| case SHT_NOBITS: | ||
| return LLEXT_MEM_BSS; | ||
| case SHT_PROGBITS: | ||
| if (shdr->sh_flags & SHF_EXECINSTR) | ||
| return LLEXT_MEM_TEXT; | ||
| else if (shdr->sh_flags & SHF_WRITE) | ||
| return LLEXT_MEM_DATA; | ||
| else | ||
| return LLEXT_MEM_RODATA; | ||
| case SHT_PREINIT_ARRAY: | ||
| return LLEXT_MEM_PREINIT; | ||
| case SHT_INIT_ARRAY: | ||
| return LLEXT_MEM_INIT; | ||
| case SHT_FINI_ARRAY: | ||
| return LLEXT_MEM_FINI; | ||
| default: | ||
| return LLEXT_MEM_COUNT; | ||
| } | ||
| } | ||
|
|
||
| static size_t llext_manager_layout_sections(uint8_t *elf_buf, uintptr_t vma_base) | ||
| { | ||
| elf_ehdr_t *hdr = (elf_ehdr_t *)elf_buf; | ||
| elf_shdr_t *shdrs = (elf_shdr_t *)(elf_buf + hdr->e_shoff); | ||
| elf_shdr_t *shstr_shdr = shdrs + hdr->e_shstrndx; | ||
| const char *shstrtab = (const char *)(elf_buf + shstr_shdr->sh_offset); | ||
|
|
||
| uintptr_t current_vma = vma_base; | ||
| enum llext_mem last_region = LLEXT_MEM_COUNT; | ||
|
|
||
| for (int i = 0; i < hdr->e_shnum; i++) { | ||
| elf_shdr_t *shdr = shdrs + i; | ||
|
|
||
| if (!(shdr->sh_flags & SHF_ALLOC) || shdr->sh_size == 0) | ||
| continue; | ||
|
|
||
| const char *name = shstrtab + shdr->sh_name; | ||
| enum llext_mem s_region = llext_manager_get_sec_mem_idx(name, shdr); | ||
|
|
||
| if (s_region == LLEXT_MEM_COUNT) | ||
| continue; | ||
|
|
||
| if (last_region != LLEXT_MEM_COUNT && last_region != s_region) { | ||
| current_vma = ALIGN_UP(current_vma, PAGE_SZ); | ||
| } | ||
| last_region = s_region; | ||
|
|
||
| current_vma = ALIGN_UP(current_vma, shdr->sh_addralign); | ||
| if (vma_base) { | ||
| shdr->sh_addr = current_vma; | ||
| } | ||
| current_vma += shdr->sh_size; | ||
| } | ||
|
|
||
| return current_vma - vma_base; | ||
| } | ||
|
|
||
| static int llext_manager_update_flags(void __sparse_cache *vma, size_t size, uint32_t flags) | ||
| { | ||
| size_t pre_pad_size = (uintptr_t)vma & (PAGE_SZ - 1); | ||
|
|
@@ -251,19 +339,10 @@ static int llext_manager_load_module(struct lib_manager_module *mctx) | |
| const struct llext_loader *ldr = &mctx->ebl->loader; | ||
| const struct llext *ext = mctx->llext; | ||
|
|
||
| /* find dedicated virtual memory zone */ | ||
| const struct sys_mm_drv_region *virtual_memory_regions = sys_mm_drv_query_memory_regions(); | ||
| const struct sys_mm_drv_region *virtual_region; | ||
| /* use the shared virtual page allocator's memory region */ | ||
| const struct sys_mm_drv_region *virtual_region = vpage_get_region(); | ||
|
|
||
| if (!virtual_memory_regions) | ||
| return -EFAULT; | ||
|
|
||
| SYS_MM_DRV_MEMORY_REGION_FOREACH(virtual_memory_regions, virtual_region) { | ||
| if (virtual_region->attr == VIRTUAL_REGION_LLEXT_LIBRARIES_ATTR) | ||
| break; | ||
| } | ||
|
|
||
| if (!virtual_region->size) | ||
| if (!virtual_region || !virtual_region->size) | ||
| return -EFAULT; | ||
|
|
||
| /* Copy Code */ | ||
|
|
@@ -383,6 +462,26 @@ static int llext_manager_link(const char *name, | |
| } | ||
|
|
||
| if (!*llext || mctx->mapped) { | ||
| if (!*llext) { | ||
| uint8_t *elf_buf = (uint8_t *)mctx->ebl->buf; | ||
| size_t total_size = llext_manager_layout_sections(elf_buf, 0); | ||
| if (total_size == 0) { | ||
| tr_err(&lib_manager_tr, "llext_manager_link: layout sections failed"); | ||
| return -EINVAL; | ||
| } | ||
|
|
||
| uintptr_t vma_base = llext_manager_alloc_vma(total_size); | ||
| if (!vma_base) { | ||
| tr_err(&lib_manager_tr, "llext_manager_link: VMA allocation failed"); | ||
| return -ENOMEM; | ||
| } | ||
|
|
||
| mctx->vma_base = vma_base; | ||
| mctx->vma_size = total_size; | ||
|
|
||
| llext_manager_layout_sections(elf_buf, vma_base); | ||
| } | ||
|
|
||
| /* | ||
| * Either the very first time loading this module, or the module | ||
| * is already mapped, we just call llext_load() to refcount it | ||
|
|
@@ -395,8 +494,15 @@ static int llext_manager_link(const char *name, | |
| }; | ||
|
|
||
| ret = llext_load(ldr, name, llext, &ldr_parm); | ||
| if (ret) | ||
| if (ret) { | ||
| tr_err(&lib_manager_tr, "llext_load failed: ret=%d", ret); | ||
| if (mctx->vma_base) { | ||
| llext_manager_free_vma(mctx->vma_base, mctx->vma_size); | ||
| mctx->vma_base = 0; | ||
| mctx->vma_size = 0; | ||
| } | ||
| return ret; | ||
| } | ||
| } | ||
|
|
||
| /* All code sections */ | ||
|
|
@@ -1104,16 +1210,3 @@ bool comp_is_llext(struct comp_dev *comp) | |
| return mod && module_is_llext(mod); | ||
| } | ||
|
|
||
| static int llext_memory_region_init(void) | ||
| { | ||
| int ret; | ||
|
|
||
| /* add a region for loadable libraries */ | ||
| ret = adsp_add_virtual_memory_region(CONFIG_LIBRARY_BASE_ADDRESS, | ||
| CONFIG_LIBRARY_REGION_SIZE, | ||
| VIRTUAL_REGION_LLEXT_LIBRARIES_ATTR); | ||
|
|
||
| return ret; | ||
| } | ||
|
|
||
| SYS_INIT(llext_memory_region_init, POST_KERNEL, 1); | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
DIV_ROUND_UP()