Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

309 lines
5.7 KiB

/*--
Copyright (c) 1995 Microsoft Corporation
Module Name:
anydc.c
Abstract:
Test program for the Finding a DC in any domain
Author:
04-Sep-1995 (cliffv)
Environment:
User mode only.
Contains NT-specific code.
Requires ANSI C extensions: slash-slash comments, long external names.
Revision History:
--*/
//
// Common include files.
//
#include <nt.h>
#include <ntrtl.h>
#include <nturtl.h>
#undef DOMAIN_ALL_ACCESS // defined in both ntsam.h and ntwinapi.h
#include <ntsam.h>
#include <ntlsa.h>
#include <windows.h>
#include <lmcons.h>
// #include <accessp.h>
//#include <icanon.h>
#include <lmerr.h>
// #include <lmwksta.h>
// #include <lmaccess.h>
// #include <lmapibuf.h>
// #include <lmremutl.h> // NetpRemoteComputerSupports(), SUPPORTS_ stuff
// #include <lmsvc.h> // SERVICE_WORKSTATION.
#include <lmuse.h> // NetUseDel()
// #include <netlogon.h> // Needed by logonp.h
// #include <logonp.h> // I_NetGetDCList()
// #include <names.h>
// #include <netdebug.h>
#include <netlib.h>
// #include <netlibnt.h>
// #include <winnetwk.h>
// #include <secobj.h>
#include <stddef.h>
#include <stdio.h>
#include <uasp.h>
// #include <rpc.h> // Needed by NetRpc.h
// #include <netrpc.h> // My prototype, NET_REMOTE_FLAG_ equates.
// #include <rpcutil.h> // NetpRpcStatusToApiStatus().
#include <tstring.h> // NetAllocWStrFromStr
#include <wtypes.h>
#include <ntstatus.dbg>
#include <winerror.dbg>
LPSTR
FindSymbolicNameForStatus(
DWORD Id
)
{
ULONG i;
i = 0;
if (Id == 0) {
return "STATUS_SUCCESS";
}
if (Id & 0xC0000000) {
while (ntstatusSymbolicNames[ i ].SymbolicName) {
if (ntstatusSymbolicNames[ i ].MessageId == (NTSTATUS)Id) {
return ntstatusSymbolicNames[ i ].SymbolicName;
} else {
i += 1;
}
}
}
while (winerrorSymbolicNames[ i ].SymbolicName) {
if (winerrorSymbolicNames[ i ].MessageId == Id) {
return winerrorSymbolicNames[ i ].SymbolicName;
} else {
i += 1;
}
}
#ifdef notdef
while (neteventSymbolicNames[ i ].SymbolicName) {
if (neteventSymbolicNames[ i ].MessageId == Id) {
return neteventSymbolicNames[ i ].SymbolicName
} else {
i += 1;
}
}
#endif // notdef
return NULL;
}
VOID
PrintStatus(
NET_API_STATUS NetStatus
)
/*++
Routine Description:
Print a net status code.
Arguments:
NetStatus - The net status code to print.
Return Value:
None
--*/
{
printf( "Status = %lu 0x%lx", NetStatus, NetStatus );
switch (NetStatus) {
case NERR_Success:
printf( " NERR_Success" );
break;
case NERR_DCNotFound:
printf( " NERR_DCNotFound" );
break;
case NERR_NetNotStarted:
printf( " NERR_NetNotStarted" );
break;
case NERR_WkstaNotStarted:
printf( " NERR_WkstaNotStarted" );
break;
case NERR_ServerNotStarted:
printf( " NERR_ServerNotStarted" );
break;
case NERR_BrowserNotStarted:
printf( " NERR_BrowserNotStarted" );
break;
case NERR_ServiceNotInstalled:
printf( " NERR_ServiceNotInstalled" );
break;
case NERR_BadTransactConfig:
printf( " NERR_BadTransactConfig" );
break;
default:
printf( " %s", FindSymbolicNameForStatus( NetStatus ) );
break;
}
printf( "\n" );
}
VOID
NlpDumpSid(
IN PSID Sid OPTIONAL
)
/*++
Routine Description:
Dumps a SID
Arguments:
DebugFlag - Debug flag to pass on to NlPrintRoutine
Sid - SID to output
Return Value:
none
--*/
{
//
// Output the SID
//
if ( Sid == NULL ) {
printf( "(null)\n" );
} else {
UNICODE_STRING SidString;
NTSTATUS Status;
Status = RtlConvertSidToUnicodeString( &SidString, Sid, TRUE );
if ( !NT_SUCCESS(Status) ) {
printf( "Invalid 0x%lX\n", Status );
} else {
printf( "%wZ\n", &SidString );
RtlFreeUnicodeString( &SidString );
}
}
}
int _CRTAPI1
main(
IN int argc,
IN char ** argv
)
/*++
Routine Description:
Call UaspOpenDomainWithDomainName with first arguement
Arguments:
argc - the number of command-line arguments.
argv - an array of pointers to the arguments.
Return Value:
Exit status
--*/
{
NET_API_STATUS NetStatus;
LPWSTR DomainName;
BOOL AccountDomain;
SAM_HANDLE DomainHandle;
PSID DomainId;
LPWSTR ServerName;
LPWSTR ShareName = NULL;
//
// Validate the argument count
//
if ( argc != 2 && argc != 3) {
fprintf( stderr, "Usage: anydc <DomainName> [Builtin]\n");
return 1;
}
//
// Convert the args to unicode
//
DomainName = NetpAllocWStrFromStr( argv[1] );
AccountDomain = argc < 3;
//
// Find a DC
//
NetStatus = UaspOpenDomainWithDomainName(
DomainName,
0,
AccountDomain,
&DomainHandle,
&DomainId,
&ServerName,
&ShareName );
PrintStatus( NetStatus );
if ( NetStatus == NERR_Success ) {
printf( "DC is: %ws\n", ServerName );
printf( "Sid is: ");
NlpDumpSid( DomainId );
UaspCloseDomain( DomainHandle );
if ( ShareName != NULL ) {
NetStatus = NetUseDel( NULL, ShareName, 0 );
if ( NetStatus != NERR_Success ) {
printf(" Cannot NetUseDel %ld\n", NetStatus );
}
}
}
}