Ai
2 Star 0 Fork 0

mirrors_android_source/apf

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
apf_disassembler.c 1.74 KB
一键复制 编辑 原始数据 按行查看 历史
/*
* Copyright 2016, The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include "disassembler.h"
#include "next/apf_defs.h"
#include "next/apf.h"
// Disassembles an APF program. A hex dump of the program is supplied on stdin.
//
// NOTE: This is a simple debugging tool not meant for shipping or production use. It is by no
// means hardened against malicious input and contains known vulnerabilities.
//
// Example usage:
// adb shell dumpsys wifi ipmanager | sed '/Last program:/,+1!d;/Last program:/d;s/[ ]*//' | out/host/linux-x86/bin/apf_disassembler
int main(void) {
uint32_t program_len = 0;
uint8_t program[10000];
// Read in hex program bytes
int byte;
while (scanf("%2x", &byte) == 1 && program_len < sizeof(program)) {
program[program_len++] = byte;
}
const u8 v6_marker = JMP_OPCODE << 3 | 1;
const bool is_v6 = (program[0] & 0b11111001) == v6_marker;
if (is_v6) {
printf("APFv6 program:\n");
} else {
printf("APFv4 program:\n");
}
for (uint32_t pc = 0; pc < program_len + 2;) {
const disas_ret ret = apf_disassemble(program, program_len, &pc, is_v6);
printf("%s%s\n", ret.prefix, ret.content);
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_android_source/apf.git
git@gitee.com:mirrors_android_source/apf.git
mirrors_android_source
apf
apf
main

搜索帮助