]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/treesocket.h
Implement DELLINE, allow both DELLINE and ADDLINE to take a server OR client origin
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / treesocket.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 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 #ifndef __TREESOCKET_H__
15 #define __TREESOCKET_H__
16
17 #include "commands/cmd_whois.h"
18 #include "commands/cmd_stats.h"
19 #include "socket.h"
20 #include "inspircd.h"
21 #include "wildcard.h"
22 #include "xline.h"
23 #include "transport.h"
24
25 #include "m_spanningtree/utils.h"
26
27 /*
28  * The server list in InspIRCd is maintained as two structures
29  * which hold the data in different ways. Most of the time, we
30  * want to very quicky obtain three pieces of information:
31  *
32  * (1) The information on a server
33  * (2) The information on the server we must send data through
34  *     to actually REACH the server we're after
35  * (3) Potentially, the child/parent objects of this server
36  *
37  * The InspIRCd spanning protocol provides easy access to these
38  * by storing the data firstly in a recursive structure, where
39  * each item references its parent item, and a dynamic list
40  * of child items, and another structure which stores the items
41  * hashed, linearly. This means that if we want to find a server
42  * by name quickly, we can look it up in the hash, avoiding
43  * any O(n) lookups. If however, during a split or sync, we want
44  * to apply an operation to a server, and any of its child objects
45  * we can resort to recursion to walk the tree structure.
46  * Any socket can have one of five states at any one time.
47  * The LISTENER state indicates a socket which is listening
48  * for connections. It cannot receive data itself, only incoming
49  * sockets.
50  * The CONNECTING state indicates an outbound socket which is
51  * waiting to be writeable.
52  * The WAIT_AUTH_1 state indicates the socket is outbound and
53  * has successfully connected, but has not yet sent and received
54  * SERVER strings.
55  * The WAIT_AUTH_2 state indicates that the socket is inbound
56  * (allocated by a LISTENER) but has not yet sent and received
57  * SERVER strings.
58  * The CONNECTED state represents a fully authorized, fully
59  * connected server.
60  */
61 enum ServerState { LISTENER, CONNECTING, WAIT_AUTH_1, WAIT_AUTH_2, CONNECTED };
62
63 /** Every SERVER connection inbound or outbound is represented by
64  * an object of type TreeSocket.
65  * TreeSockets, being inherited from BufferedSocket, can be tied into
66  * the core socket engine, and we cn therefore receive activity events
67  * for them, just like activex objects on speed. (yes really, that
68  * is a technical term!) Each of these which relates to a locally
69  * connected server is assocated with it, by hooking it onto a
70  * TreeSocket class using its constructor. In this way, we can
71  * maintain a list of servers, some of which are directly connected,
72  * some of which are not.
73  */
74 class TreeSocket : public BufferedSocket
75 {
76         SpanningTreeUtilities* Utils;           /* Utility class */
77         std::string myhost;                     /* Canonical hostname */
78         std::string in_buffer;                  /* Input buffer */
79         ServerState LinkState;                  /* Link state */
80         std::string InboundServerName;          /* Server name sent to us by other side */
81         std::string InboundDescription;         /* Server description (GECOS) sent to us by the other side */
82         std::string InboundSID;                 /* Server ID sent to us by the other side */
83         int num_lost_users;                     /* Users lost in split */
84         int num_lost_servers;                   /* Servers lost in split */
85         time_t NextPing;                        /* Time when we are due to ping this server */
86         bool LastPingWasGood;                   /* Responded to last ping we sent? */
87         bool bursting;                          /* True if not finished bursting yet */
88         unsigned int keylength;                 /* Is this still used? */
89         std::string ModuleList;                 /* Module list of other server from CAPAB */
90         std::map<std::string,std::string> CapKeys;      /* CAPAB keys from other server */
91         Module* Hook;                           /* I/O hooking module that we're attached to for this socket */
92         std::string ourchallenge;               /* Challenge sent for challenge/response */
93         std::string theirchallenge;             /* Challenge recv for challenge/response */
94         std::string OutboundPass;               /* Outbound password */
95         bool sentcapab;                         /* Have sent CAPAB already */
96  public:
97
98         /** Because most of the I/O gubbins are encapsulated within
99          * BufferedSocket, we just call the superclass constructor for
100          * most of the action, and append a few of our own values
101          * to it.
102          */
103         TreeSocket(SpanningTreeUtilities* Util, InspIRCd* SI, std::string host, int port, bool listening, unsigned long maxtime, Module* HookMod = NULL);
104
105         /** Because most of the I/O gubbins are encapsulated within
106          * BufferedSocket, we just call the superclass constructor for
107          * most of the action, and append a few of our own values
108          * to it.
109          */
110         TreeSocket(SpanningTreeUtilities* Util, InspIRCd* SI, std::string host, int port, bool listening, unsigned long maxtime, const std::string &ServerName, const std::string &bindto, Module* HookMod = NULL);
111
112         /** When a listening socket gives us a new file descriptor,
113          * we must associate it with a socket without creating a new
114          * connection. This constructor is used for this purpose.
115          */
116         TreeSocket(SpanningTreeUtilities* Util, InspIRCd* SI, int newfd, char* ip, Module* HookMod = NULL);
117
118         /** Get link state
119          */
120         ServerState GetLinkState();
121
122         /** Get challenge set in our CAPAB for challenge/response
123          */
124         const std::string& GetOurChallenge();
125
126         /** Get challenge set in our CAPAB for challenge/response
127          */
128         void SetOurChallenge(const std::string &c);
129
130         /** Get challenge set in their CAPAB for challenge/response
131          */
132         const std::string& GetTheirChallenge();
133
134         /** Get challenge set in their CAPAB for challenge/response
135          */
136         void SetTheirChallenge(const std::string &c);
137
138         /** Compare two passwords based on authentication scheme
139          */
140         bool ComparePass(const std::string &ours, const std::string &theirs);
141
142         /** Return the module which we are hooking to for I/O encapsulation
143          */
144         Module* GetHook();
145
146         /** Destructor
147          */
148         ~TreeSocket();
149
150         /** Generate random string used for challenge-response auth
151          */
152         std::string RandString(unsigned int length);
153
154         /** Construct a password, optionally hashed with the other side's
155          * challenge string
156          */
157         std::string MakePass(const std::string &password, const std::string &challenge);
158
159         /** When an outbound connection finishes connecting, we receive
160          * this event, and must send our SERVER string to the other
161          * side. If the other side is happy, as outlined in the server
162          * to server docs on the inspircd.org site, the other side
163          * will then send back its own server string.
164          */
165         virtual bool OnConnected();
166
167         /** Handle socket error event
168          */
169         virtual void OnError(BufferedSocketError e);
170
171         /** Sends an error to the remote server, and displays it locally to show
172          * that it was sent.
173          */
174         void SendError(const std::string &errormessage);
175
176         /** Handle socket disconnect event
177          */
178         virtual int OnDisconnect();
179
180         /** Recursively send the server tree with distances as hops.
181          * This is used during network burst to inform the other server
182          * (and any of ITS servers too) of what servers we know about.
183          * If at any point any of these servers already exist on the other
184          * end, our connection may be terminated. The hopcounts given
185          * by this function are relative, this doesn't matter so long as
186          * they are all >1, as all the remote servers re-calculate them
187          * to be relative too, with themselves as hop 0.
188          */
189         void SendServers(TreeServer* Current, TreeServer* s, int hops);
190
191         /** Returns my capabilities as a string
192          */
193         std::string MyCapabilities();
194
195         /** Send my capabilities to the remote side
196          */
197         void SendCapabilities();
198
199         /* Check a comma seperated list for an item */
200         bool HasItem(const std::string &list, const std::string &item);
201
202         /* Isolate and return the elements that are different between two comma seperated lists */
203         std::string ListDifference(const std::string &one, const std::string &two);
204
205         bool Capab(const std::deque<std::string> &params);
206
207         /** This function forces this server to quit, removing this server
208          * and any users on it (and servers and users below that, etc etc).
209          * It's very slow and pretty clunky, but luckily unless your network
210          * is having a REAL bad hair day, this function shouldnt be called
211          * too many times a month ;-)
212          */
213         void SquitServer(std::string &from, TreeServer* Current);
214
215         /** This is a wrapper function for SquitServer above, which
216          * does some validation first and passes on the SQUIT to all
217          * other remaining servers.
218          */
219         void Squit(TreeServer* Current, const std::string &reason);
220
221         /** FMODE command - server mode with timestamp checks */
222         bool ForceMode(const std::string &source, std::deque<std::string> &params);
223
224         /** FTOPIC command */
225         bool ForceTopic(const std::string &source, std::deque<std::string> &params);
226
227         /** FJOIN, similar to TS6 SJOIN, but not quite. */
228         bool ForceJoin(const std::string &source, std::deque<std::string> &params);
229
230         /* Used on nick collision ... XXX ugly function HACK */
231         int DoCollision(User *u, time_t remotets, const char *remoteident, const char *remoteip, const char *remoteuid);
232
233         /** UID command */
234         bool ParseUID(const std::string &source, std::deque<std::string> &params);
235
236         /** Send one or more FJOINs for a channel of users.
237          * If the length of a single line is more than 480-NICKMAX
238          * in length, it is split over multiple lines.
239          */
240         void SendFJoins(TreeServer* Current, Channel* c);
241
242         /** Send G, Q, Z and E lines */
243         void SendXLines(TreeServer* Current);
244
245         /** Send channel modes and topics */
246         void SendChannelModes(TreeServer* Current);
247
248         /** send all users and their oper state/modes */
249         void SendUsers(TreeServer* Current);
250
251         /** This function is called when we want to send a netburst to a local
252          * server. There is a set order we must do this, because for example
253          * users require their servers to exist, and channels require their
254          * users to exist. You get the idea.
255          */
256         void DoBurst(TreeServer* s);
257
258         /** This function is called when we receive data from a remote
259          * server. We buffer the data in a std::string (it doesnt stay
260          * there for long), reading using BufferedSocket::Read() which can
261          * read up to 16 kilobytes in one operation.
262          *
263          * IF THIS FUNCTION RETURNS FALSE, THE CORE CLOSES AND DELETES
264          * THE SOCKET OBJECT FOR US.
265          */
266         virtual bool OnDataReady();
267
268         /** Send one or more complete lines down the socket
269          */
270         int WriteLine(std::string line);
271
272         /** Handle ERROR command */
273         bool Error(std::deque<std::string> &params);
274
275         /** remote MOTD. leet, huh? */
276         bool Motd(const std::string &prefix, std::deque<std::string> &params);
277
278         /** remote ADMIN. leet, huh? */
279         bool Admin(const std::string &prefix, std::deque<std::string> &params);
280
281         /** Remote MODULES */
282         bool Modules(const std::string &prefix, std::deque<std::string> &params);
283
284         bool Stats(const std::string &prefix, std::deque<std::string> &params);
285
286         /** Because the core won't let users or even SERVERS set +o,
287          * we use the OPERTYPE command to do this.
288          */
289         bool OperType(const std::string &prefix, std::deque<std::string> &params);
290
291         /** Because Andy insists that services-compatible servers must
292          * implement SVSNICK and SVSJOIN, that's exactly what we do :p
293          */
294         bool ForceNick(const std::string &prefix, std::deque<std::string> &params);
295
296         bool OperQuit(const std::string &prefix, std::deque<std::string> &params);
297
298         /** SVSJOIN
299          */
300         bool ServiceJoin(const std::string &prefix, std::deque<std::string> &params);
301
302         /** SVSPART
303          */
304         bool ServicePart(const std::string &prefix, std::deque<std::string> &params);
305
306         /** REHASH
307          */
308         bool RemoteRehash(const std::string &prefix, std::deque<std::string> &params);
309
310         /** KILL
311          */
312         bool RemoteKill(const std::string &prefix, std::deque<std::string> &params);
313
314         /** PONG
315          */
316         bool LocalPong(const std::string &prefix, std::deque<std::string> &params);
317
318         /** METADATA
319          */
320         bool MetaData(const std::string &prefix, std::deque<std::string> &params);
321
322         /** VERSION
323          */
324         bool ServerVersion(const std::string &prefix, std::deque<std::string> &params);
325
326         /** CHGHOST
327          */
328         bool ChangeHost(const std::string &prefix, std::deque<std::string> &params);
329
330         /** ADDLINE
331          */
332         bool AddLine(const std::string &prefix, std::deque<std::string> &params);
333
334         /** DELLINE
335          */
336         bool DelLine(const std::string &prefix, std::deque<std::string> &params);
337
338         /** CHGNAME
339          */
340         bool ChangeName(const std::string &prefix, std::deque<std::string> &params);
341
342         /** WHOIS
343          */
344         bool Whois(const std::string &prefix, std::deque<std::string> &params);
345
346         /** PUSH
347          */
348         bool Push(const std::string &prefix, std::deque<std::string> &params);
349
350         /** SETTIME
351          */
352         bool HandleSetTime(const std::string &prefix, std::deque<std::string> &params);
353
354         /** TIME
355          */
356         bool Time(const std::string &prefix, std::deque<std::string> &params);
357
358         /** PING
359          */
360         bool LocalPing(const std::string &prefix, std::deque<std::string> &params);
361
362         /** Remove all modes from a channel, including statusmodes (+qaovh etc), simplemodes, parameter modes.
363          * This does not update the timestamp of the target channel, this must be done seperately.
364          */
365         bool RemoveStatus(const std::string &prefix, std::deque<std::string> &params);
366
367         /** <- (remote) <- SERVER
368          */
369         bool RemoteServer(const std::string &prefix, std::deque<std::string> &params);
370
371         /** (local) -> SERVER
372          */
373         bool Outbound_Reply_Server(std::deque<std::string> &params);
374
375         /** (local) <- SERVER
376          */
377         bool Inbound_Server(std::deque<std::string> &params);
378
379         /** Handle netsplit
380          */
381         void Split(const std::string &line, std::deque<std::string> &n);
382
383         /** Process complete line from buffer
384          */
385         bool ProcessLine(std::string &line);
386
387         /** Get this server's name
388          */
389         virtual std::string GetName();
390
391         /** Handle socket timeout from connect()
392          */
393         virtual void OnTimeout();
394
395         /** Handle socket close event
396          */
397         virtual void OnClose();
398
399         /** Handle incoming connection event
400          */
401         virtual int OnIncomingConnection(int newsock, char* ip);
402 };
403
404 /* Used to validate the value lengths of multiple parameters for a command */
405 struct cmd_validation
406 {
407         const char* item;
408         size_t param;
409         size_t length;
410 };
411
412 /* Used to validate the length values in CAPAB CAPABILITIES */
413 struct cap_validation
414 {
415         const char* reason;
416         const char* key;
417         size_t size;
418 };
419
420 #endif
421