summaryrefslogblamecommitdiffstats
path: root/private/net/portuas/portlib.c
blob: 13d39b1dbbbe1cc6a22c6ed231cb768aa98f1182 (plain) (tree)
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
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366





















































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                       
/*++

Copyright (c) 1991-1993  Microsoft Corporation

Module Name:

    PortLib.C

Abstract:

    Main entry code for the PortUas runtime library function.

Author:

    Shanku Niyogi (W-SHANKN) 29-Oct-1991

Revision History:

    29-Oct-1991 w-shankn
        Created.
    06-Feb-1992 JohnRo
        Fixed memory leak with uPassword.
        Made changes suggested by PC-LINT.
    27-Feb-1992 JohnRo
        Changed user info level from 98 to 21 (avoid LAN/Server conflicts).
        Added message about updating existing user.
    28-Feb-1992 JohnRo
        Fixed MIPS build errors.
    03-Mar-1992 JohnRo
        Fixed bug in handling group memberships.
        Do special handling for privs and auth flags.
        Avoid creating redundant groups.
    11-Mar-1992 JohnRo
        Fixed bug handling priv/auth difference on existing user.
        Use WARNING_MSG(), ERROR_MSG(), PROGRESS_MSG() macros.
    18-Mar-1992 JohnRo
        Use iterator to allow hash-table collision handling.
    23-Apr-1992 JohnRo
        Handle probable LanMan bug: password required but password is null.
    07-May-1992 JohnRo
        Avoid dummy passwords altogether.
        Added alias support for operators.
        Added WORKAROUND_SAM_BUG support (NetUserAdd fails, try again).
        Fixed a possible memory leak in PortUas().
        Use FORMAT_ equates.
    10-Jun-1992 JohnRo
        RAID 10139: PortUAS should add to admin group/alias.
        PortUAS was also leaving temporary modals set on exit.
        Fixed bad (temp) value of max_passwd_age.
    29-Sep-1992 JohnRo
        RAID 8001: PORTUAS.EXE not in build (work with stdcall).
        (Moved portuas.c to portlib.c and port2.c to portuas.c)
    06-Oct-1992 JohnRo
        RAID 9020: Setup: PortUAS fails (group name same as a domain name).
    29-Oct-1992 JohnRo
        RAID 9020 ("prompt on conflicts" version).
        RAID 9613: PortUAS should prevent run on BDC.
    20-Nov-1992 JohnRo
        RAID 3875: PortUAS don't really ignore "redundant" groups.
    27-Jan-1993 JohnRo
        RAID 8683: PortUAS should set primary group from Mac parms.
    26-Apr-1993 JohnRo
        SAM bug seems to be obsolete, so avoid workaround for it.
    11-Jun-1993 JohnRo
        RAID 13257: PortUAS does not handle operator privileges.
    11-Aug-1993 JohnRo
        RAID NTBUG 16822: PortUAS should have ^C handler to restore user modals.
        RAID NTISSUE 2260: PortUAS returns a NetUserAdd error=1379 with local
        group.

--*/


// These must be included first:

#include <nt.h>         // NTSTATUS, NT_SUCCESS().
#include <ntrtl.h>      // (Needed with nt.h and windows.h)
#include <nturtl.h>     // (Needed with ntrtl.h and windows.h)
#include <windows.h>    // LocalFree(), SetConsoleCtrlHandler(), etc.
#include <lmcons.h>

// These may be included in any order:

#include <crypt.h>      // LM_OWF_PASSWORD, Rtl encrypt/decrypt/equal routines.
#include <lmaccess.h>   // AF_ and UF_ equates, LPUSER_INFO_22, etc.
#include <lmapibuf.h>
#include <lmerr.h>
#include <names.h>      // NetpIsMacPrimaryGroupFieldValid().
#include <netdebug.h>   // DBGSTATIC, NetpAssert(), etc.
#include <netlib.h>     // LOCAL_DOMAIN_TYPE_ equates.
#include <netlibnt.h>   // NetpNtStatusToApiStatus().
#include <portuas.h>
#include <portuasp.h>   // WARNING_MSG(), PortUasSam*, Verbose, etc.
#include <wchar.h>      // _wcsicmp().
#include <tchar.h>

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

// Don't need DOMAIN_GET_ALIAS_MEMBERSHIP or group equivalent...
#define OUR_DOMAIN_DESIRED_ACCESS DOMAIN_LOOKUP


// Enable real functionality.
#define PORTUAS_ENABLE


// Enable retry NetUserAdd (once) if it fails with ERROR_ACCESS_DENIED.
//#define WORKAROUND_SAM_BUG


#define REASON_NO_ERROR         ((DWORD) -1)


#define SET_MAP_REASON( someValue ) \
    { \
        mapNeeded = TRUE; \
        if (originalMapReason == REASON_NO_ERROR) { \
            originalMapReason = someValue; \
        } \
        mapReason = someValue; \
    }

#define RESET_MAP_REASON( ) \
    { \
        mapNeeded = FALSE; \
        originalMapReason = REASON_NO_ERROR; \
        untriedMapEntry = NULL;   /* Null pointer so we don't kill it. */ \
    }


// Global domain IDs.  These are set here, used here and in alias code, and
// cleaned-up here.
PSID PortUasAccountsDomainId = NULL;
PSID PortUasBuiltinDomainId  = NULL;

