免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
楼主: send_linux
打印 上一主题 下一主题

迎接ChinaUnix九周年庆技术实践之二----C/C++编程大赛!-结果公布! [复制链接]

论坛徽章:
0
171 [报告]
发表于 2011-02-13 16:08 |只看该作者
where is the amazing,where is the creativity.look at here.

论坛徽章:
1
2015年迎新春徽章
日期:2015-03-04 09:58:11
172 [报告]
发表于 2011-02-13 21:56 |只看该作者
回复 170# renxiao2003


    What?我只是问问怎么不延期。

论坛徽章:
0
173 [报告]
发表于 2011-02-16 17:35 |只看该作者
阿门

论坛徽章:
0
174 [报告]
发表于 2011-02-17 10:19 |只看该作者
无语, 有点不靠谱

论坛徽章:
0
175 [报告]
发表于 2011-02-17 12:46 |只看该作者
为什么没人出来解释

论坛徽章:
59
2015七夕节徽章
日期:2015-08-24 11:17:25ChinaUnix专家徽章
日期:2015-07-20 09:19:30每周论坛发贴之星
日期:2015-07-20 09:19:42ChinaUnix元老
日期:2015-07-20 11:04:38荣誉版主
日期:2015-07-20 11:05:19巳蛇
日期:2015-07-20 11:05:26CU十二周年纪念徽章
日期:2015-07-20 11:05:27IT运维版块每日发帖之星
日期:2015-07-20 11:05:34操作系统版块每日发帖之星
日期:2015-07-20 11:05:36程序设计版块每日发帖之星
日期:2015-07-20 11:05:40数据库技术版块每日发帖之星
日期:2015-07-20 11:05:432015年辞旧岁徽章
日期:2015-07-20 11:05:44
176 [报告]
发表于 2011-02-18 22:19 |只看该作者
开奖啊。

