]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_check.cpp
Update copyright headers.
[user/henk/code/inspircd.git] / src / modules / m_check.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2020 Matt Schatz <genius3000@g3k.solutions>
5  *   Copyright (C) 2013-2016 Attila Molnar <attilamolnar@hush.com>
6  *   Copyright (C) 2013, 2017-2020 Sadie Powell <sadie@witchery.services>
7  *   Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
8  *   Copyright (C) 2010 Craig Edwards <brain@inspircd.org>
9  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
10  *   Copyright (C) 2009 Uli Schlachter <psychon@inspircd.org>
11  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
12  *   Copyright (C) 2006-2008 Robin Burchell <robin+git@viroteck.net>
13  *
14  * This file is part of InspIRCd.  InspIRCd is free software: you can
15  * redistribute it and/or modify it under the terms of the GNU General Public
16  * License as published by the Free Software Foundation, version 2.
17  *
18  * This program is distributed in the hope that it will be useful, but WITHOUT
19  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
20  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
21  * details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
25  */
26
27
28 #include "inspircd.h"
29 #include "listmode.h"
30
31 enum
32 {
33         RPL_CHECK = 802
34 };
35
36 class CheckContext
37 {
38  private:
39         User* const user;
40         const std::string& target;
41
42         std::string FormatTime(time_t ts)
43         {
44                 std::string timestr(InspIRCd::TimeString(ts, "%Y-%m-%d %H:%M:%S UTC (", true));
45                 timestr.append(ConvToStr(ts));
46                 timestr.push_back(')');
47                 return timestr;
48         }
49
50  public:
51         CheckContext(User* u, const std::string& targetstr)
52                 : user(u)
53                 , target(targetstr)
54         {
55                 Write("START", target);
56         }
57
58         ~CheckContext()
59         {
60                 Write("END", target);
61         }
62
63         void Write(const std::string& type, const std::string& text)
64         {
65                 user->WriteRemoteNumeric(RPL_CHECK, type, text);
66         }
67
68         void Write(const std::string& type, time_t ts)
69         {
70                 user->WriteRemoteNumeric(RPL_CHECK, type, FormatTime(ts));
71         }
72
73         User* GetUser() const { return user; }
74
75         void DumpListMode(ListModeBase* mode, Channel* chan)
76         {
77                 const ListModeBase::ModeList* list = mode->GetList(chan);
78                 if (!list)
79                         return;
80
81                 for (ListModeBase::ModeList::const_iterator i = list->begin(); i != list->end(); ++i)
82                 {
83                         CheckContext::List listmode(*this, "listmode");
84                         listmode.Add(ConvToStr(mode->GetModeChar()));
85                         listmode.Add(i->mask);
86                         listmode.Add(i->setter);
87                         listmode.Add(FormatTime(i->time));
88                         listmode.Flush();
89                 }
90         }
91
92         void DumpExt(Extensible* ext)
93         {
94                 CheckContext::List extlist(*this, "metadata");
95                 for(Extensible::ExtensibleStore::const_iterator i = ext->GetExtList().begin(); i != ext->GetExtList().end(); ++i)
96                 {
97                         ExtensionItem* item = i->first;
98                         std::string value = item->ToHuman(ext, i->second);
99                         if (!value.empty())
100                                 Write("meta:" + item->name, value);
101                         else if (!item->name.empty())
102                                 extlist.Add(item->name);
103                 }
104
105                 extlist.Flush();
106         }
107
108         class List : public Numeric::GenericBuilder<' ', false, Numeric::WriteRemoteNumericSink>
109         {
110          public:
111                 List(CheckContext& context, const char* checktype)
112                         : Numeric::GenericBuilder<' ', false, Numeric::WriteRemoteNumericSink>(Numeric::WriteRemoteNumericSink(context.GetUser()), RPL_CHECK, false, (IS_LOCAL(context.GetUser()) ? context.GetUser()->nick.length() : ServerInstance->Config->Limits.NickMax) + strlen(checktype) + 1)
113                 {
114                         GetNumeric().push(checktype).push(std::string());
115                 }
116         };
117 };
118
119 /** Handle /CHECK
120  */
121 class CommandCheck : public Command
122 {
123         UserModeReference snomaskmode;
124
125         std::string GetSnomasks(User* user)
126         {
127                 std::string ret;
128                 if (snomaskmode)
129                         ret = snomaskmode->GetUserParameter(user);
130
131                 if (ret.empty())
132                         ret = "+";
133                 return ret;
134         }
135
136         static std::string GetAllowedOperOnlyModes(LocalUser* user, ModeType modetype)
137         {
138                 std::string ret;
139                 const ModeParser::ModeHandlerMap& modes = ServerInstance->Modes.GetModes(modetype);
140                 for (ModeParser::ModeHandlerMap::const_iterator i = modes.begin(); i != modes.end(); ++i)
141                 {
142                         const ModeHandler* const mh = i->second;
143                         if ((mh->NeedsOper()) && (user->HasModePermission(mh)))
144                                 ret.push_back(mh->GetModeChar());
145                 }
146                 return ret;
147         }
148
149  public:
150         CommandCheck(Module* parent)
151                 : Command(parent,"CHECK", 1)
152                 , snomaskmode(parent, "snomask")
153         {
154                 flags_needed = 'o';
155                 syntax = "<nick>|<ipmask>|<hostmask>|<channel> [<servername>]";
156         }
157
158         CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE
159         {
160                 if (parameters.size() > 1 && !irc::equals(parameters[1], ServerInstance->Config->ServerName))
161                         return CMD_SUCCESS;
162
163                 User *targuser;
164                 Channel *targchan;
165                 std::string chliststr;
166
167                 targuser = ServerInstance->FindNick(parameters[0]);
168                 targchan = ServerInstance->FindChan(parameters[0]);
169
170                 /*
171                  * Syntax of a /check reply:
172                  *  :server.name 802 target START <target>
173                  *  :server.name 802 target <field> :<value>
174                  *  :server.name 802 target END <target>
175                  */
176
177                 // Constructor sends START, destructor sends END
178                 CheckContext context(user, parameters[0]);
179
180                 if (targuser)
181                 {
182                         LocalUser* loctarg = IS_LOCAL(targuser);
183                         /* /check on a user */
184                         context.Write("nuh", targuser->GetFullHost());
185                         context.Write("realnuh", targuser->GetFullRealHost());
186                         context.Write("realname", targuser->GetRealName());
187                         context.Write("modes", targuser->GetModeLetters());
188                         context.Write("snomasks", GetSnomasks(targuser));
189                         context.Write("server", targuser->server->GetName());
190                         context.Write("uid", targuser->uuid);
191                         context.Write("signon", targuser->signon);
192                         context.Write("nickts", targuser->age);
193                         if (loctarg)
194                                 context.Write("lastmsg", loctarg->idle_lastmsg);
195
196                         if (targuser->IsAway())
197                         {
198                                 /* user is away */
199                                 context.Write("awaytime", targuser->awaytime);
200                                 context.Write("awaymsg", targuser->awaymsg);
201                         }
202
203                         if (targuser->IsOper())
204                         {
205                                 OperInfo* oper = targuser->oper;
206                                 /* user is an oper of type ____ */
207                                 context.Write("opertype", oper->name);
208                                 if (loctarg)
209                                 {
210                                         context.Write("chanmodeperms", GetAllowedOperOnlyModes(loctarg, MODETYPE_CHANNEL));
211                                         context.Write("usermodeperms", GetAllowedOperOnlyModes(loctarg, MODETYPE_USER));
212                                         context.Write("commandperms", oper->AllowedOperCommands.ToString());
213                                         context.Write("permissions", oper->AllowedPrivs.ToString());
214                                 }
215                         }
216
217                         if (loctarg)
218                         {
219                                 context.Write("clientaddr", loctarg->client_sa.str());
220                                 context.Write("serveraddr", loctarg->server_sa.str());
221
222                                 std::string classname = loctarg->GetClass()->name;
223                                 if (!classname.empty())
224                                         context.Write("connectclass", classname);
225
226                                 context.Write("exempt", loctarg->exempt ? "yes" : "no");
227                         }
228                         else
229                                 context.Write("onip", targuser->GetIPString());
230
231                         CheckContext::List chanlist(context, "onchans");
232                         for (User::ChanList::iterator i = targuser->chans.begin(); i != targuser->chans.end(); i++)
233                         {
234                                 Membership* memb = *i;
235                                 Channel* c = memb->chan;
236                                 char prefix = memb->GetPrefixChar();
237                                 if (prefix)
238                                         chliststr.push_back(prefix);
239                                 chliststr.append(c->name);
240                                 chanlist.Add(chliststr);
241                                 chliststr.clear();
242                         }
243
244                         chanlist.Flush();
245
246                         context.DumpExt(targuser);
247                 }
248                 else if (targchan)
249                 {
250                         /* /check on a channel */
251                         context.Write("createdat", targchan->age);
252
253                         if (!targchan->topic.empty())
254                         {
255                                 /* there is a topic, assume topic related information exists */
256                                 context.Write("topic", targchan->topic);
257                                 context.Write("topic_setby", targchan->setby);
258                                 context.Write("topic_setat", targchan->topicset);
259                         }
260
261                         context.Write("modes", targchan->ChanModes(true));
262                         context.Write("membercount", ConvToStr(targchan->GetUserCounter()));
263
264                         /* now the ugly bit, spool current members of a channel. :| */
265
266                         const Channel::MemberMap& ulist = targchan->GetUsers();
267
268                         /* note that unlike /names, we do NOT check +i vs in the channel */
269                         for (Channel::MemberMap::const_iterator i = ulist.begin(); i != ulist.end(); ++i)
270                         {
271                                 /*
272                                  * Unlike Asuka, I define a clone as coming from the same host. --w00t
273                                  */
274                                 const UserManager::CloneCounts& clonecount = ServerInstance->Users->GetCloneCounts(i->first);
275                                 context.Write("member", InspIRCd::Format("%u %s%s (%s)", clonecount.global,
276                                         i->second->GetAllPrefixChars().c_str(), i->first->GetFullHost().c_str(),
277                                         i->first->GetRealName().c_str()));
278                         }
279
280                         const ModeParser::ListModeList& listmodes = ServerInstance->Modes->GetListModes();
281                         for (ModeParser::ListModeList::const_iterator i = listmodes.begin(); i != listmodes.end(); ++i)
282                                 context.DumpListMode(*i, targchan);
283
284                         context.DumpExt(targchan);
285                 }
286                 else
287                 {
288                         /*  /check on an IP address, or something that doesn't exist */
289                         long x = 0;
290
291                         /* hostname or other */
292                         const user_hash& users = ServerInstance->Users->GetUsers();
293                         for (user_hash::const_iterator a = users.begin(); a != users.end(); ++a)
294                         {
295                                 if (InspIRCd::Match(a->second->GetRealHost(), parameters[0], ascii_case_insensitive_map) || InspIRCd::Match(a->second->GetDisplayedHost(), parameters[0], ascii_case_insensitive_map))
296                                 {
297                                         /* host or vhost matches mask */
298                                         context.Write("match", ConvToStr(++x) + " " + a->second->GetFullRealHost() + " " + a->second->GetIPString() + " " + a->second->GetRealName());
299                                 }
300                                 /* IP address */
301                                 else if (InspIRCd::MatchCIDR(a->second->GetIPString(), parameters[0]))
302                                 {
303                                         /* same IP. */
304                                         context.Write("match", ConvToStr(++x) + " " + a->second->GetFullRealHost() + " " + a->second->GetIPString() + " " + a->second->GetRealName());
305                                 }
306                         }
307
308                         context.Write("matches", ConvToStr(x));
309                 }
310
311                 // END is sent by the CheckContext destructor
312                 return CMD_SUCCESS;
313         }
314
315         RouteDescriptor GetRouting(User* user, const Params& parameters) CXX11_OVERRIDE
316         {
317                 if ((parameters.size() > 1) && (parameters[1].find('.') != std::string::npos))
318                         return ROUTE_OPT_UCAST(parameters[1]);
319                 return ROUTE_LOCALONLY;
320         }
321 };
322
323 class ModuleCheck : public Module
324 {
325         CommandCheck mycommand;
326  public:
327         ModuleCheck() : mycommand(this)
328         {
329         }
330
331         Version GetVersion() CXX11_OVERRIDE
332         {
333                 return Version("Adds the /CHECK command which allows server operators to look up details about a channel, user, IP address, or hostname.", VF_VENDOR|VF_OPTCOMMON);
334         }
335 };
336
337 MODULE_INIT(ModuleCheck)