Subversion Repositories HelenOS

Rev

Rev 3611 | Rev 3684 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3611 Rev 3623
1
/*
1
/*
2
 * Copyright (c) 2008 Jiri Svoboda
2
 * Copyright (c) 2008 Jiri Svoboda
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
13
 *   documentation and/or other materials provided with the distribution.
14
 * - The name of the author may not be used to endorse or promote products
14
 * - The name of the author may not be used to endorse or promote products
15
 *   derived from this software without specific prior written permission.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup generic
29
/** @addtogroup generic
30
 * @{
30
 * @{
31
 */
31
 */
32
 
32
 
33
/**
33
/**
34
 * @file
34
 * @file
35
 * @brief   Udebug hooks and data structure management.
35
 * @brief   Udebug hooks and data structure management.
36
 *
36
 *
37
 * Udebug is an interface that makes userspace debuggers possible.
37
 * Udebug is an interface that makes userspace debuggers possible.
38
 */
38
 */
39
 
39
 
40
#include <synch/waitq.h>
40
#include <synch/waitq.h>
41
#include <debug.h>
41
#include <debug.h>
42
#include <udebug/udebug.h>
42
#include <udebug/udebug.h>
43
#include <errno.h>
43
#include <errno.h>
44
#include <arch.h>
44
#include <arch.h>
45
 
45
 
46
 
46
 
47
/** Initialize udebug part of task structure.
47
/** Initialize udebug part of task structure.
48
 *
48
 *
49
 * Called as part of task structure initialization.
49
 * Called as part of task structure initialization.
50
 * @param ut    Pointer to the structure to initialize.
50
 * @param ut    Pointer to the structure to initialize.
51
 */
51
 */
52
void udebug_task_init(udebug_task_t *ut)
52
void udebug_task_init(udebug_task_t *ut)
53
{
53
{
54
    mutex_initialize(&ut->lock, MUTEX_PASSIVE);
54
    mutex_initialize(&ut->lock, MUTEX_PASSIVE);
55
    ut->dt_state = UDEBUG_TS_INACTIVE;
55
    ut->dt_state = UDEBUG_TS_INACTIVE;
56
    ut->begin_call = NULL;
56
    ut->begin_call = NULL;
57
    ut->not_stoppable_count = 0;
57
    ut->not_stoppable_count = 0;
58
    ut->evmask = 0;
58
    ut->evmask = 0;
59
}
59
}
60
 
60
 
61
/** Initialize udebug part of thread structure.
61
/** Initialize udebug part of thread structure.
62
 *
62
 *
63
 * Called as part of thread structure initialization.
63
 * Called as part of thread structure initialization.
64
 * @param ut    Pointer to the structure to initialize.
64
 * @param ut    Pointer to the structure to initialize.
65
 */
65
 */
66
void udebug_thread_initialize(udebug_thread_t *ut)
66
void udebug_thread_initialize(udebug_thread_t *ut)
67
{
67
{
68
    mutex_initialize(&ut->lock, MUTEX_PASSIVE);
68
    mutex_initialize(&ut->lock, MUTEX_PASSIVE);
69
    waitq_initialize(&ut->go_wq);
69
    waitq_initialize(&ut->go_wq);
70
 
70
 
71
    ut->go_call = NULL;
71
    ut->go_call = NULL;
72
    ut->uspace_state = NULL;
72
    ut->uspace_state = NULL;
73
    ut->go = false;
73
    ut->go = false;
74
    ut->stoppable = true;
74
    ut->stoppable = true;
75
    ut->debug_active = false;
75
    ut->debug_active = false;
76
    ut->cur_event = 0; /* none */
76
    ut->cur_event = 0; /* none */
77
}
77
}
78
 
78
 
79
/** Wait for a GO message.
79
/** Wait for a GO message.
80
 *
80
 *
81
 * When a debugging event occurs in a thread or the thread is stopped,
81
 * When a debugging event occurs in a thread or the thread is stopped,
82
 * this function is called to block the thread until a GO message
82
 * this function is called to block the thread until a GO message
83
 * is received.
83
 * is received.
84
 *
84
 *
85
 * @param wq    The wait queue used by the thread to wait for GO messages.
85
 * @param wq    The wait queue used by the thread to wait for GO messages.
86
 */
86
 */
87
static void udebug_wait_for_go(waitq_t *wq)
87
static void udebug_wait_for_go(waitq_t *wq)
88
{
88
{
89
    int rc;
89
    int rc;
90
    ipl_t ipl;
90
    ipl_t ipl;
91
 
91
 
92
    ipl = waitq_sleep_prepare(wq);
92
    ipl = waitq_sleep_prepare(wq);
93
 
93
 
94
    wq->missed_wakeups = 0; /* Enforce blocking. */
94
    wq->missed_wakeups = 0; /* Enforce blocking. */
95
    rc = waitq_sleep_timeout_unsafe(wq, SYNCH_NO_TIMEOUT, SYNCH_FLAGS_NONE);
95
    rc = waitq_sleep_timeout_unsafe(wq, SYNCH_NO_TIMEOUT, SYNCH_FLAGS_NONE);
96
 
96
 
97
    waitq_sleep_finish(wq, rc, ipl);
97
    waitq_sleep_finish(wq, rc, ipl);
98
}
98
}
99
 
