Kernel/timers - Cleaning up timer code... might have made more mess
[tpg/acess2.git] / KernelLand / Kernel / arch / x86 / mm_virt.c
1 /*
2  * AcessOS Microkernel Version
3  * mm_virt.c
4  * 
5  * Memory Map
6  * 0xE0 - Kernel Base
7  * 0xF0 - Kernel Stacks
8  * 0xFD - Fractals
9  * 0xFE - Unused
10  * 0xFF - System Calls / Kernel's User Code
11  */
12 #define DEBUG   0
13 #define SANITY  1
14 #include <acess.h>
15 #include <mm_virt.h>
16 #include <mm_phys.h>
17 #include <proc.h>
18 #include <hal_proc.h>
19 #include <arch_int.h>
20
21 #define TAB     22
22
23 #define WORKER_STACKS           0x00100000      // Thread0 Only!
24 #define WORKER_STACK_SIZE       MM_KERNEL_STACK_SIZE
25 #define WORKER_STACKS_END       0xB0000000
26 #define NUM_WORKER_STACKS       ((WORKER_STACKS_END-WORKER_STACKS)/WORKER_STACK_SIZE)
27
28 #define PAE_PAGE_TABLE_ADDR     0xFC000000      // 16 MiB
29 #define PAE_PAGE_DIR_ADDR       0xFCFC0000      // 16 KiB
30 #define PAE_PAGE_PDPT_ADDR      0xFCFC3F00      // 32 bytes
31 #define PAE_TMP_PDPT_ADDR       0xFCFC3F20      // 32 bytes
32 #define PAE_TMP_DIR_ADDR        0xFCFE0000      // 16 KiB
33 #define PAE_TMP_TABLE_ADDR      0xFD000000      // 16 MiB
34
35 #define PAGE_TABLE_ADDR 0xFC000000
36 #define PAGE_DIR_ADDR   0xFC3F0000
37 #define PAGE_CR3_ADDR   0xFC3F0FC0
38 #define TMP_CR3_ADDR    0xFC3F0FC4      // Part of core instead of temp
39 #define TMP_DIR_ADDR    0xFC3F1000      // Same
40 #define TMP_TABLE_ADDR  0xFC400000
41
42 #define HW_MAP_ADDR             0xFE000000
43 #define HW_MAP_MAX              0xFFEF0000
44 #define NUM_HW_PAGES    ((HW_MAP_MAX-HW_MAP_ADDR)/0x1000)
45 #define TEMP_MAP_ADDR   0xFFEF0000      // Allows 16 "temp" pages
46 #define NUM_TEMP_PAGES  16
47 #define LAST_BLOCK_ADDR 0xFFFF0000      // Free space for kernel provided user code/ *(-1) protection
48
49 #define PF_PRESENT      0x1
50 #define PF_WRITE        0x2
51 #define PF_USER         0x4
52 #define PF_GLOBAL       0x80
53 #define PF_COW          0x200
54 #define PF_NOPAGE       0x400
55
56 #define INVLPG(addr)    __asm__ __volatile__ ("invlpg (%0)"::"r"(addr))
57
58 #define GET_TEMP_MAPPING(cr3) do { \
59         __ASM__("cli"); \
60         __AtomicTestSetLoop( (Uint *)gpTmpCR3, cr3 | 3 ); \
61 } while(0)
62 #define REL_TEMP_MAPPING() do { \
63         *gpTmpCR3 = 0; \
64         __ASM__("sti"); \
65 } while(0)
66
67 typedef Uint32  tTabEnt;
68
69 // === IMPORTS ===
70 extern char     _UsertextEnd[], _UsertextBase[];
71 extern Uint32   gaInitPageDir[1024];
72 extern Uint32   gaInitPageTable[1024];
73 extern void     Threads_SegFault(tVAddr Addr);
74 extern void     Error_Backtrace(Uint eip, Uint ebp);
75
76 // === PROTOTYPES ===
77 void    MM_PreinitVirtual(void);
78 void    MM_InstallVirtual(void);
79 void    MM_PageFault(tVAddr Addr, Uint ErrorCode, tRegs *Regs);
80 //void  MM_DumpTables(tVAddr Start, tVAddr End);
81 //void  MM_ClearUser(void);
82 tPAddr  MM_DuplicatePage(tVAddr VAddr);
83
84 // === GLOBALS ===
85 #define gaPageTable     ((tTabEnt*)PAGE_TABLE_ADDR)
86 #define gaPageDir       ((tTabEnt*)PAGE_DIR_ADDR)
87 #define gaTmpTable      ((tTabEnt*)TMP_TABLE_ADDR)
88 #define gaTmpDir        ((tTabEnt*)TMP_DIR_ADDR)
89 #define gpPageCR3       ((tTabEnt*)PAGE_CR3_ADDR)
90 #define gpTmpCR3        ((tTabEnt*)TMP_CR3_ADDR)
91
92 #define gaPAE_PageTable ((tTabEnt*)PAE_PAGE_TABLE_ADDR)
93 #define gaPAE_PageDir   ((tTabEnt*)PAE_PAGE_DIR_ADDR)
94 #define gaPAE_MainPDPT  ((tTabEnt*)PAE_PAGE_PDPT_ADDR)
95 #define gaPAE_TmpTable  ((tTabEnt*)PAE_TMP_DIR_ADDR)
96 #define gaPAE_TmpDir    ((tTabEnt*)PAE_TMP_DIR_ADDR)
97 #define gaPAE_TmpPDPT   ((tTabEnt*)PAE_TMP_PDPT_ADDR)
98  int    gbUsePAE = 0;
99 tMutex  glTempMappings;
100 tMutex  glTempFractal;
101 Uint32  gWorkerStacks[(NUM_WORKER_STACKS+31)/32];
102  int    giLastUsedWorker = 0;
103 struct sPageInfo {
104         void    *Node;
105         tVAddr  Base;
106         Uint64  Offset;
107          int    Length;
108          int    Flags;
109 }       *gaMappedRegions;       // sizeof = 24 bytes
110
111 // === CODE ===
112 /**
113  * \fn void MM_PreinitVirtual(void)
114  * \brief Maps the fractal mappings
115  */
116 void MM_PreinitVirtual(void)
117 {
118         gaInitPageDir[ PAGE_TABLE_ADDR >> 22 ] = ((tTabEnt)&gaInitPageDir - KERNEL_BASE) | 3;
119         INVLPG( PAGE_TABLE_ADDR );
120 }
121
122 /**
123  * \fn void MM_InstallVirtual(void)
124  * \brief Sets up the constant page mappings
125  */
126 void MM_InstallVirtual(void)
127 {
128          int    i;
129         
130         // --- Pre-Allocate kernel tables
131         for( i = KERNEL_BASE>>22; i < 1024; i ++ )
132         {
133                 if( gaPageDir[ i ] )    continue;
134                 // Skip stack tables, they are process unique
135                 if( i > MM_KERNEL_STACKS >> 22 && i < MM_KERNEL_STACKS_END >> 22) {
136                         gaPageDir[ i ] = 0;
137                         continue;
138                 }
139                 // Preallocate table
140                 gaPageDir[ i ] = MM_AllocPhys() | 3;
141                 INVLPG( &gaPageTable[i*1024] );
142                 memset( &gaPageTable[i*1024], 0, 0x1000 );
143         }
144         
145         // Unset kernel on the User Text pages
146         for( i = ((tVAddr)&_UsertextEnd-(tVAddr)&_UsertextBase+0xFFF)/4096; i--; ) {
147                 MM_SetFlags( (tVAddr)&_UsertextBase + i*4096, 0, MM_PFLAG_KERNEL );
148         }
149         
150         *gpTmpCR3 = 0;
151 }
152
153 /**
154  * \brief Cleans up the SMP required mappings
155  */
156 void MM_FinishVirtualInit(void)
157 {
158         gaInitPageDir[ 0 ] = 0;
159 }
160
161 /**
162  * \fn void MM_PageFault(tVAddr Addr, Uint ErrorCode, tRegs *Regs)
163  * \brief Called on a page fault
164  */
165 void MM_PageFault(tVAddr Addr, Uint ErrorCode, tRegs *Regs)
166 {
167         //ENTER("xAddr bErrorCode", Addr, ErrorCode);
168         
169         // -- Check for COW --
170         if( gaPageDir  [Addr>>22] & PF_PRESENT  && gaPageTable[Addr>>12] & PF_PRESENT
171          && gaPageTable[Addr>>12] & PF_COW )
172         {
173                 tPAddr  paddr;
174                 __asm__ __volatile__ ("sti");
175                 if(MM_GetRefCount( gaPageTable[Addr>>12] & ~0xFFF ) == 1)
176                 {
177                         gaPageTable[Addr>>12] &= ~PF_COW;
178                         gaPageTable[Addr>>12] |= PF_PRESENT|PF_WRITE;
179                 }
180                 else
181                 {
182                         //Log("MM_PageFault: COW - MM_DuplicatePage(0x%x)", Addr);
183                         paddr = MM_DuplicatePage( Addr );
184                         MM_DerefPhys( gaPageTable[Addr>>12] & ~0xFFF );
185                         gaPageTable[Addr>>12] &= PF_USER;
186                         gaPageTable[Addr>>12] |= paddr|PF_PRESENT|PF_WRITE;
187                 }
188                 
189 //              Log_Debug("MMVirt", "COW for %p (%P)", Addr, gaPageTable[Addr>>12]);
190                 
191                 INVLPG( Addr & ~0xFFF );
192                 return;
193         }
194
195         // Disable instruction tracing  
196         __ASM__("pushf; andw $0xFEFF, 0(%esp); popf");
197         Proc_GetCurThread()->bInstrTrace = 0;
198
199         // If it was a user, tell the thread handler
200         if(ErrorCode & 4) {
201                 __asm__ __volatile__ ("sti");
202                 Log_Warning("MMVirt", "User %s %s memory%s",
203                         (ErrorCode&2?"write to":"read from"),
204                         (ErrorCode&1?"bad/locked":"non-present"),
205                         (ErrorCode&16?" (Instruction Fetch)":"")
206                         );
207                 Log_Warning("MMVirt", "Instruction %04x:%08x accessed %p", Regs->cs, Regs->eip, Addr);
208                 __ASM__("sti"); // Restart IRQs
209                 #if 1
210                 Error_Backtrace(Regs->eip, Regs->ebp);
211                 #endif
212                 Threads_SegFault(Addr);
213                 return ;
214         }
215         
216         Debug_KernelPanic();
217         
218         // -- Check Error Code --
219         if(ErrorCode & 8)
220                 Warning("Reserved Bits Trashed!");
221         else
222         {
223                 Warning("Kernel %s %s memory%s",
224                         (ErrorCode&2?"write to":"read from"),
225                         (ErrorCode&1?"bad/locked":"non-present"),
226                         (ErrorCode&16?" (Instruction Fetch)":"")
227                         );
228         }
229         
230         Log("CPU %i - Code at %p accessed %p", GetCPUNum(), Regs->eip, Addr);
231         // Print Stack Backtrace
232         Error_Backtrace(Regs->eip, Regs->ebp);
233
234         #if 0   
235         Log("gaPageDir[0x%x] = 0x%x", Addr>>22, gaPageDir[Addr>>22]);
236         if( gaPageDir[Addr>>22] & PF_PRESENT )
237                 Log("gaPageTable[0x%x] = 0x%x", Addr>>12, gaPageTable[Addr>>12]);
238         #endif
239         //MM_DumpTables(0, -1); 
240         
241         // Register Dump
242         Log("EAX %08x ECX %08x EDX %08x EBX %08x", Regs->eax, Regs->ecx, Regs->edx, Regs->ebx);
243         Log("ESP %08x EBP %08x ESI %08x EDI %08x", Regs->esp, Regs->ebp, Regs->esi, Regs->edi);
244         //Log("SS:ESP %04x:%08x", Regs->ss, Regs->esp);
245         Log("CS:EIP %04x:%08x", Regs->cs, Regs->eip);
246         Log("DS %04x ES %04x FS %04x GS %04x", Regs->ds, Regs->es, Regs->fs, Regs->gs);
247         {
248                 Uint    dr0, dr1;
249                 __ASM__ ("mov %%dr0, %0":"=r"(dr0):);
250                 __ASM__ ("mov %%dr1, %0":"=r"(dr1):);
251                 Log("DR0 %08x DR1 %08x", dr0, dr1);
252         }
253         
254         Panic("Page Fault at 0x%x (Accessed 0x%x)", Regs->eip, Addr);
255 }
256
257 /**
258  * \fn void MM_DumpTables(tVAddr Start, tVAddr End)
259  * \brief Dumps the layout of the page tables
260  */
261 void MM_DumpTables(tVAddr Start, tVAddr End)
262 {
263         tVAddr  rangeStart = 0;
264         tPAddr  expected = 0;
265         void    *expected_node = NULL, *tmpnode = NULL;
266         tVAddr  curPos;
267         Uint    page;
268         const tPAddr    MASK = ~0xF78;
269         
270         Start >>= 12;   End >>= 12;
271         
272         #if 0
273         Log("Directory Entries:");
274         for(page = Start >> 10;
275                 page < (End >> 10)+1;
276                 page ++)
277         {
278                 if(gaPageDir[page])
279                 {
280                         Log(" 0x%08x-0x%08x :: 0x%08x",
281                                 page<<22, ((page+1)<<22)-1,
282                                 gaPageDir[page]&~0xFFF
283                                 );
284                 }
285         }
286         #endif
287         
288         Log("Table Entries:");
289         for(page = Start, curPos = Start<<12;
290                 page < End;
291                 curPos += 0x1000, page++)
292         {
293                 if( !(gaPageDir[curPos>>22] & PF_PRESENT)
294                 ||  !(gaPageTable[page] & PF_PRESENT)
295                 ||  (gaPageTable[page] & MASK) != expected
296                 ||  (tmpnode=NULL,MM_GetPageNode(expected, &tmpnode), tmpnode != expected_node))
297                 {
298                         if(expected) {
299                                 tPAddr  orig = gaPageTable[rangeStart>>12];
300                                 Log(" 0x%08x => 0x%08x - 0x%08x (%s%s%s%s%s) %p",
301                                         rangeStart,
302                                         orig & ~0xFFF,
303                                         curPos - rangeStart,
304                                         (orig & PF_NOPAGE ? "P" : "-"),
305                                         (orig & PF_COW ? "C" : "-"),
306                                         (orig & PF_GLOBAL ? "G" : "-"),
307                                         (orig & PF_USER ? "U" : "-"),
308                                         (orig & PF_WRITE ? "W" : "-"),
309                                         expected_node
310                                         );
311                                 expected = 0;
312                         }
313                         if( !(gaPageDir[curPos>>22] & PF_PRESENT) )     continue;
314                         if( !(gaPageTable[curPos>>12] & PF_PRESENT) )   continue;
315                         
316                         expected = (gaPageTable[page] & MASK);
317                         MM_GetPageNode(expected, &expected_node);
318                         rangeStart = curPos;
319                 }
320                 if(expected)    expected += 0x1000;
321         }
322         
323         if(expected) {
324                 tPAddr  orig = gaPageTable[rangeStart>>12];
325                 Log("0x%08x => 0x%08x - 0x%08x (%s%s%s%s%s) %p",
326                         rangeStart,
327                         orig & ~0xFFF,
328                         curPos - rangeStart,
329                         (orig & PF_NOPAGE ? "p" : "-"),
330                         (orig & PF_COW ? "C" : "-"),
331                         (orig & PF_GLOBAL ? "G" : "-"),
332                         (orig & PF_USER ? "U" : "-"),
333                         (orig & PF_WRITE ? "W" : "-"),
334                         expected_node
335                         );
336                 expected = 0;
337         }
338 }
339
340 /**
341  * \fn tPAddr MM_Allocate(tVAddr VAddr)
342  */
343 tPAddr MM_Allocate(tVAddr VAddr)
344 {
345         tPAddr  paddr;
346         //ENTER("xVAddr", VAddr);
347         //__ASM__("xchg %bx,%bx");
348         // Check if the directory is mapped
349         if( gaPageDir[ VAddr >> 22 ] == 0 )
350         {
351                 // Allocate directory
352                 paddr = MM_AllocPhys();
353                 if( paddr == 0 ) {
354                         Warning("MM_Allocate - Out of Memory (Called by %p)", __builtin_return_address(0));
355                         //LEAVE('i',0);
356                         return 0;
357                 }
358                 // Map and mark as user (if needed)
359                 gaPageDir[ VAddr >> 22 ] = paddr | 3;
360                 if(VAddr < MM_USER_MAX) gaPageDir[ VAddr >> 22 ] |= PF_USER;
361                 
362                 INVLPG( &gaPageDir[ VAddr >> 22 ] );
363                 memsetd( &gaPageTable[ (VAddr >> 12) & ~0x3FF ], 0, 1024 );
364         }
365         // Check if the page is already allocated
366         else if( gaPageTable[ VAddr >> 12 ] != 0 ) {
367                 Warning("MM_Allocate - Allocating to used address (%p)", VAddr);
368                 //LEAVE('X', gaPageTable[ VAddr >> 12 ] & ~0xFFF);
369                 return gaPageTable[ VAddr >> 12 ] & ~0xFFF;
370         }
371         
372         // Allocate
373         paddr = MM_AllocPhys();
374         //LOG("paddr = 0x%llx", paddr);
375         if( paddr == 0 ) {
376                 Warning("MM_Allocate - Out of Memory when allocating at %p (Called by %p)",
377                         VAddr, __builtin_return_address(0));
378                 //LEAVE('i',0);
379                 return 0;
380         }
381         // Map
382         gaPageTable[ VAddr >> 12 ] = paddr | 3;
383         // Mark as user
384         if(VAddr < MM_USER_MAX) gaPageTable[ VAddr >> 12 ] |= PF_USER;
385         // Invalidate Cache for address
386         INVLPG( VAddr & ~0xFFF );
387         
388         //LEAVE('X', paddr);
389         return paddr;
390 }
391
392 /**
393  * \fn void MM_Deallocate(tVAddr VAddr)
394  */
395 void MM_Deallocate(tVAddr VAddr)
396 {
397         if( gaPageDir[ VAddr >> 22 ] == 0 ) {
398                 Warning("MM_Deallocate - Directory not mapped");
399                 return;
400         }
401         
402         if(gaPageTable[ VAddr >> 12 ] == 0) {
403                 Warning("MM_Deallocate - Page is not allocated");
404                 return;
405         }
406         
407         // Dereference page
408         MM_DerefPhys( gaPageTable[ VAddr >> 12 ] & ~0xFFF );
409         // Clear page
410         gaPageTable[ VAddr >> 12 ] = 0;
411 }
412
413 /**
414  * \fn tPAddr MM_GetPhysAddr(tVAddr Addr)
415  * \brief Checks if the passed address is accesable
416  */
417 tPAddr MM_GetPhysAddr(tVAddr Addr)
418 {
419         if( !(gaPageDir[Addr >> 22] & 1) )
420                 return 0;
421         if( !(gaPageTable[Addr >> 12] & 1) )
422                 return 0;
423         return (gaPageTable[Addr >> 12] & ~0xFFF) | (Addr & 0xFFF);
424 }
425
426 /**
427  * \fn void MM_SetCR3(Uint CR3)
428  * \brief Sets the current process space
429  */
430 void MM_SetCR3(Uint CR3)
431 {
432         __ASM__("mov %0, %%cr3"::"r"(CR3));
433 }
434
435 /**
436  * \fn int MM_Map(tVAddr VAddr, tPAddr PAddr)
437  * \brief Map a physical page to a virtual one
438  */
439 int MM_Map(tVAddr VAddr, tPAddr PAddr)
440 {
441         //ENTER("xVAddr xPAddr", VAddr, PAddr);
442         // Sanity check
443         if( PAddr & 0xFFF || VAddr & 0xFFF ) {
444                 Log_Warning("MM_Virt", "MM_Map - Physical or Virtual Addresses are not aligned");
445                 //LEAVE('i', 0);
446                 return 0;
447         }
448         
449         // Align addresses
450         PAddr &= ~0xFFF;        VAddr &= ~0xFFF;
451         
452         // Check if the directory is mapped
453         if( gaPageDir[ VAddr >> 22 ] == 0 )
454         {
455                 tPAddr  tmp = MM_AllocPhys();
456                 if( tmp == 0 )
457                         return 0;
458                 gaPageDir[ VAddr >> 22 ] = tmp | 3;
459                 
460                 // Mark as user
461                 if(VAddr < MM_USER_MAX) gaPageDir[ VAddr >> 22 ] |= PF_USER;
462                 
463                 INVLPG( &gaPageTable[ (VAddr >> 12) & ~0x3FF ] );
464                 memsetd( &gaPageTable[ (VAddr >> 12) & ~0x3FF ], 0, 1024 );
465         }
466         // Check if the page is already allocated
467         else if( gaPageTable[ VAddr >> 12 ] != 0 ) {
468                 Warning("MM_Map - Allocating to used address");
469                 //LEAVE('i', 0);
470                 return 0;
471         }
472         
473         // Map
474         gaPageTable[ VAddr >> 12 ] = PAddr | 3;
475         // Mark as user
476         if(VAddr < MM_USER_MAX) gaPageTable[ VAddr >> 12 ] |= PF_USER;
477         
478         //LOG("gaPageTable[ 0x%x ] = (Uint)%p = 0x%x",
479         //      VAddr >> 12, &gaPageTable[ VAddr >> 12 ], gaPageTable[ VAddr >> 12 ]);
480         
481         // Reference
482         MM_RefPhys( PAddr );
483         
484         //LOG("INVLPG( 0x%x )", VAddr);
485         INVLPG( VAddr );
486         
487         //LEAVE('i', 1);
488         return 1;
489 }
490
491 /**
492  * \brief Clear user's address space
493  */
494 void MM_ClearUser(void)
495 {
496         Uint    i, j;
497         
498         for( i = 0; i < (MM_USER_MAX>>22); i ++ )
499         {
500                 // Check if directory is not allocated
501                 if( !(gaPageDir[i] & PF_PRESENT) ) {
502                         gaPageDir[i] = 0;
503                         continue;
504                 }
505                 
506                 // Deallocate tables
507                 for( j = 0; j < 1024; j ++ )
508                 {
509                         if( gaPageTable[i*1024+j] & 1 )
510                                 MM_DerefPhys( gaPageTable[i*1024+j] & ~0xFFF );
511                         gaPageTable[i*1024+j] = 0;
512                 }
513                 
514                 // Deallocate directory
515                 MM_DerefPhys( gaPageDir[i] & ~0xFFF );
516                 gaPageDir[i] = 0;
517                 INVLPG( &gaPageTable[i*1024] );
518         }
519         INVLPG( gaPageDir );
520 }
521
522 /**
523  * \brief Deallocate an address space
524  */
525 void MM_ClearSpace(Uint32 CR3)
526 {
527          int    i, j;
528         
529         if(CR3 == (*gpPageCR3 & ~0xFFF)) {
530                 Log_Error("MMVirt", "Can't clear current address space");
531                 return ;
532         }
533
534         if( MM_GetRefCount(CR3) > 1 ) {
535                 MM_DerefPhys(CR3);
536                 Log_Log("MMVirt", "CR3 %P is still referenced, not cleaning (but dereferenced)", CR3);
537                 return ;
538         }
539
540         Log_Debug("MMVirt", "Clearing out address space 0x%x from 0x%x", CR3, *gpPageCR3);
541         
542         GET_TEMP_MAPPING(CR3);
543         INVLPG( gaTmpDir );
544
545         for( i = 0; i < 1024; i ++ )
546         {
547                 Uint32  *table = &gaTmpTable[i*1024];
548                 if( !(gaTmpDir[i] & PF_PRESENT) )
549                         continue ;
550
551                 INVLPG( table );        
552
553                 if( i < 768 || (i > MM_KERNEL_STACKS >> 22 && i < MM_KERNEL_STACKS_END >> 22) )
554                 {
555                         for( j = 0; j < 1024; j ++ )
556                         {
557                                 if( !(table[j] & 1) )
558                                         continue;
559                                 MM_DerefPhys( table[j] & ~0xFFF );
560                         }
561                 }
562
563                 if( i != (PAGE_TABLE_ADDR >> 22) )
564                 {               
565                         MM_DerefPhys( gaTmpDir[i] & ~0xFFF );
566                 }
567         }
568
569
570         MM_DerefPhys( CR3 );
571
572         REL_TEMP_MAPPING();
573 }
574
575 /**
576  * \fn tPAddr MM_Clone(void)
577  * \brief Clone the current address space
578  */
579 tPAddr MM_Clone(int bNoUserCopy)
580 {
581         Uint    i, j;
582         tPAddr  ret;
583         Uint    page = 0;
584         tVAddr  kStackBase = Proc_GetCurThread()->KernelStack - MM_KERNEL_STACK_SIZE;
585         void    *tmp;
586         
587         // Create Directory Table
588         ret = MM_AllocPhys();
589         if( ret == 0 ) {
590                 return 0;
591         }
592         
593         // Map
594         GET_TEMP_MAPPING( ret );
595         INVLPG( gaTmpDir );
596         memsetd( gaTmpDir, 0, 1024 );
597         
598         if( Threads_GetPID() != 0 && !bNoUserCopy )
599         {       
600                 // Copy Tables
601                 for( i = 0; i < 768; i ++)
602                 {
603                         // Check if table is allocated
604                         if( !(gaPageDir[i] & PF_PRESENT) ) {
605                                 gaTmpDir[i] = 0;
606                                 page += 1024;
607                                 continue;
608                         }
609                         
610                         // Allocate new table
611                         gaTmpDir[i] = MM_AllocPhys() | (gaPageDir[i] & 7);
612                         INVLPG( &gaTmpTable[page] );
613                         // Fill
614                         for( j = 0; j < 1024; j ++, page++ )
615                         {
616                                 if( !(gaPageTable[page] & PF_PRESENT) ) {
617                                         gaTmpTable[page] = 0;
618                                         continue;
619                                 }
620                                 
621                                 // Refrence old page
622                                 MM_RefPhys( gaPageTable[page] & ~0xFFF );
623                                 // Add to new table
624                                 if(gaPageTable[page] & PF_WRITE) {
625                                         gaTmpTable[page] = (gaPageTable[page] & ~PF_WRITE) | PF_COW;
626                                         gaPageTable[page] = (gaPageTable[page] & ~PF_WRITE) | PF_COW;
627                                         INVLPG( page << 12 );
628                                 }
629                                 else
630                                         gaTmpTable[page] = gaPageTable[page];
631                         }
632                 }
633         }
634         
635         // Map in kernel tables (and make fractal mapping)
636         for( i = 768; i < 1024; i ++ )
637         {
638                 // Fractal
639                 if( i == (PAGE_TABLE_ADDR >> 22) ) {
640                         gaTmpDir[ PAGE_TABLE_ADDR >> 22 ] = *gpTmpCR3;
641                         continue;
642                 }
643                 if( i == (TMP_TABLE_ADDR >> 22) ) {
644                         gaTmpDir[ TMP_TABLE_ADDR >> 22 ] = 0;
645                         continue ;
646                 }
647                 
648                 if( gaPageDir[i] == 0 ) {
649                         gaTmpDir[i] = 0;
650                         continue;
651                 }
652                 
653                 //LOG("gaPageDir[%x/4] = 0x%x", i*4, gaPageDir[i]);
654                 MM_RefPhys( gaPageDir[i] & ~0xFFF );
655                 gaTmpDir[i] = gaPageDir[i];
656         }
657         
658         // Allocate kernel stack
659         for(i = MM_KERNEL_STACKS >> 22; i < MM_KERNEL_STACKS_END >> 22; i ++ )
660         {
661                 // Check if directory is allocated
662                 if( (gaPageDir[i] & 1) == 0 ) {
663                         gaTmpDir[i] = 0;
664                         continue;
665                 }               
666                 
667                 // We don't care about other kernel stacks, just the current one
668                 if( i != kStackBase >> 22 ) {
669                         MM_DerefPhys( gaPageDir[i] & ~0xFFF );
670                         gaTmpDir[i] = 0;
671                         continue;
672                 }
673                 
674                 // Create a copy
675                 gaTmpDir[i] = MM_AllocPhys() | 3;
676                 INVLPG( &gaTmpTable[i*1024] );
677                 for( j = 0; j < 1024; j ++ )
678                 {
679                         // Is the page allocated? If not, skip
680                         if( !(gaPageTable[i*1024+j] & 1) ) {
681                                 gaTmpTable[i*1024+j] = 0;
682                                 continue;
683                         }
684                         
685                         // We don't care about other kernel stacks
686                         if( ((i*1024+j)*4096 & ~(MM_KERNEL_STACK_SIZE-1)) != kStackBase ) {
687                                 gaTmpTable[i*1024+j] = 0;
688                                 continue;
689                         }
690                         
691                         // Allocate page
692                         gaTmpTable[i*1024+j] = MM_AllocPhys() | 3;
693                         
694                         MM_RefPhys( gaTmpTable[i*1024+j] & ~0xFFF );
695                         
696                         tmp = (void *) MM_MapTemp( gaTmpTable[i*1024+j] & ~0xFFF );
697                         memcpy( tmp, (void *)( (i*1024+j)*0x1000 ), 0x1000 );
698                         MM_FreeTemp( (Uint)tmp );
699                 }
700         }
701         
702         REL_TEMP_MAPPING();
703         
704         //LEAVE('x', ret);
705         return ret;
706 }
707
708 /**
709  * \fn tVAddr MM_NewKStack(void)
710  * \brief Create a new kernel stack
711  */
712 tVAddr MM_NewKStack(void)
713 {
714         tVAddr  base;
715         Uint    i;
716         for(base = MM_KERNEL_STACKS; base < MM_KERNEL_STACKS_END; base += MM_KERNEL_STACK_SIZE)
717         {
718                 // Check if space is free
719                 if(MM_GetPhysAddr(base) != 0)   continue;
720                 // Allocate
721                 //for(i = MM_KERNEL_STACK_SIZE; i -= 0x1000 ; )
722                 for(i = 0; i < MM_KERNEL_STACK_SIZE; i += 0x1000 )
723                 {
724                         if( MM_Allocate(base+i) == 0 )
725                         {
726                                 // On error, print a warning and return error
727                                 Warning("MM_NewKStack - Out of memory");
728                                 // - Clean up
729                                 //for( i += 0x1000 ; i < MM_KERNEL_STACK_SIZE; i += 0x1000 )
730                                 //      MM_Deallocate(base+i);
731                                 return 0;
732                         }
733                 }
734                 // Success
735 //              Log("MM_NewKStack - Allocated %p", base + MM_KERNEL_STACK_SIZE);
736                 return base+MM_KERNEL_STACK_SIZE;
737         }
738         // No stacks left
739         Log_Warning("MMVirt", "MM_NewKStack - No address space left");
740         return 0;
741 }
742
743 /**
744  * \fn tVAddr MM_NewWorkerStack()
745  * \brief Creates a new worker stack
746  */
747 tVAddr MM_NewWorkerStack(Uint *StackContents, size_t ContentsSize)
748 {
749         Uint    base, addr;
750         tVAddr  tmpPage;
751         tPAddr  page;
752         
753         // TODO: Thread safety
754         // Find a free worker stack address
755         for(base = giLastUsedWorker; base < NUM_WORKER_STACKS; base++)
756         {
757                 // Used block
758                 if( gWorkerStacks[base/32] == -1 ) {
759                         base += 31;     base &= ~31;
760                         base --;        // Counteracted by the base++
761                         continue;
762                 }
763                 // Used stack
764                 if( gWorkerStacks[base/32] & (1 << base) ) {
765                         continue;
766                 }
767                 break;
768         }
769         if(base >= NUM_WORKER_STACKS) {
770                 Warning("Uh-oh! Out of worker stacks");
771                 return 0;
772         }
773         
774         // It's ours now!
775         gWorkerStacks[base/32] |= (1 << base);
776         // Make life easier for later calls
777         giLastUsedWorker = base;
778         // We have one
779         base = WORKER_STACKS + base * WORKER_STACK_SIZE;
780         //Log(" MM_NewWorkerStack: base = 0x%x", base);
781         
782         // Set the temp fractals to TID0's address space
783         GET_TEMP_MAPPING( ((Uint)gaInitPageDir - KERNEL_BASE) );
784         INVLPG( gaTmpDir );
785         
786         // Check if the directory is mapped (we are assuming that the stacks
787         // will fit neatly in a directory)
788         //Log(" MM_NewWorkerStack: gaTmpDir[ 0x%x ] = 0x%x", base>>22, gaTmpDir[ base >> 22 ]);
789         if(gaTmpDir[ base >> 22 ] == 0) {
790                 gaTmpDir[ base >> 22 ] = MM_AllocPhys() | 3;
791                 INVLPG( &gaTmpTable[ (base>>12) & ~0x3FF ] );
792         }
793         
794         // Mapping Time!
795         for( addr = 0; addr < WORKER_STACK_SIZE; addr += 0x1000 )
796         {
797                 page = MM_AllocPhys();
798                 gaTmpTable[ (base + addr) >> 12 ] = page | 3;
799         }
800
801         // Release temporary fractal
802         REL_TEMP_MAPPING();
803
804         // NOTE: Max of 1 page
805         // `page` is the last allocated page from the previious for loop
806         tmpPage = MM_MapTemp( page );
807         memcpy( (void*)( tmpPage + (0x1000 - ContentsSize) ), StackContents, ContentsSize);
808         MM_FreeTemp(tmpPage);   
809         
810         //Log("MM_NewWorkerStack: RETURN 0x%x", base);
811         return base + WORKER_STACK_SIZE;
812 }
813
814 /**
815  * \fn void MM_SetFlags(tVAddr VAddr, Uint Flags, Uint Mask)
816  * \brief Sets the flags on a page
817  */
818 void MM_SetFlags(tVAddr VAddr, Uint Flags, Uint Mask)
819 {
820         tTabEnt *ent;
821         if( !(gaPageDir[VAddr >> 22] & 1) )     return ;
822         if( !(gaPageTable[VAddr >> 12] & 1) )   return ;
823         
824         ent = &gaPageTable[VAddr >> 12];
825         
826         // Read-Only
827         if( Mask & MM_PFLAG_RO )
828         {
829                 if( Flags & MM_PFLAG_RO ) {
830                         *ent &= ~PF_WRITE;
831                 }
832                 else {
833                         gaPageDir[VAddr >> 22] |= PF_WRITE;
834                         *ent |= PF_WRITE;
835                 }
836         }
837         
838         // Kernel
839         if( Mask & MM_PFLAG_KERNEL )
840         {
841                 if( Flags & MM_PFLAG_KERNEL ) {
842                         *ent &= ~PF_USER;
843                 }
844                 else {
845                         gaPageDir[VAddr >> 22] |= PF_USER;
846                         *ent |= PF_USER;
847                 }
848         }
849         
850         // Copy-On-Write
851         if( Mask & MM_PFLAG_COW )
852         {
853                 if( Flags & MM_PFLAG_COW ) {
854                         *ent &= ~PF_WRITE;
855                         *ent |= PF_COW;
856                 }
857                 else {
858                         *ent &= ~PF_COW;
859                         *ent |= PF_WRITE;
860                 }
861         }
862         
863         //Log("MM_SetFlags: *ent = 0x%08x, gaPageDir[%i] = 0x%08x",
864         //      *ent, VAddr >> 22, gaPageDir[VAddr >> 22]);
865 }
866
867 /**
868  * \brief Get the flags on a page
869  */
870 Uint MM_GetFlags(tVAddr VAddr)
871 {
872         tTabEnt *ent;
873         Uint    ret = 0;
874         
875         // Validity Check
876         if( !(gaPageDir[VAddr >> 22] & 1) )     return 0;
877         if( !(gaPageTable[VAddr >> 12] & 1) )   return 0;
878         
879         ent = &gaPageTable[VAddr >> 12];
880         
881         // Read-Only
882         if( !(*ent & PF_WRITE) )        ret |= MM_PFLAG_RO;
883         // Kernel
884         if( !(*ent & PF_USER) ) ret |= MM_PFLAG_KERNEL;
885         // Copy-On-Write
886         if( *ent & PF_COW )     ret |= MM_PFLAG_COW;
887         
888         return ret;
889 }
890
891 /**
892  * \brief Check if the provided buffer is valid
893  * \return Boolean valid
894  */
895 int MM_IsValidBuffer(tVAddr Addr, size_t Size)
896 {
897          int    bIsUser;
898          int    dir, tab;
899
900         Size += Addr & (PAGE_SIZE-1);
901         Addr &= ~(PAGE_SIZE-1);
902
903         dir = Addr >> 22;
904         tab = Addr >> 12;
905         
906 //      Debug("Addr = %p, Size = 0x%x, dir = %i, tab = %i", Addr, Size, dir, tab);
907
908         if( !(gaPageDir[dir] & 1) )     return 0;
909         if( !(gaPageTable[tab] & 1) )   return 0;
910         
911         bIsUser = !!(gaPageTable[tab] & PF_USER);
912
913         while( Size >= PAGE_SIZE )
914         {
915                 if( (tab & 1023) == 0 )
916                 {
917                         dir ++;
918                         if( !(gaPageDir[dir] & 1) )     return 0;
919                 }
920                 
921                 if( !(gaPageTable[tab] & 1) )   return 0;
922                 if( bIsUser && !(gaPageTable[tab] & PF_USER) )  return 0;
923
924                 tab ++;
925                 Size -= PAGE_SIZE;
926         }
927         return 1;
928 }
929
930 /**
931  * \fn tPAddr MM_DuplicatePage(tVAddr VAddr)
932  * \brief Duplicates a virtual page to a physical one
933  */
934 tPAddr MM_DuplicatePage(tVAddr VAddr)
935 {
936         tPAddr  ret;
937         Uint    temp;
938          int    wasRO = 0;
939         
940         //ENTER("xVAddr", VAddr);
941         
942         // Check if mapped
943         if( !(gaPageDir  [VAddr >> 22] & PF_PRESENT) )  return 0;
944         if( !(gaPageTable[VAddr >> 12] & PF_PRESENT) )  return 0;
945         
946         // Page Align
947         VAddr &= ~0xFFF;
948         
949         // Allocate new page
950         ret = MM_AllocPhys();
951         if( !ret ) {
952                 return 0;
953         }
954         
955         // Write-lock the page (to keep data constistent), saving its R/W state
956         wasRO = (gaPageTable[VAddr >> 12] & PF_WRITE ? 0 : 1);
957         gaPageTable[VAddr >> 12] &= ~PF_WRITE;
958         INVLPG( VAddr );
959         
960         // Copy Data
961         temp = MM_MapTemp(ret);
962         memcpy( (void*)temp, (void*)VAddr, 0x1000 );
963         MM_FreeTemp(temp);
964         
965         // Restore Writeable status
966         if(!wasRO)      gaPageTable[VAddr >> 12] |= PF_WRITE;
967         INVLPG(VAddr);
968         
969         //LEAVE('X', ret);
970         return ret;
971 }
972
973 /**
974  * \fn Uint MM_MapTemp(tPAddr PAddr)
975  * \brief Create a temporary memory mapping
976  * \todo Show Luigi Barone (C Lecturer) and see what he thinks
977  */
978 tVAddr MM_MapTemp(tPAddr PAddr)
979 {
980          int    i;
981         
982         //ENTER("XPAddr", PAddr);
983         
984         PAddr &= ~0xFFF;
985         
986         //LOG("glTempMappings = %i", glTempMappings);
987         
988         for(;;)
989         {
990                 Mutex_Acquire( &glTempMappings );
991                 
992                 for( i = 0; i < NUM_TEMP_PAGES; i ++ )
993                 {
994                         // Check if page used
995                         if(gaPageTable[ (TEMP_MAP_ADDR >> 12) + i ] & 1)        continue;
996                         // Mark as used
997                         gaPageTable[ (TEMP_MAP_ADDR >> 12) + i ] = PAddr | 3;
998                         INVLPG( TEMP_MAP_ADDR + (i << 12) );
999                         //LEAVE('p', TEMP_MAP_ADDR + (i << 12));
1000                         Mutex_Release( &glTempMappings );
1001                         return TEMP_MAP_ADDR + (i << 12);
1002                 }
1003                 Mutex_Release( &glTempMappings );
1004                 Threads_Yield();        // TODO: Use a sleep queue here instead
1005         }
1006 }
1007
1008 /**
1009  * \fn void MM_FreeTemp(tVAddr PAddr)
1010  * \brief Free's a temp mapping
1011  */
1012 void MM_FreeTemp(tVAddr VAddr)
1013 {
1014          int    i = VAddr >> 12;
1015         //ENTER("xVAddr", VAddr);
1016         
1017         if(i >= (TEMP_MAP_ADDR >> 12))
1018                 gaPageTable[ i ] = 0;
1019         
1020         //LEAVE('-');
1021 }
1022
1023 /**
1024  * \fn tVAddr MM_MapHWPages(tPAddr PAddr, Uint Number)
1025  * \brief Allocates a contigous number of pages
1026  */
1027 tVAddr MM_MapHWPages(tPAddr PAddr, Uint Number)
1028 {
1029          int    i, j;
1030         
1031         PAddr &= ~0xFFF;
1032         
1033         // Scan List
1034         for( i = 0; i < NUM_HW_PAGES; i ++ )
1035         {               
1036                 // Check if addr used
1037                 if( gaPageTable[ (HW_MAP_ADDR >> 12) + i ] & 1 )
1038                         continue;
1039                 
1040                 // Check possible region
1041                 for( j = 0; j < Number && i + j < NUM_HW_PAGES; j ++ )
1042                 {
1043                         // If there is an allocated page in the region we are testing, break
1044                         if( gaPageTable[ (HW_MAP_ADDR >> 12) + i + j ] & 1 )    break;
1045                 }
1046                 // Is it all free?
1047                 if( j == Number )
1048                 {
1049                         // Allocate
1050                         for( j = 0; j < Number; j++ ) {
1051                                 MM_RefPhys( PAddr + (j<<12) );
1052                                 gaPageTable[ (HW_MAP_ADDR >> 12) + i + j ] = (PAddr + (j<<12)) | 3;
1053                         }
1054                         return HW_MAP_ADDR + (i<<12);
1055                 }
1056         }
1057         // If we don't find any, return NULL
1058         return 0;
1059 }
1060
1061 /**
1062  * \fn tVAddr MM_AllocDMA(int Pages, int MaxBits, tPAddr *PhysAddr)
1063  * \brief Allocates DMA physical memory
1064  * \param Pages Number of pages required
1065  * \param MaxBits       Maximum number of bits the physical address can have
1066  * \param PhysAddr      Pointer to the location to place the physical address allocated
1067  * \return Virtual address allocate
1068  */
1069 tVAddr MM_AllocDMA(int Pages, int MaxBits, tPAddr *PhysAddr)
1070 {
1071         tPAddr  maxCheck = (1 << MaxBits);
1072         tPAddr  phys;
1073         tVAddr  ret;
1074         
1075         ENTER("iPages iMaxBits pPhysAddr", Pages, MaxBits, PhysAddr);
1076         
1077         // Sanity Check
1078         if(MaxBits < 12 || !PhysAddr) {
1079                 LEAVE('i', 0);
1080                 return 0;
1081         }
1082         
1083         // Bound
1084         if(MaxBits >= PHYS_BITS)        maxCheck = -1;
1085         
1086         // Fast Allocate
1087         if(Pages == 1 && MaxBits >= PHYS_BITS)
1088         {
1089                 phys = MM_AllocPhys();
1090                 if( !phys ) {
1091                         *PhysAddr = 0;
1092                         LEAVE_RET('i', 0);
1093                 }
1094                 *PhysAddr = phys;
1095                 ret = MM_MapHWPages(phys, 1);
1096                 if(ret == 0) {
1097                         MM_DerefPhys(phys);
1098                         LEAVE('i', 0);
1099                         return 0;
1100                 }
1101                 LEAVE('x', ret);
1102                 return ret;
1103         }
1104         
1105         // Slow Allocate
1106         phys = MM_AllocPhysRange(Pages, MaxBits);
1107         // - Was it allocated?
1108         if(phys == 0) {
1109                 LEAVE('i', 0);
1110                 return 0;
1111         }
1112         
1113         // Allocated successfully, now map
1114         ret = MM_MapHWPages(phys, Pages);
1115         if( ret == 0 ) {
1116                 // If it didn't map, free then return 0
1117                 for(;Pages--;phys+=0x1000)
1118                         MM_DerefPhys(phys);
1119                 LEAVE('i', 0);
1120                 return 0;
1121         }
1122         
1123         *PhysAddr = phys;
1124         LEAVE('x', ret);
1125         return ret;
1126 }
1127
1128 /**
1129  * \fn void MM_UnmapHWPages(tVAddr VAddr, Uint Number)
1130  * \brief Unmap a hardware page
1131  */
1132 void MM_UnmapHWPages(tVAddr VAddr, Uint Number)
1133 {
1134          int    i, j;
1135         
1136         //Log_Debug("VirtMem", "MM_UnmapHWPages: (VAddr=0x%08x, Number=%i)", VAddr, Number);
1137         
1138         // Sanity Check
1139         if(VAddr < HW_MAP_ADDR || VAddr+Number*0x1000 > HW_MAP_MAX)     return;
1140         
1141         i = VAddr >> 12;
1142         
1143         Mutex_Acquire( &glTempMappings );       // Temp and HW share a directory, so they share a lock
1144         
1145         for( j = 0; j < Number; j++ )
1146         {
1147                 MM_DerefPhys( gaPageTable[ i + j ] & ~0xFFF );
1148                 gaPageTable[ i + j ] = 0;
1149         }
1150         
1151         Mutex_Release( &glTempMappings );
1152 }
1153

UCC git Repository :: git.ucc.asn.au