]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/compat.cpp
m_spanningtree Don't send needless BURST after introducing a server
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / compat.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
5  *
6  * This file is part of InspIRCd.  InspIRCd is free software: you can
7  * redistribute it and/or modify it under the terms of the GNU General Public
8  * License as published by the Free Software Foundation, version 2.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
13  * details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19
20 #include "inspircd.h"
21 #include "main.h"
22 #include "treesocket.h"
23 #include "treeserver.h"
24
25 static std::string newline("\n");
26
27 void TreeSocket::WriteLineNoCompat(const std::string& line)
28 {
29         ServerInstance->Logs->Log(MODNAME, LOG_RAWIO, "S[%d] O %s", this->GetFd(), line.c_str());
30         this->WriteData(line);
31         this->WriteData(newline);
32 }
33
34 void TreeSocket::WriteLine(const std::string& original_line)
35 {
36         if (LinkState == CONNECTED)
37         {
38                 if (original_line.c_str()[0] != ':')
39                 {
40                         ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "Sending line without server prefix!");
41                         WriteLine(":" + ServerInstance->Config->GetSID() + " " + original_line);
42                         return;
43                 }
44                 if (proto_version != ProtocolVersion)
45                 {
46                         std::string line = original_line;
47                         std::string::size_type a = line.find(' ');
48                         std::string::size_type b = line.find(' ', a + 1);
49                         std::string command = line.substr(a + 1, b-a-1);
50                         // now try to find a translation entry
51                         // TODO a more efficient lookup method will be needed later
52                         if (proto_version < 1205)
53                         {
54                                 if (command == "IJOIN")
55                                 {
56                                         // Convert
57                                         // :<uid> IJOIN <chan> <membid> [<ts> [<flags>]]
58                                         // to
59                                         // :<sid> FJOIN <chan> <ts> + [<flags>],<uuid>
60                                         std::string::size_type c = line.find(' ', b + 1);
61                                         if (c == std::string::npos)
62                                                 return;
63
64                                         std::string::size_type d = line.find(' ', c + 1);
65                                         // Erase membership id first
66                                         line.erase(c, d-c);
67                                         if (d == std::string::npos)
68                                         {
69                                                 // No TS or modes in the command
70                                                 // :22DAAAAAB IJOIN #chan
71                                                 const std::string channame = line.substr(b+1, c-b-1);
72                                                 Channel* chan = ServerInstance->FindChan(channame);
73                                                 if (!chan)
74                                                         return;
75
76                                                 line.push_back(' ');
77                                                 line.append(ConvToStr(chan->age));
78                                                 line.append(" + ,");
79                                         }
80                                         else
81                                         {
82                                                 d = line.find(' ', c + 1);
83                                                 if (d == std::string::npos)
84                                                 {
85                                                         // TS present, no modes
86                                                         // :22DAAAAAC IJOIN #chan 12345
87                                                         line.append(" + ,");
88                                                 }
89                                                 else
90                                                 {
91                                                         // Both TS and modes are present
92                                                         // :22DAAAAAC IJOIN #chan 12345 ov
93                                                         std::string::size_type e = line.find(' ', d + 1);
94                                                         if (e != std::string::npos)
95                                                                 line.erase(e);
96
97                                                         line.insert(d, " +");
98                                                         line.push_back(',');
99                                                 }
100                                         }
101
102                                         // Move the uuid to the end and replace the I with an F
103                                         line.append(line.substr(1, 9));
104                                         line.erase(4, 6);
105                                         line[5] = 'F';
106                                 }
107                                 else if (command == "RESYNC")
108                                         return;
109                                 else if (command == "METADATA")
110                                 {
111                                         // Drop TS for channel METADATA, translate METADATA operquit into an OPERQUIT command
112                                         // :sid METADATA #target TS extname ...
113                                         //     A        B       C  D
114                                         if (b == std::string::npos)
115                                                 return;
116
117                                         std::string::size_type c = line.find(' ', b + 1);
118                                         if (c == std::string::npos)
119                                                 return;
120
121                                         std::string::size_type d = line.find(' ', c + 1);
122                                         if (d == std::string::npos)
123                                                 return;
124
125                                         if (line[b + 1] == '#')
126                                         {
127                                                 // We're sending channel metadata
128                                                 line.erase(c, d-c);
129                                         }
130                                         else if (!line.compare(c, d-c, " operquit", 9))
131                                         {
132                                                 // ":22D METADATA 22DAAAAAX operquit :message" -> ":22DAAAAAX OPERQUIT :message"
133                                                 line = ":" + line.substr(b+1, c-b) + "OPERQUIT" + line.substr(d);
134                                         }
135                                 }
136                                 else if (command == "FTOPIC")
137                                 {
138                                         // Drop channel TS for FTOPIC
139                                         // :sid FTOPIC #target TS TopicTS setter :newtopic
140                                         //     A      B       C  D       E      F
141                                         // :uid FTOPIC #target TS TopicTS :newtopic
142                                         //     A      B       C  D       E
143                                         if (b == std::string::npos)
144                                                 return;
145
146                                         std::string::size_type c = line.find(' ', b + 1);
147                                         if (c == std::string::npos)
148                                                 return;
149
150                                         std::string::size_type d = line.find(' ', c + 1);
151                                         if (d == std::string::npos)
152                                                 return;
153
154                                         std::string::size_type e = line.find(' ', d + 1);
155                                         if (line[e+1] == ':')
156                                         {
157                                                 line.erase(c, e-c);
158                                                 line.erase(a+1, 1);
159                                         }
160                                         else
161                                                 line.erase(c, d-c);
162                                 }
163                                 else if ((command == "PING") || (command == "PONG"))
164                                 {
165                                         // :22D PING 20D
166                                         if (line.length() < 13)
167                                                 return;
168
169                                         // Insert the source SID (and a space) between the command and the first parameter
170                                         line.insert(10, line.substr(1, 4));
171                                 }
172                                 else if (command == "OPERTYPE")
173                                 {
174                                         std::string::size_type colon = line.find(':', b);
175                                         if (colon != std::string::npos)
176                                         {
177                                                 for (std::string::iterator i = line.begin()+colon; i != line.end(); ++i)
178                                                 {
179                                                         if (*i == ' ')
180                                                                 *i = '_';
181                                                 }
182                                                 line.erase(colon, 1);
183                                         }
184                                 }
185                                 else if (command == "INVITE")
186                                 {
187                                         // :22D INVITE 22DAAAAAN #chan TS ExpirationTime
188                                         //     A      B         C     D  E
189                                         if (b == std::string::npos)
190                                                 return;
191
192                                         std::string::size_type c = line.find(' ', b + 1);
193                                         if (c == std::string::npos)
194                                                 return;
195
196                                         std::string::size_type d = line.find(' ', c + 1);
197                                         if (d == std::string::npos)
198                                                 return;
199
200                                         std::string::size_type e = line.find(' ', d + 1);
201                                         // If there is no expiration time then everything will be erased from 'd'
202                                         line.erase(d, e-d);
203                                 }
204                                 else if (command == "FJOIN")
205                                 {
206                                         // Strip membership ids
207                                         // :22D FJOIN #chan 1234 +f 4:3 :o,22DAAAAAB:15 o,22DAAAAAA:15
208                                         // :22D FJOIN #chan 1234 +f 4:3 o,22DAAAAAB:15
209                                         // :22D FJOIN #chan 1234 +Pf 4:3 :
210
211                                         // If the last parameter is prefixed by a colon then it's a userlist which may have 0 or more users;
212                                         // if it isn't, then it is a single member
213                                         std::string::size_type spcolon = line.find(" :");
214                                         if (spcolon != std::string::npos)
215                                         {
216                                                 spcolon++;
217                                                 // Loop while there is a ':' in the userlist, this is never true if the channel is empty
218                                                 std::string::size_type pos = std::string::npos;
219                                                 while ((pos = line.rfind(':', pos-1)) > spcolon)
220                                                 {
221                                                         // Find the next space after the ':'
222                                                         std::string::size_type sp = line.find(' ', pos);
223                                                         // Erase characters between the ':' and the next space after it, including the ':' but not the space;
224                                                         // if there is no next space, everything will be erased between pos and the end of the line
225                                                         line.erase(pos, sp-pos);
226                                                 }
227                                         }
228                                         else
229                                         {
230                                                 // Last parameter is a single member
231                                                 std::string::size_type sp = line.rfind(' ');
232                                                 std::string::size_type colon = line.find(':', sp);
233                                                 line.erase(colon);
234                                         }
235                                 }
236                                 else if (command == "KICK")
237                                 {
238                                         // Strip membership id if the KICK has one
239                                         if (b == std::string::npos)
240                                                 return;
241
242                                         std::string::size_type c = line.find(' ', b + 1);
243                                         if (c == std::string::npos)
244                                                 return;
245
246                                         std::string::size_type d = line.find(' ', c + 1);
247                                         if ((d < line.size()-1) && (original_line[d+1] != ':'))
248                                         {
249                                                 // There is a third parameter which doesn't begin with a colon, erase it
250                                                 std::string::size_type e = line.find(' ', d + 1);
251                                                 line.erase(d, e-d);
252                                         }
253                                 }
254                                 else if (command == "SINFO")
255                                 {
256                                         // :22D SINFO version :InspIRCd-2.2
257                                         //     A     B       C
258                                         std::string::size_type c = line.find(' ', b + 1);
259                                         if (c == std::string::npos)
260                                                 return;
261
262                                         // Only translating SINFO version, discard everything else
263                                         if (line.compare(b, 9, " version ", 9))
264                                                 return;
265
266                                         line = line.substr(0, 5) + "VERSION" + line.substr(c);
267                                 }
268                                 else if (command == "SERVER")
269                                 {
270                                         // :001 SERVER inspircd.test 002 [<anything> ...] :gecos
271                                         //     A      B             C
272                                         std::string::size_type c = line.find(' ', b + 1);
273                                         if (c == std::string::npos)
274                                                 return;
275
276                                         std::string::size_type d = c + 4;
277                                         std::string::size_type spcolon = line.find(" :", d);
278                                         if (spcolon == std::string::npos)
279                                                 return;
280
281                                         line.erase(d, spcolon-d);
282                                         line.insert(c, " * 0");
283
284                                         if (burstsent)
285                                         {
286                                                 WriteLineNoCompat(line);
287
288                                                 // Synthesize a :<newserver> BURST <time> message
289                                                 spcolon = line.find(" :");
290                                                 line = CmdBuilder(line.substr(spcolon-3, 3), "BURST").push_int(ServerInstance->Time()).str();
291                                         }
292                                 }
293                         }
294                         WriteLineNoCompat(line);
295                         return;
296                 }
297         }
298
299         WriteLineNoCompat(original_line);
300 }
301
302 namespace
303 {
304         bool InsertCurrentChannelTS(std::vector<std::string>& params, unsigned int chanindex = 0, unsigned int pos = 1)
305         {
306                 Channel* chan = ServerInstance->FindChan(params[chanindex]);
307                 if (!chan)
308                         return false;
309
310                 // Insert the current TS of the channel after the pos-th parameter
311                 params.insert(params.begin()+pos, ConvToStr(chan->age));
312                 return true;
313         }
314 }
315
316 bool TreeSocket::PreProcessOldProtocolMessage(User*& who, std::string& cmd, std::vector<std::string>& params)
317 {
318         if ((cmd == "METADATA") && (params.size() >= 3) && (params[0][0] == '#'))
319         {
320                 // :20D METADATA #channel extname :extdata
321                 return InsertCurrentChannelTS(params);
322         }
323         else if ((cmd == "FTOPIC") && (params.size() >= 4))
324         {
325                 // :20D FTOPIC #channel 100 Attila :topic text
326                 return InsertCurrentChannelTS(params);
327         }
328         else if ((cmd == "PING") || (cmd == "PONG"))
329         {
330                 if (params.size() == 1)
331                 {
332                         // If it's a PING with 1 parameter, reply with a PONG now, if it's a PONG with 1 parameter (weird), do nothing
333                         if (cmd[1] == 'I')
334                                 this->WriteData(":" + ServerInstance->Config->GetSID() + " PONG " + params[0] + newline);
335
336                         // Don't process this message further
337                         return false;
338                 }
339
340                 // :20D PING 20D 22D
341                 // :20D PONG 20D 22D
342                 // Drop the first parameter
343                 params.erase(params.begin());
344
345                 // If the target is a server name, translate it to a SID
346                 if (!InspIRCd::IsSID(params[0]))
347                 {
348                         TreeServer* server = Utils->FindServer(params[0]);
349                         if (!server)
350                         {
351                                 // We've no idea what this is, log and stop processing
352                                 ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "Received a " + cmd + " with an unknown target: \"" + params[0] + "\", command dropped");
353                                 return false;
354                         }
355
356                         params[0] = server->GetID();
357                 }
358         }
359         else if ((cmd == "GLINE") || (cmd == "KLINE") || (cmd == "ELINE") || (cmd == "ZLINE") || (cmd == "QLINE"))
360         {
361                 // Fix undocumented protocol usage: translate GLINE, ZLINE, etc. into ADDLINE or DELLINE
362                 if ((params.size() != 1) && (params.size() != 3))
363                         return false;
364
365                 parameterlist p;
366                 p.push_back(cmd.substr(0, 1));
367                 p.push_back(params[0]);
368
369                 if (params.size() == 3)
370                 {
371                         cmd = "ADDLINE";
372                         p.push_back(who->nick);
373                         p.push_back(ConvToStr(ServerInstance->Time()));
374                         p.push_back(ConvToStr(InspIRCd::Duration(params[1])));
375                         p.push_back(params[2]);
376                 }
377                 else
378                         cmd = "DELLINE";
379
380                 params.swap(p);
381         }
382         else if (cmd == "SVSMODE")
383         {
384                 cmd = "MODE";
385         }
386         else if (cmd == "OPERQUIT")
387         {
388                 // Translate OPERQUIT into METADATA
389                 if (params.empty())
390                         return false;
391
392                 cmd = "METADATA";
393                 params.insert(params.begin(), who->uuid);
394                 params.insert(params.begin()+1, "operquit");
395                 who = MyRoot->ServerUser;
396         }
397         else if ((cmd == "TOPIC") && (params.size() >= 2))
398         {
399                 // :20DAAAAAC TOPIC #chan :new topic
400                 cmd = "FTOPIC";
401                 if (!InsertCurrentChannelTS(params))
402                         return false;
403
404                 params.insert(params.begin()+2, ConvToStr(ServerInstance->Time()));
405         }
406         else if (cmd == "MODENOTICE")
407         {
408                 // MODENOTICE is always supported by 2.0 but it's optional in 2.2.
409                 params.insert(params.begin(), "*");
410                 params.insert(params.begin()+1, cmd);
411                 cmd = "ENCAP";
412         }
413         else if (cmd == "RULES")
414         {
415                 return false;
416         }
417         else if (cmd == "INVITE")
418         {
419                 // :20D INVITE 22DAAABBB #chan
420                 // :20D INVITE 22DAAABBB #chan 123456789
421                 // Insert channel timestamp after the channel name; the 3rd parameter, if there, is the invite expiration time
422                 return InsertCurrentChannelTS(params, 1, 2);
423         }
424         else if (cmd == "VERSION")
425         {
426                 // :20D VERSION :InspIRCd-2.0
427                 // change to
428                 // :20D SINFO version :InspIRCd-2.0
429                 cmd = "SINFO";
430                 params.insert(params.begin(), "version");
431         }
432         else if (cmd == "JOIN")
433         {
434                 // 2.0 allows and forwards legacy JOINs but we don't, so translate them to FJOINs before processing
435                 if ((params.size() != 1) || (IS_SERVER(who)))
436                         return false; // Huh?
437
438                 cmd = "FJOIN";
439                 Channel* chan = ServerInstance->FindChan(params[0]);
440                 params.push_back(ConvToStr(chan ? chan->age : ServerInstance->Time()));
441                 params.push_back("+");
442                 params.push_back(",");
443                 params.back().append(who->uuid);
444                 who = TreeServer::Get(who)->ServerUser;
445         }
446         else if ((cmd == "FMODE") && (params.size() >= 2))
447         {
448                 // Translate user mode changes with timestamp to MODE
449                 if (params[0][0] != '#')
450                 {
451                         User* user = ServerInstance->FindUUID(params[0]);
452                         if (!user)
453                                 return false;
454
455                         // Emulate the old nonsensical behavior
456                         if (user->age < ServerCommand::ExtractTS(params[1]))
457                                 return false;
458
459                         cmd = "MODE";
460                         params.erase(params.begin()+1);
461                 }
462         }
463         else if ((cmd == "SERVER") && (params.size() > 4))
464         {
465                 // This does not affect the initial SERVER line as it is sent before the link state is CONNECTED
466                 // :20D SERVER <name> * 0 <sid> <desc>
467                 // change to
468                 // :20D SERVER <name> <sid> <desc>
469
470                 params[1].swap(params[3]);
471                 params.erase(params.begin()+2, params.begin()+4);
472         }
473         else if (cmd == "BURST")
474         {
475                 // A server is introducing another one, drop unnecessary BURST
476                 return false;
477         }
478
479         return true; // Passthru
480 }