Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
1 ha 1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
;;                                                               ;;
3
;;  MenuetOS process management, protected ring3                 ;;
4
;;                                                               ;;
5
;;  Distributed under GPL. See file COPYING for details.         ;;
6
;;  Copyright 2003 Ville Turjanmaa                               ;;
7
;;                                                               ;;
8
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
9
 
10
align 32
11
 
12
; GDT TABLE
13
 
14
gdts:
15
 
16
        dw     gdte-$-1
17
        dd     gdts
18
        dw     0
19
 
20
int_code_l:
21
os_code_l:
22
 
23
        dw     0xffff
24
        dw     0x0000
25
        db     0x00
26
        dw     11011111b *256 +10011010b
27
        db     0x00
28
 
29
int_data_l:
30
os_data_l:
31
 
32
        dw     0xffff
33
        dw     0x0000
34
        db     0x00
35
        dw     11011111b *256 +10010010b
36
        db     0x00
37
 
76 mario79 38
; --------------- APM ---------------------
39
apm_code_32:
40
        dw     0x10        ; limit 64kb
41
        db     0, 0, 0
42
        dw     11011111b *256 +10011010b
43
        db     0x00
44
apm_code_16:
45
        dw     0x10
46
        db     0, 0, 0
47
        dw     10011111b *256 +10011010b
48
        db     0x00
49
apm_data_16:
50
        dw     0x10
51
        db     0, 0, 0
52
        dw     10011111b *256 +10010010b
53
        db     0x00
54
; -----------------------------------------
55
 
1 ha 56
app_code_l:
4 poddubny 57
      dw ((0x80000000-std_application_base_address) shr 12) and 0xffff
58
      dw 0
59
      db 0
60
      dw 11010000b*256+11111010b+256*((0x80000000-std_application_base_address) shr 28)
61
      db std_application_base_address shr 24
1 ha 62
 
63
app_data_l:
4 poddubny 64
      dw (0x80000000-std_application_base_address) shr 12 and 0xffff
65
      dw 0
66
      db 0
67
      dw 11010000b*256+11110010b+256*((0x80000000-std_application_base_address) shr 28)
68
      db std_application_base_address shr 24
1 ha 69
 
8 poddubny 70
graph_data_l:
1 ha 71
 
8 poddubny 72
        dw     0x3ff
73
        dw     0x0000
74
        db     0x00
75
        dw     11010000b *256 +11110010b
76
        db     0x00
77
 
78
tss0_l:
79
      times (max_processes+10) dd 0,0
80
 
1 ha 81
gdte:
82
 
83
 
84
 
85
idtreg:
86
     dw   8*0x41-1
87
     dd   idts+8
88
label idts at 0xB100-8
89
 
90
 
91
 
8 poddubny 92
uglobal
93
 tss_sceleton:
94
  l.back   dw 0,0
95
  l.esp0   dd 0
96
  l.ss0    dw 0,0
97
  l.esp1   dd 0
98
  l.ss1    dw 0,0
99
  l.esp2   dd 0
100
  l.ss2    dw 0,0
101
  l.cr3    dd 0
102
  l.eip    dd 0
103
  l.eflags dd 0
104
  l.eax    dd 0
105
  l.ecx    dd 0
106
  l.edx    dd 0
107
  l.ebx    dd 0
108
  l.esp    dd 0
109
  l.ebp    dd 0
110
  l.esi    dd 0
111
  l.edi    dd 0
112
  l.es     dw 0,0
113
  l.cs     dw 0,0
114
  l.ss     dw 0,0
115
  l.ds     dw 0,0
116
  l.fs     dw 0,0
117
  l.gs     dw 0,0
118
  l.ldt    dw 0,0
119
  l.trap   dw 0
120
  l.io     dw 0
121
endg
122
 
123
 
1 ha 124
build_process_gdt_tss_pointer:
125
 
126
        mov    ecx,tss_data
127
        mov    edi,0
128
      setgdtl2:
129
        mov    [edi+gdts+ tss0 +0], word tss_step
130
        mov    [edi+gdts+ tss0 +2], cx
131
        mov    eax,ecx
132
        shr    eax,16
133
        mov    [edi+gdts+ tss0 +4], al
134
        mov    [edi+gdts+ tss0 +7], ah
