]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/netburst.cpp
Add simple modes to FJOIN instead of sending a seperate FMODE all the time. This...
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / netburst.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 /** This function is called when we want to send a netburst to a local
25  * server. There is a set order we must do this, because for example
26  * users require their servers to exist, and channels require their
27  * users to exist. You get the idea.
28  */
29 void TreeSocket::DoBurst(TreeServer* s)
30 {
31         std::string name = s->GetName();
32         std::string burst = ":" + this->Instance->Config->GetSID() + " BURST " +ConvToStr(Instance->Time());
33         std::string endburst = ":" + this->Instance->Config->GetSID() + " ENDBURST";
34         this->Instance->SNO->WriteToSnoMask('l',"Bursting to \2%s\2 (Authentication: %s).", name.c_str(), this->GetTheirChallenge().empty() ? "plaintext password" : "SHA256-HMAC challenge-response");
35         this->WriteLine(burst);
36         /* send our version string */
37         this->WriteLine(std::string(":")+this->Instance->Config->GetSID()+" VERSION :"+this->Instance->GetVersionString());
38         /* Send server tree */
39         this->SendServers(Utils->TreeRoot,s,1);
40         /* Send users and their oper status */
41         this->SendUsers(s);
42         /* Send everything else (channel modes, xlines etc) */
43         this->SendChannelModes(s);
44         this->SendXLines(s);
45         FOREACH_MOD_I(this->Instance,I_OnSyncOtherMetaData,OnSyncOtherMetaData((Module*)Utils->Creator,(void*)this));
46         this->WriteLine(endburst);
47         this->Instance->SNO->WriteToSnoMask('l',"Finished bursting to \2"+name+"\2.");
48 }
49
50 /** Recursively send the server tree with distances as hops.
51  * This is used during network burst to inform the other server
52  * (and any of ITS servers too) of what servers we know about.
53  * If at any point any of these servers already exist on the other
54  * end, our connection may be terminated. The hopcounts given
55  * by this function are relative, this doesn't matter so long as
56  * they are all >1, as all the remote servers re-calculate them
57  * to be relative too, with themselves as hop 0.
58  */
59 void TreeSocket::SendServers(TreeServer* Current, TreeServer* s, int hops)
60 {
61         char command[1024];
62         for (unsigned int q = 0; q < Current->ChildCount(); q++)
63         {
64                 TreeServer* recursive_server = Current->GetChild(q);
65                 if (recursive_server != s)
66                 {
67                         snprintf(command,1024,":%s SERVER %s * %d %s :%s",Current->GetName().c_str(),recursive_server->GetName().c_str(),hops,
68                                         recursive_server->GetID().c_str(),
69                                         recursive_server->GetDesc().c_str());
70                         this->WriteLine(command);
71                         this->WriteLine(":"+recursive_server->GetName()+" VERSION :"+recursive_server->GetVersion());
72                         /* down to next level */
73                         this->SendServers(recursive_server, s, hops+1);
74                 }
75         }
76 }
77
78 /** Send one or more FJOINs for a channel of users.
79  * If the length of a single line is more than 480-NICKMAX
80  * in length, it is split over multiple lines.
81  */
82 void TreeSocket::SendFJoins(TreeServer* Current, Channel* c)
83 {
84         std::string buffer;
85         char list[MAXBUF];
86
87         size_t dlen, curlen;
88         dlen = curlen = snprintf(list,MAXBUF,":%s FJOIN %s %lu +%s",this->Instance->Config->GetSID().c_str(),c->name,(unsigned long)c->age, c->ChanModes(true));
89         int numusers = 1;
90         char* ptr = list + dlen;
91
92         CUList *ulist = c->GetUsers();
93         std::string modes;
94         std::string params;
95
96         for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
97         {
98                 // The first parameter gets a : before it
99                 size_t ptrlen = snprintf(ptr, MAXBUF, " %s%s,%s", !numusers ? ":" : "", this->Instance->Modes->ModeString(i->first, c, false).c_str(), i->first->uuid);
100
101                 curlen += ptrlen;
102                 ptr += ptrlen;
103
104                 numusers++;
105
106                 if (curlen > (480-NICKMAX))
107                 {
108                         buffer.append(list).append("\r\n");
109                         dlen = curlen = snprintf(list,MAXBUF,":%s FJOIN %s %lu +%s",this->Instance->Config->GetSID().c_str(),c->name,(unsigned long)c->age, c->ChanModes(true));
110                         ptr = list + dlen;
111                         ptrlen = 0;
112                         numusers = 0;
113                 }
114         }
115
116         if (numusers)
117                 buffer.append(list).append("\r\n");
118
119         int linesize = 1;
120         for (BanList::iterator b = c->bans.begin(); b != c->bans.end(); b++)
121         {
122                 int size = strlen(b->data) + 2;
123                 int currsize = linesize + size;
124                 if (currsize <= 350)
125                 {
126                         modes.append("b");
127                         params.append(" ").append(b->data);
128                         linesize += size; 
129                 }
130                 if ((params.length() >= MAXMODES) || (currsize > 350))
131                 {
132                         /* Wrap at MAXMODES */
133                         buffer.append(":").append(this->Instance->Config->GetSID()).append(" FMODE ").append(c->name).append(" ").append(ConvToStr(c->age)).append(" +").append(modes).append(params).append("\r\n");
134                         modes.clear();
135                         params.clear();
136                         linesize = 1;
137                 }
138         }
139
140         /* Only send these if there are any */
141         if (!modes.empty())
142                 buffer.append(":").append(this->Instance->Config->GetSID()).append(" FMODE ").append(c->name).append(" ").append(ConvToStr(c->age)).append(" +").append(modes).append(params);
143
144         this->WriteLine(buffer);
145 }
146
147 /** Send G, Q, Z and E lines */
148 void TreeSocket::SendXLines(TreeServer* Current)
149 {
150         char data[MAXBUF];
151         std::string n = this->Instance->Config->GetSID();
152         const char* sn = n.c_str();
153
154         std::vector<std::string> types = Instance->XLines->GetAllTypes();
155
156         for (std::vector<std::string>::iterator it = types.begin(); it != types.end(); ++it)
157         {
158                 XLineLookup* lookup = Instance->XLines->GetAll(*it);
159
160                 if (lookup)
161                 {
162                         for (LookupIter i = lookup->begin(); i != lookup->end(); ++i)
163                         {
164                                 /* Is it burstable? this is better than an explicit check for type 'K'.
165                                  * We break the loop as NONE of the items in this group are worth iterating.
166                                  */
167                                 if (!i->second->IsBurstable())
168                                         break;
169
170                                 snprintf(data,MAXBUF,":%s ADDLINE %s %s %s %lu %lu :%s",sn, it->c_str(), i->second->Displayable(),
171                                                 i->second->source,
172                                                 (unsigned long)i->second->set_time,
173                                                 (unsigned long)i->second->duration,
174                                                 i->second->reason);
175                                 this->WriteLine(data);
176                         }
177                 }
178         }
179 }
180
181 /** Send channel modes and topics */
182 void TreeSocket::SendChannelModes(TreeServer* Current)
183 {
184         char data[MAXBUF];
185         std::deque<std::string> list;
186         std::string n = this->Instance->Config->GetSID();
187         const char* sn = n.c_str();
188         for (chan_hash::iterator c = this->Instance->chanlist->begin(); c != this->Instance->chanlist->end(); c++)
189         {
190                 SendFJoins(Current, c->second);
191                 if (*c->second->topic)
192                 {
193                         snprintf(data,MAXBUF,":%s FTOPIC %s %lu %s :%s",sn,c->second->name,(unsigned long)c->second->topicset,c->second->setby,c->second->topic);
194                         this->WriteLine(data);
195                 }
196                 FOREACH_MOD_I(this->Instance,I_OnSyncChannel,OnSyncChannel(c->second,(Module*)Utils->Creator,(void*)this));
197                 list.clear();
198                 c->second->GetExtList(list);
199                 for (unsigned int j = 0; j < list.size(); j++)
200                 {
201                         FOREACH_MOD_I(this->Instance,I_OnSyncChannelMetaData,OnSyncChannelMetaData(c->second,(Module*)Utils->Creator,(void*)this,list[j]));
202                 }
203         }
204 }
205
206 /** send all users and their oper state/modes */
207 void TreeSocket::SendUsers(TreeServer* Current)
208 {
209         char data[MAXBUF];
210         std::deque<std::string> list;
211         std::string dataline;
212         for (user_hash::iterator u = this->Instance->Users->clientlist->begin(); u != this->Instance->Users->clientlist->end(); u++)
213         {
214                 if (u->second->registered == REG_ALL)
215                 {
216                         TreeServer* theirserver = Utils->FindServer(u->second->server);
217                         if (theirserver)
218                         {
219                                 snprintf(data,MAXBUF,":%s UID %s %lu %s %s %s %s +%s %s %lu :%s", theirserver->GetID().c_str(), u->second->uuid,
220                                                 (unsigned long)u->second->age, u->second->nick, u->second->host, u->second->dhost,
221                                                 u->second->ident, u->second->FormatModes(), u->second->GetIPString(),
222                                                 (unsigned long)u->second->signon, u->second->fullname);
223                                 this->WriteLine(data);
224                                 if (IS_OPER(u->second))
225                                 {
226                                         snprintf(data,MAXBUF,":%s OPERTYPE %s", u->second->uuid, u->second->oper);
227                                         this->WriteLine(data);
228                                 }
229                                 if (IS_AWAY(u->second))
230                                 {
231                                         snprintf(data,MAXBUF,":%s AWAY :%s", u->second->uuid, u->second->awaymsg);
232                                         this->WriteLine(data);
233                                 }
234                         }
235
236                         FOREACH_MOD_I(this->Instance,I_OnSyncUser,OnSyncUser(u->second,(Module*)Utils->Creator,(void*)this));
237                         list.clear();
238                         u->second->GetExtList(list);
239                         for (unsigned int j = 0; j < list.size(); j++)
240                         {
241                                 FOREACH_MOD_I(this->Instance,I_OnSyncUserMetaData,OnSyncUserMetaData(u->second,(Module*)Utils->Creator,(void*)this,list[j]));
242                         }
243                 }
244         }
245 }
246