TranslateProject/sources/tech/20170506 Writing a Linux Debugger Part 6 Source-level stepping.md
ictlyh 21fdae41b8
Translating tech/Writing a Linux Debugger part3-6
Delete tech/Writing a Linux Debugger Part1(已翻译)
2017-05-23 13:41:05 +08:00

9.7 KiB
Raw Blame History

ictlyh Translating Writing a Linux Debugger Part 6: Source-level stepping

A couple of posts ago we learned about DWARF information and how it lets us relate the machine code to the high-level source. This time well be putting this knowledge into practice by adding source-level stepping to our debugger.


Series index

These links will go live as the rest of the posts are released.

  1. Setup

  2. Breakpoints

  3. Registers and memory

  4. Elves and dwarves

  5. Source and signals

  6. Source-level stepping

  7. Source-level breakpoints

  8. Stack unwinding

  9. Reading variables

  10. Next steps


Exposing instruction-level stepping

But were getting ahead of ourselves. First lets expose instruction-level single stepping through the user interface. I decided to split it between a single_step_instruction which can be used by other parts of the code, and a single_step_instruction_with_breakpoint_check which ensures that any breakpoints are disabled and re-enabled.

void debugger::single_step_instruction() {
    ptrace(PTRACE_SINGLESTEP, m_pid, nullptr, nullptr);
    wait_for_signal();
}

void debugger::single_step_instruction_with_breakpoint_check() {
    //first, check to see if we need to disable and enable a breakpoint
    if (m_breakpoints.count(get_pc())) {
        step_over_breakpoint();
    }
    else {
        single_step_instruction();
    }
}

As usual, another command gets lumped into our handle_command function:

else if(is_prefix(command, "stepi")) {
    single_step_instruction_with_breakpoint_check();
    auto line_entry = get_line_entry_from_pc(get_pc());
    print_source(line_entry->file->path, line_entry->line);
 }

With these functions added we can begin to implement our source-level stepping functions.


Implementing the steps

Were going to write very simple versions of these functions, but real debuggers tend to have the concept of a  thread plan  which encapsulates all of the stepping information. For example, a debugger might have some complex logic to determine breakpoint sites, then have some callback which determines whether or not the step operation has completed. This is a lot of infrastructure to get in place, so well just take a naive approach. We might end up accidentally stepping over breakpoints, but you can spend some time getting all the details right if you like.

For step_out, well just set a breakpoint at the return address of the function and continue. I dont want to get into the details of stack unwinding yet thatll come in a later part but it suffices to say for now that the return address is stored 8 bytes after the start of a stack frame. So well just read the frame pointer and read a word of memory at the relevant address:

void debugger::step_out() {
    auto frame_pointer = get_register_value(m_pid, reg::rbp);
    auto return_address = read_memory(frame_pointer+8);

    bool should_remove_breakpoint = false;
    if (!m_breakpoints.count(return_address)) {
        set_breakpoint_at_address(return_address);
        should_remove_breakpoint = true;
    }

    continue_execution();

    if (should_remove_breakpoint) {
        remove_breakpoint(return_address);
    }
}

remove_breakpoint is a little helper function:

void debugger::remove_breakpoint(std::intptr_t addr) {
    if (m_breakpoints.at(addr).is_enabled()) {
        m_breakpoints.at(addr).disable();
    }
    m_breakpoints.erase(addr);
}

Next is step_in. A simple algorithm is to just keep on stepping over instructions until we get to a new line.

void debugger::step_in() {
   auto line = get_line_entry_from_pc(get_pc())->line;

    while (get_line_entry_from_pc(get_pc())->line == line) {
        single_step_instruction_with_breakpoint_check();
    }

    auto line_entry = get_line_entry_from_pc(get_pc());
    print_source(line_entry->file->path, line_entry->line);
}