135
        mov    [edi+gdts+ tss0 +5], word 01010000b *256 +11101001b
136
        add    ecx,tss_step
137
        add    edi,8
138
        cmp    edi,8*(max_processes+5)
139
        jbe    setgdtl2
140
 
141
        ret
142
 
143
 
144
build_interrupt_table:
145
 
6 poddubny 146
        mov    edi, idts+8
147
        mov    esi, sys_int
8 poddubny 148
        mov    ecx, 0x40
6 poddubny 149
     @@:
150
        mov    eax, [esi]
151
        mov    [edi],   ax           ; lower part of offset
152
        mov    [edi+2], word os_code ; segment selector
153
        shr    eax, 16
154
        mov    [edi+4], word 10001110b shl 8 ; interrupt descriptor
155
        mov    [edi+6], ax
156
        add    esi, 4
157
        add    edi, 8
158
        dec    ecx
159
        jnz    @b
8 poddubny 160
 
161
        ;mov    edi,8*0x40+idts+8
3 halyavin 162
        mov    [edi + 0], word (i40 and ((1 shl 16)-1))
163
        mov    [edi + 2], word os_code
164
        mov    [edi + 4], word 11101110b*256
9 halyavin 165
        mov    [edi + 6], word (i40 shr 16)
1 ha 166
 
167
        ret
168
 
169
 
170
 
171
iglobal
172
  sys_int:
66 diamond 173
    dd   e0,debug_exc,e2,e3,e4,e5,e6,e7,e8,e9,e10,e11,e12,e13,e14,e15
8 poddubny 174
    dd   e16,e17
1 ha 175
    times 14 dd unknown_interrupt
176
 
177
    dd   irq0  ,irq1  ,p_irq2 ,p_irq3 ,p_irq4 ,p_irq5,p_irq6 ,p_irq7
178
    dd   p_irq8,p_irq9,p_irq10,p_irq11,p_irq12,irqD  ,p_irq14,p_irq15
179
 
180
    times 16 dd unknown_interrupt
181
 
182
    dd   i40
183
endg
184
 
40 halyavin 185
macro save_ring3_context
186
{
58 mario79 187
    push    ds es
188
    pushad
40 halyavin 189
}
190
macro restore_ring3_context
191
{
58 mario79 192
    popad
193
    pop    es ds
40 halyavin 194
}
195
 
8 poddubny 196
; simply return control to interrupted process
197
unknown_interrupt:
198
     iret
1 ha 199
 
22 poddubny 200
macro exc_wo_code [num]
8 poddubny 201
{
202
  forward
203
  e#num :
40 halyavin 204
      save_ring3_context
20 mario79 205
      mov bl, num
206
      jmp exc_c
8 poddubny 207
}
1 ha 208
 
22 poddubny 209
macro exc_w_code [num]
210
{
211
  forward
212
  e#num :
213
      add esp, 4
40 halyavin 214
      save_ring3_context
22 poddubny 215
      mov bl, num
216
      jmp exc_c
217
}
218
 
219
exc_wo_code 0, 1, 2, 3, 4, 5, 6, 9, 15, 16 ; 18, 19
220
exc_w_code 8, 10, 11, 12, 13, 14, 17
221
 
8 poddubny 222
exc_c:
6 poddubny 223
        mov   ax, os_data
224
        mov   ds, ax
225
        mov   es, ax
1 ha 226
 
40 halyavin 227
; test if debugging
228
        cli
229
        mov   eax, [0x3000]
230
        shl   eax, 8
115 poddubny 231
        mov   eax, [0x80000+eax+APPDATA.debugger_slot]
40 halyavin 232
        test  eax, eax
233
        jnz   .debug
234
        sti
235
; not debuggee => say error and terminate
236
        add   esp, 28h
8 poddubny 237
        movzx eax, bl
238
        mov   [error_interrupt], eax
1 ha 239
        call  show_error_parameters
8 poddubny 240
 
241
        mov   edx, [0x3010]
115 poddubny 242
        mov   [edx + TASKDATA.state], byte 4
8 poddubny 243
 
1 ha 244
        jmp   change_task
245
 
40 halyavin 246
.debug:
247
; we are debugged process, notify debugger and suspend ourself
248
; eax=debugger PID
113 diamond 249
        cld
40 halyavin 250
        movzx ecx, bl
