]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_kill.cpp
Fix exposing the opers hostname in KILL when using hidekills.
[user/henk/code/inspircd.git] / src / commands / cmd_kill.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc>
6  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
7  *
8  * This file is part of InspIRCd.  InspIRCd is free software: you can
9  * redistribute it and/or modify it under the terms of the GNU General Public
10  * License as published by the Free Software Foundation, version 2.
11  *
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
15  * details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21
22 #include "inspircd.h"
23
24 /** Handle /KILL. These command handlers can be reloaded by the core,
25  * and handle basic RFC1459 commands. Commands within modules work
26  * the same way, however, they can be fully unloaded, where these
27  * may not.
28  */
29 class CommandKill : public Command
30 {
31  public:
32         /** Constructor for kill.
33          */
34         CommandKill ( Module* parent) : Command(parent,"KILL",2,2) {
35                 flags_needed = 'o';
36                 syntax = "<nickname> <reason>";
37                 TRANSLATE3(TR_NICK, TR_TEXT, TR_END);
38         }
39         /** Handle command.
40          * @param parameters The parameters to the comamnd
41          * @param pcnt The number of parameters passed to teh command
42          * @param user The user issuing the command
43          * @return A value from CmdResult to indicate command success or failure.
44          */
45         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
46         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
47         {
48                 // local kills of remote users are routed via the OnRemoteKill hook
49                 if (IS_LOCAL(user))
50                         return ROUTE_LOCALONLY;
51                 return ROUTE_BROADCAST;
52         }
53 };
54
55 /** Handle /KILL
56  */
57 CmdResult CommandKill::Handle (const std::vector<std::string>& parameters, User *user)
58 {
59         /* Allow comma seperated lists of users for /KILL (thanks w00t) */
60         if (ServerInstance->Parser->LoopCall(user, this, parameters, 0))
61                 return CMD_SUCCESS;
62
63         User *u = ServerInstance->FindNick(parameters[0]);
64         if ((u) && (!IS_SERVER(u)))
65         {
66                 /*
67                  * Here, we need to decide how to munge kill messages. Whether to hide killer, what to show opers, etc.
68                  * We only do this when the command is being issued LOCALLY, for remote KILL, we just copy the message we got.
69                  *
70                  * This conditional is so that we only append the "Killed (" prefix ONCE. If killer is remote, then the kill
71                  * just gets processed and passed on, otherwise, if they are local, it gets prefixed. Makes sense :-) -- w00t
72                  */
73
74                 std::string killreason;
75                 if (IS_LOCAL(user))
76                 {
77                         /*
78                          * Moved this event inside the IS_LOCAL check also, we don't want half the network killing a user
79                          * and the other half not. This would be a bad thing. ;p -- w00t
80                          */
81                         ModResult MOD_RESULT;
82                         FIRST_MOD_RESULT(OnKill, MOD_RESULT, (user, u, parameters[1]));
83
84                         if (MOD_RESULT == MOD_RES_DENY)
85                                 return CMD_FAILURE;
86
87                         killreason = "Killed (";
88                         if (!ServerInstance->Config->HideKillsServer.empty())
89                         {
90                                 // hidekills is on, use it
91                                 killreason += ServerInstance->Config->HideKillsServer;
92                         }
93                         else
94                         {
95                                 // hidekills is off, do nothing
96                                 killreason += user->nick;
97                         }
98
99                         killreason += " (" + parameters[1] + "))";
100                 }
101                 else
102                 {
103                         /* Leave it alone, remote server has already formatted it */
104                         killreason.assign(parameters[1], 0, ServerInstance->Config->Limits.MaxQuit);
105                 }
106
107                 /*
108                  * Now we need to decide whether or not to send a local or remote snotice. Currently this checking is a little flawed.
109                  * No time to fix it right now, so left a note. -- w00t
110                  */
111                 if (!IS_LOCAL(u))
112                 {
113                         // remote kill
114                         ServerInstance->SNO->WriteToSnoMask('K', "Remote kill by %s: %s (%s)", user->nick.c_str(), u->GetFullRealHost().c_str(), parameters[1].c_str());
115                         FOREACH_MOD(I_OnRemoteKill, OnRemoteKill(user, u, killreason, killreason));
116                 }
117                 else
118                 {
119                         // local kill
120                         /*
121                          * XXX - this isn't entirely correct, servers A - B - C, oper on A, client on C. Oper kills client, A and B will get remote kill
122                          * snotices, C will get a local kill snotice. this isn't accurate, and needs fixing at some stage. -- w00t
123                          */
124                         if (IS_LOCAL(user))
125                                 ServerInstance->SNO->WriteGlobalSno('k',"Local Kill by %s: %s (%s)", user->nick.c_str(), u->GetFullRealHost().c_str(), parameters[1].c_str());
126                         else
127                                 ServerInstance->SNO->WriteToSnoMask('k',"Local Kill by %s: %s (%s)", user->nick.c_str(), u->GetFullRealHost().c_str(), parameters[1].c_str());
128                         ServerInstance->Logs->Log("KILL",DEFAULT,"LOCAL KILL: %s :%s!%s!%s (%s)", u->nick.c_str(), ServerInstance->Config->ServerName.c_str(), user->dhost.c_str(), user->nick.c_str(), parameters[1].c_str());
129                         /* Bug #419, make sure this message can only occur once even in the case of multiple KILL messages crossing the network, and change to show
130                          * hidekillsserver as source if possible
131                          */
132                         if (!u->quitting)
133                         {
134                                 u->Write(":%s KILL %s :%s!%s!%s (%s)", ServerInstance->Config->HideKillsServer.empty() ? user->GetFullHost().c_str() : ServerInstance->Config->HideKillsServer.c_str(),
135                                                 u->nick.c_str(),
136                                                 ServerInstance->Config->ServerName.c_str(),
137                                                 ServerInstance->Config->HideKillsServer.empty() ? user->dhost.c_str() : ServerInstance->Config->HideKillsServer.c_str(),
138                                                 ServerInstance->Config->HideKillsServer.empty() ? user->nick.c_str() : ServerInstance->Config->HideKillsServer.c_str(),
139                                                 parameters[1].c_str());
140                         }
141                 }
142
143                 // send the quit out
144                 ServerInstance->Users->QuitUser(u, killreason);
145         }
146         else
147         {
148                 user->WriteServ( "401 %s %s :No such nick/channel", user->nick.c_str(), parameters[0].c_str());
149                 return CMD_FAILURE;
150         }
151
152         return CMD_SUCCESS;
153 }
154
155
156 COMMAND_INIT(CommandKill)