Subversion Repositories Kolibri OS

Rev

Rev 5350 | Rev 5363 | 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: 5356 $
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]
5202 serge 475
        mov     ecx, (PROC.ht_next-PROC.heap_lock)/4
5130 serge 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
 
5202 serge 485
        mov     ecx, (PROC.pdt_0 - PROC.htab)/4
486
@@:
487
        stosd
488
        inc     eax
489
        cmp     eax, ecx
490
        jbe     @B
491
 
492
        mov     [edi-4096+PROC.ht_next], 3      ;reserve handles for stdin stdout and stderr
5130 serge 493
        mov     eax, edi
494
        call    get_pg_addr
495
        mov     [edi-4096+PROC.pdt_0_phys], eax
496
 
2288 clevermous 497
        mov     ecx, (OS_BASE shr 20)/4
5130 serge 498
        xor     eax, eax
499
        rep stosd
500
 
501
        mov     ecx, (OS_BASE shr 20)/4
502
        mov     esi, sys_proc+PROC.pdt_0+(OS_BASE shr 20)
2288 clevermous 503
        rep movsd
504
 
5130 serge 505
        mov     eax, [edi-8192+PROC.pdt_0_phys]
5356 serge 506
        or      eax, PG_SWR
2288 clevermous 507
        mov     [edi-4096+(page_tabs shr 20)], eax
508
 
5130 serge 509
        lea     eax, [edi-8192]
2288 clevermous 510
        call    set_cr3
511
 
512
        mov     edx, [app_tabs]
5130 serge 513
        xor     edi, edi
2288 clevermous 514
@@:
515
        call    alloc_page
516
        test    eax, eax
517
        jz      .fail
518
 
519
        stdcall map_page_table, edi, eax
520
        add     edi, 0x00400000
521
        dec     edx
522
        jnz     @B
523
 
5130 serge 524
        mov     edi, page_tabs
2288 clevermous 525
 
526
        mov     ecx, [app_tabs]
527
        shl     ecx, 10
528
        xor     eax, eax
529
        rep stosd
530
 
531
        mov     ecx, [img_pages]
5356 serge 532
        mov     ebx, PG_UWR
5130 serge 533
        xor     edx, edx
2288 clevermous 534
        mov     esi, [img_base]
535
        shr     esi, 10
536
        add     esi, page_tabs
5130 serge 537
        mov     edi, page_tabs
2288 clevermous 538
.remap:
539
        lodsd
4424 Serge 540
        and     eax, 0xFFFFF000
2288 clevermous 541
        or      eax, ebx; force user level r/w access
542
        stosd
543
        add     edx, 0x1000
544
        dec     [app_pages]
545
        dec     ecx
546
        jnz     .remap
547
 
548
        mov     ecx, [app_pages]
549
        test    ecx, ecx
550
        jz      .done
551
 
552
.alloc:
553
        call    alloc_page
554
        test    eax, eax
555
        jz      .fail
556
 
5356 serge 557
        stdcall map_page, edx, eax, dword PG_UWR
2288 clevermous 558
        add     edx, 0x1000
559
        dec     [app_pages]
560
        jnz     .alloc
561
 
562
.done:
563
        mov     ecx, pg_data.mutex
564
        call    mutex_unlock
5130 serge 565
        mov     eax, [process]
566
 
567
        pop     edi
568
        pop     esi
569
        pop     ebx
2288 clevermous 570
        ret
571
.fail:
572
        mov     ecx, pg_data.mutex
573
        call    mutex_unlock
5130 serge 574
        cmp     [process], 0
2288 clevermous 575
        je      @f
5130 serge 576
;;        stdcall destroy_app_space, [dir_addr], 0
2288 clevermous 577
@@:
578
        xor     eax, eax
5130 serge 579
        pop     edi
580
        pop     esi
581
        pop     ebx
2288 clevermous 582
        ret
583
endp
584
 
