/* * 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 */ /* * Author : Boris Mikhailenko * Author : Maxim Mamontov */ /* $Revision: 1.33 $ $Date: 2010/04/16 12:30:37 $ $Author: faust $ */ #include #include #include #include #include "rscript.h" #include "common.h" #include "ur_functor.h" #include "send_functor.h" extern volatile const time_t stgTime; #define RS_MAX_ROUTERS (100) //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- class RS_CREATOR { private: REMOTE_SCRIPT * rs; public: RS_CREATOR() : rs(new REMOTE_SCRIPT()) { }; ~RS_CREATOR() { delete rs; }; REMOTE_SCRIPT * GetPlugin() { return rs; }; }; //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- RS_CREATOR rsc; //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- BASE_PLUGIN * GetPlugin() { return rsc.GetPlugin(); } //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- RS_USER::RS_USER() : lastSentTime(0), shortPacketsCount(0) { } //----------------------------------------------------------------------------- RS_USER::RS_USER(const std::vector & r, user_iter it) : lastSentTime(0), user(it), routers(r), shortPacketsCount(0) { } //----------------------------------------------------------------------------- RS_SETTINGS::RS_SETTINGS() : sendPeriod(0), port(0) { } //----------------------------------------------------------------------------- int RS_SETTINGS::ParseIntInRange(const string & str, int min, int max, int * val) { if (str2x(str.c_str(), *val)) { errorStr = "Incorrect value \'" + str + "\'."; return -1; } if (*val < min || *val > max) { errorStr = "Value \'" + str + "\' out of range."; return -1; } return 0; } //----------------------------------------------------------------------------- int RS_SETTINGS::ParseSettings(const MODULE_SETTINGS & s) { int p; PARAM_VALUE pv; vector::const_iterator pvi; netRouters.clear(); /////////////////////////// pv.param = "Port"; pvi = find(s.moduleParams.begin(), s.moduleParams.end(), pv); if (pvi == s.moduleParams.end()) { errorStr = "Parameter \'Port\' not found."; printfd(__FILE__, "Parameter 'Port' not found\n"); return -1; } if (ParseIntInRange(pvi->value[0], 2, 65535, &p)) { errorStr = "Cannot parse parameter \'Port\': " + errorStr; printfd(__FILE__, "Cannot parse parameter 'Port'\n"); return -1; } port = p; /////////////////////////// pv.param = "SendPeriod"; pvi = find(s.moduleParams.begin(), s.moduleParams.end(), pv); if (pvi == s.moduleParams.end()) { errorStr = "Parameter \'SendPeriod\' not found."; printfd(__FILE__, "Parameter 'SendPeriod' not found\n"); return -1; } if (ParseIntInRange(pvi->value[0], 5, 600, &sendPeriod)) { errorStr = "Cannot parse parameter \'SendPeriod\': " + errorStr; printfd(__FILE__, "Cannot parse parameter 'SendPeriod'\n"); return -1; } /////////////////////////// pv.param = "UserParams"; pvi = find(s.moduleParams.begin(), s.moduleParams.end(), pv); if (pvi == s.moduleParams.end()) { errorStr = "Parameter \'UserParams\' not found."; printfd(__FILE__, "Parameter 'UserParams' not found\n"); return -1; } userParams = pvi->value; /////////////////////////// pv.param = "Password"; pvi = find(s.moduleParams.begin(), s.moduleParams.end(), pv); if (pvi == s.moduleParams.end()) { errorStr = "Parameter \'Password\' not found."; printfd(__FILE__, "Parameter 'Password' not found\n"); return -1; } password = pvi->value[0]; /////////////////////////// pv.param = "SubnetFile"; pvi = find(s.moduleParams.begin(), s.moduleParams.end(), pv); if (pvi == s.moduleParams.end()) { errorStr = "Parameter \'SubnetFile\' not found."; printfd(__FILE__, "Parameter 'SubnetFile' not found\n"); return -1; } subnetFile = pvi->value[0]; NRMapParser nrMapParser; if (nrMapParser.ReadFile(subnetFile)) { errorStr = nrMapParser.GetErrorStr(); return -1; } netRouters = nrMapParser.GetMap(); if (netRouters.empty()) { errorStr = "Parameter(s) \'Subnet*\' not found."; printfd(__FILE__, "Parameter(s) 'Subnet*' not found\n"); return -1; } return 0; } //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- REMOTE_SCRIPT::REMOTE_SCRIPT() : sendPeriod(15), halfPeriod(8), nonstop(false), isRunning(false), users(NULL), sock(0), onAddUserNotifier(*this), onDelUserNotifier(*this) { pthread_mutex_init(&mutex, NULL); } //----------------------------------------------------------------------------- REMOTE_SCRIPT::~REMOTE_SCRIPT() { pthread_mutex_destroy(&mutex); } //----------------------------------------------------------------------------- void * REMOTE_SCRIPT::Run(void * d) { REMOTE_SCRIPT * rs = static_cast(d); rs->isRunning = true; while (rs->nonstop) { rs->PeriodicSend(); sleep(2); } rs->isRunning = false; return NULL; } //----------------------------------------------------------------------------- int REMOTE_SCRIPT::ParseSettings() { int ret = rsSettings.ParseSettings(settings); if (ret) errorStr = rsSettings.GetStrError(); sendPeriod = rsSettings.GetSendPeriod(); halfPeriod = sendPeriod / 2; return ret; } //----------------------------------------------------------------------------- int REMOTE_SCRIPT::Start() { netRouters = rsSettings.GetSubnetsMap(); InitEncrypt(&ctx, rsSettings.GetPassword()); //onAddUserNotifier.SetRemoteScript(this); //onDelUserNotifier.SetRemoteScript(this); users->AddNotifierUserAdd(&onAddUserNotifier); users->AddNotifierUserDel(&onDelUserNotifier); nonstop = true; if (GetUsers()) { return -1; } if (PrepareNet()) { return -1; } if (!isRunning) { if (pthread_create(&thread, NULL, Run, this)) { errorStr = "Cannot create thread."; printfd(__FILE__, "Cannot create thread\n"); return -1; } } errorStr = ""; return 0; } //----------------------------------------------------------------------------- int REMOTE_SCRIPT::Stop() { if (!IsRunning()) return 0; nonstop = false; std::for_each( authorizedUsers.begin(), authorizedUsers.end(), DisconnectUser(*this) ); FinalizeNet(); if (isRunning) { //5 seconds to thread stops itself for (int i = 0; i < 25 && isRunning; i++) { usleep(200000); } //after 5 seconds waiting thread still running. now killing it if (isRunning) { if (pthread_kill(thread, SIGINT)) { errorStr = "Cannot kill thread."; printfd(__FILE__, "Cannot kill thread\n"); return -1; } printfd(__FILE__, "REMOTE_SCRIPT killed Run\n"); } } users->DelNotifierUserDel(&onDelUserNotifier); users->DelNotifierUserAdd(&onAddUserNotifier); return 0; } //----------------------------------------------------------------------------- int REMOTE_SCRIPT::Reload() { NRMapParser nrMapParser; if (nrMapParser.ReadFile(rsSettings.GetMapFileName())) { errorStr = nrMapParser.GetErrorStr(); return -1; } { STG_LOCKER lock(&mutex, __FILE__, __LINE__); printfd(__FILE__, "REMOTE_SCRIPT::Reload()\n"); netRouters = nrMapParser.GetMap(); } std::for_each(authorizedUsers.begin(), authorizedUsers.end(), UpdateRouter(*this)); return 0; } //----------------------------------------------------------------------------- bool REMOTE_SCRIPT::PrepareNet() { sock = socket(AF_INET, SOCK_DGRAM, 0); if (sock < 0) { errorStr = "Cannot create socket."; printfd(__FILE__, "Cannot create socket\n"); return true; } return false; } //----------------------------------------------------------------------------- bool REMOTE_SCRIPT::FinalizeNet() { close(sock); return false; } //----------------------------------------------------------------------------- void REMOTE_SCRIPT::PeriodicSend() { STG_LOCKER lock(&mutex, __FILE__, __LINE__); map::iterator it(authorizedUsers.begin()); while (it != authorizedUsers.end()) { if (difftime(stgTime, it->second.lastSentTime) - (rand() % halfPeriod) > sendPeriod) //if (stgTime - it->second.lastSentTime > sendPeriod) { Send(it->first, it->second); } ++it; } } //----------------------------------------------------------------------------- bool REMOTE_SCRIPT::PreparePacket(char * buf, size_t bufSize, uint32_t ip, RS_USER & rsu, bool forceDisconnect) const { RS_PACKET_HEADER packetHead; memset(packetHead.padding, 0, sizeof(packetHead.padding)); strcpy((char*)packetHead.magic, RS_ID); packetHead.protoVer[0] = '0'; packetHead.protoVer[1] = '2'; if (forceDisconnect) { packetHead.packetType = RS_DISCONNECT_PACKET; } else { if (rsu.shortPacketsCount % MAX_SHORT_PCKT == 0) { //SendLong packetHead.packetType = rsu.user->IsInetable() ? RS_CONNECT_PACKET : RS_DISCONNECT_PACKET; } else { //SendShort packetHead.packetType = rsu.user->IsInetable() ? RS_ALIVE_PACKET : RS_DISCONNECT_PACKET; } } rsu.shortPacketsCount++; rsu.lastSentTime = stgTime; packetHead.ip = htonl(ip); packetHead.id = htonl(rsu.user->GetID()); strncpy((char*)packetHead.login, rsu.user->GetLogin().c_str(), RS_LOGIN_LEN); packetHead.login[RS_LOGIN_LEN - 1] = 0; memcpy(buf, &packetHead, sizeof(packetHead)); if (packetHead.packetType == RS_ALIVE_PACKET) { return false; } RS_PACKET_TAIL packetTail; memset(packetTail.padding, 0, sizeof(packetTail.padding)); strcpy((char*)packetTail.magic, RS_ID); vector::const_iterator it; std::string params; for(it = rsSettings.GetUserParams().begin(); it != rsSettings.GetUserParams().end(); ++it) { std::string parameter(GetUserParam(rsu.user, *it)); if (params.length() + parameter.length() > RS_PARAMS_LEN - 1) break; params += parameter + " "; } strncpy((char *)packetTail.params, params.c_str(), RS_PARAMS_LEN); packetTail.params[RS_PARAMS_LEN - 1] = 0; assert(sizeof(packetHead) + sizeof(packetTail) <= bufSize && "Insufficient buffer space"); Encrypt(&ctx, buf + sizeof(packetHead), (char *)&packetTail, sizeof(packetTail) / 8); return false; } //----------------------------------------------------------------------------- bool REMOTE_SCRIPT::Send(uint32_t ip, RS_USER & rsu, bool forceDisconnect) const { char buffer[RS_MAX_PACKET_LEN]; memset(buffer, 0, sizeof(buffer)); if (PreparePacket(buffer, sizeof(buffer), ip, rsu, forceDisconnect)) { printfd(__FILE__, "REMOTE_SCRIPT::Send() - Invalid packet length!\n"); return true; } std::for_each( rsu.routers.begin(), rsu.routers.end(), PacketSender(sock, buffer, sizeof(buffer), htons(rsSettings.GetPort())) ); return false; } //----------------------------------------------------------------------------- bool REMOTE_SCRIPT::SendDirect(uint32_t ip, RS_USER & rsu, uint32_t routerIP, bool forceDisconnect) const { char buffer[RS_MAX_PACKET_LEN]; if (PreparePacket(buffer, sizeof(buffer), ip, rsu, forceDisconnect)) { printfd(__FILE__, "REMOTE_SCRIPT::SendDirect() - Invalid packet length!\n"); return true; } struct sockaddr_in sendAddr; sendAddr.sin_family = AF_INET; sendAddr.sin_port = htons(rsSettings.GetPort()); sendAddr.sin_addr.s_addr = routerIP; int res = sendto(sock, buffer, sizeof(buffer), 0, (struct sockaddr *)&sendAddr, sizeof(sendAddr)); return (res != sizeof(buffer)); } //----------------------------------------------------------------------------- bool REMOTE_SCRIPT::GetUsers() { user_iter u; int h = users->OpenSearch(); if (!h) { errorStr = "users->OpenSearch() error."; printfd(__FILE__, "OpenSearch() error\n"); return true; } while (!users->SearchNext(h, &u)) { SetUserNotifier(u); } users->CloseSearch(h); return false; } //----------------------------------------------------------------------------- void REMOTE_SCRIPT::ChangedIP(user_iter u, uint32_t oldIP, uint32_t newIP) { /* * When ip changes process looks like: * old => 0, 0 => new * */ if (newIP) { RS_USER rsu(IP2Routers(newIP), u); Send(newIP, rsu); STG_LOCKER lock(&mutex, __FILE__, __LINE__); authorizedUsers[newIP] = rsu; } else { STG_LOCKER lock(&mutex, __FILE__, __LINE__); const map::iterator it( authorizedUsers.find(oldIP) ); if (it != authorizedUsers.end()) { Send(oldIP, it->second, true); authorizedUsers.erase(it); } } } //----------------------------------------------------------------------------- std::vector REMOTE_SCRIPT::IP2Routers(uint32_t ip) { STG_LOCKER lock(&mutex, __FILE__, __LINE__); for (size_t i = 0; i < netRouters.size(); ++i) { if ((ip & netRouters[i].subnetMask) == (netRouters[i].subnetIP & netRouters[i].subnetMask)) { return netRouters[i].routers; } } return std::vector(); } //----------------------------------------------------------------------------- string REMOTE_SCRIPT::GetUserParam(user_iter u, const string & paramName) const { string value = ""; if (strcasecmp(paramName.c_str(), "cash") == 0) strprintf(&value, "%f", u->property.cash.Get()); else if (strcasecmp(paramName.c_str(), "freeMb") == 0) strprintf(&value, "%f", u->property.freeMb.Get()); else if (strcasecmp(paramName.c_str(), "passive") == 0) strprintf(&value, "%d", u->property.passive.Get()); else if (strcasecmp(paramName.c_str(), "disabled") == 0) strprintf(&value, "%d", u->property.disabled.Get()); else if (strcasecmp(paramName.c_str(), "alwaysOnline") == 0) strprintf(&value, "%d", u->property.alwaysOnline.Get()); else if (strcasecmp(paramName.c_str(), "tariffName") == 0 || strcasecmp(paramName.c_str(), "tariff") == 0) value = "\"" + u->property.tariffName.Get() + "\""; else if (strcasecmp(paramName.c_str(), "nextTariff") == 0) value = "\"" + u->property.nextTariff.Get() + "\""; else if (strcasecmp(paramName.c_str(), "address") == 0) value = "\"" + u->property.address.Get() + "\""; else if (strcasecmp(paramName.c_str(), "note") == 0) value = "\"" + u->property.note.Get() + "\""; else if (strcasecmp(paramName.c_str(), "group") == 0) value = "\"" + u->property.group.Get() + "\""; else if (strcasecmp(paramName.c_str(), "email") == 0) value = "\"" + u->property.email.Get() + "\""; else if (strcasecmp(paramName.c_str(), "realName") == 0) value = "\"" + u->property.realName.Get() + "\""; else if (strcasecmp(paramName.c_str(), "credit") == 0) strprintf(&value, "%f", u->property.credit.Get()); else if (strcasecmp(paramName.c_str(), "userdata0") == 0) value = "\"" + u->property.userdata0.Get() + "\""; else if (strcasecmp(paramName.c_str(), "userdata1") == 0) value = "\"" + u->property.userdata1.Get() + "\""; else if (strcasecmp(paramName.c_str(), "userdata2") == 0) value = "\"" + u->property.userdata2.Get() + "\""; else if (strcasecmp(paramName.c_str(), "userdata3") == 0) value = "\"" + u->property.userdata3.Get() + "\""; else if (strcasecmp(paramName.c_str(), "userdata4") == 0) value = "\"" + u->property.userdata4.Get() + "\""; else if (strcasecmp(paramName.c_str(), "userdata5") == 0) value = "\"" + u->property.userdata5.Get() + "\""; else if (strcasecmp(paramName.c_str(), "userdata6") == 0) value = "\"" + u->property.userdata6.Get() + "\""; else if (strcasecmp(paramName.c_str(), "userdata7") == 0) value = "\"" + u->property.userdata7.Get() + "\""; else if (strcasecmp(paramName.c_str(), "userdata8") == 0) value = "\"" + u->property.userdata8.Get() + "\""; else if (strcasecmp(paramName.c_str(), "userdata9") == 0) value = "\"" + u->property.userdata9.Get() + "\""; else if (strcasecmp(paramName.c_str(), "enabledDirs") == 0) value = u->GetEnabledDirs(); else printfd(__FILE__, "Unknown value name: %s\n", paramName.c_str()); return value; } //----------------------------------------------------------------------------- void REMOTE_SCRIPT::SetUserNotifier(user_iter u) { RS_CHG_AFTER_NOTIFIER afterChgIPNotifier(*this, u); afterChgIPNotifierList.push_front(afterChgIPNotifier); u->AddCurrIPAfterNotifier(&(*afterChgIPNotifierList.begin())); } //----------------------------------------------------------------------------- void REMOTE_SCRIPT::UnSetUserNotifier(user_iter u) { list >::iterator ipAIter; std::list >::iterator> toErase; for (ipAIter = afterChgIPNotifierList.begin(); ipAIter != afterChgIPNotifierList.end(); ++ipAIter) { if (ipAIter->GetUser() == u) { u->DelCurrIPAfterNotifier(&(*ipAIter)); toErase.push_back(ipAIter); } } std::list >::iterator>::iterator eIter; for (eIter = toErase.begin(); eIter != toErase.end(); ++eIter) { afterChgIPNotifierList.erase(*eIter); } } //----------------------------------------------------------------------------- template void RS_CHG_AFTER_NOTIFIER::Notify(const varParamType & oldValue, const varParamType & newValue) { rs.ChangedIP(user, oldValue, newValue); } //----------------------------------------------------------------------------- void REMOTE_SCRIPT::InitEncrypt(BLOWFISH_CTX * ctx, const string & password) const { unsigned char keyL[PASSWD_LEN]; // Пароль для шифровки memset(keyL, 0, PASSWD_LEN); strncpy((char *)keyL, password.c_str(), PASSWD_LEN); Blowfish_Init(ctx, keyL, PASSWD_LEN); } //----------------------------------------------------------------------------- void REMOTE_SCRIPT::Encrypt(BLOWFISH_CTX * ctx, char * dst, const char * src, size_t len8) const { if (dst != src) memcpy(dst, src, len8 * 8); for (size_t i = 0; i < len8; ++i) Blowfish_Encrypt(ctx, (uint32_t *)(dst + i * 8), (uint32_t *)(dst + i * 8 + 4)); } //-----------------------------------------------------------------------------