forked from APS-Networks/APS-One-touch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bf_sde.py
249 lines (207 loc) · 8.81 KB
/
bf_sde.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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
import getpass
import os
import shutil
import tarfile
import zipfile
import glob
import constants
from common import create_symlinks, execute_cmd, get_env_var, \
get_from_setting_dict, \
get_sde_dir_name_in_tar, get_sde_home_absolute, get_sde_pkg_abs_path, \
get_sde_profile_details, get_sde_profile_name, get_selected_profile_name, \
set_env_var, validate_path_existence, \
get_bsp_pkg_abs_path, append_to_env_var,\
dname, get_switch_model_from_settings
from drivers import load_and_verify_kernel_modules
def get_sde_build_flags():
return get_sde_profile_details().get(constants.sde_build_flags_node)
def build_sde():
sde_tar = tarfile.open(get_sde_pkg_abs_path())
sde_home_absolute = get_sde_home_absolute()
sde_build_flags = get_sde_build_flags()
# Deletion is required otherwise moving the directories
# in further steps might create issues.
# And delete only when user have opted for not to resume build
if sde_build_flags is not None and '-rb' not in sde_build_flags:
try:
print("Deleting previous installation at {}.".format(
sde_home_absolute))
os.system('sudo rm -rf {}'.format(sde_home_absolute))
except FileNotFoundError:
print('{} already deleted.'.format(sde_home_absolute))
# Extract tar here i.e. in APS one touch directory
sde_tar.extractall()
# In case SDE home is configured in yaml other than this directory,
# If both paths are same following line doesn't cause any problem.
if not os.path.exists(sde_home_absolute):
shutil.move(get_sde_dir_name_in_tar(), sde_home_absolute)
sde_tar.close()
os.chdir(sde_home_absolute)
build_opt = "-up"
p4studio_build_profile = get_from_setting_dict('BF SDE',
'p4studio_build_profile')
if get_selected_profile_name() in [constants.stratum_hw_profile_name,
constants.stratum_sim_profile_name]:
p4studio_build_profile = 'stratum_profile'
if p4studio_build_profile == "":
build_opt = ""
sde_install_cmd = "./p4studio_build/p4studio_build.py {} {}".format(
build_opt,
p4studio_build_profile)
if sde_build_flags is not None:
for flag in sde_build_flags:
if flag:
sde_install_cmd += ' ' + flag
else:
print('No build flag will be used for BF_SDE build.')
os.environ[constants.path_env_var_name] += os.pathsep + sde_home_absolute+'/install/bin/'
print('Building sde with command {}'.format(sde_install_cmd))
os.system(sde_install_cmd)
def start_bf_switchd():
# os.chdir(common.dname)
print('Starting BF switchd.')
set_sde_env_n_load_drivers()
profile_name = get_sde_profile_name()
if profile_name == constants.sde_sim_profile_name:
# TODO Do something meaningful, Possibly launch tofino model in separate shell,
# Currently This just an interrupt for user to start tofino model.
input('Make sure that tofino-model is running?')
p4_prog_name = get_from_setting_dict('BF SDE', 'p4_name')
# LD_LIBRARY_PATH is set for ONLPv2 case, libs in install/lib folder are
# not found there but this does not cause any harm for Ubuntu case either.
# set_env('LD_LIBRARY_PATH', "/{0}/install/lib".format(get_env_var('SDE')))
# print("LD_LIBRARY_PATH : ")
# os.system("echo $LD_LIBRARY_PATH")
if not p4_prog_name:
print("Starting switchd without p4 program")
start_switchd_cmd = "sudo {0}/install/bin/bf_switchd --install-dir {" \
"0}/install --conf-file {" \
"0}/pkgsrc/p4-examples/tofino/tofino_skip_p4.conf" \
".in --skip-p4".format(get_env_var('SDE'))
if profile_name == constants.sde_hw_profile_name:
start_switchd_cmd = "sudo -E {0}/run_switchd.sh -c {0}/pkgsrc/p4-examples/tofino/tofino_skip_p4.conf.in --skip-p4".format(
get_env_var('SDE'))
else:
print("Starting switchd with P4 prog:{}".format(p4_prog_name))
start_switchd_cmd = 'sudo -E {0} /run_switchd.sh -p {1}'.format(
get_env_var('SDE'),
p4_prog_name.replace(".p4", ""))
username = getpass.getuser()
if username == "root":
start_switchd_cmd = start_switchd_cmd.replace("sudo -E", "")
alloc_dma()
print("Starting switchd with command : {}".format(start_switchd_cmd))
os.system(start_switchd_cmd)
def alloc_dma():
output = execute_cmd('cat /etc/sysctl.conf')
if 'vm.nr_hugepages = 128' not in output:
print('Setting up huge pages...')
dma_alloc_cmd = 'sudo /{}/pkgsrc/ptf-modules/ptf-utils/dma_setup.sh'.format(
get_env_var('SDE'))
os.system(dma_alloc_cmd)
def ask_user_for_building_sde():
install_sde = input("SDE : build y/[n]?")
if not install_sde:
install_sde = "n"
if install_sde == "y":
create_symlinks()
build_sde()
else:
print("You selected not to build SDE.")
def ask_user_for_building_bsp():
if get_sde_profile_name() == constants.sde_hw_profile_name:
install_bsp = input("BSP : build y/[n]?")
if not install_bsp:
install_bsp = "n"
if install_bsp == "y":
install_switch_bsp()
else:
print("You selected not to build BSP.")
def ask_user_for_starting_sde():
start_sde = input("SDE : start y/[n]?")
if not start_sde:
start_sde = "n"
if start_sde == "y":
start_bf_switchd()
else:
print("You selected not to start SDE.")
def load_bf_sde_profile():
ask_user_for_building_sde()
ask_user_for_building_bsp()
prepare_sde_release()
# SDE to be started only in case of SDE profiles
# Else SDE will be started by either SAL or STRATUM
if get_selected_profile_name() in [constants.sde_hw_profile_name,
constants.sde_sim_profile_name]:
ask_user_for_starting_sde()
def prepare_sde_release():
# TODO prepare precompiled binaries from SDE, to avoid the need for building SDE.
pass
def set_sde_env():
print("Setting environment for BF_SDE.")
sde_home_absolute = get_sde_home_absolute()
if validate_path_existence(sde_home_absolute, 'SDE'):
set_env_var(constants.sde_env_var_name, sde_home_absolute)
set_env_var(constants.sde_install_env_var_name,
get_env_var(constants.sde_env_var_name) + '/install/')
append_to_env_var(constants.path_env_var_name,get_env_var(constants.sde_install_env_var_name)+'/bin/')
print(
'Environment variables set: \n SDE: {0} \n SDE_INSTALL: {1} \n PATH: {2}'.format(
get_env_var(constants.sde_env_var_name),
get_env_var(constants.sde_install_env_var_name),
get_env_var(constants.path_env_var_name)))
return True
else:
print('ERROR: SDE directory couldnt be found, exiting .')
exit(0)
def load_drivers():
if get_sde_profile_name() == constants.sde_hw_profile_name:
print('Loading kernel modules.')
if not load_and_verify_kernel_modules():
print("ERROR:Some kernel modules are not loaded.")
exit(0)
else:
print('Running simulation, No need to load kernel modules.')
def set_sde_env_n_load_drivers():
set_sde_env()
load_drivers()
return True
def install_switch_bsp():
set_sde_env_n_load_drivers()
bsp_installation_file = get_bsp_pkg_abs_path()
print("Installing {}".format(bsp_installation_file))
zip_ref = zipfile.ZipFile(bsp_installation_file)
zip_ref.extractall()
extracted_dir_name = zip_ref.namelist()[0]
zip_ref.close()
os.chdir(extracted_dir_name)
os.environ['BSP'] = os.getcwd()
print("BSP home directory set to {}".format(os.environ['BSP']))
os.environ['BSP_INSTALL'] = get_env_var('SDE_INSTALL')
print(
"BSP_INSTALL directory set to {}".format(
os.environ['BSP_INSTALL']))
for pltfm in glob.glob('./bf-platforms*'):
os.chdir(pltfm)
os.system("autoreconf && autoconf")
os.system("chmod +x ./autogen.sh")
os.system("chmod +x ./configure")
if get_switch_model_from_settings() == constants.bf2556x_1t:
os.system(
"CFLAGS=-Wno-error ./configure --prefix={} --enable-thrift --with-tof-brgup-plat".format(
os.environ['BSP_INSTALL']))
else:
os.system(
"CFLAGS=-Wno-error ./configure --prefix={} --enable-thrift".format(
os.environ['BSP_INSTALL']))
os.system("make")
os.system("sudo make install")
shutil.rmtree(os.environ['BSP'])
os.chdir(dname)
def just_load_sde():
ask_user_for_building_sde()
ask_user_for_building_bsp()
prepare_sde_release()
ask_user_for_starting_sde()
if __name__ == '__main__':
just_load_sde()