99
 
100
/** Do a preliminary check that a debugging session is in progress.
100
/** Do a preliminary check that a debugging session is in progress.
101
 *
101
 *
102
 * This only requires the THREAD->udebug.lock mutex (and not TASK->udebug.lock
102
 * This only requires the THREAD->udebug.lock mutex (and not TASK->udebug.lock
103
 * mutex). For an undebugged task, this will never block (while there could be
103
 * mutex). For an undebugged task, this will never block (while there could be
104
 * collisions by different threads on the TASK mutex), thus improving SMP
104
 * collisions by different threads on the TASK mutex), thus improving SMP
105
 * perormance for undebugged tasks.
105
 * perormance for undebugged tasks.
106
 *
106
 *
107
 * @return  True if the thread was in a debugging session when the function
107
 * @return  True if the thread was in a debugging session when the function
108
 *      checked, false otherwise.
108
 *      checked, false otherwise.
109
 */
109
 */
110
static bool udebug_thread_precheck(void)
110
static bool udebug_thread_precheck(void)
111
{
111
{
112
    bool res;
112
    bool res;
113
 
113
 
114
    mutex_lock(&THREAD->udebug.lock);
114
    mutex_lock(&THREAD->udebug.lock);
115
    res = THREAD->udebug.debug_active;
115
    res = THREAD->udebug.debug_active;
116
    mutex_unlock(&THREAD->udebug.lock);
116
    mutex_unlock(&THREAD->udebug.lock);
117
 
117
 
118
    return res;
118
    return res;
119
}
119
}
120
 
120
 
121
/** Start of stoppable section.
121
/** Start of stoppable section.
122
 *
122
 *
123
 * A stoppable section is a section of code where if the thread can be stoped. In other words,
123
 * A stoppable section is a section of code where if the thread can be stoped. In other words,
124
 * if a STOP operation is issued, the thread is guaranteed not to execute
124
 * if a STOP operation is issued, the thread is guaranteed not to execute
125
 * any userspace instructions until the thread is resumed.
125
 * any userspace instructions until the thread is resumed.
126
 *
126
 *
127
 * Having stoppable sections is better than having stopping points, since
127
 * Having stoppable sections is better than having stopping points, since
128
 * a thread can be stopped even when it is blocked indefinitely in a system
128
 * a thread can be stopped even when it is blocked indefinitely in a system
129
 * call (whereas it would not reach any stopping point).
129
 * call (whereas it would not reach any stopping point).
130
 */
130
 */
131
void udebug_stoppable_begin(void)
131
void udebug_stoppable_begin(void)
132
{
132
{
133
    int nsc;
133
    int nsc;
134
    call_t *db_call, *go_call;
134
    call_t *db_call, *go_call;
135
 
135
 
136
    ASSERT(THREAD);
136
    ASSERT(THREAD);
137
    ASSERT(TASK);
137
    ASSERT(TASK);
138
 
138
 
139
    /* Early check for undebugged tasks */
139
    /* Early check for undebugged tasks */
140
    if (!udebug_thread_precheck()) {
140
    if (!udebug_thread_precheck()) {
141
        return;
141
        return;
142
    }
142
    }
143
 
143
 
144
    mutex_lock(&TASK->udebug.lock);
144
    mutex_lock(&TASK->udebug.lock);
145
 
145
 
146
    nsc = --TASK->udebug.not_stoppable_count;
146
    nsc = --TASK->udebug.not_stoppable_count;
147
 
147
 
148
    /* Lock order OK, THREAD->udebug.lock is after TASK->udebug.lock */
148
    /* Lock order OK, THREAD->udebug.lock is after TASK->udebug.lock */
149
    mutex_lock(&THREAD->udebug.lock);
149
    mutex_lock(&THREAD->udebug.lock);
150
    ASSERT(THREAD->udebug.stoppable == false);
150
    ASSERT(THREAD->udebug.stoppable == false);
151
    THREAD->udebug.stoppable = true;
151
    THREAD->udebug.stoppable = true;
152
 
152
 
153
    if (TASK->udebug.dt_state == UDEBUG_TS_BEGINNING && nsc == 0) {
153
    if (TASK->udebug.dt_state == UDEBUG_TS_BEGINNING && nsc == 0) {
154
        /*
154
        /*
155
         * This was the last non-stoppable thread. Reply to
155
         * This was the last non-stoppable thread. Reply to
156
         * DEBUG_BEGIN call.
156
         * DEBUG_BEGIN call.
157
         */
157
         */
158
 
158
 
159
        db_call = TASK->udebug.begin_call;
159
        db_call = TASK->udebug.begin_call;
160
        ASSERT(db_call);
160
        ASSERT(db_call);
161
 
161
 
162
        TASK->udebug.dt_state = UDEBUG_TS_ACTIVE;
162
        TASK->udebug.dt_state = UDEBUG_TS_ACTIVE;
163
        TASK->udebug.begin_call = NULL;
163
        TASK->udebug.begin_call = NULL;
164
 
164
 
165
        IPC_SET_RETVAL(db_call->data, 0);
165
        IPC_SET_RETVAL(db_call->data, 0);
166
        ipc_answer(&TASK->answerbox, db_call);     
166
        ipc_answer(&TASK->answerbox, db_call);     
167
 
167
 
168
    } else if (TASK->udebug.dt_state == UDEBUG_TS_ACTIVE) {
168
    } else if (TASK->udebug.dt_state == UDEBUG_TS_ACTIVE) {
169
        /*
169
        /*
170
         * Active debugging session
170
         * Active debugging session
171
         */
171
         */
172
 
172
 
173
        if (THREAD->udebug.debug_active == true &&
173
        if (THREAD->udebug.debug_active == true &&
174
            THREAD->udebug.go == false) {
174
            THREAD->udebug.go == false) {
175
            /*
175
            /*
176
             * Thread was requested to stop - answer go call
176
             * Thread was requested to stop - answer go call
177
             */
177
             */
178
 
178
 
179
            /* Make sure nobody takes this call away from us */
179
            /* Make sure nobody takes this call away from us */
180
            go_call = THREAD->udebug.go_call;
180
            go_call = THREAD->udebug.go_call;
181
            THREAD->udebug.go_call = NULL;
181
            THREAD->udebug.go_call = NULL;
182
            ASSERT(go_call);
182
            ASSERT(go_call);
183
 
183
 
184
            IPC_SET_RETVAL(go_call->data, 0);
184
            IPC_SET_RETVAL(go_call->data, 0);
185
            IPC_SET_ARG1(go_call->data, UDEBUG_EVENT_STOP);
185
            IPC_SET_ARG1(go_call->data, UDEBUG_EVENT_STOP);
186
 
186
 
187
            THREAD->udebug.cur_event = UDEBUG_EVENT_STOP;
187
            THREAD->udebug.cur_event = UDEBUG_EVENT_STOP;
188
 
188
 
189
                ipc_answer(&TASK->answerbox, go_call);
189
                ipc_answer(&TASK->answerbox, go_call);
190
        }
190
        }
191
    }
191
    }
192
 
192
 
193
    mutex_unlock(&THREAD->udebug.lock);
193
    mutex_unlock(&THREAD->udebug.lock);
194
        mutex_unlock(&TASK->udebug.lock);
194
        mutex_unlock(&TASK->udebug.lock);
195
}
195
}
196
 
