summaryrefslogblamecommitdiffstats
path: root/private/sm/server/dbguiapi.c
blob: 07eb48e7b9af8dfece8869a0e0f1ddaebd43adea (plain) (tree)
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675


































































































































































































































































































































































































































































































































































































































































































                                                                                                                            
/*++

Copyright (c) 1989 - 1993 Microsoft Corporation

Module Name:

    dbguiapi.c

Abstract:

    This module implements the DbgUi APIs

Author:

    Mark Lucovsky (markl) 23-Jan-1990

Revision History:

--*/

#include "smsrvp.h"

//
// Forward declarations.
//

NTSTATUS
DbgpCreateProcess(
    IN PDBGP_USER_INTERFACE UserInterface,
    IN OUT PDBGP_APP_THREAD AppThread,
    OUT PDBGUI_CREATE_PROCESS CreateProcessInfo
    );

NTSTATUS
DbgpCreateThread(
    IN PDBGP_USER_INTERFACE UserInterface,
    IN OUT PDBGP_APP_THREAD AppThread,
    OUT PDBGUI_CREATE_THREAD CreateThread
    );

NTSTATUS
DbgpLoadDll(
    IN PDBGP_USER_INTERFACE UserInterface,
    IN OUT PDBGP_APP_THREAD AppThread,
    OUT PDBGKM_LOAD_DLL LoadDll
    );

NTSTATUS
DbgpUiWaitStateChange (
    IN PDBGP_USER_INTERFACE UserInterface,
    IN OUT PDBGUI_APIMSG ApiMsg
    )

/*++

Routine Description:

    This function is called when a user interface has waited
    on its state change notification semaphore, and wants to
    pickup a state change message.

Arguments:

    UserInterface - Supplies the address of the user interface making the call

    ApiMsg - Supplies the DbgUi API message that contains the information
        needed to complete this call.

Return Value:

    STATUS_SUCCESS - A state change occured and is available in the
        ApiMsg.

    DBG_NO_STATE_CHANGE - No state change was found for the calling
        user interface.

--*/
{

    NTSTATUS st;
    PDBGP_APP_THREAD AppThread;
    DBG_STATE PreviousState;

    st = STATUS_SUCCESS;

    //
    // Scan the user interface's app list looking for an
    // app whose State is not DbgIdle or DbgReplyPending
    //

    AppThread = DbgpLocateStateChangeApp(UserInterface,&PreviousState);

    if ( !AppThread  ) {
        return DBG_NO_STATE_CHANGE;
    }

    ApiMsg->u.WaitStateChange.NewState = PreviousState;
    ApiMsg->u.WaitStateChange.AppClientId = AppThread->AppClientId;

    switch ( PreviousState ) {

    case DbgCreateThreadStateChange :
        //
        // Open the thread and Dup a handle over to the user
        // interface.
        //

        st = DbgpCreateThread(
                UserInterface,
                AppThread,
                &ApiMsg->u.WaitStateChange.StateInfo.CreateThread
                );
        break;

    case DbgCreateProcessStateChange :

        //
        // Open the process, thread, and section, and Dup a handle
        // over to the user interface.
        //

        st = DbgpCreateProcess(
                UserInterface,
                AppThread,
                &ApiMsg->u.WaitStateChange.StateInfo.CreateProcessInfo
                );
        break;

    case DbgExitThreadStateChange :
        ApiMsg->u.WaitStateChange.StateInfo.ExitThread =
            AppThread->LastSsApiMsg.u.ExitThread;
        break;
    case DbgExitProcessStateChange :
        ApiMsg->u.WaitStateChange.StateInfo.ExitProcess =
            AppThread->LastSsApiMsg.u.ExitProcess;
        break;

    case DbgLoadDllStateChange :

        //
        // Dup File handle to the user interface
        //

        st = DbgpLoadDll(
                UserInterface,
                AppThread,
                &ApiMsg->u.WaitStateChange.StateInfo.LoadDll
                );
        break;

    case DbgUnloadDllStateChange :

        //
        // Dup section handle to the user interface
        //

        ApiMsg->u.WaitStateChange.StateInfo.UnloadDll =
            AppThread->LastSsApiMsg.u.UnloadDll;
        break;

    case DbgExceptionStateChange :
    case DbgBreakpointStateChange :
    case DbgSingleStepStateChange :
        ApiMsg->u.WaitStateChange.StateInfo.Exception =
            AppThread->LastSsApiMsg.u.Exception;
        break;

    default :
        st = STATUS_NOT_IMPLEMENTED;
        break;
    }

    return st;
}


NTSTATUS
DbgpCreateThread(
    IN PDBGP_USER_INTERFACE UserInterface,
    IN OUT PDBGP_APP_THREAD AppThread,
    OUT PDBGUI_CREATE_THREAD CreateThread
    )

