]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/uid.cpp
m_spanningtree Introduce command builders
[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 = ConvToInt(params[1]);
35         time_t signon = ConvToInt(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].substr(0, 3) != remoteserver->GetID())
41                 return CMD_INVALID;
42         /* Check parameters for validity before introducing the client, discovered by dmb */
43         if (!age_t)
44                 return CMD_INVALID;
45         if (!signon)
46                 return CMD_INVALID;
47         if (modestr[0] != '+')
48                 return CMD_INVALID;
49
50         /* check for collision */
51         user_hash::iterator iter = ServerInstance->Users->clientlist->find(params[2]);
52
53         if (iter != ServerInstance->Users->clientlist->end())
54         {
55                 /*
56                  * Nick collision.
57                  */
58                 int collide = Utils->DoCollision(iter->second, remoteserver, age_t, params[5], params[6], params[0]);
59                 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "*** Collision on %s, collide=%d", params[2].c_str(), collide);
60
61                 if (collide != 1)
62                 {
63                         // Remote client lost, make sure we change their nick for the hash too
64                         params[2] = params[0];
65                 }
66         }
67
68         /* IMPORTANT NOTE: For remote users, we pass the UUID in the constructor. This automatically
69          * sets it up in the UUID hash for us.
70          */
71         User* _new = NULL;
72         try
73         {
74                 _new = new RemoteUser(params[0], remoteserver->GetName());
75         }
76         catch (...)
77         {
78                 ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "Duplicate UUID %s in client introduction", params[0].c_str());
79                 return CMD_INVALID;
80         }
81         (*(ServerInstance->Users->clientlist))[params[2]] = _new;
82         _new->nick = params[2];
83         _new->host = params[3];
84         _new->dhost = params[4];
85         _new->ident = params[5];
86         _new->fullname = params[params.size() - 1];
87         _new->registered = REG_ALL;
88         _new->signon = signon;
89         _new->age = age_t;
90
91         unsigned int paramptr = 9;
92
93         for (std::string::const_iterator v = modestr.begin(); v != modestr.end(); ++v)
94         {
95                 // Accept more '+' chars, for now
96                 if (*v == '+')
97                         continue;
98
99                 /* For each mode thats set, find the mode handler and set it on the new user */
100                 ModeHandler* mh = ServerInstance->Modes->FindMode(*v, MODETYPE_USER);
101                 if (!mh)
102                 {
103                         ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "Unrecognised mode '%c' for a user in UID, dropping link", *v);
104                         return CMD_INVALID;
105                 }
106
107                 if (mh->GetNumParams(true))
108                 {
109                         if (paramptr >= params.size() - 1)
110                                 return CMD_INVALID;
111                         std::string mp = params[paramptr++];
112                         /* IMPORTANT NOTE:
113                          * All modes are assumed to succeed here as they are being set by a remote server.
114                          * Modes CANNOT FAIL here. If they DO fail, then the failure is ignored. This is important
115                          * to note as all but one modules currently cannot ever fail in this situation, except for
116                          * m_servprotect which specifically works this way to prevent the mode being set ANYWHERE
117                          * but here, at client introduction. You may safely assume this behaviour is standard and
118                          * will not change in future versions if you want to make use of this protective behaviour
119                          * yourself.
120                          */
121                         mh->OnModeChange(_new, _new, NULL, mp, true);
122                 }
123                 else
124                         mh->OnModeChange(_new, _new, NULL, empty, true);
125                 _new->SetMode(mh, true);
126         }
127
128         _new->SetClientIP(params[6].c_str());
129
130         ServerInstance->Users->AddGlobalClone(_new);
131         remoteserver->UserCount++;
132
133         bool dosend = true;
134
135         if ((Utils->quiet_bursts && remoteserver->bursting) || ServerInstance->SilentULine(_new->server))
136                 dosend = false;
137
138         if (dosend)
139                 ServerInstance->SNO->WriteToSnoMask('C',"Client connecting at %s: %s (%s) [%s]", _new->server.c_str(), _new->GetFullRealHost().c_str(), _new->GetIPString().c_str(), _new->fullname.c_str());
140
141         FOREACH_MOD(OnPostConnect, (_new));
142
143         return CMD_SUCCESS;
144 }
145
146 CmdResult CommandFHost::HandleRemote(RemoteUser* src, std::vector<std::string>& params)
147 {
148         src->ChangeDisplayedHost(params[0]);
149         return CMD_SUCCESS;
150 }
151
152 CmdResult CommandFIdent::HandleRemote(RemoteUser* src, std::vector<std::string>& params)
153 {
154         src->ChangeIdent(params[0]);
155         return CMD_SUCCESS;
156 }
157
158 CmdResult CommandFName::HandleRemote(RemoteUser* src, std::vector<std::string>& params)
159 {
160         src->ChangeName(params[0]);
161         return CMD_SUCCESS;
162 }
163
164 CommandUID::Builder::Builder(User* user)
165         : CmdBuilder(user->uuid.substr(0, 3), "UID")
166 {
167         push(user->uuid);
168         push_int(user->age);
169         push(user->nick);
170         push(user->host);
171         push(user->dhost);
172         push(user->ident);
173         push(user->GetIPString());
174         push_int(user->signon);
175         push('+').push_raw(user->FormatModes(true));
176         push_last(user->fullname);
177 }