Subversion Repositories Kolibri OS

Rev

Rev 4424 | Rev 5202 | 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-2012. All rights reserved. ;;
2288 clevermous 4
;; Distributed under terms of the GNU General Public License    ;;
5
;;                                                              ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7
 
8
$Revision: 5130 $
9
 
10
 
11
GREEDY_KERNEL  equ 0
12
 
2384 hidnplayr 13
struct  APP_HEADER_00_
14
        banner          dq ?
15
        version         dd ?    ;+8
16
        start           dd ?    ;+12
17
        i_end           dd ?    ;+16
18
        mem_size        dd ?    ;+20
19
        i_param         dd ?    ;+24
20
ends
2288 clevermous 21
 
2384 hidnplayr 22
struct  APP_HEADER_01_
23
        banner          dq ?
24
        version         dd ?    ;+8
25
        start           dd ?    ;+12
26
        i_end           dd ?    ;+16
27
        mem_size        dd ?    ;+20
28
        stack_top       dd ?    ;+24
29
        i_param         dd ?    ;+28
30
        i_icon          dd ?    ;+32
31
ends
2288 clevermous 32
 
33
 
2384 hidnplayr 34
struct  APP_PARAMS
35
        app_cmdline     dd ?    ;0x00
36
        app_path        dd ?    ;0x04
37
        app_eip         dd ?    ;0x08
38
        app_esp         dd ?    ;0x0C
39
        app_mem         dd ?    ;0x10
40
ends
2288 clevermous 41
 
42
macro _clear_ op
43
{  mov ecx, op/4
44
        xor     eax, eax
45
        cld
46
        rep stosd
47
}
48
 
49
fs_execute_from_sysdir:
50
        xor     ebx, ebx
51
fs_execute_from_sysdir_param:
52
        xor     edx, edx
53
        mov     esi, sysdir_path
54
 
55
align 4
56
proc fs_execute
57
 
58
;fn_read:dword, file_size:dword, cluster:dword
59
 
60
; ebx - cmdline
61
; edx - flags
62
; ebp - full filename
63
; [esp+4] = procedure DoRead, [esp+8] = filesize & [esp+12]... - arguments for it
64
 
65
       locals
3828 mario79 66
         cmdline_size  dd ? ; +0 ; cmdline -12
67
         cmdline_adr   dd ? ; +4 ; cmdline -8
68
         cmdline_flag  dd ? ; +8 ; cmdline -4
2288 clevermous 69
         cmdline       rd 64    ;256/4
70
         filename      rd 256   ;1024/4
3828 mario79 71
         flags         dd ?
2288 clevermous 72
 
5130 serge 73
         save_proc     dd ?
3828 mario79 74
         slot          dd ?
2288 clevermous 75
         slot_base     dd ?
76
         file_base     dd ?
77
         file_size     dd ?
2503 mario79 78
         handle        dd ? ;temp. for default cursor handle for curr. thread
2288 clevermous 79
                      ;app header data
80
         hdr_cmdline   dd ? ;0x00
81
         hdr_path      dd ? ;0x04
82
         hdr_eip       dd ? ;0x08
83
         hdr_esp       dd ? ;0x0C
84
         hdr_mem       dd ? ;0x10
85
         hdr_i_end     dd ? ;0x14
86
       endl
87
 
2498 mario79 88
        pushad
2288 clevermous 89
 
2586 mario79 90
        cmp     [SCR_MODE], word 0x13
91
        jbe     @f
2503 mario79 92
        pushad
93
        stdcall set_cursor, [def_cursor_clock]
94
        mov     [handle], eax
95
        mov     [redrawmouse_unconditional], 1
3534 clevermous 96
        call    wakeup_osloop
2503 mario79 97
        popad
2586 mario79 98
@@:
2288 clevermous 99
        mov     [flags], edx
100
 
101
; [ebp]  pointer to filename
102
 
103
        lea     edi, [filename]
104
        lea     ecx, [edi+1024]
105
        mov     al, '/'
106
        stosb
107
@@:
108
        cmp     edi, ecx
109
        jae     .bigfilename
110
        lodsb
111
        stosb
112
        test    al, al
113
        jnz     @b
114
        mov     esi, [ebp]
115
        test    esi, esi
116
        jz      .namecopied
117
        mov     byte [edi-1], '/'
118
@@:
119
        cmp     edi, ecx
120
        jae     .bigfilename
121
        lodsb
122
        stosb
123
        test    al, al
124
        jnz     @b
125
        jmp     .namecopied
126
.bigfilename:
127
        popad
128
        mov     eax, -ERROR_FILE_NOT_FOUND
129
 
2503 mario79 130
        jmp     .final
131
 
2288 clevermous 132
.namecopied:
3828 mario79 133
        xor     eax, eax
134
        mov     [cmdline_flag], eax
135
        mov     [cmdline_adr], eax
136
        mov     [cmdline_size], eax
2288 clevermous 137
 
138
        mov     [cmdline], ebx
139
        test    ebx, ebx
3828 mario79 140
        jz      .no_copy
141
;--------------------------------------
142
        pushad
143
        pushfd
144
        mov     esi, ebx
145
        mov     ecx, 65536 ; 64 Kb max for ext.cmdline
146
        cld
147
@@:
148
        dec     ecx
149
        jz      .end_string
2288 clevermous 150
 
3828 mario79 151
        lodsb
152
        test    al, al
153
        jnz     @b
154
 
