2020-06-25 12:56:47 +00:00
|
|
|
from core.experience import ExperienceParameter, RandomFileExperience, RandomFileParameter
|
2020-06-24 14:11:54 +00:00
|
|
|
import os
|
|
|
|
|
2020-06-25 12:56:47 +00:00
|
|
|
class HTTPS(RandomFileExperience):
|
2020-06-24 14:11:54 +00:00
|
|
|
NAME = "https"
|
|
|
|
|
|
|
|
SERVER_LOG = "https_server.log"
|
|
|
|
CLIENT_LOG = "https_client.log"
|
|
|
|
WGET_BIN = "wget"
|
|
|
|
PING_OUTPUT = "ping.log"
|
|
|
|
|
2020-06-25 12:56:47 +00:00
|
|
|
def __init__(self, experience_parameter_filename, topo, topo_config):
|
|
|
|
# Just rely on RandomFileExperiment
|
|
|
|
super(HTTPS, self).__init__(experience_parameter_filename, topo, topo_config)
|
2020-06-24 14:11:54 +00:00
|
|
|
|
|
|
|
def ping(self):
|
2020-06-25 08:53:56 +00:00
|
|
|
self.topo.command_to(self.topo_config.client, "rm " + \
|
2020-06-24 14:11:54 +00:00
|
|
|
HTTPS.PING_OUTPUT )
|
2020-06-25 15:01:58 +00:00
|
|
|
count = self.experience_parameter.get(ExperienceParameter.PING_COUNT)
|
2020-06-25 08:53:56 +00:00
|
|
|
for i in range(0, self.topo_config.getClientInterfaceCount()):
|
|
|
|
cmd = self.pingCommand(self.topo_config.getClientIP(i),
|
|
|
|
self.topo_config.getServerIP(), n = count)
|
|
|
|
self.topo.command_to(self.topo_config.client, cmd)
|
2020-06-24 14:11:54 +00:00
|
|
|
|
|
|
|
def pingCommand(self, fromIP, toIP, n=5):
|
|
|
|
s = "ping -c " + str(n) + " -I " + fromIP + " " + toIP + \
|
|
|
|
" >> " + HTTPS.PING_OUTPUT
|
|
|
|
print(s)
|
|
|
|
return s
|
|
|
|
|
2020-06-25 12:56:47 +00:00
|
|
|
def load_parameters(self):
|
|
|
|
# Just rely on RandomFileExperiment
|
|
|
|
super(HTTPS, self).load_parameters()
|
2020-06-24 14:11:54 +00:00
|
|
|
|
|
|
|
def prepare(self):
|
|
|
|
super(HTTPS, self).prepare()
|
2020-06-25 08:53:56 +00:00
|
|
|
self.topo.command_to(self.topo_config.client, "rm " + \
|
2020-06-24 14:11:54 +00:00
|
|
|
HTTPS.CLIENT_LOG )
|
2020-06-25 08:53:56 +00:00
|
|
|
self.topo.command_to(self.topo_config.server, "rm " + \
|
2020-06-24 14:11:54 +00:00
|
|
|
HTTPS.SERVER_LOG )
|
|
|
|
|
|
|
|
def getHTTPSServerCmd(self):
|
|
|
|
s = "python {}/../utils/https_server.py {}/../utils/server.pem &> {}&".format(os.path.dirname(os.path.abspath(__file__)),
|
|
|
|
os.path.dirname(os.path.abspath(__file__)), HTTPS.SERVER_LOG)
|
|
|
|
print(s)
|
|
|
|
return s
|
|
|
|
|
|
|
|
def getHTTPSClientCmd(self):
|
2020-06-25 08:53:56 +00:00
|
|
|
s = "(time " + HTTPS.WGET_BIN + " https://" + self.topo_config.getServerIP() + \
|
2020-06-24 14:11:54 +00:00
|
|
|
"/" + self.file + " --no-check-certificate) &>" + HTTPS.CLIENT_LOG
|
|
|
|
print(s)
|
|
|
|
return s
|
|
|
|
|
|
|
|
def clean(self):
|
|
|
|
super(HTTPS, self).clean()
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
cmd = self.getHTTPSServerCmd()
|
2020-06-25 08:53:56 +00:00
|
|
|
self.topo.command_to(self.topo_config.server, "netstat -sn > netstat_server_before")
|
|
|
|
self.topo.command_to(self.topo_config.server, cmd)
|
2020-06-24 14:11:54 +00:00
|
|
|
|
|
|
|
print("Waiting for the server to run")
|
2020-06-25 12:56:47 +00:00
|
|
|
self.topo.command_to(self.topo_config.client, "sleep 2")
|
2020-06-24 14:11:54 +00:00
|
|
|
cmd = self.getHTTPSClientCmd()
|
2020-06-25 08:53:56 +00:00
|
|
|
self.topo.command_to(self.topo_config.client, "netstat -sn > netstat_client_before")
|
|
|
|
self.topo.command_to(self.topo_config.client, cmd)
|
|
|
|
self.topo.command_to(self.topo_config.server, "netstat -sn > netstat_server_after")
|
|
|
|
self.topo.command_to(self.topo_config.client, "netstat -sn > netstat_client_after")
|
|
|
|
self.topo.command_to(self.topo_config.server, "pkill -f https_server.py")
|
|
|
|
self.topo.command_to(self.topo_config.client, "sleep 2")
|