585
align 4
586
set_cr3:
5130 serge 587
        pushfd
588
        cli
2288 clevermous 589
        mov     ebx, [current_slot]
5130 serge 590
        mov     [current_process], eax
591
        mov     [ebx+APPDATA.process], eax
592
        mov     eax, [eax+PROC.pdt_0_phys]
2288 clevermous 593
        mov     cr3, eax
5130 serge 594
        popfd
2288 clevermous 595
        ret
596
 
597
align 4
598
proc destroy_page_table stdcall, pg_tab:dword
599
 
600
        push    esi
601
 
602
        mov     esi, [pg_tab]
603
        mov     ecx, 1024
604
.free:
605
        mov     eax, [esi]
606
        test    eax, 1
607
        jz      .next
5130 serge 608
        test    eax, 2
609
        jz      .next
2288 clevermous 610
        test    eax, 1 shl 9
611
        jnz     .next                     ;skip shared pages
612
        call    free_page
613
.next:
614
        add     esi, 4
615
        dec     ecx
616
        jnz     .free
617
        pop     esi
618
        ret
619
endp
620
 
621
align 4
5130 serge 622
destroy_process: ;fastcall ecx= ptr to process
2288 clevermous 623
 
5130 serge 624
        lea     eax, [ecx+PROC.thr_list]
625
        cmp     eax, [eax+LHEAD.next]
626
        jne     .exit
2288 clevermous 627
 
5130 serge 628
align 4
629
.internal:
630
        push    ecx
2288 clevermous 631
 
5130 serge 632
        mov     esi, [ecx+PROC.dlls_list_ptr]
633
        call    destroy_all_hdlls
2288 clevermous 634
 
5130 serge 635
;        mov     ecx, pg_data.mutex
636
;        call    mutex_lock
637
 
638
        mov     esi, [esp]
639
        add     esi, PROC.pdt_0
640
        mov     edi, (0x80000000 shr 20)/4
2288 clevermous 641
.destroy:
642
        mov     eax, [esi]
643
        test    eax, 1
644
        jz      .next
645
        and     eax, not 0xFFF
5356 serge 646
        stdcall map_page, [tmp_task_ptab], eax, PG_SWR
2288 clevermous 647
        stdcall destroy_page_table, [tmp_task_ptab]
648
        mov     eax, [esi]
649
        call    free_page
650
.next:
651
        add     esi, 4
652
        dec     edi
653
        jnz     .destroy
654
 
5130 serge 655
        call    kernel_free     ;ecx still in stack
656
        stdcall map_page, [tmp_task_ptab], 0, PG_UNMAP
657
 ;       mov     ecx, pg_data.mutex
658
 ;       call    mutex_unlock
659
 
2288 clevermous 660
.exit:
661
        ret
662
 
663
align 4
664
get_pid:
665
        mov     eax, [TASK_BASE]
666
        mov     eax, [eax+TASKDATA.pid]
667
        ret
668
 
669
pid_to_slot:
670
;Input:
671
;  eax - pid of process
672
;Output:
673
;  eax - slot of process or 0 if process don't exists
674
;Search process by PID.
675
        push    ebx
676
        push    ecx
677
        mov     ebx, [TASK_COUNT]
678
        shl     ebx, 5
679
        mov     ecx, 2*32
680
 
681
.loop:
682
;ecx=offset of current process info entry
683
;ebx=maximum permitted offset
684
        cmp     byte [CURRENT_TASK+ecx+0xa], 9
685
        jz      .endloop ;skip empty slots
686
        cmp     [CURRENT_TASK+ecx+0x4], eax;check PID
687
        jz      .pid_found
688
.endloop:
689
        add     ecx, 32
690
        cmp     ecx, ebx
691
        jle     .loop
692
 
693
        pop     ecx
694
        pop     ebx
695
        xor     eax, eax
696
        ret
697
 
698
.pid_found:
699
        shr     ecx, 5
700
        mov     eax, ecx ;convert offset to index of slot
