/* * InspIRCd -- Internet Relay Chat Daemon * * Copyright (C) 2009 Daniel De Graaf * Copyright (C) 2006-2008 Robin Burchell * Copyright (C) 2007 Dennis Friis * Copyright (C) 2005-2007 Craig Edwards * * This file is part of InspIRCd. InspIRCd 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, version 2. * * 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, see . */ /* $Core */ #include "inspircd.h" #include "cull_list.h" CullList::CullList(InspIRCd* Instance) : ServerInstance(Instance) { } void CullList::AddItem(User* user) { list.push_back(user); } void CullList::AddSQItem(User* user) { SQlist.push_back(user); } void CullList::MakeSilent(User* user) { user->quietquit = true; return; } void CullList::Apply() { std::vector working; while (!SQlist.empty()) { working.swap(SQlist); for(std::vector::iterator a = working.begin(); a != working.end(); a++) { User *u = *a; ServerInstance->SNO->WriteToSnoMask('a', "User %s SendQ exceeds connect class maximum of %lu", u->nick.c_str(), u->MyClass->GetSendqMax()); ServerInstance->Users->QuitUser(u, "SendQ exceeded"); } working.clear(); } for(std::vector::iterator a = list.begin(); a != list.end(); a++) { User *u = *a; if (u->registered != REG_ALL) if (ServerInstance->Users->unregistered_count) ServerInstance->Users->unregistered_count--; if (IS_LOCAL(u)) { if (!u->sendq.empty()) u->FlushWriteBuf(); if (u->GetIOHook()) { try { u->GetIOHook()->OnRawSocketClose(u->GetFd()); } catch (CoreException& modexcept) { ServerInstance->Logs->Log("CULLLIST",DEBUG, "%s threw an exception: %s", modexcept.GetSource(), modexcept.GetReason()); } } ServerInstance->SE->DelFd(u); u->CloseSocket(); } /* * this must come before the ServerInstance->SNO->WriteToSnoMaskso that it doesnt try to fill their buffer with anything * if they were an oper with +sn +qQ. */ if (u->registered == REG_ALL) { u->PurgeEmptyChannels(); if (IS_LOCAL(u)) { if (!u->quietquit) { ServerInstance->SNO->WriteToSnoMask('q',"Client exiting: %s!%s@%s [%s]", u->nick.c_str(), u->ident.c_str(), u->host.c_str(), u->operquitmsg.c_str()); } } else { if ((!ServerInstance->SilentULine(u->server)) && (!u->quietquit)) { ServerInstance->SNO->WriteToSnoMask('Q',"Client exiting on server %s: %s!%s@%s [%s]", u->server, u->nick.c_str(), u->ident.c_str(), u->host.c_str(), u->operquitmsg.c_str()); } } u->AddToWhoWas(); } if (IS_LOCAL(u)) { std::vector::iterator x = find(ServerInstance->Users->local_users.begin(),ServerInstance->Users->local_users.end(),u); if (x != ServerInstance->Users->local_users.end()) ServerInstance->Users->local_users.erase(x); else { ServerInstance->Logs->Log("CULLLIST", DEBUG, "Failed to remove user from vector.."); } } delete u; } list.clear(); }