转:http://blog.csdn.net/roland_sun/article/details/34109569
对原文进行了修改,添加。
对于Android系统来说,底层本质上来说还是一个Linux系统,所以过往在Linux上常用的技巧,在Android平台上都可以实现。
比如,可以利用ptrace()函数来attach到一个进程上,从而可以修改对应该进程的内存内容和寄存器的值。
但是,有了这些功能,要想真正做到随意hook一个进程中的指定函数,还是有很多工作要做。而adbi(The Android Dynamic Binary Instrumentation Toolkit)就是一个通用的框架,使得hook变得异常简单。可以从这里获得其源代码:https://github.com/crmulliner/adbi。
它的基本实现原理是利用ptrace()函数attach到一个进程上,然后在其调用序列中插入一个调用dlopen()函数的步骤,将一个实现预备好的.so文件加载到要hook的进程中,最终由这个加载的.so文件在初始化函数中hook指定的函数。
整个adbi工具集由两个主要模块组成,分别是用于.so文件注入的进程劫持工具(hijack tool)和一个修改函数入口的基础库。接下来,我们还是通过阅读代码来分别了解这两个模块的实现原理,本篇我们先将重点放在劫持工具的实现上。
前面的介绍中已经提到过了,这个模块的作用是将一个调动dlopen()函数的步骤插入到指定进程的调用序列中。
要做到这点,需要解决几个问题,一是如何获得目标进程中dlopen()函数的调用地址,二是如何插入一个调用dlopen()函数的步骤。
好,我们先来看看第一个问题是如何解决的。在adbi中,具体是通过以下几行代码来找到目标进程中dlopen()函数的起始地址的:
首先用dlopen()在当前进程中加载libdl.so动态库,接着用dlsym()函数获得dlopen()函数的调用地址。感觉有点先有鸡还是先有蛋的问题了,这里稍微说明一下,libdl.so库肯定早就已经加载到进程中了,这里再加载一次其实并不会真的把这个动态库再在内存中的另一个位置加载一次,而是返回已经加载过的地址。
但是,获得了dlopen()函数在当前进程中的地址后并没有用,因为libdl.so是动态库,每次会被动态的加载到任意的一个地址上去,并不会固定。所以,当前进程中dlopen()函数的地址,一般情况下并不等于别的进程中dlopen()函数的地址。那要如何才能获得指定进程中的dlopen()函数的地址呢?代码中调用到了find_linker()函数,我们接下来看看它的实现:
在这个函数里,主要又调用了两个函数,一个是load_memmap(),另一个是find_linker_mem()。下面我们先来分析load_memmap()函数,这个函数主要由三个步骤组成:
首先,会打开一个内存文件,获得其句柄。该文件路径是“/proc/<进程号>/maps”,作用就是读出指定进程的内存映射信息,其格式大概如下:
读完之后,再下来就是一行一行的解释:
如果名字是“stack”,表明这段内存用于栈。从前面的格式中可以看出,会有几行都叫一个名字的情况,接下来的代码会将这些连续的并且名字相同的内存段合并一下。
好了,现在就已经得到了指定进程的内存映射情况,包括起始地址、结束地址和名称。
接下来,我们继续看find_linker_mem()函数做了些什么:
顺便提一句,linker是Android提供的动态链接器,不同于普通的Linux。dlopen()函数就是在linker里面定义的(bionic/linker/dlfcn.cpp):
因为要注入的进程也在本机上运行,肯定用的是同一个linker,所以其内部的dlopen()函数和linker头的偏移量是固定的,这样计算其它进程内dlopen()函数的地址就非常简单了。先在本进程内,计算出dlopen()相对于linker头的偏移量,再加上要注入进程的linker头地址就好了。事实上,adbi也是这么做的,大家可以回过头去分析一下本节开头的那段代码。
好了,获得了目标进程中dlopen()函数地址后,接下来就要解决第二个问题了,即如何将调用dlopen()函数的步骤插入到目标进程的中去。要做到这步,当然肯定是要请ptrace()出马了:
unsigned int sc[] = { 0xe59f0040, // ldr r0, [pc, #64] ; 48 <.text+0x48> 0xe3a01000, // mov r1, #0 ; 0x0 0xe1a0e00f, // mov lr, pc 0xe59ff038, // ldr pc, [pc, #56] ; 4c <.text+0x4c> 0xe59fd02c, // ldr sp, [pc, #44] ; 44 <.text+0x44> 0xe59f0010, // ldr r0, [pc, #16] ; 30 <.text+0x30> 0xe59f1010, // ldr r1, [pc, #16] ; 34 <.text+0x34> 0xe59f2010, // ldr r2, [pc, #16] ; 38 <.text+0x38> 0xe59f3010, // ldr r3, [pc, #16] ; 3c <.text+0x3c> 0xe59fe010, // ldr lr, [pc, #16] ; 40 <.text+0x40> 0xe59ff010, // ldr pc, [pc, #16] ; 44 <.text+0x44> 0xe1a00000, // nop r0 0xe1a00000, // nop r1 0xe1a00000, // nop r2 0xe1a00000, // nop r3 0xe1a00000, // nop lr 0xe1a00000, // nop pc 0xe1a00000, // nop sp 0xe1a00000, // nop addr of libname 0xe1a00000, // nop dlopenaddr };
初始化时,数组的后面都被设置成空指令,在获得了目标进程的寄存器值后,会对它们重新赋值:
注意:图片中 ldr r0,[pc,#20]相关计算指令应该是 ldr r0,[pc,#16].
大家知道,对于栈来说,是从高内存向低内存扩展的,但是程序的执行以及数据的读取正好相反,是从低内存到高内存的。
还有一点需要说明一下,对于ARM处理器来说,pc寄存器的值,指向的不是当前正在执行指令的地址,而是往下第二条指令的地址。
好,我们正式开始分析代码的含义,指令将从codeaddr指示的位置从低到高依次执行。
第一条指令将pc寄存器的值加上64,读出那个地方的内容(4个字节),然后放到寄存器r0中。刚才说过了,pc寄存器值指向的是当前指令位置加8个字节,也就是说这条指令实际读出的是当前指令位置向下72个字节。由于sc数组是int型的,就是数组当前元素位置向下18个元素处。数一数,刚好是libaddr的位置。所以这条指令是为了让r0寄存器指向.so共享库路径名字符串。
第二条指令很简单,是将0赋值给寄存器r1。
第三条指令用来将pc寄存器值保存到lr寄存器中,这样做的目的是为了调用dlopen()函数返回后,跳转到指令“ldr sp, [pc, #44]”处。
第四条指令是将pc加上56处的数值加载到pc中,pc+56处是哪?当前指令位置往下64字节,16个元素,刚好是dlopen()函数的调用地址。所以,这条指令其实就是调用dlopen()函数,传入的参数一个是r0寄存器指向的共享库路径名,另一个是r1寄存器中的0。
调用dlopen()返回后将继续执行下面的所有指令,我就不一一分析了,作用就是恢复目标进程原来寄存器的值。先是sp,然后是r0、r1、r2、r3和lr,最后恢复原来pc的值,继续执行被暂停之前的指令,就像什么都没发生过一样。
好了,这部分就是hijack的全部核心思路,看似很神秘,其实很简单,是吧?当然,个人觉得要达到这个目的还是有很多种其它方法的,但ptrace()是必不可少的。
接下来,顺理成章,就是要把精心构造的数据写到目标进程的栈上:
那接下来怎么办呢?能不能改一下栈内存段的属性,给其加上执行属性呢?mprotect()函数可以做到这点。
这里有同样一个问题,如何得到目标进程中mprotect()函数的调用地址呢?能不能用前面使用的在linker中找dlopen()函数调用地址一样的方法呢?笔者试过,其实是可以的,但是adbi采用了另一种方法,思路是通过直接分析ELF文件libc.so来获得其中符号mprotect的值,这个值其实就是表示mprotect()函数相对于文件头的偏移,再将这个值通libc.so文件在内存中映射的起始地址相加,就是mprotect()函数真正的调用地址了,具体代码如下:
还是通过调用前面介绍的load_memmap()函数来获得目标进程的内存映射表,然后调用find_libc()函数从中找出名字末尾是“libc.so”的内存段,获得这个内存段的起始地址以及具体路径:
下面就简单了,修改目标进程的寄存器值,使其调用mprotect()函数,并且从mprotect()返回后直接调用栈上的代码就好了:
r0寄存器设置为栈的起始地址,r1寄存器设置为栈的长度,r2保存要设置的属性(可读、可写且可执行)。
lr寄存器设置为栈上代码的起始地址,这样当调用mprotect()函数返回后就可以正常执行栈上代码了。
最后,将pc寄存器的值设置为前面查找到的目标进程中mprotect()函数的调用地址。
好了,万事具备,只欠东风,最后将寄存器值写到目标进程中,并且继续执行吧:
具体如何hook,hook哪个函数,就要看.so怎么做了,下一篇我们会继续分析hook基础库的实现。
hijack.c
/* * hijack.c - force a process to load a library * * ARM / Android version by: * Collin Mulliner <collin[at]mulliner.org> * http://www.mulliner.org/android/ * (c) 2012,2013 * * * original x86 version by: * Copyright (C) 2002 Victor Zandy <zandy[at]cs.wisc.edu> * * License: LGPL 2.1 * */ #define _XOPEN_SOURCE 500 /* include pread,pwrite */ #define _GNU_SOURCE #include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> #include <fcntl.h> #include <sys/ptrace.h> #include <sys/types.h> #include <sys/wait.h> #include <sys/stat.h> #include <dlfcn.h> #include <elf.h> #include <unistd.h> #include <errno.h> #include <sys/mman.h> int debug = 0; int zygote = 0; int nomprotect = 0; unsigned int stack_start; unsigned int stack_end; /* memory map for libraries */ #define MAX_NAME_LEN 256 #define MEMORY_ONLY "[memory]" struct mm { char name[MAX_NAME_LEN]; unsigned long start, end; }; typedef struct symtab *symtab_t; struct symlist { Elf32_Sym *sym; /* symbols */ char *str; /* symbol strings */ unsigned num; /* number of symbols */ }; struct symtab { struct symlist *st; /* "static" symbols */ struct symlist *dyn; /* dynamic symbols */ }; static void * xmalloc(size_t size) { void *p; p = malloc(size); if (!p) { printf("Out of memory\n"); exit(1); } return p; } static struct symlist * get_syms(int fd, Elf32_Shdr *symh, Elf32_Shdr *strh) { struct symlist *sl, *ret; int rv; ret = NULL; sl = (struct symlist *) xmalloc(sizeof(struct symlist)); sl->str = NULL; sl->sym = NULL; /* sanity */ if (symh->sh_size % sizeof(Elf32_Sym)) { printf("elf_error\n"); goto out; } /* symbol table */ sl->num = symh->sh_size / sizeof(Elf32_Sym); sl->sym = (Elf32_Sym *) xmalloc(symh->sh_size); rv = pread(fd, sl->sym, symh->sh_size, symh->sh_offset); if (0 > rv) { //perror("read"); goto out; } if (rv != symh->sh_size) { printf("elf error\n"); goto out; } /* string table */ sl->str = (char *) xmalloc(strh->sh_size); rv = pread(fd, sl->str, strh->sh_size, strh->sh_offset); if (0 > rv) { //perror("read"); goto out; } if (rv != strh->sh_size) { printf("elf error"); goto out; } ret = sl; out: return ret; } static int do_load(int fd, symtab_t symtab) { int rv; size_t size; Elf32_Ehdr ehdr; Elf32_Shdr *shdr = NULL, *p; Elf32_Shdr *dynsymh, *dynstrh; Elf32_Shdr *symh, *strh; char *shstrtab = NULL; int i; int ret = -1; /* elf header */ rv = read(fd, &ehdr, sizeof(ehdr)); if (0 > rv) { //perror("read"); goto out; } if (rv != sizeof(ehdr)) { printf("elf error\n"); goto out; } if (strncmp(ELFMAG, ehdr.e_ident, SELFMAG)) { /* sanity */ printf("not an elf\n"); goto out; } if (sizeof(Elf32_Shdr) != ehdr.e_shentsize) { /* sanity */ printf("elf error\n"); goto out; } /* section header table */ size = ehdr.e_shentsize * ehdr.e_shnum; shdr = (Elf32_Shdr *) xmalloc(size); rv = pread(fd, shdr, size, ehdr.e_shoff); if (0 > rv) { //perror("read"); goto out; } if (rv != size) { printf("elf error"); goto out; } /* section header string table */ size = shdr[ehdr.e_shstrndx].sh_size; shstrtab = (char *) xmalloc(size); rv = pread(fd, shstrtab, size, shdr[ehdr.e_shstrndx].sh_offset); if (0 > rv) { //perror("read"); goto out; } if (rv != size) { printf("elf error\n"); goto out; } /* symbol table headers */ symh = dynsymh = NULL; strh = dynstrh = NULL; for (i = 0, p = shdr; i < ehdr.e_shnum; i++, p++) if (SHT_SYMTAB == p->sh_type) { if (symh) { printf("too many symbol tables\n"); goto out; } symh = p; } else if (SHT_DYNSYM == p->sh_type) { if (dynsymh) { printf("too many symbol tables\n"); goto out; } dynsymh = p; } else if (SHT_STRTAB == p->sh_type && !strncmp(shstrtab+p->sh_name, ".strtab", 7)) { if (strh) { printf("too many string tables\n"); goto out; } strh = p; } else if (SHT_STRTAB == p->sh_type && !strncmp(shstrtab+p->sh_name, ".dynstr", 7)) { if (dynstrh) { printf("too many string tables\n"); goto out; } dynstrh = p; } /* sanity checks */ if ((!dynsymh && dynstrh) || (dynsymh && !dynstrh)) { printf("bad dynamic symbol table"); goto out; } if ((!symh && strh) || (symh && !strh)) { printf("bad symbol table"); goto out; } if (!dynsymh && !symh) { printf("no symbol table"); goto out; } /* symbol tables */ if (dynsymh) symtab->dyn = get_syms(fd, dynsymh, dynstrh); if (symh) symtab->st = get_syms(fd, symh, strh); ret = 0; out: free(shstrtab); free(shdr); return ret; } static symtab_t load_symtab(char *filename) { int fd; symtab_t symtab; symtab = (symtab_t) xmalloc(sizeof(*symtab)); memset(symtab, 0, sizeof(*symtab)); fd = open(filename, O_RDONLY); if (0 > fd) { //perror("open"); return NULL; } if (0 > do_load(fd, symtab)) { printf("Error ELF parsing %s\n", filename); free(symtab); symtab = NULL; } close(fd); return symtab; } static int load_memmap(pid_t pid, struct mm *mm, int *nmmp) { char raw[80000]; // this depends on the number of libraries an executable uses char name[MAX_NAME_LEN]; char *p; unsigned long start, end; struct mm *m; int nmm = 0; int fd, rv; int i; sprintf(raw, "/proc/%d/maps", pid); fd = open(raw, O_RDONLY); if (0 > fd) { printf("Can't open %s for reading\n", raw); return -1; } /* Zero to ensure data is null terminated */ memset(raw, 0, sizeof(raw)); p = raw; while (1) { rv = read(fd, p, sizeof(raw)-(p-raw)); if (0 > rv) { //perror("read"); return -1; } if (0 == rv) break; p += rv; if (p-raw >= sizeof(raw)) { printf("Too many memory mapping\n"); return -1; } } close(fd); p = strtok(raw, "\n"); m = mm; while (p) { /* parse current map line */ rv = sscanf(p, "%08lx-%08lx %*s %*s %*s %*s %s\n", &start, &end, name); p = strtok(NULL, "\n"); if (rv == 2) { m = &mm[nmm++]; m->start = start; m->end = end; strcpy(m->name, MEMORY_ONLY); continue; } if (strstr(name, "stack") != 0) { stack_start = start; stack_end = end; } /* search backward for other mapping with same name */ for (i = nmm-1; i >= 0; i--) { m = &mm[i]; if (!strcmp(m->name, name)) break; } if (i >= 0) { if (start < m->start) m->start = start; if (end > m->end) m->end = end; } else { /* new entry */ m = &mm[nmm++]; m->start = start; m->end = end; strcpy(m->name, name); } } *nmmp = nmm; return 0; } /* Find libc in MM, storing no more than LEN-1 chars of its name in NAME and set START to its starting address. If libc cannot be found return -1 and leave NAME and START untouched. Otherwise return 0 and null-terminated NAME. */ static int find_libc(char *name, int len, unsigned long *start, struct mm *mm, int nmm) { int i; struct mm *m; char *p; for (i = 0, m = mm; i < nmm; i++, m++) { if (!strcmp(m->name, MEMORY_ONLY)) continue; p = strrchr(m->name, '/'); if (!p) continue; p++; if (strncmp("libc", p, 4)) continue; p += 4; /* here comes our crude test -> 'libc.so' or 'libc-[0-9]' */ if (!strncmp(".so", p, 3) || (p[0] == '-' && isdigit(p[1]))) break; } if (i >= nmm) /* not found */ return -1; *start = m->start; strncpy(name, m->name, len); if (strlen(m->name) >= len) name[len-1] = '\0'; return 0; } static int find_linker_mem(char *name, int len, unsigned long *start, struct mm *mm, int nmm) { int i; struct mm *m; char *p; for (i = 0, m = mm; i < nmm; i++, m++) { //printf("name = %s\n", m->name); //printf("start = %x\n", m->start); if (!strcmp(m->name, MEMORY_ONLY)) continue; p = strrchr(m->name, '/'); if (!p) continue; p++; if (strncmp("linker", p, 6)) continue; break; // <--- hack p += 4; /* here comes our crude test -> 'libc.so' or 'libc-[0-9]' */ if (!strncmp(".so", p, 3) || (p[0] == '-' && isdigit(p[1]))) break; } if (i >= nmm) /* not found */ return -1; *start = m->start; strncpy(name, m->name, len); if (strlen(m->name) >= len) name[len-1] = '\0'; return 0; } static int lookup2(struct symlist *sl, unsigned char type, char *name, unsigned long *val) { Elf32_Sym *p; int len; int i; len = strlen(name); for (i = 0, p = sl->sym; i < sl->num; i++, p++) { //printf("name: %s %x\n", sl->str+p->st_name, p->st_value); if (!strncmp(sl->str+p->st_name, name, len) && ELF32_ST_TYPE(p->st_info) == type) { //if (p->st_value != 0) { *val = p->st_value; return 0; //} } } return -1; } static int lookup_sym(symtab_t s, unsigned char type, char *name, unsigned long *val) { if (s->dyn && !lookup2(s->dyn, type, name, val)) return 0; if (s->st && !lookup2(s->st, type, name, val)) return 0; return -1; } static int lookup_func_sym(symtab_t s, char *name, unsigned long *val) { return lookup_sym(s, STT_FUNC, name, val); } static int find_name(pid_t pid, char *name, unsigned long *addr) { struct mm mm[1000]; unsigned long libcaddr; int nmm; char libc[256]; symtab_t s; if (0 > load_memmap(pid, mm, &nmm)) { printf("cannot read memory map\n"); return -1; } if (0 > find_libc(libc, sizeof(libc), &libcaddr, mm, nmm)) { printf("cannot find libc\n"); return -1; } s = load_symtab(libc); if (!s) { printf("cannot read symbol table\n"); return -1; } if (0 > lookup_func_sym(s, name, addr)) { printf("cannot find %s\n", name); return -1; } *addr += libcaddr; return 0; } static int find_linker(pid_t pid, unsigned long *addr) { struct mm mm[1000]; unsigned long libcaddr; int nmm; char libc[256]; symtab_t s; if (0 > load_memmap(pid, mm, &nmm)) { printf("cannot read memory map\n"); return -1; } if (0 > find_linker_mem(libc, sizeof(libc), &libcaddr, mm, nmm)) { printf("cannot find libc\n"); return -1; } *addr = libcaddr; return 1; } /* Write NLONG 4 byte words from BUF into PID starting at address POS. Calling process must be attached to PID. */ static int write_mem(pid_t pid, unsigned long *buf, int nlong, unsigned long pos) { unsigned long *p; int i; for (p = buf, i = 0; i < nlong; p++, i++) if (0 > ptrace(PTRACE_POKETEXT, pid, (void *)(pos+(i*4)), (void *)*p)) return -1; return 0; } static int read_mem(pid_t pid, unsigned long *buf, int nlong, unsigned long pos) { unsigned long *p; int i; for (p = buf, i = 0; i < nlong; p++, i++) if ((*p = ptrace(PTRACE_PEEKTEXT, pid, (void *)(pos+(i*4)), (void *)*p)) < 0) return -1; return 0; } unsigned int sc_old[] = { // libname 0xe59f0030, // ldr r0, [pc, #48] | addr of "libname" in r0 0xe3a01000, // mov r1, #0 | r1 = 0 (flags=0) 0xe1a0e00f, // mov lr, pc | populate lr 0xe59ff028, // ldr pc, [pc, #40] | call dlopen() 0xe59fd01c, // ldr sp, [pc, #28] | fix sp 0xe59f0008, // ldr r0, [pc, #12] | fix r0 0xe59f1008, // ldr r1, [pc, #12] | fix r1 0xe59fe008, // ldr lr, [pc, #12] | fix lr 0xe59ff008, // ldr pc, [pc, #12] | fix pc (continue process) 0xe1a00000, // nop (mov r0,r0) | r0 0xe1a00000, // nop (mov r0,r0) | r1 0xe1a00000, // nop (mov r0,r0) | lr 0xe1a00000, // nop (mov r0,r0) | pc 0xe1a00000, // nop (mov r0,r0) | sp 0xe1a00000, // nop (mov r0,r0) | addr of libname 0xe1a00000 // nop (mov r0,r0) | dlopen address }; unsigned int sc[] = { 0xe59f0040, // ldr r0, [pc, #64] ; 48 <.text+0x48> 0xe3a01000, // mov r1, #0 ; 0x0 0xe1a0e00f, // mov lr, pc 0xe59ff038, // ldr pc, [pc, #56] ; 4c <.text+0x4c> 0xe59fd02c, // ldr sp, [pc, #44] ; 44 <.text+0x44> 0xe59f0010, // ldr r0, [pc, #16] ; 30 <.text+0x30> 0xe59f1010, // ldr r1, [pc, #16] ; 34 <.text+0x34> 0xe59f2010, // ldr r2, [pc, #16] ; 38 <.text+0x38> 0xe59f3010, // ldr r3, [pc, #16] ; 3c <.text+0x3c> 0xe59fe010, // ldr lr, [pc, #16] ; 40 <.text+0x40> 0xe59ff010, // ldr pc, [pc, #16] ; 44 <.text+0x44> 0xe1a00000, // nop r0 0xe1a00000, // nop r1 0xe1a00000, // nop r2 0xe1a00000, // nop r3 0xe1a00000, // nop lr 0xe1a00000, // nop pc 0xe1a00000, // nop sp 0xe1a00000, // nop addr of libname 0xe1a00000, // nop dlopenaddr }; struct pt_regs2 { long uregs[18]; }; #define ARM_cpsr uregs[16] #define ARM_pc uregs[15] #define ARM_lr uregs[14] #define ARM_sp uregs[13] #define ARM_ip uregs[12] #define ARM_fp uregs[11] #define ARM_r10 uregs[10] #define ARM_r9 uregs[9] #define ARM_r8 uregs[8] #define ARM_r7 uregs[7] #define ARM_r6 uregs[6] #define ARM_r5 uregs[5] #define ARM_r4 uregs[4] #define ARM_r3 uregs[3] #define ARM_r2 uregs[2] #define ARM_r1 uregs[1] #define ARM_r0 uregs[0] #define ARM_ORIG_r0 uregs[17] #define HELPSTR "error usage: %s -p PID -l LIBNAME [-d (debug on)] [-z (zygote)] [-m (no mprotect)] [-s (appname)] [-Z (trace count)] [-D (debug level)]\n" int main(int argc, char *argv[]) { pid_t pid = 0; struct pt_regs2 regs; unsigned long dlopenaddr, mprotectaddr, codeaddr, libaddr; unsigned long *p; int fd = 0; int n = 0; char buf[32]; char *arg; int opt; char *appname = 0; while ((opt = getopt(argc, argv, "p:l:dzms:Z:D:")) != -1) { switch (opt) { case 'p': pid = strtol(optarg, NULL, 0); break; case 'Z': zygote = strtol(optarg, NULL, 0); break; case 'D': debug = strtol(optarg, NULL, 0); break; case 'l': n = strlen(optarg)+1; n = n/4 + (n%4 ? 1 : 0); arg = malloc(n*sizeof(unsigned long)); memcpy(arg, optarg, n*4); break; case 'm': nomprotect = 1; break; case 'd': debug = 1; break; case 'z': zygote = 1; break; case 's': zygote = 1; appname = strdup(optarg); break; default: fprintf(stderr, HELPSTR, argv[0]); exit(0); break; } } if (pid == 0 || n == 0) { fprintf(stderr, HELPSTR, argv[0]); exit(0); } if (!nomprotect) { if (0 > find_name(pid, "mprotect", &mprotectaddr)) { printf("can't find address of mprotect(), error!\n"); exit(1); } if (debug) printf("mprotect: 0x%lx\n", mprotectaddr); } void *ldl = dlopen("libdl.so", RTLD_LAZY); if (ldl) { dlopenaddr = (unsigned long)dlsym(ldl, "dlopen"); dlclose(ldl); } unsigned long int lkaddr; unsigned long int lkaddr2; find_linker(getpid(), &lkaddr); //printf("own linker: 0x%x\n", lkaddr); //printf("offset %x\n", dlopenaddr - lkaddr); find_linker(pid, &lkaddr2); //printf("tgt linker: %x\n", lkaddr2); //printf("tgt dlopen : %x\n", lkaddr2 + (dlopenaddr - lkaddr)); dlopenaddr = lkaddr2 + (dlopenaddr - lkaddr); if (debug) printf("dlopen: 0x%lx\n", dlopenaddr); // Attach if (0 > ptrace(PTRACE_ATTACH, pid, 0, 0)) { printf("cannot attach to %d, error!\n", pid); exit(1); } waitpid(pid, NULL, 0); if (appname) { if (ptrace(PTRACE_SETOPTIONS, pid, (void*)1, (void*)(PTRACE_O_TRACEFORK))) { printf("FATAL ERROR: ptrace(PTRACE_SETOPTIONS, ...)"); return -1; } ptrace(PTRACE_CONT, pid, (void*)1, 0); int t; int stat; int child_pid = 0; for (;;) { t = waitpid(-1, &stat, __WALL|WUNTRACED); if (t != 0 && t == child_pid) { if (debug > 1) printf("."); char fname[256]; sprintf(fname, "/proc/%d/cmdline", child_pid); int fp = open(fname, O_RDONLY); if (fp < 0) { ptrace(PTRACE_SYSCALL, child_pid, 0, 0); continue; } read(fp, fname, sizeof(fname)); close(fp); if (strcmp(fname, appname) == 0) { if (debug) printf("zygote -> %s\n", fname); // detach from zygote ptrace(PTRACE_DETACH, pid, 0, (void *)SIGCONT); // now perform on new process pid = child_pid; break; } else { ptrace(PTRACE_SYSCALL, child_pid, 0, 0); continue; } } if (WIFSTOPPED(stat) && (WSTOPSIG(stat) == SIGTRAP)) { if ((stat >> 16) & PTRACE_EVENT_FORK) { if (debug > 1) printf("fork\n"); int b = t; // save parent pid ptrace(PTRACE_GETEVENTMSG, t, 0, &child_pid); if (debug) printf("PID=%d child=%d\n", t, child_pid); t = child_pid; if (debug > 1) printf("continue parent (zygote) PID=%d\n", b); ptrace(PTRACE_CONT, b, (void*)1, 0); ptrace(PTRACE_SYSCALL, child_pid, 0, 0); } } } } if (zygote) { int i = 0; for (i = 0; i < zygote; i++) { // -- zygote fix --- // we have to wait until the syscall is completed, IMPORTANT! ptrace(PTRACE_SYSCALL, pid, 0, 0); if (debug > 1) printf("/"); waitpid(pid, NULL, 0); ptrace(PTRACE_GETREGS, pid, 0, ®s); if (regs.ARM_ip != 0) { if (debug > 1) printf("not a syscall entry, wait for entry\n"); ptrace(PTRACE_SYSCALL, pid, 0, 0); waitpid(pid, NULL, 0); } //if (debug) // printf("process mode: currently waiting in SYSCALL\n"); ptrace(PTRACE_SYSCALL, pid, 0, 0); if (debug > 1) printf("\\"); waitpid(pid, NULL, 0); //if (debug) // printf("process mode: SYSCALL completed now inject\n"); // ---- need to work with zygote --- end --- } } if (debug > 1) printf("\n"); sprintf(buf, "/proc/%d/mem", pid); fd = open(buf, O_WRONLY); if (0 > fd) { printf("cannot open %s, error!\n", buf); exit(1); } ptrace(PTRACE_GETREGS, pid, 0, ®s); // setup variables of the loading and fixup code /* sc[9] = regs.ARM_r0; sc[10] = regs.ARM_r1; sc[11] = regs.ARM_lr; sc[12] = regs.ARM_pc; sc[13] = regs.ARM_sp; sc[15] = dlopenaddr; */ sc[11] = regs.ARM_r0; sc[12] = regs.ARM_r1; sc[13] = regs.ARM_r2; sc[14] = regs.ARM_r3; sc[15] = regs.ARM_lr; sc[16] = regs.ARM_pc; sc[17] = regs.ARM_sp; sc[19] = dlopenaddr; if (debug) { printf("pc=%lx lr=%lx sp=%lx fp=%lx\n", regs.ARM_pc, regs.ARM_lr, regs.ARM_sp, regs.ARM_fp); printf("r0=%lx r1=%lx\n", regs.ARM_r0, regs.ARM_r1); printf("r2=%lx r3=%lx\n", regs.ARM_r2, regs.ARM_r3); } // push library name to stack libaddr = regs.ARM_sp - n*4 - sizeof(sc); sc[18] = libaddr; //sc[14] = libaddr; //printf("libaddr: %x\n", libaddr); if (stack_start == 0) { stack_start = (unsigned long int) strtol(argv[3], NULL, 16); stack_start = stack_start << 12; stack_end = stack_start + strtol(argv[4], NULL, 0); } if (debug) printf("stack: 0x%x-0x%x leng = %d\n", stack_start, stack_end, stack_end-stack_start); // write library name to stack if (0 > write_mem(pid, (unsigned long*)arg, n, libaddr)) { printf("cannot write library name (%s) to stack, error!\n", arg); exit(1); } // write code to stack codeaddr = regs.ARM_sp - sizeof(sc); if (0 > write_mem(pid, (unsigned long*)&sc, sizeof(sc)/sizeof(long), codeaddr)) { printf("cannot write code, error!\n"); exit(1); } if (debug) printf("executing injection code at 0x%lx\n", codeaddr); // calc stack pointer regs.ARM_sp = regs.ARM_sp - n*4 - sizeof(sc); // call mprotect() to make stack executable regs.ARM_r0 = stack_start; // want to make stack executable //printf("r0 %x\n", regs.ARM_r0); regs.ARM_r1 = stack_end - stack_start; // stack size //printf("mprotect(%x, %d, ALL)\n", regs.ARM_r0, regs.ARM_r1); regs.ARM_r2 = PROT_READ|PROT_WRITE|PROT_EXEC; // protections // normal mode, first call mprotect if (nomprotect == 0) { if (debug) printf("calling mprotect\n"); regs.ARM_lr = codeaddr; // points to loading and fixing code regs.ARM_pc = mprotectaddr; // execute mprotect() } // no need to execute mprotect on old Android versions else { regs.ARM_pc = codeaddr; // just execute the 'shellcode' } // detach and continue ptrace(PTRACE_SETREGS, pid, 0, ®s); ptrace(PTRACE_DETACH, pid, 0, (void *)SIGCONT); if (debug) printf("library injection completed!\n"); return 0; }
# Copyright (C) 2009 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. # LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) LOCAL_MODULE := hijack LOCAL_SRC_FILES := ../hijack.c LOCAL_ARM_MODE := arm LOCAL_CFLAGS := -g include $(BUILD_EXECUTABLE)