From f32929128e1d93517f24253ed58801acc32ce814 Mon Sep 17 00:00:00 2001 From: Simon Robertshaw Date: Wed, 30 Oct 2013 20:30:00 +0000 Subject: [PATCH 1/6] Hotfix: Authenticate all Web&ApiRequests to fix save loading/voting issues --- src/client/requestbroker/APIRequest.cpp | 11 ++++++++++- src/client/requestbroker/WebRequest.cpp | 10 ++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/src/client/requestbroker/APIRequest.cpp b/src/client/requestbroker/APIRequest.cpp index aa42f1067..6685b428e 100644 --- a/src/client/requestbroker/APIRequest.cpp +++ b/src/client/requestbroker/APIRequest.cpp @@ -97,7 +97,6 @@ RequestBroker::ProcessResponse APIRequest::Process(RequestBroker & rb) if(Client::Ref().GetAuthUser().ID) { - std::cout << typeid(*this).name() << " Authenticated " << std::endl; User user = Client::Ref().GetAuthUser(); char userName[12]; char *userSession = new char[user.SessionID.length() + 1]; @@ -115,6 +114,16 @@ RequestBroker::ProcessResponse APIRequest::Process(RequestBroker & rb) else { HTTPContext = http_async_req_start(NULL, (char *)URL.c_str(), NULL, 0, 0); + if(Client::Ref().GetAuthUser().ID) + { + User user = Client::Ref().GetAuthUser(); + char userName[12]; + char *userSession = new char[user.SessionID.length() + 1]; + std::strcpy(userName, format::NumberToString(user.ID).c_str()); + std::strcpy(userSession, user.SessionID.c_str()); + http_auth_headers(HTTPContext, userName, NULL, userSession); + delete userSession; + } } //RequestTime = time(NULL); } diff --git a/src/client/requestbroker/WebRequest.cpp b/src/client/requestbroker/WebRequest.cpp index fffdcc804..532cda712 100644 --- a/src/client/requestbroker/WebRequest.cpp +++ b/src/client/requestbroker/WebRequest.cpp @@ -114,6 +114,16 @@ RequestBroker::ProcessResponse WebRequest::Process(RequestBroker & rb) else { HTTPContext = http_async_req_start(NULL, (char *)URL.c_str(), NULL, 0, 0); + if(Client::Ref().GetAuthUser().ID) + { + User user = Client::Ref().GetAuthUser(); + char userName[12]; + char *userSession = new char[user.SessionID.length() + 1]; + std::strcpy(userName, format::NumberToString(user.ID).c_str()); + std::strcpy(userSession, user.SessionID.c_str()); + http_auth_headers(HTTPContext, userName, NULL, userSession); + delete userSession; + } } } return RequestBroker::OK; From 6bff3b561995569adad456dca5dde5fd10eac024 Mon Sep 17 00:00:00 2001 From: Simon Robertshaw Date: Fri, 15 Nov 2013 14:38:22 +0000 Subject: [PATCH 2/6] Hotfix: Don't open saves larger than 200MB --- src/client/GameSave.cpp | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/client/GameSave.cpp b/src/client/GameSave.cpp index f351a6279..55bc87b98 100644 --- a/src/client/GameSave.cpp +++ b/src/client/GameSave.cpp @@ -471,8 +471,13 @@ void GameSave::readOPS(char * data, int dataLength) bsonDataLen |= ((unsigned)inputData[9]) << 8; bsonDataLen |= ((unsigned)inputData[10]) << 16; bsonDataLen |= ((unsigned)inputData[11]) << 24; - - bsonData = (unsigned char*)malloc(bsonDataLen+1); + + //Check for overflows, don't load saves larger than 200MB + unsigned int toAlloc = bsonDataLen+1; + if(toAlloc > 209715200 || !toAlloc) + throw ParseException(ParseException::InvalidDimensions, "Save data too large, refusing"); + + bsonData = (unsigned char*)malloc(toAlloc); if(!bsonData) throw ParseException(ParseException::InternalError, "Unable to allocate memory"); @@ -1145,6 +1150,10 @@ void GameSave::readPSv(char * data, int dataLength) i |= ((unsigned)c[9])<<8; i |= ((unsigned)c[10])<<16; i |= ((unsigned)c[11])<<24; + + if(i > 209715200 || !i) + throw ParseException(ParseException::InvalidDimensions, "Save data too large"); + d = (unsigned char *)malloc(i); if (!d) throw ParseException(ParseException::Corrupt, "Cannot allocate memory"); From ee7435001f2e08397d065de52e2e061beb2c9ca6 Mon Sep 17 00:00:00 2001 From: jacob1 Date: Sun, 8 Dec 2013 13:15:19 -0500 Subject: [PATCH 3/6] fix lua related compiling errors on windows --- SConscript | 33 +++++++++++++++------------------ 1 file changed, 15 insertions(+), 18 deletions(-) diff --git a/SConscript b/SConscript index 2a1b014cb..6be7c5802 100755 --- a/SConscript +++ b/SConscript @@ -177,19 +177,22 @@ if not GetOption("macosx"): # if lua is enabled try to parse the lua pgk-config, or the lua-dir option if given - - if(GetOption("lua-dir")): - if not conf.CheckCHeader(GetOption("lua-dir") + '/lua.h'): - print "lua5.1 headers not found or not installed" - raise SystemExit(1) + + if not GetOption("nolua"): + if(GetOption("lua-dir")): + if not conf.CheckCHeader(GetOption("lua-dir") + '/lua.h'): + print "lua5.1 headers not found or not installed" + raise SystemExit(1) + else: + env.Append(CPPPATH=[GetOption("lua-dir")]) else: - env.Append(CPPPATH=[GetOption("lua-dir")]) - else: - try: - env.ParseConfig('pkg-config --cflags lua5.1') - except: - print "lua5.1 headers not found or not installed" - raise SystemExit(1) + try: + env.ParseConfig('pkg-config --cflags lua5.1') + except: + #Check for Lua lib + if not conf.CheckLib('lua5.1') and not conf.CheckLib('lua-5.1') and not conf.CheckLib('lua51') and not conf.CheckLib('lua'): + print "liblua5.1 not found or not installed" + raise SystemExit(1) # if fft is enabled try to parse its config, fail otherwise. @@ -215,12 +218,6 @@ if not GetOption("macosx"): print "bzip2 headers not found" raise SystemExit(1) - #Check for Lua lib - if not GetOption("nolua"): - if not conf.CheckLib('lua5.1') and not conf.CheckLib('lua-5.1') and not conf.CheckLib('lua51') and not conf.CheckLib('lua'): - print "liblua not found or not installed" - raise SystemExit(1) - # finish the configuration env = conf.Finish(); From 4f81cf55f39b04be3e3388634986cf0e5b60813f Mon Sep 17 00:00:00 2001 From: jacob1 Date: Sun, 8 Dec 2013 14:11:45 -0500 Subject: [PATCH 4/6] Update version number (89.0.274 -> 89.1.278) --- src/Config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Config.h b/src/Config.h index 71e51a104..7c45ae8a2 100644 --- a/src/Config.h +++ b/src/Config.h @@ -16,11 +16,11 @@ #endif #ifndef MINOR_VERSION -#define MINOR_VERSION 0 +#define MINOR_VERSION 1 #endif #ifndef BUILD_NUM -#define BUILD_NUM 274 +#define BUILD_NUM 278 #endif #ifndef SNAPSHOT_ID From f52778240577a85a765583f88e17c08ed4a44860 Mon Sep 17 00:00:00 2001 From: jacob1 Date: Tue, 10 Dec 2013 22:38:23 -0500 Subject: [PATCH 5/6] Revert ef6cc9c41815, due to some advanced electronics breaking TODO: add a flag to some electronics so that we can fix all the bugs at once / add new things without breaking things --- src/simulation/elements/WIFI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/simulation/elements/WIFI.cpp b/src/simulation/elements/WIFI.cpp index 11909489e..e6d41f61c 100644 --- a/src/simulation/elements/WIFI.cpp +++ b/src/simulation/elements/WIFI.cpp @@ -73,7 +73,7 @@ int Element_WIFI::update(UPDATE_FUNC_ARGS) } else { - if ((r&0xFF)==PT_SPRK && parts[r>>8].ctype!=PT_NSCN && parts[r>>8].life==3) + if ((r&0xFF)==PT_SPRK && parts[r>>8].ctype!=PT_NSCN && parts[r>>8].life>=3) { sim->wireless[parts[i].tmp][1] = 1; sim->ISWIRE = 2; From 7e6a51cdfa4dc8535654b0b16506fdf0274da2f0 Mon Sep 17 00:00:00 2001 From: jacob1 Date: Wed, 18 Dec 2013 13:56:27 -0500 Subject: [PATCH 6/6] Hotfix: fix compiling Also an attempt to fix my git problems --- SConscript | 16 ++++++++-------- src/simulation/elements/WIFI.cpp | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/SConscript b/SConscript index 6be7c5802..4d4405a7f 100755 --- a/SConscript +++ b/SConscript @@ -185,14 +185,14 @@ if not GetOption("macosx"): raise SystemExit(1) else: env.Append(CPPPATH=[GetOption("lua-dir")]) - else: - try: - env.ParseConfig('pkg-config --cflags lua5.1') - except: - #Check for Lua lib - if not conf.CheckLib('lua5.1') and not conf.CheckLib('lua-5.1') and not conf.CheckLib('lua51') and not conf.CheckLib('lua'): - print "liblua5.1 not found or not installed" - raise SystemExit(1) + try: + env.ParseConfig('pkg-config --cflags lua5.1') + env.ParseConfig('pkg-config --libs lua5.1') + except: + #Check for Lua lib + if not conf.CheckLib('lua5.1') and not conf.CheckLib('lua-5.1') and not conf.CheckLib('lua51') and not conf.CheckLib('lua'): + print "liblua5.1 not found or not installed" + raise SystemExit(1) # if fft is enabled try to parse its config, fail otherwise. diff --git a/src/simulation/elements/WIFI.cpp b/src/simulation/elements/WIFI.cpp index e6d41f61c..11909489e 100644 --- a/src/simulation/elements/WIFI.cpp +++ b/src/simulation/elements/WIFI.cpp @@ -73,7 +73,7 @@ int Element_WIFI::update(UPDATE_FUNC_ARGS) } else { - if ((r&0xFF)==PT_SPRK && parts[r>>8].ctype!=PT_NSCN && parts[r>>8].life>=3) + if ((r&0xFF)==PT_SPRK && parts[r>>8].ctype!=PT_NSCN && parts[r>>8].life==3) { sim->wireless[parts[i].tmp][1] = 1; sim->ISWIRE = 2;