251
        push  ecx
252
        mov   ecx, [0x3010]
115 poddubny 253
        push  dword [ecx+TASKDATA.pid]    ; PID of current process
40 halyavin 254
        push  12
255
        pop   ecx
58 mario79 256
        push  1        ; 1=exception
40 halyavin 257
        call  debugger_notify
258
        pop   ecx
259
        pop   ecx
260
        pop   ecx
261
        mov   edx, [0x3010]
115 poddubny 262
        mov   byte [edx+TASKDATA.state], 1        ; suspended
40 halyavin 263
        call  change_task
264
        restore_ring3_context
265
        iretd
1 ha 266
 
267
;;;;;;;;;;;;;;;;;;;;;;;
268
;; FPU ERROR HANDLER ;;
269
;;;;;;;;;;;;;;;;;;;;;;;
270
 
271
align 4
8 poddubny 272
e7:
40 halyavin 273
        save_ring3_context
6 poddubny 274
        clts
275
        mov   ax, os_data
276
        mov   ds, ax
277
        mov   es, ax
278
 
279
        mov   eax, [prev_user_of_fpu]
280
        shl   eax, 8
115 poddubny 281
        add   eax, 0x80000 + APPDATA.fpu_save_area
6 poddubny 282
        fsave [eax]
283
 
284
        mov   eax, [0x3000]
285
        mov   [prev_user_of_fpu], eax
286
        shl   eax, 8
287
        add   eax, 0x80000
115 poddubny 288
        cmp   [eax + APPDATA.is_fpu_saved], 0
6 poddubny 289
        je    @f
115 poddubny 290
        frstor [eax+APPDATA.fpu_save_area]
6 poddubny 291
     @@:
115 poddubny 292
        mov   [eax + APPDATA.is_fpu_saved], 1
40 halyavin 293
        restore_ring3_context
6 poddubny 294
        iret
295
 
296
iglobal
297
  prev_user_of_fpu dd 1
298
endg
1 ha 299
 
300
 
301
writehex:
302
      pusha
8 poddubny 303
 
304
      mov  edi, [write_error_to]
305
      mov  esi, 8
306
    @@:
307
      mov  ecx, eax
308
      and  ecx, 0xf
1 ha 309
 
8 poddubny 310
      mov  cl,[ecx+hexletters]
1 ha 311
      mov  [edi],cl
8 poddubny 312
      dec  edi
1 ha 313
 
8 poddubny 314
      shr  eax,4
1 ha 315
      dec  esi
8 poddubny 316
      jnz  @b
1 ha 317
 
318
      popa
319
      ret
320
 
321
iglobal
322
  hexletters  db '0123456789ABCDEF'
323
 
324
  error_interrupt         dd  -1
325
 
326
  process_error  db 'K : Process - forced terminate INT: 00000000',13,10,0
327
  process_pid    db 'K : Process - forced terminate PID: 00000000',13,10,0
328
  process_eip    db 'K : Process - forced terminate EIP: 00000000',13,10,0
329
  system_error   db 'K : Kernel error',13,10,0
330
endg
331
 
332
uglobal
333
  write_error_to  dd  0x0
334
endg
335
 
336
show_error_parameters:
337
 
338
        mov    [write_error_to],process_pid+43
339
        mov    eax,[0x3000]
340
        shl    eax, 5
115 poddubny 341
        mov    eax,[0x3000+TASKDATA.pid+eax]
1 ha 342
        call   writehex
343
 
344
        mov    [write_error_to],process_error+43
345
        mov    eax,[error_interrupt]
346
        call   writehex
16 poddubny 347
 
348
        cmp    dword [esp+4+4], os_code ; CS
349
        jnz    @f
10 poddubny 350
        mov    esi,system_error
351
        call   sys_msg_board_str
352
      @@:
16 poddubny 353
        mov    eax, [esp+4] ; EIP
10 poddubny 354
 
1 ha 355
        mov    [write_error_to],process_eip+43
356
        call   writehex
357
 
358
        mov    esi,process_error
359
        call   sys_msg_board_str
360
 
361
        mov    esi,process_pid
362
        call   sys_msg_board_str
363
 
364
        mov    esi,process_eip
365
        call   sys_msg_board_str
366
 
367
        ret
368
 