196
 
197
/** End of a stoppable section.
197
/** End of a stoppable section.
198
 *
198
 *
199
 * This is the point where the thread will block if it is stopped.
199
 * This is the point where the thread will block if it is stopped.
200
 * (As, by definition, a stopped thread must not leave its stoppable section).
200
 * (As, by definition, a stopped thread must not leave its stoppable section).
201
 */
201
 */
202
void udebug_stoppable_end(void)
202
void udebug_stoppable_end(void)
203
{
203
{
204
    /* Early check for undebugged tasks */
204
    /* Early check for undebugged tasks */
205
    if (!udebug_thread_precheck()) {
205
    if (!udebug_thread_precheck()) {
206
        return;
206
        return;
207
    }
207
    }
208
 
208
 
209
restart:
209
restart:
210
    mutex_lock(&TASK->udebug.lock);
210
    mutex_lock(&TASK->udebug.lock);
211
    mutex_lock(&THREAD->udebug.lock);
211
    mutex_lock(&THREAD->udebug.lock);
212
 
212
 
213
    if (THREAD->udebug.debug_active &&
213
    if (THREAD->udebug.debug_active &&
214
        THREAD->udebug.go == false) {
214
        THREAD->udebug.go == false) {
215
        TASK->udebug.begin_call = NULL;
215
        TASK->udebug.begin_call = NULL;
216
        mutex_unlock(&THREAD->udebug.lock);
216
        mutex_unlock(&THREAD->udebug.lock);
217
        mutex_unlock(&TASK->udebug.lock);
217
        mutex_unlock(&TASK->udebug.lock);
218
 
218
 
219
        udebug_wait_for_go(&THREAD->udebug.go_wq);
219
        udebug_wait_for_go(&THREAD->udebug.go_wq);
220
 
220
 
221
        goto restart;
221
        goto restart;
222
        /* Must try again - have to lose stoppability atomically. */
222
        /* Must try again - have to lose stoppability atomically. */
223
    } else {
223
    } else {
224
        ++TASK->udebug.not_stoppable_count;
224
        ++TASK->udebug.not_stoppable_count;
225
        ASSERT(THREAD->udebug.stoppable == true);
225
        ASSERT(THREAD->udebug.stoppable == true);
226
        THREAD->udebug.stoppable = false;
226
        THREAD->udebug.stoppable = false;
227
 
227
 
228
        mutex_unlock(&THREAD->udebug.lock);
228
        mutex_unlock(&THREAD->udebug.lock);
229
        mutex_unlock(&TASK->udebug.lock);
229
        mutex_unlock(&TASK->udebug.lock);
230
    }
230
    }
231
}
231
}
232
 
232
 
