Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
2288 clevermous 1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
;;                                                              ;;
2455 mario79 3
;; Copyright (C) KolibriOS team 2004-2011. All rights reserved. ;;
2288 clevermous 4
;; Distributed under terms of the GNU General Public License    ;;
5
;;                                                              ;;
6
;;                                                              ;;
7
;;  MenuetOS process management, protected ring3                ;;
8
;;                                                              ;;
9
;;  Distributed under GPL. See file COPYING for details.        ;;
10
;;  Copyright 2003 Ville Turjanmaa                              ;;
11
;;                                                              ;;
12
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
13
 
14
$Revision: 3615 $
15
 
16
align 4 ;3A08
17
build_interrupt_table:
18
        mov     edi, idts
19
        mov     esi, sys_int
20
        mov     ecx, 0x40
21
        mov     eax, (10001110b shl 24) + os_code
22
  @@:
23
        movsw   ;low word of code-entry
24
        stosd   ;interrupt gate type : os_code selector
25
        movsw   ;high word of code-entry
26
        loop    @b
27
        movsd   ;copy low  dword of trap gate for int 0x40
28
        movsd   ;copy high dword of trap gate for int 0x40
29
        lidt    [esi]
30
        ret
31
 
32
iglobal
33
  align 4
34
  sys_int:
35
    ;exception handlers addresses (for interrupt gate construction)
36
        dd      e0,e1,e2,e3,e4,e5,e6,except_7 ; SEE: core/fpu.inc
37
        dd      e8,e9,e10,e11,e12,e13,page_fault_exc,e15
38
        dd      e16, e17,e18, e19
39
        times   12 dd unknown_interrupt ;int_20..int_31
40
 
41
    ;interrupt handlers addresses (for interrupt gate construction)
42
        ; 0x20 .. 0x2F - IRQ handlers
43
        dd      irq0, irq_serv.irq_1, irq_serv.irq_2
44
        dd      irq_serv.irq_3, irq_serv.irq_4
45
        dd      irq_serv.irq_5,  irq_serv.irq_6,  irq_serv.irq_7
46
        dd      irq_serv.irq_8,  irq_serv.irq_9,  irq_serv.irq_10
47
        dd      irq_serv.irq_11, irq_serv.irq_12, irqD, irq_serv.irq_14, irq_serv.irq_15
48
        dd irq_serv.irq_16
49
        dd irq_serv.irq_17
50
        dd irq_serv.irq_18
51
        dd irq_serv.irq_19
52
        dd irq_serv.irq_20
53
        dd irq_serv.irq_21
54
        dd irq_serv.irq_22
55
        dd irq_serv.irq_23
56
 
57
    times 32 - IRQ_RESERVED dd unknown_interrupt
58
    ;int_0x40 gate trap (for directly copied)
59
        dw      i40 and 0xFFFF, os_code, 11101111b shl 8, i40 shr 16
60
 
61
  idtreg: ; data for LIDT instruction (!!! must be immediately below sys_int data)
62
        dw      2*($-sys_int-4)-1
63
        dd      idts ;0x8000B100
3539 clevermous 64
        dw      0    ;просто выравнивание
2288 clevermous 65
 
66
  msg_fault_sel dd  msg_exc_8,msg_exc_u,msg_exc_a,msg_exc_b
67
                dd  msg_exc_c,msg_exc_d,msg_exc_e
68
 
69
  msg_exc_8     db "Double fault", 0
70
  msg_exc_u     db "Undefined Exception", 0
71
  msg_exc_a     db "Invalid TSS", 0
72
  msg_exc_b     db "Segment not present", 0
73
  msg_exc_c     db "Stack fault", 0
74
  msg_exc_d     db "General protection fault", 0
75
  msg_exc_e     db "Page fault", 0
76
 
3342 yogev_ezra 77
  if lang eq sp
3344 yogev_ezra 78
    include 'core/sys32-sp.inc'
3342 yogev_ezra 79
  else
80
    msg_sel_ker   db "kernel", 0
81
    msg_sel_app   db "application", 0
3309 esevece 82
  end if
2288 clevermous 83
 
84
endg
85
 
86
macro save_ring3_context {
87
        pushad
88
}
89
macro restore_ring3_context {
90
        popad
91
}
92
macro exc_wo_code [num] {
93
  e#num :
94
        save_ring3_context
95
        mov     bl, num
96
        jmp     exc_c
97
} exc_wo_code   0,1,2,3,4,5,6,15,16,19
98
 