// Global SAM handles.  These are set here, used here and in alias code, and
// cleaned-up here.
SAM_HANDLE PortUasSamConnectHandle        = NULL;
SAM_HANDLE PortUasSamAccountsDomainHandle = NULL;
SAM_HANDLE PortUasSamBuiltinDomainHandle  = NULL;

// Global variables which are used by PortUasModalsCleanup() in the
// event of a control-C...
DBGSTATIC LPUSER_MODALS_INFO_0 finalModals0 = NULL;
DBGSTATIC BOOL                 modalsTemporarilyChanged = FALSE;



DBGSTATIC BOOL WINAPI
PortUasModalsCleanup(
    DWORD CtrlType
    )
/*++

Routine Description:

    BUGBUG

    This routine is registered with the Windows SetConsoleCtrlHandler() API.

Arguments:

    CtrlType - indicates which reason for calling this routine.

Return Value:

    BOOL - TRUE iff we want to be last handler.  We don't care...

--*/

{
    NET_API_STATUS rc;

    UNREFERENCED_PARAMETER( CtrlType );

    if (modalsTemporarilyChanged) {

#ifdef PORTUAS_ENABLE
        NetpAssert( finalModals0 != NULL );
        if ( rc = NetUserModalsSet( NULL, 0, (LPVOID)finalModals0, NULL )) {

            UNEXPECTED_MSG( "NetUserModalsSet(final)", rc );
            rc = PortUasError( rc );
        }
        // BUGBUG: We lose the "rc" value here...
#endif
    }
    modalsTemporarilyChanged = FALSE;

    if (finalModals0 != NULL) {
        (void) NetApiBufferFree( finalModals0 );
        finalModals0 = NULL;
    }

    if (Verbose) {
        DEBUG_MSG(( "Done setting modals to their final values.\n" ));
    }

    return (FALSE);  // we don't want to be only routine to process this...

} // PortUasModalsCleanup


NET_API_STATUS
PortUas(
    IN LPTSTR UasPathName
    )

/*++

Routine Description:

    PortUas ports account information in a LanMan 2.0 UAS database into
    the SAM database.

Arguments:

    UasPathName - supplies the path name to the UAS database file.

Return Value:

    NET_API_STATUS - NERR_Success if successful, or one of the following:


--*/

{

    NET_API_STATUS rc;
    BOOL groupAdded[UAS_MAXGROUP];

    USER_MODALS_INFO_0 tempModals0;

    LPGROUP_INFO_1 groups;
    LPDWORD gIds;
    DWORD gCount;

    LPMAP_ENTRY untriedMapEntry = NULL; // NULL once map entry is good.
    BOOL mapNeeded;
    DWORD mapReason;                    // REASON_ equates from PortUAS.h
    DWORD originalMapReason;            // REASON_ equates from PortUAS.h
    BOOL mapSetup = FALSE;

    USER_ITERATOR UserIterator;
    LPUSER_INFO_22 user = NULL;
    LPBYTE userEncryptedPassword = NULL;
    LPGROUP_INFO_0 userGroups;
    LPDWORD ugIds;
    DWORD ugCount;

    BOOL aliasesSetup = FALSE;
    BOOL databaseOpen = FALSE;
    DWORD i;
    NTSTATUS ntStatus;
    LM_OWF_PASSWORD nullEncryptedPassword;

    //
    // Are we running on a machine which allows updates to security info?
    // (Can't update a Backup Domain Controller directly, for instance.)
    //
    rc = PortUasMachineAllowsUpdates();
    if (rc == NERR_NotPrimary) {
        //ERROR_MSG((
        //       "PortUAS must be run on a Primary Domain Controller (PDC) or\n"
        //       "Windows/NT system, not a Backup Domain Controller (BDC).\n" ));
        (void)NlsPutMsg(STDOUT, PUAS_PDC_GOOD_BDC_BAD);
        goto Cleanup;
    } else if (rc == ERROR_ACCESS_DENIED) {
        //ERROR_MSG((
        //       "Your account does not have privilege for this.\n" ));
        (void)NlsPutMsg(STDOUT, PUAS_NO_PRIVILEGE);
        goto Cleanup;
    } else if (rc != NO_ERROR) {
        UNEXPECTED_MSG( "PortUasMachineAllowsUpdates", rc );
        goto Cleanup;
    }

    //
    // Start off by setting-up a null (encrypted) password.
    //
    ntStatus = RtlCalculateLmOwfPassword( "", &nullEncryptedPassword );
    NetpAssert( NT_SUCCESS( ntStatus ) );

    //
    // Open (at least, try to) the UAS database.
    //

    if ( UasPathName == NULL ) {

        rc = NERR_ACFNotFound;
        goto Cleanup;
    }

    if ( rc = PortUasOpen( UasPathName )) {

        goto Cleanup;
    }
    databaseOpen = TRUE;

    //
    // Initialize name mapping table.
    //
    RESET_MAP_REASON( );

    rc = PortUasMapTableInit( );
    if (rc != NO_ERROR) {
        UNEXPECTED_MSG( "PortUasTableMapInit", rc );
        goto Cleanup;
    }
    mapSetup = TRUE;

    NetpAssert( PortUasSamConnectHandle == NULL );
    NetpAssert( PortUasSamAccountsDomainHandle == NULL );
    NetpAssert( PortUasSamBuiltinDomainHandle == NULL );

    //
    // Get a connection to SAM.
    //
    ntStatus = SamConnect(
            NULL,                       // no server name (local)
            &PortUasSamConnectHandle,   // resulting SAM handle
            // SAM_SERVER_READ |           // desired access
            // SAM_SERVER_CONNECT |
            SAM_SERVER_LOOKUP_DOMAIN,
            NULL );                     // no object attributes
    if ( !NT_SUCCESS( ntStatus ) ) {
        rc = NetpNtStatusToApiStatus( ntStatus );
        UNEXPECTED_MSG( "SamConnect", rc );
        goto Cleanup;
    }
    NetpAssert( PortUasSamConnectHandle != NULL );

    //
    // To open the accounts and builtin domains (below), we'll need the
    // domain IDs.
    //
    rc = NetpGetLocalDomainId (
            LOCAL_DOMAIN_TYPE_ACCOUNTS, // type we want.
            & PortUasAccountsDomainId );
    if (rc != NO_ERROR) {
        UNEXPECTED_MSG( "NetpGetDomainId(accounts)", rc );
        goto Cleanup;
    }
    NetpAssert( PortUasAccountsDomainId != NULL );

    rc = NetpGetLocalDomainId (
            LOCAL_DOMAIN_TYPE_BUILTIN, // type we want.
            & PortUasBuiltinDomainId );
    if (rc != NO_ERROR) {
        UNEXPECTED_MSG( "NetpGetDomainId(builtin)", rc );
        goto Cleanup;
    }
    NetpAssert( PortUasBuiltinDomainId != NULL );
    NetpAssert( PortUasBuiltinDomainId != PortUasAccountsDomainId );

    //
    // We also need to open the accounts and builtin domains.
    //
    ntStatus = SamOpenDomain(
            PortUasSamConnectHandle,
            OUR_DOMAIN_DESIRED_ACCESS,
            PortUasAccountsDomainId,
            &PortUasSamAccountsDomainHandle );
    if ( !NT_SUCCESS( ntStatus ) ) {
        rc = NetpNtStatusToApiStatus( ntStatus );
        UNEXPECTED_MSG( "SamOpenDomain(accounts)", rc );
        goto Cleanup;
    }
    NetpAssert( PortUasSamAccountsDomainHandle != NULL );

    ntStatus = SamOpenDomain(
            PortUasSamConnectHandle,
            OUR_DOMAIN_DESIRED_ACCESS,
            PortUasBuiltinDomainId,
            &PortUasSamBuiltinDomainHandle );
    if ( !NT_SUCCESS( ntStatus ) ) {
        rc = NetpNtStatusToApiStatus( ntStatus );
        UNEXPECTED_MSG( "SamOpenDomain(builtin)", rc );
        goto Cleanup;
    }
    NetpAssert( PortUasSamBuiltinDomainHandle != NULL );

    //
    // Initialize alias stuff.
    //
    rc = PortUasAliasSetup();
    if (rc != NO_ERROR) {
        goto Cleanup;
    }
    aliasesSetup = TRUE;

    //
    // Everything we've done so far is transient.  (If someone hits control-C
    // or whatever, then the system would close alias handles, free memory, etc,
    // as part of the usual process cleanup.)  However, we're about to set the
    // user modals (to some temporary values), which are NOT transient.  So
    // we need to make arragements to restore the user modals if we die from
    // control-C or whatever...
    //
    // Register our cleanup routine with the Win32 runtime.
    //
    if ( !SetConsoleCtrlHandler( PortUasModalsCleanup, TRUE /* add */ ) ) {
        rc = GetLastError();
        UNEXPECTED_MSG( "SetConsoleCtrlHandler", rc );  // report the error.
        NetpAssert( rc != NO_ERROR );
        goto Cleanup;
    }

    //
    //
    // Get final version of modals.
    //

    if ( rc = PortUasGetModals( &finalModals0 )) {

        goto Cleanup;
    }

    //
    // We want to (1) be able to set NULL passwords in the process of
    // creating an account, and (2) want to avoid repetitive password
    // errors if PortUAS is run twice in a row.  So CliffV suggests
    // temporarily changing the modals to allow this.  So, let's set
    // the temporary version now.
    //
    tempModals0.usrmod0_min_passwd_len = 0;
    tempModals0.usrmod0_max_passwd_age = ONE_DAY;
    tempModals0.usrmod0_min_passwd_age = 0;
    tempModals0.usrmod0_force_logoff = 0;
    tempModals0.usrmod0_password_hist_len = 0;

#ifdef PORTUAS_ENABLE
    if ( rc = NetUserModalsSet( NULL, 0, (LPBYTE)&tempModals0, NULL )) {

        UNEXPECTED_MSG( "NetUserModalsSet(temp)", rc );
        rc = PortUasError( rc );
        goto Cleanup;
    }
#endif
    modalsTemporarilyChanged = TRUE;

    //
    // Initialize added group table.
    //

    for ( i = 0; i < UAS_MAXGROUP; i++ ) {

        groupAdded[i] = FALSE;

    }

    //
    // Get a list of groups (including the redundant ones).
    //

    rc = PortUasGetGroups(
            (LPBYTE *) (LPVOID) &groups,
            (LPBYTE *) (LPVOID) &gIds,
            &gCount );
    if (rc != NO_ERROR) {

        goto Cleanup;
    }

    //
    // Add the groups one by one.
    //

    for ( i = 0; i < gCount; i++ ) {

        BOOL ignoreThisGroup = FALSE;
        LPWSTR originalGroupName = groups[i].grpi1_name;
        LPWSTR groupName = originalGroupName;
        NetpAssert( groupName[0] != NULLC );
        RESET_MAP_REASON( );

        if (Verbose) {
            DEBUG_MSG( ("UAS database has group '" FORMAT_LPWSTR "'...\n",
                    originalGroupName ));
        }

        //
        // Repeat adding under different names until...
        //
        do {

#ifdef FAT8
            //
            // BUGBUG: Temporary!!!  Current reg stuff uses FAT (8.3) for
            // registry, so avoid long names!
            //
            if ( wcslen( groupName ) > PORTUAS_MAX_GROUP_LEN ) {

                SET_MAP_REASON( REASON_NAME_LONG_FOR_TEMP_REG );
                continue;   // Loop again checking this name.
            }
#endif // FAT8

            if ( PortUasIsGroupRedundant( groupName ) ) {
                //WARNING_MSG((
                //       "Ignoring redundant group '" FORMAT_LPWSTR "'...\n",
                //       groupName ));
                (void)NlsPutMsg(STDOUT, PUAS_IGNORING_REDUNDANT_GROUP,
                                groupName );
                break;  // Stop trying to add this group under any name.
            }

#ifdef PORTUAS_ENABLE
            //
            // Actually create the group.
            //
            groups[i].grpi1_name = groupName;
            rc = NetGroupAdd( NULL, 1, (LPBYTE)( &groups[i] ), NULL );
#else
            rc = NERR_Success;
#endif

            if ( !rc ) {

                groupAdded[gIds[i]] = TRUE;
                //PROGRESS_MSG(( "Group '" FORMAT_LPWSTR "' added.\n",
                //        groupName ));
                (void)NlsPutMsg(STDOUT, PUAS_GROUP_ADDED, groupName);
                RESET_MAP_REASON( );
                break;  // Done trying to add this group under any name.

            //
            // If the group already exists in NT, update it.
            //

            } else if ( rc == NERR_GroupExists ) {
                //PROGRESS_MSG(( "Changing group '" FORMAT_LPWSTR "'.\n",
                //        groupName ));
                (void)NlsPutMsg(STDOUT, PUAS_CHANGING_GROUP,
                          groupName );

#ifdef PORTUAS_ENABLE
                if (( rc = NetGroupSetInfo(
                        NULL,
                        groupName,
                        GROUP_COMMENT_INFOLEVEL,
                        (LPBYTE)( &(groups[i].grpi1_comment) ),
                        NULL )) && rc != NERR_SpeGroupOp ) {

                    UNEXPECTED_MSG( "NetGroupSetInfo", rc );
                    (void) NetApiBufferFree( groups );
                    (void) NetApiBufferFree( gIds );
                    rc = PortUasError( rc );
                    goto Cleanup;
                }
#endif
                groupAdded[gIds[i]] = TRUE;
                RESET_MAP_REASON( );
                break;  // Done trying to add this group under any name.

            //
            // If the group exists as a username, map another name for it.
            //

            } else if ( rc == NERR_UserExists ) {

                SET_MAP_REASON( REASON_CONFLICT_WITH_USERNAME );

            } else if ( rc == NERR_BadUsername ) {

                SET_MAP_REASON( REASON_BAD_NAME_SYNTAX );

            } else if ( rc == ERROR_ALIAS_EXISTS ) {

                SET_MAP_REASON( REASON_CONFLICT_WITH_LOCALGROUP );

            } else if ( rc == ERROR_DOMAIN_EXISTS ) {

                SET_MAP_REASON( REASON_CONFLICT_WITH_DOMAIN );

            //
            // Special group: ignore and continue.
            //

            } else if ( rc == NERR_SpeGroupOp ) {

                RESET_MAP_REASON( );

            //
            // Return any other error.
            //

            } else {

                UNEXPECTED_MSG( "NetGroupAdd", rc );
                (void) NetApiBufferFree( groups );
                (void) NetApiBufferFree( gIds );
                rc = PortUasError( rc );
                goto Cleanup;
            }

            //
            // If old map entry was a failure, then tell admin and delete entry.
            //
            if (untriedMapEntry != NULL) {
                // BUGBUG: can new name be NULL here?
                rc = PortUasComplainAboutBadName(
                        untriedMapEntry->NewName,
                        FALSE,          // no, this isn't a user name
                        mapReason );    // reason for latest failue.
                if (rc != NO_ERROR) {
                    UNEXPECTED_MSG( "PortUasComplainAboutBadName(redo group)",
                            rc );
                    goto Cleanup;
                }

                rc = PortUasDeleteBadMapEntry( untriedMapEntry );
                untriedMapEntry = NULL;   // Null pointer so we don't kill it.
                if (rc != NO_ERROR) {
                    UNEXPECTED_MSG( "PortUasDeleteBadMapEntry(group)", rc );
                    goto Cleanup;
                }
            }

            //
            // If this name needs to be mapped, then try to create a map table
            // entry for the original bad name and the original reason.
            //
            if (mapNeeded) {
                rc  = PortUasFindOrCreateMapEntry(
                        originalGroupName,      // old name
                        FALSE,          // no, this isn't a user name
                        originalMapReason,
                        & ignoreThisGroup,
                        & untriedMapEntry );   // Do NOT free this!
                if (rc != NO_ERROR) {
                    UNEXPECTED_MSG( "PortUasFindOrCreateMapEntry(group)", rc );
                    goto Cleanup;
                }

                if (ignoreThisGroup) {
                    break;  // Stop trying to add this group under any name.
                }
                NetpAssert( untriedMapEntry != NULL );
                groupName = untriedMapEntry->NewName;
                NetpAssert( groupName != NULL );
                continue;   // Loop again checking this name.
            }

        } while ( mapNeeded );

    } // for each group


    (void) NetApiBufferFree( groups );
    (void) NetApiBufferFree( gIds );

    //
    // Now add users.
    //

    PortUasInitUserIterator( UserIterator );

    for ( ; ; ) {

        BOOL ignoreThisUser = FALSE;
        DWORD originalAuthFlags;        // AF_OP_ value for this user.
        LPWSTR originalUserName;
        DWORD originalUserPriv;         // UAS USER_PRIV_ value for this user.
        LPWSTR userName;
        BOOL userUpdated = FALSE;
        RESET_MAP_REASON( );

        //
        // Get user data from database.  Note that this will return a null
        // pointer for a password.
        //

        rc = PortUasGetUser( &UserIterator, (LPBYTE *) (LPVOID) &user );

        //
        // No more users to port?
        //

        if ( rc == NERR_UserNotFound ) {

            break;
        }


        if ( rc ) {

            rc = PortUasError( rc );
            goto Cleanup;
        }

        NetpAssert( user != NULL );
        originalUserName = user->usri22_name;
        userName = originalUserName;
        NetpAssert( userName[0] != NULLC );

        //
        // Repeat adding user under different names until...
        //
        do {

#ifdef FAT8
            //
            // BUGBUG: Temporary!!!  Current reg stuff uses FAT (8.3) for
            // registry, so avoid long names!
            //
            if ( wcslen( userName ) > PORTUAS_MAX_USER_LEN ) {
                SET_MAP_REASON( REASON_NAME_LONG_FOR_TEMP_REG );
                continue;
            }
#endif // FAT8

            //
            // Read the (one-way-encrypted) password.
            //
            rc = PortUasGetUserOWFPassword(
                    &UserIterator,
                    &userEncryptedPassword );

            if (rc != NO_ERROR ) {
                rc = PortUasError( rc );
                goto Cleanup;
            }

            //
            // Update priviledges and authorization to be compatible with NT as
            // we're adding/changing the user.  Then we'll use the original info
            // to update NT via aliases.
            //
            originalAuthFlags = user->usri22_auth_flags;
            originalUserPriv = user->usri22_priv;
            if ( user->usri22_priv == USER_PRIV_ADMIN ) {
                //WARNING_MSG(( "Adding admin '" FORMAT_LPWSTR
                //       "' as regular user...\n",
                //       userName ));
                (void)NlsPutMsg(STDOUT, PUAS_ADDING_ADMIN_AS_REGULAR_USER,
                         userName );
                user->usri22_priv = USER_PRIV_USER;
            } else if ( user->usri22_priv == USER_PRIV_GUEST ) {
                //WARNING_MSG(( "Adding guest '" FORMAT_LPWSTR
                //       "' as regular user...\n",
                //       userName ));
                (void)NlsPutMsg(STDOUT, PUAS_ADDING_GUEST_AS_REGULAR_USER,
                         userName );
                user->usri22_priv = USER_PRIV_USER;
            } else if ( user->usri22_priv != USER_PRIV_USER ) {
                //WARNING_MSG((
                //       "Changing unknown priv for '" FORMAT_LPWSTR "' from "
                //       FORMAT_DWORD " to regular user.\n",
                //       userName, user->usri22_priv ));
                (void)NlsPutMsg(STDOUT, PUAS_CHANGING_UNK_PRIV_TO_REGULAR_USER,
                         userName, user->usri22_priv );
                user->usri22_priv = USER_PRIV_USER;
            }
            if ( user->usri22_auth_flags != 0 ) {
                //WARNING_MSG(( "Adding operator '" FORMAT_LPWSTR
                //       "' as regular user...\n",
                //       userName ));
                (void)NlsPutMsg(STDOUT, PUAS_ADDING_OPERATOR_AS_REGULAR_USER,
                         userName );
                user->usri22_auth_flags = 0;
            }

            //
            // copy encrypted password.
            //

            *(PLM_OWF_PASSWORD)(&(user->usri22_password[0])) =
                *(PLM_OWF_PASSWORD) userEncryptedPassword;

            //
            // Handle probable Lanman bug where password is null but password
            // is "required".  CliffV has seen this in actual LM 2.x UAS
            // databases.
            //

            if (RtlEqualLmOwfPassword(
                    &nullEncryptedPassword,
                    (PLM_OWF_PASSWORD) userEncryptedPassword )) {

                if ( ! (user->usri22_flags & UF_PASSWD_NOTREQD) ) {
                    //WARNING_MSG(( "Working around probable LanMan bug for user "
                    //   "'" FORMAT_LPWSTR "'.\n", userName ));
                    (void)NlsPutMsg(STDOUT, PUAS_WORKING_AROUND_LANMAN_BUG, userName );
                    user->usri22_flags |= UF_PASSWD_NOTREQD;
                }
            }

            //
            // Try to add the user, possibly under another name.
            //
            user->usri22_name = userName;

#ifdef PORTUAS_ENABLE
            rc = NetUserAdd( NULL, 22, (LPBYTE)user, NULL );

#ifdef WORKAROUND_SAM_BUG
            if (rc == ERROR_ACCESS_DENIED) {
                //WARNING_MSG((
                //       "Access denied on NetUserAdd, "
                //       "possible SAM bug, retrying...\n" ));
                (void)NlsPutMsg(STDOUT, PUAS_ACCESS_DENIED_POSSIBLE_SAM_BUG);
                rc = NetUserAdd( NULL, 22, (LPBYTE)user, NULL );
            }
#endif // WORKAROUND_SAM_BUG



#else // ndef PORTUAS_ENABLE
            rc = NERR_Success;

#endif // ndef PORTUAS_ENABLE

            if (rc == NO_ERROR) {
                (void)NlsPutMsg(STDOUT, PUAS_ADDED_USER_OK,
                      userName );

                userUpdated = TRUE;
                RESET_MAP_REASON( );

            } else if ( rc == NERR_BadUsername ) {

                SET_MAP_REASON( REASON_BAD_NAME_SYNTAX );

            } else if ( rc == ERROR_INVALID_PARAMETER ) {

                //WARNING_MSG(( "Error 87 adding user '" FORMAT_LPWSTR
                //       "', user info:\n", userName ));
                (void)NlsPutMsg(STDOUT, PUAS_ERROR_87_ADDING_USER, userName );

                DumpUserInfo( user );  // Log this info so we can track bogus...

            //
            // If the user exists as a (global) group name, map the name.
            //

            } else if ( rc == NERR_GroupExists ) {

                SET_MAP_REASON( REASON_CONFLICT_WITH_GROUP );

            //
            // If the user exists as a local group name, map the name.
            //

            } else if ( rc == ERROR_ALIAS_EXISTS ) {

                SET_MAP_REASON( REASON_CONFLICT_WITH_LOCALGROUP );

            //
            // Update data for existing user.
            //

            } else if ( rc == NERR_UserExists ) {

                LPUSER_INFO_2 CurrentInfo;

                //PROGRESS_MSG(( "User " FORMAT_LPWSTR
                //     " already exists; updating...\n", userName ));
                (void)NlsPutMsg(STDOUT, PUAS_USER_ALREADY_EXISTS_UPDATING, userName );

                //
                // We must preserve what SAM thinks the priv and auth flags are.
                //
                rc = NetUserGetInfo(
                        NULL,
                        userName,
                        2,
                        (LPBYTE *) (LPVOID) & CurrentInfo );
                if ( rc != NO_ERROR) {

                    //
                    // continue to process next user.
                    //

                    break;

                }
                RESET_MAP_REASON( );

                user->usri22_auth_flags = CurrentInfo->usri2_auth_flags;
                user->usri22_priv = CurrentInfo->usri2_priv;
                (void) NetApiBufferFree( CurrentInfo );

                //
                // Update everything except priv and auth flags.
                //
                if ( rc = NetUserSetInfo( NULL, userName, 22,
                                          (LPBYTE)user, NULL )) {

                    if ( rc == ERROR_INVALID_PARAMETER ) {

                        //WARNING_MSG(( "Error 87 changing user '" FORMAT_LPWSTR
                        //    "', user info:\n", userName ));
                        (void)NlsPutMsg(STDOUT, PUAS_ERROR_87_CHANGING_USER,
                              userName );
                        DumpUserInfo( user );  // Log this info.
                    } else {
                        UNEXPECTED_MSG( "NetUserSetInfo(normal)", rc );
                    }

                    //
                    // continue to process next user.
                    //

                    break;

                } else {
                    userUpdated = TRUE;
                }

            //
            // Report any other error.
            //

            } else {

                UNEXPECTED_MSG( "NetUserAdd", rc );

                //
                // continue to process next user.
                //

                break;

            }

            //
            // If the user was updated, assign this user to groups and aliases.
            //

            if ( userUpdated ) {

                NetpAssert( !mapNeeded );

                //
                // Get a list of groups for the user.
                //

                rc = PortUasGetUserGroups(
                        &UserIterator,
                        (LPBYTE *) (LPVOID) &userGroups,
                        (LPBYTE *) (LPVOID) &ugIds,
                        &ugCount );
                if (rc != NERR_Success) {

                    rc = PortUasError( rc );
                    goto Cleanup;
                }

                //
                // Add the groups one by one.
                //

                for ( i = 0; i < ugCount; i++ ) {

                    if ( groupAdded[ugIds[i]] ) {

                        LPMAP_ENTRY goodMapEntry;
                        LPWSTR groupName = userGroups[i].grpi0_name;
                        BOOL ignoreThisGroup = FALSE;
                        NetpAssert( groupName != NULL );
                        NetpAssert( !PortUasIsGroupRedundant( groupName ) );

                        //
                        // Find existing map for group name (if any).
                        // Note: PortUasFindMapEntry returns NO_ERROR
                        // and sets *goodMapEntry=NULL if not found.
                        //
                        rc = PortUasFindMapEntry(
                                groupName,      // Name to find.
                                & ignoreThisGroup,
                                & goodMapEntry );   // Do NOT free this!
                        if (rc != NO_ERROR) {
                            UNEXPECTED_MSG( "PortUasFindMapEntry", rc );
                            (VOID) NetApiBufferFree( ugIds );
                            goto Cleanup;
                        }
                        if (ignoreThisGroup) {
                            continue;  // ignore this group
                        }
                        if (goodMapEntry != NULL) {
                            NetpAssert( goodMapEntry->NewName != NULL);
                            groupName = goodMapEntry->NewName;
                        }


#ifdef PORTUAS_ENABLE
                        rc = NetGroupAddUser( NULL,
                                groupName,      // mapped group name
                                userName );

                        if ( rc && rc != NERR_SpeGroupOp
                                && rc != NERR_UserInGroup ) {

                            UNEXPECTED_MSG( "NetGroupAddUser", rc );
                            (void) NetApiBufferFree( ugIds );

                            //
                            // continue to process next user.
                            //

                            break;

                        }

                        //PROGRESS_MSG((
                        //       "User '" FORMAT_LPWSTR "' added to group '"
                        //       FORMAT_LPWSTR "'.\n", userName, groupName ));
                        (void)NlsPutMsg(STDOUT, PUAS_USER_ADDED_TO_GROUP,
                                 userName, groupName );
#endif
                    }
                }

                (void) NetApiBufferFree( userGroups );
                (void) NetApiBufferFree( ugIds );

                if ( rc && rc != NERR_SpeGroupOp
                        && rc != NERR_UserInGroup ) {

                    //
                    // continue to process next user.
                    //

                    break;

                }

                //
                // If user was an operator of some kind, add him/her to one or
                // more aliases.  Ditto if this is an admin.
                //
                rc = PortUasAddUserToAliases(
                        userName,
                        originalUserPriv,
                        originalAuthFlags & AF_SETTABLE_BITS );
                if (rc != NO_ERROR) {
                    UNEXPECTED_MSG( "PortUasAddUserToAliases", rc );

                    //
                    // continue to process next user.
                    //

                    break;

                }

                //
                // Finally, if there was a Macintosh primary group field for
                // this user, then set the primary group for him/her.
                //
                if ( NetpIsMacPrimaryGroupFieldValid(
                        (LPCTSTR) (user->usri22_parms) ) ) {

                    rc = PortUasSetMacPrimaryGroup(
                            (LPCTSTR) userName,
                            (LPCTSTR) (user->usri22_parms) );
                    if (rc != NO_ERROR) {
                        UNEXPECTED_MSG( "PortUasSetMacPrimaryGroup", rc );
                        // Continue with next user.
                    }
                }

            }

            //
            // If old map entry was a failure, then tell admin and delete entry.
            //
            if (untriedMapEntry != NULL) {
                // BUGBUG: can new name be NULL here?
                rc = PortUasComplainAboutBadName(
                        untriedMapEntry->NewName,
                        TRUE,           // yes, this is user name.
                        mapReason );    // reason for latest failue.
                if (rc != NO_ERROR) {
                    UNEXPECTED_MSG( "PortUasComplainAboutBadName(redo user)",
                            rc );
                    goto Cleanup;
                }

                rc = PortUasDeleteBadMapEntry( untriedMapEntry );
                untriedMapEntry = NULL;   // Null pointer so we don't kill it.
                if (rc != NO_ERROR) {
                    UNEXPECTED_MSG( "PortUasDeleteBadMapEntry(user)", rc );
                    goto Cleanup;
                }
            }

            //
            // If this name needs to be mapped, then try to create a map table
            // entry for the original bad name and the original reason.
            //
            if (mapNeeded) {
                NetpAssert( !userUpdated );
                rc  = PortUasFindOrCreateMapEntry(
                        originalUserName,       // old name
                        TRUE,           // yes, this is user name.
                        originalMapReason,
                        & ignoreThisUser,
                        & untriedMapEntry );   // Do NOT free this!
                if (rc != NO_ERROR) {
                    UNEXPECTED_MSG( "PortUasFindOrCreateMapEntry(user)", rc );
                    goto Cleanup;
                }

                if (ignoreThisUser) {
                    break;  // Stop trying to add this user under any name.
                }
                userName = untriedMapEntry->NewName;
                NetpAssert( userName != NULL );
                continue;   // Loop again checking this name.
            }

        } while (mapNeeded);

        //
        // Now that we're done with this user, we can free data for him/her.
        //
        (void) NetApiBufferFree( user );
        user = NULL;    // avoid confusing cleanup code.

    } // for each user

    //
    // Everything has been ported, we can actually return successfully.
    //
    rc = NERR_Success;

    //
    // Handle error or normal cleanup.  (rc must be set before we get here.)
    //
Cleanup:

    (VOID) PortUasModalsCleanup( CTRL_CLOSE_EVENT );

    if (aliasesSetup) {
        (VOID) PortUasAliasCleanup();
    }

    if (databaseOpen) {
        PortUasClose();
    }
    if (mapSetup) {
        (VOID) PortUasFreeMapTable( );
    }

    //
    // Free the domain ID memory.
    //
    if (PortUasAccountsDomainId != NULL) {
        (VOID) LocalFree( PortUasAccountsDomainId );
    }
    if (PortUasBuiltinDomainId != NULL) {
        (VOID) LocalFree( PortUasBuiltinDomainId );
    }

    CLOSE_SAM_HANDLE( PortUasSamConnectHandle );
    CLOSE_SAM_HANDLE( PortUasSamAccountsDomainHandle );
    CLOSE_SAM_HANDLE( PortUasSamBuiltinDomainHandle );

    if (user != NULL) {
        (void) NetApiBufferFree( user );
    }
    if (userEncryptedPassword != NULL) {
        (void) NetApiBufferFree( userEncryptedPassword );
    }
    return (rc);

} // PortUas()