233
/** Upon being scheduled to run, check if the current thread should stop.
233
/** Upon being scheduled to run, check if the current thread should stop.
234
 *
234
 *
235
 * This function is called from clock().
235
 * This function is called from clock().
236
 */
236
 */
237
void udebug_before_thread_runs(void)
237
void udebug_before_thread_runs(void)
238
{
238
{
239
    /* Check if we are supposed to stop. */
239
    /* Check if we are supposed to stop. */
240
    udebug_stoppable_begin();
240
    udebug_stoppable_begin();
241
    udebug_stoppable_end();
241
    udebug_stoppable_end();
242
}
242
}
243
 
243
 
244
/** Syscall event hook.
244
/** Syscall event hook.
245
 *
245
 *
246
 * Must be called before and after servicing a system call. This generates
246
 * Must be called before and after servicing a system call. This generates
247
 * a SYSCALL_B or SYSCALL_E event, depending on the value of @a end_variant.
247
 * a SYSCALL_B or SYSCALL_E event, depending on the value of @a end_variant.
248
 */
248
 */
249
void udebug_syscall_event(unative_t a1, unative_t a2, unative_t a3,
249
void udebug_syscall_event(unative_t a1, unative_t a2, unative_t a3,
250
    unative_t a4, unative_t a5, unative_t a6, unative_t id, unative_t rc,
250
    unative_t a4, unative_t a5, unative_t a6, unative_t id, unative_t rc,
251
    bool end_variant)
251
    bool end_variant)
252
{
252
{
253
    call_t *call;
253
    call_t *call;
254
    udebug_event_t etype;
254
    udebug_event_t etype;
255
 
255
 
256
    etype = end_variant ? UDEBUG_EVENT_SYSCALL_E : UDEBUG_EVENT_SYSCALL_B;
256
    etype = end_variant ? UDEBUG_EVENT_SYSCALL_E : UDEBUG_EVENT_SYSCALL_B;
257
 
257
 
258
    /* Early check for undebugged tasks */
258
    /* Early check for undebugged tasks */
259
    if (!udebug_thread_precheck()) {
259
    if (!udebug_thread_precheck()) {
260
        return;
260
        return;
261
    }
261
    }
262
 
262
 
263
    mutex_lock(&TASK->udebug.lock);
263
    mutex_lock(&TASK->udebug.lock);
264
    mutex_lock(&THREAD->udebug.lock);
264
    mutex_lock(&THREAD->udebug.lock);
265
 
265
 
266
    /* Must only generate events when in debugging session and is go. */
266
    /* Must only generate events when in debugging session and is go. */
267
    if (THREAD->udebug.debug_active != true ||
267
    if (THREAD->udebug.debug_active != true ||
268
        THREAD->udebug.go == false ||
268
        THREAD->udebug.go == false ||
269
        (TASK->udebug.evmask & UDEBUG_EVMASK(etype)) == 0) {
269
        (TASK->udebug.evmask & UDEBUG_EVMASK(etype)) == 0) {
270
        mutex_unlock(&THREAD->udebug.lock);
270
        mutex_unlock(&THREAD->udebug.lock);
271
        mutex_unlock(&TASK->udebug.lock);
271
        mutex_unlock(&TASK->udebug.lock);
272
        return;
272
        return;
273
    }
273
    }
274
 
274
 
275
    //printf("udebug_syscall_event\n");
275
    //printf("udebug_syscall_event\n");
276
    call = THREAD->udebug.go_call;
276
    call = THREAD->udebug.go_call;
277
    THREAD->udebug.go_call = NULL;
277
    THREAD->udebug.go_call = NULL;
278
 
278
 
279
    IPC_SET_RETVAL(call->data, 0);
279
    IPC_SET_RETVAL(call->data, 0);
280
    IPC_SET_ARG1(call->data, etype);
280
    IPC_SET_ARG1(call->data, etype);
281
    IPC_SET_ARG2(call->data, id);
281
    IPC_SET_ARG2(call->data, id);
282
    IPC_SET_ARG3(call->data, rc);
282
    IPC_SET_ARG3(call->data, rc);
283
    //printf("udebug_syscall_event/ipc_answer\n");
283
    //printf("udebug_syscall_event/ipc_answer\n");
284
 
284
 
285
    THREAD->udebug.syscall_args[0] = a1;
285
    THREAD->udebug.syscall_args[0] = a1;
286
    THREAD->udebug.syscall_args[1] = a2;
286
    THREAD->udebug.syscall_args[1] = a2;
287
    THREAD->udebug.syscall_args[2] = a3;
287
    THREAD->udebug.syscall_args[2] = a3;
288
    THREAD->udebug.syscall_args[3] = a4;
288
    THREAD->udebug.syscall_args[3] = a4;
289
    THREAD->udebug.syscall_args[4] = a5;
289
    THREAD->udebug.syscall_args[4] = a5;
290
    THREAD->udebug.syscall_args[5] = a6;
290
    THREAD->udebug.syscall_args[5] = a6;
291
 
291
 
292
    /*
292
    /*
293
     * Make sure udebug.go is false when going to sleep
293
     * Make sure udebug.go is false when going to sleep
294
     * in case we get woken up by DEBUG_END. (At which
294
     * in case we get woken up by DEBUG_END. (At which
295
     * point it must be back to the initial true value).
295
     * point it must be back to the initial true value).
296
     */
296
     */
297
    THREAD->udebug.go = false;
297
    THREAD->udebug.go = false;
298
    THREAD->udebug.cur_event = etype;
298
    THREAD->udebug.cur_event = etype;
299
 
299
 
300
    ipc_answer(&TASK->answerbox, call);
300
    ipc_answer(&TASK->answerbox, call);
301
 
301
 
302
    mutex_unlock(&THREAD->udebug.lock);
302
    mutex_unlock(&THREAD->udebug.lock);
303
    mutex_unlock(&TASK->udebug.lock);
303
    mutex_unlock(&TASK->udebug.lock);
304
 
304
 
305
    udebug_wait_for_go(&THREAD->udebug.go_wq);
305
    udebug_wait_for_go(&THREAD->udebug.go_wq);
306
}
306
}
307
 
