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

通讯编程

开发平台:

Visual C++

  1. //This file outputs a ns file for a dumbell network to be used for
  2. //DDOS experiments.
  3. /*the input file is a script file which is read by the program to get
  4. the parameters of the network.
  5. A typical file example
  6. d (diameter of the network) H (hurtz parameter)  
  7. n1 (no of incoming TCP nodes) rate (rate) 
  8. n2 (no. of DDOS attackers in the subtree) master (0/1) rate (rate)
  9. */
  10. #include<stdio.h>
  11. #include<stdlib.h>
  12. #include "dosdbell.h"
  13. void set_Topology(FILE *filer);
  14. void TCL_Write_Initial(FILE *);
  15. void TCL_Write_Nodes(FILE *);
  16. void TCL_Write_Connections(FILE*);
  17. void TCL_Write_Agents(FILE *);
  18. void TCL_Write_DDOS_Agent(FILE*);
  19. void TCL_Write_Final(FILE*);
  20. struct Topology topo;
  21. int diameter;
  22. double TCP_start_time;
  23. double DDOS_start_time;
  24. double finish_time;
  25. double bw;
  26. int pack_size;
  27. float bn_delay;
  28. float bn_bw ; 
  29. main(int argc, char **argv){
  30.   FILE *filer;
  31.  
  32.   if(argc !=3){
  33.     printf("USAGE: %s parameter_filename tcloutput_filenamen",argv[0]);
  34.     exit(0);
  35.   }
  36.   else{
  37.     filer = fopen(argv[1],"r");
  38.     set_Topology(filer);
  39.     fclose(filer);
  40.     filer = fopen(argv[2],"w");
  41.     TCL_Write_Initial(filer);
  42.     TCL_Write_Nodes(filer);
  43.     TCL_Write_Connections(filer);
  44.     TCL_Write_Agents(filer);
  45.     TCL_Write_DDOS_Agent(filer);
  46.     /* TCL_Write_Final(filer);*/
  47.     fclose(filer);
  48.   }  
  49. }
  50.   
  51. void set_Topology(FILE *filer){
  52.   double perT, perFTP, perCBR, perV;
  53.   int i;
  54.   double H;
  55.   double rnd;
  56.   int attackNo,master;
  57.   double DDOSRate;
  58.   double hop;  
  59.   fscanf(filer,"%d %f %fn",&diameter,&bn_bw,&bn_delay);
  60.   fscanf(filer,"%d %lf %lfn",&topo.TCPNodes.NoNodes,&bw,&TCP_start_time);  
  61.   topo.TCPNodes.TCPNode = (struct TCP_Node_Info *)malloc(topo.TCPNodes.NoNodes*sizeof(struct TCP_Node_Info));
  62.   for(i=0;i<topo.TCPNodes.NoNodes;i++){
  63.     
  64.     /* Based on the topology, get the number of hops from the source to destination.
  65.        Since a dumbbell has a minimum of three hops, the number of hops returned 
  66.        should be greater than 3 
  67.     */ 
  68.     do{
  69.       topo.TCPNodes.TCPNode[i].delayFrom = (double) Inet_default_no_hops(diameter);
  70.     }while(topo.TCPNodes.TCPNode[i].delayFrom<=3);
  71.     /* Calculate the delay in for both the links */
  72.     topo.TCPNodes.TCPNode[i].delayTo = ceil(drand48()*(topo.TCPNodes.TCPNode[i].delayFrom-2));
  73.     topo.TCPNodes.TCPNode[i].delayFrom -= topo.TCPNodes.TCPNode[i].delayTo;
  74.     
  75.     /* Maximum delay between the start of all sources */
  76.     rnd = ((double)(drand48()*TCP_start_time));
  77.     topo.TCPNodes.TCPNode[i].startTime = rnd;
  78.   }
  79.   fscanf(filer,"%d %lf %d %d %lfn",&topo.CBRTraffic.NoAttackers,&topo.CBRTraffic.DDOSRate,&pack_size,&master,&DDOS_start_time); 
  80.   CBRTrafficInet(diameter,topo.CBRTraffic.NoAttackers, master, topo.CBRTraffic.DDOSRate, &topo.CBRTraffic.DDOSTraffic);
  81.   if(master==0)
  82.     topo.CBRTraffic.master = NoMaster;
  83.   else
  84.     topo.CBRTraffic.master = Master;
  85.   topo.CBRTraffic.MaxTime = topo.CBRTraffic.DDOSTraffic.Events[topo.CBRTraffic.DDOSTraffic.NoEvents-1].delay;
  86.   fscanf(filer,"%lfn",&finish_time);
  87.   printf("Topology Generated Using:n Diameter=%d BottleNeck: BW=%.3fMbps Delay=%.3fmsn 
  88. Background Traffic: TCP Nodes=%d BW=%.3lfMbps Starttime=%.1lfsn 
  89. Dos Traffic       : Attacker= %d BW=%.3lfMbps Starttime=%.1lfsn 
  90. PacketSize=%dB  Master = %d  Finishtime = %.1lfsn", 
  91.  diameter,bn_bw,bn_delay,topo.TCPNodes.NoNodes,bw,TCP_start_time, 
  92.  topo.CBRTraffic.NoAttackers, 
  93.          topo.CBRTraffic.DDOSRate, DDOS_start_time,pack_size,master,finish_time);
  94. }
  95. void TCL_Write_Initial(FILE *filew){
  96.   fprintf(filew, "# Dumping asim datann");
  97. }
  98. void TCL_Write_Nodes(FILE *filew){
  99. }
  100. void TCL_Write_Connections(FILE *filew){
  101.   int i;
  102.   int bw_;
  103.   double del_;
  104.   int c;
  105.   bw_ = ((int)bn_bw * 125);
  106.   del_ = bn_delay*1.0/1000;
  107.   fprintf(filew,"m %dn",topo.TCPNodes.NoNodes*2+3);
  108.   fprintf(filew,"link 1  %.3lf %d %d 50 n",del_,bw_,bw_);
  109.   c=3;
  110.   for(i=0;i<topo.TCPNodes.NoNodes;i++){
  111.   bw_ = ((int)(bw*125));
  112.   del_= topo.TCPNodes.TCPNode[i].delayTo*bn_delay/1000;
  113.   fprintf(filew,"link %d  %.3lf %d %d 50 n", c+1, del_,bw_,bw_);
  114.   fprintf(filew,"link %d  %.3lf %d %d 50 n", c+2, del_,bw_,bw_);
  115.   c=c+2;
  116.   }
  117. }
  118. void TCL_Write_Agents(FILE *filew){
  119. int i;
  120. double time;
  121. int c = 3;
  122. fprintf(filew,"n %d n",topo.TCPNodes.NoNodes+1);
  123. for(i=1; i<=topo.TCPNodes.NoNodes; i++){
  124. fprintf(filew,"route %d 3 %d 1 %dn", i, c+1,c+2);
  125. c=c+2;
  126. }
  127. }
  128. void TCL_Write_DDOS_Agent(FILE* filew){
  129. int i;
  130. double ddosbw;
  131. fprintf(filew,"# Ddos stuffn");
  132. ddosbw =  topo.CBRTraffic.DDOSTraffic.Events[0].NetCBR;
  133. for(i=1;i<topo.CBRTraffic.DDOSTraffic.NoEvents;i++){
  134. ddosbw+=topo.CBRTraffic.DDOSTraffic.Events[i].NetCBR;
  135. }
  136. fprintf(filew,"route %d 3 2 1 3 cbr %dn",topo.TCPNodes.NoNodes+1,
  137. ((int)(ddosbw*125)));
  138. }
  139. void TCL_Write_Final(FILE *filew){
  140.   fprintf(filew,"nn");
  141.   fprintf(filew,"set outfile [open qtrace.tr w]n$ns trace-queue $BotLeft $BotRight $outfilennn");
  142.   fprintf(filew,"$ns at %lf "finish"n",finish_time);
  143.   fprintf(filew, "$ns runn");
  144. }