155
.end_string:
156
        mov     eax, 65536 ; 64 Kb max for ext.cmdline
157
        sub     eax, ecx
158
        mov     [cmdline_size], eax
159
        cmp     eax, 255
160
        ja      @f
161
 
162
        popfd
163
        popad
164
        jmp     .old_copy
165
 
166
@@:
167
        xor     eax, eax
168
        dec     eax
169
        mov     [cmdline_flag], eax
170
        popfd
171
        popad
172
; get memory for the extended command line
173
        stdcall kernel_alloc, [cmdline_size] ;eax
174
        test    eax, eax
175
        jz      .old_copy ; get memory failed
176
 
177
        mov     [cmdline_adr], eax
178
 
179
        pushad
180
        pushfd
181
        mov     esi, ebx
182
        mov     edi, eax
183
        mov     ecx, [cmdline_size]
184
        cld
185
        rep movsb
186
        popfd
187
        popad
188
        jmp     .no_copy
189
 
190
.old_copy:
191
; clear flag because old method with 256 bytes
192
        xor     eax, eax
193
        mov     [cmdline_flag], eax
194
;--------------------------------------
2288 clevermous 195
        lea     eax, [cmdline]
196
        mov     dword [eax+252], 0
3828 mario79 197
.copy:
2288 clevermous 198
        stdcall strncpy, eax, ebx, 255
3828 mario79 199
.no_copy:
2288 clevermous 200
        lea     eax, [filename]
201
        stdcall load_file, eax
2497 mario79 202
 
2288 clevermous 203
        mov     esi, -ERROR_FILE_NOT_FOUND
204
        test    eax, eax
205
        jz      .err_file
206
 
207
        mov     [file_base], eax
208
        mov     [file_size], ebx
209
 
210
        lea     ebx, [hdr_cmdline]
211
        call    test_app_header
212
        mov     esi, -0x1F
213
        test    eax, eax
214
        jz      .err_hdr
215
 
3534 clevermous 216
        call    lock_application_table
2288 clevermous 217
 
5130 serge 218
        call    alloc_thread_slot
2288 clevermous 219
        test    eax, eax
220
        mov     esi, -0x20 ; too many processes
221
        jz      .err
222
 
223
        mov     [slot], eax
224
        shl     eax, 8
225
        add     eax, SLOT_BASE
226
        mov     [slot_base], eax
227
        mov     edi, eax
228
       _clear_ 256     ;clean extended information about process
229
 
230
; write application name
231
        lea     eax, [filename]
232
        stdcall strrchr, eax, '/'  ; now eax points to name without path
233
 
234
        lea     esi, [eax+1]
235
        test    eax, eax
236
        jnz     @F
237
        lea     esi, [filename]
238
@@:
2625 mario79 239
        mov     ecx, 11 ; 11 chars for name! 8 - is old value!
2288 clevermous 240
        mov     edi, [slot_base]
241
.copy_process_name_loop:
242
        lodsb
243
        cmp     al, '.'
244
        jz      .copy_process_name_done
245
        test    al, al
246
        jz      .copy_process_name_done
247
        stosb
248
        loop    .copy_process_name_loop
249
.copy_process_name_done:
250
 
5130 serge 251
        mov     ebx, [current_process]
252
        mov     [save_proc], ebx
2288 clevermous 253
 
5130 serge 254
        stdcall create_process, [hdr_mem], [file_base], [file_size]
2288 clevermous 255
        mov     esi, -30; no memory
256
        test    eax, eax
257
        jz      .failed
258
 
5130 serge 259
        mov     ebx, [hdr_mem]
260
        mov     [eax+PROC.mem_used], ebx
261
 
2288 clevermous 262
        mov     ebx, [slot_base]
5130 serge 263
        mov     [ebx+APPDATA.process], eax
2288 clevermous 264
 
5130 serge 265
        lea     edx, [ebx+APPDATA.list]
266
        lea     ecx, [eax+PROC.thr_list]
267
        list_add_tail edx, ecx
268
 
2288 clevermous 269
        xor     edx, edx
270
        cmp     word [6], '02'
271
        jne     @f
272
 
273
        not     edx
274
@@:
275
        mov     [ebx+APPDATA.tls_base], edx
276
 
277
if GREEDY_KERNEL
278
else
279
        mov     ecx, [hdr_mem]
280
        mov     edi, [file_size]
281
        add     edi, 4095
282
        and     edi, not 4095
283
        sub     ecx, edi
284
        jna     @F
285
 
286
        xor     eax, eax
287
        cld
288
        rep stosb
289
@@:
290
end if
291
 
292
; release only virtual space, not phisical memory
293
 
294
        stdcall free_kernel_space, [file_base]
295
        lea     eax, [hdr_cmdline]
296
        lea     ebx, [cmdline]
297
        lea     ecx, [filename]
298
        stdcall set_app_params , [slot], eax, ebx, ecx, [flags]
299
 
5130 serge 300
        mov     eax, [save_proc]
2288 clevermous 301
        call    set_cr3
302
 
303
        mov     eax, [process_number];set result
3534 clevermous 304
        call    unlock_application_table
2503 mario79 305
 
306
        jmp     .final
307
 
2288 clevermous 308
.failed:
5130 serge 309
        mov     eax, [save_proc]
2288 clevermous 310
        call    set_cr3
311
.err:
312
.err_hdr:
313
        stdcall kernel_free, [file_base]
314
.err_file:
3534 clevermous 315
        call    unlock_application_table