701
        pop     ecx
702
        pop     ebx
703
        ret
704
 
705
check_region:
706
;input:
707
;  esi - start of buffer
708
;  edx - size of buffer
709
;result:
710
;  eax = 1 region lays in app memory
711
;  eax = 0 region don't lays in app memory
5130 serge 712
 
713
        mov     eax, 1
714
        ret
715
if 0
2288 clevermous 716
        mov     eax, [CURRENT_TASK]
717
;     jmp  check_process_region
718
;-----------------------------------------------------------------------------
719
;check_process_region:
720
;input:
721
;  eax - slot
722
;  esi - start of buffer
723
;  edx - size of buffer
724
;result:
725
;  eax = 1 region lays in app memory
726
;  eax = 0 region don't lays in app memory
727
 
728
        test    edx, edx
729
        jle     .ok
730
        shl     eax, 5
731
        cmp     word [CURRENT_TASK+eax+0xa], 0
732
        jnz     .failed
733
        shl     eax, 3
734
        mov     eax, [SLOT_BASE+eax+0xb8]
735
        test    eax, eax
736
        jz      .failed
737
 
738
        mov     eax, 1
739
        ret
740
.ok:
741
        mov     eax, 1
742
        ret
743
.failed:
744
        xor     eax, eax
745
        ret
5130 serge 746
end if
2288 clevermous 747
 
748
align 4
749
proc read_process_memory
750
;Input:
751
;  eax - process slot
752
;  ecx - buffer address
753
;  edx - buffer size
754
;  esi - start address in other process
755
;Output:
756
;  eax - number of bytes read.
757
       locals
758
         slot   dd ?
759
         buff   dd ?
760
         r_count    dd ?
761
         offset dd ?
762
         tmp_r_cnt  dd ?
763
       endl
764
 
765
        mov     [slot], eax
766
        mov     [buff], ecx
767
        and     [r_count], 0
768
        mov     [tmp_r_cnt], edx
769
        mov     [offset], esi
770
 
771
        pushad
772
.read_mem:
773
        mov     edx, [offset]
774
        mov     ebx, [tmp_r_cnt]
775
 
776
        mov     ecx, 0x400000
777
        and     edx, 0x3FFFFF
778
        sub     ecx, edx
779
        cmp     ecx, ebx
780
        jbe     @f
781
        mov     ecx, ebx
782
@@:
783
        cmp     ecx, 0x8000
784
        jna     @F
785
        mov     ecx, 0x8000
786
@@:
787
        mov     ebx, [offset]
788
 
789
        push    ecx
790
        stdcall map_memEx, [proc_mem_map], \
5356 serge 791
                [slot], ebx, ecx, PG_READ
2288 clevermous 792
        pop     ecx
793
 
794
        mov     esi, [offset]
795
        and     esi, 0xfff
796
        sub     eax, esi
797
        jbe     .ret
798
        cmp     ecx, eax
799
        jbe     @f
800
        mov     ecx, eax
801
        mov     [tmp_r_cnt], eax
802
@@:
803
        add     esi, [proc_mem_map]
804
        mov     edi, [buff]
805
        mov     edx, ecx
806
        rep movsb
807
        add     [r_count], edx
808
 
809
        add     [offset], edx
810
        sub     [tmp_r_cnt], edx
811
        jnz     .read_mem
812
.ret:
813
        popad
814
        mov     eax, [r_count]
815
        ret
816
endp
817
 
818
align 4
819
proc write_process_memory
820
;Input:
821
;  eax - process slot
822
;  ecx - buffer address
823
;  edx - buffer size
824
;  esi - start address in other process
825
;Output:
826
;  eax - number of bytes written
827
 
828
       locals
829
         slot   dd ?
830
         buff   dd ?
831
         w_count    dd ?
832
         offset dd ?
833
         tmp_w_cnt  dd ?
834
       endl
835
 
836
        mov     [slot], eax
