Subversion Repositories HelenOS

Rev

Rev 2816 | Rev 2818 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2813 svoboda 1
/** @addtogroup generic
2
 * @{
3
 */
4
 
5
/**
6
 * @file
7
 * @brief   Tdebug.
8
 */
9
 
10
#include <console/klog.h>
11
#include <proc/task.h>
12
#include <proc/thread.h>
2815 svoboda 13
#include <arch.h>
2813 svoboda 14
#include <errno.h>
15
#include <ipc/ipc.h>
16
#include <syscall/copy.h>
17
#include <udebug/udebug.h>
18
#include <udebug/udebug_ipc.h>
19
 
20
static task_t *get_lock_callee_task(phone_t *phone)
21
{
22
    answerbox_t *answerbox;
23
    task_t *ta;
24
 
25
    // FIXME: locking!!!
26
 
27
    answerbox = phone->callee;
28
    ta = answerbox->task;
29
 
30
    spinlock_lock(&ta->lock);
31
 
32
    return ta;
33
}
34
 
35
static int udebug_rp_begin(call_t *call, phone_t *phone)
36
{
37
    task_t *ta;
38
 
39
    klog_printf("debug_begin()");
40
 
41
    ta = get_lock_callee_task(phone);
42
    klog_printf("debugging task %llu", ta->taskid);
43
 
44
    if (ta->being_debugged != false) {
45
        spinlock_unlock(&ta->lock);
46
        klog_printf("debug_begin(): busy error");
47
        return EBUSY;
48
    }
49
 
50
    ta->being_debugged = true;
51
    ta->stop_request = true;
52
    ta->debug_begin_call = call;
53
 
54
    if (ta->not_stoppable_count == 0) {
55
        ta->debug_begin_call = NULL;
56
        ta->stop_request = false;
57
        spinlock_unlock(&ta->lock);
58
        klog_printf("debug_begin(): immediate backsend");
59
        return 1; /* actually we need backsend with 0 retval */
60
    }
61
 
62
    spinlock_unlock(&ta->lock);
63
 
64
    klog_printf("debug_begin() done (wait for stoppability)");
65
    return 0;
66
}
67
 
68
static int udebug_rp_go(call_t *call, phone_t *phone)
69
{
70
    thread_t *t;
71
    task_t *ta;
72
 
73
    klog_printf("debug_go()");
74
    ta = get_lock_callee_task(phone);
75
 
2816 svoboda 76
    // FIXME: must save this in thread struct, not task struct!!!
2813 svoboda 77
    ta->debug_go_call = call;
2816 svoboda 78
    t = (thread_t *) IPC_GET_ARG2(call->data);
79
    if (!thread_exists(t)) {
2813 svoboda 80
        spinlock_unlock(&ta->lock);
81
        return ENOENT;
82
    }
83
 
84
    klog_printf("debug_go(): waitq_wakeup");
85
    waitq_wakeup(&t->go_wq, WAKEUP_FIRST);
86
 
87
    spinlock_unlock(&ta->lock);
88
 
89
    return 0; /* no backsend */
90
}
91
 
92
static int udebug_rp_args_read(call_t *call, phone_t *phone)
93
{
94
    thread_t *t;
95
    task_t *ta;
96
    void *uspace_buffer;
97
    unative_t to_copy;
98
    int rc;
99
 
100
    klog_printf("debug_args_read()");
101
    // FIXME: verify task/thread state
102
 
103
    ta = get_lock_callee_task(phone);
104
    klog_printf("task %llu", ta->taskid);
2816 svoboda 105
    t = (thread_t *) IPC_GET_ARG2(call->data);
106
    if (!thread_exists(t)) {
2813 svoboda 107
        spinlock_unlock(&ta->lock);
108
        return ENOENT;
109
    }
110
 
111
    uspace_buffer = (void *)IPC_GET_ARG3(call->data);
112
    to_copy = IPC_GET_ARG4(call->data);
113
    if (to_copy > 6 * sizeof(unative_t)) to_copy = 6 * sizeof(unative_t);
114
 
115
    rc = copy_to_uspace(uspace_buffer, t->syscall_args, to_copy);
116
    if (rc != 0) {
117
        spinlock_unlock(&ta->lock);
118
        klog_printf("debug_args_read() - copy failed");
119
        return rc;
120
    }
121
 
122
    spinlock_unlock(&ta->lock);
123
 
124
    IPC_SET_ARG1(call->data, to_copy);
125
 
126
    klog_printf("debug_args_read() done");
127
    return 1; /* actually need becksend with retval 0 */
128
}
129
 
