summaryrefslogtreecommitdiffstats
path: root/private/mvdm/dpmi32/xmem.c
blob: f8330488083e92cbcc58b01aac50dad1c990b0ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
/*++

Copyright (c) 1992  Microsoft Corporation

Module Name:

    xmem.c

Abstract:

    This module contains routines for allocating and freeing "extended" memory.
    The memory is allocated directly from NT.

Author:

    Dave Hastings (daveh) 12-Dec-1992

Notes:

    Moved from dpmi32\i386
    
Revision History:

    09-Feb-1994 (daveh) 
        Modified to be the common front end for the memory allocation.  Calls
        processor specific code to do actual allocation
        
--*/
#include "precomp.h"
#pragma hdrstop
#include "softpc.h"
#include <malloc.h>

//
// Xmem structure
//
typedef struct _Xmem {
    PVOID Address;
    ULONG Length;
    struct _Xmem * Prev;
    struct _Xmem * Next;
    WORD Owner;

} XMEM_BLOCK, *PXMEM_BLOCK;

XMEM_BLOCK  XmemHead = { NULL, 0, &XmemHead, &XmemHead, 0};

#define DELETE_BLOCK(BLK)   (BLK->Prev)->Next = BLK->Next;\
                (BLK->Next)->Prev = BLK->Prev

#define INSERT_BLOCK(BLK)   BLK->Next = XmemHead.Next; BLK->Prev= XmemHead.Next->Prev;\
                (XmemHead.Next)->Prev = BLK; XmemHead.Next = BLK

VOID
DpmiAllocateXmem(
    VOID
    )
/*++

Routine Description:

    This routine allocates a block of "extended" memory from NT.  The
    blocks allocated this way will be 64K aligned (for now).  The address
    of the block is returned to the segmented app in bx:cx

Arguments:

    None.

Return Value:

    None.

--*/
{
    ULONG BlockAddress, BlockSize;
    NTSTATUS Status;
    PXMEM_BLOCK XmemBlock;

    //
    // Get a block of memory from NT (any base address)
    //
    BlockSize = ((ULONG)getBX() << 16) | getCX();
    BlockAddress = 0;
    Status = DpmiAllocateVirtualMemory(
        (PVOID)&BlockAddress,
        &BlockSize
        );

    if (!NT_SUCCESS(Status)) {
        setCF(1);
#if DBG
        OutputDebugString("DPMI: DpmiAllocateXmem failed to get memory block\n");
#endif
        return;
    }
    XmemBlock = malloc(sizeof(XMEM_BLOCK));
    if (!XmemBlock) {
        setCF(1);
        DpmiFreeVirtualMemory(
            (PVOID)&BlockAddress,
            &BlockSize
            );
        return;
    }
    XmemBlock->Address = (PVOID)BlockAddress;
    XmemBlock->Length = BlockSize;
    XmemBlock->Owner = getDX();
    INSERT_BLOCK(XmemBlock);

    //
    // Return the information about the block
    //
    setBX((USHORT)(BlockAddress >> 16));
    setCX((USHORT)(BlockAddress & 0x0000FFFF));
    //
    // Use xmem block addresss as handle
    //
    setSI((USHORT)((ULONG)XmemBlock >> 16));
    setDI((USHORT)((ULONG)XmemBlock & 0x0000FFFF));
    setCF(0);
}

VOID
DpmiFreeXmem(
    VOID
    )
/*++

Routine Description:

    This routine frees a block of "extended" memory from NT.

Arguments:

    None.

Return Value:

    None.

--*/
{
    PXMEM_BLOCK XmemBlock;
    NTSTATUS Status;
    PVOID BlockAddress;
    ULONG BlockSize;

    XmemBlock = (PVOID)(((ULONG)getSI() << 16) | getDI());

    BlockAddress = XmemBlock->Address;
    BlockSize = XmemBlock->Length;

    Status = DpmiFreeVirtualMemory(
        &BlockAddress,
        &BlockSize
        );

    if (!NT_SUCCESS(Status)) {
        setCF(1);
#if DBG
        OutputDebugString("DPMI: DpmiFreeXmem failed to free block\n");
#endif
        return;
    }

    DELETE_BLOCK(XmemBlock);

    free(XmemBlock);
    setCF(0);
    return;
}

VOID
DpmiReallocateXmem(
    VOID
    )
/*++

Routine Description:

    This routine resizes a block of "extended memory".  If the change in size
    is less than 4K, no change is made.

Arguments:

    None.

Return Value:

    None.

--*/
{
    PXMEM_BLOCK OldBlock;
    ULONG BlockAddress, NewSize;
    NTSTATUS Status;

    OldBlock = (PVOID)(((ULONG)getSI() << 16) | getDI());
    NewSize = (((ULONG)getBX() << 16) | getCX());

    BlockAddress = 0;
    Status = DpmiReallocateVirtualMemory(
        OldBlock->Address,
        OldBlock->Length,
        (PVOID)&BlockAddress,
        &NewSize
        );

    if (!NT_SUCCESS(Status)) {
        setCF(1);
#if DBG
        OutputDebugString("DPMI: DpmiAllocateXmem failed to get memory block\n");
#endif
        return;
    }

    OldBlock->Address = (PVOID)BlockAddress;
    OldBlock->Length = NewSize;
    
    //
    // Return the information about the block
    //
    setBX((USHORT)(BlockAddress >> 16));
    setCX((USHORT)(BlockAddress & 0x0000FFFF));
  
    setCF(0);
}

VOID
DpmiFreeAppXmem(
    VOID
    )
/*++

Routine Description:

    This routine frees Xmem allocated for the application

Arguments:

    Client DX = client PSP selector

Return Value:

    TRUE  if everything goes fine.
    FALSE if unable to release the memory
--*/
{
    PXMEM_BLOCK p1, p2;
    NTSTATUS Status;
    PVOID BlockAddress;
    ULONG BlockSize;
    WORD  selClientPSP;


    p1 = XmemHead.Next;
    selClientPSP = getDX();

    while(p1 != &XmemHead) {
        if (p1->Owner == selClientPSP) {
            BlockAddress = p1->Address;
            BlockSize = p1->Length;

            Status = DpmiFreeVirtualMemory(
                &BlockAddress,
                &BlockSize
                );

            if (!NT_SUCCESS(Status)) {
#if DBG
                OutputDebugString("DPMI: DpmiFreeXmem failed to free block\n");
#endif
                return;
            }
            p2 = p1->Next;
            DELETE_BLOCK(p1);
            free(p1);
            p1 = p2;
            continue;
        }
        p1 = p1->Next;
    }
    return;
}

VOID
DpmiFreeAllXmem(
    VOID
    )
/*++

Routine Description:

    This function frees all allocated xmem.

Arguments:

    none
    
Return Value:

    None.

--*/
{
    PXMEM_BLOCK p1, p2;
    NTSTATUS Status;
    PVOID BlockAddress;
    ULONG BlockSize;
    
    p1 = XmemHead.Next;
    while(p1 != &XmemHead) {
        BlockAddress = p1->Address;
        BlockSize = p1->Length;

        Status = DpmiFreeVirtualMemory(
            &BlockAddress,
            &BlockSize
            );

        if (!NT_SUCCESS(Status)) {
#if DBG
            OutputDebugString("DPMI: DpmiFreeXmem failed to free block\n");
#endif
            return;
        }
        p2 = p1->Next;
        DELETE_BLOCK(p1);
        free(p1);
        p1 = p2;
    }
}