837
        mov     [buff], ecx
838
        and     [w_count], 0
839
        mov     [tmp_w_cnt], edx
840
        mov     [offset], esi
841
 
842
        pushad
843
.read_mem:
844
        mov     edx, [offset]
845
        mov     ebx, [tmp_w_cnt]
846
 
847
        mov     ecx, 0x400000
848
        and     edx, 0x3FFFFF
849
        sub     ecx, edx
850
        cmp     ecx, ebx
851
        jbe     @f
852
        mov     ecx, ebx
853
@@:
854
        cmp     ecx, 0x8000
855
        jna     @F
856
        mov     ecx, 0x8000
857
@@:
858
        mov     ebx, [offset]
859
      ;     add ebx, new_app_base
860
        push    ecx
861
        stdcall map_memEx, [proc_mem_map], \
5356 serge 862
                [slot], ebx, ecx, PG_SWR
2288 clevermous 863
        pop     ecx
864
 
865
        mov     edi, [offset]
866
        and     edi, 0xfff
867
        sub     eax, edi
868
        jbe     .ret
869
        cmp     ecx, eax
870
        jbe     @f
871
        mov     ecx, eax
872
        mov     [tmp_w_cnt], eax
873
@@:
874
        add     edi, [proc_mem_map]
875
        mov     esi, [buff]
876
        mov     edx, ecx
877
        rep movsb
878
 
879
        add     [w_count], edx
880
        add     [offset], edx
881
        sub     [tmp_w_cnt], edx
882
        jnz     .read_mem
883
.ret:
884
        popad
885
        mov     eax, [w_count]
886
        ret
887
endp
888
 
4105 Serge 889
;ebx = 1 - kernel thread
890
;ecx=thread entry point
891
;edx=thread stack pointer
892
;creation flags  0x01 - debugged
893
;                0x02 - kernel
894
 
2288 clevermous 895
align 4
896
proc new_sys_threads
897
       locals
4105 Serge 898
         slot          dd ?
899
         flags         dd ?
2288 clevermous 900
         app_cmdline   dd ? ;0x00
901
         app_path      dd ? ;0x04
902
         app_eip       dd ? ;0x08
903
         app_esp       dd ? ;0x0C
904
         app_mem       dd ? ;0x10
905
       endl
906
 
4105 Serge 907
        shl     ebx, 1
908
        mov     [flags], ebx
2288 clevermous 909
 
910
        xor     eax, eax
911
        mov     [app_eip], ecx
912
        mov     [app_cmdline], eax
913
        mov     [app_esp], edx
914
        mov     [app_path], eax
4105 Serge 915
 
3534 clevermous 916
        call    lock_application_table
2288 clevermous 917
 
5130 serge 918
        call    alloc_thread_slot
2288 clevermous 919
        test    eax, eax
920
        jz      .failed
921
 
922
        mov     [slot], eax
923
 
924
        mov     esi, [current_slot]
925
        mov     ebx, esi      ;ebx=esi - pointer to extended information about current thread
926
 
927
        mov     edi, eax
928
        shl     edi, 8
929
        add     edi, SLOT_BASE
930
        mov     edx, edi      ;edx=edi - pointer to extended infomation about new thread
931
        mov     ecx, 256/4
932
        xor     eax, eax
933
        cld
934
        rep stosd             ;clean extended information about new thread
935
        mov     esi, ebx
936
        mov     edi, edx
937
        mov     ecx, 11
938
        rep movsb             ;copy process name
939
 
5130 serge 940
        mov     eax, [ebx+APPDATA.process]
941
        mov     [edx+APPDATA.process], eax
2288 clevermous 942
 
5130 serge 943
        lea     ebx, [edx+APPDATA.list]
944
        lea     ecx, [eax+PROC.thr_list]
945
        list_add_tail ebx, ecx               ;add thread to process child's list
2288 clevermous 946
 
947
        mov     eax, [ebx+APPDATA.tls_base]
