使用函数gethostbyname将C编译为静态链接错误

时间:2013-02-27 17:28:56

标签: android c cross-compiling compiler-warnings

我正在尝试使用函数gethostbyname()和交叉编译器arm-none-linux-gnueabi编译程序,但是当我在android上运行我的二进制文件时它不起作用。

我的代码如下:

  /* gethostbyname-example.c */

  #include <stdio.h>
  #include <unistd.h>
  #include <stdlib.h>
  #include <string.h>
  #include <errno.h>
  #include <sys/socket.h>
  #include <netinet/in.h>
  #include <arpa/inet.h>
  #include <netdb.h>

  extern int h_errno;

  int main(int argc,char **argv) {
     int x, x2;
     struct hostent *hp;

     for ( x=1; x<argc; ++x ) {
        hp = gethostbyname(argv[x]);
        if ( !hp ) {
           fprintf(stderr,
                   "%s: host '%s'\n",
                   hstrerror(h_errno),
                   argv[x]);
           continue;
        }

        printf("Host %s : \n" ,argv[x]);
        printf(" Officially:\t%s\n", hp->h_name);
        fputs(" Aliases:\t",stdout);
        for ( x2=0; hp->h_aliases[x2]; ++x2 ) {
           if ( x2 ) {
              fputs(", ",stdout);
             }
        fputs(hp->h_aliases[x2],stdout);
        }     
        fputc('\n',stdout);
        printf(" Type:\t\t%s\n",
               hp->h_addrtype == AF_INET
               ? "AF_INET" : "AF_INET6");
        if ( hp->h_addrtype == AF_INET ) {
           for ( x2=0; hp->h_addr_list[x2]; ++x2 ) {
              printf(" Address:\t%s\n",
                     inet_ntoa( *(struct in_addr *)
                      hp->h_addr_list[x2]));
           }
        }
     putchar('\n');
     }
     return 0;
  }

我使用arm-none-linux-gnueabi-gcc编译,在我的笔记本电脑上使用操作系统ubuntu 12.04和交叉编译器Sourcery Codebench

$ arm-none-linux-gnueabi-gcc gethostbyname-example.c --static -o gethostbyname-example
/tmp/ccE0xjBG.o: In function `main':
lookup.c:(.text+0x38): warning: Using 'gethostbyname' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
$ ls
gethostbyname-example.c gethostbyname-example
$ file gethostbyname-example
gethostbyname-example: ELF 32-bit LSB executable, ARM, version 1 (SYSV), statically linked, for GNU/Linux 2.6.16, not stripped

然后我在我的chroot arm上测试二进制gethostbyname-example,我将二进制文件复制粘贴到chroot文件夹,然后登录到chroot,然后我执行,顺便说一下我做的chroot来自这里https://wiki.ubuntu.com/ARM/BuildEABIChroot,如果我在chroot上运行它,我得到如下结果:

# ./gethostbyname-example www.google.com
Host google.com : 
 Officially:    www.google.com
 Aliases:   
 Type:      AF_INET
 Address:   74.125.135.139
 Address:   74.125.135.100
 Address:   74.125.135.101
 Address:   74.125.135.102
 Address:   74.125.135.113
 Address:   74.125.135.138

然后我也上传二进制gethostbyname-example adb push到我的android设备,如果我运行二进制gethostbyname-example我得到如下错误:

# ./gethostbyname-example www.google.com
# Unknown server error: host 'www.google.com'
# ping www.google.com
# PING www.google.com (74.125.135.99) 56(84) bytes of data.
# 64 bytes from ni-in-f99.1e100.net (74.125.135.99): icmp_seq=1 ttl=49 time=798 ms
# 64 bytes from ni-in-f99.1e100.net (74.125.135.99): icmp_seq=2 ttl=49 time=1039 ms

在我的Android设备中,我在/ etc /和/ system / etc /中使用google DNS有一个文件主机

8.8.8.8 
8.8.4.4

大致是造成这种失败的原因,

谢谢。

2 个答案:

答案 0 :(得分:4)

简短说明

glibc中的DNS查询需要/lib/libnss_dns.so.2,这在Android上不可用。

另一个不同之处在于Android存储了DNS设置/system/etc/resolv.conf,而使用仿生C库构建的原生Android应用程序将在那里找到要查询的DNS服务器。使用glibc构建的应用程序将在/etc/resolv.conf中查找,这在Android上不存在。

更长的解释

你使用glibc构建了二进制文件,而Android使用了仿生C库。

在静态链接到libc时,这大部分应该没问题,因为我不知道android内核中有足够严重的变化来打破简单的用户登陆应用程序。你应该使用Android NDK来构建Android原生应用程序,

然而,在静态链接到glibc时会出现一些问题。 glibc中的某些函数,例如查找用户信息,主机名和/etc/nsswitch.conf中通常配置的其他内容会调用其他共享库来实际完成工作。无论您是否静态链接到glibc本身,都会发生这种情况。这些文件通常是glibc系统上的/ lib / libnss_ *文件。

大多数共享库都是glibc的一部分,并将安装在glibc系统上。但它们在Android上无法使用。当这些共享库可用时,依赖使用这些帮助程序共享库的函数的应用程序无法正常工作 - gethostbyname()就是其中之一,对于正常的DNS查询,它需要/lib/libnss_dns.so.2

答案 1 :(得分:0)

解释请参考nos回复,解决方案请按照以下步骤操作:

  • 从这里下载android NDK:https://developer.android.com/ndk/downloads/index.html(我使用的是linux 64bit)
  • 解压缩android-ndk-r13b-linux-x86_64.zip
  • 输入刚刚解压缩的目录
  • 启动./build/tools/make_standalone_toolchain.py查看可能的选项
  • e.g。 ./build/tools/make_standalone_toolchain.py --arch arm --api 9
  • 该工具将为您构建arm-linux-androideabi.tar.bz2
  • 使用tar xjvf arm-linux-androideabi.tar.bz2
  • 解压缩
  • 它将创建./arm-linux-androideabi目录
  • 现在您可以使用./arm-linux-androideabi/bin/arm-linux-androideabi-gcc yourprog.c -o yourprog -pie
  • 进行编译 Android&gt; = 5 需要
  • -pie
  • 您生成的可执行文件是原生的,解析器将按预期工作