]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/uid.cpp
f36d2b05cc0f971d8f43b700fd3659cf4fd2c664
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / uid.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 "commands/cmd_whois.h"
16 #include "commands/cmd_stats.h"
17 #include "socket.h"
18 #include "wildcard.h"
19 #include "xline.h"
20 #include "transport.h"
21 #include "m_hash.h"
22 #include "socketengine.h"
23
24 #include "m_spanningtree/main.h"
25 #include "m_spanningtree/utils.h"
26 #include "m_spanningtree/treeserver.h"
27 #include "m_spanningtree/link.h"
28 #include "m_spanningtree/treesocket.h"
29 #include "m_spanningtree/resolvers.h"
30 #include "m_spanningtree/handshaketimer.h"
31
32 /* $ModDep: m_spanningtree/timesynctimer.h m_spanningtree/resolvers.h m_spanningtree/main.h m_spanningtree/utils.h m_spanningtree/treeserver.h m_spanningtree/link.h m_spanningtree/treesocket.h m_hash.h */
33
34 bool TreeSocket::ParseUID(const std::string &source, std::deque<std::string> &params)
35 {
36         /** Do we have enough parameters:
37          * UID uuid age nick host dhost ident +modestr ip.string :gecos
38          */
39         if (params.size() != 10)
40         {
41                 if (!params.empty())
42                         this->WriteLine(std::string(":")+this->Instance->Config->GetSID()+" KILL "+params[0]+" :Invalid client introduction ("+params[0]+" with only "+
43                                         ConvToStr(params.size())+" of 10 parameters?)");
44                 return true;
45         }
46
47         time_t age_t = ConvToInt(params[1]);
48         time_t signon = ConvToInt(params[8]);
49         std::string empty;
50
51         TreeServer* remoteserver = Utils->FindServer(source);
52
53         if (!remoteserver)
54         {
55                 this->WriteLine(std::string(":")+this->Instance->Config->GetSID()+" KILL "+params[0]+" :Invalid client introduction (Unknown server "+source+")");
56                 return true;
57         }
58
59         /* Check parameters for validity before introducing the client, discovered by dmb */
60         if (!age_t)
61         {
62                 this->WriteLine(std::string(":")+this->Instance->Config->GetSID()+" KILL "+params[0]+" :Invalid client introduction (Invalid TS?)");
63                 return true;
64         }
65
66         /* check for collision */
67         user_hash::iterator iter = this->Instance->Users->clientlist->find(params[2]);
68
69         if (iter != this->Instance->Users->clientlist->end())
70         {
71                 /*
72                  * Nick collision.
73                  */
74                 Instance->Logs->Log("m_spanningtree",DEBUG,"*** Collision on %s", params[2].c_str());
75                 int collide = this->DoCollision(iter->second, age_t, params[5], params[7], params[0]);
76
77                 if (collide == 2)
78                 {
79                         /* remote client changed, make sure we change their nick for the hash too */
80                         params[2] = params[0];
81                 }
82         }
83
84         /* IMPORTANT NOTE: For remote users, we pass the UUID in the constructor. This automatically
85          * sets it up in the UUID hash for us.
86          */
87         User* _new = NULL;
88         try
89         {
90                 _new = new User(this->Instance, params[0]);
91         }
92         catch (...)
93         {
94                 SendError("Protocol violation - Duplicate UUID '" + params[0] + "' on introduction of new user");
95                 return false;
96         }
97         (*(this->Instance->Users->clientlist))[params[2]] = _new;
98         _new->SetFd(FD_MAGIC_NUMBER);
99         _new->nick.assign(params[2], 0, MAXBUF);
100         _new->host.assign(params[3], 0, 64);
101         _new->dhost.assign(params[4], 0, 64);
102         _new->server = this->Instance->FindServerNamePtr(remoteserver->GetName().c_str());
103         _new->ident.assign(params[5], 0, MAXBUF);
104         _new->fullname.assign(params[9], 0, MAXBUF);
105         _new->registered = REG_ALL;
106         _new->signon = signon;
107         _new->age = age_t;
108
109         /* we need to remove the + from the modestring, so we can do our stuff */
110         std::string::size_type pos_after_plus = params[6].find_first_not_of('+');
111         if (pos_after_plus != std::string::npos)
112         params[6] = params[6].substr(pos_after_plus);
113
114         for (std::string::iterator v = params[6].begin(); v != params[6].end(); v++)
115         {
116                 /* For each mode thats set, increase counter */
117                 ModeHandler* mh = Instance->Modes->FindMode(*v, MODETYPE_USER);
118
119                 if (mh)
120                 {
121                         mh->OnModeChange(_new, _new, NULL, empty, true);
122                         _new->SetMode(*v, true);
123                         mh->ChangeCount(1);
124                 }
125         }
126
127         /* now we've done with modes processing, put the + back for remote servers */
128         params[6] = "+" + params[6];
129
130 #ifdef SUPPORT_IP6LINKS
131         if (params[7].find_first_of(":") != std::string::npos)
132                 _new->SetSockAddr(AF_INET6, params[7].c_str(), 0);
133         else
134 #endif
135                 _new->SetSockAddr(AF_INET, params[7].c_str(), 0);
136
137         Instance->Users->AddGlobalClone(_new);
138
139         bool dosend = true;
140         
141         if ((this->Utils->quiet_bursts && remoteserver->bursting) || this->Instance->SilentULine(_new->server))
142                 dosend = false;
143         
144         if (dosend)
145                 this->Instance->SNO->WriteToSnoMask('C',"Client connecting at %s: %s!%s@%s [%s] [%s]", _new->server, _new->nick.c_str(), _new->ident.c_str(), _new->host.c_str(), _new->GetIPString(), _new->fullname.c_str());
146
147         params[9] = ":" + params[9];
148         Utils->DoOneToAllButSender(source, "UID", params, source);
149
150         Instance->PI->Introduce(_new);
151         FOREACH_MOD_I(Instance,I_OnPostConnect,OnPostConnect(_new));
152
153         return true;
154 }
155