forked from uakfdotb/ent-ghost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathghostdbmysql.cpp
2611 lines (2044 loc) · 89.2 KB
/
ghostdbmysql.cpp
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
/*
ent-ghost
Copyright [2011-2013] [Jack Lu]
This file is part of the ent-ghost source code.
ent-ghost is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
ent-ghost source code is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with ent-ghost source code. If not, see <http://www.gnu.org/licenses/>.
ent-ghost is modified from GHost++ (http://ghostplusplus.googlecode.com/)
GHost++ is Copyright [2008] [Trevor Hogan]
*/
#include "ghost.h"
#include "util.h"
#include "config.h"
#include "bnet.h"
#include "ghostdb.h"
#include "ghostdbmysql.h"
#include <signal.h>
#ifdef WIN32
#include <winsock.h>
#endif
#include <mysql/mysql.h>
#include <boost/thread.hpp>
//
// CGHostDBMySQL
//
CGHostDBMySQL :: CGHostDBMySQL( CConfig *CFG ) : CGHostDB( CFG )
{
m_Server = CFG->GetString( "db_mysql_server", string( ) );
m_Database = CFG->GetString( "db_mysql_database", "ghost" );
m_User = CFG->GetString( "db_mysql_user", string( ) );
m_Password = CFG->GetString( "db_mysql_password", string( ) );
m_Port = CFG->GetInt( "db_mysql_port", 0 );
m_BotID = CFG->GetInt( "db_mysql_botid", 0 );
m_NumConnections = 1;
m_OutstandingCallables = 0;
mysql_library_init( 0, NULL, NULL );
// create the first connection
CONSOLE_Print( "[MYSQL] connecting to database server" );
MYSQL *Connection = NULL;
if( !( Connection = mysql_init( NULL ) ) )
{
CONSOLE_Print( string( "[MYSQL] " ) + mysql_error( Connection ) );
m_HasError = true;
m_Error = "error initializing MySQL connection";
return;
}
my_bool Reconnect = true;
mysql_options( Connection, MYSQL_OPT_RECONNECT, &Reconnect );
if( !( mysql_real_connect( Connection, m_Server.c_str( ), m_User.c_str( ), m_Password.c_str( ), m_Database.c_str( ), m_Port, NULL, 0 ) ) )
{
CONSOLE_Print( string( "[MYSQL] " ) + mysql_error( Connection ) );
m_HasError = true;
m_Error = "error connecting to MySQL server";
return;
}
m_IdleConnections.push( Connection );
}
CGHostDBMySQL :: ~CGHostDBMySQL( )
{
boost::mutex::scoped_lock lock(m_DatabaseMutex);
CONSOLE_Print( "[MYSQL] closing " + UTIL_ToString( m_IdleConnections.size( ) ) + "/" + UTIL_ToString( m_NumConnections ) + " idle MySQL connections" );
while( !m_IdleConnections.empty( ) )
{
mysql_close( (MYSQL *)m_IdleConnections.front( ) );
m_IdleConnections.pop( );
}
if( m_OutstandingCallables > 0 )
CONSOLE_Print( "[MYSQL] " + UTIL_ToString( m_OutstandingCallables ) + " outstanding callables were never recovered" );
mysql_library_end( );
}
string CGHostDBMySQL :: GetStatus( )
{
return "DB STATUS --- Connections: " + UTIL_ToString( m_IdleConnections.size( ) ) + "/" + UTIL_ToString( m_NumConnections ) + " idle. Outstanding callables: " + UTIL_ToString( m_OutstandingCallables ) + ".";
}
void CGHostDBMySQL :: RecoverCallable( CBaseCallable *callable )
{
boost::mutex::scoped_lock lock(m_DatabaseMutex);
CMySQLCallable *MySQLCallable = dynamic_cast<CMySQLCallable *>( callable );
if( MySQLCallable )
{
if( !MySQLCallable->GetError( ).empty( ) )
CONSOLE_Print( "[MYSQL] error --- " + MySQLCallable->GetError( ) );
if( m_IdleConnections.size( ) > 8 || !MySQLCallable->GetError( ).empty( ) )
{
mysql_close( (MYSQL *)MySQLCallable->GetConnection( ) );
--m_NumConnections;
}
else
m_IdleConnections.push( MySQLCallable->GetConnection( ) );
if( m_OutstandingCallables == 0 )
CONSOLE_Print( "[MYSQL] recovered a mysql callable with zero outstanding" );
else
--m_OutstandingCallables;
}
else
CONSOLE_Print( "[MYSQL] tried to recover a non-mysql callable" );
}
void CGHostDBMySQL :: CreateThread( CBaseCallable *callable )
{
try
{
boost :: thread Thread( boost :: ref( *callable ) );
}
catch( boost :: thread_resource_error tre )
{
CONSOLE_Print( "[MYSQL] error spawning thread on attempt #1 [" + string( tre.what( ) ) + "], pausing execution and trying again in 50ms" );
MILLISLEEP( 50 );
try
{
boost :: thread Thread( boost :: ref( *callable ) );
}
catch( boost :: thread_resource_error tre2 )
{
CONSOLE_Print( "[MYSQL] error spawning thread on attempt #2 [" + string( tre2.what( ) ) + "], giving up" );
callable->SetReady( true );
}
}
}
CCallableAdminCount *CGHostDBMySQL :: ThreadedAdminCount( string server )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableAdminCount *Callable = new CMySQLCallableAdminCount( server, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableAdminCheck *CGHostDBMySQL :: ThreadedAdminCheck( string server, string user )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableAdminCheck *Callable = new CMySQLCallableAdminCheck( server, user, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableAdminAdd *CGHostDBMySQL :: ThreadedAdminAdd( string server, string user )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableAdminAdd *Callable = new CMySQLCallableAdminAdd( server, user, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableAdminRemove *CGHostDBMySQL :: ThreadedAdminRemove( string server, string user )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableAdminRemove *Callable = new CMySQLCallableAdminRemove( server, user, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableAdminList *CGHostDBMySQL :: ThreadedAdminList( string server )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableAdminList *Callable = new CMySQLCallableAdminList( server, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableBanCount *CGHostDBMySQL :: ThreadedBanCount( string server )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableBanCount *Callable = new CMySQLCallableBanCount( server, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableBanCheck *CGHostDBMySQL :: ThreadedBanCheck( string server, string user, string ip, string hostname, string ownername )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableBanCheck *Callable = new CMySQLCallableBanCheck( server, user, ip, hostname, ownername, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableBanAdd *CGHostDBMySQL :: ThreadedBanAdd( string server, string user, string ip, string gamename, string admin, string reason, uint32_t expiretime, string context )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableBanAdd *Callable = new CMySQLCallableBanAdd( server, user, ip, gamename, admin, reason, expiretime, context, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableBanRemove *CGHostDBMySQL :: ThreadedBanRemove( string server, string user, string context )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableBanRemove *Callable = new CMySQLCallableBanRemove( server, user, context, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableBanRemove *CGHostDBMySQL :: ThreadedBanRemove( string user, string context )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableBanRemove *Callable = new CMySQLCallableBanRemove( string( ), user, context, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableSpoofList *CGHostDBMySQL :: ThreadedSpoofList( )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableSpoofList *Callable = new CMySQLCallableSpoofList( Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableReconUpdate *CGHostDBMySQL :: ThreadedReconUpdate( uint32_t hostcounter, uint32_t seconds )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableReconUpdate *Callable = new CMySQLCallableReconUpdate( hostcounter, seconds, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableCommandList *CGHostDBMySQL :: ThreadedCommandList( )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableCommandList *Callable = new CMySQLCallableCommandList( Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableGameAdd *CGHostDBMySQL :: ThreadedGameAdd( string server, string map, string gamename, string ownername, uint32_t duration, uint32_t gamestate, string creatorname, string creatorserver, string savetype )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableGameAdd *Callable = new CMySQLCallableGameAdd( server, map, gamename, ownername, duration, gamestate, creatorname, creatorserver, savetype, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableGameUpdate *CGHostDBMySQL :: ThreadedGameUpdate( uint32_t id, string map, string gamename, string ownername, string creatorname, uint32_t players, string usernames, uint32_t slotsTotal, uint32_t totalGames, uint32_t totalPlayers, bool add )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableGameUpdate *Callable = new CMySQLCallableGameUpdate( id, map, gamename, ownername, creatorname, players, usernames, slotsTotal, totalGames, totalPlayers, add, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableGamePlayerAdd *CGHostDBMySQL :: ThreadedGamePlayerAdd( uint32_t gameid, string name, string ip, uint32_t spoofed, string spoofedrealm, uint32_t reserved, uint32_t loadingtime, uint32_t left, string leftreason, uint32_t team, uint32_t colour, string savetype )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableGamePlayerAdd *Callable = new CMySQLCallableGamePlayerAdd( gameid, name, ip, spoofed, spoofedrealm, reserved, loadingtime, left, leftreason, team, colour, savetype, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableGamePlayerSummaryCheck *CGHostDBMySQL :: ThreadedGamePlayerSummaryCheck( string name, string realm )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableGamePlayerSummaryCheck *Callable = new CMySQLCallableGamePlayerSummaryCheck( name, realm, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableVampPlayerSummaryCheck *CGHostDBMySQL :: ThreadedVampPlayerSummaryCheck( string name )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableVampPlayerSummaryCheck *Callable = new CMySQLCallableVampPlayerSummaryCheck( name, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableDotAGameAdd *CGHostDBMySQL :: ThreadedDotAGameAdd( uint32_t gameid, uint32_t winner, uint32_t min, uint32_t sec, string saveType )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableDotAGameAdd *Callable = new CMySQLCallableDotAGameAdd( gameid, winner, min, sec, saveType, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableDotAPlayerAdd *CGHostDBMySQL :: ThreadedDotAPlayerAdd( uint32_t gameid, uint32_t colour, uint32_t kills, uint32_t deaths, uint32_t creepkills, uint32_t creepdenies, uint32_t assists, uint32_t gold, uint32_t neutralkills, string item1, string item2, string item3, string item4, string item5, string item6, string hero, uint32_t newcolour, uint32_t towerkills, uint32_t raxkills, uint32_t courierkills, string saveType )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableDotAPlayerAdd *Callable = new CMySQLCallableDotAPlayerAdd( gameid, colour, kills, deaths, creepkills, creepdenies, assists, gold, neutralkills, item1, item2, item3, item4, item5, item6, hero, newcolour, towerkills, raxkills, courierkills, saveType, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableDotAPlayerSummaryCheck *CGHostDBMySQL :: ThreadedDotAPlayerSummaryCheck( string name, string realm, string saveType )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableDotAPlayerSummaryCheck *Callable = new CMySQLCallableDotAPlayerSummaryCheck( name, realm, saveType, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableTreePlayerSummaryCheck *CGHostDBMySQL :: ThreadedTreePlayerSummaryCheck( string name, string realm )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableTreePlayerSummaryCheck *Callable = new CMySQLCallableTreePlayerSummaryCheck( name, realm, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableSnipePlayerSummaryCheck *CGHostDBMySQL :: ThreadedSnipePlayerSummaryCheck( string name, string realm )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableSnipePlayerSummaryCheck *Callable = new CMySQLCallableSnipePlayerSummaryCheck( name, realm, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableShipsPlayerSummaryCheck *CGHostDBMySQL :: ThreadedShipsPlayerSummaryCheck( string name, string realm )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableShipsPlayerSummaryCheck *Callable = new CMySQLCallableShipsPlayerSummaryCheck( name, realm, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableW3MMDPlayerSummaryCheck *CGHostDBMySQL :: ThreadedW3MMDPlayerSummaryCheck( string name, string realm, string category )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableW3MMDPlayerSummaryCheck *Callable = new CMySQLCallableW3MMDPlayerSummaryCheck( name, realm, category, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableDownloadAdd *CGHostDBMySQL :: ThreadedDownloadAdd( string map, uint32_t mapsize, string name, string ip, uint32_t spoofed, string spoofedrealm, uint32_t downloadtime )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableDownloadAdd *Callable = new CMySQLCallableDownloadAdd( map, mapsize, name, ip, spoofed, spoofedrealm, downloadtime, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableConnectCheck *CGHostDBMySQL :: ThreadedConnectCheck( string name, uint32_t sessionkey )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableConnectCheck *Callable = new CMySQLCallableConnectCheck( name, sessionkey, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableScoreCheck *CGHostDBMySQL :: ThreadedScoreCheck( string category, string name, string server )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableScoreCheck *Callable = new CMySQLCallableScoreCheck( category, name, server, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableLeagueCheck *CGHostDBMySQL :: ThreadedLeagueCheck( string category, string name, string server, string gamename )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableLeagueCheck *Callable = new CMySQLCallableLeagueCheck( category, name, server, gamename, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableGetTournament *CGHostDBMySQL :: ThreadedGetTournament( string gamename )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableGetTournament *Callable = new CMySQLCallableGetTournament( gamename, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableTournamentChat *CGHostDBMySQL :: ThreadedTournamentChat( uint32_t chatid, string message )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableTournamentChat *Callable = new CMySQLCallableTournamentChat( chatid, message, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableTournamentUpdate *CGHostDBMySQL :: ThreadedTournamentUpdate( uint32_t matchid, string gamename, uint32_t status )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableTournamentUpdate *Callable = new CMySQLCallableTournamentUpdate( matchid, gamename, status, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableW3MMDPlayerAdd *CGHostDBMySQL :: ThreadedW3MMDPlayerAdd( string category, uint32_t gameid, uint32_t pid, string name, string flag, uint32_t leaver, uint32_t practicing, string saveType )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableW3MMDPlayerAdd *Callable = new CMySQLCallableW3MMDPlayerAdd( category, gameid, pid, name, flag, leaver, practicing, saveType, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableW3MMDVarAdd *CGHostDBMySQL :: ThreadedW3MMDVarAdd( uint32_t gameid, map<VarP,int32_t> var_ints, string saveType )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableW3MMDVarAdd *Callable = new CMySQLCallableW3MMDVarAdd( gameid, var_ints, saveType, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableW3MMDVarAdd *CGHostDBMySQL :: ThreadedW3MMDVarAdd( uint32_t gameid, map<VarP,double> var_reals, string saveType )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableW3MMDVarAdd *Callable = new CMySQLCallableW3MMDVarAdd( gameid, var_reals, saveType, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
CCallableW3MMDVarAdd *CGHostDBMySQL :: ThreadedW3MMDVarAdd( uint32_t gameid, map<VarP,string> var_strings, string saveType )
{
void *Connection = GetIdleConnection( );
if( !Connection )
++m_NumConnections;
CCallableW3MMDVarAdd *Callable = new CMySQLCallableW3MMDVarAdd( gameid, var_strings, saveType, Connection, m_BotID, m_Server, m_Database, m_User, m_Password, m_Port, this );
CreateThread( Callable );
++m_OutstandingCallables;
return Callable;
}
void *CGHostDBMySQL :: GetIdleConnection( )
{
boost::mutex::scoped_lock lock(m_DatabaseMutex);
void *Connection = NULL;
if( !m_IdleConnections.empty( ) )
{
Connection = m_IdleConnections.front( );
m_IdleConnections.pop( );
}
return Connection;
}
//
// unprototyped global helper functions
//
string MySQLEscapeString( void *conn, string str )
{
char *to = new char[str.size( ) * 2 + 1];
unsigned long size = mysql_real_escape_string( (MYSQL *)conn, to, str.c_str( ), str.size( ) );
string result( to, size );
delete [] to;
return result;
}
vector<string> MySQLFetchRow( MYSQL_RES *res )
{
vector<string> Result;
MYSQL_ROW Row = mysql_fetch_row( res );
if( Row )
{
unsigned long *Lengths;
Lengths = mysql_fetch_lengths( res );
for( unsigned int i = 0; i < mysql_num_fields( res ); ++i )
{
if( Row[i] )
Result.push_back( string( Row[i], Lengths[i] ) );
else
Result.push_back( string( ) );
}
}
return Result;
}
//
// global helper functions
//
uint32_t MySQLAdminCount( void *conn, string *error, uint32_t botid, string server )
{
string EscServer = MySQLEscapeString( conn, server );
uint32_t Count = 0;
string Query = "SELECT COUNT(*) FROM admins WHERE server='" + EscServer + "'";
if( mysql_real_query( (MYSQL *)conn, Query.c_str( ), Query.size( ) ) != 0 )
*error = mysql_error( (MYSQL *)conn );
else
{
MYSQL_RES *Result = mysql_store_result( (MYSQL *)conn );
if( Result )
{
vector<string> Row = MySQLFetchRow( Result );
if( Row.size( ) == 1 )
Count = UTIL_ToUInt32( Row[0] );
else
*error = "error counting admins [" + server + "] - row doesn't have 1 column";
mysql_free_result( Result );
}
else
*error = mysql_error( (MYSQL *)conn );
}
return Count;
}
bool MySQLAdminCheck( void *conn, string *error, uint32_t botid, string server, string user )
{
transform( user.begin( ), user.end( ), user.begin( ), (int(*)(int))tolower );
string EscServer = MySQLEscapeString( conn, server );
string EscUser = MySQLEscapeString( conn, user );
bool IsAdmin = false;
string Query = "SELECT * FROM admins WHERE server='" + EscServer + "' AND name='" + EscUser + "'";
if( mysql_real_query( (MYSQL *)conn, Query.c_str( ), Query.size( ) ) != 0 )
*error = mysql_error( (MYSQL *)conn );
else
{
MYSQL_RES *Result = mysql_store_result( (MYSQL *)conn );
if( Result )
{
vector<string> Row = MySQLFetchRow( Result );
if( !Row.empty( ) )
IsAdmin = true;
mysql_free_result( Result );
}
else
*error = mysql_error( (MYSQL *)conn );
}
return IsAdmin;
}
bool MySQLAdminAdd( void *conn, string *error, uint32_t botid, string server, string user )
{
transform( user.begin( ), user.end( ), user.begin( ), (int(*)(int))tolower );
string EscServer = MySQLEscapeString( conn, server );
string EscUser = MySQLEscapeString( conn, user );
bool Success = false;
string Query = "INSERT INTO admins ( botid, server, name ) VALUES ( " + UTIL_ToString( botid ) + ", '" + EscServer + "', '" + EscUser + "' )";
if( mysql_real_query( (MYSQL *)conn, Query.c_str( ), Query.size( ) ) != 0 )
*error = mysql_error( (MYSQL *)conn );
else
Success = true;
return Success;
}
bool MySQLAdminRemove( void *conn, string *error, uint32_t botid, string server, string user )
{
transform( user.begin( ), user.end( ), user.begin( ), (int(*)(int))tolower );
string EscServer = MySQLEscapeString( conn, server );
string EscUser = MySQLEscapeString( conn, user );
bool Success = false;
string Query = "DELETE FROM admins WHERE server='" + EscServer + "' AND name='" + EscUser + "'";
if( mysql_real_query( (MYSQL *)conn, Query.c_str( ), Query.size( ) ) != 0 )
*error = mysql_error( (MYSQL *)conn );
else
Success = true;
return Success;
}
vector<string> MySQLAdminList( void *conn, string *error, uint32_t botid, string server )
{
string EscServer = MySQLEscapeString( conn, server );
vector<string> AdminList;
string Query = "SELECT name FROM admins WHERE server='" + EscServer + "'";
if( mysql_real_query( (MYSQL *)conn, Query.c_str( ), Query.size( ) ) != 0 )
*error = mysql_error( (MYSQL *)conn );
else
{
MYSQL_RES *Result = mysql_store_result( (MYSQL *)conn );
if( Result )
{
vector<string> Row = MySQLFetchRow( Result );
while( !Row.empty( ) )
{
AdminList.push_back( Row[0] );
Row = MySQLFetchRow( Result );
}
mysql_free_result( Result );
}
else
*error = mysql_error( (MYSQL *)conn );
}
return AdminList;
}
uint32_t MySQLBanCount( void *conn, string *error, uint32_t botid, string server )
{
string EscServer = MySQLEscapeString( conn, server );
uint32_t Count = 0;
string Query = "SELECT COUNT(*) FROM bans WHERE server='" + EscServer + "'";
if( mysql_real_query( (MYSQL *)conn, Query.c_str( ), Query.size( ) ) != 0 )
*error = mysql_error( (MYSQL *)conn );
else
{
MYSQL_RES *Result = mysql_store_result( (MYSQL *)conn );
if( Result )
{
vector<string> Row = MySQLFetchRow( Result );
if( Row.size( ) == 1 )
Count = UTIL_ToUInt32( Row[0] );
else
*error = "error counting bans [" + server + "] - row doesn't have 1 column";
mysql_free_result( Result );
}
else
*error = mysql_error( (MYSQL *)conn );
}
return Count;
}
CDBBan *MySQLBanCheck( void *conn, string *error, uint32_t botid, string server, string user, string ip, string hostname, string ownername )
{
transform( user.begin( ), user.end( ), user.begin( ), (int(*)(int))tolower );
string EscServer = MySQLEscapeString( conn, server );
string EscUser = MySQLEscapeString( conn, user );
string EscUserServer = MySQLEscapeString( conn, user + "@" + server );
string EscIP = MySQLEscapeString( conn, ip );
string EscHostName = MySQLEscapeString( conn, hostname );
string EscOwnerName = MySQLEscapeString( conn, ownername );
bool WhiteList = false;
string Query;
if( server == "wc3connect" )
Query = "SELECT name FROM whitelist WHERE name = '" + EscUser + "'";
else
Query = "SELECT name FROM whitelist WHERE name = '" + EscUserServer + "'";
Query += " OR (LENGTH(name) >= 3 AND SUBSTR(name, 1, 1) = ':' AND LOCATE(name, ':" + EscIP + "') = 1)";
if( mysql_real_query( (MYSQL *)conn, Query.c_str( ), Query.size( ) ) != 0 )
*error = mysql_error( (MYSQL *)conn );
else
{
MYSQL_RES *Result = mysql_store_result( (MYSQL *)conn );
if( Result )
{
vector<string> Row = MySQLFetchRow( Result );
if( Row.size( ) == 1 )
WhiteList = true;
mysql_free_result( Result );
}
else
*error = mysql_error( (MYSQL *)conn );
}
CDBBan *Ban = NULL;
Query = "SELECT id, name, ip, date, gamename, admin, reason, expiredate, context FROM bans WHERE ( context = 'ttr.cloud' OR context = '" + EscOwnerName + "' ) AND ((server='" + EscServer + "' AND name='" + EscUser + "')";
if( !ip.empty( ) && !WhiteList )
{
// first exact match
Query += " OR ip = '" + EscIP + "'";
// also prefix partial
Query += " OR (LENGTH(ip) >= 3 AND SUBSTR(ip, 1, 1) = ':' AND LOCATE(SUBSTR(ip, 1), ':" + EscIP + "') > 0)";
}
if( !hostname.empty( ) && !WhiteList )
Query += " OR (LENGTH(ip) >= 3 AND SUBSTR(ip, 1, 2) = ':h' AND LOCATE(SUBSTR(ip, 3), '" + EscHostName + "') > 0)";
Query += ") LIMIT 1";
if( mysql_real_query( (MYSQL *)conn, Query.c_str( ), Query.size( ) ) != 0 )
*error = mysql_error( (MYSQL *)conn );
else
{
MYSQL_RES *Result = mysql_store_result( (MYSQL *)conn );
if( Result )
{
vector<string> Row = MySQLFetchRow( Result );
if( Row.size( ) == 9 )
Ban = new CDBBan( UTIL_ToUInt32( Row[0] ), server, Row[1], Row[2], Row[3], Row[4], Row[5], Row[6], Row[7], Row[8], 0 );
/* else
*error = "error checking ban [" + server + " : " + user + "] - row doesn't have 9 columns"; */
mysql_free_result( Result );
}
else
*error = mysql_error( (MYSQL *)conn );
}
return Ban;
}
uint32_t MySQLBanAdd( void *conn, string *error, uint32_t botid, string server, string user, string ip, string gamename, string admin, string reason, uint32_t expiretime, string context )
{
transform( user.begin( ), user.end( ), user.begin( ), (int(*)(int))tolower );
transform( admin.begin( ), admin.end( ), admin.begin( ), (int(*)(int))tolower );
transform( context.begin( ), context.end( ), context.begin( ), (int(*)(int))tolower );
string EscServer = MySQLEscapeString( conn, server );
string EscUser = MySQLEscapeString( conn, user );
string EscIP = MySQLEscapeString( conn, ip );
string EscGameName = MySQLEscapeString( conn, gamename );
string EscAdmin = MySQLEscapeString( conn, admin );
string EscReason = MySQLEscapeString( conn, reason );
string EscContext = MySQLEscapeString( conn, context );
uint32_t RowID = 0;
string Query = "INSERT INTO bans ( botid, server, name, ip, date, gamename, admin, reason, expiredate, context ) VALUES ( " + UTIL_ToString( botid ) + ", '" + EscServer + "', '" + EscUser + "', '" + EscIP + "', NOW( ), '" + EscGameName + "', '" + EscAdmin + "', '" + EscReason + "', DATE_ADD( NOW( ), INTERVAL " + UTIL_ToString( expiretime ) + " second ), '" + EscContext + "' )";
if( mysql_real_query( (MYSQL *)conn, Query.c_str( ), Query.size( ) ) != 0 )
*error = mysql_error( (MYSQL *)conn );
else
RowID = mysql_insert_id( (MYSQL *)conn );
return RowID;
}
bool MySQLBanRemove( void *conn, string *error, uint32_t botid, string server, string user, string context )
{
transform( user.begin( ), user.end( ), user.begin( ), (int(*)(int))tolower );
transform( context.begin( ), context.end( ), context.begin( ), (int(*)(int))tolower );
string EscServer = MySQLEscapeString( conn, server );
string EscUser = MySQLEscapeString( conn, user );
string EscContext = MySQLEscapeString( conn, context );
bool Success = false;
string Query = "DELETE FROM bans WHERE server='" + EscServer + "' AND name='" + EscUser + "'";
if( EscContext != "" && EscContext != "ttr.cloud" )
Query += " AND admin='" + EscContext + "'";
if( mysql_real_query( (MYSQL *)conn, Query.c_str( ), Query.size( ) ) != 0 )
*error = mysql_error( (MYSQL *)conn );
else
Success = true;
return Success;
}
bool MySQLBanRemove( void *conn, string *error, uint32_t botid, string user, string context )
{
transform( user.begin( ), user.end( ), user.begin( ), (int(*)(int))tolower );
transform( context.begin( ), context.end( ), context.begin( ), (int(*)(int))tolower );
string EscUser = MySQLEscapeString( conn, user );
string EscContext = MySQLEscapeString( conn, context );
bool Success = false;
string Query = "DELETE FROM bans WHERE name='" + EscUser + "'";
if( EscContext != "" && EscContext != "ttr.cloud" )
Query += " AND admin='" + EscContext + "'";
if( mysql_real_query( (MYSQL *)conn, Query.c_str( ), Query.size( ) ) != 0 )
*error = mysql_error( (MYSQL *)conn );
else
Success = true;
return Success;
}
map<string, string> MySQLSpoofList( void *conn, string *error, uint32_t botid )
{
map<string, string> SpoofList;
string Query = "SELECT name, spoof FROM spoof";
if( mysql_real_query( (MYSQL *)conn, Query.c_str( ), Query.size( ) ) != 0 )
*error = mysql_error( (MYSQL *)conn );
else
{
MYSQL_RES *Result = mysql_store_result( (MYSQL *)conn );
if( Result )
{
vector<string> Row = MySQLFetchRow( Result );
while( Row.size( ) == 2 )
{
SpoofList[Row[0]] = Row[1];
Row = MySQLFetchRow( Result );
}
mysql_free_result( Result );
}
else
*error = mysql_error( (MYSQL *)conn );