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

通讯编程

开发平台:

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 [-r Filename]
  29. Options:
  30.     -r string  web trace
  31. END
  32.         exit 1;
  33. }
  34. BEGIN {
  35.      $dblibdir = "./";
  36.         push(@INC, $dblibdir);
  37. }
  38. use DbGetopt;
  39. require "dblib.pl";
  40. my(@orig_argv) = @ARGV;
  41. &usage if ($#ARGV < 0);
  42. my($prog) = &progname;
  43. my($dbopts) = new DbGetopt("r:t:?", @ARGV);
  44. my($ch);
  45. while ($dbopts->getopt) {
  46.      $ch = $dbopts->opt;
  47.         if ($ch eq 'r') {
  48. $infile = $dbopts->optarg;
  49. } elsif ($ch eq 't') { 
  50. $threshold = $dbopts->optarg;
  51.      } else {
  52.              &usage;
  53.         };
  54. };
  55. $fc=0;
  56. while (<>) {
  57.         ($ip,$type,$dummy) = split(/[n ]/,$_);
  58. $dummy="";
  59.   if ($type eq "W") {
  60. $www[$fc]=$ip;
  61. $handle=join("","WEB",$fc);
  62. $fh[$fc]=$handle;
  63. $fc++;
  64.             #initialize/clear the output file
  65. $fext=join("-","WEB",$fc);
  66. $outfile=join(".",$infile,$fext);
  67. open($handle,"> $fext") || die("1cannot open $outfilen");
  68.         }
  69. }
  70. open(FIN,"< $infile") || die("cannot open $infilen");
  71. while (<FIN>) {
  72.         ($time1,$time2,$dummy0,$ip11,$ip12,$ip13,$ip14,$srcPort,$dummy1,$ip21,$ip22,$ip23,$ip24,$dstPort,$dummy2) = split(/[.:() ]/,$_);
  73. $dummy0="";
  74. $dummy1="";
  75. $dummy2="";
  76. $srcPort="";
  77. $dstPort="";
  78. $time1="";
  79. $time2="";
  80.         foreach $j (0 .. $#www) {
  81. $prefix=$www[$j];
  82.   $handle=$fh[$j];
  83. ($ip1,$ip2,$ip3,$ip4,$m1,$m2,$m3,$m4) = split(/[./ ]/,$prefix);
  84. $r1= 255 - $m1;
  85. $r2= 255 - $m2;
  86. $r3= 255 - $m3;
  87. $r4= 255 - $m4;
  88. $ip1h=$ip1+$r1;
  89. $ip2h=$ip2+$r2;
  90. $ip3h=$ip3+$r3;
  91. $ip4h=$ip4+$r4;
  92. if ($ip1h >  255) {
  93.      $ip1=0;
  94.     $ip1h=255;
  95.       }
  96. if ($ip2h >  255) {
  97.      $ip2=0;
  98.      $ip2h=255;
  99. }
  100. if ($ip3h >  255) {
  101.      $ip3=0;
  102.      $ip3h=255;
  103. }
  104. if ($ip4h >  255) {
  105.      $ip4=0;
  106.      $ip4h=255;
  107. }
  108.        if (((($ip11 <= $ip1h) && ($ip11 >= $ip1)) &&
  109.                    (($ip12 <= $ip2h) && ($ip12 >= $ip2)) &&
  110.           (($ip13 <= $ip3h) && ($ip13 >= $ip3)) &&
  111.           (($ip14 <= $ip4h) && ($ip14 >= $ip4))) ||
  112.            ((($ip21 <= $ip1h) && ($ip21 >= $ip1)) &&
  113.                    (($ip22 <= $ip2h) && ($ip22 >= $ip2)) &&
  114.           (($ip23 <= $ip3h) && ($ip23 >= $ip3)) &&
  115.           (($ip24 <= $ip4h) && ($ip24 >= $ip4)))) {
  116. print $handle "$_";
  117.          }
  118.       }
  119. }
  120. close(FIN);
  121. #compute CDF for each FTP model
  122. foreach $j (0 .. $#www) {
  123.         $k=$j+1;
  124. # $fext=join("-","FTP",$k);
  125. # $outfile=join(".",$infile,$fext);
  126. $outfile=join("-","WEB",$k);
  127. $outfile1=join(".",$outfile,"http-srv-sort");
  128. $outfile2=join(".",$outfile,"http-srv.connect");
  129. $outfile3=join(".",$outfile,"http-srv.connect.time");
  130. $outfile4=join(".",$outfile,"http-srv.connect.time.sort");
  131. $outfile5=join(".",$outfile,"http-srv.connect.sort");
  132. $outfile6=join(".",$outfile,"http-srv.active");
  133. $outfile7=join(".",$outfile,"http-srv.active.activity");
  134.         $ret=`sort -s -o $outfile1 +1 -2 +3 -4 +0 -1 -T /tmp $outfile`;
  135. $ret=`http_connect -r $outfile1 -w $outfile2`;
  136. $ret=`grep "ACT" $outfile2 > $outfile3`;
  137. $ret=`sort $outfile3 > $outfile4`;
  138. $ret=`sort -s -o $outfile5 +1 -2 +0 -1 -T /tmp $outfile2`;
  139. $ret=`http_active -r  $outfile5 -w $outfile6 -I $threshold`;
  140. $ret=`cat $outfile7 | outputCDF -e $outfile`;
  141. }