2020-06-24 08:36:26 +00:00
|
|
|
from core.experience import Experience, ExperienceParameter
|
2015-12-01 16:48:32 +00:00
|
|
|
import os
|
|
|
|
|
2020-06-24 08:36:26 +00:00
|
|
|
class ExperienceHTTP(Experience):
|
2015-12-01 16:48:32 +00:00
|
|
|
SERVER_LOG = "http_server.log"
|
|
|
|
CLIENT_LOG = "http_client.log"
|
|
|
|
WGET_BIN = "wget"
|
|
|
|
PING_OUTPUT = "ping.log"
|
|
|
|
|
|
|
|
def __init__(self, xpParamFile, mpTopo, mpConfig):
|
2020-06-24 08:36:26 +00:00
|
|
|
Experience.__init__(self, xpParamFile, mpTopo, mpConfig)
|
2015-12-01 16:48:32 +00:00
|
|
|
self.loadParam()
|
|
|
|
self.ping()
|
2020-06-24 08:36:26 +00:00
|
|
|
Experience.classicRun(self)
|
2015-12-01 16:48:32 +00:00
|
|
|
|
|
|
|
def ping(self):
|
|
|
|
self.mpTopo.commandTo(self.mpConfig.client, "rm " + \
|
2020-06-24 08:36:26 +00:00
|
|
|
ExperienceHTTP.PING_OUTPUT )
|
|
|
|
count = self.xpParam.getParam(ExperienceParameter.PINGCOUNT)
|
2015-12-01 16:48:32 +00:00
|
|
|
for i in range(0, self.mpConfig.getClientInterfaceCount()):
|
|
|
|
cmd = self.pingCommand(self.mpConfig.getClientIP(i),
|
|
|
|
self.mpConfig.getServerIP(), n = count)
|
|
|
|
self.mpTopo.commandTo(self.mpConfig.client, cmd)
|
|
|
|
|
|
|
|
def pingCommand(self, fromIP, toIP, n=5):
|
|
|
|
s = "ping -c " + str(n) + " -I " + fromIP + " " + toIP + \
|
2020-06-24 08:36:26 +00:00
|
|
|
" >> " + ExperienceHTTP.PING_OUTPUT
|
2015-12-01 16:48:32 +00:00
|
|
|
print(s)
|
|
|
|
return s
|
|
|
|
|
|
|
|
def loadParam(self):
|
|
|
|
"""
|
|
|
|
todo : param LD_PRELOAD ??
|
|
|
|
"""
|
2020-06-24 08:36:26 +00:00
|
|
|
self.file = self.xpParam.getParam(ExperienceParameter.HTTPFILE)
|
|
|
|
self.random_size = self.xpParam.getParam(ExperienceParameter.HTTPRANDOMSIZE)
|
2015-12-01 16:48:32 +00:00
|
|
|
|
|
|
|
def prepare(self):
|
2020-06-24 08:36:26 +00:00
|
|
|
Experience.prepare(self)
|
2015-12-01 16:48:32 +00:00
|
|
|
self.mpTopo.commandTo(self.mpConfig.client, "rm " + \
|
2020-06-24 08:36:26 +00:00
|
|
|
ExperienceHTTP.CLIENT_LOG )
|
2015-12-01 16:48:32 +00:00
|
|
|
self.mpTopo.commandTo(self.mpConfig.server, "rm " + \
|
2020-06-24 08:36:26 +00:00
|
|
|
ExperienceHTTP.SERVER_LOG )
|
2015-12-01 16:48:32 +00:00
|
|
|
if self.file == "random":
|
|
|
|
self.mpTopo.commandTo(self.mpConfig.client,
|
|
|
|
"dd if=/dev/urandom of=random bs=1K count=" + \
|
|
|
|
self.random_size)
|
|
|
|
|
|
|
|
def getHTTPServerCmd(self):
|
2020-06-24 08:36:26 +00:00
|
|
|
s = "/etc/init.d/apache2 restart &>" + ExperienceHTTP.SERVER_LOG + "&"
|
2015-12-01 16:48:32 +00:00
|
|
|
print(s)
|
|
|
|
return s
|
|
|
|
|
|
|
|
def getHTTPClientCmd(self):
|
2020-06-24 08:36:26 +00:00
|
|
|
s = "(time " + ExperienceHTTP.WGET_BIN + " http://" + self.mpConfig.getServerIP() + \
|
|
|
|
"/" + self.file + " --no-check-certificate) &>" + ExperienceHTTP.CLIENT_LOG
|
2015-12-01 16:48:32 +00:00
|
|
|
print(s)
|
|
|
|
return s
|
|
|
|
|
|
|
|
def clean(self):
|
2020-06-24 08:36:26 +00:00
|
|
|
Experience.clean(self)
|
2015-12-01 16:48:32 +00:00
|
|
|
if self.file == "random":
|
|
|
|
self.mpTopo.commandTo(self.mpConfig.client, "rm random*")
|
|
|
|
#todo use cst
|
|
|
|
#self.mpTopo.commandTo(self.mpConfig.server, "killall netcat")
|
|
|
|
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
cmd = self.getHTTPServerCmd()
|
2016-06-10 12:41:11 +00:00
|
|
|
self.mpTopo.commandTo(self.mpConfig.server, "netstat -sn > netstat_server_before")
|
2015-12-01 16:48:32 +00:00
|
|
|
self.mpTopo.commandTo(self.mpConfig.server, cmd)
|
|
|
|
|
|
|
|
self.mpTopo.commandTo(self.mpConfig.client, "sleep 2")
|
|
|
|
cmd = self.getHTTPClientCmd()
|
2016-06-10 12:41:11 +00:00
|
|
|
self.mpTopo.commandTo(self.mpConfig.client, "netstat -sn > netstat_client_before")
|
2015-12-01 16:48:32 +00:00
|
|
|
self.mpTopo.commandTo(self.mpConfig.client, cmd)
|
2016-06-10 12:41:11 +00:00
|
|
|
self.mpTopo.commandTo(self.mpConfig.server, "netstat -sn > netstat_server_after")
|
|
|
|
self.mpTopo.commandTo(self.mpConfig.client, "netstat -sn > netstat_client_after")
|
2015-12-01 16:48:32 +00:00
|
|
|
self.mpTopo.commandTo(self.mpConfig.client, "sleep 2")
|