连续调用inet_ntoa打印出错的问题

时间:2021-06-23 22:45:02

近日写程序,在打印信息的时候调用了inet_ntoa函数,出现了打印一直出错的情况。google了一下,是因为inet_ntoa这类函数没有保证线程安全,其实现原理是在静态内容中申请一块内存,每次调用后返回该静态内存的指针,若是在同一个printf语句中连续调用两次inet_ntoa函数会导致后调用的覆盖先覆盖的那个。

举个例子(参考了某位前辈的blogs):

 #include <stdio.h>
#include <stdlib.h>
#include <netinet/in.h>
int main()
{
struct sockaddr_in ra = {};
struct sockaddr_in sa = {};
ra.sin_addr.s_addr = -; //192.168.5.243
sa.sin_addr.s_addr = -; //192.168.5.200
printf("ip of recv:%s\nip of send:%s\n",\
inet_ntoa(ra.sin_addr),inet_ntoa(sa.sin_addr));
printf("ip of send:%s\n",inet_ntoa(sa.sin_addr));
printf("ip of recv:%s\n",inet_ntoa(ra.sin_addr));
}

执行结果:

 [root@host-b lab]# gcc test_ntoa.c
[root@host-b lab]# ./a.out
ip of recv:192.168.5.243
ip of send:192.168.5.243
ip of send:192.168.1.200
ip of recv:192.168.5.243

结果的3、4两行对应code中的11行,结果的5、6两行对用code中的12、13两行,3、4两行的结果明显不正确,原因就是在inet_ntoa(ra.sin_addr)返回的地址将inet_ntoa(sa.sin_addr)的返回地址