2288 clevermous 316
        mov     eax, esi
2503 mario79 317
.final:
2586 mario79 318
        cmp     [SCR_MODE], word 0x13
319
        jbe     @f
2503 mario79 320
        pushad
321
        stdcall set_cursor, [handle]
322
        mov     [redrawmouse_unconditional], 1
3534 clevermous 323
        call    wakeup_osloop
2503 mario79 324
        popad
2586 mario79 325
@@:
2288 clevermous 326
        ret
327
endp
328
 
329
align 4
330
test_app_header:
331
       virtual at eax
2384 hidnplayr 332
         APP_HEADER_00 APP_HEADER_00_
2288 clevermous 333
       end virtual
334
       virtual at eax
2384 hidnplayr 335
         APP_HEADER_01 APP_HEADER_01_
2288 clevermous 336
       end virtual
337
 
338
        cmp     dword [eax], 'MENU'
339
        jne     .fail
340
        cmp     word [eax+4], 'ET'
341
        jne     .fail
342
 
343
        cmp     [eax+6], word '00'
344
        jne     .check_01_header
345
 
346
        mov     ecx, [APP_HEADER_00.start]
347
        mov     [ebx+0x08], ecx             ;app_eip
348
        mov     edx, [APP_HEADER_00.mem_size]
349
        mov     [ebx+0x10], edx             ;app_mem
350
        shr     edx, 1
351
        sub     edx, 0x10
352
        mov     [ebx+0x0C], edx             ;app_esp
353
        mov     ecx, [APP_HEADER_00.i_param]
354
        mov     [ebx], ecx                  ;app_cmdline
355
        mov     [ebx+4], dword 0            ;app_path
356
        mov     edx, [APP_HEADER_00.i_end]
357
        mov     [ebx+0x14], edx
358
        ret
359
 
360
 .check_01_header:
361
 
362
        cmp     [eax+6], word '01'
363
        je      @f
364
        cmp     [eax+6], word '02'
365
        jne     .fail
366
@@:
367
        mov     ecx, [APP_HEADER_01.start]
368
        mov     [ebx+0x08], ecx             ;app_eip
369
        mov     edx, [APP_HEADER_01.mem_size]
370
 
371
; \begin{diamond}[20.08.2006]
372
; sanity check (functions 19,58 load app_i_end bytes and that must
373
; fit in allocated memory to prevent kernel faults)
374
        cmp     edx, [APP_HEADER_01.i_end]
375
        jb      .fail
376
; \end{diamond}[20.08.2006]
377
 
378
        mov     [ebx+0x10], edx             ;app_mem
379
        mov     ecx, [APP_HEADER_01.stack_top]
380
        mov     [ebx+0x0C], ecx             ;app_esp
381
        mov     edx, [APP_HEADER_01.i_param]
382
        mov     [ebx], edx                  ;app_cmdline
383
        mov     ecx, [APP_HEADER_01.i_icon]
384
        mov     [ebx+4], ecx                ;app_path
385
        mov     edx, [APP_HEADER_01.i_end]
386
        mov     [ebx+0x14], edx
387
        ret
388
.fail:
389
        xor     eax, eax
390
        ret
391
 
392
align 4
5130 serge 393
alloc_thread_slot:
2288 clevermous 394
;input:
395
;  none
396
;result:
5130 serge 397
;  eax=[new_thread_slot]<>0 - ok
2288 clevermous 398
;      0 - failed.
399
;This function find least empty slot.
400
;It doesn't increase [TASK_COUNT]!
5130 serge 401
 
402
 
403
        mov     edx, thr_slot_map
404
        pushfd
405
        cli
406
.l1:
407
        bsf     eax, [edx]
408
        jnz     .found
409
        add     edx, 4
410
        cmp     edx, thr_slot_map+32
411
        jb      .l1
412
 
413
        popfd
2288 clevermous 414
        xor     eax, eax
415
        ret
5130 serge 416
.found:
417
        btr     [edx], eax
418
        sub     edx, thr_slot_map
419
        lea     eax, [eax+edx*8]
420
        popfd
421
        ret
2288 clevermous 422
 
5130 serge 423
 
2288 clevermous 424
align 4
5130 serge 425
proc create_process stdcall, app_size:dword,img_base:dword,img_size:dword
2288 clevermous 426
       locals
427
         app_pages   dd ?
428
         img_pages   dd ?
5130 serge 429
         process     dd ?
2288 clevermous 430
         app_tabs    dd ?
431
       endl
432
 
5130 serge 433
        push    ebx
434
        push    esi
435
        push    edi
436
 
2288 clevermous 437
        mov     ecx, pg_data.mutex
438
        call    mutex_lock
439
 
440
        xor     eax, eax
5130 serge 441
        mov     [process], eax
2288 clevermous 442
 
443
        mov     eax, [app_size]
444
        add     eax, 4095
445
        and     eax, NOT(4095)
446
        mov     [app_size], eax
447
        mov     ebx, eax
448
        shr     eax, 12
449
        mov     [app_pages], eax
450
 
451
        add     ebx, 0x3FFFFF
452
        and     ebx, NOT(0x3FFFFF)
453
        shr     ebx, 22
454
        mov     [app_tabs], ebx
455
 
456
        mov     ecx, [img_size]
457
        add     ecx, 4095
458
        and     ecx, NOT(4095)
459
 
460
        mov     [img_size], ecx
461
        shr     ecx, 12
462
        mov     [img_pages], ecx
