]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/fjoin.cpp
99f174a9787bf4282b9e3a54b4facafbe2d9fc98
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / fjoin.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 Dennis Friis <peavey@inspircd.org>
7  *   Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc>
8  *
9  * This file is part of InspIRCd.  InspIRCd is free software: you can
10  * redistribute it and/or modify it under the terms of the GNU General Public
11  * License as published by the Free Software Foundation, version 2.
12  *
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22
23 #include "inspircd.h"
24 #include "commands.h"
25 #include "treeserver.h"
26 #include "treesocket.h"
27
28 /** FJOIN, almost identical to TS6 SJOIN, except for nicklist handling. */
29 CmdResult CommandFJoin::Handle(User* srcuser, std::vector<std::string>& params)
30 {
31         /* 1.1+ FJOIN works as follows:
32          *
33          * Each FJOIN is sent along with a timestamp, and the side with the lowest
34          * timestamp 'wins'. From this point on we will refer to this side as the
35          * winner. The side with the higher timestamp loses, from this point on we
36          * will call this side the loser or losing side. This should be familiar to
37          * anyone who's dealt with dreamforge or TS6 before.
38          *
39          * When two sides of a split heal and this occurs, the following things
40          * will happen:
41          *
42          * If the timestamps are exactly equal, both sides merge their privilages
43          * and users, as in InspIRCd 1.0 and ircd2.8. The channels have not been
44          * re-created during a split, this is safe to do.
45          *
46          * If the timestamps are NOT equal, the losing side removes all of its
47          * modes from the channel, before introducing new users into the channel
48          * which are listed in the FJOIN command's parameters. The losing side then
49          * LOWERS its timestamp value of the channel to match that of the winning
50          * side, and the modes of the users of the winning side are merged in with
51          * the losing side.
52          *
53          * The winning side on the other hand will ignore all user modes from the
54          * losing side, so only its own modes get applied. Life is simple for those
55          * who succeed at internets. :-)
56          *
57          * Syntax:
58          * :<sid> FJOIN <chan> <TS> <modes> :[<member> [<member> ...]]
59          * The last parameter is a list consisting of zero or more channel members
60          * (permanent channels may have zero users). Each entry on the list is in the
61          * following format:
62          * [[<modes>,]<uuid>[:<membid>]
63          * <modes> is a concatenation of the mode letters the user has on the channel
64          * (e.g.: "ov" if the user is opped and voiced). The order of the mode letters
65          * are not important but if a server ecounters an unknown mode letter, it will
66          * drop the link to avoid desync.
67          *
68          * InspIRCd 2.0 and older required a comma before the uuid even if the user
69          * had no prefix modes on the channel, InspIRCd 2.2 and later does not require
70          * a comma in this case anymore.
71          *
72          * <membid> is a positive integer representing the id of the membership.
73          * If not present (in FJOINs coming from pre-1205 servers), 0 is assumed.
74          *
75          */
76
77         time_t TS = ServerCommand::ExtractTS(params[1]);
78
79         const std::string& channel = params[0];
80         Channel* chan = ServerInstance->FindChan(channel);
81         bool apply_other_sides_modes = true;
82
83         if (!chan)
84         {
85                 chan = new Channel(channel, TS);
86         }
87         else
88         {
89                 time_t ourTS = chan->age;
90                 if (TS != ourTS)
91                 {
92                         ServerInstance->SNO->WriteToSnoMask('d', "Merge FJOIN received for %s, ourTS: %lu, TS: %lu, difference: %lu",
93                                 chan->name.c_str(), (unsigned long)ourTS, (unsigned long)TS, (unsigned long)(ourTS - TS));
94                         /* If our TS is less than theirs, we dont accept their modes */
95                         if (ourTS < TS)
96                         {
97                                 apply_other_sides_modes = false;
98                         }
99                         else if (ourTS > TS)
100                         {
101                                 // Our TS is greater than theirs, remove all modes, extensions, etc. from the channel
102                                 LowerTS(chan, TS, channel);
103
104                                 // XXX: If the channel does not exist in the chan hash at this point, create it so the remote modes can be applied on it.
105                                 // This happens to 0-user permanent channels on the losing side, because those are removed (from the chan hash, then
106                                 // deleted later) as soon as the permchan mode is removed from them.
107                                 if (ServerInstance->FindChan(channel) == NULL)
108                                 {
109                                         chan = new Channel(channel, TS);
110                                 }
111                         }
112                 }
113         }
114
115         /* First up, apply their channel modes if they won the TS war */
116         Modes::ChangeList modechangelist;
117         if (apply_other_sides_modes)
118         {
119                 std::vector<std::string>::const_iterator paramit = params.begin() + 3;
120                 const std::vector<std::string>::const_iterator lastparamit = ((params.size() > 3) ? (params.end() - 1) : params.end());
121                 for (std::string::const_iterator i = params[2].begin(); i != params[2].end(); ++i)
122                 {
123                         ModeHandler* mh = ServerInstance->Modes->FindMode(*i, MODETYPE_CHANNEL);
124                         if (!mh)
125                                 continue;
126
127                         std::string modeparam;
128                         if ((paramit != lastparamit) && (mh->GetNumParams(true)))
129                         {
130                                 modeparam = *paramit;
131                                 ++paramit;
132                         }
133
134                         modechangelist.push_add(mh, modeparam);
135                 }
136
137                 ServerInstance->Modes->Process(srcuser, chan, NULL, modechangelist, ModeParser::MODE_LOCALONLY | ModeParser::MODE_MERGE);
138                 // Reuse for prefix modes
139                 modechangelist.clear();
140         }
141
142         TreeServer* const sourceserver = TreeServer::Get(srcuser);
143
144         /* Now, process every 'modes,uuid' pair */
145         irc::tokenstream users(params.back());
146         std::string item;
147         Modes::ChangeList* modechangelistptr = (apply_other_sides_modes ? &modechangelist : NULL);
148         while (users.GetToken(item))
149         {
150                 ProcessModeUUIDPair(item, sourceserver, chan, modechangelistptr);
151         }
152
153         // Set prefix modes on their users if we lost the FJOIN or had equal TS
154         if (apply_other_sides_modes)
155                 ServerInstance->Modes->Process(srcuser, chan, NULL, modechangelist, ModeParser::MODE_LOCALONLY);
156
157         return CMD_SUCCESS;
158 }
159
160 void CommandFJoin::ProcessModeUUIDPair(const std::string& item, TreeServer* sourceserver, Channel* chan, Modes::ChangeList* modechangelist)
161 {
162         std::string::size_type comma = item.find(',');
163
164         // Comma not required anymore if the user has no modes
165         const std::string::size_type ubegin = (comma == std::string::npos ? 0 : comma+1);
166         std::string uuid(item, ubegin, UIDGenerator::UUID_LENGTH);
167         User* who = ServerInstance->FindUUID(uuid);
168         if (!who)
169         {
170                 // Probably KILLed, ignore
171                 return;
172         }
173
174         TreeSocket* src_socket = sourceserver->GetSocket();
175         /* Check that the user's 'direction' is correct */
176         TreeServer* route_back_again = TreeServer::Get(who);
177         if (route_back_again->GetSocket() != src_socket)
178         {
179                 return;
180         }
181
182         /* Check if the user received at least one mode */
183         if ((modechangelist) && (comma > 0) && (comma != std::string::npos))
184         {
185                 /* Iterate through the modes and see if they are valid here, if so, apply */
186                 std::string::const_iterator commait = item.begin()+comma;
187                 for (std::string::const_iterator i = item.begin(); i != commait; ++i)
188                 {
189                         ModeHandler* mh = ServerInstance->Modes->FindMode(*i, MODETYPE_CHANNEL);
190                         if (!mh)
191                                 throw ProtocolException("Unrecognised mode '" + std::string(1, *i) + "'");
192
193                         /* Add any modes this user had to the mode stack */
194                         modechangelist->push_add(mh, who->nick);
195                 }
196         }
197
198         Membership* memb = chan->ForceJoin(who, NULL, sourceserver->IsBursting());
199         if (!memb)
200                 return;
201
202         // Assign the id to the new Membership
203         Membership::Id membid = 0;
204         const std::string::size_type colon = item.rfind(':');
205         if (colon != std::string::npos)
206                 membid = Membership::IdFromString(item.substr(colon+1));
207         memb->id = membid;
208 }
209
210 void CommandFJoin::RemoveStatus(Channel* c)
211 {
212         Modes::ChangeList changelist;
213
214         const ModeParser::ModeHandlerMap& mhs = ServerInstance->Modes->GetModes(MODETYPE_CHANNEL);
215         for (ModeParser::ModeHandlerMap::const_iterator i = mhs.begin(); i != mhs.end(); ++i)
216         {
217                 ModeHandler* mh = i->second;
218
219                 /* Passing a pointer to a modestacker here causes the mode to be put onto the mode stack,
220                  * rather than applied immediately. Module unloads require this to be done immediately,
221                  * for this function we require tidyness instead. Fixes bug #493
222                  */
223                 mh->RemoveMode(c, changelist);
224         }
225
226         ServerInstance->Modes->Process(ServerInstance->FakeClient, c, NULL, changelist, ModeParser::MODE_LOCALONLY);
227 }
228
229 void CommandFJoin::LowerTS(Channel* chan, time_t TS, const std::string& newname)
230 {
231         if (Utils->AnnounceTSChange)
232                 chan->WriteChannelWithServ(ServerInstance->Config->ServerName, "NOTICE %s :TS for %s changed from %lu to %lu", chan->name.c_str(), newname.c_str(), (unsigned long) chan->age, (unsigned long) TS);
233
234         // While the name is equal in case-insensitive compare, it might differ in case; use the remote version
235         chan->name = newname;
236         chan->age = TS;
237
238         // Remove all pending invites
239         chan->ClearInvites();
240
241         // Clear all modes
242         CommandFJoin::RemoveStatus(chan);
243
244         // Unset all extensions
245         chan->FreeAllExtItems();
246
247         // Clear the topic, if it isn't empty then send a topic change message to local users
248         if (!chan->topic.empty())
249         {
250                 chan->topic.clear();
251                 chan->WriteChannelWithServ(ServerInstance->Config->ServerName, "TOPIC %s :", chan->name.c_str());
252         }
253         chan->setby.clear();
254         chan->topicset = 0;
255 }
256
257 CommandFJoin::Builder::Builder(Channel* chan)
258         : CmdBuilder("FJOIN")
259 {
260         push(chan->name).push_int(chan->age).push_raw(" +");
261         pos = str().size();
262         push_raw(chan->ChanModes(true)).push_raw(" :");
263 }
264
265 void CommandFJoin::Builder::add(Membership* memb)
266 {
267         push_raw(memb->modes).push_raw(',').push_raw(memb->user->uuid);
268         push_raw(':').push_raw_int(memb->id);
269         push_raw(' ');
270 }
271
272 bool CommandFJoin::Builder::has_room(Membership* memb) const
273 {
274         return ((str().size() + memb->modes.size() + UIDGenerator::UUID_LENGTH + 2 + membid_max_digits + 1) <= maxline);
275 }
276
277 void CommandFJoin::Builder::clear()
278 {
279         content.erase(pos);
280         push_raw(" :");
281 }
282
283 const std::string& CommandFJoin::Builder::finalize()
284 {
285         if (*content.rbegin() == ' ')
286                 content.erase(content.size()-1);
287         return str();
288 }