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
|
# Copyright (c) Meta Platforms, Inc. and affiliates.
# SPDX-License-Identifier: LGPL-2.1-or-later
import re
from drgn import Object
from drgn.helpers.linux.ipc import find_sysv_msg_queue, find_sysv_shm
from tests.linux_kernel.crash_commands import CrashCommandTestCase
from tests.linux_kernel.helpers.test_ipc import tmp_sysv_ipc
class TestIpcs(CrashCommandTestCase):
@classmethod
def setUpClass(cls):
super().setUpClass()
cls.run_crash_command("set -p")
cls.ipcs = cls.enterClassContext(tmp_sysv_ipc())
def test_ipcs(self):
cmd = self.check_crash_command("ipcs")
found_shm = {}
found_sem = {}
found_msg = {}
for line in cmd.stdout.splitlines():
if line.startswith("SHMID_KERNEL"):
found = found_shm
elif line.startswith("SEM_ARRAY"):
found = found_sem
elif line.startswith("MSG_QUEUE"):
found = found_msg
elif match := re.match(r"[0-9a-f]+\s+([0-9a-f]+)\s+([0-9]+)", line):
found[(int(match.group(1), 16), int(match.group(2)))] = line
for key, id in self.ipcs.shm:
self.assertIn((key, id), found_shm)
self.assertIn("SHM_LOCKED", found_shm[self.ipcs.shm[0]])
for key, id in self.ipcs.sem:
self.assertIn((key, id), found_sem)
for key, id in self.ipcs.msg:
self.assertIn((key, id), found_msg)
self.assertEqual(
cmd.drgn_option.globals["shm"].type_.type_name(), "struct shmid_kernel *"
)
self.assertEqual(
cmd.drgn_option.globals["sem_array"].type_.type_name(), "struct sem_array *"
)
self.assertEqual(
cmd.drgn_option.globals["msg_queue"].type_.type_name(), "struct msg_queue *"
)
for variable in (
"key",
"id",
"perms",
"bytes",
"nattch",
"nsems",
"used_bytes",
"messages",
):
with self.subTest(variable=variable):
self.assertIsInstance(cmd.drgn_option.globals[variable], Object)
self.assertIsInstance(cmd.drgn_option.globals["uid"], int)
self.assertIsInstance(cmd.drgn_option.globals["status"], str)
def test_s(self):
cmd = self.check_crash_command("ipcs -s")
self.assertIn("SEM_ARRAY", cmd.stdout)
self.assertNotIn("SHMID_KERNEL", cmd.stdout)
self.assertNotIn("MSG_QUEUE", cmd.stdout)
self.assertEqual(
cmd.drgn_option.globals["sem_array"].type_.type_name(), "struct sem_array *"
)
self.assertNotIn("shm", cmd.drgn_option.globals)
self.assertNotIn("msg_queue", cmd.drgn_option.globals)
for variable in (
"key",
"id",
"perms",
"nsems",
):
with self.subTest(variable=variable):
self.assertIsInstance(cmd.drgn_option.globals[variable], Object)
self.assertIsInstance(cmd.drgn_option.globals["uid"], int)
self.assertNotIn("bytes", cmd.drgn_option.globals)
self.assertNotIn("nattch", cmd.drgn_option.globals)
self.assertNotIn("used_bytes", cmd.drgn_option.globals)
self.assertNotIn("messages", cmd.drgn_option.globals)
self.assertNotIn("status", cmd.drgn_option.globals)
def test_m(self):
cmd = self.check_crash_command("ipcs -m")
self.assertIn("SHMID_KERNEL", cmd.stdout)
self.assertNotIn("SEM_ARRAY", cmd.stdout)
self.assertNotIn("MSG_QUEUE", cmd.stdout)
self.assertEqual(
cmd.drgn_option.globals["shm"].type_.type_name(), "struct shmid_kernel *"
)
self.assertNotIn("sem_array", cmd.drgn_option.globals)
self.assertNotIn("msg_queue", cmd.drgn_option.globals)
for variable in (
"key",
"id",
"perms",
"bytes",
"nattch",
):
with self.subTest(variable=variable):
self.assertIsInstance(cmd.drgn_option.globals[variable], Object)
self.assertIsInstance(cmd.drgn_option.globals["uid"], int)
self.assertIsInstance(cmd.drgn_option.globals["status"], str)
self.assertNotIn("nsems", cmd.drgn_option.globals)
self.assertNotIn("used_bytes", cmd.drgn_option.globals)
self.assertNotIn("messages", cmd.drgn_option.globals)
def test_q(self):
cmd = self.check_crash_command("ipcs -q")
self.assertIn("MSG_QUEUE", cmd.stdout)
self.assertNotIn("SHMID_KERNEL", cmd.stdout)
self.assertNotIn("SEM_ARRAY", cmd.stdout)
self.assertEqual(
cmd.drgn_option.globals["msg_queue"].type_.type_name(), "struct msg_queue *"
)
self.assertNotIn("shm", cmd.drgn_option.globals)
self.assertNotIn("sem_array", cmd.drgn_option.globals)
for variable in (
"key",
"id",
"perms",
"used_bytes",
"messages",
):
with self.subTest(variable=variable):
self.assertIsInstance(cmd.drgn_option.globals[variable], Object)
self.assertIsInstance(cmd.drgn_option.globals["uid"], int)
self.assertNotIn("bytes", cmd.drgn_option.globals)
self.assertNotIn("nattch", cmd.drgn_option.globals)
self.assertNotIn("status", cmd.drgn_option.globals)
self.assertNotIn("nsems", cmd.drgn_option.globals)
def test_id(self):
shm_key, shm_id = self.ipcs.shm[0]
cmd = self.check_crash_command(f"ipcs {shm_id}")
found_shm = {}
found_sem = {}
found_msg = {}
for line in cmd.stdout.splitlines():
if line.startswith("SHMID_KERNEL"):
found = found_shm
elif line.startswith("SEM_ARRAY"):
found = found_sem
elif line.startswith("MSG_QUEUE"):
found = found_msg
elif match := re.match(r"[0-9a-f]+\s+([0-9a-f]+)\s+([0-9]+)", line):
found[(int(match.group(1), 16), int(match.group(2)))] = line
for key, id in self.ipcs.shm:
if (key, id) == (shm_key, shm_id):
self.assertIn((key, id), found_shm)
else:
self.assertNotIn((key, id), found_shm)
self.assertIn("SHM_LOCKED", found_shm[self.ipcs.shm[0]])
self.assertEqual(
cmd.drgn_option.globals["shm"], find_sysv_shm(self.prog, shm_id)
)
for variable in (
"key",
"id",
"perms",
"bytes",
"nattch",
):
with self.subTest(variable=variable):
self.assertIsInstance(cmd.drgn_option.globals[variable], Object)
self.assertIsInstance(cmd.drgn_option.globals["uid"], int)
self.assertIsInstance(cmd.drgn_option.globals["status"], str)
def test_addr(self):
msg_key, msg_id = self.ipcs.msg[0]
msg_queue = find_sysv_msg_queue(self.prog, msg_id)
cmd = self.check_crash_command(f"ipcs {hex(msg_queue)}")
found_shm = {}
found_sem = {}
found_msg = {}
for line in cmd.stdout.splitlines():
if line.startswith("SHMID_KERNEL"):
found = found_shm
elif line.startswith("SEM_ARRAY"):
found = found_sem
elif line.startswith("MSG_QUEUE"):
found = found_msg
elif match := re.match(r"[0-9a-f]+\s+([0-9a-f]+)\s+([0-9]+)", line):
found[(int(match.group(1), 16), int(match.group(2)))] = line
for key, id in self.ipcs.msg:
if (key, id) == (msg_key, msg_id):
self.assertIn((key, id), found_msg)
else:
self.assertNotIn((key, id), found_msg)
self.assertFalse(found_shm)
self.assertFalse(found_sem)
self.assertEqual(
cmd.drgn_option.globals["msg_queue"].type_.type_name(), "struct msg_queue *"
)
for variable in (
"key",
"id",
"perms",
"used_bytes",
"messages",
):
with self.subTest(variable=variable):
self.assertIsInstance(cmd.drgn_option.globals[variable], Object)
self.assertIsInstance(cmd.drgn_option.globals["uid"], int)
self.assertNotIn("bytes", cmd.drgn_option.globals)
self.assertNotIn("nattch", cmd.drgn_option.globals)
self.assertNotIn("status", cmd.drgn_option.globals)
self.assertNotIn("nsems", cmd.drgn_option.globals)
def test_n_pid(self):
cmd = self.check_crash_command("ipcs -n 1")
self.assertIn("SHM_LOCKED", cmd.stdout)
self.assertIn("for_each_sysv_shm(ipc_ns)", cmd.drgn_option.stdout)
self.assertEqual(
cmd.drgn_option.globals["ipc_ns"], self.prog["init_ipc_ns"].address_of_()
)
def test_n_task(self):
task = self.prog["init_task"].address_of_()
cmd = self.check_crash_command(f"ipcs -n {hex(task)}")
self.assertIn("SHM_LOCKED", cmd.stdout)
self.assertIn("for_each_sysv_shm(ipc_ns)", cmd.drgn_option.stdout)
self.assertEqual(
cmd.drgn_option.globals["ipc_ns"], self.prog["init_ipc_ns"].address_of_()
)
def test_n_and_id(self):
shm_key, shm_id = self.ipcs.shm[0]
cmd = self.check_crash_command(f"ipcs -n 1 {shm_id}")
self.assertIn("SHM_LOCKED", cmd.stdout)
self.assertIn("find_sysv_shm(ipc_ns,", cmd.drgn_option.stdout)
self.assertEqual(
cmd.drgn_option.globals["ipc_ns"], self.prog["init_ipc_ns"].address_of_()
)
def test_n_and_addr(self):
msg_key, msg_id = self.ipcs.msg[0]
msg_queue = find_sysv_msg_queue(self.prog, msg_id)
cmd = self.check_crash_command(f"ipcs -n 1 {hex(msg_queue)}")
self.assertIn("for_each_sysv_msg_queue(ipc_ns)", cmd.drgn_option.stdout)
self.assertEqual(
cmd.drgn_option.globals["ipc_ns"], self.prog["init_ipc_ns"].address_of_()
)
|