summaryrefslogtreecommitdiffstats
path: root/private/net/portuas/portmap.c
blob: 577fb8fa5b77465be6bbbc8529cb277607e25b4b (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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
/*++

Copyright (c) 1992-1993  Microsoft Corporation

Module Name:

    PortMap.C

Abstract:

    PortUAS name mapping layer.

Author:

    John Rogers (JohnRo) 29-Oct-1992

Revision History:

    29-Oct-1992 JohnRo
        Created for RAID 9020 ("prompt on conflicts" version).
    26-Jan-1993 JohnRo
        RAID 8683: PortUAS should set primary group from Mac parms.

--*/


// These must be included first:

#include <nt.h>         // Needed by <portuasp.h>
#include <windef.h>
#include <lmcons.h>

// These may be included in any order:

#include <lmapibuf.h>
#include <netdebug.h>   // DBGSTATIC, NetpAssert(), etc.
#include <netlib.h>     // NetpSetOptionalArg().
#include <portuasp.h>   // WARNING_MSG(), Verbose, my prototypes, etc.
#include <string.h>     // memcpy().
#include <tstring.h>    // NetpAllocWStrFromWStr(), WCSSIZE().
#include <wchar.h>      // _wcsicmp().
#include <winerror.h>   // NO_ERROR, ERROR_ equates.

#include "nlstxt.h"     // NLS message ID's

DBGSTATIC BOOL IgnoreAllNamesInError = FALSE;

// Array of map table entries.
DBGSTATIC LPMAP_ENTRY MapTableStart = NULL;

DBGSTATIC DWORD MapTableEntryCount = 0;


NET_API_STATUS
PortUasMapTableInit(
    VOID
    )
{
    MapTableStart = NULL;
    MapTableEntryCount = 0;
    IgnoreAllNamesInError = FALSE;

    if (Verbose) {
        NetpKdPrint(( PREFIX_PORTUAS "Initial map table:\n" ));
        PortUasDbgDisplayMapTable( );
    }
    return (NO_ERROR);

} // PortUasMapTableInit


// Return NO_ERROR and *MapEntry=NULL if not found.
NET_API_STATUS
PortUasFindMapEntry(
    IN LPWSTR NameToFind,
    OUT BOOL * IgnoreThis OPTIONAL,
    OUT LPMAP_ENTRY * MapEntry  // Do NOT free this!
    )
{
    DWORD EntriesLeft;
    LPMAP_ENTRY TableEntry;

    NetpAssert( NameToFind != NULL );
    NetpAssert( (*NameToFind) != NULLC );
    NetpAssert( MapEntry != NULL );

    if (MapTableEntryCount == 0) {
        NetpAssert( MapTableStart == NULL );

        // Not found (table empty).
        NetpSetOptionalArg( IgnoreThis, FALSE );
        *MapEntry = NULL;
        return (NO_ERROR);
    }

    TableEntry = MapTableStart;
    for (EntriesLeft=MapTableEntryCount; EntriesLeft > 0; --EntriesLeft) {
        if (_wcsicmp( NameToFind, TableEntry->OldName ) == 0 ) {

            // Found.
            if ( (TableEntry->NewName) == NULL ) {
                NetpSetOptionalArg( IgnoreThis, TRUE );
            } else {
                NetpSetOptionalArg( IgnoreThis, FALSE );
            }
            *MapEntry = TableEntry;
            return (NO_ERROR);
        }
        ++TableEntry;
    }

    // Not found (in non-empty table).
    NetpSetOptionalArg( IgnoreThis, FALSE );
    *MapEntry = NULL;
    return (NO_ERROR);

} // PortUasFindMapEntry


// This sets globals MapTableStart and MapTableEntryCount.
DBGSTATIC NET_API_STATUS
PortUasReallocateMapTable(
    IN DWORD NewEntryCount
    )
{
    NET_API_STATUS ApiStatus;

    if (NewEntryCount==0) {

        //
        // Handle worst case: no entries left.
        //

        if (MapTableStart != NULL) {
            (VOID) NetApiBufferFree( MapTableStart );
            MapTableStart = NULL;
            MapTableEntryCount = 0;
        } else {
            NetpAssert( MapTableEntryCount == 0 );
        }

    } else if (MapTableStart == NULL) {

        //
        // Another strange case: just allocate it the first time around.
        //

        NetpAssert( NewEntryCount == 1 );
        ApiStatus = NetApiBufferAllocate(
                sizeof( MAP_ENTRY ) * NewEntryCount,
                (LPVOID *) (LPVOID) & MapTableStart );  // alloc and set ptr
        if (ApiStatus != NO_ERROR) {
            UNEXPECTED_MSG( "NetApiBufferAllocate(map tbl)", ApiStatus );
            goto Cleanup;
        }
        NetpAssert( MapTableStart != NULL );

    } else {

        //
        // Reallocate the map table to make room for one more structure.
        //

        ApiStatus = NetApiBufferReallocate(
                MapTableStart,    // old buffer
                sizeof( MAP_ENTRY ) * NewEntryCount,
                (LPVOID *) (LPVOID) & MapTableStart );  // alloc and set ptr
        if (ApiStatus != NO_ERROR) {
            UNEXPECTED_MSG( "NetApiBufferReallocate(map table)", ApiStatus );
            goto Cleanup;
        }
        NetpAssert( MapTableStart != NULL );
    }

    //
    // Update was OK.
    //
    MapTableEntryCount = NewEntryCount;
    ApiStatus = NO_ERROR;

Cleanup:
    if (ApiStatus != NO_ERROR) {
        NetpKdPrint(( PREFIX_PORTUAS "PortUasReallocateMapTable: "
                " returning " FORMAT_API_STATUS ".\n", ApiStatus ));
    }
    if (Verbose) {
        NetpKdPrint(( PREFIX_PORTUAS "PortUasReallocateMapTable: "
                " exiting with table at " FORMAT_LPVOID ", " FORMAT_DWORD
                " entries.\n", (LPVOID) MapTableStart, MapTableEntryCount ));
    }
    return (ApiStatus);

} // PortUasReallocateMapTable


NET_API_STATUS
PortUasFindOrCreateMapEntry(
    IN LPWSTR OldName,
    IN BOOL ThisIsUserName,     // TRUE for user name, FALSE for group name.
    IN DWORD Reason,            // REASON_ equates from PortUAS.h
    OUT BOOL * IgnoreThis,
    OUT LPMAP_ENTRY * MapEntryOut  // Do NOT free this!
    )
{
    NET_API_STATUS ApiStatus;
    LPWSTR NewName = NULL;
    LPWSTR OldNameCopy = NULL;
    LPMAP_ENTRY TableEntry = NULL;

    NetpAssert( OldName != NULL );
    NetpAssert( (*OldName) != NULLC );
    NetpAssert( MapEntryOut != NULL );

    if (IgnoreAllNamesInError) {
        *IgnoreThis = TRUE;
        *MapEntryOut = NULL;
        return (NO_ERROR);
    }

    //
    // Find existing entry (if any).
    // Note that PortUasFindMapEntry returns NO_ERROR and sets *MapEntry=NULL
    // if not found.
    //
    ApiStatus = PortUasFindMapEntry(
            OldName,            // name to find
            IgnoreThis,
            MapEntryOut );      // Set map entry ptr - do NOT free this!
    if (ApiStatus != NO_ERROR) {
        return (ApiStatus);
    }
    if (*MapEntryOut != NULL) {
        if ( (*MapEntryOut)->NewName != NULL ) {
            *IgnoreThis = FALSE;
        } else {
            *IgnoreThis = TRUE;
        }
        return (NO_ERROR);
    }

    //
    // Prompt for new name.
    //
    ApiStatus = PortUasDefaultPromptForNewName(
            OldName,
            ThisIsUserName,     // TRUE for user name, FALSE for group name
            Reason,             // REASON_ equates.
            & NewName,                  // alloc w/ NetApiBufferAllocate().
            IgnoreThis,
            & IgnoreAllNamesInError );
    if (ApiStatus != NO_ERROR) {
        UNEXPECTED_MSG( "PortUasDefaultPromptForNewName", ApiStatus );
        goto Cleanup;
    }

    //
    // Allocate copy of old name.
    //
    OldNameCopy = NetpAllocWStrFromWStr( OldName );
    if (OldNameCopy == NULL) {
        ApiStatus = ERROR_NOT_ENOUGH_MEMORY;
        UNEXPECTED_MSG( "NetpAllocWStrFromWStr", ApiStatus );
        goto Cleanup;
    }

    //
    // Reallocate the map table to make room for one more structure.
    // (Or, just allocate it the first time around.)
    // This sets globals MapTableStart and MapTableEntryCount.
    //
    ApiStatus = PortUasReallocateMapTable( MapTableEntryCount+1 );
    if (ApiStatus != NO_ERROR) {
        UNEXPECTED_MSG( "PortUasReallocateMapTable(create)", ApiStatus );
        goto Cleanup;
    }
    NetpAssert( MapTableStart != NULL );
    NetpAssert( MapTableEntryCount != 0 );

    //
    // Create the new entry.
    //

    TableEntry = & MapTableStart[MapTableEntryCount-1];

    if (*IgnoreThis) {
        TableEntry->NewName = NULL;
    } else {
        TableEntry->NewName = NewName;
    }
    TableEntry->OldName = OldNameCopy;

    //
    // If we made it this far, then everything is valid.
    //
    *MapEntryOut = TableEntry;

    if (Verbose) {
        NetpKdPrint(( PREFIX_PORTUAS "Updated map table:\n" ));
        PortUasDbgDisplayMapTable( );
    }

    ApiStatus = NO_ERROR;

Cleanup:

    if (ApiStatus != NO_ERROR) {
        *MapEntryOut = NULL;
        if ( (ApiStatus != NO_ERROR) && (NewName !=NULL ) ) {
            (VOID) NetApiBufferFree( NewName );
        }
        if ( (ApiStatus != NO_ERROR) && (OldNameCopy !=NULL ) ) {
            (VOID) NetApiBufferFree( OldNameCopy );
        }
    }
    return (ApiStatus);

} // PortUasFindOrCreateMapEntry


DBGSTATIC VOID
PortUasFreeStringsForMapEntry(
    IN LPMAP_ENTRY TableEntry
    )
{
    NetpAssert( TableEntry != NULL );
    NetpAssert( TableEntry->OldName != NULL );
    (VOID) NetApiBufferFree( TableEntry->OldName );

    if (TableEntry->NewName != NULL) {
        (VOID) NetApiBufferFree( TableEntry->NewName );
    }
} // PortUasFreeStringsForMapEntry


NET_API_STATUS
PortUasDeleteBadMapEntry(
    IN LPMAP_ENTRY EntryToDelete
    )
{
    NET_API_STATUS ApiStatus;
    DWORD EntriesLeft;
    LPMAP_ENTRY TableEntry;

    if (EntryToDelete == NULL ) {
        ApiStatus = ERROR_INVALID_PARAMETER;
        goto Cleanup;
    }

    if (MapTableEntryCount == 0) {
        NetpAssert( MapTableStart == NULL );

        // Not found (table empty).
        ApiStatus = ERROR_INVALID_PARAMETER;
        goto Cleanup;
    }

    TableEntry = MapTableStart;
    NetpAssert( MapTableStart != NULL );
    for (EntriesLeft=MapTableEntryCount; EntriesLeft > 0; --EntriesLeft) {
        if (EntryToDelete == TableEntry) {

            // Found it!

            // Free string(s) pointed-to by this entry.
            PortUasFreeStringsForMapEntry( EntryToDelete );

            // Compress this entry out of table.
            if (EntriesLeft > 1) {             // Any entries after this?
                (VOID) memcpy(
                        EntryToDelete,         // dest: entry to be wiped-out
                        EntryToDelete + (EntriesLeft-1),  // src: last entry
                        sizeof(MAP_ENTRY) );   // byte count
            }

            // Realloc area for structures and set globals.
            ApiStatus = PortUasReallocateMapTable(
                    MapTableEntryCount-1 );    // new entry count
            if (ApiStatus != NO_ERROR) {
                UNEXPECTED_MSG( "PortUasReallocateMapTable(del)", ApiStatus );
                goto Cleanup;
            }

            ApiStatus = NO_ERROR;
            goto Cleanup;
        }
        ++TableEntry;
    }

    // Not found (in non-empty table).
    ApiStatus = ERROR_INVALID_PARAMETER;

Cleanup:
    if (ApiStatus != NO_ERROR) {
        NetpKdPrint(( PREFIX_PORTUAS "PortUasDeleteBadMapTableEntry: "
                " returning " FORMAT_API_STATUS ".\n", ApiStatus ));
    }
    if (Verbose) {
        NetpKdPrint(( PREFIX_PORTUAS "Map table (after entry delete):\n" ));
        PortUasDbgDisplayMapTable( );
    }
    return (ApiStatus);

} // PortUasDeleteBadMapEntry


NET_API_STATUS
PortUasFreeMapTable(
    VOID
    )
{
    DWORD EntriesLeft;
    LPMAP_ENTRY TableEntry;

    if (MapTableStart != NULL) {
        NetpAssert( MapTableEntryCount != 0 );

        if (Verbose) {
            NetpKdPrint(( PREFIX_PORTUAS "Final map table (before free):\n" ));
            PortUasDbgDisplayMapTable( );
        }

        //
        // Free name strings in each table entry.
        //
        TableEntry = MapTableStart;
        for (EntriesLeft=MapTableEntryCount; EntriesLeft > 0; --EntriesLeft) {

            PortUasFreeStringsForMapEntry( TableEntry );

            ++TableEntry;
        }

        //
        // Free array of structures.
        //

        (VOID) NetApiBufferFree( MapTableStart );
        MapTableStart = NULL;
        MapTableEntryCount = 0;
    } else {
        NetpAssert( MapTableEntryCount == 0 );
    }

    if (Verbose) {
        NetpKdPrint(( PREFIX_PORTUAS "Final map table (after free):\n" ));
        PortUasDbgDisplayMapTable( );
    }

    return (NO_ERROR);

} // PortUasFreeMapTable


VOID
PortUasDbgDisplayMapTable(
    VOID
    )
{
    DWORD EntriesLeft;
    LPMAP_ENTRY TableEntry;
    NetpKdPrint(( PREFIX_PORTUAS "Map table: (" FORMAT_DWORD " entries)...\n",
            MapTableEntryCount ));
    if (MapTableEntryCount == 0) {
        NetpAssert( MapTableStart == NULL );
        return;
    }

    TableEntry = MapTableStart;
    for (EntriesLeft=MapTableEntryCount; EntriesLeft > 0; --EntriesLeft) {
        PortUasDbgDisplayMapEntry( TableEntry );
        ++TableEntry;
    }
}


VOID
PortUasDbgDisplayMapEntry(
    IN LPMAP_ENTRY Entry
    )
{
    NetpAssert( Entry != NULL );
    NetpAssert( (Entry->OldName)  != NULL );

    NetpKdPrint(( "  map entry at " FORMAT_LPVOID ":\n", (LPVOID) Entry ));
    NetpKdPrint(( "    old name : " FORMAT_LPWSTR "\n", Entry->OldName ));
    NetpKdPrint(( "    new name : " FORMAT_LPWSTR "\n",
            (Entry->NewName) ? (Entry->NewName) : L"(**IGNORE**)" ));

}