【发布时间】:2012-02-20 04:48:12
【问题描述】:
尝试为数据包嗅探器编写处理程序。我在选角和inet_ntoa() 方面遇到问题。代码如下:
uint32_t *iphdr_srcaddr = malloc(sizeof(uint32_t));
if (*packet_ethertype == ETHERTYPE_IP) { /* IPv4 */
// copy packet data to vars
memcpy(iphdr_srcaddr, packet+26, 4);
// change to host-byte-order
*iphdr_srcaddr = ntohl(*iphdr_srcaddr);
struct in_addr *test;
test = (struct in_addr*) iphdr_srcaddr;
printf("uint32_t: %u\n", *iphdr_srcaddr); // Gives the correct long integer for the address
printf("struct in_addr: %u\n", test->s_addr); // Gives the correct long integer through the cast
char *test2;
test2 = inet_ntoa(*test);
}
现在,如果我尝试printf("%s\n", test),我会得到 SEGV。我确定我正在混淆指针、值并进行某种愚蠢的转换。在以下运行期间收到错误:
Program received signal SIGSEGV, Segmentation fault.
0x00007ffff787ec61 in __strlen_sse2 () from /lib/libc.so.6
还有编译警告,我确信这为我指明了正确的方向,但我不确定它的含义以及如何解决它:
mypcap.c: In function ‘handle_sniffed’:
mypcap.c:61:15: warning: assignment makes pointer from integer without a cast [enabled by default]
这里指的是test2 = inet_ntoa(*test);这一行
【问题讨论】:
-
您的示例调用尝试打印
test;你的意思是打印test2吗? -
为什么要使用
malloc来获取单个uint32_t而不是仅仅使用局部变量?