369
 
370
 
6 poddubny 371
; irq1  ->  hid/keyboard.inc
1 ha 372
 
373
 
10 poddubny 374
macro irqh [num]
8 poddubny 375
{
376
  forward
377
  p_irq#num :
40 halyavin 378
     save_ring3_context
8 poddubny 379
     mov   edi, num
380
     jmp   irq_c
381
}
1 ha 382
 
33 mario79 383
irqh 2,5,7,8,9,10,11,14,15
1 ha 384
 
8 poddubny 385
 irq_c:
386
     mov   ax, os_data
387
     mov   ds, ax
388
     mov   es, ax
1 ha 389
     call  irqhandler
40 halyavin 390
     restore_ring3_context
8 poddubny 391
     iret
11 poddubny 392
 
393
p_irq6:
40 halyavin 394
     save_ring3_context
11 poddubny 395
     mov   ax, os_data
396
     mov   ds, ax
397
     mov   es, ax
398
     call  fdc_irq
33 mario79 399
     call  ready_for_next_irq
40 halyavin 400
     restore_ring3_context
33 mario79 401
     iret
15 poddubny 402
 
33 mario79 403
p_irq3:
40 halyavin 404
     save_ring3_context
33 mario79 405
     mov   ax, os_data
406
     mov   ds, ax
407
     mov   es, ax
58 mario79 408
     cmp   [com2_mouse_detected],0
409
     je    old_irq3_handler
33 mario79 410
     call  check_mouse_data_com2
58 mario79 411
     jmp   p_irq3_1
412
 old_irq3_handler:
413
     mov   edi,3
414
     call  irqhandler
415
  p_irq3_1:
40 halyavin 416
     restore_ring3_context
33 mario79 417
     iret
15 poddubny 418
 
33 mario79 419
p_irq4:
40 halyavin 420
     save_ring3_context
33 mario79 421
     mov   ax, os_data
422
     mov   ds, ax
423
     mov   es, ax
58 mario79 424
     cmp   [com1_mouse_detected],0
425
     je    old_irq4_handler
33 mario79 426
     call  check_mouse_data_com1
58 mario79 427
     jmp   p_irq4_1
428
 old_irq4_handler:
429
     mov   edi,4
430
     call  irqhandler
431
  p_irq4_1:
40 halyavin 432
     restore_ring3_context
11 poddubny 433
     iret
434
 
33 mario79 435
p_irq12:
40 halyavin 436
     save_ring3_context
33 mario79 437
     mov   ax, os_data
438
     mov   ds, ax
439
     mov   es, ax
440
     call  check_mouse_data_ps2
40 halyavin 441
     restore_ring3_context
33 mario79 442
     iret
443
 
444
ready_for_next_irq:
445
     mov    [check_idle_semaphore],5
446
     mov   al, 0x20
447
     out   0x20, al
448
     ret
449
 
450
ready_for_next_irq_1:
451
     mov    [check_idle_semaphore],5
452
     mov   al, 0x20
453
     out    0xa0,al
454
     out   0x20, al
455
     ret
456
 
6 poddubny 457
irqD:
40 halyavin 458
     save_ring3_context
8 poddubny 459
     mov   ax, os_data
460
     mov   ds, ax
461
     mov   es, ax
462
 
6 poddubny 463
     mov   dx,0xf0
464
     mov   al,0
465
     out   dx,al
1 ha 466
 
6 poddubny 467
     mov   dx,0xa0
468
     mov   al,0x20
469
     out   dx,al
470
     mov   dx,0x20
40 halyavin 471
     out   dx,al
472
 
473
     restore_ring3_context
6 poddubny 474
 
8 poddubny 475
     iret
1 ha 476
 
477
 
478
irqhandler:
479
 
480
     push   edi
481
 
482
     mov    esi,edi          ; 1
483
     shl    esi,6            ; 1
484
     add    esi,irq00read    ; 1
485
     shl    edi,12           ; 1
486
     add    edi,0x2E0000
75 diamond 487
     mov    ecx,16
1 ha 488
 
489
     mov    [check_idle_semaphore],5
490
 
491
   irqnewread:
75 diamond 492
     dec    ecx
493
     js     irqover
1 ha 494
 
495
     mov    dx,[esi]         ; 2+
496
 
