1 /* DPLAYX.DLL name server implementation
3 * Copyright 2000-2001 - Peter Hunnisett
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 /* NOTE: Methods with the NS_ prefix are name server methods */
25 #define NONAMELESSUNION
26 #define NONAMELESSSTRUCT
30 #include "wine/unicode.h"
31 #include "wine/debug.h"
34 #include "dplayx_global.h"
35 #include "name_server.h"
36 #include "wine/dplaysp.h"
37 #include "dplayx_messages.h"
38 #include "dplayx_queue.h"
40 /* FIXME: Need to create a crit section, store and use it */
42 WINE_DEFAULT_DEBUG_CHANNEL(dplay
);
44 /* NS specific structures */
47 DPQ_ENTRY(NSCacheData
) next
;
49 DWORD dwTime
; /* Time at which data was last known valid */
50 LPDPSESSIONDESC2 data
;
55 typedef struct NSCacheData NSCacheData
, *lpNSCacheData
;
59 lpNSCacheData present
; /* keep track of what is to be looked at when walking */
61 DPQ_HEAD(NSCacheData
) first
;
64 LPVOID lpLocalAddrHdr
; /* FIXME: Not yet used */
65 LPVOID lpRemoteAddrHdr
; /* FIXME: Not yet used */
67 typedef struct NSCache NSCache
, *lpNSCache
;
69 /* Function prototypes */
70 static DPQ_DECL_DELETECB( cbDeleteNSNodeFromHeap
, lpNSCacheData
);
72 /* Name Server functions
73 * ---------------------
75 void NS_SetLocalComputerAsNameServer( LPCDPSESSIONDESC2 lpsd
, LPVOID lpNSInfo
)
78 /* FIXME: Remove this method? */
79 DPLAYX_SetLocalSession( lpsd
);
81 lpNSCache lpCache
= (lpNSCache
)lpNSInfo
;
83 lpCache
->bNsIsLocal
= TRUE
;
86 static DPQ_DECL_COMPARECB( cbUglyPig
, GUID
)
88 return IsEqualGUID( elem1
, elem2
);
91 /* Store the given NS remote address for future reference */
92 void NS_AddRemoteComputerAsNameServer( LPCVOID lpcNSAddrHdr
,
94 LPCDPMSG_ENUMSESSIONSREPLY lpcMsg
,
98 lpNSCache lpCache
= (lpNSCache
)lpNSInfo
;
99 lpNSCacheData lpCacheNode
;
101 TRACE( "%p, %p, %p\n", lpcNSAddrHdr
, lpcMsg
, lpNSInfo
);
103 /* See if we can find this session. If we can, remove it as it's a dup */
104 DPQ_REMOVE_ENTRY_CB( lpCache
->first
, next
, data
->guidInstance
, cbUglyPig
,
105 lpcMsg
->sd
.guidInstance
, lpCacheNode
);
107 if( lpCacheNode
!= NULL
)
109 TRACE( "Duplicate session entry for %s removed - updated version kept\n",
110 debugstr_guid( &lpCacheNode
->data
->guidInstance
) );
111 cbDeleteNSNodeFromHeap( lpCacheNode
);
114 /* Add this to the list */
115 lpCacheNode
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof( *lpCacheNode
) );
117 if( lpCacheNode
== NULL
)
119 ERR( "no memory for NS node\n" );
123 lpCacheNode
->lpNSAddrHdr
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
,
125 CopyMemory( lpCacheNode
->lpNSAddrHdr
, lpcNSAddrHdr
, dwHdrSize
);
127 lpCacheNode
->data
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof( *(lpCacheNode
->data
) ) );
129 if( lpCacheNode
->data
== NULL
)
131 ERR( "no memory for SESSIONDESC2\n" );
132 HeapFree( GetProcessHeap(), 0, lpCacheNode
);
136 *lpCacheNode
->data
= lpcMsg
->sd
;
137 len
= WideCharToMultiByte( CP_ACP
, 0, (LPCWSTR
)(lpcMsg
+1), -1, NULL
, 0, NULL
, NULL
);
138 if ((lpCacheNode
->data
->u1
.lpszSessionNameA
= HeapAlloc( GetProcessHeap(), 0, len
)))
140 WideCharToMultiByte( CP_ACP
, 0, (LPCWSTR
)(lpcMsg
+1), -1,
141 lpCacheNode
->data
->u1
.lpszSessionNameA
, len
, NULL
, NULL
);
144 lpCacheNode
->dwTime
= timeGetTime();
146 DPQ_INSERT(lpCache
->first
, lpCacheNode
, next
);
148 lpCache
->present
= lpCacheNode
;
150 /* Use this message as an opportunity to weed out any old sessions so
151 * that we don't enum them again
153 NS_PruneSessionCache( lpNSInfo
);
156 LPVOID
NS_GetNSAddr( LPVOID lpNSInfo
)
158 lpNSCache lpCache
= (lpNSCache
)lpNSInfo
;
160 FIXME( ":quick stub\n" );
162 /* Ok. Cheat and don't search for the correct stuff just take the first.
163 * FIXME: In the future how are we to know what is _THE_ enum we used?
164 * This is going to have to go into dplay somehow. Perhaps it
165 * comes back with app server id for the join command! Oh... that
166 * must be it. That would make this method obsolete once that's
170 return lpCache
->first
.lpQHFirst
->lpNSAddrHdr
;
172 /* FIXME: Should convert over to this */
173 return lpCache
->bNsIsLocal
? lpCache
->lpLocalAddrHdr
174 : lpCache
->lpRemoteAddrHdr
;
178 /* Get the magic number associated with the Name Server */
179 DWORD
NS_GetNsMagic( LPVOID lpNSInfo
)
181 LPDWORD lpHdrInfo
= NS_GetNSAddr( lpNSInfo
);
186 /* Get the magic number associated with the non NS end */
187 DWORD
NS_GetOtherMagic( LPVOID lpNSInfo
)
189 lpNSCache lpCache
= (lpNSCache
)lpNSInfo
;
191 return ((LPDWORD
)lpCache
->lpLocalAddrHdr
)[1];
194 void NS_SetLocalAddr( LPVOID lpNSInfo
, LPCVOID lpHdr
, DWORD dwHdrSize
)
196 lpNSCache lpCache
= (lpNSCache
)lpNSInfo
;
198 lpCache
->lpLocalAddrHdr
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, dwHdrSize
);
200 CopyMemory( lpCache
->lpLocalAddrHdr
, lpHdr
, dwHdrSize
);
203 /* This function is responsible for sending a request for all other known
204 nameservers to send us what sessions they have registered locally
206 HRESULT
NS_SendSessionRequestBroadcast( LPCGUID lpcGuid
,
208 const SPINITDATA
*lpSpData
)
211 DPSP_ENUMSESSIONSDATA data
;
212 LPDPMSG_ENUMSESSIONSREQUEST lpMsg
;
214 TRACE( "enumerating for guid %s\n", debugstr_guid( lpcGuid
) );
216 /* Get the SP to deal with sending the EnumSessions request */
217 FIXME( ": not all data fields are correct\n" );
219 data
.dwMessageSize
= lpSpData
->dwSPHeaderSize
+ sizeof( *lpMsg
); /*FIXME!*/
220 data
.lpMessage
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
,
221 data
.dwMessageSize
);
222 data
.lpISP
= lpSpData
->lpISP
;
223 data
.bReturnStatus
= (dwFlags
& DPENUMSESSIONS_RETURNSTATUS
) ? TRUE
: FALSE
;
226 lpMsg
= (LPDPMSG_ENUMSESSIONSREQUEST
)(((BYTE
*)data
.lpMessage
)+lpSpData
->dwSPHeaderSize
);
228 /* Setup EnumSession request message */
229 lpMsg
->envelope
.dwMagic
= DPMSGMAGIC_DPLAYMSG
;
230 lpMsg
->envelope
.wCommandId
= DPMSGCMD_ENUMSESSIONSREQUEST
;
231 lpMsg
->envelope
.wVersion
= DPMSGVER_DP6
;
233 lpMsg
->dwPasswordSize
= 0; /* FIXME: If enumerating passwords..? */
234 lpMsg
->dwFlags
= dwFlags
;
236 lpMsg
->guidApplication
= *lpcGuid
;
238 return (lpSpData
->lpCB
->EnumSessions
)( &data
);
241 /* Delete a name server node which has been allocated on the heap */
242 static DPQ_DECL_DELETECB( cbDeleteNSNodeFromHeap
, lpNSCacheData
)
244 /* NOTE: This proc doesn't deal with the walking pointer */
246 /* FIXME: Memory leak on data (contained ptrs) */
247 HeapFree( GetProcessHeap(), 0, elem
->data
);
248 HeapFree( GetProcessHeap(), 0, elem
->lpNSAddrHdr
);
249 HeapFree( GetProcessHeap(), 0, elem
);
252 /* Render all data in a session cache invalid */
253 void NS_InvalidateSessionCache( LPVOID lpNSInfo
)
255 lpNSCache lpCache
= (lpNSCache
)lpNSInfo
;
257 if( lpCache
== NULL
)
259 ERR( ": invalidate nonexistent cache\n" );
263 DPQ_DELETEQ( lpCache
->first
, next
, lpNSCacheData
, cbDeleteNSNodeFromHeap
);
265 /* NULL out the walking pointer */
266 lpCache
->present
= NULL
;
268 lpCache
->bNsIsLocal
= FALSE
;
272 /* Create and initialize a session cache */
273 BOOL
NS_InitializeSessionCache( LPVOID
* lplpNSInfo
)
275 lpNSCache lpCache
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof( *lpCache
) );
277 *lplpNSInfo
= lpCache
;
279 if( lpCache
== NULL
)
284 DPQ_INIT(lpCache
->first
);
285 lpCache
->present
= NULL
;
287 lpCache
->bNsIsLocal
= FALSE
;
292 /* Delete a session cache */
293 void NS_DeleteSessionCache( LPVOID lpNSInfo
)
295 NS_InvalidateSessionCache( (lpNSCache
)lpNSInfo
);
298 /* Reinitialize the present pointer for this cache */
299 void NS_ResetSessionEnumeration( LPVOID lpNSInfo
)
301 ((lpNSCache
)lpNSInfo
)->present
= ((lpNSCache
)lpNSInfo
)->first
.lpQHFirst
;
304 LPDPSESSIONDESC2
NS_WalkSessions( LPVOID lpNSInfo
)
306 LPDPSESSIONDESC2 lpSessionDesc
;
307 lpNSCache lpCache
= (lpNSCache
)lpNSInfo
;
309 /* FIXME: The pointers could disappear when walking if a prune happens */
311 /* Test for end of the list */
312 if( lpCache
->present
== NULL
)
317 lpSessionDesc
= lpCache
->present
->data
;
319 /* Advance tracking pointer */
320 lpCache
->present
= lpCache
->present
->next
.lpQNext
;
322 return lpSessionDesc
;
325 /* This method should check to see if there are any sessions which are
326 * older than the criteria. If so, just delete that information.
328 /* FIXME: This needs to be called by some periodic timer */
329 void NS_PruneSessionCache( LPVOID lpNSInfo
)
331 lpNSCache lpCache
= lpNSInfo
;
333 const DWORD dwPresentTime
= timeGetTime();
334 const DWORD dwPrunePeriod
= DPMSG_WAIT_60_SECS
; /* is 60 secs enough? */
336 /* This silly little algorithm is based on the fact we keep entries in
337 * the queue in a time based order. It also assumes that it is not possible
338 * to wrap around over yourself (which is not unreasonable).
339 * The if statements verify if the first entry in the queue is less
340 * than dwPrunePeriod old depending on the "clock" roll over.
344 lpNSCacheData lpFirstData
;
346 if( DPQ_IS_EMPTY(lpCache
->first
) )
348 /* Nothing to prune */
352 /* Deal with time in a wrap around safe manner - unsigned arithmetic.
353 * Check the difference in time */
354 if( (dwPresentTime
- (DPQ_FIRST(lpCache
->first
)->dwTime
)) < dwPrunePeriod
)
356 /* First entry has not expired yet; don't prune */
360 lpFirstData
= DPQ_FIRST(lpCache
->first
);
361 DPQ_REMOVE( lpCache
->first
, DPQ_FIRST(lpCache
->first
), next
);
362 cbDeleteNSNodeFromHeap( lpFirstData
);
367 /* NAME SERVER Message stuff */
368 void NS_ReplyToEnumSessionsRequest( LPCVOID lpcMsg
,
369 LPVOID
* lplpReplyData
,
370 LPDWORD lpdwReplySize
,
371 IDirectPlay2Impl
* lpDP
)
373 LPDPMSG_ENUMSESSIONSREPLY rmsg
;
374 DWORD dwVariableSize
;
376 /* LPCDPMSG_ENUMSESSIONSREQUEST msg = (LPDPMSG_ENUMSESSIONSREQUEST)lpcMsg; */
377 BOOL bAnsi
= TRUE
; /* FIXME: This needs to be in the DPLAY interface */
379 FIXME( ": few fixed + need to check request for response\n" );
383 dwVariableLen
= MultiByteToWideChar( CP_ACP
, 0,
384 lpDP
->dp2
->lpSessionDesc
->u1
.lpszSessionNameA
,
389 dwVariableLen
= strlenW( lpDP
->dp2
->lpSessionDesc
->u1
.lpszSessionName
) + 1;
392 dwVariableSize
= dwVariableLen
* sizeof( WCHAR
);
394 *lpdwReplySize
= lpDP
->dp2
->spData
.dwSPHeaderSize
+
395 sizeof( *rmsg
) + dwVariableSize
;
396 *lplpReplyData
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
,
399 rmsg
= (LPDPMSG_ENUMSESSIONSREPLY
)( (BYTE
*)*lplpReplyData
+
400 lpDP
->dp2
->spData
.dwSPHeaderSize
);
402 rmsg
->envelope
.dwMagic
= DPMSGMAGIC_DPLAYMSG
;
403 rmsg
->envelope
.wCommandId
= DPMSGCMD_ENUMSESSIONSREPLY
;
404 rmsg
->envelope
.wVersion
= DPMSGVER_DP6
;
406 CopyMemory( &rmsg
->sd
, lpDP
->dp2
->lpSessionDesc
,
407 lpDP
->dp2
->lpSessionDesc
->dwSize
);
408 rmsg
->dwUnknown
= 0x0000005c;
411 MultiByteToWideChar( CP_ACP
, 0, lpDP
->dp2
->lpSessionDesc
->u1
.lpszSessionNameA
, -1,
412 (LPWSTR
)(rmsg
+1), dwVariableLen
);
416 strcpyW( (LPWSTR
)(rmsg
+1), lpDP
->dp2
->lpSessionDesc
->u1
.lpszSessionName
);