307
 
308
/** Thread-creation event hook.
308
/** Thread-creation event hook combined with attaching the thread.
309
 *
309
 *
310
 * Must be called when a new userspace thread is created in the debugged
310
 * Must be called when a new userspace thread is created in the debugged
-
 
311
 * task. Generates a THREAD_B event. Also attaches the thread @a t
-
 
312
 * to the task @a ta.
-
 
313
 *
-
 
314
 * This is necessary to avoid a race condition where the BEGIN and THREAD_READ
-
 
315
 * requests would be handled inbetween attaching the thread and checking it
-
 
316
 * for being in a debugging session to send the THREAD_B event. We could then
-
 
317
 * either miss threads or get some threads both in the thread list
311
 * task. Generates a THREAD_B event.
318
 * and get a THREAD_B event for them.
312
 *
319
 *
313
 * @param t Structure of the thread being created. Not locked, as the
320
 * @param t Structure of the thread being created. Not locked, as the
314
 *      thread is not executing yet.
321
 *      thread is not executing yet.
-
 
322
 * @param ta    Task to which the thread should be attached.
315
 */
323
 */
316
void udebug_thread_b_event(struct thread *t)
324
void udebug_thread_b_event_attach(struct thread *t, struct task *ta)
317
{
325
{
318
    call_t *call;
326
    call_t *call;
319
 
327
 
320
    mutex_lock(&TASK->udebug.lock);
328
    mutex_lock(&TASK->udebug.lock);
321
    mutex_lock(&THREAD->udebug.lock);
329
    mutex_lock(&THREAD->udebug.lock);
322
 
330
 
-
 
331
    thread_attach(t, ta);
-
 
332
 
323
    LOG("udebug_thread_b_event\n");
333
    LOG("udebug_thread_b_event\n");
324
    LOG("- check state\n");
334
    LOG("- check state\n");
325
 
335
 
326
    /* Must only generate events when in debugging session */
336
    /* Must only generate events when in debugging session */
327
    if (THREAD->udebug.debug_active != true) {
337
    if (THREAD->udebug.debug_active != true) {
328
        LOG("- debug_active: %s, udebug.go: %s\n",
338
        LOG("- debug_active: %s, udebug.go: %s\n",
329
            THREAD->udebug.debug_active ? "yes(+)" : "no(-)",
339
            THREAD->udebug.debug_active ? "yes(+)" : "no(-)",
330
            THREAD->udebug.go ? "yes(-)" : "no(+)");
340
            THREAD->udebug.go ? "yes(-)" : "no(+)");
331
        mutex_unlock(&THREAD->udebug.lock);
341
        mutex_unlock(&THREAD->udebug.lock);
332
        mutex_unlock(&TASK->udebug.lock);
342
        mutex_unlock(&TASK->udebug.lock);
333
        return;
343
        return;
334
    }
344
    }
335
 
345
 
336
    LOG("- trigger event\n");
346
    LOG("- trigger event\n");
337
 
347
 
338
    call = THREAD->udebug.go_call;
348
    call = THREAD->udebug.go_call;
339
    THREAD->udebug.go_call = NULL;
349
    THREAD->udebug.go_call = NULL;
340
    IPC_SET_RETVAL(call->data, 0);
350
    IPC_SET_RETVAL(call->data, 0);
341
    IPC_SET_ARG1(call->data, UDEBUG_EVENT_THREAD_B);
351
    IPC_SET_ARG1(call->data, UDEBUG_EVENT_THREAD_B);
342
    IPC_SET_ARG2(call->data, (unative_t)t);
352
    IPC_SET_ARG2(call->data, (unative_t)t);
343
 
353
 
344
    /*
354
    /*
345
     * Make sure udebug.go is false when going to sleep
355
     * Make sure udebug.go is false when going to sleep
346
     * in case we get woken up by DEBUG_END. (At which
356
     * in case we get woken up by DEBUG_END. (At which
347
     * point it must be back to the initial true value).
357
     * point it must be back to the initial true value).
348
     */
358
     */
349
    THREAD->udebug.go = false;
359
    THREAD->udebug.go = false;
350
    THREAD->udebug.cur_event = UDEBUG_EVENT_THREAD_B;
360
    THREAD->udebug.cur_event = UDEBUG_EVENT_THREAD_B;
351
 
361
 
352
    ipc_answer(&TASK->answerbox, call);
362
    ipc_answer(&TASK->answerbox, call);
353
 
363
 
354
    mutex_unlock(&THREAD->udebug.lock);
364
    mutex_unlock(&THREAD->udebug.lock);
355
    mutex_unlock(&TASK->udebug.lock);
365
    mutex_unlock(&TASK->udebug.lock);
356
 
366
 
357
    LOG("- sleep\n");
367
    LOG("- sleep\n");
358
    udebug_wait_for_go(&THREAD->udebug.go_wq);
368
    udebug_wait_for_go(&THREAD->udebug.go_wq);
359
}
369
}
360
 
