函数逻辑报告 |
Source Code:kernel\bpf\stackmap.c |
Create Date:2022-07-27 14:44:32 |
Last Modify:2020-03-12 14:18:49 | Copyright©Brick |
首页 | 函数Tree |
注解内核,赢得工具 | 下载SCCT | English |
函数名称:Parse build id from the note segment. This logic can be shared between* 32-bit and 64-bit system, because Elf32_Nhdr and Elf64_Nhdr are* identical.
函数原型:static inline int stack_map_parse_build_id(void *page_addr, unsigned char *build_id, void *note_start, Elf32_Word note_size)
返回类型:int
参数:
类型 | 参数 | 名称 |
---|---|---|
void * | page_addr | |
unsigned char * | build_id | |
void * | note_start | |
Elf32_Word | note_size |
163 | note_offs等于0 |
166 | 如果note_start小于page_addr或note_start加note_size小于note_start则返回:负EINVAL |
170 | 如果note_start加note_size大于page_addr加PAGE_SIZE则返回:负EINVAL |
173 | 当note_offs加sizeof(Elf32_Nhdr)小于note_size循环 |
174 | nhdr等于note_start加note_offs |
176 | 如果n_type恒等于BPF_BUILD_ID且Name size 恒等于"GNU"的长度且Content size 大于0且Content size 小于等于BPF_BUILD_ID_SIZE则 |
180 | 内存复制(build_id, note_start + note_offs + @a is a power of 2 value ("GNU"的长度, 4) + sizeof(Elf32_Nhdr), Content size ) |
184 | memset(build_id + Content size , 0, BPF_BUILD_ID_SIZE - Content size ) |
186 | 返回:0 |
194 | 返回:负EINVAL |
名称 | 描述 |
---|---|
stack_map_get_build_id_32 | Parse build ID from 32-bit ELF |
stack_map_get_build_id_64 | Parse build ID from 64-bit ELF |
源代码转换工具 开放的插件接口 | X |
---|---|
支持:c/c++/esqlc/java Oracle/Informix/Mysql 插件可实现:逻辑报告 代码生成和批量转换代码 |