948
        test    eax, eax
949
        jz      @F
950
 
951
        push    edx
952
        stdcall user_alloc, 4096
953
        pop     edx
954
        test    eax, eax
955
        jz      .failed1;eax=0
956
@@:
957
        mov     [edx+APPDATA.tls_base], eax
958
 
959
        lea     eax, [app_cmdline]
960
        stdcall set_app_params , [slot], eax, dword 0, \
4105 Serge 961
                dword 0, [flags]
2288 clevermous 962
 
963
        mov     eax, [process_number]           ;set result
3534 clevermous 964
        call    unlock_application_table
2288 clevermous 965
        ret
966
.failed:
967
        xor     eax, eax
968
.failed1:
3534 clevermous 969
        call    unlock_application_table
2288 clevermous 970
        dec     eax     ;-1
971
        ret
972
endp
973
 
974
align 4
975
tls_app_entry:
976
 
977
        call    init_heap
978
        stdcall user_alloc, 4096
979
 
980
        mov     edx, [current_slot]
981
        mov     [edx+APPDATA.tls_base], eax
982
        mov     [tls_data_l+2], ax
983
        shr     eax, 16
984
        mov     [tls_data_l+4], al
985
        mov     [tls_data_l+7], ah
986
        mov     dx, app_tls
987
        mov     fs, dx
988
        popad
989
        iretd
990
 
991
 
992
EFL_IF      equ 0x0200
993
EFL_IOPL1   equ 0x1000
994
EFL_IOPL2   equ 0x2000
995
EFL_IOPL3   equ 0x3000
996
 
997
 
998
align 4
999
proc set_app_params stdcall,slot:dword, params:dword,\
1000
            cmd_line:dword, app_path:dword, flags:dword
1001
 
1002
       locals
1003
         pl0_stack dd ?
1004
       endl
1005
 
1006
        stdcall kernel_alloc, RING0_STACK_SIZE+512
1007
        mov     [pl0_stack], eax
1008
 
1009
        lea     edi, [eax+RING0_STACK_SIZE]
1010
 
1011
        mov     eax, [slot]
1012
        mov     ebx, eax
1013
 
1014
        shl     eax, 8
1015
        mov     [eax+SLOT_BASE+APPDATA.fpu_state], edi
1016
        mov     [eax+SLOT_BASE+APPDATA.exc_handler], 0
1017
        mov     [eax+SLOT_BASE+APPDATA.except_mask], 0
3296 clevermous 1018
        mov     [eax+SLOT_BASE+APPDATA.terminate_protection], 80000001h
2288 clevermous 1019
 
1020
;set default io permission map
1021
        mov     ecx, [SLOT_BASE+256+APPDATA.io_map]
1022
        mov     [eax+SLOT_BASE+APPDATA.io_map], ecx
1023
        mov     ecx, [SLOT_BASE+256+APPDATA.io_map+4]
1024
        mov     [eax+SLOT_BASE+APPDATA.io_map+4], ecx
1025
 
1026
        mov     esi, fpu_data
1027
        mov     ecx, 512/4
1028
        rep movsd
1029
 
1030
        cmp     ebx, [TASK_COUNT]
1031
        jle     .noinc
1032
        inc     dword [TASK_COUNT]     ;update number of processes
1033
.noinc:
1034
        shl     ebx, 8
1035
        lea     edx, [ebx+SLOT_BASE+APP_EV_OFFSET]
1036
        mov     [SLOT_BASE+APPDATA.fd_ev+ebx], edx
1037
        mov     [SLOT_BASE+APPDATA.bk_ev+ebx], edx
1038
 
1039
        add     edx, APP_OBJ_OFFSET-APP_EV_OFFSET
1040
        mov     [SLOT_BASE+APPDATA.fd_obj+ebx], edx
1041
        mov     [SLOT_BASE+APPDATA.bk_obj+ebx], edx
1042
 