497
     cmp    dx,0             ; 1
498
     jz     irqover
499
     cmp    [esi+3],byte 1   ; 2     ; byte read
500
     jne    noirqbyte        ; 4-11
501
 
502
     in     al,dx
503
 
504
     mov    edx,[edi]
505
     cmp    edx,4000
506
     je     irqfull
507
     mov    ebx,edi
508
     add    ebx,0x10
509
     add    ebx,edx
510
     mov    [ebx],al
511
     inc    edx
512
     mov    [edi],edx
513
 
514
     add    esi,4
515
     jmp    irqnewread
516
 
517
   noirqbyte:
518
 
519
 
520
     cmp    [esi+3],byte 2     ; word read
521
     jne    noirqword
522
 
523
     in     ax,dx
524
 
525
     mov    edx,[edi]
526
     cmp    edx,4000
527
     je     irqfull
528
     mov    ebx,edi
529
     add    ebx,0x10
530
     add    ebx,edx
531
     mov    [ebx],ax
532
     add    edx,2
533
     mov    [edi],edx
534
     add    esi,4
535
     jmp    irqnewread
536
 
537
   noirqword:
538
   irqfull:
539
   irqover:
540
 
541
     mov    al,0x20            ; ready for next irq
542
     out    0x20,al
543
 
544
     pop    ebx
545
     cmp    ebx,7
546
     jbe    noa0
547
     out    0xa0,al
548
   noa0:
549
 
550
     ret
551
 
552
 
553
 
554
set_application_table_status:
555
        push eax
556
 
557
        mov  eax,[0x3000]
558
        shl  eax, 5
115 poddubny 559
        add  eax,0x3000+TASKDATA.pid
1 ha 560
        mov  eax,[eax]
561
 
562
        mov  [application_table_status],eax
563
 
564
        pop  eax
565
 
566
        ret
567
 
568
 
569
clear_application_table_status:
570
        push eax
571
 
572
        mov  eax,[0x3000]
573
        shl  eax, 5
115 poddubny 574
        add  eax,0x3000+TASKDATA.pid
1 ha 575
        mov  eax,[eax]
576
 
577
        cmp  eax,[application_table_status]
578
        jne  apptsl1
579
        mov  [application_table_status],0
580
      apptsl1:
581
 
582
        pop  eax
583
 
584
        ret
585
 
586
 
587
 
588
sys_resize_app_memory:
589
        ; eax = 1 - resize
590
        ;     ebx = new amount of memory
591
 
592
        cmp    eax,1
4 poddubny 593
        jne    .no_application_mem_resize
1 ha 594
 
4 poddubny 595
        jmp    new_mem_resize ;resize for new type of processes
1 ha 596
 
597
 
4 poddubny 598
     .no_application_mem_resize:
1 ha 599
 
600
        ret
601
 
602
 
603
 
604
get_app_params:
605
 
606
    push eax
607
 
608
    cmp  [0x90000+6],word '00'
609
    jne  no_00_header
610
 
611
    mov  eax,[0x90000+12]
612
    mov  [app_start],eax
613
    mov  eax,[0x90000+16]
614
    mov  [app_i_end],eax
615
    mov  eax,[0x90000+20]
616
    mov  [app_mem],eax
133 diamond 617
; \begin{diamond}[20.08.2006]
618
; sanity check (functions 19,58 load app_i_end bytes and that must
619
; fit in allocated memory to prevent kernel faults)
620
    cmp  eax,[app_i_end]
621
    jb   no_01_header
622
; \end{diamond}[20.08.2006]
1 ha 623
    shr  eax,1
624
    sub  eax,0x10
625
    mov  [app_esp],eax
626
    mov  eax,[0x90000+24]
627
    mov  [app_i_param],eax
628
    mov  [app_i_icon],dword 0
629
 
630
    pop  eax
133 diamond 631
    clc
1 ha 632
    ret
633
 
634
  no_00_header:
635
 
636
 
637
    cmp  [0x90000+6],word '01'
638
    jne  no_01_header
639
 
640
    mov  eax,[0x90000+12]
641
    mov  [app_start],eax
642
    mov  eax,[0x90000+16]
643
    mov  [app_i_end],eax
644
    mov  eax,[0x90000+20]
645
    mov  [app_mem],eax
