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