]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/uid.cpp
0d53701f2b22b319574d960c0e911a8eb366552f
[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         const char* tempnick = params[2].c_str();
50         std::string empty;
51
52         /* XXX probably validate UID length too -- w00t */
53         cmd_validation valid[] = { {"Nickname", 2, NICKMAX}, {"Hostname", 3, 64}, {"Displayed hostname", 4, 64}, {"Ident", 5, IDENTMAX + 1}, {"GECOS", 9, MAXGECOS}, {"", 0, 0} };
54
55         TreeServer* remoteserver = Utils->FindServer(source);
56
57         if (!remoteserver)
58         {
59                 this->WriteLine(std::string(":")+this->Instance->Config->GetSID()+" KILL "+params[0]+" :Invalid client introduction (Unknown server "+source+")");
60                 return true;
61         }
62
63         /* Check parameters for validity before introducing the client, discovered by dmb */
64         if (!age_t)
65         {
66                 this->WriteLine(std::string(":")+this->Instance->Config->GetSID()+" KILL "+params[0]+" :Invalid client introduction (Invalid TS?)");
67                 return true;
68         }
69
70         for (size_t x = 0; valid[x].length; ++x)
71         {
72                 if (params[valid[x].param].length() > valid[x].length)
73                 {
74                         this->WriteLine(std::string(":")+this->Instance->Config->GetSID()+" KILL "+params[0]+" :Invalid client introduction (" + valid[x].item + " > " + ConvToStr(valid[x].length) + ")");
75                         return true;
76                 }
77         }
78
79
80         /* check for collision */
81         user_hash::iterator iter = this->Instance->Users->clientlist->find(tempnick);
82
83         if (iter != this->Instance->Users->clientlist->end())
84         {
85                 /*
86                  * Nick collision.
87                  */
88                 Instance->Logs->Log("m_spanningtree",DEBUG,"*** Collision on %s", tempnick);
89                 int collide = this->DoCollision(iter->second, age_t, params[5].c_str(), params[7].c_str(), params[0].c_str());
90
91                 if (collide == 2)
92                 {
93                         /* remote client changed, make sure we change their nick for the hash too */
94                         tempnick = params[0].c_str();
95                 }
96         }
97
98         /* IMPORTANT NOTE: For remote users, we pass the UUID in the constructor. This automatically
99          * sets it up in the UUID hash for us.
100          */
101         User* _new = NULL;
102         try
103         {
104                 _new = new User(this->Instance, params[0]);
105         }
106         catch (...)
107         {
108                 SendError("Protocol violation - Duplicate UUID '" + params[0] + "' on introduction of new user");
109                 return false;
110         }
111         (*(this->Instance->Users->clientlist))[tempnick] = _new;
112         _new->SetFd(FD_MAGIC_NUMBER);
113         strlcpy(_new->nick, tempnick, NICKMAX - 1);
114         strlcpy(_new->host, params[3].c_str(),64);
115         strlcpy(_new->dhost, params[4].c_str(),64);
116         _new->server = this->Instance->FindServerNamePtr(remoteserver->GetName().c_str());
117         strlcpy(_new->ident, params[5].c_str(),IDENTMAX + 1);
118         strlcpy(_new->fullname, params[9].c_str(),MAXGECOS);
119         _new->registered = REG_ALL;
120         _new->signon = signon;
121         _new->age = age_t;
122
123         /* we need to remove the + from the modestring, so we can do our stuff */
124         std::string::size_type pos_after_plus = params[6].find_first_not_of('+');
125         if (pos_after_plus != std::string::npos)
126         params[6] = params[6].substr(pos_after_plus);
127
128         for (std::string::iterator v = params[6].begin(); v != params[6].end(); v++)
129         {
130                 /* For each mode thats set, increase counter */
131                 ModeHandler* mh = Instance->Modes->FindMode(*v, MODETYPE_USER);
132
133                 if (mh)
134                 {
135                         mh->OnModeChange(_new, _new, NULL, empty, true);
136                         _new->SetMode(*v, true);
137                         mh->ChangeCount(1);
138                 }
139         }
140
141         /* now we've done with modes processing, put the + back for remote servers */
142         params[6] = "+" + params[6];
143
144 #ifdef SUPPORT_IP6LINKS
145         if (params[7].find_first_of(":") != std::string::npos)
146                 _new->SetSockAddr(AF_INET6, params[7].c_str(), 0);
147         else
148 #endif
149                 _new->SetSockAddr(AF_INET, params[7].c_str(), 0);
150
151         Instance->Users->AddGlobalClone(_new);
152
153         bool dosend = true;
154         
155         if ((this->Utils->quiet_bursts && remoteserver->bursting) || this->Instance->SilentULine(_new->server))
156                 dosend = false;
157         
158         if (dosend)
159                 this->Instance->SNO->WriteToSnoMask('C',"Client connecting at %s: %s!%s@%s [%s] [%s]",_new->server,_new->nick,_new->ident,_new->host, _new->GetIPString(), _new->fullname);
160
161         params[9] = ":" + params[9];
162         Utils->DoOneToAllButSender(source, "UID", params, source);
163
164         FOREACH_MOD_I(Instance,I_OnPostConnect,OnPostConnect(_new));
165
166         return true;
167 }
168