2011-07-02 14:38:06 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
|
* PokerTH - The open source texas holdem engine *
|
2012-12-25 15:06:23 +01:00
|
|
|
* Copyright (C) 2006-2012 Felix Hammer, Florian Thauer, Lothar May *
|
2011-07-02 14:38:06 +00:00
|
|
|
* *
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
|
|
|
* it under the terms of the GNU Affero General Public License as *
|
|
|
|
|
* published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. *
|
|
|
|
|
* *
|
|
|
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
2012-12-25 15:06:23 +01:00
|
|
|
* *
|
|
|
|
|
* *
|
|
|
|
|
* Additional permission under GNU AGPL version 3 section 7 *
|
|
|
|
|
* *
|
|
|
|
|
* If you modify this program, or any covered work, by linking or *
|
|
|
|
|
* combining it with the OpenSSL project's OpenSSL library (or a *
|
|
|
|
|
* modified version of that library), containing parts covered by the *
|
|
|
|
|
* terms of the OpenSSL or SSLeay licenses, the authors of PokerTH *
|
|
|
|
|
* (Felix Hammer, Florian Thauer, Lothar May) grant you additional *
|
|
|
|
|
* permission to convey the resulting work. *
|
|
|
|
|
* Corresponding Source for a non-source form of such a combination *
|
|
|
|
|
* shall include the source code for the parts of OpenSSL used as well *
|
|
|
|
|
* as that of the covered work. *
|
2011-07-02 14:38:06 +00:00
|
|
|
*****************************************************************************/
|
2009-06-18 20:16:22 +00:00
|
|
|
/* Manager for server bans. */
|
|
|
|
|
|
|
|
|
|
#ifndef _SERVERBANMANAGER_H_
|
|
|
|
|
#define _SERVERBANMANAGER_H_
|
|
|
|
|
|
2010-10-07 11:11:59 +00:00
|
|
|
#include <boost/asio.hpp>
|
2009-06-18 20:16:22 +00:00
|
|
|
#include <boost/regex.hpp>
|
|
|
|
|
#include <boost/thread.hpp>
|
2009-06-18 21:32:01 +00:00
|
|
|
#include <boost/enable_shared_from_this.hpp>
|
2009-06-18 20:16:22 +00:00
|
|
|
#include <map>
|
2010-09-05 00:15:25 +00:00
|
|
|
#include <list>
|
2009-06-18 20:16:22 +00:00
|
|
|
#include <string>
|
|
|
|
|
|
2009-06-18 21:32:01 +00:00
|
|
|
class ServerBanManager : public boost::enable_shared_from_this<ServerBanManager>
|
2009-06-18 20:16:22 +00:00
|
|
|
{
|
|
|
|
|
public:
|
2009-06-18 21:32:01 +00:00
|
|
|
ServerBanManager(boost::shared_ptr<boost::asio::io_service> ioService);
|
2009-06-18 20:16:22 +00:00
|
|
|
virtual ~ServerBanManager();
|
|
|
|
|
|
2010-07-14 17:55:49 +00:00
|
|
|
void BanPlayerName(const std::string &playerName, unsigned durationHours = 0);
|
2010-07-14 17:20:51 +00:00
|
|
|
void BanPlayerRegex(const std::string &playerRegex, unsigned durationHours = 0);
|
2009-06-18 21:32:01 +00:00
|
|
|
void BanIPAddress(const std::string &ipAddress, unsigned durationHours);
|
2009-06-18 20:16:22 +00:00
|
|
|
bool UnBan(unsigned banId);
|
|
|
|
|
void GetBanList(std::list<std::string> &list) const;
|
|
|
|
|
void ClearBanList();
|
|
|
|
|
|
|
|
|
|
bool IsPlayerBanned(const std::string &name) const;
|
|
|
|
|
bool IsIPAddressBanned(const std::string &ipAddress) const;
|
|
|
|
|
|
2010-09-05 00:15:25 +00:00
|
|
|
void InitGameNameBadWordList(const std::list<std::string> &badWordList);
|
|
|
|
|
bool IsBadGameName(const std::string &name) const;
|
|
|
|
|
|
2009-06-18 20:16:22 +00:00
|
|
|
protected:
|
2010-09-05 00:15:25 +00:00
|
|
|
|
2011-02-11 20:02:08 +00:00
|
|
|
struct TimedPlayerBan {
|
2010-07-14 17:20:51 +00:00
|
|
|
boost::shared_ptr<boost::asio::deadline_timer> timer;
|
2010-07-14 17:55:49 +00:00
|
|
|
std::string nameStr;
|
2010-07-14 17:20:51 +00:00
|
|
|
boost::regex nameRegex;
|
|
|
|
|
};
|
2011-02-11 20:02:08 +00:00
|
|
|
struct TimedIPBan {
|
2010-07-14 17:20:51 +00:00
|
|
|
boost::shared_ptr<boost::asio::deadline_timer> timer;
|
2009-06-18 21:32:01 +00:00
|
|
|
std::string ipAddress;
|
|
|
|
|
};
|
|
|
|
|
|
2010-09-05 00:15:25 +00:00
|
|
|
typedef std::map<unsigned, TimedPlayerBan> RegexMap;
|
|
|
|
|
typedef std::map<unsigned, TimedIPBan> IPAddressMap;
|
|
|
|
|
typedef std::list<boost::regex> RegexList;
|
|
|
|
|
|
2010-07-14 17:20:51 +00:00
|
|
|
boost::shared_ptr<boost::asio::deadline_timer> InternalRegisterTimedBan(unsigned timerId, unsigned durationHours);
|
|
|
|
|
void TimerRemoveBan(const boost::system::error_code &ec, unsigned banId, boost::shared_ptr<boost::asio::deadline_timer> timer);
|
2009-06-18 21:32:01 +00:00
|
|
|
|
|
|
|
|
boost::shared_ptr<boost::asio::io_service> m_ioService;
|
|
|
|
|
|
2009-06-18 20:16:22 +00:00
|
|
|
unsigned GetNextBanId();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
RegexMap m_banPlayerNameMap;
|
2010-09-05 00:15:25 +00:00
|
|
|
RegexList m_gameNameBadWordFilter;
|
2009-06-18 20:16:22 +00:00
|
|
|
IPAddressMap m_banIPAddressMap;
|
|
|
|
|
unsigned m_curBanId;
|
|
|
|
|
mutable boost::mutex m_banMutex;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|