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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
|
# Copyright 2015 Intel Corporation.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Automation of QEMU hypervisor for launching vhost-cuse enabled guests.
"""
import os
import time
import logging
import locale
import re
import subprocess
from tools import tasks
from conf import settings
from vnfs.vnf.vnf import IVnf
_QEMU_BIN = settings.getValue('QEMU_BIN')
_RTE_TARGET = settings.getValue('RTE_TARGET')
_GUEST_MEMORY = settings.getValue('GUEST_MEMORY')
_GUEST_SMP = settings.getValue('GUEST_SMP')
_GUEST_CORE_BINDING = settings.getValue('GUEST_CORE_BINDING')
_QEMU_CORE = settings.getValue('QEMU_CORE')
_GUEST_IMAGE = settings.getValue('GUEST_IMAGE')
_GUEST_SHARE_DIR = settings.getValue('GUEST_SHARE_DIR')
_GUEST_USERNAME = settings.getValue('GUEST_USERNAME')
_GUEST_PASSWORD = settings.getValue('GUEST_PASSWORD')
_GUEST_PROMPT_LOGIN = settings.getValue('GUEST_PROMPT_LOGIN')
_GUEST_PROMPT_PASSWORD = settings.getValue('GUEST_PROMPT_PASSWORD')
_GUEST_PROMPT = settings.getValue('GUEST_PROMPT')
_QEMU_GUEST_DPDK_PROMPT = settings.getValue('QEMU_GUEST_DPDK_PROMPT')
_QEMU_GUEST_TEST_PMD_PROMPT = settings.getValue('QEMU_GUEST_TEST_PMD_PROMPT')
_HUGEPAGE_DIR = settings.getValue('HUGEPAGE_DIR')
_GUEST_OVS_DPDK_DIR = settings.getValue('GUEST_OVS_DPDK_DIR')
_OVS_DPDK_SHARE = settings.getValue('OVS_DPDK_SHARE')
_LOG_FILE_QEMU = os.path.join(
settings.getValue('LOG_DIR'), settings.getValue('LOG_FILE_QEMU'))
_LOG_FILE_GUEST_CMDS = os.path.join(
settings.getValue('LOG_DIR'), settings.getValue('LOG_FILE_GUEST_CMDS'))
_OVS_VAR_DIR = settings.getValue('OVS_VAR_DIR')
_GUEST_NET1_MAC = settings.getValue('GUEST_NET1_MAC')
_GUEST_NET2_MAC = settings.getValue('GUEST_NET2_MAC')
_GUEST_NET1_PCI_ADDRESS = settings.getValue('GUEST_NET1_PCI_ADDRESS')
_GUEST_NET2_PCI_ADDRESS = settings.getValue('GUEST_NET2_PCI_ADDRESS')
class QemuDpdkVhostCuse(tasks.Process, IVnf):
"""
Control an instance of QEMU with vHost user guest communication.
"""
_bin = _QEMU_BIN
_logfile = _LOG_FILE_QEMU
_cmd = None
_expect = _GUEST_PROMPT_LOGIN
_proc_name = 'qemu'
_number_vnfs = 0
class GuestCommandFilter(logging.Filter):
"""
Filter out strings beginning with 'guestcmd :'.
"""
def filter(self, record):
return record.getMessage().startswith(self.prefix)
def __init__(self, memory=_GUEST_MEMORY, cpus=_GUEST_SMP,
monitor_path='/tmp', shared_path_host=_GUEST_SHARE_DIR,
args='', timeout=120, deployment="PVP"):
"""
Initialisation function.
:param timeout: Time to wait for login prompt. If set to
0 do not wait.
:param number: Number of QEMU instance, used when multiple QEMU
instances are started at once.
:param args: Arguments to pass to QEMU.
:returns: None
"""
self._logger = logging.getLogger(__name__)
self._number = self._number_vnfs
self._number_vnfs = self._number_vnfs + 1
self._logfile = self._logfile + str(self._number)
self._log_prefix = 'guest_%d_cmd : ' % self._number
self._timeout = timeout
self._monitor = '%s/vm%dmonitor' % (monitor_path, self._number)
name = 'Client%d' % self._number
vnc = ':%d' % self._number
self._cmd = ['sudo', '-E', 'taskset ' + str(_QEMU_CORE), self._bin,
'-m', str(memory), '-smp', str(cpus), '-cpu', 'host',
'-drive', 'if=scsi,file='+_GUEST_IMAGE,
'-drive',
'if=scsi,file=fat:rw:%s,snapshot=off' % shared_path_host,
'-boot', 'c', '--enable-kvm',
'-monitor', 'unix:%s,server,nowait' % self._monitor,
'-object',
'memory-backend-file,id=mem,size=' + str(memory) + 'M,' +
'mem-path=' + _HUGEPAGE_DIR + ',share=on',
'-numa', 'node,memdev=mem -mem-prealloc',
'-net', 'none', '-no-reboot',
'-netdev',
'type=tap,id=net1,script=no,downscript=no,' +
'ifname=dpdkvhostcuse0,vhost=on',
'-device',
'virtio-net-pci,netdev=net1,mac=' + _GUEST_NET1_MAC,
'-netdev',
'type=tap,id=net2,script=no,downscript=no,' +
'ifname=dpdkvhostcuse1,vhost=on',
'-device',
'virtio-net-pci,netdev=net2,mac=' + _GUEST_NET2_MAC,
'-nographic', '-vnc', str(vnc), '-name', name,
'-snapshot',
]
self._cmd.extend(args)
self._configure_logging()
def _configure_logging(self):
"""
Configure logging.
"""
self.GuestCommandFilter.prefix = self._log_prefix
logger = logging.getLogger()
cmd_logger = logging.FileHandler(
filename=_LOG_FILE_GUEST_CMDS + str(self._number))
cmd_logger.setLevel(logging.DEBUG)
cmd_logger.addFilter(self.GuestCommandFilter())
logger.addHandler(cmd_logger)
# startup/Shutdown
def start(self):
"""
Start QEMU instance, login and prepare for commands.
"""
super(QemuDpdkVhostCuse, self).start()
self._affinitize()
if self._timeout:
self._login()
self._config_guest_loopback()
def stop(self):
"""
Kill QEMU instance if it is alive.
"""
self._logger.info('Killing QEMU...')
super(QemuDpdkVhostCuse, self).kill()
# helper functions
def _login(self, timeout=120):
"""
Login to QEMU instance.
This can be used immediately after booting the machine, provided a
sufficiently long ``timeout`` is given.
:param timeout: Timeout to wait for login to complete.
:returns: None
"""
# if no timeout was set, we likely started QEMU without waiting for it
# to boot. This being the case, we best check that it has finished
# first.
if not self._timeout:
self._expect_process(timeout=timeout)
self._child.sendline(_GUEST_USERNAME)
self._child.expect(_GUEST_PROMPT_PASSWORD, timeout=5)
self._child.sendline(_GUEST_PASSWORD)
self._expect_process(_GUEST_PROMPT, timeout=5)
def execute(self, cmd, delay=0):
"""
Send ``cmd`` with no wait.
Useful for asynchronous commands.
:param cmd: Command to send to guest.
:param timeout: Delay to wait after sending command before returning.
:returns: None
"""
self._logger.debug('%s%s', self._log_prefix, cmd)
self._child.sendline(cmd)
time.sleep(delay)
def wait(self, msg=_GUEST_PROMPT, timeout=30):
"""
Wait for ``msg``.
:param msg: Message to wait for from guest.
:param timeout: Time to wait for message.
:returns: None
"""
self._child.expect(msg, timeout=timeout)
def execute_and_wait(self, cmd, timeout=30, prompt=_GUEST_PROMPT):
"""
Send ``cmd`` and wait ``timeout`` seconds for prompt.
:param cmd: Command to send to guest.
:param timeout: Time to wait for prompt.
:returns: None
"""
self.execute(cmd)
self.wait(prompt, timeout=timeout)
def send_and_pass(self, cmd, timeout=30):
"""
Send ``cmd`` and wait ``timeout`` seconds for it to pass.
:param cmd: Command to send to guest.
:param timeout: Time to wait for prompt before checking return code.
:returns: None
"""
self.execute(cmd)
self.wait(_GUEST_PROMPT, timeout=timeout)
self.execute('echo $?')
self._child.expect('^0$', timeout=1) # expect a 0
self.wait(_GUEST_PROMPT, timeout=timeout)
def _affinitize(self):
"""
Affinitize the SMP cores of a QEMU instance.
This is a bit of a hack. The 'socat' utility is used to
interact with the QEMU HMP. This is necessary due to the lack
of QMP in older versions of QEMU, like v1.6.2. In future
releases, this should be replaced with calls to libvirt or
another Python-QEMU wrapper library.
:returns: None
"""
thread_id = (r'.* CPU #%d: .* thread_id=(\d+)')
self._logger.info('Affinitizing guest...')
cur_locale = locale.getlocale()[1]
proc = subprocess.Popen(
('echo', 'info cpus'), stdout=subprocess.PIPE)
output = subprocess.check_output(
('sudo', 'socat', '-', 'UNIX-CONNECT:%s' % self._monitor),
stdin=proc.stdout)
proc.wait()
for cpu in range(0, int(_GUEST_SMP)):
match = None
for line in output.decode(cur_locale).split('\n'):
match = re.search(thread_id % cpu, line)
if match:
self._affinitize_pid(
_GUEST_CORE_BINDING[self._number - 1][cpu],
match.group(1))
break
if not match:
self._logger.error('Failed to affinitize guest core #%d. Could'
' not parse tid.', cpu)
def _config_guest_loopback(self):
"""
Configure VM to run testpmd
Configure performs the following:
* Mount hugepages
* mount shared directory for copying DPDK
* Disable firewall
* Compile DPDK
* DPDK NIC bind
* Run testpmd
"""
# Guest images _should_ have 1024 hugepages by default,
# but just in case:'''
self.execute_and_wait('sysctl vm.nr_hugepages=1024')
# Mount hugepages
self.execute_and_wait('mkdir -p /dev/hugepages')
self.execute_and_wait(
'mount -t hugetlbfs hugetlbfs /dev/hugepages')
# mount shared directory
self.execute_and_wait('umount ' + _OVS_DPDK_SHARE)
self.execute_and_wait('rm -rf ' + _GUEST_OVS_DPDK_DIR)
self.execute_and_wait('mkdir -p ' + _OVS_DPDK_SHARE)
self.execute_and_wait('mount -o iocharset=utf8 /dev/sdb1 ' +
_OVS_DPDK_SHARE)
self.execute_and_wait('mkdir -p ' + _GUEST_OVS_DPDK_DIR)
self.execute_and_wait('cp -a ' + _OVS_DPDK_SHARE + '/* ' + _GUEST_OVS_DPDK_DIR)
# Disable services (F16)
self.execute_and_wait('systemctl status iptables.service')
self.execute_and_wait('systemctl stop iptables.service')
# build and configure system for dpdk
self.execute_and_wait('cd ' + _GUEST_OVS_DPDK_DIR + '/DPDK',
prompt=_QEMU_GUEST_DPDK_PROMPT)
self.execute_and_wait('export CC=gcc', prompt=_QEMU_GUEST_DPDK_PROMPT)
self.execute_and_wait('export RTE_SDK=' + _GUEST_OVS_DPDK_DIR + '/DPDK',
prompt=_QEMU_GUEST_DPDK_PROMPT)
self.execute_and_wait('export RTE_TARGET=%s' % _RTE_TARGET,
prompt=_QEMU_GUEST_DPDK_PROMPT)
self.execute_and_wait("sed -i -e 's/CONFIG_RTE_LIBRTE_VHOST_USER=n/" +
"CONFIG_RTE_LIBRTE_VHOST_USER=y/g' config/common_linuxapp",
prompt=_QEMU_GUEST_DPDK_PROMPT)
self.execute_and_wait('make uninstall', prompt=_QEMU_GUEST_DPDK_PROMPT)
self.execute_and_wait('make install T=%s -j 2' % _RTE_TARGET,
timeout=300, prompt=_QEMU_GUEST_DPDK_PROMPT)
self.execute_and_wait('modprobe uio', prompt=_QEMU_GUEST_DPDK_PROMPT)
self.execute_and_wait('insmod %s/kmod/igb_uio.ko' % _RTE_TARGET,
prompt=_QEMU_GUEST_DPDK_PROMPT)
self.execute_and_wait('./tools/dpdk_nic_bind.py --status',
prompt=_QEMU_GUEST_DPDK_PROMPT)
self.execute_and_wait('./tools/dpdk_nic_bind.py -b igb_uio'
' ' + _GUEST_NET1_PCI_ADDRESS + ' '
+ _GUEST_NET2_PCI_ADDRESS,
prompt=_QEMU_GUEST_DPDK_PROMPT)
self.execute_and_wait('./tools/dpdk_nic_bind.py --status',
prompt=_QEMU_GUEST_DPDK_PROMPT)
self.execute_and_wait('cd ' + _RTE_TARGET + '/build/app/test-pmd',
prompt=_QEMU_GUEST_TEST_PMD_PROMPT)
self.execute_and_wait('./testpmd -c 0x3 -n 4 --socket-mem 512 --'
' --burst=64 -i --txqflags=0xf00 ' +
'--disable-hw-vlan', 20, "Done")
self.execute('set fwd mac_retry', 1)
self.execute_and_wait('start', 20,
'TX RS bit threshold=0 - TXQ flags=0xf00')
if __name__ == '__main__':
import sys
with QemuDpdkVhostCuse() as vm1:
print(
'\n\n************************\n'
'Basic command line suitable for ls, cd, grep and cat.\n If you'
' try to run Vim from here you\'re going to have a bad time.\n'
'For more complex tasks please use \'vncviewer :1\' to connect to'
' this VM\nUsername: %s Password: %s\nPress ctrl-C to quit\n'
'************************\n' % (_GUEST_USERNAME, _GUEST_PASSWORD))
if sys.argv[1]:
with open(sys.argv[1], 'r') as file_:
for logline in file_:
# lines are of format:
# guest_N_cmd : <command>
# and we only want the <command> piece
cmdline = logline.split(':')[1].strip()
# use a no timeout since we don't know how long we
# should wait
vm1.send_and_wait(cmdline, timeout=-1)
while True:
USER_INPUT = input()
vm1.send_and_wait(USER_INPUT, timeout=5)
|