2007-11-16 15:24:25 +00:00
|
|
|
/***************************************************************************
|
|
|
|
|
* Copyright (C) 2007 by Lothar May *
|
|
|
|
|
* *
|
|
|
|
|
* This program 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 2 of the License, or *
|
|
|
|
|
* (at your option) any later version. *
|
|
|
|
|
* *
|
|
|
|
|
* This program 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 this program; if not, write to the *
|
|
|
|
|
* Free Software Foundation, Inc., *
|
|
|
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include <net/sessiondata.h>
|
2011-02-19 13:56:49 +00:00
|
|
|
#include <net/senddatamanager.h>
|
2009-10-11 12:07:56 +00:00
|
|
|
#include <gsasl.h>
|
|
|
|
|
|
|
|
|
|
using namespace std;
|
2007-11-16 15:24:25 +00:00
|
|
|
|
2009-06-07 08:51:43 +00:00
|
|
|
SessionData::SessionData(boost::shared_ptr<boost::asio::ip::tcp::socket> sock, SessionId id, SessionDataCallback &cb)
|
2011-02-11 20:02:08 +00:00
|
|
|
: m_socket(sock), m_id(id), m_gameId(0), m_state(SessionData::Init), m_readyFlag(false), m_wantsLobbyMsg(true),
|
|
|
|
|
m_activityTimer(boost::posix_time::time_duration(0, 0, 0), boost::timers::portable::microsec_timer::auto_start),
|
|
|
|
|
m_activityTimeoutNoticeSent(false),
|
|
|
|
|
m_autoDisconnectTimer(boost::posix_time::time_duration(0, 0, 0), boost::timers::portable::microsec_timer::auto_start),
|
|
|
|
|
m_callback(cb), m_authSession(NULL), m_curAuthStep(0)
|
2007-11-16 15:24:25 +00:00
|
|
|
{
|
2011-02-19 13:56:49 +00:00
|
|
|
m_sendDataManager.reset(new SendDataManager);
|
2007-11-16 15:24:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SessionData::~SessionData()
|
|
|
|
|
{
|
2009-01-11 20:12:26 +00:00
|
|
|
m_callback.SignalSessionTerminated(m_id);
|
2009-10-11 12:07:56 +00:00
|
|
|
InternalClearAuthSession();
|
2007-11-16 15:24:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SessionId
|
|
|
|
|
SessionData::GetId() const
|
|
|
|
|
{
|
|
|
|
|
// const value - no mutex needed.
|
|
|
|
|
return m_id;
|
|
|
|
|
}
|
|
|
|
|
|
2009-05-04 21:11:29 +00:00
|
|
|
unsigned
|
|
|
|
|
SessionData::GetGameId() const
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
return m_gameId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
SessionData::SetGameId(unsigned gameId)
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
m_gameId = gameId;
|
|
|
|
|
}
|
|
|
|
|
|
2007-11-16 15:24:25 +00:00
|
|
|
SessionData::State
|
|
|
|
|
SessionData::GetState() const
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
return m_state;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
SessionData::SetState(SessionData::State state)
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
m_state = state;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-25 21:56:43 +00:00
|
|
|
boost::shared_ptr<boost::asio::ip::tcp::socket>
|
|
|
|
|
SessionData::GetAsioSocket()
|
|
|
|
|
{
|
|
|
|
|
return m_socket;
|
2007-11-16 15:24:25 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-13 22:02:19 +00:00
|
|
|
bool
|
|
|
|
|
SessionData::CreateServerAuthSession(Gsasl *context)
|
2009-10-11 12:07:56 +00:00
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
InternalClearAuthSession();
|
|
|
|
|
int errorCode;
|
2009-10-13 21:52:10 +00:00
|
|
|
errorCode = gsasl_server_start(context, "SCRAM-SHA-1", &m_authSession);
|
|
|
|
|
return errorCode == GSASL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
SessionData::CreateClientAuthSession(Gsasl *context, const string &userName, const string &password)
|
|
|
|
|
{
|
|
|
|
|
bool retVal = false;
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
InternalClearAuthSession();
|
|
|
|
|
int errorCode;
|
|
|
|
|
errorCode = gsasl_client_start(context, "SCRAM-SHA-1", &m_authSession);
|
2011-02-11 20:02:08 +00:00
|
|
|
if (errorCode == GSASL_OK) {
|
2010-03-24 12:23:20 +00:00
|
|
|
gsasl_property_set(m_authSession, GSASL_AUTHID, userName.c_str());
|
2009-10-13 21:03:32 +00:00
|
|
|
gsasl_property_set(m_authSession, GSASL_PASSWORD, password.c_str());
|
2010-03-21 16:59:41 +00:00
|
|
|
|
2009-10-13 21:03:32 +00:00
|
|
|
retVal = true;
|
2009-10-11 12:07:56 +00:00
|
|
|
}
|
|
|
|
|
return retVal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
2009-10-18 20:53:58 +00:00
|
|
|
SessionData::AuthStep(int stepNum, const std::string &inData)
|
2009-10-11 12:07:56 +00:00
|
|
|
{
|
|
|
|
|
bool retVal = false;
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
2011-02-11 20:02:08 +00:00
|
|
|
if (m_authSession && stepNum == m_curAuthStep + 1) {
|
2009-10-11 12:07:56 +00:00
|
|
|
m_curAuthStep = stepNum;
|
|
|
|
|
char *tmpOut;
|
|
|
|
|
size_t tmpOutSize;
|
|
|
|
|
int errorCode = gsasl_step(m_authSession, inData.c_str(), inData.length(), &tmpOut, &tmpOutSize);
|
2011-02-11 20:02:08 +00:00
|
|
|
if (errorCode == GSASL_NEEDS_MORE) {
|
2009-10-18 20:53:58 +00:00
|
|
|
m_nextGsaslMsg = string(tmpOut, tmpOutSize);
|
2009-10-11 12:07:56 +00:00
|
|
|
retVal = true;
|
2011-02-11 20:02:08 +00:00
|
|
|
} else if (errorCode == GSASL_OK && stepNum != 1) {
|
2009-10-18 20:53:58 +00:00
|
|
|
m_nextGsaslMsg = string(tmpOut, tmpOutSize);
|
2009-10-11 12:07:56 +00:00
|
|
|
retVal = true;
|
|
|
|
|
InternalClearAuthSession();
|
|
|
|
|
}
|
|
|
|
|
gsasl_free(tmpOut);
|
|
|
|
|
}
|
|
|
|
|
return retVal;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-13 21:52:10 +00:00
|
|
|
string
|
2009-10-18 20:53:58 +00:00
|
|
|
SessionData::AuthGetUser() const
|
2009-10-13 21:52:10 +00:00
|
|
|
{
|
|
|
|
|
string retStr;
|
2011-02-11 20:02:08 +00:00
|
|
|
if (m_authSession) {
|
2010-03-21 16:59:41 +00:00
|
|
|
const char *tmpUser = gsasl_property_fast(m_authSession, GSASL_AUTHID);
|
2010-03-24 12:23:20 +00:00
|
|
|
if (tmpUser)
|
|
|
|
|
retStr = tmpUser;
|
2010-03-21 16:59:41 +00:00
|
|
|
}
|
2009-10-13 22:03:41 +00:00
|
|
|
return retStr;
|
2009-10-13 21:52:10 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-18 20:53:58 +00:00
|
|
|
void
|
|
|
|
|
SessionData::AuthSetPassword(const std::string &password)
|
|
|
|
|
{
|
|
|
|
|
if (m_authSession)
|
|
|
|
|
gsasl_property_set(m_authSession, GSASL_PASSWORD, password.c_str());
|
2010-09-04 11:56:40 +00:00
|
|
|
m_password = password;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string
|
|
|
|
|
SessionData::AuthGetPassword() const
|
|
|
|
|
{
|
|
|
|
|
return m_password;
|
2009-10-18 20:53:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string
|
|
|
|
|
SessionData::AuthGetNextOutMsg() const
|
|
|
|
|
{
|
|
|
|
|
return m_nextGsaslMsg;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
SessionData::AuthGetCurStepNum() const
|
|
|
|
|
{
|
|
|
|
|
return m_curAuthStep;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-11 12:07:56 +00:00
|
|
|
void
|
|
|
|
|
SessionData::InternalClearAuthSession()
|
|
|
|
|
{
|
2011-02-11 20:02:08 +00:00
|
|
|
if (m_authSession) {
|
2009-10-11 12:07:56 +00:00
|
|
|
gsasl_finish(m_authSession);
|
|
|
|
|
m_authSession = NULL;
|
|
|
|
|
m_curAuthStep = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2007-11-16 15:24:25 +00:00
|
|
|
void
|
|
|
|
|
SessionData::SetReadyFlag()
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
m_readyFlag = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
SessionData::ResetReadyFlag()
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
m_readyFlag = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
SessionData::IsReady() const
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
return m_readyFlag;
|
|
|
|
|
}
|
|
|
|
|
|
2008-05-11 21:41:30 +00:00
|
|
|
void
|
|
|
|
|
SessionData::SetWantsLobbyMsg()
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
m_wantsLobbyMsg = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
SessionData::ResetWantsLobbyMsg()
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
m_wantsLobbyMsg = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
SessionData::WantsLobbyMsg() const
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
return m_wantsLobbyMsg;
|
|
|
|
|
}
|
|
|
|
|
|
2007-11-16 15:24:25 +00:00
|
|
|
const std::string &
|
|
|
|
|
SessionData::GetClientAddr() const
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
return m_clientAddr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
SessionData::SetClientAddr(const std::string &addr)
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
m_clientAddr = addr;
|
|
|
|
|
}
|
|
|
|
|
|
2008-03-04 23:47:45 +00:00
|
|
|
void
|
|
|
|
|
SessionData::ResetActivityTimer()
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
m_activityTimeoutNoticeSent = false;
|
|
|
|
|
m_activityTimer.reset();
|
|
|
|
|
m_activityTimer.start();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsigned
|
|
|
|
|
SessionData::GetActivityTimerElapsedSec() const
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
return m_activityTimer.elapsed().total_seconds();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
SessionData::HasActivityNoticeBeenSent() const
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
return m_activityTimeoutNoticeSent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
SessionData::MarkActivityNotice()
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
m_activityTimeoutNoticeSent = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsigned
|
|
|
|
|
SessionData::GetAutoDisconnectTimerElapsedSec() const
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
|
|
|
|
return m_autoDisconnectTimer.elapsed().total_seconds();
|
|
|
|
|
}
|