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 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668
|
import random
from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
from fork_testbase import GdbRemoteForkTestBase
class TestGdbRemoteFork(GdbRemoteForkTestBase):
def setUp(self):
GdbRemoteForkTestBase.setUp(self)
if self.getPlatform() == "linux" and self.getArchitecture() in [
"arm",
"aarch64",
]:
self.skipTest("Unsupported for Arm/AArch64 Linux")
@add_test_categories(["fork"])
def test_fork_multithreaded(self):
_, _, child_pid, _ = self.start_fork_test(["thread:new"] * 2 + ["fork"])
# detach the forked child
self.test_sequence.add_log_lines(
[
"read packet: $D;{}#00".format(child_pid),
"send packet: $OK#00",
"read packet: $k#00",
],
True,
)
self.expect_gdbremote_sequence()
@add_test_categories(["fork"])
def test_fork(self):
parent_pid, _ = self.fork_and_detach_test("fork")
# resume the parent
self.test_sequence.add_log_lines(
[
"read packet: $c#00",
"send packet: $W00;process:{}#00".format(parent_pid),
],
True,
)
self.expect_gdbremote_sequence()
@add_test_categories(["fork"])
def test_vfork(self):
parent_pid, parent_tid = self.fork_and_detach_test("vfork")
# resume the parent
self.test_sequence.add_log_lines(
[
"read packet: $c#00",
{
"direction": "send",
"regex": r"[$]T[0-9a-fA-F]{{2}}thread:p{}[.]{}.*vforkdone.*".format(
parent_pid, parent_tid
),
},
"read packet: $c#00",
"send packet: $W00;process:{}#00".format(parent_pid),
],
True,
)
self.expect_gdbremote_sequence()
@add_test_categories(["fork"])
def test_fork_follow(self):
self.fork_and_follow_test("fork")
@add_test_categories(["fork"])
def test_vfork_follow(self):
self.fork_and_follow_test("vfork")
@add_test_categories(["fork"])
def test_select_wrong_pid(self):
self.build()
self.prep_debug_monitor_and_inferior()
self.add_qSupported_packets(["multiprocess+"])
ret = self.expect_gdbremote_sequence()
self.assertIn("multiprocess+", ret["qSupported_response"])
self.reset_test_sequence()
# get process pid
self.test_sequence.add_log_lines(
[
"read packet: $qC#00",
{
"direction": "send",
"regex": "[$]QCp([0-9a-f]+).([0-9a-f]+)#.*",
"capture": {1: "pid", 2: "tid"},
},
],
True,
)
ret = self.expect_gdbremote_sequence()
pid, tid = (int(ret[x], 16) for x in ("pid", "tid"))
self.reset_test_sequence()
self.test_sequence.add_log_lines(
[
# try switching to correct pid
"read packet: $Hgp{:x}.{:x}#00".format(pid, tid),
"send packet: $OK#00",
"read packet: $Hcp{:x}.{:x}#00".format(pid, tid),
"send packet: $OK#00",
# try switching to invalid tid
"read packet: $Hgp{:x}.{:x}#00".format(pid, tid + 1),
"send packet: $E15#00",
"read packet: $Hcp{:x}.{:x}#00".format(pid, tid + 1),
"send packet: $E15#00",
# try switching to invalid pid
"read packet: $Hgp{:x}.{:x}#00".format(pid + 1, tid),
"send packet: $Eff#00",
"read packet: $Hcp{:x}.{:x}#00".format(pid + 1, tid),
"send packet: $Eff#00",
],
True,
)
self.expect_gdbremote_sequence()
@add_test_categories(["fork"])
def test_detach_current(self):
self.build()
self.prep_debug_monitor_and_inferior()
self.add_qSupported_packets(["multiprocess+"])
ret = self.expect_gdbremote_sequence()
self.assertIn("multiprocess+", ret["qSupported_response"])
self.reset_test_sequence()
# get process pid
self.test_sequence.add_log_lines(
[
"read packet: $qC#00",
{
"direction": "send",
"regex": "[$]QCp([0-9a-f]+).[0-9a-f]+#.*",
"capture": {1: "pid"},
},
],
True,
)
ret = self.expect_gdbremote_sequence()
pid = ret["pid"]
self.reset_test_sequence()
# detach the process
self.test_sequence.add_log_lines(
[
"read packet: $D;{}#00".format(pid),
"send packet: $OK#00",
"read packet: $qC#00",
"send packet: $E44#00",
],
True,
)
self.expect_gdbremote_sequence()
@add_test_categories(["fork"])
def test_detach_all(self):
self.detach_all_test()
@add_test_categories(["fork"])
def test_kill_all(self):
parent_pid, _, child_pid, _ = self.start_fork_test(["fork"])
exit_regex = "[$]X09;process:([0-9a-f]+)#.*"
self.test_sequence.add_log_lines(
[
# kill all processes
"read packet: $k#00",
{"direction": "send", "regex": exit_regex, "capture": {1: "pid1"}},
{"direction": "send", "regex": exit_regex, "capture": {1: "pid2"}},
],
True,
)
ret = self.expect_gdbremote_sequence()
self.assertEqual(set([ret["pid1"], ret["pid2"]]), set([parent_pid, child_pid]))
@add_test_categories(["fork"])
def test_vkill_child(self):
self.vkill_test(kill_child=True)
@add_test_categories(["fork"])
def test_vkill_parent(self):
self.vkill_test(kill_parent=True)
@add_test_categories(["fork"])
def test_vkill_both(self):
self.vkill_test(kill_parent=True, kill_child=True)
@add_test_categories(["fork"])
def test_c_parent(self):
self.resume_one_test(run_order=["parent", "parent"])
@add_test_categories(["fork"])
def test_c_child(self):
self.resume_one_test(run_order=["child", "child"])
@add_test_categories(["fork"])
def test_c_parent_then_child(self):
self.resume_one_test(run_order=["parent", "parent", "child", "child"])
@add_test_categories(["fork"])
def test_c_child_then_parent(self):
self.resume_one_test(run_order=["child", "child", "parent", "parent"])
@add_test_categories(["fork"])
def test_c_interspersed(self):
self.resume_one_test(run_order=["parent", "child", "parent", "child"])
@add_test_categories(["fork"])
def test_vCont_parent(self):
self.resume_one_test(run_order=["parent", "parent"], use_vCont=True)
@add_test_categories(["fork"])
def test_vCont_child(self):
self.resume_one_test(run_order=["child", "child"], use_vCont=True)
@add_test_categories(["fork"])
def test_vCont_parent_then_child(self):
self.resume_one_test(
run_order=["parent", "parent", "child", "child"], use_vCont=True
)
@add_test_categories(["fork"])
def test_vCont_child_then_parent(self):
self.resume_one_test(
run_order=["child", "child", "parent", "parent"], use_vCont=True
)
@add_test_categories(["fork"])
def test_vCont_interspersed(self):
self.resume_one_test(
run_order=["parent", "child", "parent", "child"], use_vCont=True
)
@add_test_categories(["fork"])
def test_vCont_two_processes(self):
parent_pid, parent_tid, child_pid, child_tid = self.start_fork_test(
["fork", "stop"]
)
self.test_sequence.add_log_lines(
[
# try to resume both processes
"read packet: $vCont;c:p{}.{};c:p{}.{}#00".format(
parent_pid, parent_tid, child_pid, child_tid
),
"send packet: $E03#00",
],
True,
)
self.expect_gdbremote_sequence()
@add_test_categories(["fork"])
def test_vCont_all_processes_explicit(self):
self.start_fork_test(["fork", "stop"])
self.test_sequence.add_log_lines(
[
# try to resume all processes implicitly
"read packet: $vCont;c:p-1.-1#00",
"send packet: $E03#00",
],
True,
)
self.expect_gdbremote_sequence()
@add_test_categories(["fork"])
def test_vCont_all_processes_implicit(self):
self.start_fork_test(["fork", "stop"])
self.test_sequence.add_log_lines(
[
# try to resume all processes implicitly
"read packet: $vCont;c#00",
"send packet: $E03#00",
],
True,
)
self.expect_gdbremote_sequence()
@add_test_categories(["fork"])
def test_threadinfo(self):
parent_pid, parent_tid, child_pid, child_tid = self.start_fork_test(
["fork", "thread:new", "stop"]
)
pidtids = [
(parent_pid, parent_tid),
(child_pid, child_tid),
]
self.add_threadinfo_collection_packets()
ret = self.expect_gdbremote_sequence()
prev_pidtids = set(self.parse_threadinfo_packets(ret))
self.assertEqual(
prev_pidtids,
frozenset((int(pid, 16), int(tid, 16)) for pid, tid in pidtids),
)
self.reset_test_sequence()
for pidtid in pidtids:
self.test_sequence.add_log_lines(
[
"read packet: $Hcp{}.{}#00".format(*pidtid),
"send packet: $OK#00",
"read packet: $c#00",
{
"direction": "send",
"regex": self.stop_regex.format(*pidtid),
},
],
True,
)
self.add_threadinfo_collection_packets()
ret = self.expect_gdbremote_sequence()
self.reset_test_sequence()
new_pidtids = set(self.parse_threadinfo_packets(ret))
added_pidtid = new_pidtids - prev_pidtids
prev_pidtids = new_pidtids
# verify that we've got exactly one new thread, and that
# the PID matches
self.assertEqual(len(added_pidtid), 1)
self.assertEqual(added_pidtid.pop()[0], int(pidtid[0], 16))
for pidtid in new_pidtids:
self.test_sequence.add_log_lines(
[
"read packet: $Hgp{:x}.{:x}#00".format(*pidtid),
"send packet: $OK#00",
],
True,
)
self.expect_gdbremote_sequence()
@add_test_categories(["fork"])
def test_memory_read_write(self):
self.build()
INITIAL_DATA = "Initial message"
self.prep_debug_monitor_and_inferior(
inferior_args=[
"set-message:{}".format(INITIAL_DATA),
"get-data-address-hex:g_message",
"fork",
"print-message:",
"stop",
]
)
self.add_qSupported_packets(["multiprocess+", "fork-events+"])
ret = self.expect_gdbremote_sequence()
self.assertIn("fork-events+", ret["qSupported_response"])
self.reset_test_sequence()
# continue and expect fork
self.test_sequence.add_log_lines(
[
"read packet: $c#00",
{
"type": "output_match",
"regex": self.maybe_strict_output_regex(
r"data address: 0x([0-9a-fA-F]+)\r\n"
),
"capture": {1: "addr"},
},
{
"direction": "send",
"regex": self.fork_regex.format("fork"),
"capture": self.fork_capture,
},
],
True,
)
ret = self.expect_gdbremote_sequence()
pidtids = {
"parent": (ret["parent_pid"], ret["parent_tid"]),
"child": (ret["child_pid"], ret["child_tid"]),
}
addr = ret["addr"]
self.reset_test_sequence()
for name, pidtid in pidtids.items():
self.test_sequence.add_log_lines(
[
"read packet: $Hgp{}.{}#00".format(*pidtid),
"send packet: $OK#00",
# read the current memory contents
"read packet: $m{},{:x}#00".format(addr, len(INITIAL_DATA) + 1),
{
"direction": "send",
"regex": r"^[$](.+)#.*$",
"capture": {1: "data"},
},
# write a new value
"read packet: $M{},{:x}:{}#00".format(
addr, len(name) + 1, seven.hexlify(name + "\0")
),
"send packet: $OK#00",
# resume the process and wait for the trap
"read packet: $Hcp{}.{}#00".format(*pidtid),
"send packet: $OK#00",
"read packet: $c#00",
{
"type": "output_match",
"regex": self.maybe_strict_output_regex(r"message: (.*)\r\n"),
"capture": {1: "printed_message"},
},
{
"direction": "send",
"regex": self.stop_regex.format(*pidtid),
},
],
True,
)
ret = self.expect_gdbremote_sequence()
data = seven.unhexlify(ret["data"])
self.assertEqual(data, INITIAL_DATA + "\0")
self.assertEqual(ret["printed_message"], name)
self.reset_test_sequence()
# we do the second round separately to make sure that initial data
# is correctly preserved while writing into the first process
for name, pidtid in pidtids.items():
self.test_sequence.add_log_lines(
[
"read packet: $Hgp{}.{}#00".format(*pidtid),
"send packet: $OK#00",
# read the current memory contents
"read packet: $m{},{:x}#00".format(addr, len(name) + 1),
{
"direction": "send",
"regex": r"^[$](.+)#.*$",
"capture": {1: "data"},
},
],
True,
)
ret = self.expect_gdbremote_sequence()
self.assertIsNotNone(ret.get("data"))
data = seven.unhexlify(ret.get("data"))
self.assertEqual(data, name + "\0")
self.reset_test_sequence()
@add_test_categories(["fork"])
def test_register_read_write(self):
parent_pid, parent_tid, child_pid, child_tid = self.start_fork_test(
["fork", "thread:new", "stop"]
)
pidtids = [
(parent_pid, parent_tid),
(child_pid, child_tid),
]
for pidtid in pidtids:
self.test_sequence.add_log_lines(
[
"read packet: $Hcp{}.{}#00".format(*pidtid),
"send packet: $OK#00",
"read packet: $c#00",
{
"direction": "send",
"regex": self.stop_regex.format(*pidtid),
},
],
True,
)
self.add_threadinfo_collection_packets()
ret = self.expect_gdbremote_sequence()
self.reset_test_sequence()
pidtids = set(self.parse_threadinfo_packets(ret))
self.assertEqual(len(pidtids), 4)
# first, save register values from all the threads
thread_regs = {}
for pidtid in pidtids:
for regno in range(256):
self.test_sequence.add_log_lines(
[
"read packet: $Hgp{:x}.{:x}#00".format(*pidtid),
"send packet: $OK#00",
"read packet: $p{:x}#00".format(regno),
{
"direction": "send",
"regex": r"^[$](.+)#.*$",
"capture": {1: "data"},
},
],
True,
)
ret = self.expect_gdbremote_sequence()
data = ret.get("data")
self.assertIsNotNone(data)
# ignore registers shorter than 32 bits (this also catches
# "Exx" errors)
if len(data) >= 8:
break
else:
self.skipTest("no usable register found")
thread_regs[pidtid] = (regno, data)
vals = set(x[1] for x in thread_regs.values())
# NB: cheap hack to make the loop below easier
new_val = next(iter(vals))
# then, start altering them and verify that we don't unexpectedly
# change the value from another thread
for pidtid in pidtids:
old_val = thread_regs[pidtid]
regno = old_val[0]
old_val_length = len(old_val[1])
# generate a unique new_val
while new_val in vals:
new_val = "{{:0{}x}}".format(old_val_length).format(
random.getrandbits(old_val_length * 4)
)
vals.add(new_val)
self.test_sequence.add_log_lines(
[
"read packet: $Hgp{:x}.{:x}#00".format(*pidtid),
"send packet: $OK#00",
"read packet: $p{:x}#00".format(regno),
{
"direction": "send",
"regex": r"^[$](.+)#.*$",
"capture": {1: "data"},
},
"read packet: $P{:x}={}#00".format(regno, new_val),
"send packet: $OK#00",
],
True,
)
ret = self.expect_gdbremote_sequence()
data = ret.get("data")
self.assertIsNotNone(data)
self.assertEqual(data, old_val[1])
thread_regs[pidtid] = (regno, new_val)
# finally, verify that new values took effect
for pidtid in pidtids:
old_val = thread_regs[pidtid]
self.test_sequence.add_log_lines(
[
"read packet: $Hgp{:x}.{:x}#00".format(*pidtid),
"send packet: $OK#00",
"read packet: $p{:x}#00".format(old_val[0]),
{
"direction": "send",
"regex": r"^[$](.+)#.*$",
"capture": {1: "data"},
},
],
True,
)
ret = self.expect_gdbremote_sequence()
data = ret.get("data")
self.assertIsNotNone(data)
self.assertEqual(data, old_val[1])
@add_test_categories(["fork"])
def test_qC(self):
parent_pid, parent_tid, child_pid, child_tid = self.start_fork_test(
["fork", "thread:new", "stop"]
)
pidtids = [
(parent_pid, parent_tid),
(child_pid, child_tid),
]
for pidtid in pidtids:
self.test_sequence.add_log_lines(
[
"read packet: $Hcp{}.{}#00".format(*pidtid),
"send packet: $OK#00",
"read packet: $c#00",
{
"direction": "send",
"regex": self.stop_regex.format(*pidtid),
},
],
True,
)
self.add_threadinfo_collection_packets()
ret = self.expect_gdbremote_sequence()
self.reset_test_sequence()
pidtids = set(self.parse_threadinfo_packets(ret))
self.assertEqual(len(pidtids), 4)
for pidtid in pidtids:
self.test_sequence.add_log_lines(
[
"read packet: $Hgp{:x}.{:x}#00".format(*pidtid),
"send packet: $OK#00",
"read packet: $qC#00",
"send packet: $QCp{:x}.{:x}#00".format(*pidtid),
],
True,
)
self.expect_gdbremote_sequence()
@add_test_categories(["fork"])
def test_T(self):
parent_pid, parent_tid, child_pid, child_tid = self.start_fork_test(
["fork", "thread:new", "stop"]
)
pidtids = [
(parent_pid, parent_tid),
(child_pid, child_tid),
]
for pidtid in pidtids:
self.test_sequence.add_log_lines(
[
"read packet: $Hcp{}.{}#00".format(*pidtid),
"send packet: $OK#00",
"read packet: $c#00",
{
"direction": "send",
"regex": self.stop_regex.format(*pidtid),
},
],
True,
)
self.add_threadinfo_collection_packets()
ret = self.expect_gdbremote_sequence()
self.reset_test_sequence()
pidtids = set(self.parse_threadinfo_packets(ret))
self.assertEqual(len(pidtids), 4)
max_pid = max(pid for pid, tid in pidtids)
max_tid = max(tid for pid, tid in pidtids)
bad_pidtids = (
(max_pid, max_tid + 1, "E02"),
(max_pid + 1, max_tid, "E01"),
(max_pid + 1, max_tid + 1, "E01"),
)
for pidtid in pidtids:
self.test_sequence.add_log_lines(
[
# test explicit PID+TID
"read packet: $Tp{:x}.{:x}#00".format(*pidtid),
"send packet: $OK#00",
# test implicit PID via Hg
"read packet: $Hgp{:x}.{:x}#00".format(*pidtid),
"send packet: $OK#00",
"read packet: $T{:x}#00".format(max_tid + 1),
"send packet: $E02#00",
"read packet: $T{:x}#00".format(pidtid[1]),
"send packet: $OK#00",
],
True,
)
for pid, tid, expected in bad_pidtids:
self.test_sequence.add_log_lines(
[
"read packet: $Tp{:x}.{:x}#00".format(pid, tid),
"send packet: ${}#00".format(expected),
],
True,
)
self.expect_gdbremote_sequence()
|