/*++

Routine Description:

    This function is called during the processing of a WaitStateChange
    DbgUi API when the the state change for the App was
    DbgCreateThreadStateChange.

    This functions main purpose is to dup a handle to the thread into
    the thread's controlling user interface.

Arguments:

    UserInterface - Supplies the address of the thread's user interface.

    AppThread - Supplies the address of the application thread.

    CreateThread - Supplies the address of the create thread message that
        is being returned to the user interface.

Return Value:

    TBD

--*/

{
    NTSTATUS st;


    CreateThread->HandleToThread = NULL;
    CreateThread->NewThread = AppThread->LastSsApiMsg.u.CreateThread;

    //
    // If handle to thread was successfully opened,
    // then attempt to duplicate it into the user interface
    //

    if ( AppThread->HandleToThread ) {
        try {
            st = NtDuplicateObject(
                    NtCurrentProcess(),
                    AppThread->HandleToThread,
                    UserInterface->DebugUiProcess,
                    &CreateThread->HandleToThread,
                    DBGP_DUP_APP_THREAD_ACCESS,
                    0L,
                    DUPLICATE_CLOSE_SOURCE
                    );
            }
        except ( GetExceptionCode() == STATUS_INVALID_HANDLE ? EXCEPTION_EXECUTE_HANDLER : EXCEPTION_CONTINUE_SEARCH ) {
            st = STATUS_INVALID_HANDLE;
            }

        if (!NT_SUCCESS(st)){
            st = DBG_UNABLE_TO_PROVIDE_HANDLE;
            CreateThread->HandleToThread = NULL;
            AppThread->HandleToThread = NULL;
        } else {

            AppThread->HandleToThread = (HANDLE)((ULONG)CreateThread->HandleToThread | 1);
        }
    } else {
        st = DBG_UNABLE_TO_PROVIDE_HANDLE;
    }

    return st;
}

NTSTATUS
DbgpCreateProcess(
    IN PDBGP_USER_INTERFACE UserInterface,
    IN OUT PDBGP_APP_THREAD AppThread,
    OUT PDBGUI_CREATE_PROCESS CreateProcessInfo
    )

/*++

Routine Description:

    This function is called during the processing of a WaitStateChange
    DbgUi API when the the state change for the App was
    DbgCreateProcessStateChange.

    This functions main purpose is to dup a handle to the thread, its
    process, and the process's section into the thread's controlling
    user interface.

Arguments:

    UserInterface - Supplies the address of the thread's user interface.

    AppThread - Supplies the address of the application thread.

    CreateProcessInfo - Supplies the address of the create process message that
        is being returned to the user interface.

Return Value:

    TBD

--*/

{
    NTSTATUS st;
    NTSTATUS ReturnStatus;

    ReturnStatus = STATUS_SUCCESS;

    CreateProcessInfo->HandleToThread = NULL;
    CreateProcessInfo->HandleToProcess = NULL;

    CreateProcessInfo->NewProcess = AppThread->LastSsApiMsg.u.CreateProcessInfo.NewProcess;

    CreateProcessInfo->NewProcess.FileHandle = NULL;

    //
    // If handle to thread was successfully opened,
    // then attempt to duplicate it into the user interface
    //

    if ( AppThread->HandleToThread ) {
        try {
            st = NtDuplicateObject(
                    NtCurrentProcess(),
                    AppThread->HandleToThread,
                    UserInterface->DebugUiProcess,
                    &CreateProcessInfo->HandleToThread,
                    DBGP_DUP_APP_THREAD_ACCESS,
                    0L,
                    DUPLICATE_CLOSE_SOURCE
                    );
            }
        except ( GetExceptionCode() == STATUS_INVALID_HANDLE ? EXCEPTION_EXECUTE_HANDLER : EXCEPTION_CONTINUE_SEARCH ) {
            st = STATUS_INVALID_HANDLE;
            }

        if (!NT_SUCCESS(st)){
            ReturnStatus = DBG_UNABLE_TO_PROVIDE_HANDLE;
            CreateProcessInfo->HandleToThread = NULL;
            AppThread->HandleToThread = NULL;
        } else {
            AppThread->HandleToThread = (HANDLE)((ULONG)CreateProcessInfo->HandleToThread | 1);
        }
    } else {
        ReturnStatus = DBG_UNABLE_TO_PROVIDE_HANDLE;
    }

    //
    // If handle to process was successfully opened,
    // then attempt to duplicate it into the user interface
    //

    if ( AppThread->AppProcess->DbgSrvHandleToProcess ) {
        st = NtDuplicateObject(
                NtCurrentProcess(),
                AppThread->AppProcess->DbgSrvHandleToProcess,
                UserInterface->DebugUiProcess,
                &CreateProcessInfo->HandleToProcess,
                DBGP_DUP_APP_PROCESS_ACCESS,
                0L,
                0L
                );

        if (!NT_SUCCESS(st)){
            ReturnStatus = DBG_UNABLE_TO_PROVIDE_HANDLE;
            CreateProcessInfo->HandleToProcess = NULL;
            AppThread->AppProcess->HandleToProcess = NULL;
        } else {

            AppThread->AppProcess->HandleToProcess =
                CreateProcessInfo->HandleToProcess;

            if ( AppThread->LastSsApiMsg.u.CreateProcessInfo.NewProcess.FileHandle ) {

                st = NtDuplicateObject(
                        AppThread->AppProcess->DbgSrvHandleToProcess,
                        AppThread->LastSsApiMsg.u.CreateProcessInfo.NewProcess.FileHandle,
                        UserInterface->DebugUiProcess,
                        &CreateProcessInfo->NewProcess.FileHandle,
                        DBGP_DUP_APP_FILE_ACCESS,
                        0L,
                        0L
                        );

                if (!NT_SUCCESS(st)){
                    ReturnStatus = DBG_UNABLE_TO_PROVIDE_HANDLE;
                    CreateProcessInfo->NewProcess.FileHandle = NULL;
                }
            }

        }
    } else {
        ReturnStatus = DBG_UNABLE_TO_PROVIDE_HANDLE;
    }

    return ReturnStatus;
}