370
 
361
/** Thread-termination event hook.
371
/** Thread-termination event hook.
362
 *
372
 *
363
 * Must be called when the current thread is terminating.
373
 * Must be called when the current thread is terminating.
364
 * Generates a THREAD_E event.
374
 * Generates a THREAD_E event.
365
 */
375
 */
366
void udebug_thread_e_event(void)
376
void udebug_thread_e_event(void)
367
{
377
{
368
    call_t *call;
378
    call_t *call;
369
 
379
 
370
    mutex_lock(&TASK->udebug.lock);
380
    mutex_lock(&TASK->udebug.lock);
371
    mutex_lock(&THREAD->udebug.lock);
381
    mutex_lock(&THREAD->udebug.lock);
372
 
382
 
373
    LOG("udebug_thread_e_event\n");
383
    LOG("udebug_thread_e_event\n");
374
    LOG("- check state\n");
384
    LOG("- check state\n");
375
 
385
 
376
    /* Must only generate events when in debugging session. */
386
    /* Must only generate events when in debugging session. */
377
    if (THREAD->udebug.debug_active != true) {
387
    if (THREAD->udebug.debug_active != true) {
378
/*      printf("- debug_active: %s, udebug.go: %s\n",
388
/*      printf("- debug_active: %s, udebug.go: %s\n",
379
            THREAD->udebug.debug_active ? "yes(+)" : "no(-)",
389
            THREAD->udebug.debug_active ? "yes(+)" : "no(-)",
380
            THREAD->udebug.go ? "yes(-)" : "no(+)");*/
390
            THREAD->udebug.go ? "yes(-)" : "no(+)");*/
381
        mutex_unlock(&THREAD->udebug.lock);
391
        mutex_unlock(&THREAD->udebug.lock);
382
        mutex_unlock(&TASK->udebug.lock);
392
        mutex_unlock(&TASK->udebug.lock);
383
        return;
393
        return;
384
    }
394
    }
385
 
395
 
386
    LOG("- trigger event\n");
396
    LOG("- trigger event\n");
387
 
397
 
388
    call = THREAD->udebug.go_call;
398
    call = THREAD->udebug.go_call;
389
    THREAD->udebug.go_call = NULL;
399
    THREAD->udebug.go_call = NULL;
390
    IPC_SET_RETVAL(call->data, 0);
400
    IPC_SET_RETVAL(call->data, 0);
391
    IPC_SET_ARG1(call->data, UDEBUG_EVENT_THREAD_E);
401
    IPC_SET_ARG1(call->data, UDEBUG_EVENT_THREAD_E);
392
 
402
 
393
    /* Prevent any further debug activity in thread. */
403
    /* Prevent any further debug activity in thread. */
394
    THREAD->udebug.debug_active = false;
404
    THREAD->udebug.debug_active = false;
395
    THREAD->udebug.cur_event = 0;       /* none */
405
    THREAD->udebug.cur_event = 0;       /* none */
396
    THREAD->udebug.go = false;  /* set to initial value */
406
    THREAD->udebug.go = false;  /* set to initial value */
397
 
407
 
398
    ipc_answer(&TASK->answerbox, call);
408
    ipc_answer(&TASK->answerbox, call);
399
 
409
 
400
    mutex_unlock(&THREAD->udebug.lock);
410
    mutex_unlock(&THREAD->udebug.lock);
401
    mutex_unlock(&TASK->udebug.lock);
411
    mutex_unlock(&TASK->udebug.lock);
402
 
412
 
403
    /*
413
    /*
404
     * This event does not sleep - debugging has finished
414
     * This event does not sleep - debugging has finished
405
     * in this thread.
415
     * in this thread.
406
     */
416
     */
407
}
417
}
408
 
418
 
