fmodel.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  ftp 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:?", @ARGV);
  44. my($ch);
  45. while ($dbopts->getopt) {
  46.      $ch = $dbopts->opt;
  47.         if ($ch eq 'r') {
  48. $infile = $dbopts->optarg;
  49.      } else {
  50.              &usage;
  51.         };
  52. };
  53. $fc=0;
  54. while (<>) {
  55.         ($ip,$type,$dummy) = split(/[n ]/,$_);
  56. $dummy="";
  57.   if ($type eq "F") {
  58. $ftp[$fc]=$ip;
  59. $handle=join("","FTP",$fc);
  60. $fh[$fc]=$handle;
  61. $fc++;
  62.             #initialize/clear the output file
  63. $fext=join("-","FTP",$fc);
  64. $outfile=join(".",$infile,$fext);
  65. # open($handle,"> $outfile") || die("cannot open $outfilen");
  66. open($handle,"> $fext") || die("cannot open $outfilen");
  67.         }
  68. }
  69. open(FIN,"< $infile") || die("cannot open $infilen");
  70. while (<FIN>) {
  71.         ($time1,$time2,$dummy0,$ip11,$ip12,$ip13,$ip14,$srcPort,$dummy1,$ip21,$ip22,$ip23,$ip24,$dstPort,$dummy2) = split(/[.:() ]/,$_);
  72. $dummy0="";
  73. $dummy1="";
  74. $dummy2="";
  75. $srcPort="";
  76. $dstPort="";
  77. $time1="";
  78. $time2="";
  79.         foreach $j (0 .. $#ftp) {
  80. $prefix=$ftp[$j];
  81.   $handle=$fh[$j];
  82. ($ip1,$ip2,$ip3,$ip4,$m1,$m2,$m3,$m4) = split(/[./ ]/,$prefix);
  83. $r1= 255 - $m1;
  84. $r2= 255 - $m2;
  85. $r3= 255 - $m3;
  86. $r4= 255 - $m4;
  87. $ip1h=$ip1+$r1;
  88. $ip2h=$ip2+$r2;
  89. $ip3h=$ip3+$r3;
  90. $ip4h=$ip4+$r4;
  91. if ($ip1h >  255) {
  92.      $ip1=0;
  93.     $ip1h=255;
  94.       }
  95. if ($ip2h >  255) {
  96.      $ip2=0;
  97.      $ip2h=255;
  98. }
  99. if ($ip3h >  255) {
  100.      $ip3=0;
  101.      $ip3h=255;
  102. }
  103. if ($ip4h >  255) {
  104.      $ip4=0;
  105.      $ip4h=255;
  106. }
  107.        if (((($ip11 <= $ip1h) && ($ip11 >= $ip1)) &&
  108.                    (($ip12 <= $ip2h) && ($ip12 >= $ip2)) &&
  109.           (($ip13 <= $ip3h) && ($ip13 >= $ip3)) &&
  110.           (($ip14 <= $ip4h) && ($ip14 >= $ip4))) ||
  111.            ((($ip21 <= $ip1h) && ($ip21 >= $ip1)) &&
  112.                    (($ip22 <= $ip2h) && ($ip22 >= $ip2)) &&
  113.           (($ip23 <= $ip3h) && ($ip23 >= $ip3)) &&
  114.           (($ip24 <= $ip4h) && ($ip24 >= $ip4)))) {
  115. print $handle "$_";
  116.          }
  117.       }
  118. }
  119. close(FIN);
  120. #compute CDF for each FTP model
  121. foreach $j (0 .. $#ftp) {
  122.         $k=$j+1;
  123. # $fext=join("-","FTP",$k);
  124. # $outfile=join(".",$infile,$fext);
  125. $outfile=join("-","FTP",$k);
  126. $outfile1=join(".",$outfile,"flow.sort");
  127. $outfile2=join(".",$outfile,"arrive");
  128. $outfile3=join(".",$outfile,"arrive.sort");
  129. $outfile4=join(".",$outfile,"file.inter");
  130. $outfile5=join(".",$outfile,"size");
  131. $outfile6=join(".",$outfile,"fileno");
  132. $outfile7=join(".",$outfile,"session");
  133. $outfile8=join(".",$outfile,"session.sort");
  134. $outfile9=join(".",$outfile,"session.inter");
  135.         $ret=`cat $outfile | awk -f ftp.awk | sort > $outfile1`;
  136. $ret=`cat $outfile1 | ftp.pl -w $outfile`;
  137. $ret=`sort -o $outfile3 $outfile2`;
  138. $ret=`awk -f ftp.arrive.awk < $outfile3 > $outfile4`;
  139. $ret=`sort -o $outfile8 $outfile7`;
  140. $ret=`awk -f arrive2inter.awk < $outfile8 > $outfile9`;
  141. $ret=`dat2cdf -e 0 -i 0.001 -d 1 -t $outfile4`;
  142. $ret=`dat2cdf -e 0 -i 1000 -d 1000 -t $outfile5`;
  143. $ret=`dat2cdf -e 0 -i 1 -d 1 -t $outfile6`;
  144. $ret=`dat2cdf -e 0 -i 1 -d 1 -t $outfile9`;
  145. }