]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_kill.cpp
Fix routing of KILL command when sourced from a server
[user/henk/code/inspircd.git] / src / commands / cmd_kill.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15
16 /** Handle /KILL. These command handlers can be reloaded by the core,
17  * and handle basic RFC1459 commands. Commands within modules work
18  * the same way, however, they can be fully unloaded, where these
19  * may not.
20  */
21 class CommandKill : public Command
22 {
23  public:
24         /** Constructor for kill.
25          */
26         CommandKill ( Module* parent) : Command(parent,"KILL",2,2) { flags_needed = 'o'; syntax = "<nickname> <reason>"; }
27         /** Handle command.
28          * @param parameters The parameters to the comamnd
29          * @param pcnt The number of parameters passed to teh command
30          * @param user The user issuing the command
31          * @return A value from CmdResult to indicate command success or failure.
32          */
33         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
34         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
35         {
36                 return ROUTE_BROADCAST;
37         }
38 };
39
40 /** Handle /KILL
41  */
42 CmdResult CommandKill::Handle (const std::vector<std::string>& parameters, User *user)
43 {
44         /* Allow comma seperated lists of users for /KILL (thanks w00t) */
45         if (ServerInstance->Parser->LoopCall(user, this, parameters, 0))
46                 return CMD_SUCCESS;
47
48         User *u = ServerInstance->FindNick(parameters[0]);
49         char killreason[MAXBUF];
50         ModResult MOD_RESULT;
51
52         if (u)
53         {
54                 /*
55                  * Here, we need to decide how to munge kill messages. Whether to hide killer, what to show opers, etc.
56                  * We only do this when the command is being issued LOCALLY, for remote KILL, we just copy the message we got.
57                  *
58                  * This conditional is so that we only append the "Killed (" prefix ONCE. If killer is remote, then the kill
59                  * just gets processed and passed on, otherwise, if they are local, it gets prefixed. Makes sense :-) -- w00t
60                  */
61                 if (IS_LOCAL(user))
62                 {
63                         /*
64                          * Moved this event inside the IS_LOCAL check also, we don't want half the network killing a user
65                          * and the other half not. This would be a bad thing. ;p -- w00t
66                          */
67                         FIRST_MOD_RESULT(OnKill, MOD_RESULT, (user, u, parameters[1]));
68
69                         if (MOD_RESULT == MOD_RES_DENY)
70                                 return CMD_FAILURE;
71
72                         if (!ServerInstance->Config->HideKillsServer.empty())
73                         {
74                                 // hidekills is on, use it
75                                 snprintf(killreason, ServerInstance->Config->Limits.MaxQuit, "Killed (%s (%s))", ServerInstance->Config->HideKillsServer.c_str(), parameters[1].c_str());
76                         }
77                         else
78                         {
79                                 // hidekills is off, do nothing
80                                 snprintf(killreason, ServerInstance->Config->Limits.MaxQuit, "Killed (%s (%s))", user->nick.c_str(), parameters[1].c_str());
81                         }
82                 }
83                 else
84                 {
85                         /* Leave it alone, remote server has already formatted it */
86                         strlcpy(killreason, parameters[1].c_str(), ServerInstance->Config->Limits.MaxQuit);
87                 }
88
89                 /*
90                  * Now we need to decide whether or not to send a local or remote snotice. Currently this checking is a little flawed.
91                  * No time to fix it right now, so left a note. -- w00t
92                  */
93                 if (!IS_LOCAL(u))
94                 {
95                         // remote kill
96                         ServerInstance->SNO->WriteToSnoMask('K', "Remote kill by %s: %s!%s@%s (%s)", user->nick.c_str(), u->nick.c_str(), u->ident.c_str(), u->host.c_str(), parameters[1].c_str());
97                         FOREACH_MOD(I_OnRemoteKill, OnRemoteKill(user, u, killreason, killreason));
98                 }
99                 else
100                 {
101                         // local kill
102                         /*
103                          * 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
104                          * snotices, C will get a local kill snotice. this isn't accurate, and needs fixing at some stage. -- w00t
105                          */
106                         ServerInstance->SNO->WriteToSnoMask('k',"Local Kill by %s: %s!%s@%s (%s)", user->nick.c_str(), u->nick.c_str(), u->ident.c_str(), u->host.c_str(), parameters[1].c_str());
107                         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());
108                         /* 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
109                          * hidekillsserver as source if possible
110                          */
111                         if (!u->quitting)
112                         {
113                                 u->Write(":%s KILL %s :%s!%s!%s (%s)", ServerInstance->Config->HideKillsServer.empty() ? user->GetFullHost().c_str() : ServerInstance->Config->HideKillsServer.c_str(),
114                                                 u->nick.c_str(),
115                                                 ServerInstance->Config->ServerName.c_str(),
116                                                 user->dhost.c_str(),
117                                                 ServerInstance->Config->HideKillsServer.empty() ? user->nick.c_str() : ServerInstance->Config->HideKillsServer.c_str(),
118                                                 parameters[1].c_str());
119                         }
120                 }
121
122                 // send the quit out
123                 ServerInstance->Users->QuitUser(u, killreason);
124         }
125         else
126         {
127                 user->WriteServ( "401 %s %s :No such nick/channel", user->nick.c_str(), parameters[0].c_str());
128                 return CMD_FAILURE;
129         }
130
131         return CMD_SUCCESS;
132 }
133
134
135 COMMAND_INIT(CommandKill)