409
static void breakpoint_trap_event(uintptr_t addr, udebug_event_t etype)
419
static void breakpoint_trap_event(uintptr_t addr, udebug_event_t etype)
410
{
420
{
411
    call_t *call;
421
    call_t *call;
412
 
422
 
413
    mutex_lock(&TASK->udebug.lock);
423
    mutex_lock(&TASK->udebug.lock);
414
    mutex_lock(&THREAD->udebug.lock);
424
    mutex_lock(&THREAD->udebug.lock);
415
 
425
 
416
    /* Must only generate events when in debugging session and have go. */
426
    /* Must only generate events when in debugging session and have go. */
417
    if (THREAD->udebug.debug_active != true ||
427
    if (THREAD->udebug.debug_active != true ||
418
        THREAD->udebug.go == false) {
428
        THREAD->udebug.go == false) {
419
        mutex_unlock(&THREAD->udebug.lock);
429
        mutex_unlock(&THREAD->udebug.lock);
420
        mutex_unlock(&TASK->udebug.lock);
430
        mutex_unlock(&TASK->udebug.lock);
421
        return;
431
        return;
422
    }
432
    }
423
 
433
 
424
    /* Verify that the event is enabled */
434
    /* Verify that the event is enabled */
425
    if ((TASK->udebug.evmask & UDEBUG_EVMASK(etype)) == 0) {
435
    if ((TASK->udebug.evmask & UDEBUG_EVMASK(etype)) == 0) {
426
        mutex_unlock(&THREAD->udebug.lock);
436
        mutex_unlock(&THREAD->udebug.lock);
427
        mutex_unlock(&TASK->udebug.lock);
437
        mutex_unlock(&TASK->udebug.lock);
428
        return;
438
        return;
429
    }
439
    }
430
 
440
 
431
    LOG("udebug_breakpoint/trap_event\n");
441
    LOG("udebug_breakpoint/trap_event\n");
432
    call = THREAD->udebug.go_call;
442
    call = THREAD->udebug.go_call;
433
    THREAD->udebug.go_call = NULL;
443
    THREAD->udebug.go_call = NULL;
434
 
444
 
435
    IPC_SET_RETVAL(call->data, 0);
445
    IPC_SET_RETVAL(call->data, 0);
436
    IPC_SET_ARG1(call->data, etype);
446
    IPC_SET_ARG1(call->data, etype);
437
    IPC_SET_ARG2(call->data, addr);
447
    IPC_SET_ARG2(call->data, addr);
438
 
448
 
439
    /*
449
    /*
440
     * Make sure udebug.go is false when going to sleep
450
     * Make sure udebug.go is false when going to sleep
441
     * in case we get woken up by DEBUG_END. (At which
451
     * in case we get woken up by DEBUG_END. (At which
442
     * point it must be back to the initial true value).
452
     * point it must be back to the initial true value).
443
     */
453
     */
444
    THREAD->udebug.go = false;
454
    THREAD->udebug.go = false;
445
    THREAD->udebug.cur_event = etype;
455
    THREAD->udebug.cur_event = etype;
446
 
456
 
447
    LOG("- send answer\n");
457
    LOG("- send answer\n");
448
    ipc_answer(&TASK->answerbox, call);
458
    ipc_answer(&TASK->answerbox, call);
449
 
459
 
450
    mutex_unlock(&THREAD->udebug.lock);
460
    mutex_unlock(&THREAD->udebug.lock);
451
    mutex_unlock(&TASK->udebug.lock);
461
    mutex_unlock(&TASK->udebug.lock);
452
 
462
 
453
    udebug_wait_for_go(&THREAD->udebug.go_wq);
463
    udebug_wait_for_go(&THREAD->udebug.go_wq);
454
}
464
}
455
 
465
 
456
void udebug_breakpoint_event(uintptr_t addr)
466
void udebug_breakpoint_event(uintptr_t addr)
457
{
467
{
458
    breakpoint_trap_event(addr, UDEBUG_EVENT_BREAKPOINT);
468
    breakpoint_trap_event(addr, UDEBUG_EVENT_BREAKPOINT);
459
}
469
}
460
 
470
 
461
void udebug_trap_event(uintptr_t addr)
471
void udebug_trap_event(uintptr_t addr)
462
{
472
{
463
    breakpoint_trap_event(addr, UDEBUG_EVENT_TRAP);
473
    breakpoint_trap_event(addr, UDEBUG_EVENT_TRAP);
464
}
474
}
465
 
475
 
466
/**
476
/**
467
 * Terminate task debugging session.
477
 * Terminate task debugging session.
468
 *
478
 *
469
 * Gracefully terminates the debugging session for a task. If the debugger
479
 * Gracefully terminates the debugging session for a task. If the debugger
470
 * is still waiting for events on some threads, it will receive a
480
 * is still waiting for events on some threads, it will receive a
471
 * FINISHED event for each of them.
481
 * FINISHED event for each of them.
472
 *
482
 *
473
 * @param ta    Task structure. ta->udebug.lock must be already locked.
483
 * @param ta    Task structure. ta->udebug.lock must be already locked.
474
 * @return  Zero on success or negative error code.
484
 * @return  Zero on success or negative error code.
475
 */
485
 */