step_over is the most difficult of the three for us. Conceptually, the solution is to just set a breakpoint at the next source line, but what is the next source line? It might not be the one directly succeeding the current line, as we could be in a loop, or some conditional construct. Real debuggers will often examine what instruction is being executed and work out all of the possible branch targets, then set breakpoints on all of them. Id rather not implement or integrate an x86 instruction emulator for such a small project, so well need to come up with a simpler solution. A couple of horrible options are to just keep stepping until were at a new line in the current function, or to just set a breakpoint at every line in the current function. The former would be ridiculously inefficient if were stepping over a function call, as wed need to single step through every single instruction in that call graph, so Ill go for the second solution.

void debugger::step_over() {
    auto func = get_function_from_pc(get_pc());
    auto func_entry = at_low_pc(func);
    auto func_end = at_high_pc(func);

    auto line = get_line_entry_from_pc(func_entry);
    auto start_line = get_line_entry_from_pc(get_pc());

    std::vector<std::intptr_t> to_delete{};

    while (line->address < func_end) {
        if (line->address != start_line->address && !m_breakpoints.count(line->address)) {
            set_breakpoint_at_address(line->address);
            to_delete.push_back(line->address);
        }
        ++line;
    }

    auto frame_pointer = get_register_value(m_pid, reg::rbp);
    auto return_address = read_memory(frame_pointer+8);
    if (!m_breakpoints.count(return_address)) {
        set_breakpoint_at_address(return_address);
        to_delete.push_back(return_address);
    }

    continue_execution();

    for (auto addr : to_delete) {
        remove_breakpoint(addr);
    }
}

This function is a bit more complex, so Ill break it down a bit.

    auto func = get_function_from_pc(get_pc());
    auto func_entry = at_low_pc(func);
    auto func_end = at_high_pc(func);

at_low_pc and at_high_pc are functions from libelfin which will get us the low and high PC values for the given function DIE.

    auto line = get_line_entry_from_pc(func_entry);
    auto start_line = get_line_entry_from_pc(get_pc());

    std::vector<std::intptr_t> breakpoints_to_remove{};

    while (line->address < func_end) {
        if (line->address != start_line->address && !m_breakpoints.count(line->address)) {
            set_breakpoint_at_address(line->address);
            breakpoints_to_remove.push_back(line->address);
        }
        ++line;
    }

Well need to remove any breakpoints we set so that they dont leak out of our step function, so we keep track of them in a std::vector. To set all the breakpoints, we loop over the line table entries until we hit one which is outside the range of our function. For each one, we make sure that its not the line we are currently on, and that theres not already a breakpoint set at that location.

    auto frame_pointer = get_register_value(m_pid, reg::rbp);
    auto return_address = read_memory(frame_pointer+8);
    if (!m_breakpoints.count(return_address)) {
        set_breakpoint_at_address(return_address);
        to_delete.push_back(return_address);
    }

Here we are setting a breakpoint on the return address of the function, just like in step_out.

    continue_execution();

    for (auto addr : to_delete) {
        remove_breakpoint(addr);
    }

Finally, we continue until one of those breakpoints has been hit, then remove all the temporary breakpoints we set.

It aint pretty, but itll do for now.

Of course, we also need to add this new functionality to our UI:

    else if(is_prefix(command, "step")) {
        step_in();
    }
    else if(is_prefix(command, "next")) {
        step_over();
    }
    else if(is_prefix(command, "finish")) {
        step_out();
    }

Testing it out

I tested out my implementation with a simple program which calls a bunch of different functions:

void a() {
    int foo = 1;
}

void b() {
    int foo = 2;
    a();
}

void c() {
    int foo = 3;
    b();
}

void d() {
    int foo = 4;
    c();
}

void e() {
    int foo = 5;
    d();
}

void f() {
    int foo = 6;
    e();
}

int main() {
    f();
}

You should be able to set a breakpoint on the address of main and then in, over, and out all over the program. Expect things to break if you try to step out of main or into some dynamically linked library.

You can find the code for this post here. Next time well use our newfound DWARF expertise to implement source-level breakpoints.  


via: https://blog.tartanllama.xyz/c++/2017/05/06/writing-a-linux-debugger-dwarf-step/

作者:TartanLlama 译者:译者ID 校对:校对者ID

本文由 LCTT 原创编译,Linux中国 荣誉推出