论坛徽章:
0
177 [报告]
发表于 2011-02-19 13:16 |只看该作者
做了下第二题。只是处理了ip数据帧,传输层。

  1. #include <unistd.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5. #include <netdb.h>
  6. #include <sys/ioctl.h>
  7. #include <sys/types.h>
  8. #include <sys/socket.h>
  9. #include <netinet/ip.h>
  10. #include <netinet/in.h>
  11. #include <netinet/tcp.h>
  12. #include <netinet/udp.h>
  13. #include <netpacket/packet.h>
  14. #include <net/ethernet.h>
  15. #include <net/if.h>
  16. #include <arpa/inet.h>
  17. #include <errno.h>
  18. #include <vector>
  19. using namespace std;
  20. /* 接收缓冲区大小 */
  21. #define RCV_BUF_SIZE     1024 * 5

  22. /* 接收缓冲区 */
  23. static int g_iRecvBufSize = RCV_BUF_SIZE;
  24. static char g_acRecvBuf[RCV_BUF_SIZE] = {0};

  25. /* 物理网卡接口,需要根据具体情况修改 */
  26. static const char *g_szIfName = "eth0";
  27. struct packetInfo
  28. {
  29.         char * sip;
  30.         char * desip;
  31.         short int sport;
  32.         short int desport;
  33.         char *protocol;
  34.         int count;
  35. };

  36. /* 物理网卡混杂模式属性操作 */
  37. static int ethdump_setPromisc(const char *pcIfName, int fd, int iFlags)
  38. {
  39.         int iRet = -1;
  40.         struct ifreq stIfr;

  41.         /* 获取接口属性标志位 */
  42.         strcpy(stIfr.ifr_name, pcIfName);
  43.         iRet = ioctl(fd, SIOCGIFFLAGS, &stIfr);
  44.         if (0 > iRet)
  45.         {
  46.                 perror("[Error]Get Interface Flags");   
  47.                 return -1;
  48.         }

  49.         if (0 == iFlags)
  50.         {
  51.                 /* 取消混杂模式 */
  52.                 stIfr.ifr_flags &= ~IFF_PROMISC;
  53.         }
  54.         else
  55.         {
  56.                 /* 设置为混杂模式 */
  57.                 stIfr.ifr_flags |= IFF_PROMISC;
  58.         }

  59.         iRet = ioctl(fd, SIOCSIFFLAGS, &stIfr);
  60.         if (0 > iRet)
  61.         {
  62.                 perror("[Error]Set Interface Flags");
  63.                 return -1;
  64.         }

  65.         return 0;
  66. }


  67. /* Init L2 Socket */
  68. static int ethdump_initSocket()
  69. {
  70.         int iRet = -1;
  71.         int fd = -1;
  72.         struct ifreq stIf;
  73.         struct sockaddr_ll stLocal = {0};

  74.         /* 创建SOCKET */
  75.         fd = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
  76.         if (0 > fd)
  77.         {
  78.                 perror("[Error]Initinate L2 raw socket");
  79.                 return -1;
  80.         }

  81.         /* 网卡混杂模式设置 */
  82.         ethdump_setPromisc(g_szIfName, fd, 1);

  83.         /* 设置SOCKET选项 */
  84.         iRet = setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &g_iRecvBufSize,sizeof(int));
  85.         if (0 > iRet)
  86.         {
  87.                 perror("[Error]Set socket option");
  88.                 close(fd);
  89.                 return -1;
  90.         }

  91.         /* 获取物理网卡接口索引 */
  92.         strcpy(stIf.ifr_name, g_szIfName);
  93.         iRet = ioctl(fd, SIOCGIFINDEX, &stIf);
  94.         if (0 > iRet)
  95.         {
  96.                 perror("[Error]Ioctl operation");
  97.                 close(fd);
  98.                 return -1;
  99.         }

  100.         /* 绑定物理网卡 */
  101.         stLocal.sll_family = PF_PACKET;
  102.         stLocal.sll_ifindex = stIf.ifr_ifindex;
  103.         stLocal.sll_protocol = htons(ETH_P_ALL);
  104.         iRet = bind(fd, (struct sockaddr *)&stLocal, sizeof(stLocal));
  105.         if (0 > iRet)
  106.         {
  107.                 perror("[Error]Bind the interface");
  108.                 close(fd);
  109.                 return -1;
  110.         }

  111.         return fd;   
  112. }

  113. /* 捕获网卡数据帧 */
  114. static void ethdump_startCapture(const int fd)
  115. {
  116.         packetInfo DataPacketInfo;
  117.         vector<packetInfo> v_PacketInfo;

  118.         int iRet = -1;
  119.         socklen_t stFromLen = 0;

  120.         /* 循环监听 */
  121.         while(1)
  122.         {
  123.                 struct protoent *pstIpProto = NULL;
  124.                 /*Ethnet帧头结构体*/
  125.                 struct ether_header *pstEthHead = NULL;
  126.                 /*IP数据包包头结构体*/
  127.                 struct ip *pstIpHead = NULL;
  128.                 /* 清空接收缓冲区 */
  129.                 memset(g_acRecvBuf, 0, RCV_BUF_SIZE);

  130.                 /* 接收数据帧 */
  131.                 iRet = recvfrom(fd, g_acRecvBuf, g_iRecvBufSize, 0, NULL, &stFromLen);
  132.                 if (0 > iRet)
  133.                 {
  134.                         continue;
  135.                 }
  136.                 /*获得Ethnet帧分装的数据包协议类型*/
  137.                 unsigned short usEthPktType;
  138.                 pstEthHead=(ether_header*)g_acRecvBuf;
  139.                 if (NULL == pstEthHead)
  140.                 {
  141.                         exit(-1);
  142.                 }

  143.                 /* 协议类型、源MAC、目的MAC */
  144.                 usEthPktType = ntohs(pstEthHead->ether_type);
  145.                 printf(">>> Eth-Pkt-Type:0x%04x ", usEthPktType);
  146.                 if(usEthPktType==0x0800)
  147.                         {
  148.                 /*去除Ethnet帧头,获得IP数据包头的开始位置*/
  149.                 pstIpHead=(ip*)(pstEthHead+1);
  150.     DataPacketInfo.count=1;
  151.                 if (NULL == pstIpHead)
  152.                 {
  153.                         exit(-1);
  154.                 }


  155.                 /* 传输层协议类型、源IP地址、目的IP地址 */
  156.                 pstIpProto = getprotobynumber(pstIpHead->ip_p);
  157.                 if(NULL != pstIpProto)
  158.                 {
  159.                         DataPacketInfo.protocol=pstIpProto->p_name;
  160.                         printf(" IP-Pkt-Type:%d(%s) ", pstIpHead->ip_p, pstIpProto->p_name);
  161.                 }
  162.                 else
  163.                 {
  164.                         printf(" IP-Pkt-Type:%d(%s) ", pstIpHead->ip_p, "None");
  165.                 }
  166.                 DataPacketInfo.sip=inet_ntoa(pstIpHead->ip_src);
  167.                 DataPacketInfo.desip=inet_ntoa(pstIpHead->ip_dst);
  168.                 if(6==pstIpHead->ip_p)//如果传输层协议为TCP
  169.                 {
  170.                         struct tcphdr *ptcphdr=NULL;
  171.                         ptcphdr=(tcphdr *)(pstIpHead+1);

  172.                         if (NULL == ptcphdr)
  173.                         {
  174.                                 exit(-1);
  175.                         }

  176.                         printf("TCP SPort=[%d] ", ntohs(ptcphdr->source));
  177.                         printf("TCP DPort=[%d]\n ",ntohs(ptcphdr->dest));
  178.                         DataPacketInfo.sport= ntohs(ptcphdr->source);
  179.                         DataPacketInfo.desport=ntohs(ptcphdr->dest);

  180.                 }
  181.                 else if(17==pstIpHead->ip_p)
  182.                 {
  183.                         struct udphdr* pudphdr=NULL;
  184.                         pudphdr=(udphdr*)(pstIpHead+1);
  185.                         if (NULL == pudphdr)
  186.                         {
  187.                                 exit(-1);
  188.                         }

  189.                         printf("UDP SPort=[%d] ", pudphdr->source);
  190.                         printf("UDP DPort=[%d]\n ",pudphdr->dest);
  191.                         DataPacketInfo.sport= ntohs(pudphdr->source);
  192.                         DataPacketInfo.desport=ntohs(pudphdr->dest);
  193.                 }
  194.                 else
  195.                 {
  196.                         printf("UNKOWN PROTOCOL\n");
  197.                 }
  198.                 bool flag(0);
  199.                 for(int i=0;i++;i<v_PacketInfo.size())
  200.                 {
  201.                         if (DataPacketInfo.sip==v_PacketInfo[i].sip&&DataPacketInfo.desip==v_PacketInfo[i].desip&&
  202.                                 DataPacketInfo.sport==v_PacketInfo[i].sport&&DataPacketInfo.desport==v_PacketInfo[i].desport&&
  203.                                 DataPacketInfo.protocol==v_PacketInfo[i].protocol)
  204.                         {
  205.                                 v_PacketInfo[i].count++;
  206.                                 flag=1;
  207.                                 break;
  208.                         }
  209.                        
  210.                 }
  211.                 if(!flag)
  212.                 {
  213.           v_PacketInfo.push_back(DataPacketInfo);
  214.                 }
  215.   }
  216.     else
  217.             {
  218.                     printf("NOT IP PROTOCOL\n");
  219.             }
  220.         }
  221. }   

  222. /* Main */
  223. int main(int argc, char *argv[])
  224. {
  225.         int iRet = -1;
  226.         int fd   = -1;

  227.         /* 初始化SOCKET */
  228.         fd = ethdump_initSocket();
  229.         if(0 > fd)
  230.         {
  231.                 return -1;
  232.         }

  233.         /* 捕获数据包 */
  234.         ethdump_startCapture(fd);

  235.         /* 关闭SOCKET */
  236.         close(fd);

  237.         return 0;
  238. }
复制代码

论坛徽章:
27
CU大牛徽章
日期:2013-03-13 15:15:08CU大牛徽章
日期:2013-05-20 10:46:38CU大牛徽章
日期:2013-05-20 10:46:44CU大牛徽章
日期:2013-09-18 15:24:09CU大牛徽章
日期:2013-09-18 15:24:20CU大牛徽章
日期:2013-09-18 15:24:25CU大牛徽章
日期:2013-09-18 15:24:31CU大牛徽章
日期:2013-09-18 15:24:36CU大牛徽章
日期:2013-09-18 15:24:41CU大牛徽章
日期:2013-09-18 15:24:48CU大牛徽章
日期:2013-09-18 15:24:52处女座
日期:2013-09-27 17:45:43
178 [报告]
发表于 2011-02-27 16:30 |只看该作者
哈,我已经提交了perl的比赛代码,什么时候也弄个java的比赛

论坛徽章:
1
2015年迎新春徽章
日期:2015-03-04 09:58:11
179 [报告]
发表于 2011-02-28 05:09 |只看该作者
如果java的比赛,我也考虑参加。

论坛徽章:
0
180 [报告]
发表于 2011-03-10 20:09 |只看该作者
看了好友压力啊,回去得好好学了
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP