/* * 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 */ #include "parser_users.h" #include "stg/users.h" #include "stg/user.h" #include "stg/user_conf.h" #include "stg/user_stat.h" #include "stg/tariffs.h" #include "stg/tariff.h" #include "stg/user_property.h" #include #include using STG::PARSER::GET_USERS; using STG::PARSER::GET_USER; using STG::PARSER::ADD_USER; using STG::PARSER::DEL_USER; using STG::PARSER::CHG_USER; using STG::PARSER::CHECK_USER; const char * GET_USERS::tag = "GetUsers"; const char * GET_USER::tag = "GetUser"; const char * ADD_USER::tag = "AddUser"; const char * CHG_USER::tag = "SetUser"; const char * DEL_USER::tag = "DelUser"; const char * CHECK_USER::tag = "CheckUser"; using UserPtr = STG::User*; using ConstUserPtr = const STG::User*; namespace { std::string UserToXML(const STG::User & user, bool loginInStart, bool showPass, time_t lastTime = 0) { std::string answer; if (loginInStart) answer += ""; else answer += ""; answer += ""; if (user.GetProperties().password.ModificationTime() > lastTime) { if (showPass) answer += ""; else answer += ""; } if (user.GetProperties().cash.ModificationTime() > lastTime) answer += ""; if (user.GetProperties().freeMb.ModificationTime() > lastTime) answer += ""; if (user.GetProperties().credit.ModificationTime() > lastTime) answer += ""; if (user.GetProperties().nextTariff.Get() != "") { if (user.GetProperties().tariffName.ModificationTime() > lastTime || user.GetProperties().nextTariff.ModificationTime() > lastTime) answer += ""; } else { if (user.GetProperties().tariffName.ModificationTime() > lastTime) answer += ""; } if (user.GetProperties().note.ModificationTime() > lastTime) answer += ""; if (user.GetProperties().phone.ModificationTime() > lastTime) answer += ""; if (user.GetProperties().address.ModificationTime() > lastTime) answer += "
"; if (user.GetProperties().email.ModificationTime() > lastTime) answer += ""; std::vector *> userdata; userdata.push_back(user.GetProperties().userdata0.GetPointer()); userdata.push_back(user.GetProperties().userdata1.GetPointer()); userdata.push_back(user.GetProperties().userdata2.GetPointer()); userdata.push_back(user.GetProperties().userdata3.GetPointer()); userdata.push_back(user.GetProperties().userdata4.GetPointer()); userdata.push_back(user.GetProperties().userdata5.GetPointer()); userdata.push_back(user.GetProperties().userdata6.GetPointer()); userdata.push_back(user.GetProperties().userdata7.GetPointer()); userdata.push_back(user.GetProperties().userdata8.GetPointer()); userdata.push_back(user.GetProperties().userdata9.GetPointer()); for (size_t i = 0; i < userdata.size(); i++) if (userdata[i]->ModificationTime() > lastTime) answer += "Get()) + "\" />"; if (user.GetProperties().realName.ModificationTime() > lastTime) answer += ""; if (user.GetProperties().group.ModificationTime() > lastTime) answer += ""; if (user.GetConnectedModificationTime() > lastTime) answer += std::string(""; if (user.GetProperties().alwaysOnline.ModificationTime() > lastTime) answer += std::string(""; if (user.GetCurrIPModificationTime() > lastTime) answer += ""; if (user.GetPingTime() > lastTime) answer += ""; if (user.GetProperties().ips.ModificationTime() > lastTime) answer += ""; answer += " lastTime) for (size_t j = 0; j < DIR_NUM; j++) answer += " MU" + std::to_string(j) + "=\"" + std::to_string(upload[j]) + "\""; if (user.GetProperties().down.ModificationTime() > lastTime) for (size_t j = 0; j < DIR_NUM; j++) answer += " MD" + std::to_string(j) + "=\"" + std::to_string(download[j]) + "\""; if (user.GetSessionUploadModificationTime() > lastTime) for (size_t j = 0; j < DIR_NUM; j++) answer += " SU" + std::to_string(j) + "=\"" + std::to_string(user.GetSessionUpload()[j]) + "\""; if (user.GetSessionDownloadModificationTime() > lastTime) for (size_t j = 0; j < DIR_NUM; j++) answer += " SD" + std::to_string(j) + "=\"" + std::to_string(user.GetSessionDownload()[j]) + "\""; answer += "/>"; if (user.GetProperties().disabled.ModificationTime() > lastTime) answer += std::string(""; if (user.GetProperties().disabledDetailStat.ModificationTime() > lastTime) answer += std::string(""; if (user.GetProperties().passive.ModificationTime() > lastTime) answer += std::string(""; if (user.GetProperties().lastCashAdd.ModificationTime() > lastTime) answer += ""; if (user.GetProperties().lastCashAddTime.ModificationTime() > lastTime) answer += ""; if (user.GetProperties().lastActivityTime.ModificationTime() > lastTime) answer += ""; if (user.GetProperties().creditExpire.ModificationTime() > lastTime) answer += ""; if (lastTime == 0) { answer += ""; std::vector list(user.GetAuthorizers()); for (std::vector::const_iterator it = list.begin(); it != list.end(); ++it) answer += ""; answer += ""; } answer += ""; return answer; } } // namespace anonymous int GET_USERS::Start(void *, const char * el, const char ** attr) { if (strcasecmp(el, m_tag.c_str()) != 0) { printfd(__FILE__, "Got wrong tag: '%s' instead of '%s'\n", el, m_tag.c_str()); return -1; } while (attr && *attr && *(attr + 1)) { if (strcasecmp(*attr, "LastUpdate") == 0) str2x(*(attr + 1), m_lastUserUpdateTime); ++attr; } return 0; } void GET_USERS::CreateAnswer() { int h = m_users.OpenSearch(); assert(h); if (m_lastUserUpdateTime > 0) m_answer = ""; else m_answer = ""; UserPtr u; while (m_users.SearchNext(h, &u) == 0) m_answer += UserToXML(*u, true, m_currAdmin.priv().userConf || m_currAdmin.priv().userPasswd, m_lastUserUpdateTime); m_users.CloseSearch(h); m_answer += ""; } int GET_USER::Start(void *, const char * el, const char ** attr) { if (strcasecmp(el, m_tag.c_str()) != 0) return -1; if (attr[1] == NULL) return -1; m_login = attr[1]; return 0; } void GET_USER::CreateAnswer() { ConstUserPtr u; if (m_users.FindByName(m_login, &u)) m_answer = ""; else m_answer = UserToXML(*u, false, m_currAdmin.priv().userConf || m_currAdmin.priv().userPasswd); } int ADD_USER::Start(void *, const char * el, const char ** attr) { m_depth++; if (m_depth == 1) { if (strcasecmp(el, m_tag.c_str()) == 0) return 0; } else { if (strcasecmp(el, "login") == 0) { m_login = attr[1]; return 0; } } return -1; } void ADD_USER::CreateAnswer() { if (m_users.Exists(m_login)) m_answer = "<" + m_tag + " result=\"error\" reason=\"User '" + m_login + "' exists.\"/>"; else if (m_users.Add(m_login, &m_currAdmin) == 0) m_answer = "<" + m_tag + " result=\"ok\"/>"; else m_answer = "<" + m_tag + " result=\"error\" reason=\"Access denied\"/>"; } int CHG_USER::Start(void *, const char * el, const char ** attr) { m_depth++; if (m_depth == 1) { if (strcasecmp(el, m_tag.c_str()) == 0) return 0; } else { if (strcasecmp(el, "login") == 0) { m_login = attr[1]; return 0; } if (strcasecmp(el, "ip") == 0) { m_ucr.ips = UserIPs::parse(attr[1]); return 0; } if (strcasecmp(el, "password") == 0) { m_ucr.password = attr[1]; return 0; } if (strcasecmp(el, "address") == 0) { m_ucr.address = Decode21str(attr[1]); return 0; } if (strcasecmp(el, "aonline") == 0) { m_ucr.alwaysOnline = (*(attr[1]) != '0'); return 0; } if (strcasecmp(el, "cash") == 0) { if (attr[2] && (strcasecmp(attr[2], "msg") == 0)) m_cashMsg = Decode21str(attr[3]); double cash = 0; if (strtodouble2(attr[1], cash) == 0) m_usr.cash = cash; m_cashMustBeAdded = (strcasecmp(attr[0], "add") == 0); return 0; } if (strcasecmp(el, "CreditExpire") == 0) { long int creditExpire = 0; if (str2x(attr[1], creditExpire) == 0) m_ucr.creditExpire = (time_t)creditExpire; return 0; } if (strcasecmp(el, "credit") == 0) { double credit = 0; if (strtodouble2(attr[1], credit) == 0) m_ucr.credit = credit; return 0; } if (strcasecmp(el, "freemb") == 0) { double freeMb = 0; if (strtodouble2(attr[1], freeMb) == 0) m_usr.freeMb = freeMb; return 0; } if (strcasecmp(el, "down") == 0) { int down = 0; if (str2x(attr[1], down) == 0) m_ucr.disabled = down; return 0; } if (strcasecmp(el, "DisableDetailStat") == 0) { int disabledDetailStat = 0; if (str2x(attr[1], disabledDetailStat) == 0) m_ucr.disabledDetailStat = disabledDetailStat; return 0; } if (strcasecmp(el, "email") == 0) { m_ucr.email = Decode21str(attr[1]); return 0; } for (int i = 0; i < USERDATA_NUM; i++) { char name[15]; sprintf(name, "userdata%d", i); if (strcasecmp(el, name) == 0) { m_ucr.userdata[i] = Decode21str(attr[1]); return 0; } } if (strcasecmp(el, "group") == 0) { m_ucr.group = Decode21str(attr[1]); return 0; } if (strcasecmp(el, "note") == 0) { m_ucr.note = Decode21str(attr[1]); return 0; } if (strcasecmp(el, "passive") == 0) { int passive = 0; if (str2x(attr[1], passive) == 0) m_ucr.passive = passive; return 0; } if (strcasecmp(el, "phone") == 0) { m_ucr.phone = Decode21str(attr[1]); return 0; } if (strcasecmp(el, "Name") == 0) { m_ucr.realName = Decode21str(attr[1]); return 0; } if (strcasecmp(el, "traff") == 0) { int j = 0; while (attr[j]) { int dir = attr[j][2] - '0'; if (strncasecmp(attr[j], "md", 2) == 0) { uint64_t t = 0; str2x(attr[j + 1], t); m_downr[dir] = t; } if (strncasecmp(attr[j], "mu", 2) == 0) { uint64_t t = 0; str2x(attr[j + 1], t); m_upr[dir] = t; } j += 2; } return 0; } if (strcasecmp(el, "tariff") == 0) { if (strcasecmp(attr[0], "now") == 0) m_ucr.tariffName = attr[1]; if (strcasecmp(attr[0], "delayed") == 0) m_ucr.nextTariff = attr[1]; return 0; } } return -1; } void CHG_USER::CreateAnswer() { if (ApplyChanges() == 0) m_answer = "<" + m_tag + " result=\"ok\"/>"; else m_answer = "<" + m_tag + " result=\"error\"/>"; } int CHG_USER::ApplyChanges() { printfd(__FILE__, "PARSER_CHG_USER::ApplyChanges()\n"); UserPtr u; if (m_users.FindByName(m_login, &u)) return -1; bool check = false; bool alwaysOnline = u->GetProperties().alwaysOnline; if (!m_ucr.alwaysOnline.empty()) { check = true; alwaysOnline = m_ucr.alwaysOnline.const_data(); } bool onlyOneIP = u->GetProperties().ips.ConstData().onlyOneIP(); if (!m_ucr.ips.empty()) { check = true; onlyOneIP = m_ucr.ips.const_data().onlyOneIP(); } if (check && alwaysOnline && !onlyOneIP) { printfd(__FILE__, "Requested change leads to a forbidden state: AlwaysOnline with multiple IP's\n"); PluginLogger::get("conf_sg")("%s Requested change leads to a forbidden state: AlwaysOnline with multiple IP's", m_currAdmin.logStr().c_str()); return -1; } for (size_t i = 0; i < m_ucr.ips.const_data().count(); ++i) { ConstUserPtr user; uint32_t ip = m_ucr.ips.const_data().operator[](i).ip; if (m_users.IsIPInUse(ip, m_login, &user)) { printfd(__FILE__, "Trying to assign an IP %s to '%s' that is already in use by '%s'\n", inet_ntostring(ip).c_str(), m_login.c_str(), user->GetLogin().c_str()); PluginLogger::get("conf_sg")("%s trying to assign an IP %s to '%s' that is currently in use by '%s'", m_currAdmin.logStr().c_str(), inet_ntostring(ip).c_str(), m_login.c_str(), user->GetLogin().c_str()); return -1; } } if (!m_ucr.ips.empty()) if (!u->GetProperties().ips.Set(m_ucr.ips.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.alwaysOnline.empty()) if (!u->GetProperties().alwaysOnline.Set(m_ucr.alwaysOnline.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.address.empty()) if (!u->GetProperties().address.Set(m_ucr.address.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.creditExpire.empty()) if (!u->GetProperties().creditExpire.Set(m_ucr.creditExpire.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.credit.empty()) if (!u->GetProperties().credit.Set(m_ucr.credit.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_usr.freeMb.empty()) if (!u->GetProperties().freeMb.Set(m_usr.freeMb.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.disabled.empty()) if (!u->GetProperties().disabled.Set(m_ucr.disabled.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.disabledDetailStat.empty()) if (!u->GetProperties().disabledDetailStat.Set(m_ucr.disabledDetailStat.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.email.empty()) if (!u->GetProperties().email.Set(m_ucr.email.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.group.empty()) if (!u->GetProperties().group.Set(m_ucr.group.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.note.empty()) if (!u->GetProperties().note.Set(m_ucr.note.const_data(), m_currAdmin, m_login, m_store)) return -1; std::vector *> userdata; userdata.push_back(u->GetProperties().userdata0.GetPointer()); userdata.push_back(u->GetProperties().userdata1.GetPointer()); userdata.push_back(u->GetProperties().userdata2.GetPointer()); userdata.push_back(u->GetProperties().userdata3.GetPointer()); userdata.push_back(u->GetProperties().userdata4.GetPointer()); userdata.push_back(u->GetProperties().userdata5.GetPointer()); userdata.push_back(u->GetProperties().userdata6.GetPointer()); userdata.push_back(u->GetProperties().userdata7.GetPointer()); userdata.push_back(u->GetProperties().userdata8.GetPointer()); userdata.push_back(u->GetProperties().userdata9.GetPointer()); for (int i = 0; i < (int)userdata.size(); i++) if (!m_ucr.userdata[i].empty()) if(!userdata[i]->Set(m_ucr.userdata[i].const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.passive.empty()) if (!u->GetProperties().passive.Set(m_ucr.passive.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.password.empty()) if (!u->GetProperties().password.Set(m_ucr.password.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.phone.empty()) if (!u->GetProperties().phone.Set(m_ucr.phone.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.realName.empty()) if (!u->GetProperties().realName.Set(m_ucr.realName.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_usr.cash.empty()) { if (m_cashMustBeAdded) { if (!u->GetProperties().cash.Set(m_usr.cash.const_data() + u->GetProperties().cash, m_currAdmin, m_login, m_store, m_cashMsg)) return -1; } else { if (!u->GetProperties().cash.Set(m_usr.cash.const_data(), m_currAdmin, m_login, m_store, m_cashMsg)) return -1; } } if (!m_ucr.tariffName.empty()) { const auto newTariff = m_tariffs.FindByName(m_ucr.tariffName.const_data()); if (newTariff) { const auto tariff = u->GetTariff(); std::string message = tariff->TariffChangeIsAllowed(*newTariff, time(NULL)); if (message.empty()) { if (!u->GetProperties().tariffName.Set(m_ucr.tariffName.const_data(), m_currAdmin, m_login, m_store)) return -1; u->ResetNextTariff(); } else { PluginLogger::get("conf_sg")("Tariff change is prohibited for user %s. %s", u->GetLogin().c_str(), message.c_str()); } } else { //WriteServLog("SetUser: Tariff %s not found", ud.conf.tariffName.c_str()); return -1; } } if (!m_ucr.nextTariff.empty()) { if (m_tariffs.FindByName(m_ucr.nextTariff.const_data())) { if (!u->GetProperties().nextTariff.Set(m_ucr.nextTariff.const_data(), m_currAdmin, m_login, m_store)) return -1; } else { //WriteServLog("SetUser: Tariff %s not found", ud.conf.tariffName.c_str()); return -1; } } auto up = u->GetProperties().up.get(); auto down = u->GetProperties().down.get(); int upCount = 0; int downCount = 0; for (int i = 0; i < DIR_NUM; i++) { if (!m_upr[i].empty()) { up[i] = m_upr[i].data(); upCount++; } if (!m_downr[i].empty()) { down[i] = m_downr[i].data(); downCount++; } } if (upCount) if (!u->GetProperties().up.Set(up, m_currAdmin, m_login, m_store)) return -1; if (downCount) if (!u->GetProperties().down.Set(down, m_currAdmin, m_login, m_store)) return -1; u->WriteConf(); u->WriteStat(); return 0; } int DEL_USER::Start(void *, const char *el, const char **attr) { res = 0; if (strcasecmp(el, m_tag.c_str()) == 0) { if (attr[0] == NULL || attr[1] == NULL) { //CreateAnswer("Parameters error!"); CreateAnswer(); return 0; } if (m_users.FindByName(attr[1], &u)) { res = 1; CreateAnswer(); return 0; } CreateAnswer(); return 0; } return -1; } int DEL_USER::End(void *, const char *el) { if (strcasecmp(el, m_tag.c_str()) == 0) { if (!res) m_users.Del(u->GetLogin(), &m_currAdmin); return 0; } return -1; } void DEL_USER::CreateAnswer() { if (res) m_answer = "<" + m_tag + " value=\"error\" reason=\"User not found\"/>"; else m_answer = "<" + m_tag + " value=\"ok\"/>"; } int CHECK_USER::Start(void *, const char *el, const char **attr) { if (strcasecmp(el, m_tag.c_str()) == 0) { if (attr[0] == NULL || attr[1] == NULL || attr[2] == NULL || attr[3] == NULL) { CreateAnswer("Invalid parameters."); printfd(__FILE__, "PARSER_CHECK_USER - attr err\n"); return 0; } ConstUserPtr user; if (m_users.FindByName(attr[1], &user)) { CreateAnswer("User not found."); printfd(__FILE__, "PARSER_CHECK_USER - login err\n"); return 0; } if (strcmp(user->GetProperties().password.Get().c_str(), attr[3])) { CreateAnswer("Wrong password."); printfd(__FILE__, "PARSER_CHECK_USER - passwd err\n"); return 0; } CreateAnswer(NULL); return 0; } return -1; } int CHECK_USER::End(void *, const char *el) { if (strcasecmp(el, m_tag.c_str()) == 0) return 0; return -1; } void CHECK_USER::CreateAnswer(const char * error) { if (error) m_answer = "<" + m_tag + " value=\"Err\" reason=\"" + error + "\"/>"; else m_answer = "<" + m_tag + " value=\"Ok\"/>"; }