1043
        mov     ecx, [def_cursor]
1044
        mov     [SLOT_BASE+APPDATA.cursor+ebx], ecx
1045
        mov     eax, [pl0_stack]
1046
        mov     [SLOT_BASE+APPDATA.pl0_stack+ebx], eax
1047
        add     eax, RING0_STACK_SIZE
1048
        mov     [SLOT_BASE+APPDATA.saved_esp0+ebx], eax
1049
 
1050
        push    ebx
1051
        stdcall kernel_alloc, 0x1000
1052
        pop     ebx
1053
        mov     esi, [current_slot]
1054
        mov     esi, [esi+APPDATA.cur_dir]
1055
        mov     ecx, 0x1000/4
1056
        mov     edi, eax
1057
        mov     [ebx+SLOT_BASE+APPDATA.cur_dir], eax
1058
        rep movsd
1059
 
1060
        shr     ebx, 3
1061
        mov     eax, new_app_base
1062
        mov     dword [CURRENT_TASK+ebx+0x10], eax
1063
 
1064
.add_command_line:
1065
        mov     edx, [params]
1066
        mov     edx, [edx] ;app_cmdline
1067
        test    edx, edx
1068
        jz      @f     ;application doesn't need parameters
1069
 
1070
        mov     eax, edx
1071
        add     eax, 256
1072
        jc      @f
1073
 
5130 serge 1074
;        cmp     eax, [SLOT_BASE+APPDATA.mem_size+ebx*8]
1075
;        ja      @f
2288 clevermous 1076
 
3828 mario79 1077
        mov     eax, [cmd_line]
1078
 
1079
        cmp     [edx], dword 0xffffffff ; extended destination tag
1080
        jne     .no_ext_dest
1081
 
1082
        mov     edx, [edx+4] ; extended destination for cmdline
1083
        jmp     .continue
1084
 
1085
.no_ext_dest:
1086
        mov     [eax-12], dword 255
1087
.continue:
2288 clevermous 1088
        mov     byte [edx], 0  ;force empty string if no cmdline given
3828 mario79 1089
 
2288 clevermous 1090
        test    eax, eax
1091
        jz      @f
3828 mario79 1092
;--------------------------------------
1093
        cmp     [eax-4], dword 0xffffffff ; cmdline_flag
1094
        jne     .old_copy
1095
 
1096
        push    eax
1097
        stdcall strncpy, edx, [eax-8], [eax-12]
1098
        pop     eax
1099
 
1100
        stdcall kernel_free, [eax-8]
1101
        jmp     @f
1102
 
1103
.old_copy:
1104
;--------------------------------------
2288 clevermous 1105
        stdcall strncpy, edx, eax, 256
1106
@@:
1107
        mov     edx, [params]
1108
        mov     edx, [edx+4];app_path
1109
        test    edx, edx
1110
        jz      @F     ;application don't need path of file
1111
        mov     eax, edx
1112
        add     eax, 1024
1113
        jc      @f
5130 serge 1114
;        cmp     eax, [SLOT_BASE+APPDATA.mem_size+ebx*8]
1115
;        ja      @f
2288 clevermous 1116
        stdcall strncpy, edx, [app_path], 1024
1117
@@:
1118
        mov     ebx, [slot]
1119
        mov     eax, ebx
1120
        shl     ebx, 5
1121
        lea     ecx, [draw_data+ebx];ecx - pointer to draw data
1122
 
1123
        mov     edx, irq0.return
1124
        cmp     [ebx*8+SLOT_BASE+APPDATA.tls_base], -1
1125
        jne     @F
1126
        mov     edx, tls_app_entry
1127
@@:
1128
; set window state to 'normal' (non-minimized/maximized/rolled-up) state
1129
        mov     [ebx+window_data+WDATA.fl_wstate], WSTATE_NORMAL
1130
        mov     [ebx+window_data+WDATA.fl_redraw], 1
