3 # These are a little more involved than the basic tests run by check-tcg.
5 # Copyright (c) 2021 Linaro
10 # SPDX-License-Identifier: GPL-2.0-or-later
16 from boot_linux_console import LinuxKernelTest
19 class PluginKernelBase(LinuxKernelTest):
21 Boots a Linux kernel with a TCG plugin enabled.
25 KERNEL_COMMON_COMMAND_LINE = 'printk.time=1 panic=-1 '
27 def run_vm(self, kernel_path, kernel_command_line,
28 plugin, plugin_log, console_pattern, args=None):
32 vm.add_args('-kernel', kernel_path,
33 '-append', kernel_command_line,
45 # TODO: probably fails because plugins not enabled but we
46 # can't currently probe for the feature.
47 self.cancel("TCG Plugins not enabled?")
49 self.wait_for_console_pattern(console_pattern, vm)
50 # ensure logs are flushed
54 class PluginKernelNormal(PluginKernelBase):
56 def _grab_aarch64_kernel(self):
57 kernel_url = ('http://security.debian.org/'
58 'debian-security/pool/updates/main/l/linux-signed-arm64/'
59 'linux-image-4.19.0-12-arm64_4.19.152-1_arm64.deb')
60 kernel_sha1 = '2036c2792f80ac9c4ccaae742b2e0a28385b6010'
61 kernel_deb = self.fetch_asset(kernel_url, asset_hash=kernel_sha1)
62 kernel_path = self.extract_from_deb(kernel_deb,
63 "/boot/vmlinuz-4.19.0-12-arm64")
66 def test_aarch64_virt_insn(self):
68 :avocado: tags=accel:tcg
69 :avocado: tags=arch:aarch64
70 :avocado: tags=machine:virt
71 :avocado: tags=cpu:cortex-a53
73 kernel_path = self._grab_aarch64_kernel()
74 kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
76 console_pattern = 'Kernel panic - not syncing: VFS:'
78 plugin_log = tempfile.NamedTemporaryFile(mode="r+t", prefix="plugin",
81 self.run_vm(kernel_path, kernel_command_line,
82 "tests/plugin/libinsn.so", plugin_log.name,
85 with plugin_log as lf, \
86 mmap.mmap(lf.fileno(), 0, access=mmap.ACCESS_READ) as s:
88 m = re.search(br"insns: (?P<count>\d+)", s)
89 if "count" not in m.groupdict():
90 self.fail("Failed to find instruction count")
92 def test_aarch64_virt_insn_icount(self):
94 :avocado: tags=accel:tcg
95 :avocado: tags=arch:aarch64
96 :avocado: tags=machine:virt
97 :avocado: tags=cpu:cortex-a53
99 kernel_path = self._grab_aarch64_kernel()
100 kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
102 console_pattern = 'Kernel panic - not syncing: VFS:'
104 plugin_log = tempfile.NamedTemporaryFile(mode="r+t", prefix="plugin",
107 self.run_vm(kernel_path, kernel_command_line,
108 "tests/plugin/libinsn.so", plugin_log.name,
110 args=('-icount', 'shift=1'))
112 with plugin_log as lf, \
113 mmap.mmap(lf.fileno(), 0, access=mmap.ACCESS_READ) as s:
114 m = re.search(br"detected repeat execution @ (?P<addr>0x[0-9A-Fa-f]+)", s)
115 if m is not None and "addr" in m.groupdict():
116 self.fail("detected repeated instructions")
118 def test_aarch64_virt_mem_icount(self):
120 :avocado: tags=accel:tcg
121 :avocado: tags=arch:aarch64
122 :avocado: tags=machine:virt
123 :avocado: tags=cpu:cortex-a53
125 kernel_path = self._grab_aarch64_kernel()
126 kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
128 console_pattern = 'Kernel panic - not syncing: VFS:'
130 plugin_log = tempfile.NamedTemporaryFile(mode="r+t", prefix="plugin",
133 self.run_vm(kernel_path, kernel_command_line,
134 "tests/plugin/libmem.so,inline=true,callback=true", plugin_log.name,
136 args=('-icount', 'shift=1'))
138 with plugin_log as lf, \
139 mmap.mmap(lf.fileno(), 0, access=mmap.ACCESS_READ) as s:
140 m = re.findall(br"mem accesses: (?P<count>\d+)", s)
141 if m is None or len(m) != 2:
142 self.fail("no memory access counts found")
146 if inline != callback:
147 self.fail("mismatched access counts")