]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/fjoin.cpp
Update comment that says we dont send simplemodes in FJOIN, we do now.
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / fjoin.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/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         time_t ourTS = chan ? chan->age : ServerInstance->Time()+600;   /* The TS of our side of the link */
64         bool created = !chan;                                           /* True if the channel doesnt exist here yet */
65         std::string item;                                               /* One item in the list of nicks */
66
67         if (params.size() > 3)
68                 params[params.size() - 1] = ":" + params[params.size() - 1];
69
70         Utils->DoOneToAllButSender(source,"FJOIN",params,source);
71
72         if (!TS)
73         {
74                 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.");
75                 ServerInstance->SNO->WriteToSnoMask('d', "WARNING: The server %s is sending FJOIN with a TS of zero. Total craq. Command was dropped.", source.c_str());
76                 return true;
77         }
78
79         if (created)
80                 chan = new Channel(ServerInstance, channel, ourTS);
81
82         /* If our TS is less than theirs, we dont accept their modes */
83         if (ourTS < TS)
84                 apply_other_sides_modes = false;
85
86         /* Our TS greater than theirs, clear all our modes from the channel, accept theirs. */
87         if (ourTS > TS)
88         {
89                 std::deque<std::string> param_list;
90                 if (Utils->AnnounceTSChange && chan)
91                         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);
92                 ourTS = TS;
93                 if (!created)
94                 {
95                         chan->age = TS;
96                         param_list.push_back(channel);
97                         this->RemoveStatus(ServerInstance->Config->GetSID(), param_list);
98                 }
99         }
100
101         /* First up, apply their modes if they won the TS war */
102         if (apply_other_sides_modes)
103         {
104                 unsigned int idx = 2;
105                 std::vector<std::string> modelist;
106
107                 // Mode parser needs to know what channel to act on.
108                 modelist.push_back(params[0]);
109
110                 /* Remember, params[params.size() - 1] is nicklist, and we don't want to apply *that* */
111                 for (idx = 2; idx != (params.size() - 1); idx++)
112                 {
113                         modelist.push_back(params[idx]);
114                 }
115
116                 this->ServerInstance->SendMode(modelist, this->ServerInstance->FakeClient);
117         }
118
119         /* Now, process every 'modes,nick' pair */
120         while (users.GetToken(item))
121         {
122                 const char* usr = item.c_str();
123                 if (usr && *usr)
124                 {
125                         const char* unparsedmodes = usr;
126                         std::string modes;
127
128
129                         /* Iterate through all modes for this user and check they are valid. */
130                         while ((*unparsedmodes) && (*unparsedmodes != ','))
131                         {
132                                 ModeHandler *mh = ServerInstance->Modes->FindMode(*unparsedmodes, MODETYPE_CHANNEL);
133                                 if (mh)
134                                         modes += *unparsedmodes;
135                                 else
136                                 {
137                                         this->SendError(std::string("Unknown status mode '")+(*unparsedmodes)+"' in FJOIN");
138                                         return false;
139                                 }
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 = this->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() != this))
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(this->ServerInstance, who, channel.c_str(), true, "", true, 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                 std::deque<std::string> stackresult;
175                 std::vector<std::string> mode_junk;
176                 mode_junk.push_back(channel);
177
178                 while (modestack.GetStackedLine(stackresult))
179                 {
180                         for (size_t j = 0; j < stackresult.size(); j++)
181                         {
182                                 mode_junk.push_back(stackresult[j]);
183                         }
184                         ServerInstance->SendMode(mode_junk, ServerInstance->FakeClient);
185                 }
186         }
187
188         return true;
189 }
190
191 /** TODO: This creates a total mess of output and needs to really use irc::modestacker.
192  */
193 bool TreeSocket::RemoveStatus(const std::string &prefix, std::deque<std::string> &params)
194 {
195         if (params.size() < 1)
196                 return true;
197
198         Channel* c = ServerInstance->FindChan(params[0]);
199
200         if (c)
201         {
202                 irc::modestacker stack(ServerInstance, false);
203                 std::deque<std::string> stackresult;
204                 std::vector<std::string> mode_junk;
205                 mode_junk.push_back(c->name);
206
207                 for (char modeletter = 'A'; modeletter <= 'z'; ++modeletter)
208                 {
209                         ModeHandler* mh = ServerInstance->Modes->FindMode(modeletter, MODETYPE_CHANNEL);
210
211                         /* Passing a pointer to a modestacker here causes the mode to be put onto the mode stack,
212                          * rather than applied immediately. Module unloads require this to be done immediately,
213                          * for this function we require tidyness instead. Fixes bug #493
214                          */
215                         if (mh)
216                                 mh->RemoveMode(c, &stack);
217                 }
218
219                 while (stack.GetStackedLine(stackresult))
220                 {
221                         for (size_t j = 0; j < stackresult.size(); j++)
222                                 mode_junk.push_back(stackresult[j]);
223
224                         ServerInstance->SendMode(mode_junk, ServerInstance->FakeClient);
225                 }
226         }
227         return true;
228 }
229