133 diamond 646
; \begin{diamond}[20.08.2006]
647
    cmp  eax,[app_i_end]
648
    jb   no_01_header
649
; \end{diamond}[20.08.2006]
1 ha 650
    mov  eax,[0x90000+24]
651
    mov  [app_esp],eax
652
    mov  eax,[0x90000+28]
653
    mov  [app_i_param],eax
654
    mov  eax,[0x90000+32]
655
    mov  [app_i_icon],eax
656
 
657
    pop  eax
133 diamond 658
    clc
1 ha 659
    ret
660
 
661
   no_01_header:
662
 
663
    pop  eax
133 diamond 664
    stc
1 ha 665
    ret
666
 
667
 
668
start_application_fl:
669
    jmp new_start_application_fl
670
 
671
;************************************************************************
672
 
673
start_application_floppy:
674
    jmp  new_start_application_floppy
675
 
676
;********************************************************************
677
 
678
start_application_hd:
679
    jmp   new_start_application_hd
680
 
681
uglobal
682
  new_process_place  dd  0x0
683
  app_start    dd  0x0
684
  app_i_end    dd  0x0
685
  app_mem      dd  0x0
686
  app_esp      dd  0x0
687
  app_i_param  dd  0x0
688
  app_i_icon   dd  0x0
115 poddubny 689
  ;app_mem_pos  dd  0x0
5 halyavin 690
  appl_path        dd 0x0
691
  appl_path_size   dd 0x0
1 ha 692
endg
693
 
115 poddubny 694
;iglobal
695
  ;hd_app_string      db  'HDAPP       '
696
  ;process_loading    db 'K : Process - loading ',13,10,0
697
  ;process_running    db 'K : Process - done',13,10,0
698
  ;first_gdt_search   dd 0x2
699
;endg
1 ha 700
 
701
 
702
sys_threads:
703
 
704
; eax=1 create thread
705
;
706
;   ebx=thread start
707
;   ecx=thread stack value
708
;
709
; on return : eax = pid
710
jmp new_sys_threads
711
 
712
iglobal
713
  process_terminating   db 'K : Process - terminating',13,10,0
714
  process_terminated    db 'K : Process - done',13,10,0
715
endg
716
 
717
 
718
terminate: ; terminate application
719
    push   esi
720
    mov    esi,process_terminating
721
    call   sys_msg_board_str
722
    pop    esi
723
 
40 halyavin 724
@@:
1 ha 725
    cli
726
    cmp   [application_table_status],0
727
    je    term9
728
    sti
729
    call  change_task
40 halyavin 730
    jmp   @b
1 ha 731
  term9:
732
 
733
    call  set_application_table_status
734
 
735
    mov    eax,esi
736
    call   dispose_app_cr3_table
737
 
738
    cmp   [prev_user_of_fpu],esi   ; if user fpu last -> fpu user = 1
739
    jne   fpu_ok_1
740
    mov   [prev_user_of_fpu],1
741
  fpu_ok_1:
742
 
743
    mov   [0xf400],byte 0           ; empty keyboard buffer
744
    mov   [0xf500],byte 0           ; empty button buffer
745
 
746
 
92 diamond 747
; remove defined hotkeys
748
        mov     eax, hotkey_list
749
.loop:
750
        cmp     [eax+8], esi
751
        jnz     .cont
752
        mov     ecx, [eax]
753
        jecxz   @f
754
        push    dword [eax+12]
755
        pop     dword [ecx+12]
756
@@:
757
        mov     ecx, [eax+12]
758
        push    dword [eax]
759
        pop     dword [ecx]
760
        xor     ecx, ecx
761
        mov     [eax], ecx
762
        mov     [eax+4], ecx
763
        mov     [eax+8], ecx
764
        mov     [eax+12], ecx
765
.cont:
766
        add     eax, 16
767
        cmp     eax, hotkey_list+256*16
768
        jb      .loop
769
; remove hotkeys in buffer
770
        mov     eax, hotkey_buffer
771
.loop2:
772
        cmp     [eax], esi
773
        jnz     .cont2
774
        and     dword [eax+4], 0
775
        and     dword [eax], 0
776
.cont2:
777
        add     eax, 8
778
        cmp     eax, hotkey_buffer+120*8
779
        jb      .loop2
780
 
