Subversion Repositories HelenOS

Rev

Rev 2817 | Rev 2819 | 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
 
2818 svoboda 279
static int udebug_rp_mem_write(call_t *call, phone_t *phone)
280
{
281
    void *uspace_data;
282
    unative_t to_copy;
283
    int rc;
284
    void *buffer;
285
 
286
    klog_printf("udebug_rp_mem_write()");
287
    // FIXME: verify task/thread state
288
 
289
    uspace_data = (void *)IPC_GET_ARG2(call->data);
290
    to_copy = IPC_GET_ARG4(call->data);
291
 
292
    buffer = malloc(to_copy, 0); // ???
293
 
294
    rc = copy_from_uspace(buffer, uspace_data, to_copy);
295
    if (rc != 0) {
296
        klog_printf(" - copy failed");
297
        return rc;
298
    }
299
 
300
    call->buffer = buffer;
301
 
302
    klog_printf(" - done");
303
    return 1; /* actually need becksend with retval 0 */
304
}
305
 
306
 
2813 svoboda 307
int udebug_request_preprocess(call_t *call, phone_t *phone)
308
{
309
    int rc;
310
 
311
    switch (IPC_GET_ARG1(call->data)) {
312
    case UDEBUG_M_BEGIN:
313
        rc = udebug_rp_begin(call, phone);
314
        return rc;
315
    case UDEBUG_M_GO:
316
        rc = udebug_rp_go(call, phone);
317
        return rc;
318
    case UDEBUG_M_ARGS_READ:
319
        rc = udebug_rp_args_read(call, phone);
320
        return rc;
2817 svoboda 321
    case UDEBUG_M_REGS_READ:
322
        rc = udebug_rp_regs_read(call, phone);
323
        return rc;
324
    case UDEBUG_M_REGS_WRITE:
325
        rc = udebug_rp_regs_write(call, phone);
326
        return rc;
2813 svoboda 327
    case UDEBUG_M_THREAD_READ:
328
        rc = udebug_rp_thread_read(call, phone);
2818 svoboda 329
    case UDEBUG_M_MEM_WRITE:
330
        rc = udebug_rp_mem_write(call, phone);
2813 svoboda 331
        return rc;
332
    default:
333
        break;
334
    }
335
 
336
    return 0;
337
}
338
 
2815 svoboda 339
static void udebug_receive_mem_read(call_t *call)
340
{
341
    unative_t uspace_dst;
342
    void *uspace_ptr;
343
    unsigned size;
344
    void *buffer;
345
    int rc;
2813 svoboda 346
 
2815 svoboda 347
    klog_printf("debug_mem_read()");
348
    uspace_dst = IPC_GET_ARG2(call->data);
349
    uspace_ptr = (void *)IPC_GET_ARG3(call->data);
350
    size = IPC_GET_ARG4(call->data);
351
 
352
    buffer = malloc(size, 0); // ???
353
    klog_printf("debug_mem_read: src=%u, size=%u", uspace_ptr, size);
354
 
355
    /* NOTE: this is not strictly from a syscall... but that shouldn't
356
     * be a problem */
357
    rc = copy_from_uspace(buffer, uspace_ptr, size);
358
    if (rc) {
359
        IPC_SET_RETVAL(call->data, rc);
360
        return;
361
    }
362
 
363
    klog_printf("first word: %u", *((unative_t *)buffer));
364
 
365
    IPC_SET_RETVAL(call->data, 0);
366
    /* Hack: ARG1=dest, ARG2=size as in IPC_M_DATA_READ so that
367
       same code in process_answer() can be used
368
       (no way to distinguish method in answer) */
369
    IPC_SET_ARG1(call->data, uspace_dst);
370
    IPC_SET_ARG2(call->data, size);
371
    call->buffer = buffer;
372
 
373
    ipc_answer(&TASK->kernel_box, call);
374
}
375
 
2818 svoboda 376
static void udebug_receive_mem_write(call_t *call)
377
{
378
    void *uspace_dst;
379
    unsigned size;
380
    void *buffer;
381
    int rc;
382
 
383
    klog_printf("udebug_receive_mem_write()");
384
    uspace_dst = (void *)IPC_GET_ARG3(call->data);
385
    size = IPC_GET_ARG4(call->data);
386
 
387
    buffer = call->buffer;
388
    klog_printf("dst=%u, size=%u", uspace_dst, size);
389
 
390
    /* NOTE: this is not strictly from a syscall... but that shouldn't
391
     * be a problem */
392
    rc = copy_to_uspace(uspace_dst, buffer, size);
393
    if (rc) {
394
        IPC_SET_RETVAL(call->data, rc);
395
        return;
396
    }
397
 
398
    IPC_SET_RETVAL(call->data, 0);
399
 
400
    free(call->buffer);
401
    call->buffer = NULL;
402
 
403
    ipc_answer(&TASK->kernel_box, call);
404
}
405
 
406
 
2815 svoboda 407
/**
408
 * Handle a debug call received on the kernel answerbox.
409
 *
410
 * This is called by the kbox servicing thread.
411
 */
412
void udebug_call_receive(call_t *call)
413
{
414
    int debug_method;
415
 
416
    debug_method = IPC_GET_ARG1(call->data);
417
 
418
    switch (debug_method) {
419
    case UDEBUG_M_MEM_READ:
420
        udebug_receive_mem_read(call);
421
        break;
2818 svoboda 422
    case UDEBUG_M_MEM_WRITE:
423
        udebug_receive_mem_write(call);
424
        break;
2815 svoboda 425
    }
426
}
427
 
2813 svoboda 428
/** @}
429
 */