99
macro exc_w_code [num] {
100
  e#num :
101
        add     esp, 4
102
        save_ring3_context
103
        mov     bl, num
104
        jmp     exc_c
105
} exc_w_code    8,9,10,11,12,13,17,18
106
 
107
 
108
uglobal
109
  pf_err_code   dd ?
110
endg
111
 
3539 clevermous 112
page_fault_exc:                 ; дуракоусточивость: селекторы испорчены...
113
        pop     [ss:pf_err_code]; действительно до следующего #PF
2288 clevermous 114
        save_ring3_context
115
        mov     bl, 14
116
 
3539 clevermous 117
exc_c:                          ; исключения (все, кроме 7-го - #NM)
118
; Фрэйм стека при исключении/прерывании из 3-го кольца + pushad (т.е., именно здесь)
2288 clevermous 119
  reg_ss        equ esp+0x30
120
  reg_esp3      equ esp+0x2C
121
  reg_eflags    equ esp+0x28
122
  reg_cs3       equ esp+0x24
123
  reg_eip       equ esp+0x20
3539 clevermous 124
 ; это фрэйм от pushad
2288 clevermous 125
  reg_eax       equ esp+0x1C
126
  reg_ecx       equ esp+0x18
127
  reg_edx       equ esp+0x14
128
  reg_ebx       equ esp+0x10
129
  reg_esp0      equ esp+0x0C
130
  reg_ebp       equ esp+0x08
131
  reg_esi       equ esp+0x04
132
  reg_edi       equ esp+0x00
133
 
3539 clevermous 134
        mov     ax, app_data        ;исключение
135
        mov     ds, ax                  ;загрузим правильные значения
136
        mov     es, ax                  ;в регистры
137
        cld                     ; и приводим DF к стандарту
2288 clevermous 138
        movzx   ebx, bl
139
; redirect to V86 manager? (EFLAGS & 0x20000) != 0?
140
        test    byte[reg_eflags+2], 2
141
        jnz     v86_exc_c
142
        cmp     bl, 14          ; #PF
143
        jne     @f
144
        call    page_fault_handler ; SEE: core/memory.inc
145
  @@:
146
        mov     esi, [current_slot]
147
        btr     [esi+APPDATA.except_mask], ebx
148
        jnc     @f
149
        mov     eax, [esi+APPDATA.exc_handler]
150
        test    eax, eax
151
        jnz     IRetToUserHook
152
  @@:
153
        cli
154
        mov     eax, [esi+APPDATA.debugger_slot]
155
        test    eax, eax
156
        jnz     .debug
157
        sti
158
; not debuggee => say error and terminate
159
        call    show_error_parameters ;; only ONE using, inline ???
160
       ;mov     edx, [TASK_BASE]
161
        mov     [edx + TASKDATA.state], byte 4 ; terminate
3534 clevermous 162
        call    wakeup_osloop
3615 clevermous 163
        call    change_task
164
; If we're here, then the main OS thread has crashed before initializing IDLE thread.
165
; Or they both have crashed. Anyway, things are hopelessly broken.
166
        hlt
167
        jmp     $-1
2288 clevermous 168
.debug:
169
; we are debugged process, notify debugger and suspend ourself
170
; eax=debugger PID
171
        mov     ecx, 1          ; debug_message code=other_exception
172
        cmp     bl, 1           ; #DB
173
        jne     .notify         ; notify debugger and suspend ourself
174
        mov     ebx, dr6        ; debug_message data=DR6_image
175
        xor     edx, edx
176
        mov     dr6, edx
177
        mov     edx, dr7
178
        mov     cl, not 8
179
  .l1:
180
        shl     dl, 2
181
        jc      @f
182
        and     bl, cl
183
  @@:
184
        sar     cl, 1
185
        jc      .l1
186
        mov     cl, 3           ; debug_message code=debug_exception
187
.notify:
188
        push    ebx             ; debug_message data
189
        mov     ebx, [TASK_BASE]
190
        push    [ebx+TASKDATA.pid] ; PID
191
        push    ecx             ; debug_message code ((here: ecx==1/3))
192
        mov     cl, 12          ; debug_message size
193
        call    debugger_notify ;; only ONE using, inline ??? SEE: core/debug.inc
194
        add     esp, 12
195
        mov     edx, [TASK_BASE]
196
        mov     byte [edx+TASKDATA.state], 1 ; suspended
197
        call    change_task     ; SEE: core/shed.inc
198
        restore_ring3_context
199
        iretd
200
 
201
IRetToUserHook:
202
        xchg    eax, [reg_eip]
203
        sub     dword[reg_esp3], 8
204
        mov     edi, [reg_esp3]
205
        stosd
206
        mov     [edi], ebx
207
        restore_ring3_context
208
; simply return control to interrupted process
209
unknown_interrupt:
210
        iretd
211
 
212
;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
213
; bl - error vector
214
show_error_parameters:
215
        cmp     bl, 0x06
216
        jnz     .no_ud
217
        push    ebx
218
        mov     ebx, ud_user_message
219
        mov     ebp, notifyapp
220
        call    fs_execute_from_sysdir_param
221
        pop     ebx
222
.no_ud:
223
        mov     edx, [TASK_BASE];not scratched below
3309 esevece 224
        if lang eq sp
225
        DEBUGF  1, "K : Proceso - terminado forzado PID: %x [%s]\n", [edx+TASKDATA.pid], [current_slot]
226
        else
3294 clevermous 227
        DEBUGF  1, "K : Process - forced terminate PID: %x [%s]\n", [edx+TASKDATA.pid], [current_slot]
3309 esevece 228
        end if
2288 clevermous 229
        cmp     bl, 0x08
230
        jb      .l0
231
        cmp     bl, 0x0e
232
        jbe     .l1
233
  .l0:
234
        mov     bl, 0x09
235
  .l1:
236
        mov     eax, [msg_fault_sel+ebx*4 - 0x08*4]
237
        DEBUGF  1, "K : %s\n", eax
238
        mov     eax, [reg_cs3+4]
239
        mov     edi, msg_sel_app
240
        mov     ebx, [reg_esp3+4]
241
        cmp     eax, app_code
242
        je      @f
243
        mov     edi, msg_sel_ker
244
        mov     ebx, [reg_esp0+4]
245
    @@:
246
        DEBUGF  1, "K : EAX : %x EBX : %x ECX : %x\n", [reg_eax+4], [reg_ebx+4], [reg_ecx+4]
247
        DEBUGF  1, "K : EDX : %x ESI : %x EDI : %x\n", [reg_edx+4], [reg_esi+4], [reg_edi+4]
248
        DEBUGF  1, "K : EBP : %x EIP : %x ESP : %x\n", [reg_ebp+4], [reg_eip+4], ebx
249
        DEBUGF  1, "K : Flags : %x CS : %x (%s)\n", [reg_eflags+4], eax, edi
250
        ret
251
;-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
252
 
253
  restore  reg_ss
254
  restore  reg_esp3
255
  restore  reg_eflags
256
  restore  reg_cs
257
  restore  reg_eip
258
  restore  reg_eax
259
  restore  reg_ecx
260
  restore  reg_edx
261
  restore  reg_ebx
262
  restore  reg_esp0
263
  restore  reg_ebp
264
  restore  reg_esi
265
  restore  reg_edi
266
 
267
 
268
align 4
3534 clevermous 269
lock_application_table:
270
        push    eax ecx edx
271
        mov     ecx, application_table_mutex
272
        call    mutex_lock
2288 clevermous 273
 
274
        mov     eax, [CURRENT_TASK]
275
        shl     eax, 5
276
        add     eax, CURRENT_TASK+TASKDATA.pid
277
        mov     eax, [eax]
278
 
3534 clevermous 279
        mov     [application_table_owner], eax
2288 clevermous 280
 
3534 clevermous 281
        pop     edx ecx eax
2288 clevermous 282
 
283
        ret
284
 
285
align 4
3534 clevermous 286
unlock_application_table:
287
        push    eax ecx edx
2288 clevermous 288
 
3534 clevermous 289
        mov     [application_table_owner], 0
290
        mov     ecx, application_table_mutex
291
        call    mutex_unlock
2288 clevermous 292
 
3534 clevermous 293
        pop     edx ecx eax
2288 clevermous 294
 
295
        ret
296
 
3539 clevermous 297
;  * eax = 64 - номер функции
298
;  * ebx = 1 - единственная подфункция
299
;  * ecx = новый размер памяти
300
;Возвращаемое значение:
301
;  * eax = 0 - успешно
302
;  * eax = 1 - недостаточно памяти
2288 clevermous 303
 
304
align 4
305
sys_resize_app_memory:
306
        ; ebx = 1 - resize
307
        ; ecx = new amount of memory
308
 
309
;        cmp    eax,1
310
        dec     ebx
311
        jnz     .no_application_mem_resize
312
        stdcall new_mem_resize, ecx
313
        mov     [esp+32], eax
314
.no_application_mem_resize:
315
        ret
316
 
317
iglobal
318
;  process_terminating  db 'K : Process - terminating',13,10,0
319
;  process_terminated   db 'K : Process - done',13,10,0
320
  msg_obj_destroy       db 'K : destroy app object',13,10,0
321
endg
322
 
323
; param
324
;  esi= slot
325
 
326
align 4
327
terminate: ; terminate application
328
 
329
           .slot equ esp   ;locals
330
 
331
        push    esi        ;save .slot
332
 
333
        shl     esi, 8
334
        cmp     [SLOT_BASE+esi+APPDATA.dir_table], 0
335
        jne     @F
336
        pop     esi
337
        shl     esi, 5
338
        mov     [CURRENT_TASK+esi+TASKDATA.state], 9
339
        ret
340
@@:
3534 clevermous 341
        lea     edx, [SLOT_BASE+esi]
342
        call    scheduler_remove_thread
2288 clevermous 343
           ;mov    esi,process_terminating
344
           ;call   sys_msg_board_str
3534 clevermous 345
        call    lock_application_table
2288 clevermous 346
 
347
; if the process is in V86 mode...
348
        mov     eax, [.slot]
349
        shl     eax, 8
350
        mov     esi, [eax+SLOT_BASE+APPDATA.pl0_stack]
351
        add     esi, RING0_STACK_SIZE
352
        cmp     [eax+SLOT_BASE+APPDATA.saved_esp0], esi
353
        jz      .nov86
354
; ...it has page directory for V86 mode
355
        mov     esi, [eax+SLOT_BASE+APPDATA.saved_esp0]
356
        mov     ecx, [esi+4]
357
        mov     [eax+SLOT_BASE+APPDATA.dir_table], ecx
358
; ...and I/O permission map for V86 mode
359
        mov     ecx, [esi+12]
360
        mov     [eax+SLOT_BASE+APPDATA.io_map], ecx
361
        mov     ecx, [esi+8]
362
        mov     [eax+SLOT_BASE+APPDATA.io_map+4], ecx
363
.nov86:
364
 
365
        mov     esi, [.slot]
366
        shl     esi, 8
367
        add     esi, SLOT_BASE+APP_OBJ_OFFSET
368
@@:
369
        mov     eax, [esi+APPOBJ.fd]
370
        test    eax, eax
371
        jz      @F
372
 
373
        cmp     eax, esi
374
        je      @F
375
 
376
        push    esi
377
        call    [eax+APPOBJ.destroy]
378
           DEBUGF 1,"%s",msg_obj_destroy
379
        pop     esi
380
        jmp     @B
381
@@:
382
 
383
        mov     eax, [.slot]
384
        shl     eax, 8
385
        stdcall destroy_app_space, [SLOT_BASE+eax+APPDATA.dir_table], [SLOT_BASE+eax+APPDATA.dlls_list_ptr]
386
 
387
        mov     esi, [.slot]
3534 clevermous 388
        cmp     [fpu_owner], esi ; if user fpu last -> fpu user = 2
2288 clevermous 389
        jne     @F
390
 
3534 clevermous 391
        mov     [fpu_owner], 2
392
        mov     eax, [256*2+SLOT_BASE+APPDATA.fpu_state]
2288 clevermous 393
        clts
394
        bt      [cpu_caps], CAPS_SSE
395
        jnc     .no_SSE
396
        fxrstor [eax]
397
        jmp     @F
398
.no_SSE:
399
        fnclex
400
        frstor  [eax]
401
@@:
402
 
403
        mov     [KEY_COUNT], byte 0    ; empty keyboard buffer
404
        mov     [BTN_COUNT], byte 0    ; empty button buffer
405
 
406
 
407
; remove defined hotkeys
408
        mov     eax, hotkey_list
409
.loop:
410
        cmp     [eax+8], esi
411
        jnz     .cont
412
        mov     ecx, [eax]
413
        jecxz   @f
414
        push    dword [eax+12]
415
        pop     dword [ecx+12]
416
@@:
417
        mov     ecx, [eax+12]
418
        push    dword [eax]
419
        pop     dword [ecx]
420
        xor     ecx, ecx
421
        mov     [eax], ecx
422
        mov     [eax+4], ecx
423
        mov     [eax+8], ecx
424
        mov     [eax+12], ecx
425
.cont:
426
        add     eax, 16
427
        cmp     eax, hotkey_list+256*16
428
        jb      .loop
2709 mario79 429
; get process PID
430
        mov     eax, esi
431
        shl     eax, 5
432
        mov     eax, [eax+CURRENT_TASK+TASKDATA.pid]
433
; compare current lock input with process PID
434
        cmp     eax, [PID_lock_input]
435
        jne     @f
436
 
437
        xor     eax, eax
438
        mov     [PID_lock_input], eax
439
@@:
2288 clevermous 440
; remove hotkeys in buffer
441
        mov     eax, hotkey_buffer
442
.loop2:
443
        cmp     [eax], esi
444
        jnz     .cont2
445
        and     dword [eax+4], 0
446
        and     dword [eax], 0
447
.cont2:
448
        add     eax, 8
449
        cmp     eax, hotkey_buffer+120*8
450
        jb      .loop2
451
 
452
        mov     ecx, esi          ; remove buttons
453
  bnewba2:
454
        mov     edi, [BTN_ADDR]
455
        mov     eax, edi
456
        cld
457
        movzx   ebx, word [edi]
458
        inc     bx
459
  bnewba:
460
        dec     bx
461
        jz      bnmba
462
        add     eax, 0x10
463
        cmp     cx, [eax]
464
        jnz     bnewba
465
        pusha
466
        mov     ecx, ebx
467
        inc     ecx
468
        shl     ecx, 4
469
        mov     ebx, eax
470
        add     eax, 0x10
471
        call    memmove
472
        dec     dword [edi]
473
        popa
474
        jmp     bnewba2
475
  bnmba:
476
 
477
        pusha   ; save window coordinates for window restoring
478
        cld
479
        shl     esi, 5
480
        add     esi, window_data
481
        mov     eax, [esi+WDATA.box.left]
482
        mov     [draw_limits.left], eax
483
        add     eax, [esi+WDATA.box.width]
484
        mov     [draw_limits.right], eax
485
        mov     eax, [esi+WDATA.box.top]
486
        mov     [draw_limits.top], eax
487
        add     eax, [esi+WDATA.box.height]
488
        mov     [draw_limits.bottom], eax
489
 
490
        xor     eax, eax
491
        mov     [esi+WDATA.box.left], eax
492
        mov     [esi+WDATA.box.width], eax
493
        mov     [esi+WDATA.box.top], eax
494
        mov     [esi+WDATA.box.height], eax
495
        mov     [esi+WDATA.cl_workarea], eax
496
        mov     [esi+WDATA.cl_titlebar], eax
497
        mov     [esi+WDATA.cl_frames], eax
498
        mov     dword [esi+WDATA.reserved], eax; clear all flags: wstate, redraw, wdrawn
499
        lea     edi, [esi-window_data+draw_data]
500
        mov     ecx, 32/4
501
        rep stosd
502
        popa
503
 
504
; debuggee test
505
        pushad
506
        mov     edi, esi
507
        shl     edi, 5
508
        mov     eax, [SLOT_BASE+edi*8+APPDATA.debugger_slot]
509
        test    eax, eax
510
        jz      .nodebug
3598 clevermous 511
        movi    ecx, 8
2288 clevermous 512
        push    dword [CURRENT_TASK+edi+TASKDATA.pid]; PID
513
        push    2
514
        call    debugger_notify
515
        pop     ecx
516
        pop     ecx
517
.nodebug:
518
        popad
519
 
520
        mov     ebx, [.slot]
521
        shl     ebx, 8
522
        push    ebx
523
        mov     ebx, [SLOT_BASE+ebx+APPDATA.pl0_stack]
524
 
525
        stdcall kernel_free, ebx
526
 
527
        pop     ebx
528
        mov     ebx, [SLOT_BASE+ebx+APPDATA.cur_dir]
529
        stdcall kernel_free, ebx
530
 
531
        mov     edi, [.slot]
532
        shl     edi, 8
533
        add     edi, SLOT_BASE
534
 
535
        mov     eax, [edi+APPDATA.io_map]
536
        cmp     eax, [SLOT_BASE+256+APPDATA.io_map]
537
        je      @F
538
        call    free_page
539
@@:
540
        mov     eax, [edi+APPDATA.io_map+4]
541
        cmp     eax, [SLOT_BASE+256+APPDATA.io_map+4]
542
        je      @F
543
        call    free_page
544
@@:
545
        mov     eax, 0x20202020
546
        stosd
547
        stosd
548
        stosd
549
        mov     ecx, 244/4
550
        xor     eax, eax
551
        rep stosd
552
 
553
  ; activate window
554
        movzx   eax, word [WIN_STACK + esi*2]
555
        cmp     eax, [TASK_COUNT]
556
        jne     .dont_activate
557
        pushad
558
 .check_next_window:
559
        dec     eax
560
        cmp     eax, 1
561
        jbe     .nothing_to_activate
562
        lea     esi, [WIN_POS+eax*2]
563
        movzx   edi, word [esi]              ; edi = process
564
        shl     edi, 5
565
        cmp     [CURRENT_TASK + edi + TASKDATA.state], byte 9 ; skip dead slots
566
        je      .check_next_window
567
        add     edi, window_data
568
; \begin{diamond}[19.09.2006]
569
; skip minimized windows
570
        test    [edi + WDATA.fl_wstate], WSTATE_MINIMIZED
571
        jnz     .check_next_window
572
; \end{diamond}
573
        call    waredraw
574
 .nothing_to_activate:
575
        popad
576
 .dont_activate:
577
 
578
        push    esi     ; remove hd1 & cd & flp reservation
579
        shl     esi, 5
580
        mov     esi, [esi+CURRENT_TASK+TASKDATA.pid]
581
        cmp     [hd1_status], esi
582
        jnz     @f
583
        call    free_hd_channel
584
        and     [hd1_status], 0
585
@@:
586
        cmp     [cd_status], esi
587
        jnz     @f
588
        call    free_cd_channel
589
        and     [cd_status], 0
590
@@:
591
        cmp     [flp_status], esi
592
        jnz     @f
593
        and     [flp_status], 0
594
@@:
595
        pop     esi
596
        cmp     [bgrlockpid], esi
597
        jnz     @f
598
        and     [bgrlockpid], 0
599
        and     [bgrlock], 0
600
@@:
601
 
602
        pusha                 ; remove all port reservations
603
        mov     edx, esi
604
        shl     edx, 5
605
        add     edx, CURRENT_TASK
606
        mov     edx, [edx+TASKDATA.pid]
607
 
608
  rmpr0:
609
 
610
        mov     esi, [RESERVED_PORTS]
611
 
612
        test    esi, esi
613
        jz      rmpr9
614
 
615
  rmpr3:
616
 
617
        mov     edi, esi
618
        shl     edi, 4
619
        add     edi, RESERVED_PORTS
620
 
621
        cmp     edx, [edi]
622
        je      rmpr4
623
 
624
        dec     esi
625
        jnz     rmpr3
626
 
627
        jmp     rmpr9
628
 
629
  rmpr4:
630
 
631
        mov     ecx, 256
632
        sub     ecx, esi
633
        shl     ecx, 4
634
 
635
        mov     esi, edi
636
        add     esi, 16
637
        cld
638
        rep movsb
639
 
640
        dec     dword [RESERVED_PORTS]
641
 
642
        jmp     rmpr0
643
 
644
  rmpr9:
645
 
646
        popa
647
        mov     edi, esi ; do not run this process slot
648
        shl     edi, 5
649
        mov     [edi+CURRENT_TASK + TASKDATA.state], byte 9
650
; debugger test - terminate all debuggees
651
        mov     eax, 2
652
        mov     ecx, SLOT_BASE+2*0x100+APPDATA.debugger_slot
653
.xd0:
654
        cmp     eax, [TASK_COUNT]
655
        ja      .xd1
656
        cmp     dword [ecx], esi
657
        jnz     @f
658
        and     dword [ecx], 0
659
        pushad
660
        xchg    eax, ecx
661
        mov     ebx, 2
662
        call    sys_system
663
        popad
664
@@:
665
        inc     eax
666
        add     ecx, 0x100
667
        jmp     .xd0
668
.xd1:
669
;    call  systest
670
        sti     ; .. and life goes on
671
 
672
        mov     eax, [draw_limits.left]
673
        mov     ebx, [draw_limits.top]
674
        mov     ecx, [draw_limits.right]
675
        mov     edx, [draw_limits.bottom]
676
        call    calculatescreen
677
        xor     eax, eax
678
        xor     esi, esi
679
        call    redrawscreen
680
 
3534 clevermous 681
        call    unlock_application_table
2288 clevermous 682
    ;mov   esi,process_terminated
683
    ;call  sys_msg_board_str
684
        add     esp, 4
685
        ret
686
restore .slot
687
 
2642 mario79 688
;build_scheduler:
689
;        mov     esi, boot_sched_1
690
;        call    boot_log
691
;        call   build_process_gdt_tss_pointer
2288 clevermous 692
 
2642 mario79 693
;        mov    esi,boot_sched_2
694
;        call   boot_log
695
;        ret
3296 clevermous 696
 
697
; Three following procedures are used to guarantee that
698
; some part of kernel code will not be terminated from outside
699
; while it is running.
700
; Note: they do not protect a thread from terminating due to errors inside
701
; the thread; accessing a nonexisting memory would still terminate it.
702
 
703
; First two procedures must be used in pair by thread-to-be-protected
704
; to signal the beginning and the end of an important part.
705
; It is OK to have nested areas.
706
 
707
; The last procedure must be used by outside wanna-be-terminators;
708
; if it is safe to terminate the given thread immediately, it returns eax=1;
709
; otherwise, it returns eax=0 and notifies the target thread that it should
710
; terminate itself when leaving a critical area (the last critical area if
711
; they are nested).
712
 
713
; Implementation. Those procedures use one dword in APPDATA for the thread,
714
; APPDATA.terminate_protection.
715
; * The upper bit is 1 during normal operations and 0 when terminate is requested.
716
; * Other bits form a number = depth of critical regions,
717
;   plus 1 if the upper bit is 1.
718
; * When this dword goes to zero, the thread should be destructed,
719
;   and the procedure in which it happened becomes responsible for destruction.
720
 
721
; Enter critical area. Called by thread which wants to be protected.
722
proc protect_from_terminate
723
        mov     edx, [current_slot]
724
; Atomically increment depth of critical areas and get the old value.
725
        mov     eax, 1
726
        lock xadd [edx+APPDATA.terminate_protection], eax
727
; If the old value was zero, somebody has started to terminate us,
728
; so we are destructing and cannot do anything protected.
729
; Otherwise, return to the caller.
730
        test    eax, eax
731
        jz      @f
732
        ret
733
@@:
734
; Wait for somebody to finish us.
735
        call    change_task
736
        jmp     @b
737
endp
738
 
739
; Leave critical area. Called by thread which wants to be protected.
740
proc unprotect_from_terminate
741
        mov     edx, [current_slot]
742
; Atomically decrement depth of critical areas.
743
        lock dec [edx+APPDATA.terminate_protection]
744
; If the result of decrement is zero, somebody has requested termination,
745
; but at that moment we were inside a critical area; terminate now.
746
        jz      sys_end
747
; Otherwise, return to the caller.
748
        ret
749
endp
750
 
751
; Request termination of thread identified by edx = SLOT_BASE + slot*256.
752
; Called by anyone.
753
proc request_terminate
754
        xor     eax, eax        ; set return value
755
; Atomically clear the upper bit. If it was already zero, then
756
; somebody has requested termination before us, so just exit.
757
        lock btr [edx+APPDATA.terminate_protection], 31
758
        jnc     .unsafe
759
; Atomically decrement depth of critical areas.
760
        lock dec [edx+APPDATA.terminate_protection]
761
; If the result of decrement is nonzero, the target thread is inside a
762
; critical area; leave termination to leaving that area.
763
        jnz     .unsafe
764
; Otherwise, it is safe to kill the target now and the caller is responsible
765
; for this. Return eax=1.
766
        inc     eax
767
.unsafe:
768
        ret
769
endp
770