summaryrefslogtreecommitdiff
path: root/replay/sv_publishtest.cpp
blob: c981803b584095a8d87ac1f1db64f6e74fb7fd0a (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
//========= Copyright Valve Corporation, All rights reserved. ============//
//
//=======================================================================================//

#include "sv_publishtest.h"
#include "spew.h"
#include "replay/replayutils.h"
#include "replaysystem.h"
#include "sv_basejob.h"
#include "sv_fileservercleanup.h"
#include "tier1/convar.h"
#include "sv_filepublish.h"

// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"

//----------------------------------------------------------------------------------------

const char *g_pAcceptableFileserverProtocols[] = { "http", "https", NULL };
const char *g_pAcceptableOffloadProtocols[] = { "ftp", NULL };

//----------------------------------------------------------------------------------------

class CPublishTester
{
public:
	CPublishTester();
	~CPublishTester();

	bool Go();

private:
	bool Test_Emptyness( const char *pDescription, const char *pStr, bool bPrintResult );
	bool Test_Hostname( const char *pHostname, const char *pProtocolExample );
	bool Test_Protocol( const char *pDescription, const char *pProtocol, const char **pAcceptableProtocols );
	bool Test_Port( int nPort );
	bool Test_Path( const char *pDescription, const char *pPath, bool bForwardSlashesAllowed, bool bBackslashesAllowed );
	bool Test_LocalWebServerCVars();
	bool Test_IO( const char *pFilename );
	bool Test_FilePublish( const char *pFilename, bool bOffload );
	bool Test_PublishedFileDelete( const char *pFullFilename, const char *pFilename, bool bOffload );
	bool Test_WaitingForPlayersCVar();
	void PrintBaseUrlWarning();

	char		*m_pGarbageBuffer;
	CBaseJob	*m_pJob;
	CBaseJob	*m_pCleanerJob;
};

//----------------------------------------------------------------------------------------

#define GARBAGE_BUFFER_SIZE			( 1024 * 1000 )

CPublishTester::CPublishTester()
:	m_pGarbageBuffer( NULL ),
	m_pJob( NULL ),
	m_pCleanerJob( NULL )
{
	m_pGarbageBuffer = new char[ GARBAGE_BUFFER_SIZE ];
}

CPublishTester::~CPublishTester()
{
	delete [] m_pGarbageBuffer;
	
	if ( m_pJob )
	{
		m_pJob->Release();
	}

	if ( m_pCleanerJob )
	{
		m_pCleanerJob->Release();
	}
}

bool CPublishTester::Test_Hostname( const char *pHostname, const char *pProtocolExample )
{
	if ( !Test_Emptyness( "Hostname", pHostname, false ) )
		return false;

	if ( V_strstr( pHostname, "://" ) )
	{
		g_pBlockSpewer->PrintEventResult( false );
		CFmtStr fmtError( "Should not contain a protocol (e.g: %s)!", pProtocolExample );
		g_pBlockSpewer->PrintEventError( fmtError.Access() );
		return false;
	}

	// Test IP lookup
	char szIP[16];
	if ( !g_pEngine->NET_GetHostnameAsIP( pHostname, szIP, sizeof( szIP ) ) )
	{
		g_pBlockSpewer->PrintEventResult( false );
		g_pBlockSpewer->PrintEventError( "DNS lookup failed!" );
		return false;
	}

	g_pBlockSpewer->PrintEventResult( true );
	g_pBlockSpewer->PrintEmptyLine();

	return true;
}

bool CPublishTester::Test_Emptyness( const char *pDescription, const char *pStr, bool bPrintResult )
{
	g_pBlockSpewer->PrintValue( pDescription, pStr );
	g_pBlockSpewer->PrintEventStartMsg( "Validating" );

	if ( V_strlen( pStr ) == 0 )
	{
		g_pBlockSpewer->PrintEventResult( false );
		g_pBlockSpewer->PrintEventError( "Empty!" );
		return false;
	}

	if ( bPrintResult )
	{
		g_pBlockSpewer->PrintEventResult( true );
		g_pBlockSpewer->PrintEmptyLine();
	}

	return true;
}

bool CPublishTester::Test_Port( int nPort )
{
	g_pBlockSpewer->PrintValue( "Port", Replay_va( "%i", nPort ) );
	g_pBlockSpewer->PrintEventStartMsg( "Validating" );

	if ( nPort < 0 || nPort > 65535 )
	{
		g_pBlockSpewer->PrintEventResult( false );
		g_pBlockSpewer->PrintEventError( "Port must be between 0 and 65535." );
		return false;
	}

	g_pBlockSpewer->PrintEventResult( true );
	g_pBlockSpewer->PrintEmptyLine();

	return true;
}

bool CPublishTester::Test_Path( const char *pDescription, const char *pPath, bool bForwardSlashesAllowed, bool bBackslashesAllowed )
{
	g_pBlockSpewer->PrintValue( pDescription, pPath );
	g_pBlockSpewer->PrintEventStartMsg( "Validating" );
	if ( V_strlen( pPath ) == 0 )
	{
		g_pBlockSpewer->PrintEventResult( false );
		g_pBlockSpewer->PrintEventError( "Empty path not allowed." );
		return false;
	}

	if ( !bBackslashesAllowed && V_strstr( pPath, "\\" ) )
	{
		g_pBlockSpewer->PrintEventResult( false );
		g_pBlockSpewer->PrintEventError( "Backslashes not allowed!" );
		return false;
	}

	if ( !bForwardSlashesAllowed && V_strstr( pPath, "/" ) )
	{
		g_pBlockSpewer->PrintEventResult( false );
		g_pBlockSpewer->PrintEventError( "Forward slashes not allowed!" );
		return false;
	}

	if ( V_strstr( pPath, "//" ) || V_strstr( pPath, "\\\\" ) )
	{
		g_pBlockSpewer->PrintEventResult( false );
		g_pBlockSpewer->PrintEventError( "Double slash detected!" );
		return false;
	}

	if ( V_strstr( pPath, ".." ) )
	{
		g_pBlockSpewer->PrintEventResult( false );
		g_pBlockSpewer->PrintEventError( "\"..\" not allowed!" );
		return false;
	}

	g_pBlockSpewer->PrintEventResult( true );
	g_pBlockSpewer->PrintEmptyLine();

	return true;
}

bool CPublishTester::Test_Protocol( const char *pDescription, const char *pProtocol, const char **pAcceptableProtocols )
{
	g_pBlockSpewer->PrintValue( pDescription, pProtocol );
	g_pBlockSpewer->PrintEventStartMsg( "Validating" );

	// Test to see if the input protocol is acceptable
	bool bProtocolOK = false;
	int i = 0;
	while ( pAcceptableProtocols[ i ] )
	{
		if ( V_strcmp( pAcceptableProtocols[ i++ ], pProtocol ) == 0 )
		{
			bProtocolOK = true;
			break;
		}
	}

	// Protocol allowed?
	if ( !bProtocolOK )
	{
		g_pBlockSpewer->PrintEventResult( false );
		CFmtStr fmtError( "Must be one of the following (case-sensitive): " );
		i = 0;
		while ( pAcceptableProtocols[ i ] )
			fmtError.AppendFormat( "\"%s\" ", pAcceptableProtocols[ i++ ] );
		g_pBlockSpewer->PrintEventError( fmtError.Access() );
		return false;
	}

	g_pBlockSpewer->PrintEventResult( true );
	g_pBlockSpewer->PrintEmptyLine();

	return true;
}


bool CPublishTester::Test_LocalWebServerCVars()
{
	// NOTE: We use the raw cvar here as opposed to CServerReplayContext::GetLocalFileServerPath(),
	// which actually fixes slashes.  If the cvar is using incorrect slashes here for the given OS,
	// this test will fail with a specific error message.
	extern ConVar replay_local_fileserver_path;
	if ( !Test_Path( "Path", replay_local_fileserver_path.GetString(), IsPosix(), IsWindows() ) )
		return false;

	return true;
}

bool CPublishTester::Test_IO( const char *pFilename )
{
	g_pBlockSpewer->PrintTestHeader( "Testing File I/O" );

	// Print out temp directory so the context for this section is clear
	g_pBlockSpewer->PrintValue( "Temp path", SV_GetTmpDir() );
	g_pBlockSpewer->PrintEmptyLine();

	// Open the file
	FileHandle_t hTmpFile = g_pFullFileSystem->Open( pFilename, "wb+" );
	g_pBlockSpewer->PrintEventStartMsg( "Opening temp file" );
	if ( !hTmpFile )
	{
		g_pBlockSpewer->PrintEventResult( false );
		return false;
	}
	g_pBlockSpewer->PrintEventResult( true );

	// Write the file
	g_pBlockSpewer->PrintEventStartMsg( "Allocating test buffer" );	// Lie.
	if ( !m_pGarbageBuffer )
	{
		g_pBlockSpewer->PrintEventResult( false );
		return false;
	}
	g_pBlockSpewer->PrintEventResult( true );

	g_pBlockSpewer->PrintEventStartMsg( "Writing temp file" );
	if ( g_pFullFileSystem->Write( m_pGarbageBuffer, GARBAGE_BUFFER_SIZE, hTmpFile ) != GARBAGE_BUFFER_SIZE )
	{
		g_pBlockSpewer->PrintEventResult( false );
		return false;
	}
	g_pBlockSpewer->PrintEventResult( true );

	// Close the file
	g_pFullFileSystem->Close( hTmpFile );
	
	return true;
}

bool CPublishTester::Test_FilePublish( const char *pFilename, bool bOffload )
{
	g_pBlockSpewer->PrintTestHeader( "Testing file publisher" );
	g_pBlockSpewer->PrintValue( "Fileserver type", "Local Web server" );

	if ( !Test_LocalWebServerCVars() )
		return false;

	m_pJob = SV_CreateLocalPublishJob( pFilename );

	g_pBlockSpewer->PrintEmptyLine();

	// Run publish test
	if ( !m_pJob || !SV_RunJobToCompletion( m_pJob ) )
	{
		g_pBlockSpewer->PrintEventError( m_pJob->GetErrorStr() );
		return false;
	}

	return true;
}

bool CPublishTester::Test_PublishedFileDelete( const char *pFullFilename, const char *pFilename, bool bOffload )
{
	g_pBlockSpewer->PrintTestHeader( "Testing fileserver delete" );

	if ( bOffload )
	{
		// Delete the file from the tmp dir
		g_pFullFileSystem->RemoveFile( pFullFilename );
	}

	m_pCleanerJob = SV_CreateDeleteFileJob();
	IFileserverCleanerJob *pCleanerJobImp = SV_CastJobToIFileserverCleanerJob( m_pCleanerJob );
	pCleanerJobImp->AddFileForDelete( pFilename );
	if ( !m_pCleanerJob || !SV_RunJobToCompletion( m_pCleanerJob ) )
	{
		g_pBlockSpewer->PrintEventError( m_pCleanerJob->GetErrorStr() );
		return false;
	}

	return true;
}

bool CPublishTester::Test_WaitingForPlayersCVar()
{
	ConVarRef mp_waitingforplayers_cancel( "mp_waitingforplayers_cancel" );
	if ( mp_waitingforplayers_cancel.IsValid() && mp_waitingforplayers_cancel.GetBool() )
	{
		g_pBlockSpewer->PrintEventError( "mp_waitingforplayers_cancel must be 0 in order for replay to work!" );
		return false;
	}

	return true;
}

void CPublishTester::PrintBaseUrlWarning()
{
	g_pBlockSpewer->PrintEmptyLine();
	g_pBlockSpewer->PrintMsg( "If clients can't access the following URL via a Web" );
	g_pBlockSpewer->PrintMsg( "browser, they will not be able to download Replays." );
	g_pBlockSpewer->PrintEmptyLine();
	g_pBlockSpewer->PrintValue( "URL", Replay_GetDownloadURL() );
}

bool CPublishTester::Go()
{
	const bool bOffload = false;

	// Force anyone outside of Go() to use the block spewer until we're done.
	CSpewScope SpewScope( g_pBlockSpewer );

	g_pBlockSpewer->PrintMsg( "TESTING REPLAY SYSTEM CONFIGURATION..." );

	// Fileserver convars
	g_pBlockSpewer->PrintTestHeader( "Testing Fileserver ConVars (replay_fileserver_*)" );

	// Test replay_fileserver_protocol
	extern ConVar replay_fileserver_protocol;
	if ( !Test_Protocol( "Protocol", replay_fileserver_protocol.GetString(), g_pAcceptableFileserverProtocols ) )
		return false;

	extern ConVar replay_fileserver_host;
	if ( !Test_Hostname( replay_fileserver_host.GetString(), "\"http\" or \"https\"" ) )
		return false;

	extern ConVar replay_fileserver_port;
	if ( !Test_Port( replay_fileserver_port.GetInt() ) )
		return false;

	extern ConVar replay_fileserver_path;
	if ( !Test_Path( "Path", replay_fileserver_path.GetString(), true, false ) )
		return false;

	// Print out the base URL / warning
	PrintBaseUrlWarning();

	CFmtStr fmtTmpFilename( "testpublish_%i.tmp", (int)abs( rand() % 10000 ) );
	CFmtStr fmtTmpFilenameFullPath( "%s%s", SV_GetTmpDir(), fmtTmpFilename.Access() );
	const char *pFilename = fmtTmpFilenameFullPath.Access();

	// Test file I/O
	if ( !Test_IO( pFilename ) )
		return false;

	// Get out if necessary
	if ( !Test_FilePublish( pFilename, bOffload ) )
		return false;

	// Test delete from fileserver
	if ( !Test_PublishedFileDelete( pFilename, fmtTmpFilename.Access(), bOffload ) )
		return false;

	// Make sure mp_waitingforplayers_cancel isn't on or replay will be fucked.
	if ( !Test_WaitingForPlayersCVar() )
		return false;

	return true;
}

//----------------------------------------------------------------------------------------

bool SV_DoTestPublish()
{
	CPublishTester tester;
	return tester.Go();
}

//----------------------------------------------------------------------------------------