]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/fjoin.cpp
Move lots of spanningtree items to commands
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / fjoin.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 #include "commands.h"
16 #include "treeserver.h"
17 #include "treesocket.h"
18
19 /** FJOIN, almost identical to TS6 SJOIN, except for nicklist handling. */
20 CmdResult CommandFJoin::Handle(const std::vector<std::string>& params, User *srcuser)
21 {
22         SpanningTreeUtilities* Utils = ((ModuleSpanningTree*)(Module*)creator)->Utils;
23         /* 1.1 FJOIN works as follows:
24          *
25          * Each FJOIN is sent along with a timestamp, and the side with the lowest
26          * timestamp 'wins'. From this point on we will refer to this side as the
27          * winner. The side with the higher timestamp loses, from this point on we
28          * will call this side the loser or losing side. This should be familiar to
29          * anyone who's dealt with dreamforge or TS6 before.
30          *
31          * When two sides of a split heal and this occurs, the following things
32          * will happen:
33          *
34          * If the timestamps are exactly equal, both sides merge their privilages
35          * and users, as in InspIRCd 1.0 and ircd2.8. The channels have not been
36          * re-created during a split, this is safe to do.
37          *
38          * If the timestamps are NOT equal, the losing side removes all of its
39          * modes from the channel, before introducing new users into the channel
40          * which are listed in the FJOIN command's parameters. The losing side then
41          * LOWERS its timestamp value of the channel to match that of the winning
42          * side, and the modes of the users of the winning side are merged in with
43          * the losing side.
44          *
45          * The winning side on the other hand will ignore all user modes from the
46          * losing side, so only its own modes get applied. Life is simple for those
47          * who succeed at internets. :-)
48          */
49         if (params.size() < 3)
50                 return CMD_INVALID;
51
52         irc::modestacker modestack(true);                       /* Modes to apply from the users in the user list */
53         User* who = NULL;                                               /* User we are currently checking */
54         std::string channel = params[0];                                /* Channel name, as a string */
55         time_t TS = atoi(params[1].c_str());                            /* Timestamp given to us for remote side */
56         irc::tokenstream users((params.size() > 3) ? params[params.size() - 1] : "");   /* users from the user list */
57         bool apply_other_sides_modes = true;                            /* True if we are accepting the other side's modes */
58         Channel* chan = ServerInstance->FindChan(channel);              /* The channel we're sending joins to */
59         bool created = !chan;                                           /* True if the channel doesnt exist here yet */
60         std::string item;                                               /* One item in the list of nicks */
61
62         TreeSocket* src_socket = Utils->FindServer(srcuser->server)->GetRoute()->GetSocket();
63
64         if (!TS)
65         {
66                 ServerInstance->Logs->Log("m_spanningtree",DEFAULT,"*** BUG? *** TS of 0 sent to FJOIN. Are some services authors smoking craq, or is it 1970 again?. Dropped.");
67                 ServerInstance->SNO->WriteToSnoMask('d', "WARNING: The server %s is sending FJOIN with a TS of zero. Total craq. Command was dropped.", srcuser->server.c_str());
68                 return CMD_INVALID;
69         }
70
71         if (created)
72         {
73                 chan = new Channel(channel, TS);
74                 ServerInstance->SNO->WriteToSnoMask('d', "Creation FJOIN recieved for %s, timestamp: %lu", chan->name.c_str(), (unsigned long)TS);
75         }
76         else
77         {
78                 time_t ourTS = chan->age;
79
80                 if (TS != ourTS)
81                         ServerInstance->SNO->WriteToSnoMask('d', "Merge FJOIN recieved for %s, ourTS: %lu, TS: %lu, difference: %lu",
82                                 chan->name.c_str(), (unsigned long)ourTS, (unsigned long)TS, (unsigned long)(ourTS - TS));
83                 /* If our TS is less than theirs, we dont accept their modes */
84                 if (ourTS < TS)
85                 {
86                         ServerInstance->SNO->WriteToSnoMask('d', "NOT Applying modes from other side");
87                         apply_other_sides_modes = false;
88                 }
89                 else if (ourTS > TS)
90                 {
91                         /* Our TS greater than theirs, clear all our modes from the channel, accept theirs. */
92                         ServerInstance->SNO->WriteToSnoMask('d', "Removing our modes, accepting remote");
93                         parameterlist param_list;
94                         if (Utils->AnnounceTSChange && chan)
95                                 chan->WriteChannelWithServ(ServerInstance->Config->ServerName, "NOTICE %s :TS for %s changed from %lu to %lu", chan->name.c_str(), chan->name.c_str(), (unsigned long) ourTS, (unsigned long) TS);
96                         ourTS = TS;
97                         chan->age = TS;
98                         param_list.push_back(channel);
99                         this->RemoveStatus(ServerInstance->FakeClient, param_list);
100                 }
101                 // The silent case here is ourTS == TS, we don't need to remove modes here, just to merge them later on.
102         }
103
104         /* First up, apply their modes if they won the TS war */
105         if (apply_other_sides_modes)
106         {
107                 unsigned int idx = 2;
108                 std::vector<std::string> modelist;
109
110                 // Mode parser needs to know what channel to act on.
111                 modelist.push_back(params[0]);
112
113                 /* Remember, params[params.size() - 1] is nicklist, and we don't want to apply *that* */
114                 for (idx = 2; idx != (params.size() - 1); idx++)
115                 {
116                         modelist.push_back(params[idx]);
117                 }
118
119                 ServerInstance->SendMode(modelist, srcuser);
120         }
121
122         /* Now, process every 'modes,nick' pair */
123         while (users.GetToken(item))
124         {
125                 const char* usr = item.c_str();
126                 if (usr && *usr)
127                 {
128                         const char* unparsedmodes = usr;
129                         std::string modes;
130
131
132                         /* Iterate through all modes for this user and check they are valid. */
133                         while ((*unparsedmodes) && (*unparsedmodes != ','))
134                         {
135                                 ModeHandler *mh = ServerInstance->Modes->FindMode(*unparsedmodes, MODETYPE_CHANNEL);
136                                 if (mh)
137                                         modes += *unparsedmodes;
138                                 else
139                                         return CMD_INVALID;
140
141                                 usr++;
142                                 unparsedmodes++;
143                         }
144
145                         /* Advance past the comma, to the nick */
146                         usr++;
147
148                         /* Check the user actually exists */
149                         who = ServerInstance->FindUUID(usr);
150                         if (who)
151                         {
152                                 /* Check that the user's 'direction' is correct */
153                                 TreeServer* route_back_again = Utils->BestRouteTo(who->server);
154                                 if ((!route_back_again) || (route_back_again->GetSocket() != src_socket))
155                                         continue;
156
157                                 /* Add any modes this user had to the mode stack */
158                                 for (std::string::iterator x = modes.begin(); x != modes.end(); ++x)
159                                         modestack.Push(*x, who->nick);
160
161                                 Channel::JoinUser(who, channel.c_str(), true, "", route_back_again->bursting, TS);
162                         }
163                         else
164                         {
165                                 ServerInstance->Logs->Log("m_spanningtree",SPARSE, "Ignored nonexistant user %s in fjoin to %s (probably quit?)", usr, channel.c_str());
166                                 continue;
167                         }
168                 }
169         }
170
171         /* Flush mode stacker if we lost the FJOIN or had equal TS */
172         if (apply_other_sides_modes)
173         {
174                 parameterlist stackresult;
175                 stackresult.push_back(channel);
176
177                 while (modestack.GetStackedLine(stackresult))
178                 {
179                         ServerInstance->SendMode(stackresult, srcuser);
180                         stackresult.erase(stackresult.begin() + 1, stackresult.end());
181                 }
182         }
183         return CMD_SUCCESS;
184 }
185
186 void CommandFJoin::RemoveStatus(User* srcuser, parameterlist &params)
187 {
188         if (params.size() < 1)
189                 return;
190
191         Channel* c = ServerInstance->FindChan(params[0]);
192
193         if (c)
194         {
195                 irc::modestacker stack(false);
196                 parameterlist stackresult;
197                 stackresult.push_back(c->name);
198
199                 for (char modeletter = 'A'; modeletter <= 'z'; ++modeletter)
200                 {
201                         ModeHandler* mh = ServerInstance->Modes->FindMode(modeletter, MODETYPE_CHANNEL);
202
203                         /* Passing a pointer to a modestacker here causes the mode to be put onto the mode stack,
204                          * rather than applied immediately. Module unloads require this to be done immediately,
205                          * for this function we require tidyness instead. Fixes bug #493
206                          */
207                         if (mh)
208                                 mh->RemoveMode(c, &stack);
209                 }
210
211                 while (stack.GetStackedLine(stackresult))
212                 {
213                         ServerInstance->SendMode(stackresult, srcuser);
214                         stackresult.erase(stackresult.begin() + 1, stackresult.end());
215                 }
216         }
217 }
218