NTSTATUS
DbgpLoadDll(
    IN PDBGP_USER_INTERFACE UserInterface,
    IN OUT PDBGP_APP_THREAD AppThread,
    OUT PDBGKM_LOAD_DLL LoadDll
    )

/*++

Routine Description:

    This function is called during the processing of a WaitStateChange
    DbgUi API when the the state change for the App was
    DbgLoadDllStateChange.

    This functions main purpose is to dup a handle to file into the
    thread's controlling user interface.

Arguments:

    UserInterface - Supplies the address of the thread's user interface.

    AppThread - Supplies the address of the application thread.

    LoadDll - Supplies the address of the load dll message that
        is being returned to the user interface.

Return Value:

    TBD

--*/

{
    NTSTATUS st;
    NTSTATUS ReturnStatus;

    ReturnStatus = STATUS_SUCCESS;


    *LoadDll = AppThread->LastSsApiMsg.u.LoadDll;

    st = NtDuplicateObject(
            AppThread->AppProcess->DbgSrvHandleToProcess,
            AppThread->LastSsApiMsg.u.LoadDll.FileHandle,
            UserInterface->DebugUiProcess,
            &LoadDll->FileHandle,
            DBGP_DUP_APP_FILE_ACCESS,
            0L,
            0L
            );

    if (!NT_SUCCESS(st)){
        ReturnStatus = DBG_UNABLE_TO_PROVIDE_HANDLE;
        LoadDll->FileHandle = NULL;
    }

    return ReturnStatus;
}

NTSTATUS
DbgpUiContinue (
    IN PDBGP_USER_INTERFACE UserInterface,
    IN OUT PDBGUI_APIMSG ApiMsg
    )