// Expected returns: NERR_NotPrimary, ERROR_ACCESS_DENIED, or NO_ERROR.
NET_API_STATUS
PortUasMachineAllowsUpdates(
    VOID
    )
{
    NET_API_STATUS ApiStatus;
    LPUSER_MODALS_INFO_1 Modals = NULL;

    if (Verbose) {
        NetpKdPrint(( PREFIX_PORTUAS "PortUasMachineAllowsUpdates: "
                "getting role...\n" ));
    }
    ApiStatus = NetUserModalsGet(
            NULL,                               // no server name (local)
            1,                                  // info level
            (LPBYTE *) (LPVOID) &Modals );      // alloc and set ptr
    if (ApiStatus == ERROR_ACCESS_DENIED) {
        goto Cleanup;
    } else if (ApiStatus != NO_ERROR) {
        UNEXPECTED_MSG( "NetUserModalsGet", ApiStatus );
        goto Cleanup;
    }
    NetpAssert( Modals != NULL );

    switch ( Modals->usrmod1_role ) {
    case UAS_ROLE_PRIMARY:
        break;

    case UAS_ROLE_BACKUP:

        ApiStatus = NERR_NotPrimary;
        goto Cleanup;

    case UAS_ROLE_MEMBER:       /*FALLTHROUGH*/
    case UAS_ROLE_STANDALONE:   /*FALLTHROUGH*/
    default:
        // CliffV says we won't ever see member or standalone for NT.
        NetpKdPrint(( PREFIX_PORTUAS "PortUasMachineAllowsUpdates: "
                "unexpected value " FORMAT_DWORD " for role.\n",
                Modals->usrmod1_role ));
        NetpAssert( FALSE );
        ApiStatus = NERR_InternalError;
        goto Cleanup;
    }

    //
    // Now find out if we're really an admin.
    //

    if (Verbose) {
        NetpKdPrint(( PREFIX_PORTUAS "PortUasMachineAllowsUpdates: "
                "seeing if we're an admin.\n" ));
    }

    ApiStatus = NetUserModalsSet (
            NULL,               // no server name
            1,                  // level
            (LPVOID) Modals,    // buffer
            NULL );             // don't care about parm err
    if (ApiStatus == ERROR_ACCESS_DENIED) {
        // caller will tell user.
        goto Cleanup;
    } else if (ApiStatus != NO_ERROR) {
        UNEXPECTED_MSG( "NetUserModalsSet(test)", ApiStatus );
        goto Cleanup;
    }

Cleanup:
    if (Modals != NULL) {
        (VOID) NetApiBufferFree( Modals );
    }
    return (ApiStatus);
}



