免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1437 | 回复: 0
打印 上一主题 下一主题

用RAW写的ping程序,出问题了。。。。 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-08-15 21:19 |只看该作者 |倒序浏览
  1. #include <stdio.h>
  2. #include <netinet/ip.h>
  3. #include <netinet/tcp.h>
  4. #include <netinet/in.h>
  5. #include <netinet/ip_icmp.h>
  6. #include <arpa/inet.h>
  7. #include <sys/socket.h>
  8. #include <stdlib.h>
  9. #define oops(msg){perror(msg);exit(0);}
  10. unsigned short icmpcheck(unsigned short *,int );
  11. int main(int ac,char**av)
  12. {
  13.     int sockfd=0;
  14.     if((sockfd=socket(AF_INET,SOCK_RAW,htons(IPPROTO_ICMP)))<0)
  15.         oops("socket");
  16. //   int val=1;
  17. //    if((setsockopt(sockfd,IPPROTO_IP,IP_HDRINCL,&val,sizeof(val)))<0)
  18. //        oops("setsocket");
  19.     unsigned char buff[1024]={0};
  20.    // int ip_len=sizeof(struct ip)+sizeof(struct icmphdr);

  21. //    struct ip *ip;
  22.    /* ip=(struct ip*)buff;
  23.     ip->ip_hl=5;
  24.     ip->ip_v=4;
  25.     ip->ip_tos=0;
  26.     ip->ip_len=htons(ip_len);
  27.     ip->ip_id=0;
  28.     ip->ip_off=0;
  29.     ip->ip_ttl=255;
  30.     ip->ip_p=IPPROTO_ICMP;
  31.     ip->ip_sum=0;
  32.     inet_aton("192.168.1.102",&ip->ip_src); //本地ip
  33.     inet_aton(av[1],&ip->ip_dst);// 请求ip */

  34.     struct icmphdr *icmp;
  35.     icmp=(struct icmphdr*)(buff);
  36.     icmp->type=8;
  37.     icmp->code=0;
  38.     icmp->checksum=0;
  39.     icmp->un.echo.sequence=1; //随机定义的,下面id也是
  40.     icmp->un.echo.id=1;
  41.     int nbytes=0;

  42.     struct sockaddr_in sa;
  43.     sa.sin_family=AF_INET;
  44.     inet_aton(av[1],&sa.sin_addr);

  45.     int icmp_len=sizeof(struct icmphdr);

  46.     while(1)
  47.    {
  48.         icmp->checksum=icmpcheck((unsigned short*)icmp,sizeof(struct icmphdr));
  49.         nbytes=sendto(sockfd,buff,icmp_len,0,(struct sockaddr*)&sa,sizeof(sa));
  50.         printf("nbytes is %d\n",nbytes);
  51.         sleep(1);
  52.     }
  53.     close(sockfd);
  54.     return 0;
  55. }

  56. unsigned short icmpcheck(unsigned short *icmp,int len)
  57. {
  58.     unsigned long sum=0;
  59.     while(len>1)
  60.     {
  61.         sum=*icmp++;
  62.         len-=2;
  63.     }
  64.     if(len)
  65.         sum=*icmp++;
  66.     while(sum>>16)
  67.         sum=(sum>>16)+(sum&0xffff);
  68.     return (unsigned short)~sum;
  69. }













复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP