Introduce netd_client, a dynamic library that talks to netd.

The library exists outside bionic. It is dynamically loaded, to replace selected
standard socket syscalls with versions that talk to netd.

Change connect() to use the library if available.

(cherry picked from commit 3a6b627a14df8111b03e452f2df4b5f4938e0e49)

Change-Id: Ib6198e19dbc306521a26fcecfdf6e8424d163fc9
This commit is contained in:
Sreeram Ramachandran
2014-05-12 11:19:16 -07:00
parent 0ccef7ec52
commit ceb5bd787c
12 changed files with 141 additions and 14 deletions

View File

@@ -2,7 +2,7 @@
#include <private/bionic_asm.h>
ENTRY(connect)
ENTRY(__connect)
movl $__NR_connect, %eax
syscall
cmpq $-MAX_ERRNO, %rax
@@ -13,4 +13,5 @@ ENTRY(connect)
orq $-1, %rax
1:
ret
END(connect)
END(__connect)
.hidden __connect