Complete rewrite of bin2res, for a cleaner codebase.
[wine] / msdos / dosmem.c
1 /*
2  * DOS memory emulation
3  *
4  * Copyright 1995 Alexandre Julliard
5  * Copyright 1996 Marcus Meissner
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  */
21
22 #include "config.h"
23 #include "wine/port.h"
24
25 #include <signal.h>
26 #include <stdarg.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <sys/types.h>
30 #ifdef HAVE_SYS_MMAN_H
31 # include <sys/mman.h>
32 #endif
33
34 #include <time.h>
35 #ifdef HAVE_SYS_TIME_H
36 # include <sys/time.h>
37 #endif
38
39 #include "windef.h"
40 #include "winbase.h"
41 #include "wine/winbase16.h"
42
43 #include "global.h"
44 #include "selectors.h"
45 #include "miscemu.h"
46 #include "wine/debug.h"
47
48 WINE_DEFAULT_DEBUG_CHANNEL(dosmem);
49 WINE_DECLARE_DEBUG_CHANNEL(selector);
50
51 WORD DOSMEM_0000H;        /* segment at 0:0 */
52 WORD DOSMEM_BiosDataSeg;  /* BIOS data segment at 0x40:0 */
53 WORD DOSMEM_BiosSysSeg;   /* BIOS ROM segment at 0xf000:0 */
54
55 /* use 2 low bits of 'size' for the housekeeping */
56
57 #define DM_BLOCK_DEBUG          0xABE00000
58 #define DM_BLOCK_TERMINAL       0x00000001
59 #define DM_BLOCK_FREE           0x00000002
60 #define DM_BLOCK_MASK           0x001FFFFC
61
62 /*
63 #define __DOSMEM_DEBUG__
64  */
65
66 typedef struct {
67    unsigned     size;
68 } dosmem_entry;
69
70 typedef struct {
71   unsigned      blocks;
72   unsigned      free;
73 } dosmem_info;
74
75 #define NEXT_BLOCK(block) \
76         (dosmem_entry*)(((char*)(block)) + \
77          sizeof(dosmem_entry) + ((block)->size & DM_BLOCK_MASK))
78
79 #define VM_STUB(x) (0x90CF00CD|(x<<8)) /* INT x; IRET; NOP */
80 #define VM_STUB_SEGMENT 0xf000         /* BIOS segment */
81
82 /* DOS memory base */
83 static char *DOSMEM_dosmem;
84 /* DOS system base (for interrupt vector table and BIOS data area)
85  * ...should in theory (i.e. Windows) be equal to DOSMEM_dosmem (NULL),
86  * but is normally set to 0xf0000 in Wine to allow trapping of NULL pointers,
87  * and only relocated to NULL when absolutely necessary */
88 static char *DOSMEM_sysmem;
89
90 /* Start of DOS conventional memory */
91 static char *DOSMEM_membase;
92
93 static void DOSMEM_InitMemory(void);
94
95 /***********************************************************************
96  *           DOSMEM_MemoryTop
97  *
98  * Gets the DOS memory top.
99  */
100 static char *DOSMEM_MemoryTop(void)
101 {
102     return DOSMEM_dosmem+0x9FFFC; /* 640K */
103 }
104
105 /***********************************************************************
106  *           DOSMEM_InfoBlock
107  *
108  * Gets the DOS memory info block.
109  */
110 static dosmem_info *DOSMEM_InfoBlock(void)
111 {
112     if (!DOSMEM_membase)
113     {
114         DWORD         reserve;
115
116         /*
117          * Reserve either:
118          * - lowest 64k for NULL pointer catching (Win16)
119          * - lowest 1k for interrupt handlers and 
120          *   another 0.5k for BIOS, DOS and intra-application
121          *   areas (DOS)
122          */
123         if (DOSMEM_dosmem != DOSMEM_sysmem)
124             reserve = 0x10000; /* 64k */
125         else
126             reserve = 0x600; /* 1.5k */
127
128         /*
129          * Round to paragraph boundary in order to make 
130          * sure the alignment is correct.
131          */
132         reserve = ((reserve + 15) >> 4) << 4;
133
134         /*
135          * Set DOS memory base and initialize conventional memory.
136          */
137         DOSMEM_membase = DOSMEM_dosmem + reserve;
138         DOSMEM_InitMemory();
139     }
140
141     return (dosmem_info*)DOSMEM_membase;
142 }
143
144 /***********************************************************************
145  *           DOSMEM_RootBlock
146  *
147  * Gets the DOS memory root block.
148  */
149 static dosmem_entry *DOSMEM_RootBlock(void)
150 {
151     /* first block has to be paragraph-aligned */
152     return (dosmem_entry*)(((char*)DOSMEM_InfoBlock()) +
153                            ((((sizeof(dosmem_info) + 0xf) & ~0xf) - sizeof(dosmem_entry))));
154 }
155
156 /***********************************************************************
157  *           DOSMEM_FillIsrTable
158  *
159  * Fill the interrupt table with fake BIOS calls to BIOSSEG (0xf000).
160  *
161  * NOTES:
162  * Linux normally only traps INTs performed from or destined to BIOSSEG
163  * for us to handle, if the int_revectored table is empty. Filling the
164  * interrupt table with calls to INT stubs in BIOSSEG allows DOS programs
165  * to hook interrupts, as well as use their familiar retf tricks to call
166  * them, AND let Wine handle any unhooked interrupts transparently.
167  */
168 static void DOSMEM_FillIsrTable(void)
169 {
170     SEGPTR *isr = (SEGPTR*)DOSMEM_sysmem;
171     int x;
172
173     for (x=0; x<256; x++) isr[x]=MAKESEGPTR(VM_STUB_SEGMENT,x*4);
174 }
175
176 static void DOSMEM_MakeIsrStubs(void)
177 {
178     DWORD *stub = (DWORD*)(DOSMEM_dosmem + (VM_STUB_SEGMENT << 4));
179     int x;
180
181     for (x=0; x<256; x++) stub[x]=VM_STUB(x);
182 }
183
184 static BIOSDATA * DOSMEM_BiosData(void)
185 {
186     return (BIOSDATA *)(DOSMEM_sysmem + 0x400);
187 }
188
189 /**********************************************************************
190  *          DOSMEM_GetTicksSinceMidnight
191  *
192  * Return number of clock ticks since midnight.
193  */
194 static DWORD DOSMEM_GetTicksSinceMidnight(void)
195 {
196     struct tm *bdtime;
197     struct timeval tvs;
198     time_t seconds;
199
200     /* This should give us the (approximately) correct
201      * 18.206 clock ticks per second since midnight.
202      */
203     gettimeofday( &tvs, NULL );
204     seconds = tvs.tv_sec;
205     bdtime = localtime( &seconds );
206     return (((bdtime->tm_hour * 3600 + bdtime->tm_min * 60 +
207               bdtime->tm_sec) * 18206) / 1000) +
208                   (tvs.tv_usec / 54927);
209 }
210
211 /***********************************************************************
212  *           DOSMEM_FillBiosSegments
213  *
214  * Fill the BIOS data segment with dummy values.
215  */
216 static void DOSMEM_FillBiosSegments(void)
217 {
218     BYTE *pBiosSys = DOSMEM_dosmem + 0xf0000;
219     BYTE *pBiosROMTable = pBiosSys+0xe6f5;
220     BIOSDATA *pBiosData = DOSMEM_BiosData();
221
222       /* Clear all unused values */
223     memset( pBiosData, 0, sizeof(*pBiosData) );
224
225     /* FIXME: should check the number of configured drives and ports */
226     pBiosData->Com1Addr             = 0x3f8;
227     pBiosData->Com2Addr             = 0x2f8;
228     pBiosData->Lpt1Addr             = 0x378;
229     pBiosData->Lpt2Addr             = 0x278;
230     pBiosData->InstalledHardware    = 0x5463;
231     pBiosData->MemSize              = 640;
232     pBiosData->NextKbdCharPtr       = 0x1e;
233     pBiosData->FirstKbdCharPtr      = 0x1e;
234     pBiosData->VideoMode            = 3;
235     pBiosData->VideoColumns         = 80;
236     pBiosData->VideoPageSize        = 80 * 25 * 2;
237     pBiosData->VideoPageStartAddr   = 0xb800;
238     pBiosData->VideoCtrlAddr        = 0x3d4;
239     pBiosData->Ticks                = DOSMEM_GetTicksSinceMidnight();
240     pBiosData->NbHardDisks          = 2;
241     pBiosData->KbdBufferStart       = 0x1e;
242     pBiosData->KbdBufferEnd         = 0x3e;
243     pBiosData->RowsOnScreenMinus1   = 24;
244     pBiosData->BytesPerChar         = 0x10;
245     pBiosData->ModeOptions          = 0x64;
246     pBiosData->FeatureBitsSwitches  = 0xf9;
247     pBiosData->VGASettings          = 0x51;
248     pBiosData->DisplayCombination   = 0x08;
249     pBiosData->DiskDataRate         = 0;
250
251     /* fill ROM configuration table (values from Award) */
252     *(pBiosROMTable+0x0)        = 0x08; /* number of bytes following LO */
253     *(pBiosROMTable+0x1)        = 0x00; /* number of bytes following HI */
254     *(pBiosROMTable+0x2)        = 0xfc; /* model */
255     *(pBiosROMTable+0x3)        = 0x01; /* submodel */
256     *(pBiosROMTable+0x4)        = 0x00; /* BIOS revision */
257     *(pBiosROMTable+0x5)        = 0x74; /* feature byte 1 */
258     *(pBiosROMTable+0x6)        = 0x00; /* feature byte 2 */
259     *(pBiosROMTable+0x7)        = 0x00; /* feature byte 3 */
260     *(pBiosROMTable+0x8)        = 0x00; /* feature byte 4 */
261     *(pBiosROMTable+0x9)        = 0x00; /* feature byte 5 */
262
263     /* BIOS date string */
264     strcpy((char *)pBiosSys+0xfff5, "13/01/99");
265
266     /* BIOS ID */
267     *(pBiosSys+0xfffe) = 0xfc;
268 }
269
270 /***********************************************************************
271  *           DOSMEM_InitMemory
272  *
273  * Initialises the DOS memory structures.
274  */
275 static void DOSMEM_InitMemory(void)
276 {
277     dosmem_info*        info_block = DOSMEM_InfoBlock();
278     dosmem_entry*       root_block = DOSMEM_RootBlock();
279     dosmem_entry*       dm;
280
281     root_block->size = DOSMEM_MemoryTop() - (((char*)root_block) + sizeof(dosmem_entry));
282
283     info_block->blocks = 0;
284     info_block->free = root_block->size;
285
286     dm = NEXT_BLOCK(root_block);
287     dm->size = DM_BLOCK_TERMINAL;
288     root_block->size |= DM_BLOCK_FREE
289 #ifdef __DOSMEM_DEBUG__
290                      | DM_BLOCK_DEBUG
291 #endif
292                      ;
293
294     TRACE( "DOS conventional memory initialized, %d bytes free.\n", 
295            DOSMEM_Available() );
296 }
297
298
299 /**********************************************************************
300  *              setup_dos_mem
301  *
302  * Setup the first megabyte for DOS memory access
303  */
304 static void setup_dos_mem( int dos_init )
305 {
306     int sys_offset = 0;
307     int page_size = getpagesize();
308     void *addr = wine_anon_mmap( (void *)page_size, 0x110000-page_size,
309                                  PROT_READ | PROT_WRITE | PROT_EXEC, 0 );
310     if (addr == (void *)page_size)  /* we got what we wanted */
311     {
312         /* now map from address 0 */
313         addr = wine_anon_mmap( NULL, 0x110000, PROT_READ | PROT_WRITE | PROT_EXEC, MAP_FIXED );
314         if (addr)
315         {
316             ERR("MAP_FIXED failed at address 0 for DOS address space\n" );
317             ExitProcess(1);
318         }
319
320         /* inform the memory manager that there is a mapping here */
321         VirtualAlloc( addr, 0x110000, MEM_RESERVE | MEM_SYSTEM, PAGE_EXECUTE_READWRITE );
322
323         /* protect the first 64K to catch NULL pointers */
324         if (!dos_init)
325         {
326             VirtualProtect( addr, 0x10000, PAGE_NOACCESS, NULL );
327             /* move the BIOS and ISR area from 0x00000 to 0xf0000 */
328             sys_offset += 0xf0000;
329         }
330     }
331     else
332     {
333         ERR("Cannot use first megabyte for DOS address space, please report\n" );
334         if (dos_init) ExitProcess(1);
335         /* allocate the DOS area somewhere else */
336         addr = VirtualAlloc( NULL, 0x110000, MEM_COMMIT, PAGE_EXECUTE_READWRITE );
337         if (!addr)
338         {
339             ERR( "Cannot allocate DOS memory\n" );
340             ExitProcess(1);
341         }
342     }
343     DOSMEM_dosmem = addr;
344     DOSMEM_sysmem = (char*)addr + sys_offset;
345 }
346
347
348 /***********************************************************************
349  *           DOSMEM_Init
350  *
351  * Create the dos memory segments, and store them into the KERNEL
352  * exported values.
353  */
354 BOOL DOSMEM_Init(BOOL dos_init)
355 {
356     static int already_done, already_mapped;
357
358     if (!already_done)
359     {
360         setup_dos_mem( dos_init );
361
362         DOSMEM_0000H = GLOBAL_CreateBlock( GMEM_FIXED, DOSMEM_sysmem,
363                                            0x10000, 0, WINE_LDT_FLAGS_DATA );
364         DOSMEM_BiosDataSeg = GLOBAL_CreateBlock(GMEM_FIXED,DOSMEM_sysmem + 0x400,
365                                                 0x100, 0, WINE_LDT_FLAGS_DATA );
366         DOSMEM_BiosSysSeg = GLOBAL_CreateBlock(GMEM_FIXED,DOSMEM_dosmem+0xf0000,
367                                                0x10000, 0, WINE_LDT_FLAGS_DATA );
368         DOSMEM_FillBiosSegments();
369         DOSMEM_FillIsrTable();
370         already_done = 1;
371     }
372     else if (dos_init && !already_mapped)
373     {
374         if (DOSMEM_dosmem)
375         {
376             ERR( "Needs access to the first megabyte for DOS mode\n" );
377             ExitProcess(1);
378         }
379         MESSAGE( "Warning: unprotecting the first 64KB of memory to allow real-mode calls.\n"
380                  "         NULL pointer accesses will no longer be caught.\n" );
381         VirtualProtect( NULL, 0x10000, PAGE_EXECUTE_READWRITE, NULL );
382         /* copy the BIOS and ISR area down */
383         memcpy( DOSMEM_dosmem, DOSMEM_sysmem, 0x400 + 0x100 );
384         DOSMEM_sysmem = DOSMEM_dosmem;
385         SetSelectorBase( DOSMEM_0000H, 0 );
386         SetSelectorBase( DOSMEM_BiosDataSeg, 0x400 );
387         /* we may now need the actual interrupt stubs, and since we've just moved the
388          * interrupt vector table away, we can fill the area with stubs instead... */
389         DOSMEM_MakeIsrStubs();
390         already_mapped = 1;
391     }
392     return TRUE;
393 }
394
395
396 /***********************************************************************
397  *           DOSMEM_Tick
398  *
399  * Increment the BIOS tick counter. Called by timer signal handler.
400  */
401 void DOSMEM_Tick( WORD timer )
402 {
403     BIOSDATA *pBiosData = DOSMEM_BiosData();
404     if (pBiosData) pBiosData->Ticks++;
405 }
406
407 /***********************************************************************
408  *           DOSMEM_GetBlock
409  *
410  * Carve a chunk of the DOS memory block (without selector).
411  */
412 LPVOID DOSMEM_GetBlock(UINT size, UINT16* pseg)
413 {
414    UINT          blocksize;
415    char         *block = NULL;
416    dosmem_info  *info_block = DOSMEM_InfoBlock();
417    dosmem_entry *dm;
418 #ifdef __DOSMEM_DEBUG_
419    dosmem_entry *prev = NULL;
420 #endif
421
422    if( size > info_block->free ) return NULL;
423    dm = DOSMEM_RootBlock();
424
425    while (dm && dm->size != DM_BLOCK_TERMINAL)
426    {
427 #ifdef __DOSMEM_DEBUG__
428        if( (dm->size & DM_BLOCK_DEBUG) != DM_BLOCK_DEBUG )
429        {
430             WARN("MCB overrun! [prev = 0x%08x]\n", 4 + (UINT)prev);
431             return NULL;
432        }
433        prev = dm;
434 #endif
435        if( dm->size & DM_BLOCK_FREE )
436        {
437            dosmem_entry  *next = NEXT_BLOCK(dm);
438
439            while( next->size & DM_BLOCK_FREE ) /* collapse free blocks */
440            {
441                dm->size += sizeof(dosmem_entry) + (next->size & DM_BLOCK_MASK);
442                next->size = (DM_BLOCK_FREE | DM_BLOCK_TERMINAL);
443                next = NEXT_BLOCK(dm);
444            }
445
446            blocksize = dm->size & DM_BLOCK_MASK;
447            if( blocksize >= size )
448            {
449                block = ((char*)dm) + sizeof(dosmem_entry);
450                if( blocksize - size > 0x20 )
451                {
452                    /* split dm so that the next one stays
453                     * paragraph-aligned (and dm loses free bit) */
454
455                    dm->size = (((size + 0xf + sizeof(dosmem_entry)) & ~0xf) -
456                                               sizeof(dosmem_entry));
457                    next = (dosmem_entry*)(((char*)dm) +
458                            sizeof(dosmem_entry) + dm->size);
459                    next->size = (blocksize - (dm->size +
460                            sizeof(dosmem_entry))) | DM_BLOCK_FREE
461 #ifdef __DOSMEM_DEBUG__
462                                                   | DM_BLOCK_DEBUG
463 #endif
464                                                   ;
465                } else dm->size &= DM_BLOCK_MASK;
466
467                info_block->blocks++;
468                info_block->free -= dm->size;
469                if( pseg ) *pseg = (block - DOSMEM_dosmem) >> 4;
470 #ifdef __DOSMEM_DEBUG__
471                dm->size |= DM_BLOCK_DEBUG;
472 #endif
473                break;
474            }
475            dm = next;
476        }
477        else dm = NEXT_BLOCK(dm);
478    }
479    return (LPVOID)block;
480 }
481
482 /***********************************************************************
483  *           DOSMEM_FreeBlock
484  */
485 BOOL DOSMEM_FreeBlock(void* ptr)
486 {
487    dosmem_info  *info_block = DOSMEM_InfoBlock();
488
489    if( ptr >= (void*)(((char*)DOSMEM_RootBlock()) + sizeof(dosmem_entry)) &&
490        ptr < (void*)DOSMEM_MemoryTop() && !((((char*)ptr)
491                   - DOSMEM_dosmem) & 0xf) )
492    {
493        dosmem_entry  *dm = (dosmem_entry*)(((char*)ptr) - sizeof(dosmem_entry));
494
495        if( !(dm->size & (DM_BLOCK_FREE | DM_BLOCK_TERMINAL))
496 #ifdef __DOSMEM_DEBUG__
497          && ((dm->size & DM_BLOCK_DEBUG) == DM_BLOCK_DEBUG )
498 #endif
499          )
500        {
501              info_block->blocks--;
502              info_block->free += dm->size;
503
504              dm->size |= DM_BLOCK_FREE;
505              return TRUE;
506        }
507    }
508    return FALSE;
509 }
510
511 /***********************************************************************
512  *           DOSMEM_ResizeBlock
513  *
514  * Resize DOS memory block in place. Returns block size or -1 on error.
515  *
516  * If exact is TRUE, returned value is either old or requested block
517  * size. If exact is FALSE, block is expanded even if there is not
518  * enough space for full requested block size.
519  */
520 UINT DOSMEM_ResizeBlock(void *ptr, UINT size, BOOL exact)
521 {
522    char         *block = NULL;
523    dosmem_info  *info_block = DOSMEM_InfoBlock();
524    dosmem_entry *dm;
525    dosmem_entry *next;
526    UINT blocksize;
527    UINT orgsize;
528
529    if( (ptr < (void*)(sizeof(dosmem_entry) + (char*)DOSMEM_RootBlock())) ||
530        (ptr >= (void*)DOSMEM_MemoryTop()) ||
531        (((((char*)ptr) - DOSMEM_dosmem) & 0xf) != 0) )
532      return (UINT)-1;
533
534    dm = (dosmem_entry*)(((char*)ptr) - sizeof(dosmem_entry));
535    if( dm->size & (DM_BLOCK_FREE | DM_BLOCK_TERMINAL) )
536        return (UINT)-1;
537
538    next = NEXT_BLOCK(dm);
539    orgsize = dm->size & DM_BLOCK_MASK;
540
541    /* collapse free blocks */
542    while( next->size & DM_BLOCK_FREE )
543    {
544        dm->size += sizeof(dosmem_entry) + (next->size & DM_BLOCK_MASK);
545        next->size = (DM_BLOCK_FREE | DM_BLOCK_TERMINAL);
546        next = NEXT_BLOCK(dm);
547    }
548
549    blocksize = dm->size & DM_BLOCK_MASK;
550
551    /*
552     * If collapse didn't help we either expand block to maximum
553     * available size (exact == FALSE) or give collapsed blocks
554     * back to free storage (exact == TRUE).
555     */
556    if (blocksize < size)
557        size = exact ? orgsize : blocksize;
558
559    block = ((char*)dm) + sizeof(dosmem_entry);
560    if( blocksize - size > 0x20 )
561    {
562        /*
563         * split dm so that the next one stays
564         * paragraph-aligned (and next gains free bit) 
565         */
566
567        dm->size = (((size + 0xf + sizeof(dosmem_entry)) & ~0xf) -
568                    sizeof(dosmem_entry));
569        next = (dosmem_entry*)(((char*)dm) +
570                               sizeof(dosmem_entry) + dm->size);
571        next->size = (blocksize - (dm->size +
572                                   sizeof(dosmem_entry))) | DM_BLOCK_FREE;
573    } 
574    else 
575    {
576        dm->size &= DM_BLOCK_MASK;
577    }
578
579    /*
580     * Adjust available memory if block size changes.
581     */
582    info_block->free += orgsize - dm->size;
583
584    return size;
585 }
586
587 /***********************************************************************
588  *           DOSMEM_Available
589  */
590 UINT DOSMEM_Available(void)
591 {
592    UINT          blocksize, available = 0;
593    dosmem_entry *dm;
594
595    dm = DOSMEM_RootBlock();
596
597    while (dm && dm->size != DM_BLOCK_TERMINAL)
598    {
599 #ifdef __DOSMEM_DEBUG__
600        if( (dm->size & DM_BLOCK_DEBUG) != DM_BLOCK_DEBUG )
601        {
602             WARN("MCB overrun! [prev = 0x%08x]\n", 4 + (UINT)prev);
603             return NULL;
604        }
605        prev = dm;
606 #endif
607        if( dm->size & DM_BLOCK_FREE )
608        {
609            dosmem_entry  *next = NEXT_BLOCK(dm);
610
611            while( next->size & DM_BLOCK_FREE ) /* collapse free blocks */
612            {
613                dm->size += sizeof(dosmem_entry) + (next->size & DM_BLOCK_MASK);
614                next->size = (DM_BLOCK_FREE | DM_BLOCK_TERMINAL);
615                next = NEXT_BLOCK(dm);
616            }
617
618            blocksize = dm->size & DM_BLOCK_MASK;
619            if ( blocksize > available ) available = blocksize;
620            dm = next;
621        }
622        else dm = NEXT_BLOCK(dm);
623    }
624    return available;
625 }
626
627
628 /***********************************************************************
629  *           DOSMEM_MapLinearToDos
630  *
631  * Linear address to the DOS address space.
632  */
633 UINT DOSMEM_MapLinearToDos(LPVOID ptr)
634 {
635     if (((char*)ptr >= DOSMEM_dosmem) &&
636         ((char*)ptr < DOSMEM_dosmem + 0x100000))
637           return (UINT)ptr - (UINT)DOSMEM_dosmem;
638     return (UINT)ptr;
639 }
640
641
642 /***********************************************************************
643  *           DOSMEM_MapDosToLinear
644  *
645  * DOS linear address to the linear address space.
646  */
647 LPVOID DOSMEM_MapDosToLinear(UINT ptr)
648 {
649     if (ptr < 0x100000) return (LPVOID)(ptr + (UINT)DOSMEM_dosmem);
650     return (LPVOID)ptr;
651 }
652
653
654 /***********************************************************************
655  *           DOSMEM_MapRealToLinear
656  *
657  * Real mode DOS address into a linear pointer
658  */
659 LPVOID DOSMEM_MapRealToLinear(DWORD x)
660 {
661    LPVOID       lin;
662
663    lin=DOSMEM_dosmem+(x&0xffff)+(((x&0xffff0000)>>16)*16);
664    TRACE_(selector)("(0x%08lx) returns %p.\n", x, lin );
665    return lin;
666 }
667
668 /***********************************************************************
669  *           DOSMEM_AllocSelector
670  *
671  * Allocates a protected mode selector for a realmode segment.
672  */
673 WORD DOSMEM_AllocSelector(WORD realsel)
674 {
675         HMODULE16 hModule = GetModuleHandle16("KERNEL");
676         WORD    sel;
677
678         sel=GLOBAL_CreateBlock( GMEM_FIXED, DOSMEM_dosmem+realsel*16, 0x10000,
679                                 hModule, WINE_LDT_FLAGS_DATA );
680         TRACE_(selector)("(0x%04x) returns 0x%04x.\n", realsel,sel);
681         return sel;
682 }