io.www.pl
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:5k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #!/usr/bin/perl -w
  2. #
  3. # Copyright (C) 2001 by USC/ISI
  4. # All rights reserved.
  5. #
  6. # Redistribution and use in source and binary forms are permitted
  7. # provided that the above copyright notice and this paragraph are
  8. # duplicated in all such forms and that any documentation, advertising
  9. # materials, and other materials related to such distribution and use
  10. # acknowledge that the software was developed by the University of
  11. # Southern California, Information Sciences Institute.  The name of the
  12. # University may not be used to endorse or promote products derived from
  13. # this software without specific prior written permission.
  14. #
  15. # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
  16. # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  17. # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  18. #
  19. # An perl script that seperate inbound and outbound traffic of ISI domain, 
  20. # used by SAMAN ModelGen
  21. #
  22. # This work is supported by DARPA through SAMAN Project
  23. # (http://www.isi.edu/saman/), administered by the Space and Naval
  24. # Warfare System Center San Diego under Contract No. N66001-00-C-8066
  25. #
  26. sub usage {
  27.         print STDERR <<END;
  28. usage: $0 [-s DomainPrefix] [-w FilenameExtention]
  29. Options:
  30.     -s string  specify IP prefix to distinguish Inbound from outbound
  31.                traffic (eg. 192.1)
  32.     -w string  specify the filename extention
  33. END
  34.         exit 1;
  35. }
  36. BEGIN {
  37.      $dblibdir = "./";
  38.         push(@INC, $dblibdir);
  39. }
  40. use DbGetopt;
  41. require "dblib.pl";
  42. my(@orig_argv) = @ARGV;
  43. &usage if ($#ARGV < 0);
  44. my($prog) = &progname;
  45. my($dbopts) = new DbGetopt("s:w:?", @ARGV);
  46. my($ch);
  47. while ($dbopts->getopt) {
  48.      $ch = $dbopts->opt;
  49.         if ($ch eq 's') {
  50. $prefix = $dbopts->optarg;
  51. } elsif ($ch eq 'w') {
  52.         $fext = $dbopts->optarg;
  53.      } else {
  54.              &usage;
  55.         };
  56. };
  57. ($ip1,$ip2,$ip3,$ip4,$m1,$m2,$m3,$m4) = split(/[./ ]/,$prefix);
  58. $r1= 255 - $m1;
  59. $r2= 255 - $m2;
  60. $r3= 255 - $m3;
  61. $r4= 255 - $m4;
  62. $ip1h=$ip1+$r1;
  63. $ip2h=$ip2+$r2;
  64. $ip3h=$ip3+$r3;
  65. $ip4h=$ip4+$r4;
  66. if ($ip1h >  255) {
  67.    $ip1=0;
  68.    $ip1h=255;
  69. }
  70. if ($ip2h >  255) {
  71.    $ip2=0;
  72.    $ip2h=255;
  73. }
  74. if ($ip3h >  255) {
  75.    $ip3=0;
  76.    $ip3h=255;
  77. }
  78. if ($ip4h >  255) {
  79.     $ip4=0;
  80.     $ip4h=255;
  81. }
  82. $woutf=join(".",$fext,"outbound");
  83. $winf=join(".",$fext,"inbound");
  84. $http_port="80";
  85. $http_port_alias="http";
  86. #$HttpPrefixPort=join(".",$prefix,$http_port);
  87. open(WOUT,"> $woutf") || die("cannot open $woutfn");
  88. open(WIN,"> $winf") || die("cannot open $winfn");
  89. while (<>) {
  90.         ($time1,$time2,$ip11,$ip12,$ip13,$ip14,$srcPort,$dummy1,$ip21,$ip22,$ip23,$ip24,$dstPort,$dummy2) = split(/[.:() ]/,$_);
  91. #        ($time1,$time2,$dummy0,$ip11,$ip12,$ip13,$ip14,$srcPort,$dummy1,$ip21,$ip22,$ip23,$ip24,$dstPort,$dummy2) = split(/[.:() ]/,$_);
  92. #        $dummy0="";
  93.         $dummy1="";
  94.         $dummy2="";
  95. $time1=0;
  96. $time2=0;
  97. # $prefixc=join(".",$ip11,$ip12);
  98. # $prefixs=join(".",$ip21,$ip22);
  99. # $prefixcp=join(".",$ip11,$ip12,$srcPort);
  100. # $prefixsp=join(".",$ip21,$ip22,$dstPort);
  101.         #seperate Inbound and Outbound WWW traffic of ISI
  102. # if (( $prefixcp eq $HttpPrefixPort) || ( $prefixsp eq $HttpPrefixPort))
  103.         if ((((($ip11 <= $ip1h) && ($ip11 >= $ip1)) &&
  104.               (($ip12 <= $ip2h) && ($ip12 >= $ip2)) &&
  105.               (($ip13 <= $ip3h) && ($ip13 >= $ip3)) &&
  106.               (($ip14 <= $ip4h) && ($ip14 >= $ip4))) && 
  107.                     (($srcPort eq $http_port) || ($srcPort eq $http_port_alias))) ||
  108.             (((($ip21 <= $ip1h) && ($ip21 >= $ip1)) &&
  109.               (($ip22 <= $ip2h) && ($ip22 >= $ip2)) &&
  110.               (($ip23 <= $ip3h) && ($ip23 >= $ip3)) &&
  111.               (($ip24 <= $ip4h) && ($ip24 >= $ip4))) && 
  112.                     (($dstPort eq $http_port) || ($dstPort eq $http_port_alias))) ) 
  113. {
  114. print WOUT "$_";
  115. } else {
  116. # if ((($prefixc ne $prefix) && ($srcPort eq $http_port)) || 
  117. #     (($prefixs ne $prefix) && ($dstPort eq $http_port))) 
  118.                 if ((!((($ip11 <= $ip1h) && ($ip11 >= $ip1)) &&
  119.                       (($ip12 <= $ip2h) && ($ip12 >= $ip2)) &&
  120.                       (($ip13 <= $ip3h) && ($ip13 >= $ip3)) &&
  121.                        (($ip14 <= $ip4h) && ($ip14 >= $ip4))) && 
  122.                     (($srcPort eq $http_port) || ($srcPort eq $http_port_alias))) ||
  123.                     (!((($ip21 <= $ip1h) && ($ip21 >= $ip1)) &&
  124.                        (($ip22 <= $ip2h) && ($ip22 >= $ip2)) &&
  125.                        (($ip23 <= $ip3h) && ($ip23 >= $ip3)) &&
  126.                        (($ip24 <= $ip4h) && ($ip24 >= $ip4))) && 
  127.                     (($dstPort eq $http_port) || ($dstPort eq $http_port_alias)))) 
  128. {
  129. print WIN "$_";
  130. }
  131. }
  132. }
  133. close(WOUT);
  134. close(WIN);