463
 
464
        lea     eax, [eax+ebx+2];all requested memory
5130 serge 465
 
2288 clevermous 466
        cmp     eax, [pg_data.pages_free]
467
        ja      .fail
468
 
5130 serge 469
        stdcall kernel_alloc, 0x2000
2288 clevermous 470
        test    eax, eax
471
        jz      .fail
5130 serge 472
        mov     [process], eax
2288 clevermous 473
 
5130 serge 474
        lea     edi, [eax+PROC.heap_lock]
475
        mov     ecx, (4096-PROC.heap_lock)/4
476
 
477
        list_init eax
478
        add     eax, PROC.thr_list
479
        list_init eax
480
 
2288 clevermous 481
        xor     eax, eax
482
        cld
483
        rep stosd
484
 
5130 serge 485
        mov     eax, edi
486
        call    get_pg_addr
487
        mov     [edi-4096+PROC.pdt_0_phys], eax
488
 
2288 clevermous 489
        mov     ecx, (OS_BASE shr 20)/4
5130 serge 490
        xor     eax, eax
491
        rep stosd
492
 
493
        mov     ecx, (OS_BASE shr 20)/4
494
        mov     esi, sys_proc+PROC.pdt_0+(OS_BASE shr 20)
2288 clevermous 495
        rep movsd
496
 
5130 serge 497
        mov     eax, [edi-8192+PROC.pdt_0_phys]
2288 clevermous 498
        or      eax, PG_SW
499
        mov     [edi-4096+(page_tabs shr 20)], eax
500
 
5130 serge 501
        lea     eax, [edi-8192]
2288 clevermous 502
        call    set_cr3
503
 
504
        mov     edx, [app_tabs]
5130 serge 505
        xor     edi, edi
2288 clevermous 506
@@:
507
        call    alloc_page
508
        test    eax, eax
509
        jz      .fail
510
 
511
        stdcall map_page_table, edi, eax
512
        add     edi, 0x00400000
513
        dec     edx
514
        jnz     @B
515
 
5130 serge 516
        mov     edi, page_tabs
2288 clevermous 517
 
518
        mov     ecx, [app_tabs]
519
        shl     ecx, 10
520
        xor     eax, eax
521
        rep stosd
522
 
523
        mov     ecx, [img_pages]
524
        mov     ebx, PG_UW
5130 serge 525
        xor     edx, edx
2288 clevermous 526
        mov     esi, [img_base]
527
        shr     esi, 10
528
        add     esi, page_tabs
5130 serge 529
        mov     edi, page_tabs
2288 clevermous 530
.remap:
531
        lodsd
4424 Serge 532
        and     eax, 0xFFFFF000
2288 clevermous 533
        or      eax, ebx; force user level r/w access
534
        stosd
535
        add     edx, 0x1000
536
        dec     [app_pages]
537
        dec     ecx
538
        jnz     .remap
539
 
540
        mov     ecx, [app_pages]
541
        test    ecx, ecx
542
        jz      .done
543
 
544
.alloc:
545
        call    alloc_page
546
        test    eax, eax
547
        jz      .fail
548
 
549
        stdcall map_page, edx, eax, dword PG_UW
550
        add     edx, 0x1000
551
        dec     [app_pages]
552
        jnz     .alloc
553
 
554
.done:
555
        mov     ecx, pg_data.mutex
556
        call    mutex_unlock
5130 serge 557
        mov     eax, [process]
558
 
559
        pop     edi
560
        pop     esi
561
        pop     ebx
2288 clevermous 562
        ret
563
.fail:
564
        mov     ecx, pg_data.mutex
565
        call    mutex_unlock
5130 serge 566
        cmp     [process], 0
2288 clevermous 567
        je      @f
5130 serge 568
;;        stdcall destroy_app_space, [dir_addr], 0
2288 clevermous 569
@@:
570
        xor     eax, eax
5130 serge 571
        pop     edi
572
        pop     esi
573
        pop     ebx
2288 clevermous 574
        ret
575
endp
576
 
577
align 4
578
set_cr3:
5130 serge 579
        pushfd
580
        cli
2288 clevermous 581
        mov     ebx, [current_slot]
5130 serge 582
        mov     [current_process], eax
583
        mov     [ebx+APPDATA.process], eax
584
        mov     eax, [eax+PROC.pdt_0_phys]
2288 clevermous 585
        mov     cr3, eax
5130 serge 586
        popfd
2288 clevermous 587
        ret
588
 
589
align 4
590
proc destroy_page_table stdcall, pg_tab:dword
591
 
592
        push    esi
593
 
594
        mov     esi, [pg_tab]
595
        mov     ecx, 1024
596
.free:
597
        mov     eax, [esi]
598
        test    eax, 1
599
        jz      .next
5130 serge 600
        test    eax, 2
601
        jz      .next
2288 clevermous 602
        test    eax, 1 shl 9
603
        jnz     .next                     ;skip shared pages
604
        call    free_page
605
.next:
606
        add     esi, 4
607
        dec     ecx
608
        jnz     .free
609
        pop     esi
610
        ret
611
endp
612
 
613
align 4
5130 serge 614
destroy_process: ;fastcall ecx= ptr to process
2288 clevermous 615
 
5130 serge 616
        lea     eax, [ecx+PROC.thr_list]
617
        cmp     eax, [eax+LHEAD.next]
618
        jne     .exit
2288 clevermous 619
 