2817 svoboda 130
static int udebug_rp_regs_read(call_t *call, phone_t *phone)
131
{
132
    thread_t *t;
133
    task_t *ta;
134
    void *uspace_buffer;
135
    unative_t to_copy;
136
    int rc;
137
    istate_t *state;
138
 
139
    klog_printf("debug_regs_read()");
140
    // FIXME: verify task/thread state
141
 
142
    state = THREAD->uspace_state;
143
    if (state == NULL) {
144
        klog_printf("debug_regs_read() - istate not available");
145
        return EBUSY;
146
    }
147
 
148
    ta = get_lock_callee_task(phone);
149
    t = (thread_t *) IPC_GET_ARG2(call->data);
150
    if (!thread_exists(t)) {
151
        spinlock_unlock(&ta->lock);
152
        return ENOENT;
153
    }
154
 
155
    uspace_buffer = (void *)IPC_GET_ARG3(call->data);
156
    to_copy = IPC_GET_ARG4(call->data);
157
    if (to_copy > sizeof(istate_t)) to_copy = sizeof(istate_t);
158
 
159
    rc = copy_to_uspace(uspace_buffer, t->uspace_state, to_copy);
160
    if (rc != 0) {
161
        spinlock_unlock(&ta->lock);
162
        klog_printf("debug_regs_read() - copy failed");
163
        return rc;
164
    }
165
 
166
    spinlock_unlock(&ta->lock);
167
 
168
    IPC_SET_ARG1(call->data, to_copy);
169
    IPC_SET_ARG2(call->data, sizeof(istate_t));
170
 
171
    klog_printf("debug_regs_read() done");
172
    return 1; /* actually need becksend with retval 0 */
173
}
174
 
175
static int udebug_rp_regs_write(call_t *call, phone_t *phone)
176
{
177
    thread_t *t;
178
    task_t *ta;
179
    void *uspace_data;
180
    unative_t to_copy;
181
    int rc;
182
    istate_t *state;
183
 
184
    klog_printf("debug_regs_write()");
185
    // FIXME: verify task/thread state
186
 
187
    state = THREAD->uspace_state;
188
    if (state == NULL) {
189
        klog_printf("debug_regs_write() - istate not available");
190
        return EBUSY;
191
    }
192
 
193
    ta = get_lock_callee_task(phone);
194
    t = (thread_t *) IPC_GET_ARG2(call->data);
195
    if (!thread_exists(t)) {
196
        spinlock_unlock(&ta->lock);
197
        return ENOENT;
198
    }
199
 
200
    uspace_data = (void *)IPC_GET_ARG3(call->data);
201
    to_copy = IPC_GET_ARG4(call->data);
202
    if (to_copy > sizeof(istate_t)) to_copy = sizeof(istate_t);
203
 
204
    rc = copy_from_uspace(t->uspace_state, uspace_data, to_copy);
205
    if (rc != 0) {
206
        spinlock_unlock(&ta->lock);
207
        klog_printf("debug_regs_write() - copy failed");
208
        return rc;
209
    }
210
 
211
    spinlock_unlock(&ta->lock);
212
 
213
    IPC_SET_ARG1(call->data, to_copy);
214
    IPC_SET_ARG2(call->data, sizeof(istate_t));
215
 
216
    klog_printf("debug_regs_write() done");
217
    return 1; /* actually need becksend with retval 0 */
218
}
219
 