1 ha 781
    mov   ecx,esi                 ; remove buttons
782
  bnewba2:
783
    mov   edi,[0xfe88]
784
    mov   eax,edi
785
    cld
786
    movzx ebx,word [edi]
787
    inc   bx
788
  bnewba:
789
    dec   bx
790
    jz    bnmba
791
    add   eax,0x10
792
    cmp   cx,[eax]
793
    jnz   bnewba
794
    pusha
795
    mov   ecx,ebx
796
    inc   ecx
797
    shl   ecx,4
798
    mov   ebx,eax
799
    add   eax,0x10
800
    call  memmove
801
    dec   dword [edi]
802
    popa
803
    jmp   bnewba2
804
  bnmba:
805
 
806
    pusha     ; save window coordinates for window restoring
807
    cld
808
    shl   esi,5
809
    add   esi,window_data
114 mikedld 810
    mov   eax,[esi+WDATA.box.left]
102 poddubny 811
    mov   [dlx],eax
114 mikedld 812
    add   eax,[esi+WDATA.box.width]
102 poddubny 813
    mov   [dlxe],eax
114 mikedld 814
    mov   eax,[esi+WDATA.box.top]
102 poddubny 815
    mov   [dly],eax
114 mikedld 816
    add   eax,[esi+WDATA.box.height]
102 poddubny 817
    mov   [dlye],eax
1 ha 818
 
142 diamond 819
    xor   eax, eax
820
    mov   [esi+WDATA.box.left],eax
821
    mov   [esi+WDATA.box.width],eax
114 mikedld 822
    mov   [esi+WDATA.box.top],eax
142 diamond 823
    mov   [esi+WDATA.box.height],eax
115 poddubny 824
    mov   [esi+WDATA.cl_workarea],eax
825
    mov   [esi+WDATA.cl_titlebar],eax
826
    mov   [esi+WDATA.cl_frames],eax
827
    mov   dword [esi+WDATA.reserved],eax ; clear all flags: wstate, redraw, wdrawn
102 poddubny 828
    lea   edi, [esi-window_data+draw_data]
1 ha 829
    mov   ecx,32/4
830
    rep   stosd
831
    popa
832
 
40 halyavin 833
; debuggee test
834
    pushad
835
    mov  edi, esi
836
    shl  edi, 5
115 poddubny 837
    mov  eax, [0x80000+edi*8+APPDATA.debugger_slot]
40 halyavin 838
    test eax, eax
839
    jz   .nodebug
840
    push 8
841
    pop  ecx
115 poddubny 842
    push dword [0x3000+edi+TASKDATA.pid]   ; PID
40 halyavin 843
    push 2
844
    call debugger_notify
845
    pop  ecx
846
    pop  ecx
847
.nodebug:
848
    popad
849
 
1 ha 850
    pusha         ; at 0x80000+
851
    mov   edi,esi
852
    shl   edi,8
853
    add   edi,0x80000
854
    mov   ecx,256/4
855
    xor   eax, eax
856
    rep   stosd
857
    popa
858
 
859
    pusha          ; name to spaces
860
    mov   edi,esi
861
    shl   edi,8
115 poddubny 862
    add   edi,0x80000+APPDATA.app_name
1 ha 863
    mov   ecx,11
864
    mov   eax,' '
865
    rep   stosb
866
    popa
867
 
868
 
102 poddubny 869
  ; activate window
870
        movzx  eax, word [0xC000 + esi*2]
871
        cmp    eax, [0x3004]
872
        jne    .dont_activate
873
        pushad
874
 .check_next_window:
875
        dec    eax
876
        cmp    eax, 1
877
        jbe    .nothing_to_activate
878
        lea    esi, [0xc400+eax*2]
879
        movzx  edi, word [esi]               ; edi = process
880
        shl    edi, 5
115 poddubny 881
        cmp    [0x3000 + edi + TASKDATA.state], byte 9  ; skip dead slots
102 poddubny 882
        je     .check_next_window
883
        add    edi, window_data
884
        call   waredraw
885
 .nothing_to_activate:
886
        popad
887
 .dont_activate:
888
 
92 diamond 889
        push    esi     ; remove hd1 & cd & flp reservation
890
        shl     esi, 5
118 diamond 891
        mov     esi, [esi+0x3000+TASKDATA.pid]
