MySnifferDlg.cpp
上传用户:bjaaa555
上传日期:2009-10-18
资源大小:33k
文件大小:15k
源码类别:

系统/网络安全

开发平台:

Visual C++

  1. // MySnifferDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "MySniffer.h"
  5. #include "MySnifferDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CAboutDlg dialog used for App About
  13. PROTN2T aOfProto[ PROTO_NUM + 1] = 
  14. {  
  15. { IPPROTO_IP   , "IP" },
  16. { IPPROTO_ICMP , "ICMP" },  
  17. { IPPROTO_IGMP , "IGMP" }, 
  18. { IPPROTO_GGP  , "GGP" },  
  19. { IPPROTO_TCP  , "TCP" },  
  20. { IPPROTO_PUP  , "PUP" },  
  21. { IPPROTO_UDP  , "UDP" },  
  22. { IPPROTO_IDP  , "IDP" },  
  23. { IPPROTO_ND   , "NP"  },  
  24. { IPPROTO_RAW  , "RAW" },  
  25. { IPPROTO_MAX  , "MAX" },
  26. { NULL , "" } 
  27. };  
  28. class CAboutDlg : public CDialog
  29. {
  30. public:
  31. CAboutDlg();
  32. // Dialog Data
  33. //{{AFX_DATA(CAboutDlg)
  34. enum { IDD = IDD_ABOUTBOX };
  35. //}}AFX_DATA
  36. // ClassWizard generated virtual function overrides
  37. //{{AFX_VIRTUAL(CAboutDlg)
  38. protected:
  39. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  40. //}}AFX_VIRTUAL
  41. // Implementation
  42. protected:
  43. //{{AFX_MSG(CAboutDlg)
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. };
  47. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  48. {
  49. //{{AFX_DATA_INIT(CAboutDlg)
  50. //}}AFX_DATA_INIT
  51. }
  52. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  53. {
  54. CDialog::DoDataExchange(pDX);
  55. //{{AFX_DATA_MAP(CAboutDlg)
  56. //}}AFX_DATA_MAP
  57. }
  58. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  59. //{{AFX_MSG_MAP(CAboutDlg)
  60. // No message handlers
  61. //}}AFX_MSG_MAP
  62. END_MESSAGE_MAP()
  63. /////////////////////////////////////////////////////////////////////////////
  64. // CMySnifferDlg dialog
  65. CMySnifferDlg::CMySnifferDlg(CWnd* pParent /*=NULL*/)
  66. : CDialog(CMySnifferDlg::IDD, pParent)
  67. {
  68. //{{AFX_DATA_INIT(CMySnifferDlg)
  69. // NOTE: the ClassWizard will add member initialization here
  70. //}}AFX_DATA_INIT
  71. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  72. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  73. m_threadID = 0;
  74. }
  75. void CMySnifferDlg::DoDataExchange(CDataExchange* pDX)
  76. {
  77. CDialog::DoDataExchange(pDX);
  78. //{{AFX_DATA_MAP(CMySnifferDlg)
  79. DDX_Control(pDX, IDC_BUTTON1, m_Start);
  80. DDX_Control(pDX, IDC_LIST2, m_ListCtrl);
  81. //}}AFX_DATA_MAP
  82. }
  83. BEGIN_MESSAGE_MAP(CMySnifferDlg, CDialog)
  84. //{{AFX_MSG_MAP(CMySnifferDlg)
  85. ON_WM_SYSCOMMAND()
  86. ON_WM_PAINT()
  87. ON_WM_QUERYDRAGICON()
  88. ON_BN_CLICKED(IDC_BUTTON1, OnButton1)
  89. //}}AFX_MSG_MAP
  90. END_MESSAGE_MAP()
  91. /////////////////////////////////////////////////////////////////////////////
  92. // CMySnifferDlg message handlers
  93. BOOL CMySnifferDlg::OnInitDialog()
  94. {
  95. CDialog::OnInitDialog();
  96. // Add "About..." menu item to system menu.
  97. // IDM_ABOUTBOX must be in the system command range.
  98. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  99. ASSERT(IDM_ABOUTBOX < 0xF000);
  100. CMenu* pSysMenu = GetSystemMenu(FALSE);
  101. if (pSysMenu != NULL)
  102. {
  103. CString strAboutMenu;
  104. strAboutMenu.LoadString(IDS_ABOUTBOX);
  105. if (!strAboutMenu.IsEmpty())
  106. {
  107. pSysMenu->AppendMenu(MF_SEPARATOR);
  108. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  109. }
  110. }
  111. // Set the icon for this dialog.  The framework does this automatically
  112. //  when the application's main window is not a dialog
  113. SetIcon(m_hIcon, TRUE); // Set big icon
  114. SetIcon(m_hIcon, FALSE); // Set small icon
  115. // TODO: Add extra initialization here
  116. WORD wVersionRequested;
  117. WSADATA wsaData;
  118. int err;
  119. CHAR szHostName[128] = {0};
  120. HOSTENT* pHost = NULL;
  121. CHAR* pszIp = NULL;
  122. int iNum = 0;
  123. wVersionRequested = MAKEWORD(2, 0);
  124. err = WSAStartup(wVersionRequested, &wsaData);
  125. if(err != 0)
  126. {
  127. AfxMessageBox("Load WinSock DLL failed!");
  128. exit(1);
  129. }
  130. if(gethostname(szHostName, 128) == 0)
  131. {
  132. pHost = gethostbyname(szHostName);
  133. if(pHost != NULL)
  134. {
  135. pszIp = inet_ntoa(*(in_addr*)pHost->h_addr_list[iNum]);
  136. m_ipsource = inet_addr(pszIp);
  137. }
  138. else AfxMessageBox("pszIp = NULL");
  139. }
  140. else AfxMessageBox("can't find host name!");
  141. DWORD dwStyle = GetWindowLong(m_ListCtrl.GetSafeHwnd(), GWL_STYLE);
  142. dwStyle &= ~LVS_TYPEMASK;
  143. dwStyle |= LVS_REPORT;
  144. SetWindowLong(m_ListCtrl.GetSafeHwnd(), GWL_STYLE, dwStyle);
  145. m_ListCtrl.InsertColumn(0, "数据", LVCFMT_LEFT, 525);
  146. m_ListCtrl.InsertColumn(0, "大小", LVCFMT_LEFT, 80);
  147. m_ListCtrl.InsertColumn(0, "目的端口", LVCFMT_LEFT, 60);
  148. m_ListCtrl.InsertColumn(0, "目的地址", LVCFMT_LEFT, 100);
  149. m_ListCtrl.InsertColumn(0, "源端口", LVCFMT_LEFT, 60);
  150. m_ListCtrl.InsertColumn(0, "源地址", LVCFMT_LEFT, 100);
  151. m_ListCtrl.InsertColumn(0, "协议", LVCFMT_LEFT, 40);
  152. ::SendMessage(m_ListCtrl.m_hWnd, LVM_SETEXTENDEDLISTVIEWSTYLE,
  153. LVS_EX_FULLROWSELECT, LVS_EX_FULLROWSELECT);
  154. SetWindowText("My Sample Sniffer");
  155. return TRUE;  // return TRUE  unless you set the focus to a control
  156. }
  157. char *get_proto_name(unsigned char proto)
  158. {
  159. BOOL bFound = FALSE;
  160. for(int i=0; i < PROTO_NUM; i++)
  161. {
  162. if(aOfProto[i].proto == proto)
  163. {
  164. bFound = TRUE;
  165. break;
  166. }
  167. }
  168. if(bFound)
  169. return aOfProto[i].pprototext;
  170. return aOfProto[PROTO_NUM].pprototext;
  171. }
  172. UINT threadFunc ( LPVOID p )
  173. {
  174.   CMySnifferDlg *pDlg = static_cast<CMySnifferDlg *>(p) ;
  175. char  buf [1000] , *bufwork ;
  176. MSG   msg ;
  177. int   iRet ;
  178. DWORD dwErr ;
  179.     char  *pSource , *pDest ;
  180. IPHEADER *pIpHeader ;
  181. in_addr ina ;
  182. char   szSource [16] , szDest[16] , szErr [ 50 ];
  183. char *pLastBuf = NULL ;
  184. /*-------------------zhuwei add(2002.11.9)-----------------------------*/
  185. int HdrLen, totallen;
  186. WORD sourport, destport;
  187. //struct IPPacketHead *pIPHead;
  188. struct TCPPacketHead *pTCPHead;
  189. //struct ARPPacket *pARPHead;
  190. struct ICMPPacketHead *pICMPHead;
  191. struct UDPPacketHead *pUDPHead;
  192. BYTE *pdata = NULL;
  193. /*---------------------------------------------------------------------*/
  194.     PeekMessage(&msg, NULL, WM_USER, WM_USER, PM_NOREMOVE) ; // Force to make the queue
  195.   pDlg->m_threadID = GetCurrentThreadId() ;
  196. while( TRUE )
  197. {
  198.         if( PeekMessage( &msg , 0 , WM_CLOSE,WM_CLOSE,PM_NOREMOVE ) )
  199. {
  200.           closesocket( pDlg->m_s ) ;
  201.           pDlg->m_threadID = 0 ;
  202. // Only after you see Next message you can press on Start button 
  203. pDlg->m_Start.EnableWindow(TRUE) ; 
  204. break ;
  205. }
  206. memset( buf , 0 , sizeof(buf) ) ;
  207. iRet =  recv( pDlg->m_s , buf , sizeof( buf ) , 0 ) ;
  208. if( iRet == SOCKET_ERROR )
  209. {
  210. dwErr = WSAGetLastError() ;
  211. sprintf( szErr , "Error recv() = %ld " , dwErr ) ;
  212. continue ;
  213. }
  214. else
  215. if( *buf )
  216. {
  217. // check IP here
  218. //  sprintf( szErr , "recv() = %ld " , iRet ) ;
  219. // AfxMessageBox( szErr ) ;
  220. bufwork   = buf ;
  221.          pIpHeader = (IPHEADER *)bufwork ;
  222.             WORD iLen = ntohs(pIpHeader->total_len) ;
  223. while( TRUE )
  224. {
  225. if( iLen <= iRet )
  226. {
  227.     //if( pDlg->IsIpofHost( pIpHeader ) )
  228. { // Form the line for m_list
  229.   ina.S_un.S_addr = pIpHeader->sourceIP ;
  230. pSource = inet_ntoa( ina ) ;
  231. strcpy( szSource , pSource ) ;
  232. ina.S_un.S_addr = pIpHeader->destIP ;
  233. pDest = inet_ntoa( ina ) ;
  234. strcpy( szDest , pDest ) ;
  235. CString str, strProto, strSourPort, strDestPort, strData, strSize;
  236. /*
  237. if( pIpHeader->sourceIP == ( pDlg->m_ipcheckedhost ? 
  238.            pDlg->m_ipcheckedhost : pDlg->m_iphostsource ) )
  239. strIP.Format("%s -> %s len = %d ttl=%d proto=%s" , szSource , szDest ,
  240.   iLen , pIpHeader->ttl , get_proto_name( pIpHeader->proto ) ) ;
  241. else
  242. strIP.Format("%s -> %s len = %d ttl=%d proto=%s" , szSource , szDest ,
  243. iLen , pIpHeader->ttl , get_proto_name( pIpHeader->proto ) ) ;
  244. */
  245. strProto = get_proto_name( pIpHeader->proto );
  246. /*-------------------zhuwei add(2002.11.9)-----------------------------*/
  247. HdrLen = pIpHeader->header_len&0xf;
  248. HdrLen *= 4;
  249. totallen = ntohs(pIpHeader->total_len);
  250. totallen-=HdrLen;
  251. switch(pIpHeader->proto)
  252. {
  253. case IPPROTO_ICMP:
  254. {
  255. pICMPHead=(struct ICMPPacketHead *)(buf+HdrLen);
  256. //strL4.Format(" type:%d code:%dn",pICMPHead->Type,pICMPHead->Code);
  257. strSourPort = "-";
  258. strDestPort = "-";
  259. pdata=((BYTE *)pICMPHead)+ICMP_HEAD_LEN;
  260. totallen -= ICMP_HEAD_LEN;
  261. break;
  262. }
  263. case IPPROTO_TCP:
  264. {
  265. pTCPHead=(struct TCPPacketHead *)(buf+HdrLen);
  266. sourport = ntohs(pTCPHead->SourPort);
  267. destport = ntohs(pTCPHead->DestPort);
  268. //strL4.Format(" sour port:%d,dest port:%d",sourport,destport);
  269. strSourPort.Format("%d",sourport);
  270. strDestPort.Format("%d",destport);
  271. HdrLen = (pTCPHead->HLen)>>4;  //in fact only 4 bits
  272. HdrLen *= 4;
  273. pdata=((BYTE *)pTCPHead)+HdrLen;
  274. totallen -= HdrLen;
  275. break;
  276. }
  277. case IPPROTO_UDP:
  278. {
  279. pUDPHead=(struct UDPPacketHead *)(buf+HdrLen);
  280. sourport = ntohs(pUDPHead->SourPort);
  281. destport = ntohs(pUDPHead->DestPort);
  282. //strL4.Format(" sour port:%d,dest port:%d",sourport,destport);
  283. strSourPort.Format("%d",sourport);
  284. strDestPort.Format("%d",destport);
  285. pdata=((BYTE *)pUDPHead)+UDP_HEAD_LEN;
  286. totallen -= UDP_HEAD_LEN;
  287. break;
  288. }
  289. }
  290. if(pIpHeader->proto == IPPROTO_ICMP)
  291. strData.Format("type:%d code:%d data:%s",pICMPHead->Type,pICMPHead->Code,pdata);
  292. else strData.Format("  %s",pdata);
  293. strSize.Format("%d",totallen);
  294. //str = strIP+strL4+strData;
  295. pDlg->AddData(strProto,szSource,strSourPort,szDest,strDestPort,strSize,strData);
  296. /*---------------------------------------------------------------------*/
  297.    //pDlg->m_list.AddString( str ) ;  /* zhuwei add(2002.11.9) comment */
  298. //pDlg->m_list.InsertString(0,str);  /* zhuwei add(2002.11.9) */
  299. // Sleep stabilize work of list , otherwise  sometimes pressing on scroll
  300. // cased close of program
  301. //Sleep(50) ; /* zhuwei add(2002.11.9) comment */
  302. }
  303. if( iLen < iRet )
  304. {
  305. iRet -= iLen ;
  306. bufwork  += iLen ;
  307.          pIpHeader = (IPHEADER *)bufwork ;
  308. }
  309. else
  310. break ; // pIpHeader->total_len == iRet and go out
  311. }
  312. else
  313. { // read last part of buf. I wrote it , but always recv() read exactly 
  314.                       // the lenght of the packet
  315. int iLast = iLen - iRet ;
  316. pLastBuf = new char [ iLen ] ;
  317. int iReaden = iRet ;
  318. memcpy( pLastBuf , bufwork , iReaden ) ;
  319. iRet =  recv( pDlg->m_s , pLastBuf + iReaden , iLast , 0 ) ;
  320. if( iRet == SOCKET_ERROR )
  321. {
  322. dwErr = WSAGetLastError() ;
  323. sprintf( szErr , "Error recv() = %ld " , dwErr ) ;
  324. break ;
  325. }
  326. else
  327. {
  328. bufwork = pLastBuf ;
  329.         pIpHeader = (IPHEADER *)bufwork ;
  330. if( iRet == iLast )
  331. iRet = iLen ;
  332. else
  333. { // read all last data
  334. iReaden += iRet ;
  335. iLast -= iRet ;
  336. while( TRUE )
  337. {
  338. iRet = recv( pDlg->m_s , pLastBuf +iReaden , iLast , 0 ) ;
  339. if( iRet == SOCKET_ERROR )
  340. {
  341. dwErr = WSAGetLastError() ;
  342. sprintf( szErr , "Error recv() = %ld " , dwErr ) ;
  343. break ;
  344. }
  345. else
  346. {
  347.         iReaden += iRet ;
  348.         iLast -= iRet ;
  349.     if( iLast <= 0 ) 
  350.     break ;
  351. }
  352. } // while
  353. }
  354. }
  355. }
  356. }   // while
  357. if( pLastBuf )
  358. delete [ ] pLastBuf ;
  359. }
  360. else
  361. {
  362. AfxMessageBox( "No data on network" ) ;
  363. continue ;
  364. }
  365. //Sleep( 100 ) ; //  Polling each 100 millisecond /* zhuwei add(2002.11.9) comment */
  366. }
  367. return TRUE ;
  368. }
  369. void CMySnifferDlg::OnSysCommand(UINT nID, LPARAM lParam)
  370. {
  371. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  372. {
  373. CAboutDlg dlgAbout;
  374. dlgAbout.DoModal();
  375. }
  376. else
  377. {
  378. CDialog::OnSysCommand(nID, lParam);
  379. }
  380. }
  381. // If you add a minimize button to your dialog, you will need the code below
  382. //  to draw the icon.  For MFC applications using the document/view model,
  383. //  this is automatically done for you by the framework.
  384. void CMySnifferDlg::OnPaint() 
  385. {
  386. if (IsIconic())
  387. {
  388. CPaintDC dc(this); // device context for painting
  389. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  390. // Center icon in client rectangle
  391. int cxIcon = GetSystemMetrics(SM_CXICON);
  392. int cyIcon = GetSystemMetrics(SM_CYICON);
  393. CRect rect;
  394. GetClientRect(&rect);
  395. int x = (rect.Width() - cxIcon + 1) / 2;
  396. int y = (rect.Height() - cyIcon + 1) / 2;
  397. // Draw the icon
  398. dc.DrawIcon(x, y, m_hIcon);
  399. }
  400. else
  401. {
  402. CDialog::OnPaint();
  403. }
  404. }
  405. // The system calls this to obtain the cursor to display while the user drags
  406. //  the minimized window.
  407. HCURSOR CMySnifferDlg::OnQueryDragIcon()
  408. {
  409. return (HCURSOR) m_hIcon;
  410. }
  411. void CMySnifferDlg::OnButton1() 
  412. {
  413. // TODO: Add your control notification handler code here
  414. char szErr[50], szHostName[MAX_PATH];
  415. DWORD dwErr;
  416. SOCKADDR_IN sa;
  417. gethostname(szHostName, sizeof(szHostName));
  418. m_iphostsource = m_ipsource;
  419. //m_ipcheckedhost = ntohl(m_iphost);
  420. CString str;
  421. if(m_threadID == 0)
  422. {
  423. str.LoadString(IDS_STOP);
  424. m_Start.SetWindowText(str);
  425. }
  426. else
  427. {
  428. if(m_threadID)
  429. {
  430. PostThreadMessage(m_threadID, WM_CLOSE, 0, 0);
  431. str.LoadString(IDS_START);
  432. m_Start.SetWindowText(str);
  433. m_Start.EnableWindow(FALSE);
  434. }
  435. return;
  436. }
  437. DWORD dwBufferLen[10];
  438. DWORD dwBufferInLen = 1;
  439. DWORD dwBytesReturned = 0;
  440. m_s = socket(AF_INET, SOCK_RAW, IPPROTO_IP);
  441. if(m_s == INVALID_SOCKET)
  442. {
  443. dwErr = WSAGetLastError();
  444. sprintf(szErr, "Error Socket() = %d", dwErr);
  445. AfxMessageBox(szErr);
  446. closesocket(m_s);
  447. return;
  448. }
  449. sa.sin_family = AF_INET;
  450. sa.sin_port = htons(7000);
  451. sa.sin_addr.s_addr = m_iphostsource;
  452. if(bind(m_s, (PSOCKADDR)&sa, sizeof(sa)) == SOCKET_ERROR)
  453. {
  454. dwErr = WSAGetLastError();
  455. sprintf(szErr, "Error bind() = %d", dwErr);
  456. AfxMessageBox(szErr);
  457. closesocket(m_s);
  458. return;
  459. }
  460. if(SOCKET_ERROR != WSAIoctl(m_s, SIO_RCVALL, &dwBufferInLen, sizeof(dwBufferInLen),
  461. &dwBufferLen, sizeof(dwBufferLen),
  462. &dwBytesReturned, NULL, NULL))
  463. AfxBeginThread(threadFunc, (LPVOID)this);
  464. else
  465. {
  466. dwErr = WSAGetLastError();
  467. sprintf(szErr, "Error WSAIoctl = %ld", dwErr);
  468. AfxMessageBox(szErr);
  469. closesocket(m_s);
  470. return;
  471. }
  472. }
  473. void CMySnifferDlg::AddData(CString s0, CString s1, CString s2, CString s3, CString s4, CString s5, CString s6)
  474. {
  475. int index;
  476. //if(s0 == "TCP")
  477. if((s0 == "TCP") && (s4 == "80"))
  478. {
  479. index = m_ListCtrl.InsertItem(0,s0);
  480. m_ListCtrl.SetItem(index,1,LVIF_TEXT,s1, 0, 0, 0,0);
  481. m_ListCtrl.SetItem(index,2,LVIF_TEXT,s2, 0, 0, 0,0);
  482. m_ListCtrl.SetItem(index,3,LVIF_TEXT,s3, 0, 0, 0,0);
  483. m_ListCtrl.SetItem(index,4,LVIF_TEXT,s4, 0, 0, 0,0);
  484. m_ListCtrl.SetItem(index,5,LVIF_TEXT,s5, 0, 0, 0,0);
  485. m_ListCtrl.SetItem(index,6,LVIF_TEXT,s6, 0, 0, 0,0);
  486. }
  487. //m_ctrList.SetItem(index,1,LVIF_TEXT,s2, 0, 0, 0,0);
  488. }