322 lines
9.2 KiB
C
322 lines
9.2 KiB
C
/* DPLAYX.DLL name server implementation
|
|
*
|
|
* Copyright 2000 - Peter Hunnisett
|
|
*
|
|
* <presently under construction - contact hunnise@nortelnetworks.com>
|
|
*
|
|
*/
|
|
|
|
/* NOTE: Methods with the NS_ prefix are name server methods */
|
|
|
|
#include "winbase.h"
|
|
#include "debugtools.h"
|
|
#include "heap.h"
|
|
|
|
#include "dplayx_global.h"
|
|
#include "name_server.h"
|
|
#include "dplaysp.h"
|
|
#include "dplayx_messages.h"
|
|
#include "dplayx_queue.h"
|
|
|
|
/* FIXME: Need to create a crit section, store and use it */
|
|
|
|
DEFAULT_DEBUG_CHANNEL(dplay);
|
|
|
|
/* NS specific structures */
|
|
struct NSCacheData
|
|
{
|
|
DPQ_ENTRY(NSCacheData) next;
|
|
|
|
DWORD dwTime; /* Time at which data was last known valid */
|
|
LPDPSESSIONDESC2 data;
|
|
|
|
LPVOID lpNSAddrHdr;
|
|
|
|
};
|
|
typedef struct NSCacheData NSCacheData, *lpNSCacheData;
|
|
|
|
struct NSCache
|
|
{
|
|
lpNSCacheData present; /* keep track of what is to be looked at when walking */
|
|
|
|
DPQ_HEAD(NSCacheData) first;
|
|
};
|
|
typedef struct NSCache NSCache, *lpNSCache;
|
|
|
|
/* Name Server functions
|
|
* ---------------------
|
|
*/
|
|
void NS_SetLocalComputerAsNameServer( LPCDPSESSIONDESC2 lpsd )
|
|
{
|
|
#if 0
|
|
DPLAYX_SetLocalSession( lpsd );
|
|
#endif
|
|
}
|
|
|
|
/* Store the given NS remote address for future reference */
|
|
void NS_SetRemoteComputerAsNameServer( LPVOID lpNSAddrHdr,
|
|
DWORD dwHdrSize,
|
|
LPDPMSG_ENUMSESSIONSREPLY lpMsg,
|
|
LPVOID lpNSInfo )
|
|
{
|
|
lpNSCache lpCache = (lpNSCache)lpNSInfo;
|
|
lpNSCacheData lpCacheNode;
|
|
|
|
TRACE( "%p, %p, %p\n", lpNSAddrHdr, lpMsg, lpNSInfo );
|
|
|
|
/* FIXME: Should check to see if the reply is for an existing session. If
|
|
* so we just update the contents and update the timestamp.
|
|
*/
|
|
lpCacheNode = (lpNSCacheData)HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
|
|
sizeof( *lpCacheNode ) );
|
|
|
|
if( lpCacheNode == NULL )
|
|
{
|
|
ERR( "no memory for NS node\n" );
|
|
return;
|
|
}
|
|
|
|
lpCacheNode->lpNSAddrHdr = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
|
|
dwHdrSize );
|
|
CopyMemory( lpCacheNode->lpNSAddrHdr, lpNSAddrHdr, dwHdrSize );
|
|
|
|
|
|
lpCacheNode->data = (LPDPSESSIONDESC2)HeapAlloc( GetProcessHeap(),
|
|
HEAP_ZERO_MEMORY,
|
|
sizeof( *lpCacheNode->data ) );
|
|
|
|
if( lpCacheNode->data == NULL )
|
|
{
|
|
ERR( "no memory for SESSIONDESC2\n" );
|
|
return;
|
|
}
|
|
|
|
CopyMemory( lpCacheNode->data, &lpMsg->sd, sizeof( *lpCacheNode->data ) );
|
|
lpCacheNode->data->sess.lpszSessionNameA = HEAP_strdupWtoA( GetProcessHeap(),
|
|
HEAP_ZERO_MEMORY,
|
|
(LPWSTR)(lpMsg+1) );
|
|
|
|
lpCacheNode->dwTime = GetTickCount();
|
|
|
|
DPQ_INSERT(lpCache->first, lpCacheNode, next );
|
|
|
|
lpCache->present = lpCacheNode;
|
|
|
|
/* Use this message as an oportunity to weed out any old sessions so
|
|
* that we don't enum them again
|
|
*/
|
|
NS_PruneSessionCache( lpNSInfo );
|
|
}
|
|
|
|
LPVOID NS_GetNSAddr( LPVOID lpNSInfo )
|
|
{
|
|
lpNSCache lpCache = (lpNSCache)lpNSInfo;
|
|
|
|
FIXME( ":quick stub\n" );
|
|
|
|
/* Ok. Cheat and don't search for the correct stuff just take the first.
|
|
* FIXME: In the future how are we to know what is _THE_ enum we used?
|
|
*/
|
|
|
|
return lpCache->first.lpQHFirst->lpNSAddrHdr;
|
|
}
|
|
|
|
/* This function is responsible for sending a request for all other known
|
|
nameservers to send us what sessions they have registered locally
|
|
*/
|
|
HRESULT NS_SendSessionRequestBroadcast( LPCGUID lpcGuid,
|
|
DWORD dwFlags,
|
|
LPSPINITDATA lpSpData )
|
|
|
|
{
|
|
DPSP_ENUMSESSIONSDATA data;
|
|
LPDPMSG_ENUMSESSIONSREQUEST lpMsg;
|
|
|
|
TRACE( "enumerating for guid %s\n", debugstr_guid( lpcGuid ) );
|
|
|
|
/* Get the SP to deal with sending the EnumSessions request */
|
|
FIXME( ": not all data fields are correct\n" );
|
|
|
|
data.dwMessageSize = lpSpData->dwSPHeaderSize + sizeof( *lpMsg ); /*FIXME!*/
|
|
data.lpMessage = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
|
|
data.dwMessageSize );
|
|
data.lpISP = lpSpData->lpISP;
|
|
data.bReturnStatus = (dwFlags & DPENUMSESSIONS_RETURNSTATUS) ? TRUE : FALSE;
|
|
|
|
|
|
lpMsg = (LPDPMSG_ENUMSESSIONSREQUEST)(((BYTE*)data.lpMessage)+lpSpData->dwSPHeaderSize);
|
|
|
|
/* Setup EnumSession reqest message */
|
|
lpMsg->envelope.dwMagic = DPMSGMAGIC_DPLAYMSG;
|
|
lpMsg->envelope.wCommandId = DPMSGCMD_ENUMSESSIONSREQUEST;
|
|
lpMsg->envelope.wVersion = DPMSGVER_DP6;
|
|
|
|
lpMsg->dwPasswordSize = 0; /* FIXME: If enumerating passwords..? */
|
|
lpMsg->dwFlags = dwFlags;
|
|
|
|
CopyMemory( &lpMsg->guidApplication, lpcGuid, sizeof( *lpcGuid ) );
|
|
|
|
return (lpSpData->lpCB->EnumSessions)( &data );
|
|
}
|
|
|
|
DPQ_DECL_DELETECB( cbDeleteNSNodeFromHeap, lpNSCacheData );
|
|
DPQ_DECL_DELETECB( cbDeleteNSNodeFromHeap, lpNSCacheData )
|
|
{
|
|
/* FIXME: Memory leak on data (contained ptrs) */
|
|
HeapFree( GetProcessHeap(), 0, elem->data );
|
|
HeapFree( GetProcessHeap(), 0, elem->lpNSAddrHdr );
|
|
HeapFree( GetProcessHeap(), 0, elem );
|
|
}
|
|
|
|
|
|
|
|
/* Render all data in a session cache invalid */
|
|
void NS_InvalidateSessionCache( LPVOID lpNSInfo )
|
|
{
|
|
lpNSCache lpCache = (lpNSCache)lpNSInfo;
|
|
|
|
if( lpCache == NULL )
|
|
{
|
|
ERR( ": invalidate non existant cache\n" );
|
|
return;
|
|
}
|
|
|
|
DPQ_DELETEQ( lpCache->first, next, lpNSCacheData, cbDeleteNSNodeFromHeap );
|
|
|
|
/* NULL out the walking pointer */
|
|
lpCache->present = NULL;
|
|
}
|
|
|
|
/* Create and initialize a session cache */
|
|
BOOL NS_InitializeSessionCache( LPVOID* lplpNSInfo )
|
|
{
|
|
lpNSCache lpCache = (lpNSCache)HeapAlloc( GetProcessHeap(),
|
|
HEAP_ZERO_MEMORY,
|
|
sizeof( *lpCache ) );
|
|
|
|
*lplpNSInfo = lpCache;
|
|
|
|
if( lpCache == NULL )
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
DPQ_INIT(lpCache->first);
|
|
lpCache->present = NULL;
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
/* Delete a session cache */
|
|
void NS_DeleteSessionCache( LPVOID lpNSInfo )
|
|
{
|
|
NS_InvalidateSessionCache( (lpNSCache)lpNSInfo );
|
|
}
|
|
|
|
/* Reinitialize the present pointer for this cache */
|
|
void NS_ResetSessionEnumeration( LPVOID lpNSInfo )
|
|
{
|
|
|
|
((lpNSCache)lpNSInfo)->present = ((lpNSCache)lpNSInfo)->first.lpQHFirst;
|
|
}
|
|
|
|
LPDPSESSIONDESC2 NS_WalkSessions( LPVOID lpNSInfo )
|
|
{
|
|
LPDPSESSIONDESC2 lpSessionDesc;
|
|
lpNSCache lpCache = (lpNSCache)lpNSInfo;
|
|
|
|
/* FIXME: The pointers could disappear when walking if a prune happens */
|
|
|
|
/* Test for end of the list */
|
|
if( lpCache->present == NULL )
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
lpSessionDesc = lpCache->present->data;
|
|
|
|
/* Advance tracking pointer */
|
|
lpCache->present = lpCache->present->next.lpQNext;
|
|
|
|
return lpSessionDesc;
|
|
}
|
|
|
|
/* This method should check to see if there are any sessions which are
|
|
* older than the criteria. If so, just delete that information.
|
|
*/
|
|
void NS_PruneSessionCache( LPVOID lpNSInfo )
|
|
{
|
|
lpNSCache lpCache = lpNSInfo;
|
|
lpNSCacheData lpCacheEntry;
|
|
|
|
DWORD dwPresentTime = GetTickCount();
|
|
#if defined( HACK_TIMEGETTIME )
|
|
DWORD dwPruneTime = dwPresentTime - 2; /* One iteration with safety */
|
|
#else
|
|
DWORD dwPruneTime = dwPresentTime - 10000 /* 10 secs? */;
|
|
#endif
|
|
|
|
FIXME( ": semi stub\n" );
|
|
|
|
/* FIXME: This doesn't handle time roll over correctly */
|
|
/* FIXME: Session memory leak on delete */
|
|
do
|
|
{
|
|
DPQ_FIND_ENTRY( lpCache->first, next, dwTime, <=, dwPruneTime, lpCacheEntry );
|
|
}
|
|
while( lpCacheEntry != NULL );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Message stuff */
|
|
void NS_ReplyToEnumSessionsRequest( LPVOID lpMsg,
|
|
LPDPSP_REPLYDATA lpReplyData,
|
|
IDirectPlay2Impl* lpDP )
|
|
{
|
|
LPDPMSG_ENUMSESSIONSREPLY rmsg;
|
|
DWORD dwVariableSize;
|
|
DWORD dwVariableLen;
|
|
LPWSTR string;
|
|
/* LPDPMSG_ENUMSESSIONSREQUEST msg = (LPDPMSG_ENUMSESSIONSREQUEST)lpMsg; */
|
|
BOOL bAnsi = TRUE; /* FIXME: This needs to be in the DPLAY interface */
|
|
|
|
FIXME( ": few fixed + need to check request for response\n" );
|
|
|
|
dwVariableLen = bAnsi ? lstrlenA( lpDP->dp2->lpSessionDesc->sess.lpszSessionNameA ) + 1
|
|
: lstrlenW( lpDP->dp2->lpSessionDesc->sess.lpszSessionName ) + 1;
|
|
|
|
dwVariableSize = dwVariableLen * sizeof( WCHAR );
|
|
|
|
lpReplyData->dwMessageSize = lpDP->dp2->spData.dwSPHeaderSize +
|
|
sizeof( *rmsg ) + dwVariableSize;
|
|
lpReplyData->lpMessage = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
|
|
lpReplyData->dwMessageSize );
|
|
|
|
rmsg = (LPDPMSG_ENUMSESSIONSREPLY)( (BYTE*)lpReplyData->lpMessage +
|
|
lpDP->dp2->spData.dwSPHeaderSize);
|
|
|
|
rmsg->envelope.dwMagic = DPMSGMAGIC_DPLAYMSG;
|
|
rmsg->envelope.wCommandId = DPMSGCMD_ENUMSESSIONSREPLY;
|
|
rmsg->envelope.wVersion = DPMSGVER_DP6;
|
|
|
|
CopyMemory( &rmsg->sd, lpDP->dp2->lpSessionDesc,
|
|
sizeof( lpDP->dp2->lpSessionDesc->dwSize ) );
|
|
rmsg->dwUnknown = 0x0000005c;
|
|
if( bAnsi )
|
|
{
|
|
string = HEAP_strdupAtoW( GetProcessHeap(), 0,
|
|
lpDP->dp2->lpSessionDesc->sess.lpszSessionNameA );
|
|
/* FIXME: Memory leak */
|
|
}
|
|
else
|
|
{
|
|
string = lpDP->dp2->lpSessionDesc->sess.lpszSessionName;
|
|
}
|
|
|
|
lstrcpyW( (LPWSTR)(rmsg+1), string );
|
|
|
|
}
|
|
|