5130 serge 620
align 4
621
.internal:
622
        push    ecx
2288 clevermous 623
 
5130 serge 624
        mov     esi, [ecx+PROC.dlls_list_ptr]
625
        call    destroy_all_hdlls
2288 clevermous 626
 
5130 serge 627
;        mov     ecx, pg_data.mutex
628
;        call    mutex_lock
629
 
630
        mov     esi, [esp]
631
        add     esi, PROC.pdt_0
632
        mov     edi, (0x80000000 shr 20)/4
2288 clevermous 633
.destroy:
634
        mov     eax, [esi]
635
        test    eax, 1
636
        jz      .next
637
        and     eax, not 0xFFF
638
        stdcall map_page, [tmp_task_ptab], eax, PG_SW
639
        stdcall destroy_page_table, [tmp_task_ptab]
640
        mov     eax, [esi]
641
        call    free_page
642
.next:
643
        add     esi, 4
644
        dec     edi
645
        jnz     .destroy
646
 
5130 serge 647
        call    kernel_free     ;ecx still in stack
648
        stdcall map_page, [tmp_task_ptab], 0, PG_UNMAP
649
 ;       mov     ecx, pg_data.mutex
650
 ;       call    mutex_unlock
651
 
2288 clevermous 652
.exit:
653
        ret
654
 
655
align 4
656
get_pid:
657
        mov     eax, [TASK_BASE]
658
        mov     eax, [eax+TASKDATA.pid]
659
        ret
660
 
661
pid_to_slot:
662
;Input:
663
;  eax - pid of process
664
;Output:
665
;  eax - slot of process or 0 if process don't exists
666
;Search process by PID.
667
        push    ebx
668
        push    ecx
669
        mov     ebx, [TASK_COUNT]
670
        shl     ebx, 5
671
        mov     ecx, 2*32
672
 
673
.loop:
674
;ecx=offset of current process info entry
675
;ebx=maximum permitted offset
676
        cmp     byte [CURRENT_TASK+ecx+0xa], 9
677
        jz      .endloop ;skip empty slots
678
        cmp     [CURRENT_TASK+ecx+0x4], eax;check PID
679
        jz      .pid_found
680
.endloop:
681
        add     ecx, 32
682
        cmp     ecx, ebx
683
        jle     .loop
684
 
685
        pop     ecx
686
        pop     ebx
687
        xor     eax, eax
688
        ret
689
 
690
.pid_found:
691
        shr     ecx, 5
692
        mov     eax, ecx ;convert offset to index of slot
693
        pop     ecx
694
        pop     ebx
695
        ret
696
 
697
check_region:
698
;input:
699
;  esi - start of buffer
700
;  edx - size of buffer
701
;result:
702
;  eax = 1 region lays in app memory
703
;  eax = 0 region don't lays in app memory
5130 serge 704
 
705
        mov     eax, 1
706
        ret
707
if 0
2288 clevermous 708
        mov     eax, [CURRENT_TASK]
709
;     jmp  check_process_region
710
;-----------------------------------------------------------------------------
711
;check_process_region:
712
;input:
713
;  eax - slot
714
;  esi - start of buffer
715
;  edx - size of buffer
716
;result:
717
;  eax = 1 region lays in app memory
718
;  eax = 0 region don't lays in app memory
719
 
720
        test    edx, edx
721
        jle     .ok
722
        shl     eax, 5
723
        cmp     word [CURRENT_TASK+eax+0xa], 0
724
        jnz     .failed
725
        shl     eax, 3
726
        mov     eax, [SLOT_BASE+eax+0xb8]
727
        test    eax, eax
728
        jz      .failed
729
 
730
        mov     eax, 1
731
        ret
732
.ok:
733
        mov     eax, 1
734
        ret
735
.failed:
736
        xor     eax, eax
737
        ret
5130 serge 738
end if
2288 clevermous 739
 
740
align 4
741
proc read_process_memory
742
;Input:
743
;  eax - process slot
744
;  ecx - buffer address
745
;  edx - buffer size
746
;  esi - start address in other process
747
;Output:
748
;  eax - number of bytes read.
749
       locals
750
         slot   dd ?
751
         buff   dd ?
752
         r_count    dd ?
753
         offset dd ?
754
         tmp_r_cnt  dd ?
755
       endl
756
 
757
        mov     [slot], eax
758
        mov     [buff], ecx
759
        and     [r_count], 0
760
        mov     [tmp_r_cnt], edx
761
        mov     [offset], esi
762
 
763
        pushad
764
.read_mem:
765
        mov     edx, [offset]
766
        mov     ebx, [tmp_r_cnt]
767
 
768
        mov     ecx, 0x400000
769
        and     edx, 0x3FFFFF
770
        sub     ecx, edx
771
        cmp     ecx, ebx
772
        jbe     @f
773
        mov     ecx, ebx
774
@@:
775
        cmp     ecx, 0x8000
776
        jna     @F
777
        mov     ecx, 0x8000
778
@@:
779
        mov     ebx, [offset]
780
 
781
        push    ecx
782
        stdcall map_memEx, [proc_mem_map], \
783
                [slot], ebx, ecx, PG_MAP
784
        pop     ecx
785
 
786
        mov     esi, [offset]
787
        and     esi, 0xfff
788
        sub     eax, esi
789
        jbe     .ret
790
        cmp     ecx, eax
791
        jbe     @f
792
        mov     ecx, eax
793
        mov     [tmp_r_cnt], eax
