home *** CD-ROM | disk | FTP | other *** search
/ Power Hacker 2003 / Power_Hacker_2003.iso / E-zine / Magazines / crh / freebsd / rootkit / sniffit.0.3.5 / sn_packets.c.orig < prev    next >
Encoding:
Text File  |  2002-05-27  |  3.1 KB  |  110 lines

  1. /* Sniffit Packet Discription File                                        */
  2. /*   - by: Brecht Claerhout                            */
  3.  
  4. #include "sn_config.h"
  5. #include "sn_defines.h"
  6. #include "sn_structs.h"
  7. #include <netinet/in.h>
  8.  
  9. extern int PROTO_HEAD;
  10. extern char NO_CHKSUM;
  11.  
  12. /* This routine stolen from ping.c */
  13. unsigned short in_cksum(unsigned short *addr,int len)
  14. {
  15. register int nleft = len;   /* leave this alone.. my opinion is that the   */
  16. register unsigned short *w = addr; 
  17.                             /* register is needed to make it work for both */ 
  18. register int sum = 0;       /* BIG and LITTLE endian machines              */ 
  19. unsigned short answer = 0;     
  20.                         /* but then again, who am I to make such statement */
  21.  
  22. while (nleft > 1)
  23.         {
  24.         sum += *w++;
  25.         nleft -= 2;
  26.         }
  27. if (nleft == 1)
  28.         {
  29.         *(unsigned char *)(&answer) = *(unsigned char *)w ;
  30.         sum += answer;
  31.         }
  32. sum = (sum >> 16) + (sum & 0xffff);
  33. sum += (sum >> 16);
  34. answer = ~sum;
  35. return(answer);
  36. }
  37.  
  38. int unwrap_packet (unsigned char *sp, struct unwrap *unwrapped) 
  39.     struct IP_header  IPhead;
  40.     struct TCP_header TCPhead;
  41.     struct ICMP_header ICMPhead;
  42.     struct UDP_header UDPhead;
  43.  
  44.     int i;
  45.  
  46.     memcpy(&IPhead,(sp+PROTO_HEAD),sizeof(struct IP_header));
  47.                                                   /* IP header Conversion */
  48.      unwrapped->IP_len = (IPhead.verlen & 0xF) << 2;
  49.     
  50.     unwrapped->TCP_len = 0;             /* Reset structure NEEDED!!! */
  51.     unwrapped->UDP_len = 0;
  52.     unwrapped->DATA_len = 0;
  53.         
  54.     if(NO_CHKSUM == 0)
  55.         {
  56.         sp[PROTO_HEAD+10]=0;       /* reset checksum to zero, Q&D way*/
  57.         sp[PROTO_HEAD+11]=0;             
  58.         if(in_cksum((sp+PROTO_HEAD),unwrapped->IP_len) != IPhead.checksum)
  59.             {
  60. #ifdef DEBUG_ONSCREEN
  61.             printf("Packet dropped... (invalid IP chksum)\n");
  62.             printf("%X   %X (len %d)\n",in_cksum((sp+PROTO_HEAD),unwrapped->IP_len),IPhead.checksum,unwrapped->IP_len);
  63. #endif
  64.             return NO_IP;
  65.             }
  66.         if(0)
  67.             {
  68. #ifdef DEBUG_ONSCREEN
  69.             printf("Packet dropped... (invalid IP version)\n");
  70. #endif
  71.             return NO_IP_4;
  72.             }
  73.         memcpy((sp+PROTO_HEAD),&IPhead,sizeof(struct IP_header));
  74.                     /* restore orig buffer      */
  75.                          /* general programming rule */
  76.         }
  77.     if(IPhead.protocol == TCP )                     /* TCP */
  78.         {
  79.         memcpy(&TCPhead,(sp+PROTO_HEAD+(unwrapped->IP_len)),
  80.                         sizeof(struct TCP_header));
  81.         unwrapped->TCP_len = ntohs(TCPhead.offset_flag) & 0xF000;
  82.         unwrapped->TCP_len >>= 10; 
  83.         unwrapped->DATA_len = ntohs(IPhead.length) -
  84.                 (unwrapped->IP_len) - (unwrapped->TCP_len); 
  85.         return TCP;
  86.         }
  87.     if(IPhead.protocol == ICMP )                     /* ICMP */
  88.         {
  89.         memcpy(&ICMPhead,(sp+PROTO_HEAD+(unwrapped->IP_len)),
  90.                         sizeof(struct ICMP_header));
  91.         unwrapped->ICMP_len = ICMP_HEADLENGTH;
  92.         unwrapped->DATA_len = ntohs(IPhead.length) -
  93.                 (unwrapped->IP_len) - (unwrapped->ICMP_len); 
  94.         return ICMP; 
  95.         }
  96.     if(IPhead.protocol == UDP )                       /* UDP */
  97.         {
  98.         memcpy(&UDPhead,(sp+PROTO_HEAD+(unwrapped->IP_len)),
  99.                         sizeof(struct UDP_header));
  100.         unwrapped->UDP_len = UDP_HEADLENGTH;
  101.         unwrapped->DATA_len = ntohs(IPhead.length) -
  102.                 (unwrapped->IP_len) - (unwrapped->UDP_len); 
  103.         return UDP; 
  104.         }
  105.     return -1; 
  106. }
  107.  
  108.  
  109.