BOOL
PortUasIsGroupRedundant(
    IN LPWSTR GroupName
    )
{
    NetpAssert( GroupName != NULL );
    NetpAssert( (*GroupName) != NULLC );

    if ( _wcsicmp( GroupName, (LPCTSTR) GROUP_SPECIALGRP_ADMINS ) == 0) {
        return (TRUE);  // Match, must be redundant.
    } else if ( _wcsicmp( GroupName, (LPCTSTR) GROUP_SPECIALGRP_GUESTS ) == 0) {
        return (TRUE);  // Match, must be redundant.
    } else if ( _wcsicmp( GroupName, (LPCTSTR) GROUP_SPECIALGRP_LOCAL ) == 0) {
        return (TRUE);  // Match, must be redundant.
    } else if ( _wcsicmp( GroupName, (LPCTSTR) GROUP_SPECIALGRP_USERS ) == 0) {
        return (TRUE);  // Match, must be redundant.
    } else {
        return (FALSE);     // No match, must not be redundant.
    }
    /*NOTREACHED*/

} // PortUasIsGroupRedundant



NET_API_STATUS
PortUasError(
    IN NET_API_STATUS Error
    )

/*++

Routine Description:

    Maps certain errors onto ones that PortUas can return.

Arguments:

    Error - the error code to map.

Return Value:

    NET_API_STATUS - the mapped error code.


--*/

