forked from sdnfv/openNetVM
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun_group.py
218 lines (200 loc) · 7.44 KB
/
run_group.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
#!/usr/bin/env python3
# openNetVM
# https://sdnfv.github.io
#
# OpenNetVM is distributed under the following BSD LICENSE:
#
# Copyright(c)
# 2015-2018 George Washington University
# 2015-2018 University of California Riverside
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
# * The name of the author may not be used to endorse or promote
# products derived from this software without specific prior
# written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
"""This script allows a user to launch a chain of NFs from a JSON
config file passed in as an argument when running the script"""
import sys
import json
import os
import shlex
import time
from signal import signal, SIGINT
from subprocess import Popen
from datetime import datetime
def handler(signal_received, frame):
"""Handles cleanup on user shutdown"""
# pylint: disable=unused-argument
for lf in log_files:
lf.close()
print("\nExiting...")
sys.exit(0)
def get_config():
"""Gets path to JSON config file"""
if len(sys.argv) < 2:
print("Error: Specify config file")
sys.exit(0)
file_name = sys.argv[1]
if os.path.exists(file_name):
return file_name
print("Error: No config file found")
sys.exit(0)
def on_failure():
"""Handles shutdown on error"""
for lf in log_files:
lf.close()
try:
script_pid = os.getpid()
pid_list = os.popen("ps -ef | awk '{if ($3 == " + str(script_pid) + ") print $2 " " $3}'")
pid_list = pid_list.read().split("\n")[:-2]
for pd in pid_list:
pd = pd.replace(str(script_pid), "")
temp = os.popen("ps -ef | awk '{if($3 == " + pd + ") print $2 " " $3}'")
temp = temp.read().replace(str(pd), "").replace("\n", "")
if temp != "":
_pid_for_nf = os.popen("ps -ef | awk '{if($3 == " + temp + ") print $2 " " $3}'")
_pid_for_nf = _pid_for_nf.read().replace(temp, "").replace("\n", "")
os.system("sudo kill " + _pid_for_nf)
except:
pass
print("Error occurred. Exiting...")
sys.exit(1)
def on_timeout():
"""Handles shutdown on timeout"""
for lf in log_files:
lf.close()
try:
script_pid = os.getpid()
pid_list = os.popen("ps -ef | awk '{if ($3 == " + str(script_pid) + ") print $2 " " $3}'")
pid_list = pid_list.read().split("\n")[:-2]
for pd in pid_list:
pd = pd.replace(str(script_pid), "")
temp = os.popen("ps -ef | awk '{if($3 == " + pd + ") print $2 " " $3}'")
temp = temp.read().replace(str(pd), "").replace("\n", "")
if temp != "":
_pid_for_nf = os.popen("ps -ef | awk '{if($3 == " + temp + ") print $2 " " $3}'")
_pid_for_nf = _pid_for_nf.read().replace(temp, "").replace("\n", "")
os.system("sudo kill " + _pid_for_nf)
except:
pass
print("Exiting on timeout...")
sys.exit(0)
def running_services():
"""Checks running NFs"""
if timeout != 0:
start = time.time()
time.clock()
elapsed = 0
while elapsed < timeout:
elapsed = time.time() - start
for pl in procs_list:
ret_code = pl.poll()
if ret_code is not None:
on_failure()
break
time.sleep(.1)
on_timeout()
else:
while 1:
for pl in procs_list:
ret_code = pl.poll()
if ret_code is not None:
on_failure()
break
time.sleep(.1)
procs_list = []
nf_list = []
cmds_list = []
log_files = []
timeout = 0
if __name__ == '__main__':
signal(SIGINT, handler)
if os.path.basename(os.getcwd()) != "examples":
print("Error: Run script from within /examples folder")
sys.exit(1)
config_file = get_config()
with open(config_file) as f:
try:
data = json.load(f)
except:
print("Cannot load config file. Check JSON syntax")
sys.exit(1)
is_dir = 0
prefix = ""
for k, v in data.items():
if k == "globals":
for item in v:
if "directory" in item:
if is_dir == 0:
log_dir = item["directory"]
if os.path.isdir(log_dir) is False:
try:
os.mkdir(log_dir)
print("Creating directory %s" % (log_dir))
is_dir = 1
except OSError:
print("Creation of directory %s failed" % (log_dir))
on_failure()
else:
print("Outputting log files to %s" % (log_dir))
is_dir = 1
if "directory-prefix" in item:
prefix = item['directory-prefix']
if "TTL" in item:
timeout = item["TTL"]
else:
for item in v:
nf_list.append(k)
cmds_list.append("./go.sh " + item['parameters'])
if is_dir == 0:
time_obj = datetime.now().time()
log_dir = prefix + time_obj.strftime("%H:%M:%S")
os.mkdir(log_dir)
print("Creating directory %s" % (log_dir))
is_dir = 1
for cmd, nf in zip(cmds_list, nf_list):
service_name = nf
instance_id = cmd.split()
log_file = "log-" + nf + "-" + instance_id[1] + ".txt"
log_files.append(open(os.path.join(log_dir, log_file), 'w'))
i = 0
cwd = os.getcwd()
for cmd, nf in zip(cmds_list, nf_list):
try:
os.chdir(nf)
except OSError:
print("Error: Unable to access NF directory %s." \
" Check syntax in your configuration file" % (nf))
sys.exit(1)
try:
p = Popen(shlex.split(cmd), stdout=(log_files[i]), stderr=log_files[i], \
universal_newlines=True)
procs_list.append(p)
print("Starting %s %s" % (nf, cmd), flush=True)
i += 1
except OSError:
pass
os.chdir(cwd)
running_services()