476
int udebug_task_cleanup(struct task *ta)
486
int udebug_task_cleanup(struct task *ta)
477
{
487
{
478
    thread_t *t;
488
    thread_t *t;
479
    link_t *cur;
489
    link_t *cur;
480
    int flags;
490
    int flags;
481
    ipl_t ipl;
491
    ipl_t ipl;
482
 
492
 
483
    LOG("udebug_task_cleanup()\n");
493
    LOG("udebug_task_cleanup()\n");
484
    LOG("task %" PRIu64 "\n", ta->taskid);
494
    LOG("task %" PRIu64 "\n", ta->taskid);
485
 
495
 
486
    if (ta->udebug.dt_state != UDEBUG_TS_BEGINNING &&
496
    if (ta->udebug.dt_state != UDEBUG_TS_BEGINNING &&
487
        ta->udebug.dt_state != UDEBUG_TS_ACTIVE) {
497
        ta->udebug.dt_state != UDEBUG_TS_ACTIVE) {
488
        LOG("udebug_task_cleanup(): task not being debugged\n");
498
        LOG("udebug_task_cleanup(): task not being debugged\n");
489
        return EINVAL;
499
        return EINVAL;
490
    }
500
    }
491
 
501
 
492
    /* Finish debugging of all userspace threads */
502
    /* Finish debugging of all userspace threads */
493
    for (cur = ta->th_head.next; cur != &ta->th_head; cur = cur->next) {
503
    for (cur = ta->th_head.next; cur != &ta->th_head; cur = cur->next) {
494
        t = list_get_instance(cur, thread_t, th_link);
504
        t = list_get_instance(cur, thread_t, th_link);
495
 
505
 
496
        mutex_lock(&t->udebug.lock);
506
        mutex_lock(&t->udebug.lock);
497
 
507
 
498
        ipl = interrupts_disable();
508
        ipl = interrupts_disable();
499
        spinlock_lock(&t->lock);
509
        spinlock_lock(&t->lock);
500
 
510
 
501
        flags = t->flags;
511
        flags = t->flags;
502
 
512
 
503
        spinlock_unlock(&t->lock);
513
        spinlock_unlock(&t->lock);
504
        interrupts_restore(ipl);
514
        interrupts_restore(ipl);
505
 
515
 
506
        /* Only process userspace threads. */
516
        /* Only process userspace threads. */
507
        if ((flags & THREAD_FLAG_USPACE) != 0) {
517
        if ((flags & THREAD_FLAG_USPACE) != 0) {
508
            /* Prevent any further debug activity in thread. */
518
            /* Prevent any further debug activity in thread. */
509
            t->udebug.debug_active = false;
519
            t->udebug.debug_active = false;
510
            t->udebug.cur_event = 0;    /* none */
520
            t->udebug.cur_event = 0;    /* none */
511
 
521
 
512
            /* Is the thread still go? */
522
            /* Is the thread still go? */
513
            if (t->udebug.go == true) {
523
            if (t->udebug.go == true) {
514
                /*
524
                /*
515
                * Yes, so clear go. As debug_active == false,
525
                * Yes, so clear go. As debug_active == false,
516
                 * this doesn't affect anything.
526
                 * this doesn't affect anything.
517
                 */
527
                 */
518
                t->udebug.go = false;  
528
                t->udebug.go = false;  
519
 
529
 
520
                /* Answer GO call */
530
                /* Answer GO call */
521
                LOG("answer GO call with EVENT_FINISHED\n");
531
                LOG("answer GO call with EVENT_FINISHED\n");
522
                IPC_SET_RETVAL(t->udebug.go_call->data, 0);
532
                IPC_SET_RETVAL(t->udebug.go_call->data, 0);
523
                IPC_SET_ARG1(t->udebug.go_call->data,
533
                IPC_SET_ARG1(t->udebug.go_call->data,
524
                    UDEBUG_EVENT_FINISHED);
534
                    UDEBUG_EVENT_FINISHED);
525
 
535
 
526
                ipc_answer(&ta->answerbox, t->udebug.go_call);
536
                ipc_answer(&ta->answerbox, t->udebug.go_call);
527
                t->udebug.go_call = NULL;
537
                t->udebug.go_call = NULL;
528
            } else {
538
            } else {
529
                /*
539
                /*
530
                 * Debug_stop is already at initial value.
540
                 * Debug_stop is already at initial value.
531
                 * Yet this means the thread needs waking up.
541
                 * Yet this means the thread needs waking up.
532
                 */
542
                 */
533
 
543
 
534
                /*
544
                /*
535
                 * t's lock must not be held when calling
545
                 * t's lock must not be held when calling
536
                 * waitq_wakeup.
546
                 * waitq_wakeup.
537
                 */
547
                 */
538
                waitq_wakeup(&t->udebug.go_wq, WAKEUP_FIRST);
548
                waitq_wakeup(&t->udebug.go_wq, WAKEUP_FIRST);
539
            }
549
            }
540
        }
550
        }
541
        mutex_unlock(&t->udebug.lock);
551
        mutex_unlock(&t->udebug.lock);
542
    }
552
    }
543
 
553
 
544
    ta->udebug.dt_state = UDEBUG_TS_INACTIVE;
554
    ta->udebug.dt_state = UDEBUG_TS_INACTIVE;
545
    ta->udebug.debugger = NULL;
555
    ta->udebug.debugger = NULL;
546
 
556
 
547
    return 0;
557
    return 0;
548
}
558
}
549
 
559
 
550
 
560
 
551
/** @}
561
/** @}
552
 */
562
 */
553
 
563