summaryrefslogtreecommitdiffstats
path: root/debugger.h
blob: 6a3fba7dc3801fbb864e593fe6206096b9aad96c (plain) (blame)
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
#pragma once

#include <unistd.h>

#include "architecture.h"
#include "list.h"

struct breakpoint {
    LINKEDLIST;

    unsigned long address;
    unsigned long text;
    int installed;
    int previously_installed;
    int hits;
    int user;

    unsigned long stack;
    pid_t tid;
    int enabled;
};

struct map {
    LINKEDLIST;
    unsigned long start;
    unsigned long end;
    void *data;
};

struct state {
    LINKEDLIST;
    size_t regsize;
    user_regs_t regs;
    struct list maps;
};

struct process {
    LINKEDLIST;
    pid_t id;
    int child;
    struct list breakpoints;
    struct list threads;
    char status[128];
};

struct thread {
    LINKEDLIST;
    struct process *proc;

    struct list states;
    struct state *state;
    int clearstates;

    pid_t id;
    int stopped;
    int signal;
    int doing;
    int donext;

    char status[128];
};

extern struct breakpoint*add_breakpoint(struct process*proc,unsigned long address);
extern struct breakpoint*get_breakpoint(struct process*proc,unsigned long address);

extern struct process *dbg_attach(pid_t pid, int child);
extern void dbg_detach(struct process *proc);
extern int dbg_free(struct thread *th);

extern int dbg_sync(struct process *proc);

extern int dbg_intr(struct thread *th);
extern int dbg_cont(struct thread *th);
extern int dbg_syscall(struct thread *th);
extern int dbg_stepin(struct thread *th);
extern int dbg_stepover(struct thread *th);
extern int dbg_stepback(struct thread *th);

extern void *deref(struct thread *th, unsigned long address, size_t size);