{

    switch ( Error ) {

    case NERR_NoRoom:

        return ERROR_NOT_ENOUGH_MEMORY;

    case ERROR_INVALID_PARAMETER:
    case ERROR_INVALID_PASSWORD:
    case NERR_UserNotFound:

        return NERR_InternalError;

    default:

        return Error;
    }

} // PortUasError

int FileIsConsole(HANDLE fh)
{
    unsigned htype ;

    return GetConsoleMode( fh, &htype );
//    htype = GetFileType(fh);
//    htype &= ~FILE_TYPE_REMOTE;
//    return htype == FILE_TYPE_CHAR;
}


#define	MAX_BUF_SIZE	1024
	TCHAR	ConBuf[MAX_BUF_SIZE];
static	CHAR	AnsiBuf[MAX_BUF_SIZE*2];	/* 2 because of DBCS */

int
MyWriteConsole(int fOutOrErr, int cch)
{
    HANDLE	hOut;

    if (fOutOrErr == STDOUT)
	hOut = GetStdHandle(STD_OUTPUT_HANDLE);
    else
	hOut = GetStdHandle(STD_ERROR_HANDLE);

    if (FileIsConsole(hOut))
	WriteConsole(hOut, ConBuf, cch, &cch, NULL);
    else {
	cch = WideCharToMultiByte(CP_OEMCP, 0,
				  ConBuf, cch,
				  AnsiBuf, MAX_BUF_SIZE*3,
				  NULL, NULL);
	WriteFile(hOut, AnsiBuf, cch, &cch, NULL);
    }

    return cch;
}

int
WriteToCon(TCHAR*fmt, ...)
{
    va_list     args;
    int		cch;

    va_start( args, fmt );
    cch = _vsntprintf( ConBuf, MAX_BUF_SIZE, fmt, args );
    va_end( args );
    return MyWriteConsole(STDOUT, cch);
}