]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/uid.cpp
m_spanningtree Remove the MAP ISUPPORT token
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / uid.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2010 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc>
7  *
8  * This file is part of InspIRCd.  InspIRCd is free software: you can
9  * redistribute it and/or modify it under the terms of the GNU General Public
10  * License as published by the Free Software Foundation, version 2.
11  *
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
15  * details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21
22 #include "inspircd.h"
23 #include "commands.h"
24
25 #include "utils.h"
26 #include "treeserver.h"
27
28 CmdResult CommandUID::HandleServer(TreeServer* remoteserver, std::vector<std::string>& params)
29 {
30         /** Do we have enough parameters:
31          *      0    1    2    3    4    5        6        7     8        9       (n-1)
32          * UID uuid age nick host dhost ident ip.string signon +modes (modepara) :gecos
33          */
34         time_t age_t = ServerCommand::ExtractTS(params[1]);
35         time_t signon = ServerCommand::ExtractTS(params[7]);
36         std::string empty;
37         const std::string& modestr = params[8];
38
39         /* Is this a valid UID, and not misrouted? */
40         if (params[0].length() != UIDGenerator::UUID_LENGTH || params[0].compare(0, 3, remoteserver->GetID()))
41                 throw ProtocolException("Bogus UUID");
42         /* Check parameters for validity before introducing the client, discovered by dmb */
43         if (modestr[0] != '+')
44                 throw ProtocolException("Invalid mode string");
45
46         /* check for collision */
47         User* collideswith = ServerInstance->FindNickOnly(params[2]);
48         if (collideswith)
49         {
50                 /*
51                  * Nick collision.
52                  */
53                 int collide = Utils->DoCollision(collideswith, remoteserver, age_t, params[5], params[6], params[0]);
54                 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "*** Collision on %s, collide=%d", params[2].c_str(), collide);
55
56                 if (collide != 1)
57                 {
58                         // Remote client lost, make sure we change their nick for the hash too
59                         params[2] = params[0];
60                 }
61         }
62
63         /* IMPORTANT NOTE: For remote users, we pass the UUID in the constructor. This automatically
64          * sets it up in the UUID hash for us.
65          *
66          * If the UUID already exists User::User() throws an exception which causes this connection to be closed.
67          */
68         RemoteUser* _new = new RemoteUser(params[0], remoteserver);
69         ServerInstance->Users->clientlist[params[2]] = _new;
70         _new->nick = params[2];
71         _new->host = params[3];
72         _new->dhost = params[4];
73         _new->ident = params[5];
74         _new->fullname = params.back();
75         _new->registered = REG_ALL;
76         _new->signon = signon;
77         _new->age = age_t;
78
79         unsigned int paramptr = 9;
80
81         for (std::string::const_iterator v = modestr.begin(); v != modestr.end(); ++v)
82         {
83                 // Accept more '+' chars, for now
84                 if (*v == '+')
85                         continue;
86
87                 /* For each mode thats set, find the mode handler and set it on the new user */
88                 ModeHandler* mh = ServerInstance->Modes->FindMode(*v, MODETYPE_USER);
89                 if (!mh)
90                         throw ProtocolException("Unrecognised mode '" + std::string(1, *v) + "'");
91
92                 if (mh->GetNumParams(true))
93                 {
94                         if (paramptr >= params.size() - 1)
95                                 throw ProtocolException("Out of parameters while processing modes");
96                         std::string mp = params[paramptr++];
97                         /* IMPORTANT NOTE:
98                          * All modes are assumed to succeed here as they are being set by a remote server.
99                          * Modes CANNOT FAIL here. If they DO fail, then the failure is ignored. This is important
100                          * to note as all but one modules currently cannot ever fail in this situation, except for
101                          * m_servprotect which specifically works this way to prevent the mode being set ANYWHERE
102                          * but here, at client introduction. You may safely assume this behaviour is standard and
103                          * will not change in future versions if you want to make use of this protective behaviour
104                          * yourself.
105                          */
106                         mh->OnModeChange(_new, _new, NULL, mp, true);
107                 }
108                 else
109                         mh->OnModeChange(_new, _new, NULL, empty, true);
110                 _new->SetMode(mh, true);
111         }
112
113         _new->SetClientIP(params[6].c_str());
114
115         ServerInstance->Users->AddClone(_new);
116         remoteserver->UserCount++;
117
118         bool dosend = true;
119
120         if ((Utils->quiet_bursts && remoteserver->bursting) || _new->server->IsSilentULine())
121                 dosend = false;
122
123         if (dosend)
124                 ServerInstance->SNO->WriteToSnoMask('C',"Client connecting at %s: %s (%s) [%s]", remoteserver->GetName().c_str(), _new->GetFullRealHost().c_str(), _new->GetIPString().c_str(), _new->fullname.c_str());
125
126         FOREACH_MOD(OnPostConnect, (_new));
127
128         return CMD_SUCCESS;
129 }
130
131 CmdResult CommandFHost::HandleRemote(RemoteUser* src, std::vector<std::string>& params)
132 {
133         src->ChangeDisplayedHost(params[0]);
134         return CMD_SUCCESS;
135 }
136
137 CmdResult CommandFIdent::HandleRemote(RemoteUser* src, std::vector<std::string>& params)
138 {
139         src->ChangeIdent(params[0]);
140         return CMD_SUCCESS;
141 }
142
143 CmdResult CommandFName::HandleRemote(RemoteUser* src, std::vector<std::string>& params)
144 {
145         src->ChangeName(params[0]);
146         return CMD_SUCCESS;
147 }
148
149 CommandUID::Builder::Builder(User* user)
150         : CmdBuilder(TreeServer::Get(user)->GetID(), "UID")
151 {
152         push(user->uuid);
153         push_int(user->age);
154         push(user->nick);
155         push(user->host);
156         push(user->dhost);
157         push(user->ident);
158         push(user->GetIPString());
159         push_int(user->signon);
160         push('+').push_raw(user->FormatModes(true));
161         push_last(user->fullname);
162 }