]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/capab.cpp
Change the parameter type of ModeHandler::GiveModeList() from ModeMasks to ModeType
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / capab.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc>
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 #include "treeserver.h"
25 #include "utils.h"
26 #include "link.h"
27 #include "main.h"
28
29 std::string TreeSocket::MyModules(int filter)
30 {
31         const ModuleManager::ModuleMap& modlist = ServerInstance->Modules->GetModules();
32
33         std::string capabilities;
34         for (ModuleManager::ModuleMap::const_iterator i = modlist.begin(); i != modlist.end(); ++i)
35         {
36                 Version v = i->second->GetVersion();
37                 if (!(v.Flags & filter))
38                         continue;
39
40                 if (i != modlist.begin())
41                         capabilities.push_back(' ');
42                 capabilities.append(i->first);
43                 if (!v.link_data.empty())
44                 {
45                         capabilities.push_back('=');
46                         capabilities.append(v.link_data);
47                 }
48         }
49         return capabilities;
50 }
51
52 static std::string BuildModeList(ModeType type)
53 {
54         std::vector<std::string> modes;
55         for(char c='A'; c <= 'z'; c++)
56         {
57                 ModeHandler* mh = ServerInstance->Modes->FindMode(c, type);
58                 if (mh)
59                 {
60                         std::string mdesc = mh->name;
61                         mdesc.push_back('=');
62                         PrefixMode* pm = mh->IsPrefixMode();
63                         if (pm)
64                         {
65                                 if (pm->GetPrefix())
66                                         mdesc.push_back(pm->GetPrefix());
67                         }
68                         mdesc.push_back(mh->GetModeChar());
69                         modes.push_back(mdesc);
70                 }
71         }
72         sort(modes.begin(), modes.end());
73         return irc::stringjoiner(modes);
74 }
75
76 void TreeSocket::SendCapabilities(int phase)
77 {
78         if (capab->capab_phase >= phase)
79                 return;
80
81         if (capab->capab_phase < 1 && phase >= 1)
82                 WriteLine("CAPAB START " + ConvToStr(ProtocolVersion));
83
84         capab->capab_phase = phase;
85         if (phase < 2)
86                 return;
87
88         const char sep = ' ';
89         irc::sepstream modulelist(MyModules(VF_COMMON), sep);
90         irc::sepstream optmodulelist(MyModules(VF_OPTCOMMON), sep);
91         /* Send module names, split at 509 length */
92         std::string item;
93         std::string line = "CAPAB MODULES :";
94         while (modulelist.GetToken(item))
95         {
96                 if (line.length() + item.length() + 1 > 509)
97                 {
98                         this->WriteLine(line);
99                         line = "CAPAB MODULES :";
100                 }
101
102                 if (line != "CAPAB MODULES :")
103                         line.push_back(sep);
104
105                 line.append(item);
106         }
107         if (line != "CAPAB MODULES :")
108                 this->WriteLine(line);
109
110         line = "CAPAB MODSUPPORT :";
111         while (optmodulelist.GetToken(item))
112         {
113                 if (line.length() + item.length() + 1 > 509)
114                 {
115                         this->WriteLine(line);
116                         line = "CAPAB MODSUPPORT :";
117                 }
118
119                 if (line != "CAPAB MODSUPPORT :")
120                         line.push_back(sep);
121
122                 line.append(item);
123         }
124         if (line != "CAPAB MODSUPPORT :")
125                 this->WriteLine(line);
126
127         WriteLine("CAPAB CHANMODES :" + BuildModeList(MODETYPE_CHANNEL));
128         WriteLine("CAPAB USERMODES :" + BuildModeList(MODETYPE_USER));
129
130         std::string extra;
131         /* Do we have sha256 available? If so, we send a challenge */
132         if (Utils->ChallengeResponse && (ServerInstance->Modules->Find("m_sha256.so")))
133         {
134                 SetOurChallenge(ServerInstance->GenRandomStr(20));
135                 extra = " CHALLENGE=" + this->GetOurChallenge();
136         }
137
138         // 2.0 needs this key
139         if (proto_version == 1202)
140                 extra.append(" PROTOCOL="+ConvToStr(ProtocolVersion));
141
142         this->WriteLine("CAPAB CAPABILITIES " /* Preprocessor does this one. */
143                         ":NICKMAX="+ConvToStr(ServerInstance->Config->Limits.NickMax)+
144                         " CHANMAX="+ConvToStr(ServerInstance->Config->Limits.ChanMax)+
145                         " MAXMODES="+ConvToStr(ServerInstance->Config->Limits.MaxModes)+
146                         " IDENTMAX="+ConvToStr(ServerInstance->Config->Limits.IdentMax)+
147                         " MAXQUIT="+ConvToStr(ServerInstance->Config->Limits.MaxQuit)+
148                         " MAXTOPIC="+ConvToStr(ServerInstance->Config->Limits.MaxTopic)+
149                         " MAXKICK="+ConvToStr(ServerInstance->Config->Limits.MaxKick)+
150                         " MAXGECOS="+ConvToStr(ServerInstance->Config->Limits.MaxGecos)+
151                         " MAXAWAY="+ConvToStr(ServerInstance->Config->Limits.MaxAway)+
152                         extra+
153                         " PREFIX="+ServerInstance->Modes->BuildPrefixes()+
154                         " CHANMODES="+ServerInstance->Modes->GiveModeList(MODETYPE_CHANNEL)+
155                         " USERMODES="+ServerInstance->Modes->GiveModeList(MODETYPE_USER)
156                         );
157
158         this->WriteLine("CAPAB END");
159 }
160
161 /* Isolate and return the elements that are different between two comma seperated lists */
162 void TreeSocket::ListDifference(const std::string &one, const std::string &two, char sep,
163                 std::string& mleft, std::string& mright)
164 {
165         std::set<std::string> values;
166         irc::sepstream sepleft(one, sep);
167         irc::sepstream sepright(two, sep);
168         std::string item;
169         while (sepleft.GetToken(item))
170         {
171                 values.insert(item);
172         }
173         while (sepright.GetToken(item))
174         {
175                 if (!values.erase(item))
176                 {
177                         mright.push_back(sep);
178                         mright.append(item);
179                 }
180         }
181         for(std::set<std::string>::iterator i = values.begin(); i != values.end(); ++i)
182         {
183                 mleft.push_back(sep);
184                 mleft.append(*i);
185         }
186 }
187
188 bool TreeSocket::Capab(const parameterlist &params)
189 {
190         if (params.size() < 1)
191         {
192                 this->SendError("Invalid number of parameters for CAPAB - Mismatched version");
193                 return false;
194         }
195         if (params[0] == "START")
196         {
197                 capab->ModuleList.clear();
198                 capab->OptModuleList.clear();
199                 capab->CapKeys.clear();
200                 if (params.size() > 1)
201                         proto_version = ConvToInt(params[1]);
202
203                 if (proto_version < MinCompatProtocol)
204                 {
205                         SendError("CAPAB negotiation failed: Server is using protocol version " + (proto_version ? ConvToStr(proto_version) : "1201 or older")
206                                 + " which is too old to link with this server (version " + ConvToStr(ProtocolVersion)
207                                 + (ProtocolVersion != MinCompatProtocol ? ", links with " + ConvToStr(MinCompatProtocol) + " and above)" : ")"));
208                         return false;
209                 }
210
211                 // Special case, may be removed in the future
212                 if (proto_version == 1203 || proto_version == 1204)
213                 {
214                         SendError("CAPAB negotiation failed: InspIRCd 2.1 beta is not supported");
215                         return false;
216                 }
217
218                 SendCapabilities(2);
219         }
220         else if (params[0] == "END")
221         {
222                 std::string reason;
223                 /* Compare ModuleList and check CapKeys */
224                 if ((this->capab->ModuleList != this->MyModules(VF_COMMON)) && (this->capab->ModuleList.length()))
225                 {
226                         std::string diffIneed, diffUneed;
227                         ListDifference(this->capab->ModuleList, this->MyModules(VF_COMMON), ' ', diffIneed, diffUneed);
228                         if (diffIneed.length() || diffUneed.length())
229                         {
230                                 reason = "Modules incorrectly matched on these servers.";
231                                 if (diffIneed.length())
232                                         reason += " Not loaded here:" + diffIneed;
233                                 if (diffUneed.length())
234                                         reason += " Not loaded there:" + diffUneed;
235                                 this->SendError("CAPAB negotiation failed: "+reason);
236                                 return false;
237                         }
238                 }
239                 if (this->capab->OptModuleList != this->MyModules(VF_OPTCOMMON) && this->capab->OptModuleList.length())
240                 {
241                         std::string diffIneed, diffUneed;
242                         ListDifference(this->capab->OptModuleList, this->MyModules(VF_OPTCOMMON), ' ', diffIneed, diffUneed);
243                         if (diffIneed.length() || diffUneed.length())
244                         {
245                                 if (Utils->AllowOptCommon)
246                                 {
247                                         ServerInstance->SNO->WriteToSnoMask('l',
248                                                 "Optional module lists do not match, some commands may not work globally.%s%s%s%s",
249                                                 diffIneed.length() ? " Not loaded here:" : "", diffIneed.c_str(),
250                                                 diffUneed.length() ? " Not loaded there:" : "", diffUneed.c_str());
251                                 }
252                                 else
253                                 {
254                                         reason = "Optional modules incorrectly matched on these servers, and options::allowmismatch not set.";
255                                         if (diffIneed.length())
256                                                 reason += " Not loaded here:" + diffIneed;
257                                         if (diffUneed.length())
258                                                 reason += " Not loaded there:" + diffUneed;
259                                         this->SendError("CAPAB negotiation failed: "+reason);
260                                         return false;
261                                 }
262                         }
263                 }
264
265                 if(this->capab->CapKeys.find("PREFIX") != this->capab->CapKeys.end() && this->capab->CapKeys.find("PREFIX")->second != ServerInstance->Modes->BuildPrefixes())
266                         reason = "One or more of the prefixes on the remote server are invalid on this server.";
267
268                 if (!capab->ChanModes.empty())
269                 {
270                         if (capab->ChanModes != BuildModeList(MODETYPE_CHANNEL))
271                         {
272                                 std::string diffIneed, diffUneed;
273                                 ListDifference(capab->ChanModes, BuildModeList(MODETYPE_CHANNEL), ' ', diffIneed, diffUneed);
274                                 if (diffIneed.length() || diffUneed.length())
275                                 {
276                                         reason = "Channel modes not matched on these servers.";
277                                         if (diffIneed.length())
278                                                 reason += " Not loaded here:" + diffIneed;
279                                         if (diffUneed.length())
280                                                 reason += " Not loaded there:" + diffUneed;
281                                 }
282                         }
283                 }
284                 else if (this->capab->CapKeys.find("CHANMODES") != this->capab->CapKeys.end())
285                 {
286                         if (this->capab->CapKeys.find("CHANMODES")->second != ServerInstance->Modes->GiveModeList(MODETYPE_CHANNEL))
287                                 reason = "One or more of the channel modes on the remote server are invalid on this server.";
288                 }
289
290                 if (!capab->UserModes.empty())
291                 {
292                         if (capab->UserModes != BuildModeList(MODETYPE_USER))
293                         {
294                                 std::string diffIneed, diffUneed;
295                                 ListDifference(capab->UserModes, BuildModeList(MODETYPE_USER), ' ', diffIneed, diffUneed);
296                                 if (diffIneed.length() || diffUneed.length())
297                                 {
298                                         reason = "User modes not matched on these servers.";
299                                         if (diffIneed.length())
300                                                 reason += " Not loaded here:" + diffIneed;
301                                         if (diffUneed.length())
302                                                 reason += " Not loaded there:" + diffUneed;
303                                 }
304                         }
305                 }
306                 else if (this->capab->CapKeys.find("USERMODES") != this->capab->CapKeys.end())
307                 {
308                         if (this->capab->CapKeys.find("USERMODES")->second != ServerInstance->Modes->GiveModeList(MODETYPE_USER))
309                                 reason = "One or more of the user modes on the remote server are invalid on this server.";
310                 }
311
312                 /* Challenge response, store their challenge for our password */
313                 std::map<std::string,std::string>::iterator n = this->capab->CapKeys.find("CHALLENGE");
314                 if (Utils->ChallengeResponse && (n != this->capab->CapKeys.end()) && (ServerInstance->Modules->Find("m_sha256.so")))
315                 {
316                         /* Challenge-response is on now */
317                         this->SetTheirChallenge(n->second);
318                         if (!this->GetTheirChallenge().empty() && (this->LinkState == CONNECTING))
319                         {
320                                 this->SendCapabilities(2);
321                                 this->WriteLine("SERVER "+ServerInstance->Config->ServerName+" "+this->MakePass(capab->link->SendPass, capab->theirchallenge)+" 0 "+ServerInstance->Config->GetSID()+" :"+ServerInstance->Config->ServerDesc);
322                         }
323                 }
324                 else
325                 {
326                         /* They didnt specify a challenge or we don't have m_sha256.so, we use plaintext */
327                         if (this->LinkState == CONNECTING)
328                         {
329                                 this->SendCapabilities(2);
330                                 this->WriteLine("SERVER "+ServerInstance->Config->ServerName+" "+capab->link->SendPass+" 0 "+ServerInstance->Config->GetSID()+" :"+ServerInstance->Config->ServerDesc);
331                         }
332                 }
333
334                 if (reason.length())
335                 {
336                         this->SendError("CAPAB negotiation failed: "+reason);
337                         return false;
338                 }
339         }
340         else if ((params[0] == "MODULES") && (params.size() == 2))
341         {
342                 if (!capab->ModuleList.length())
343                 {
344                         capab->ModuleList = params[1];
345                 }
346                 else
347                 {
348                         capab->ModuleList.push_back(' ');
349                         capab->ModuleList.append(params[1]);
350                 }
351         }
352         else if ((params[0] == "MODSUPPORT") && (params.size() == 2))
353         {
354                 if (!capab->OptModuleList.length())
355                 {
356                         capab->OptModuleList = params[1];
357                 }
358                 else
359                 {
360                         capab->OptModuleList.push_back(' ');
361                         capab->OptModuleList.append(params[1]);
362                 }
363         }
364         else if ((params[0] == "CHANMODES") && (params.size() == 2))
365         {
366                 capab->ChanModes = params[1];
367         }
368         else if ((params[0] == "USERMODES") && (params.size() == 2))
369         {
370                 capab->UserModes = params[1];
371         }
372         else if ((params[0] == "CAPABILITIES") && (params.size() == 2))
373         {
374                 irc::tokenstream capabs(params[1]);
375                 std::string item;
376                 while (capabs.GetToken(item))
377                 {
378                         /* Process each key/value pair */
379                         std::string::size_type equals = item.find('=');
380                         if (equals != std::string::npos)
381                         {
382                                 std::string var = item.substr(0, equals);
383                                 std::string value = item.substr(equals+1, item.length());
384                                 capab->CapKeys[var] = value;
385                         }
386                 }
387         }
388         return true;
389 }