794
@@:
795
        add     esi, [proc_mem_map]
796
        mov     edi, [buff]
797
        mov     edx, ecx
798
        rep movsb
799
        add     [r_count], edx
800
 
801
        add     [offset], edx
802
        sub     [tmp_r_cnt], edx
803
        jnz     .read_mem
804
.ret:
805
        popad
806
        mov     eax, [r_count]
807
        ret
808
endp
809
 
810
align 4
811
proc write_process_memory
812
;Input:
813
;  eax - process slot
814
;  ecx - buffer address
815
;  edx - buffer size
816
;  esi - start address in other process
817
;Output:
818
;  eax - number of bytes written
819
 
820
       locals
821
         slot   dd ?
822
         buff   dd ?
823
         w_count    dd ?
824
         offset dd ?
825
         tmp_w_cnt  dd ?
826
       endl
827
 
828
        mov     [slot], eax
829
        mov     [buff], ecx
830
        and     [w_count], 0
831
        mov     [tmp_w_cnt], edx
832
        mov     [offset], esi
833
 
834
        pushad
835
.read_mem:
836
        mov     edx, [offset]
837
        mov     ebx, [tmp_w_cnt]
838
 
839
        mov     ecx, 0x400000
840
        and     edx, 0x3FFFFF
841
        sub     ecx, edx
842
        cmp     ecx, ebx
843
        jbe     @f
844
        mov     ecx, ebx
845
@@:
846
        cmp     ecx, 0x8000
847
        jna     @F
848
        mov     ecx, 0x8000
849
@@:
850
        mov     ebx, [offset]
851
      ;     add ebx, new_app_base
852
        push    ecx
853
        stdcall map_memEx, [proc_mem_map], \
854
                [slot], ebx, ecx, PG_SW
855
        pop     ecx
856
 
857
        mov     edi, [offset]
858
        and     edi, 0xfff
859
        sub     eax, edi
860
        jbe     .ret
861
        cmp     ecx, eax
862
        jbe     @f
863
        mov     ecx, eax
864
        mov     [tmp_w_cnt], eax
865
@@:
866
        add     edi, [proc_mem_map]
867
        mov     esi, [buff]
868
        mov     edx, ecx
869
        rep movsb
870
 
871
        add     [w_count], edx
872
        add     [offset], edx
873
        sub     [tmp_w_cnt], edx
874
        jnz     .read_mem
875
.ret:
876
        popad
877
        mov     eax, [w_count]
878
        ret
879
endp
880
 
4105 Serge 881
;ebx = 1 - kernel thread
882
;ecx=thread entry point
883
;edx=thread stack pointer
884
;creation flags  0x01 - debugged
885
;                0x02 - kernel
886
 
2288 clevermous 887
align 4
888
proc new_sys_threads
889
       locals
4105 Serge 890
         slot          dd ?
891
         flags         dd ?
2288 clevermous 892
         app_cmdline   dd ? ;0x00
893
         app_path      dd ? ;0x04
894
         app_eip       dd ? ;0x08
895
         app_esp       dd ? ;0x0C
896
         app_mem       dd ? ;0x10
897
       endl
898
 
4105 Serge 899
        shl     ebx, 1
900
        mov     [flags], ebx
2288 clevermous 901
 
902
        xor     eax, eax
903
        mov     [app_eip], ecx
904
        mov     [app_cmdline], eax
905
        mov     [app_esp], edx
906
        mov     [app_path], eax
4105 Serge 907
 
3534 clevermous 908
        call    lock_application_table
2288 clevermous 909
 
5130 serge 910
        call    alloc_thread_slot
2288 clevermous 911
        test    eax, eax
912
        jz      .failed
913
 
914
        mov     [slot], eax
915
 
916
        mov     esi, [current_slot]
917
        mov     ebx, esi      ;ebx=esi - pointer to extended information about current thread
918
 
919
        mov     edi, eax
920
        shl     edi, 8
921
        add     edi, SLOT_BASE
922
        mov     edx, edi      ;edx=edi - pointer to extended infomation about new thread
923
        mov     ecx, 256/4
924
        xor     eax, eax
925
        cld
926
        rep stosd             ;clean extended information about new thread
927
        mov     esi, ebx
928
        mov     edi, edx
929
        mov     ecx, 11
930
        rep movsb             ;copy process name
931
 
5130 serge 932
        mov     eax, [ebx+APPDATA.process]
933
        mov     [edx+APPDATA.process], eax
2288 clevermous 934
 
5130 serge 935
        lea     ebx, [edx+APPDATA.list]
936
        lea     ecx, [eax+PROC.thr_list]
937
        list_add_tail ebx, ecx               ;add thread to process child's list
2288 clevermous 938
 
939
        mov     eax, [ebx+APPDATA.tls_base]
940
        test    eax, eax
941
        jz      @F
942
 
943
        push    edx
944
        stdcall user_alloc, 4096
945
        pop     edx
946
        test    eax, eax
947
        jz      .failed1;eax=0
948
@@:
949
        mov     [edx+APPDATA.tls_base], eax
950
 
951
        lea     eax, [app_cmdline]
952
        stdcall set_app_params , [slot], eax, dword 0, \
4105 Serge 953
                dword 0, [flags]
2288 clevermous 954
 
955
        mov     eax, [process_number]           ;set result
3534 clevermous 956
        call    unlock_application_table
2288 clevermous 957
        ret
958
.failed:
959
        xor     eax, eax