1131
        add     ebx, CURRENT_TASK     ;ebx - pointer to information about process
1132
        mov     [ebx+TASKDATA.wnd_number], al;set window number on screen = process slot
1133
 
1134
        mov     [ebx+TASKDATA.event_mask], dword 1+2+4;set default event flags (see 40 function)
1135
 
1136
        inc     dword [process_number]
1137
        mov     eax, [process_number]
1138
        mov     [ebx+4], eax    ;set PID
1139
 
1140
;set draw data to full screen
1141
        xor     eax, eax
1142
        mov     [ecx+0], dword eax
1143
        mov     [ecx+4], dword eax
5350 serge 1144
        mov     eax, [screen_workarea.right]
2288 clevermous 1145
        mov     [ecx+8], eax
5350 serge 1146
        mov     eax, [screen_workarea.bottom]
2288 clevermous 1147
        mov     [ecx+12], eax
1148
 
1149
        mov     ebx, [pl0_stack]
1150
        mov     esi, [params]
1151
        lea     ecx, [ebx+REG_EIP]
1152
        xor     eax, eax
1153
 
1154
        mov     [ebx+REG_RET], edx
1155
        mov     [ebx+REG_EDI], eax
1156
        mov     [ebx+REG_ESI], eax
1157
        mov     [ebx+REG_EBP], eax
1158
        mov     [ebx+REG_ESP], ecx;ebx+REG_EIP
1159
        mov     [ebx+REG_EBX], eax
1160
        mov     [ebx+REG_EDX], eax
1161
        mov     [ebx+REG_ECX], eax
1162
        mov     [ebx+REG_EAX], eax
1163
 
4105 Serge 1164
        mov     eax, [esi+0x08]             ;app_eip
1165
        mov     [ebx+REG_EIP], eax          ;app_entry
2288 clevermous 1166
        mov     [ebx+REG_CS], dword app_code
3534 clevermous 1167
        mov     ecx, USER_PRIORITY
4105 Serge 1168
 
1169
        test    byte [flags], 2
1170
        jz      @F
1171
 
3325 clevermous 1172
        mov     [ebx+REG_CS], dword os_code ; kernel thread
3534 clevermous 1173
        mov     ecx, MAX_PRIORITY
4105 Serge 1174
 
3325 clevermous 1175
@@:
2288 clevermous 1176
        mov     [ebx+REG_EFLAGS], dword EFL_IOPL1+EFL_IF
1177
 
1178
        mov     eax, [esi+0x0C]  ;app_esp
1179
        mov     [ebx+REG_APP_ESP], eax;app_stack
1180
        mov     [ebx+REG_SS], dword app_data
1181
 
3534 clevermous 1182
        lea     edx, [ebx+REG_RET]
2288 clevermous 1183
        mov     ebx, [slot]
1184
        shl     ebx, 5
3534 clevermous 1185
        mov     [ebx*8+SLOT_BASE+APPDATA.saved_esp], edx
2288 clevermous 1186
 
3534 clevermous 1187
        xor     edx, edx; process state - running
2288 clevermous 1188
; set if debuggee
1189
        test    byte [flags], 1
1190
        jz      .no_debug
3534 clevermous 1191
        inc     edx ; process state - suspended
2288 clevermous 1192
        mov     eax, [CURRENT_TASK]
1193
        mov     [SLOT_BASE+ebx*8+APPDATA.debugger_slot], eax
1194
.no_debug:
3534 clevermous 1195
        mov     [CURRENT_TASK+ebx+TASKDATA.state], dl
1196
        lea     edx, [SLOT_BASE+ebx*8]
1197
        call    scheduler_add_thread
2288 clevermous 1198
        ret
1199
endp
1200
 
1201
 
1202
align 4
1203
 
1204
get_stack_base:
1205
        mov     eax, [current_slot]
1206
        mov     eax, [eax+APPDATA.pl0_stack]
1207
        ret
1208
 
1209
 
1210
include "debug.inc"