免费注册 查看新帖 |

Chinaunix

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

为什么32位和64位的输出不一样 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-03-11 15:18 |只看该作者 |倒序浏览
想计算下1秒内有多少发往本机80端口的syn包,分别在32位系统上和64位系统上编译执行,为什么64位的printf打印出来的和return的不一样.
输出为结尾syn_count的值,
./a.out
echo $?
发现两个结果在64位上不一样,为什么.


  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <sys/socket.h>
  4. #include <netinet/in.h>
  5. #include <arpa/inet.h>
  6. #include <netinet/ip.h>
  7. #include <string.h>
  8. #include <netdb.h>
  9. #include <netinet/tcp.h>
  10. #include <netinet/udp.h>
  11. #include <stdlib.h>
  12. #include <unistd.h>
  13. #include <signal.h>
  14. #include <net/if.h>
  15. #include <sys/ioctl.h>
  16. #include <sys/stat.h>
  17. #include <fcntl.h>
  18. #include <linux/if_ether.h>
  19. #include <net/ethernet.h>
  20. #include <sys/time.h>

  21. void die(char *why, int n)
  22. {
  23.     perror(why);
  24.     exit(n);
  25. }

  26. int do_promisc(char *nif, int sock )
  27. {
  28.     struct ifreq ifr;
  29.     strncpy(ifr.ifr_name, nif,strlen(nif)+1);
  30.     if ((ioctl(sock, SIOCGIFFLAGS, &ifr) == -1)) //获得flag
  31.     {
  32.         die("ioctl", 2);
  33.     }
  34.     ifr.ifr_flags |= IFF_PROMISC; //重置flag标志
  35.     if (ioctl(sock, SIOCSIFFLAGS, &ifr) == -1 ) //改变模式
  36.     {
  37.         die("ioctl", 3);
  38.     }
  39. }
  40. //修改网卡成PROMISC(混杂)模式

  41. char buf[40960]={0};

  42. int main()
  43. {
  44.     struct sockaddr_in addr;
  45.     struct ether_header *peth;
  46.     struct iphdr *pip;
  47.     struct tcphdr *ptcp;
  48.     struct udphdr *pudp;

  49.     char mac[16];
  50.     int i,sock, r, len;
  51.     char *data;
  52.     char *ptemp;
  53.     char ss[32],dd[32];

  54.     int syn_count=0;
  55.     //timer
  56.     struct timeval tv;
  57.     struct timezone tz;
  58.     int t_start;


  59.     if ((sock = socket(AF_PACKET, SOCK_RAW, htons(ETH_P_ALL))) == -1) //建立socket//man socket可以看到上面几个宏的意思以看
  60.     {
  61.         die("socket", 1);
  62.     }

  63.     do_promisc("eth0", sock); //eth0为网卡名

  64.     //开始时间
  65.     gettimeofday (&tv , &tz);
  66.     t_start=tv.tv_sec;

  67.     for (;;)
  68.     {
  69.         len = sizeof(addr);

  70.         r = recvfrom(sock,(char *)buf,sizeof(buf), 0, (struct sockaddr *)&addr,(socklen_t *)&len);
  71.         //调试的时候可以增加一个输出r的语句判断是否抓到包
  72.         if(r <=0)
  73.         {
  74.             continue;
  75.         }
  76.         buf[r] = 0;
  77.         ptemp = buf;
  78.         peth = (struct ether_header *)ptemp;
  79.         ptemp += sizeof(struct ether_header); //指针后移eth头的长度
  80.         pip = (struct iphdr *)ptemp; //pip指向ip层的包头
  81.         ptemp += sizeof(struct ip);//指针后移ip头的长度
  82.         switch (pip->protocol) //根据不同协议判断指针类型
  83.         {
  84.         case IPPROTO_TCP:
  85.             ptcp = (struct tcphdr *)ptemp; //ptcp指向tcp头部
  86.                 if((ntohs(ptcp->source)!=80)&&(ntohs(ptcp->dest)== 80)&&(ptcp->syn==1)){
  87.                 syn_count++;
  88.                 }
  89.             break;
  90.         default:
  91.             break;
  92.         } //end switch

  93.         gettimeofday (&tv , &tz);
  94.         if(tv.tv_sec>=t_start+1){
  95.         printf("count=%d\n",syn_count);
  96.         return syn_count;
  97.         }

  98.     }
  99.     return 0;
  100. }


复制代码

论坛徽章:
0
2 [报告]
发表于 2009-03-11 20:18 |只看该作者
是不是太简单了呀?

论坛徽章:
0
3 [报告]
发表于 2009-03-12 10:16 |只看该作者
简化一下,
#include <stdio.h>
int main()
{
int count=1000;
printf("%d\n",count);
return count;
}

cc test.c
./a.out
输出1000

echo $?
232

论坛徽章:
0
4 [报告]
发表于 2009-03-12 10:50 |只看该作者
找到问题了,是shell的事.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP