-
Notifications
You must be signed in to change notification settings - Fork 136
/
corehelper.py
executable file
·277 lines (235 loc) · 8.53 KB
/
corehelper.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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
#! /usr/bin/python3
# openNetVM
# https://github.com/sdnfv/openNetVM
#
# BSD LICENSE
#
# Copyright(c)
# 2015-2018 George Washington University
# 2015-2018 University of California Riverside
# 2010-2014 Intel Corporation.
# 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.
""" Setup and display ONVM core list info """
import sys
import argparse
import os
ONVM_CONST_MGR_THRD = 3
sockets = []
cores = []
core_map = {}
onvm_mgr_corelist = []
onvm_nfs_corelist = []
### Code from Intel DPDK ###
"""
This function reads the /proc/cpuinfo file and determines the CPU
architecture which will be used to determine corelists for each
openNetVM NF and the manager.
From Intel DPDK usertools/cpu_layout.py
"""
def dpdk_cpu_info():
global core_map
global cores
global core_map
fd=open("/proc/cpuinfo")
lines = fd.readlines()
fd.close()
core_details = []
core_lines = {}
for line in lines:
if len(line.strip()) != 0:
name, value = line.split(":", 1)
core_lines[name.strip()] = value.strip()
else:
core_details.append(core_lines)
core_lines = {}
for core in core_details:
for field in ["processor", "core id", "physical id"]:
if field not in core:
print("Error getting '%s' value from /proc/cpuinfo" % field)
sys.exit(1)
core[field] = int(core[field])
if core["core id"] not in cores:
cores.append(core["core id"])
if core["physical id"] not in sockets:
sockets.append(core["physical id"])
key = (core["physical id"], core["core id"])
if key not in core_map:
core_map[key] = []
core_map[key].append(core["processor"])
"""
Print out CPU architecture info.
From Intel DPDK usertools/cpu_layout.py
"""
def dpdk_cpu_info_print():
global core_map
global cores
global core_map
max_processor_len = len(str(len(cores) * len(sockets) * 2 - 1))
max_core_map_len = max_processor_len * 2 + len('[, ]') + len('Socket ')
max_core_id_len = len(str(max(cores)))
print("")
print("============================================================")
print("Core and Socket Information (as reported by '/proc/cpuinfo')")
print("============================================================\n")
print("cores = ",cores)
print("sockets = ", sockets)
print("")
print(" ".ljust(max_core_id_len + len('Core ')))
for s in sockets:
print("Socket %s" % str(s).ljust(max_core_map_len - len('Socket ')))
print("")
print(" ".ljust(max_core_id_len + len('Core ')))
for s in sockets:
print("--------".ljust(max_core_map_len))
print("")
for c in cores:
print("Core %s" % str(c).ljust(max_core_id_len))
for s in sockets:
print(str(core_map[(s,c)]).ljust(max_core_map_len))
print("\n")
### End Intel DPDK Codeblock ###
"""
This function uses the information read from /proc/cpuinfo and determines
the corelists for each openNetVM process: the manager and each NF.
"""
def onvm_corelist():
global core_map
global cores
global core_map
global onvm_mgr_corelist
global onvm_nfs_corelist
core_index = 0
total_cores = len(cores)
# Run calculations for openNetVM corelists
# ONVM Manager defaults to three threads 1x RX, 1x TX, 1x stat
while core_index < ONVM_CONST_MGR_THRD:
core = core_map.get((0, core_index), None)
if core is None:
print("Not enough cores: onvm requires {} to run manager. (You have {})".format(ONVM_CONST_MGR_THRD, len(core_map)))
sys.exit(1)
onvm_mgr_corelist.append(core)
core_index += 1
while core_index < total_cores:
onvm_nfs_corelist.append(core_map[(0, cores[core_index])])
core_index += 1
"""
Reads the output of lscpu to determine if hyperthreading is enabled.
"""
def onvm_ht_isEnabled():
lscpu_output = os.popen('lscpu -p').readlines()
for line in lscpu_output:
try:
line_csv = line.split(',')
phys_core = int(line_csv[0])
logical_core = int(line_csv[1])
if phys_core != logical_core:
return True
except ValueError:
pass
return False
"""
Print out openNetVM corelist info
"""
def onvm_corelist_print():
global onvm_mgr_corelist
global onvm_nfs_corelist
onvm_print_header()
if onvm_ht_isEnabled():
print("This script only works if hyperthreading is disabled.")
print("Run no_hyperthread.sh to disable hyperthreading before ")
print("running this script again.")
print("")
sys.exit(1)
print("** MAKE SURE HYPERTHREADING IS DISABLED **")
print("")
print("openNetVM requires at least three cores for the manager:")
print("one for NIC RX, one for statistics, and one for NIC TX.")
print("For rates beyond 10Gbps it may be necessary to run multiple TX")
print("or RX threads.")
print("")
print("Each NF running on openNetVM needs its own core too.")
print("")
print("Use the following information to run openNetVM on this system:")
print("")
mgr_corelist=""
for c in onvm_mgr_corelist:
for i in c:
mgr_corelist += "%s," %(i)
print("\t- openNetVM Manager corelist: %s" %(mgr_corelist[:len(mgr_corelist)-1]))
print("")
print("\t- openNetVM can handle %d NFs on this system" %(len(onvm_nfs_corelist)))
for i, cores in enumerate(onvm_nfs_corelist, 1):
print("\t\t- NF %d:" %i)
for c in cores:
print("%s" %(c))
def onvm_print_header():
print("===============================================================")
print("\t\t openNetVM CPU Corelist Helper")
print("===============================================================")
print("")
"""
Function contains program execution sequence
"""
def run():
if args.all:
dpdk_cpu_info()
onvm_corelist()
dpdk_cpu_info_print()
onvm_corelist_print()
elif args.onvm:
dpdk_cpu_info()
onvm_corelist()
onvm_corelist_print()
elif args.cpu:
dpdk_cpu_info()
dpdk_cpu_info_print()
else:
print("You supplied 0 arguments, running with flag --onvm")
print("")
dpdk_cpu_info()
onvm_corelist()
onvm_corelist_print()
if __name__ == "__main__":
### Set up arg parsing
parser = argparse.ArgumentParser(description='openNetVM corelist helper script')
parser.add_argument("-o", "--onvm",
action="store_true",
help="[Default option] Display openNetVM corelist information.")
parser.add_argument("-c", "--cpu",
action="store_true",
help="Display CPU architecture only.")
parser.add_argument("-a", "--all",
action="store_true",
help="Display all CPU information.")
parser.add_argument("-v", "--verbose",
action="store_true",
help="Verbose mode displays detailed corelist info.")
args = parser.parse_args()
# Function call to run program
run()