Rev 2818 | Rev 2823 | 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); |
||
2819 | svoboda | 329 | return rc; |
2818 | svoboda | 330 | case UDEBUG_M_MEM_WRITE: |
331 | rc = udebug_rp_mem_write(call, phone); |
||
2813 | svoboda | 332 | return rc; |
333 | default: |
||
334 | break; |
||
335 | } |
||
336 | |||
337 | return 0; |
||
338 | } |
||
339 | |||
2815 | svoboda | 340 | static void udebug_receive_mem_read(call_t *call) |
341 | { |
||
342 | unative_t uspace_dst; |
||
343 | void *uspace_ptr; |
||
344 | unsigned size; |
||
345 | void *buffer; |
||
346 | int rc; |
||
2813 | svoboda | 347 | |
2815 | svoboda | 348 | klog_printf("debug_mem_read()"); |
349 | uspace_dst = IPC_GET_ARG2(call->data); |
||
350 | uspace_ptr = (void *)IPC_GET_ARG3(call->data); |
||
351 | size = IPC_GET_ARG4(call->data); |
||
352 | |||
353 | buffer = malloc(size, 0); // ??? |
||
354 | klog_printf("debug_mem_read: src=%u, size=%u", uspace_ptr, size); |
||
355 | |||
356 | /* NOTE: this is not strictly from a syscall... but that shouldn't |
||
357 | * be a problem */ |
||
358 | rc = copy_from_uspace(buffer, uspace_ptr, size); |
||
359 | if (rc) { |
||
360 | IPC_SET_RETVAL(call->data, rc); |
||
361 | return; |
||
362 | } |
||
363 | |||
364 | klog_printf("first word: %u", *((unative_t *)buffer)); |
||
365 | |||
366 | IPC_SET_RETVAL(call->data, 0); |
||
367 | /* Hack: ARG1=dest, ARG2=size as in IPC_M_DATA_READ so that |
||
368 | same code in process_answer() can be used |
||
369 | (no way to distinguish method in answer) */ |
||
370 | IPC_SET_ARG1(call->data, uspace_dst); |
||
371 | IPC_SET_ARG2(call->data, size); |
||
372 | call->buffer = buffer; |
||
373 | |||
374 | ipc_answer(&TASK->kernel_box, call); |
||
375 | } |
||
376 | |||
2818 | svoboda | 377 | static void udebug_receive_mem_write(call_t *call) |
378 | { |
||
379 | void *uspace_dst; |
||
380 | unsigned size; |
||
381 | void *buffer; |
||
382 | int rc; |
||
383 | |||
384 | klog_printf("udebug_receive_mem_write()"); |
||
385 | uspace_dst = (void *)IPC_GET_ARG3(call->data); |
||
386 | size = IPC_GET_ARG4(call->data); |
||
387 | |||
388 | buffer = call->buffer; |
||
389 | klog_printf("dst=%u, size=%u", uspace_dst, size); |
||
390 | |||
391 | /* NOTE: this is not strictly from a syscall... but that shouldn't |
||
392 | * be a problem */ |
||
393 | rc = copy_to_uspace(uspace_dst, buffer, size); |
||
394 | if (rc) { |
||
395 | IPC_SET_RETVAL(call->data, rc); |
||
396 | return; |
||
397 | } |
||
398 | |||
399 | IPC_SET_RETVAL(call->data, 0); |
||
400 | |||
401 | free(call->buffer); |
||
402 | call->buffer = NULL; |
||
403 | |||
404 | ipc_answer(&TASK->kernel_box, call); |
||
405 | } |
||
406 | |||
407 | |||
2815 | svoboda | 408 | /** |
409 | * Handle a debug call received on the kernel answerbox. |
||
410 | * |
||
411 | * This is called by the kbox servicing thread. |
||
412 | */ |
||
413 | void udebug_call_receive(call_t *call) |
||
414 | { |
||
415 | int debug_method; |
||
416 | |||
417 | debug_method = IPC_GET_ARG1(call->data); |
||
418 | |||
419 | switch (debug_method) { |
||
420 | case UDEBUG_M_MEM_READ: |
||
421 | udebug_receive_mem_read(call); |
||
422 | break; |
||
2818 | svoboda | 423 | case UDEBUG_M_MEM_WRITE: |
424 | udebug_receive_mem_write(call); |
||
425 | break; |
||
2815 | svoboda | 426 | } |
427 | } |
||
428 | |||
2813 | svoboda | 429 | /** @} |
430 | */ |