960
.failed1:
3534 clevermous 961
        call    unlock_application_table
2288 clevermous 962
        dec     eax     ;-1
963
        ret
964
endp
965
 
966
align 4
967
tls_app_entry:
968
 
969
        call    init_heap
970
        stdcall user_alloc, 4096
971
 
972
        mov     edx, [current_slot]
973
        mov     [edx+APPDATA.tls_base], eax
974
        mov     [tls_data_l+2], ax
975
        shr     eax, 16
976
        mov     [tls_data_l+4], al
977
        mov     [tls_data_l+7], ah
978
        mov     dx, app_tls
979
        mov     fs, dx
980
        popad
981
        iretd
982
 
983
 
984
EFL_IF      equ 0x0200
985
EFL_IOPL1   equ 0x1000
986
EFL_IOPL2   equ 0x2000
987
EFL_IOPL3   equ 0x3000
988
 
989
 
990
align 4
991
proc set_app_params stdcall,slot:dword, params:dword,\
992
            cmd_line:dword, app_path:dword, flags:dword
993
 
994
       locals
995
         pl0_stack dd ?
996
       endl
997
 
998
        stdcall kernel_alloc, RING0_STACK_SIZE+512
999
        mov     [pl0_stack], eax
1000
 
1001
        lea     edi, [eax+RING0_STACK_SIZE]
1002
 
1003
        mov     eax, [slot]
1004
        mov     ebx, eax
1005
 
1006
        shl     eax, 8
1007
        mov     [eax+SLOT_BASE+APPDATA.fpu_state], edi
1008
        mov     [eax+SLOT_BASE+APPDATA.exc_handler], 0
1009
        mov     [eax+SLOT_BASE+APPDATA.except_mask], 0
3296 clevermous 1010
        mov     [eax+SLOT_BASE+APPDATA.terminate_protection], 80000001h
2288 clevermous 1011
 
1012
;set default io permission map
1013
        mov     ecx, [SLOT_BASE+256+APPDATA.io_map]
1014
        mov     [eax+SLOT_BASE+APPDATA.io_map], ecx
1015
        mov     ecx, [SLOT_BASE+256+APPDATA.io_map+4]
1016
        mov     [eax+SLOT_BASE+APPDATA.io_map+4], ecx
1017
 
1018
        mov     esi, fpu_data
1019
        mov     ecx, 512/4
1020
        rep movsd
1021
 
1022
        cmp     ebx, [TASK_COUNT]
1023
        jle     .noinc
1024
        inc     dword [TASK_COUNT]     ;update number of processes
1025
.noinc:
1026
        shl     ebx, 8
1027
        lea     edx, [ebx+SLOT_BASE+APP_EV_OFFSET]
1028
        mov     [SLOT_BASE+APPDATA.fd_ev+ebx], edx
1029
        mov     [SLOT_BASE+APPDATA.bk_ev+ebx], edx
1030
 
1031
        add     edx, APP_OBJ_OFFSET-APP_EV_OFFSET
1032
        mov     [SLOT_BASE+APPDATA.fd_obj+ebx], edx
1033
        mov     [SLOT_BASE+APPDATA.bk_obj+ebx], edx
1034
 
1035
        mov     ecx, [def_cursor]
1036
        mov     [SLOT_BASE+APPDATA.cursor+ebx], ecx
1037
        mov     eax, [pl0_stack]
1038
        mov     [SLOT_BASE+APPDATA.pl0_stack+ebx], eax
1039
        add     eax, RING0_STACK_SIZE
1040
        mov     [SLOT_BASE+APPDATA.saved_esp0+ebx], eax
1041
 
1042
        push    ebx
1043
        stdcall kernel_alloc, 0x1000
1044
        pop     ebx
1045
        mov     esi, [current_slot]
1046
        mov     esi, [esi+APPDATA.cur_dir]
1047
        mov     ecx, 0x1000/4
1048
        mov     edi, eax
1049
        mov     [ebx+SLOT_BASE+APPDATA.cur_dir], eax
1050
        rep movsd
1051
 
1052
        shr     ebx, 3
1053
        mov     eax, new_app_base
1054
        mov     dword [CURRENT_TASK+ebx+0x10], eax
1055
 
1056
.add_command_line:
1057
        mov     edx, [params]
1058
        mov     edx, [edx] ;app_cmdline
1059
        test    edx, edx
1060
        jz      @f     ;application doesn't need parameters
1061
 
1062
        mov     eax, edx
1063
        add     eax, 256
1064
        jc      @f
1065
 
5130 serge 1066
;        cmp     eax, [SLOT_BASE+APPDATA.mem_size+ebx*8]
1067
;        ja      @f
2288 clevermous 1068
 
3828 mario79 1069
        mov     eax, [cmd_line]
1070
 
1071
        cmp     [edx], dword 0xffffffff ; extended destination tag
1072
        jne     .no_ext_dest
1073
 
1074
        mov     edx, [edx+4] ; extended destination for cmdline
1075
        jmp     .continue
1076
 
1077
.no_ext_dest:
1078
        mov     [eax-12], dword 255
1079
.continue:
2288 clevermous 1080
        mov     byte [edx], 0  ;force empty string if no cmdline given
3828 mario79 1081
 
2288 clevermous 1082
        test    eax, eax
1083
        jz      @f
3828 mario79 1084
;--------------------------------------
1085
        cmp     [eax-4], dword 0xffffffff ; cmdline_flag
1086
        jne     .old_copy