/*++

Routine Description:

    This function is called when a user interface has received
    a state change message, and wants to continue one of its
    application threads. Continuing translates into a reply
    to an outstanding DbgSs API.

Arguments:

    UserInterface - Supplies the address of the user interface making the call

    ApiMsg - Supplies the DbgUi API message that contains the information
        needed to complete this call.

Return Value:

    STATUS_SUCCESS - Successful call to DbgUiContinue

    STATUS_INVALID_CID - An invalid ClientId was specified for the
        AppClientId, or the specified Application was not waiting
        for a continue.

    STATUS_INVALID_PARAMETER - An invalid continue status was specified.

--*/
{

    NTSTATUS st;
    PDBGP_APP_THREAD AppThread;
    PDBGUI_CONTINUE args;
    DBGSRV_APIMSG ContinueMsg;
    PDBGP_SUBSYSTEM Subsystem;

    args = &ApiMsg->u.Continue;

    //
    // Make sure that Continue status is valid
    //

    switch (args->ContinueStatus) {

    case DBG_EXCEPTION_HANDLED :
    case DBG_EXCEPTION_NOT_HANDLED :
    case DBG_TERMINATE_THREAD :
    case DBG_TERMINATE_PROCESS :
    case DBG_CONTINUE :
        break;
    default:
        return STATUS_INVALID_PARAMETER;
    }

    RtlEnterCriticalSection(&DbgpHashTableLock);


    AppThread = DbgpIsAppInHashTable(&args->AppClientId);

    if ( !AppThread ) {
        RtlLeaveCriticalSection(&DbgpHashTableLock);
        return STATUS_INVALID_CID;
    }

    Subsystem = AppThread->Subsystem;

    //
    // Now determine what type of continue this is. Depending on
    // the threads continue state certain things need to happen.
    // If we are continuing an exit thread or exit process, data
    // structures need to be torn down, and handles in the user
    // interface need to be closed.
    //

    RtlEnterCriticalSection(&UserInterface->UserInterfaceLock);

    //
    // Disallow continues on Apps that have not been picked up
    // yet.
    //

    if ( AppThread->CurrentState != DbgReplyPending ) {
        RtlLeaveCriticalSection(&UserInterface->UserInterfaceLock);
        RtlLeaveCriticalSection(&DbgpHashTableLock);
        return STATUS_INVALID_CID;
    }

    AppThread->CurrentState = DbgIdle;

    DBGSRV_FORMAT_API_MSG(ContinueMsg,DbgSrvContinueApi,0L,AppThread->LastSsApiMsg.ContinueKey);
    ContinueMsg.ReturnedStatus = args->ContinueStatus;

    switch (AppThread->ContinueState) {

    //
    // These involve data structure tear down
    //

    case DbgExitThreadStateChange :

        //
        // Try to close the handle to the thread that
        // the user interface has.
        //

        if ( AppThread->HandleToThread ) {
            try {
                NtDuplicateObject(
                    AppThread->UserInterface->DebugUiProcess,
                    AppThread->HandleToThread,
                    NULL,
                    NULL,
                    0L,
                    0L,
                    DUPLICATE_CLOSE_SOURCE
                    );
                }
            except ( GetExceptionCode() == STATUS_INVALID_HANDLE ? EXCEPTION_EXECUTE_HANDLER : EXCEPTION_CONTINUE_SEARCH ) {
                ;
                }
        }
        AppThread->HandleToThread = NULL;

        //
        // delink the thread from its process, and deallocate it.
        //

        RemoveEntryList(&AppThread->AppLinks);

        //
        // Remove the thread from the thread hash table, and
        // deallocate the thread
        //

        RemoveEntryList(&AppThread->HashTableLinks);

        RtlFreeHeap(RtlProcessHeap(), 0,AppThread);

        break;

    case DbgExitProcessStateChange :
        //
        // Try to close the handle to the thread that
        // the user interface has.
        //

        if ( AppThread->HandleToThread ) {
            try {
                st = NtDuplicateObject(
                        AppThread->UserInterface->DebugUiProcess,
                        AppThread->HandleToThread,
                        NULL,
                        NULL,
                        0L,
                        0L,
                        DUPLICATE_CLOSE_SOURCE
                        );
                }
            except ( GetExceptionCode() == STATUS_INVALID_HANDLE ? EXCEPTION_EXECUTE_HANDLER : EXCEPTION_CONTINUE_SEARCH ) {
                ;
                }
        }
        AppThread->HandleToThread = NULL;

        //
        // Try to close the handle to the process
        // that we gave to the user interface
        //

        if ( AppThread->AppProcess->DbgSrvHandleToProcess ) {
            try {
                st = NtDuplicateObject(
                        AppThread->UserInterface->DebugUiProcess,
                        AppThread->AppProcess->HandleToProcess,
                        NULL,
                        NULL,
                        0L,
                        0L,
                        DUPLICATE_CLOSE_SOURCE
                        );
                }
            except ( GetExceptionCode() == STATUS_INVALID_HANDLE ? EXCEPTION_EXECUTE_HANDLER : EXCEPTION_CONTINUE_SEARCH ) {
                ;
                }
            NtClose(AppThread->AppProcess->DbgSrvHandleToProcess);
        }

        //
        // Remove the thread from the thread hash table,
        // the process from the process hash table, and
        // the process from its user interface.
        //

        RemoveEntryList(&AppThread->HashTableLinks);
        RemoveEntryList(&AppThread->AppProcess->HashTableLinks);
        RemoveEntryList(&AppThread->AppProcess->AppLinks);

        RtlFreeHeap(RtlProcessHeap(), 0,AppThread->AppProcess);
        RtlFreeHeap(RtlProcessHeap(), 0,AppThread);

        break;

    //
    // No work needed
    //

    case DbgCreateThreadStateChange :
    case DbgCreateProcessStateChange :
    case DbgExceptionStateChange :
    case DbgBreakpointStateChange :
    case DbgSingleStepStateChange :
    case DbgLoadDllStateChange :
    case DbgUnloadDllStateChange :
        break;

    default:
        ASSERT(FALSE);
    }

    RtlLeaveCriticalSection(&UserInterface->UserInterfaceLock);
    RtlLeaveCriticalSection(&DbgpHashTableLock);

    st = NtRequestPort(Subsystem->CommunicationPort, (PPORT_MESSAGE)&ContinueMsg);
    ASSERT(NT_SUCCESS(st));

    return st;
}