92 diamond 892
        cmp     [hd1_status], esi
893
        jnz     @f
894
        mov     [hd1_status], 0
895
@@:
896
        cmp     [cd_status], esi
897
        jnz     @f
898
        mov     [cd_status], 0
899
@@:
900
        cmp     [flp_status], esi
901
        jnz     @f
902
        mov     [flp_status], 0
903
@@:
904
        pop     esi
1 ha 905
 
906
    pusha ; remove all irq reservations
92 diamond 907
    mov   eax,esi
115 poddubny 908
    shl   eax, 5
118 diamond 909
    mov   eax,[eax+0x3000+TASKDATA.pid]
1 ha 910
    mov   edi,irq_owner
911
    mov   ecx,16
912
  newirqfree:
92 diamond 913
    scasd
1 ha 914
    jne   nofreeirq
92 diamond 915
    mov   [edi-4],dword 0
1 ha 916
  nofreeirq:
917
    loop   newirqfree
918
    popa
919
 
920
 
921
    pusha                     ; remove all port reservations
922
    mov   edx,esi
115 poddubny 923
    shl   edx, 5
1 ha 924
    add   edx,0x3000
115 poddubny 925
    mov   edx,[edx+TASKDATA.pid]
1 ha 926
 
927
  rmpr0:
928
 
929
    mov   esi,[0x2d0000]
930
 
931
    cmp   esi,0
932
    je    rmpr9
933
 
934
  rmpr3:
935
 
936
    mov   edi,esi
937
    shl   edi,4
938
    add   edi,0x2d0000
939
 
940
    cmp   edx,[edi]
941
    je    rmpr4
942
 
943
    dec   esi
944
    jnz   rmpr3
945
 
946
    jmp   rmpr9
947
 
948
  rmpr4:
949
 
950
    mov   ecx,256
951
    sub   ecx,esi
952
    shl   ecx,4
953
 
954
    mov   esi,edi
955
    add   esi,16
956
    cld
957
    rep   movsb
958
 
959
    dec   dword [0x2d0000]
960
 
961
    jmp   rmpr0
962
 
963
  rmpr9:
964
 
965
    popa
966
    mov  edi,esi         ; do not run this process slot
6 poddubny 967
    shl  edi, 5
115 poddubny 968
    mov  [edi+0x3000 + TASKDATA.state],byte 9
40 halyavin 969
; debugger test - terminate all debuggees
970
    mov  eax, 2
115 poddubny 971
    mov  ecx, 0x80000+2*0x100+APPDATA.debugger_slot
40 halyavin 972
.xd0:
973
    cmp  eax, [0x3004]
974
    ja   .xd1
975
    cmp  dword [ecx], esi
976
    jnz  @f
977
    and  dword [ecx], 0
978
    pushad
979
    xchg eax, ebx
980
    mov  eax, 2
981
    call sys_system
982
    popad
983
@@:
984
    inc  eax
985
    add  ecx, 0x100
986
    jmp  .xd0
987
.xd1:
1 ha 988
;    call  systest
989
    sti  ; .. and life goes on
990
 
112 poddubny 991
    mov   eax, [dlx]
992
    mov   ebx, [dly]
993
    mov   ecx, [dlxe]
994
    mov   edx, [dlye]
1 ha 995
    call  calculatescreen
996
    xor   eax, eax
997
    xor   esi, esi
998
    call  redrawscreen
999
 
1000
    mov   [0xfff4],byte 0  ; no mouse background
1001
    mov   [0xfff5],byte 0  ; draw mouse
1002
 
1003
    mov   [application_table_status],0
1004
    mov   esi,process_terminated
1005
    call  sys_msg_board_str
1006
 
1007
    ret
1008
 
1009
iglobal
1010
  boot_sched_1    db   'Building gdt tss pointer',0
8 poddubny 1011
  boot_sched_2    db   'Building IDT table',0
1 ha 1012
endg
1013
 
1014
 
1015
build_scheduler:
1016
 
1017
        mov    esi,boot_sched_1
1018
        call   boot_log
1019
        call   build_process_gdt_tss_pointer
1020
 
8 poddubny 1021
        mov    esi,boot_sched_2
1 ha 1022
        call   boot_log
1023
        call   build_interrupt_table
1024
 
1025
        ret
1026