1087
 
1088
        push    eax
1089
        stdcall strncpy, edx, [eax-8], [eax-12]
1090
        pop     eax
1091
 
1092
        stdcall kernel_free, [eax-8]
1093
        jmp     @f
1094
 
1095
.old_copy:
1096
;--------------------------------------
2288 clevermous 1097
        stdcall strncpy, edx, eax, 256
1098
@@:
1099
        mov     edx, [params]
1100
        mov     edx, [edx+4];app_path
1101
        test    edx, edx
1102
        jz      @F     ;application don't need path of file
1103
        mov     eax, edx
1104
        add     eax, 1024
1105
        jc      @f
5130 serge 1106
;        cmp     eax, [SLOT_BASE+APPDATA.mem_size+ebx*8]
1107
;        ja      @f
2288 clevermous 1108
        stdcall strncpy, edx, [app_path], 1024
1109
@@:
1110
        mov     ebx, [slot]
1111
        mov     eax, ebx
1112
        shl     ebx, 5
1113
        lea     ecx, [draw_data+ebx];ecx - pointer to draw data
1114
 
1115
        mov     edx, irq0.return
1116
        cmp     [ebx*8+SLOT_BASE+APPDATA.tls_base], -1
1117
        jne     @F
1118
        mov     edx, tls_app_entry
1119
@@:
1120
; set window state to 'normal' (non-minimized/maximized/rolled-up) state
1121
        mov     [ebx+window_data+WDATA.fl_wstate], WSTATE_NORMAL
1122
        mov     [ebx+window_data+WDATA.fl_redraw], 1
1123
        add     ebx, CURRENT_TASK     ;ebx - pointer to information about process
1124
        mov     [ebx+TASKDATA.wnd_number], al;set window number on screen = process slot
1125
 
1126
        mov     [ebx+TASKDATA.event_mask], dword 1+2+4;set default event flags (see 40 function)
1127
 
1128
        inc     dword [process_number]
1129
        mov     eax, [process_number]
1130
        mov     [ebx+4], eax    ;set PID
1131
 
1132
;set draw data to full screen
1133
        xor     eax, eax
1134
        mov     [ecx+0], dword eax
1135
        mov     [ecx+4], dword eax
1136
        mov     eax, [Screen_Max_X]
1137
        mov     [ecx+8], eax
1138
        mov     eax, [Screen_Max_Y]
1139
        mov     [ecx+12], eax
1140
 
1141
        mov     ebx, [pl0_stack]
1142
        mov     esi, [params]
1143
        lea     ecx, [ebx+REG_EIP]
1144
        xor     eax, eax
1145
 
1146
        mov     [ebx+REG_RET], edx
1147
        mov     [ebx+REG_EDI], eax
1148
        mov     [ebx+REG_ESI], eax
1149
        mov     [ebx+REG_EBP], eax
1150
        mov     [ebx+REG_ESP], ecx;ebx+REG_EIP
1151
        mov     [ebx+REG_EBX], eax
1152
        mov     [ebx+REG_EDX], eax
1153
        mov     [ebx+REG_ECX], eax
1154
        mov     [ebx+REG_EAX], eax
1155
 
4105 Serge 1156
        mov     eax, [esi+0x08]             ;app_eip
1157
        mov     [ebx+REG_EIP], eax          ;app_entry
2288 clevermous 1158
        mov     [ebx+REG_CS], dword app_code
3534 clevermous 1159
        mov     ecx, USER_PRIORITY
4105 Serge 1160
 
1161
        test    byte [flags], 2
1162
        jz      @F
1163
 
3325 clevermous 1164
        mov     [ebx+REG_CS], dword os_code ; kernel thread
3534 clevermous 1165
        mov     ecx, MAX_PRIORITY
4105 Serge 1166
 
3325 clevermous 1167
@@:
2288 clevermous 1168
        mov     [ebx+REG_EFLAGS], dword EFL_IOPL1+EFL_IF
1169
 
1170
        mov     eax, [esi+0x0C]  ;app_esp
1171
        mov     [ebx+REG_APP_ESP], eax;app_stack
1172
        mov     [ebx+REG_SS], dword app_data
1173
 
3534 clevermous 1174
        lea     edx, [ebx+REG_RET]
2288 clevermous 1175
        mov     ebx, [slot]
1176
        shl     ebx, 5
3534 clevermous 1177
        mov     [ebx*8+SLOT_BASE+APPDATA.saved_esp], edx
2288 clevermous 1178
 
3534 clevermous 1179
        xor     edx, edx; process state - running
2288 clevermous 1180
; set if debuggee
1181
        test    byte [flags], 1
1182
        jz      .no_debug
3534 clevermous 1183
        inc     edx ; process state - suspended
2288 clevermous 1184
        mov     eax, [CURRENT_TASK]
1185
        mov     [SLOT_BASE+ebx*8+APPDATA.debugger_slot], eax
1186
.no_debug:
3534 clevermous 1187
        mov     [CURRENT_TASK+ebx+TASKDATA.state], dl
1188
        lea     edx, [SLOT_BASE+ebx*8]
1189
        call    scheduler_add_thread
2288 clevermous 1190
        ret
1191
endp
1192
 
1193
 
1194
align 4
1195
 
1196
get_stack_base:
1197
        mov     eax, [current_slot]
1198
        mov     eax, [eax+APPDATA.pl0_stack]
1199
        ret
1200
 
1201
 
1202
include "debug.inc"