2813 svoboda 220
static int udebug_rp_thread_read(call_t *call, phone_t *phone)
221
{
222
    thread_t *t;
223
    link_t *cur;
224
    task_t *ta;
225
    unative_t *uspace_buffer;
226
    unative_t to_copy;
227
    int rc;
228
    unsigned copied, total;
229
    unsigned buf_size;
230
    unative_t tid;
231
 
232
    klog_printf("debug_thread_read()");
233
    // FIXME: verify task/thread state
234
 
235
    ta = get_lock_callee_task(phone);
236
    klog_printf("task %llu", ta->taskid);
237
 
238
    uspace_buffer = (void *)IPC_GET_ARG2(call->data);
239
    buf_size = IPC_GET_ARG3(call->data);
240
 
241
    copied = total = 0;
242
    for (cur = ta->th_head.next; cur != &ta->th_head; cur = cur->next) {
243
        t = list_get_instance(cur, thread_t, th_link);
244
 
245
        /* Not interested in kernel threads */
246
        if ((t->flags & THREAD_FLAG_USPACE) == 0)
247
            continue;
248
 
2816 svoboda 249
        /* Using thread struct pointer for identification */
250
        tid = (unative_t) t;
2813 svoboda 251
 
252
        to_copy = sizeof(unative_t);
253
        if (copied + to_copy >= buf_size)
254
            to_copy = buf_size - copied;
255
 
256
        if (to_copy > 0) {
257
            rc = copy_to_uspace(uspace_buffer, &tid, to_copy);
258
            if (rc != 0) {
259
                spinlock_unlock(&ta->lock);
260
                klog_printf("debug_thread_read() - copy failed");
261
                return rc;
262
            }
263
        }
264
 
265
        ++uspace_buffer;
266
        total += sizeof(unative_t);
267
        copied += to_copy;
268
    }
269
 
270
    spinlock_unlock(&ta->lock);
271
 
272
    IPC_SET_ARG1(call->data, copied);
273
    IPC_SET_ARG2(call->data, total);
274
 
275
    klog_printf("debug_thread_read() done");
276
    return 1; /* actually need becksend with retval 0 */
277
}
278
 
279
int udebug_request_preprocess(call_t *call, phone_t *phone)
280
{
281
    int rc;
282
 
283
    switch (IPC_GET_ARG1(call->data)) {
284
    case UDEBUG_M_BEGIN:
285
        rc = udebug_rp_begin(call, phone);
286
        return rc;
287
    case UDEBUG_M_GO:
288
        rc = udebug_rp_go(call, phone);
289
        return rc;
290
    case UDEBUG_M_ARGS_READ:
291
        rc = udebug_rp_args_read(call, phone);
292
        return rc;
2817 svoboda 293
    case UDEBUG_M_REGS_READ:
294
        rc = udebug_rp_regs_read(call, phone);
295
        return rc;
296
    case UDEBUG_M_REGS_WRITE:
297
        rc = udebug_rp_regs_write(call, phone);
298
        return rc;
2813 svoboda 299
    case UDEBUG_M_THREAD_READ:
300
        rc = udebug_rp_thread_read(call, phone);
301
        return rc;
302
    default:
303
        break;
304
    }
305
 
306
    return 0;
307
}
308
 
2815 svoboda 309
static void udebug_receive_mem_read(call_t *call)
310
{
311
    unative_t uspace_dst;
312
    void *uspace_ptr;
313
    unsigned size;
314
    void *buffer;
315
    int rc;
2813 svoboda 316
 
2815 svoboda 317
    klog_printf("debug_mem_read()");
318
    uspace_dst = IPC_GET_ARG2(call->data);
319
    uspace_ptr = (void *)IPC_GET_ARG3(call->data);
320
    size = IPC_GET_ARG4(call->data);
321
 
322
    buffer = malloc(size, 0); // ???
323
    klog_printf("debug_mem_read: src=%u, size=%u", uspace_ptr, size);
324
 
325
    /* NOTE: this is not strictly from a syscall... but that shouldn't
326
     * be a problem */
327
    rc = copy_from_uspace(buffer, uspace_ptr, size);
328
    if (rc) {
329
        IPC_SET_RETVAL(call->data, rc);
330
        return;
331
    }
332
 
333
    klog_printf("first word: %u", *((unative_t *)buffer));
334
 
335
    IPC_SET_RETVAL(call->data, 0);
336
    /* Hack: ARG1=dest, ARG2=size as in IPC_M_DATA_READ so that
337
       same code in process_answer() can be used
338
       (no way to distinguish method in answer) */
339
    IPC_SET_ARG1(call->data, uspace_dst);
340
    IPC_SET_ARG2(call->data, size);
341
    call->buffer = buffer;
342
 
343
    ipc_answer(&TASK->kernel_box, call);
344
}
345
 
346
/**
347
 * Handle a debug call received on the kernel answerbox.
348
 *
349
 * This is called by the kbox servicing thread.
350
 */
351
void udebug_call_receive(call_t *call)
352
{
353
    int debug_method;
354
 
355
    debug_method = IPC_GET_ARG1(call->data);
356
 
357
    switch (debug_method) {
358
    case UDEBUG_M_MEM_READ:
359
        udebug_receive_mem_read(call);
360
        break;
361
    }
362
}
363
 
2813 svoboda 364
/** @}
365
 */