]> jfr.im git - solanum.git/blame - modules/core/m_server.c
add help for `chm_regmsg`
[solanum.git] / modules / core / m_server.c
CommitLineData
212380e3
AC
1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_server.c: Introduces a server.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
212380e3
AC
23 */
24
25#include "stdinc.h"
212380e3 26#include "client.h" /* client struct */
212380e3 27#include "hash.h" /* add_to_client_hash */
4562c604 28#include "match.h"
212380e3
AC
29#include "ircd.h" /* me */
30#include "numeric.h" /* ERR_xxx */
31#include "s_conf.h" /* struct ConfItem */
32#include "s_newconf.h"
4016731b 33#include "logger.h" /* log level defines */
212380e3
AC
34#include "s_serv.h" /* server_estab, check_server */
35#include "s_stats.h" /* ServerStats */
994544c2 36#include "scache.h"
212380e3
AC
37#include "send.h" /* sendto_one */
38#include "msg.h"
39#include "parse.h"
40#include "modules.h"
41
4491f536 42static const char server_desc[] =
51588bbc 43 "Provides the TS6 commands to introduce a new server to the network";
212380e3 44
3c7d6fcc
EM
45static void mr_server(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
46static void ms_server(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
47static void ms_sid(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
48
49static bool bogus_host(const char *host);
50static void set_server_gecos(struct Client *, const char *);
51
212380e3 52struct Message server_msgtab = {
7baa37a9 53 "SERVER", 0, 0, 0, 0,
212380e3
AC
54 {{mr_server, 4}, mg_reg, mg_ignore, {ms_server, 4}, mg_ignore, mg_reg}
55};
56struct Message sid_msgtab = {
7baa37a9 57 "SID", 0, 0, 0, 0,
212380e3
AC
58 {mg_ignore, mg_reg, mg_ignore, {ms_sid, 5}, mg_ignore, mg_reg}
59};
60
61mapi_clist_av1 server_clist[] = { &server_msgtab, &sid_msgtab, NULL };
62
ee6dcb05 63DECLARE_MODULE_AV2(server, NULL, NULL, server_clist, NULL, NULL, NULL, NULL, server_desc);
212380e3 64
212380e3
AC
65/*
66 * mr_server - SERVER message handler
212380e3
AC
67 * parv[1] = servername
68 * parv[2] = serverinfo/hopcount
69 * parv[3] = serverinfo
70 */
3c7d6fcc 71static void
428ca87b 72mr_server(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
212380e3
AC
73{
74 char info[REALLEN + 1];
75 const char *name;
76 struct Client *target_p;
77 int hop;
79d488b2 78 unsigned int required_mask;
fce4df54 79 const char *missing;
b49efe57 80 int ret;
212380e3
AC
81
82 name = parv[1];
83 hop = atoi(parv[2]);
f427c8b0 84 rb_strlcpy(info, parv[3], sizeof(info));
212380e3 85
9c2f9ec9
JT
86 if (IsHandshake(client_p) && irccmp(client_p->name, name))
87 {
a9227555 88 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
9c2f9ec9 89 "Server %s has unexpected name %s",
b3ebc7ab 90 client_p->name, name);
9c2f9ec9
JT
91 ilog(L_SERVER, "Server %s has unexpected name %s",
92 log_client_name(client_p, SHOW_IP), name);
93 exit_client(client_p, client_p, client_p, "Server name mismatch");
3c7d6fcc 94 return;
9c2f9ec9
JT
95 }
96
55abcbb2 97 /*
212380e3
AC
98 * Reject a direct nonTS server connection if we're TS_ONLY -orabidoo
99 */
100 if(!DoesTS(client_p))
101 {
a9227555 102 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE, "Link %s dropped, non-TS server",
b3ebc7ab 103 client_p->name);
212380e3 104 exit_client(client_p, client_p, client_p, "Non-TS server");
3c7d6fcc 105 return;
212380e3
AC
106 }
107
108 if(bogus_host(name))
109 {
110 exit_client(client_p, client_p, client_p, "Bogus server name");
3c7d6fcc 111 return;
212380e3
AC
112 }
113
114 /* Now we just have to call check_server and everything should be
115 * check for us... -A1kmm. */
b49efe57
SA
116 ret = check_server(name, client_p);
117 switch (ret)
212380e3 118 {
b49efe57
SA
119 case 0:
120 /* success */
121 break;
212380e3
AC
122 case -1:
123 if(ConfigFileEntry.warn_no_nline)
124 {
a9227555 125 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
212380e3
AC
126 "Unauthorised server connection attempt from %s: "
127 "No entry for servername %s",
b1ace057 128 "[@255.255.255.255]", name);
212380e3
AC
129
130 ilog(L_SERVER, "Access denied, no connect block for server %s%s",
131 EmptyString(client_p->name) ? name : "",
132 log_client_name(client_p, SHOW_IP));
133 }
134
135 exit_client(client_p, client_p, client_p, "Invalid servername.");
3c7d6fcc 136 return;
212380e3
AC
137 /* NOT REACHED */
138 break;
139
140 case -2:
a9227555 141 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
212380e3 142 "Unauthorised server connection attempt from %s: "
ff0cc1e6 143 "Bad credentials for server %s",
b1ace057 144 "[@255.255.255.255]", name);
212380e3 145
ff0cc1e6 146 ilog(L_SERVER, "Access denied, invalid credentials for server %s%s",
212380e3
AC
147 EmptyString(client_p->name) ? name : "",
148 log_client_name(client_p, SHOW_IP));
149
ff0cc1e6 150 exit_client(client_p, client_p, client_p, "Invalid credentials.");
3c7d6fcc 151 return;
212380e3
AC
152 /* NOT REACHED */
153 break;
154
155 case -3:
a9227555 156 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
212380e3
AC
157 "Unauthorised server connection attempt from %s: "
158 "Invalid host for server %s",
b1ace057 159 "[@255.255.255.255]", name);
212380e3
AC
160
161 ilog(L_SERVER, "Access denied, invalid host for server %s%s",
162 EmptyString(client_p->name) ? name : "",
163 log_client_name(client_p, SHOW_IP));
164
165 exit_client(client_p, client_p, client_p, "Invalid host.");
3c7d6fcc 166 return;
212380e3
AC
167 /* NOT REACHED */
168 break;
169
170 /* servername is > HOSTLEN */
171 case -4:
a9227555 172 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
212380e3 173 "Invalid servername %s from %s",
b1ace057 174 name, "[@255.255.255.255]");
212380e3
AC
175 ilog(L_SERVER, "Access denied, invalid servername from %s",
176 log_client_name(client_p, SHOW_IP));
177
178 exit_client(client_p, client_p, client_p, "Invalid servername.");
3c7d6fcc 179 return;
212380e3
AC
180 /* NOT REACHED */
181 break;
c6d72037 182 case -5:
a9227555 183 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
8bd5767b
JT
184 "Connection from servername %s requires SSL/TLS but is plaintext",
185 name);
55abcbb2 186 ilog(L_SERVER, "Access denied, requires SSL/TLS but is plaintext from %s",
8bd5767b
JT
187 log_client_name(client_p, SHOW_IP));
188
189 exit_client(client_p, client_p, client_p, "Access denied, requires SSL/TLS but is plaintext");
3c7d6fcc 190 return;
84e3e445 191 case -6:
df0c70dd
KB
192 if (client_p->certfp)
193 {
a9227555 194 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
df0c70dd
KB
195 "Connection from servername %s has invalid certificate fingerprint %s",
196 name, client_p->certfp);
197 ilog(L_SERVER, "Access denied, invalid certificate fingerprint %s from %s",
198 client_p->certfp, log_client_name(client_p, SHOW_IP));
199 exit_client(client_p, client_p, client_p, "Invalid fingerprint.");
200 }
201 else
202 {
a9227555 203 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
df0c70dd
KB
204 "Connection from servername %s failed certificate validation",
205 name);
206 ilog(L_SERVER, "Access denied; certificate validation failed for certificate from %s",
207 log_client_name(client_p, SHOW_IP));
208 exit_client(client_p, client_p, client_p, "Invalid certificate.");
209 }
84e3e445 210
d2b3a2a4
SA
211 return;
212 case -7:
a9227555 213 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
d2b3a2a4
SA
214 "Connection from servername %s rejected, no more connections allowed in class",
215 name);
216 ilog(L_SERVER, "Access denied, no more connections allowed in class for %s",
217 log_client_name(client_p, SHOW_IP));
218
219 exit_client(client_p, client_p, client_p, "Access denied, no more connections allowed in class");
84e3e445 220 return;
b49efe57 221 default:
a9227555 222 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
b49efe57
SA
223 "Connection from servername %s rejected, unknown error %d",
224 name, ret);
225 ilog(L_SERVER, "Access denied, unknown error %d for server %s%s", ret,
226 EmptyString(client_p->name) ? name : "",
227 log_client_name(client_p, SHOW_IP));
228
229 exit_client(client_p, client_p, client_p, "Unknown error.");
230 return;
212380e3
AC
231 }
232
316cbf11
JT
233 /* require TS6 for direct links */
234 if(!IsCapable(client_p, CAP_TS6))
235 {
a9227555 236 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
316cbf11
JT
237 "Link %s dropped, TS6 protocol is required", name);
238 exit_client(client_p, client_p, client_p, "Incompatible TS version");
3c7d6fcc 239 return;
316cbf11
JT
240 }
241
22b24f63 242 /* check to ensure any "required" caps are set. --nenolod */
22b24f63
JT
243 required_mask = capability_index_get_required(serv_capindex);
244 if (!IsCapable(client_p, required_mask))
245 {
fce4df54
JT
246 missing = capability_index_list(serv_capindex, required_mask &
247 ~client_p->localClient->caps);
a9227555 248 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
fce4df54
JT
249 "Link %s dropped, required CAPABs [%s] are missing",
250 name, missing);
251 ilog(L_SERVER, "Link %s%s dropped, required CAPABs [%s] are missing",
22b24f63 252 EmptyString(client_p->name) ? name : "",
fce4df54
JT
253 log_client_name(client_p, SHOW_IP), missing);
254 /* Do not use '[' in the below message because it would cause
255 * it to be considered potentially unsafe (might disclose IP
256 * addresses)
257 */
258 sendto_one(client_p, "ERROR :Missing required CAPABs (%s)", missing);
22b24f63
JT
259 exit_client(client_p, client_p, client_p, "Missing required CAPABs");
260
3c7d6fcc 261 return;
22b24f63
JT
262 }
263
b0b7de54 264 if((target_p = find_server(NULL, name)))
212380e3
AC
265 {
266 /*
267 * This link is trying feed me a server that I already have
268 * access through another path -- multiple paths not accepted
269 * currently, kill this link immediately!!
270 *
271 * Rather than KILL the link which introduced it, KILL the
272 * youngest of the two links. -avalon
273 *
274 * Definitely don't do that here. This is from an unregistered
275 * connect - A1kmm.
276 */
7b054ca3
JT
277 if (target_p->servptr->flags & FLAGS_SERVICE)
278 {
279 /* Assume any servers introduced by services
280 * are jupes.
281 * -- jilles
282 */
283 sendto_one(client_p, "ERROR :Server juped.");
284 }
285 else
286 {
a9227555 287 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
7b054ca3
JT
288 "Attempt to re-introduce server %s from %s",
289 name, "[@255.255.255.255]");
290 ilog(L_SERVER, "Attempt to re-introduce server %s from %s",
291 name, log_client_name(client_p, SHOW_IP));
212380e3 292
7b054ca3
JT
293 sendto_one(client_p, "ERROR :Server already exists.");
294 }
212380e3 295 exit_client(client_p, client_p, client_p, "Server Exists");
3c7d6fcc 296 return;
212380e3
AC
297 }
298
d4b2529a
SA
299 if (client_p->preClient && !EmptyString(client_p->preClient->id)) {
300 if ((target_p = find_id(client_p->preClient->id)) != NULL) {
a9227555 301 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
d4b2529a
SA
302 "Attempt to re-introduce SID %s from %s%s (already in use by %s)",
303 client_p->preClient->id,
304 EmptyString(client_p->name) ? name : "",
305 client_p->name, target_p->name);
306 ilog(L_SERVER, "Attempt to re-introduce SID %s from %s%s (already in use by %s)",
307 client_p->preClient->id,
308 EmptyString(client_p->name) ? name : "",
309 log_client_name(client_p, SHOW_IP),
310 target_p->name);
311
312 sendto_one(client_p, "ERROR :SID already exists.");
313 exit_client(client_p, client_p, client_p, "SID Exists");
314 return;
315 } else {
316 rb_strlcpy(client_p->id, client_p->preClient->id, sizeof(client_p->id));
317 }
212380e3
AC
318 }
319
320 /*
321 * if we are connecting (Handshake), we already have the name from the
322 * C:line in client_p->name
323 */
324
f427c8b0 325 rb_strlcpy(client_p->name, name, sizeof(client_p->name));
212380e3
AC
326 set_server_gecos(client_p, info);
327 client_p->hopcount = hop;
328 server_estab(client_p);
212380e3
AC
329}
330
331/*
332 * ms_server - SERVER message handler
212380e3
AC
333 * parv[1] = servername
334 * parv[2] = serverinfo/hopcount
335 * parv[3] = serverinfo
336 */
3c7d6fcc 337static void
428ca87b 338ms_server(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
212380e3
AC
339{
340 char info[REALLEN + 1];
341 /* same size as in s_misc.c */
342 const char *name;
343 struct Client *target_p;
212380e3
AC
344 hook_data_client hdata;
345 int hop;
7d428759 346 char squitreason[160];
212380e3
AC
347
348 name = parv[1];
349 hop = atoi(parv[2]);
f427c8b0 350 rb_strlcpy(info, parv[3], sizeof(info));
212380e3 351
dc336d1a 352 if(find_server(NULL, name))
212380e3
AC
353 {
354 /*
355 * This link is trying feed me a server that I already have
356 * access through another path -- multiple paths not accepted
357 * currently, kill this link immediately!!
358 *
359 * Rather than KILL the link which introduced it, KILL the
360 * youngest of the two links. -avalon
361 *
362 * I think that we should exit the link itself, not the introducer,
363 * and we should always exit the most recently received(i.e. the
364 * one we are receiving this SERVER for. -A1kmm
365 *
366 * You *cant* do this, if you link somewhere, it bursts you a server
367 * that already exists, then sends you a client burst, you squit the
368 * server, but you keep getting the burst of clients on a server that
369 * doesnt exist, although ircd can handle it, its not a realistic
55abcbb2 370 * solution.. --fl_
212380e3 371 */
212380e3
AC
372 ilog(L_SERVER, "Link %s cancelled, server %s already exists",
373 client_p->name, name);
374
5203cba5 375 snprintf(squitreason, sizeof squitreason,
7d428759
JT
376 "Server %s already exists",
377 name);
378 exit_client(client_p, client_p, &me, squitreason);
3c7d6fcc 379 return;
212380e3
AC
380 }
381
55abcbb2 382 /*
212380e3
AC
383 * User nicks never have '.' in them and server names
384 * must always have '.' in them.
385 */
386 if(strchr(name, '.') == NULL)
387 {
388 /*
389 * Server trying to use the same name as a person. Would
390 * cause a fair bit of confusion. Enough to make it hellish
391 * for a while and servers to send stuff to the wrong place.
392 */
393 sendto_one(client_p, "ERROR :Nickname %s already exists!", name);
a9227555 394 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
212380e3 395 "Link %s cancelled: Server/nick collision on %s",
b3ebc7ab 396 client_p->name, name);
212380e3
AC
397 ilog(L_SERVER, "Link %s cancelled: Server/nick collision on %s",
398 client_p->name, name);
399
400 exit_client(client_p, client_p, client_p, "Nick as Server");
3c7d6fcc 401 return;
212380e3
AC
402 }
403
404 /*
405 * Server is informing about a new server behind
406 * this link. Create REMOTE server structure,
407 * add it to list and propagate word to my other
408 * server links...
409 */
212380e3 410
212380e3
AC
411 if(strlen(name) > HOSTLEN)
412 {
a9227555 413 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
212380e3 414 "Link %s introduced server with invalid servername %s",
b3ebc7ab 415 client_p->name, name);
212380e3
AC
416 ilog(L_SERVER, "Link %s introduced server with invalid servername %s",
417 client_p->name, name);
418
419 exit_client(NULL, client_p, &me, "Invalid servername introduced.");
3c7d6fcc 420 return;
212380e3
AC
421 }
422
423 target_p = make_client(client_p);
424 make_server(target_p);
425 target_p->hopcount = hop;
426
f427c8b0 427 rb_strlcpy(target_p->name, name, sizeof(target_p->name));
212380e3
AC
428
429 set_server_gecos(target_p, info);
430
212380e3
AC
431 target_p->servptr = source_p;
432
433 SetServer(target_p);
434
0e7cb7e6
JT
435 rb_dlinkAddTail(target_p, &target_p->node, &global_client_list);
436 rb_dlinkAddTailAlloc(target_p, &global_serv_list);
212380e3 437 add_to_client_hash(target_p->name, target_p);
0e7cb7e6 438 rb_dlinkAdd(target_p, &target_p->lnode, &target_p->servptr->serv->servers);
212380e3 439
994544c2
JT
440 target_p->serv->nameinfo = scache_connect(target_p->name, target_p->info, IsHidden(target_p));
441
212380e3
AC
442 sendto_server(client_p, NULL, NOCAPS, NOCAPS,
443 ":%s SERVER %s %d :%s%s",
444 source_p->name, target_p->name, target_p->hopcount + 1,
445 IsHidden(target_p) ? "(H) " : "", target_p->info);
446
447 sendto_realops_snomask(SNO_EXTERNAL, L_ALL,
448 "Server %s being introduced by %s", target_p->name, source_p->name);
449
450 /* quick, dirty EOB. you know you love it. */
451 sendto_one(target_p, ":%s PING %s %s", get_id(&me, target_p), me.name, target_p->name);
452
453 hdata.client = source_p;
454 hdata.target = target_p;
455 call_hook(h_server_introduced, &hdata);
212380e3
AC
456}
457
3c7d6fcc 458static void
428ca87b 459ms_sid(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
212380e3
AC
460{
461 struct Client *target_p;
212380e3 462 hook_data_client hdata;
8e34ffc6 463 char squitreason[160];
212380e3 464
212380e3 465 /* collision on the name? */
dc336d1a 466 if(find_server(NULL, parv[1]) != NULL)
212380e3 467 {
212380e3
AC
468 ilog(L_SERVER, "Link %s cancelled, server %s already exists",
469 client_p->name, parv[1]);
470
5203cba5 471 snprintf(squitreason, sizeof squitreason,
7d428759
JT
472 "Server %s already exists",
473 parv[1]);
474 exit_client(NULL, client_p, &me, squitreason);
3c7d6fcc 475 return;
212380e3
AC
476 }
477
478 /* collision on the SID? */
479 if((target_p = find_id(parv[3])) != NULL)
480 {
8e34ffc6
JT
481 sendto_wallops_flags(UMODE_WALLOP, &me,
482 "Link %s cancelled, SID %s for server %s already in use by %s",
483 client_p->name, parv[3], parv[1], target_p->name);
484 sendto_server(NULL, NULL, CAP_TS6, NOCAPS,
485 ":%s WALLOPS :Link %s cancelled, SID %s for server %s already in use by %s",
486 me.id, client_p->name, parv[3], parv[1], target_p->name);
487 ilog(L_SERVER, "Link %s cancelled, SID %s for server %s already in use by %s",
488 client_p->name, parv[3], parv[1], target_p->name);
489
5203cba5 490 snprintf(squitreason, sizeof squitreason,
8e34ffc6
JT
491 "SID %s for %s already in use by %s",
492 parv[3], parv[1], target_p->name);
493 exit_client(NULL, client_p, &me, squitreason);
3c7d6fcc 494 return;
212380e3
AC
495 }
496
497 if(bogus_host(parv[1]) || strlen(parv[1]) > HOSTLEN)
498 {
499 sendto_one(client_p, "ERROR :Invalid servername");
a9227555 500 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
212380e3 501 "Link %s cancelled, servername %s invalid",
b3ebc7ab 502 client_p->name, parv[1]);
212380e3
AC
503 ilog(L_SERVER, "Link %s cancelled, servername %s invalid",
504 client_p->name, parv[1]);
505
506 exit_client(NULL, client_p, &me, "Bogus server name");
3c7d6fcc 507 return;
212380e3
AC
508 }
509
510 if(!IsDigit(parv[3][0]) || !IsIdChar(parv[3][1]) ||
511 !IsIdChar(parv[3][2]) || parv[3][3] != '\0')
512 {
513 sendto_one(client_p, "ERROR :Invalid SID");
a9227555 514 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
212380e3 515 "Link %s cancelled, SID %s invalid",
b3ebc7ab 516 client_p->name, parv[3]);
212380e3
AC
517 ilog(L_SERVER, "Link %s cancelled, SID %s invalid",
518 client_p->name, parv[3]);
519
520 exit_client(NULL, client_p, &me, "Bogus SID");
3c7d6fcc 521 return;
212380e3 522 }
212380e3
AC
523
524 /* ok, alls good */
525 target_p = make_client(client_p);
526 make_server(target_p);
527
f427c8b0 528 rb_strlcpy(target_p->name, parv[1], sizeof(target_p->name));
212380e3 529 target_p->hopcount = atoi(parv[2]);
4d5a902f 530 rb_strlcpy(target_p->id, parv[3], sizeof(target_p->id));
212380e3
AC
531 set_server_gecos(target_p, parv[4]);
532
212380e3
AC
533 target_p->servptr = source_p;
534 SetServer(target_p);
535
0e7cb7e6
JT
536 rb_dlinkAddTail(target_p, &target_p->node, &global_client_list);
537 rb_dlinkAddTailAlloc(target_p, &global_serv_list);
212380e3
AC
538 add_to_client_hash(target_p->name, target_p);
539 add_to_id_hash(target_p->id, target_p);
0e7cb7e6 540 rb_dlinkAdd(target_p, &target_p->lnode, &target_p->servptr->serv->servers);
212380e3 541
994544c2
JT
542 target_p->serv->nameinfo = scache_connect(target_p->name, target_p->info, IsHidden(target_p));
543
212380e3
AC
544 sendto_server(client_p, NULL, CAP_TS6, NOCAPS,
545 ":%s SID %s %d %s :%s%s",
546 source_p->id, target_p->name, target_p->hopcount + 1,
547 target_p->id, IsHidden(target_p) ? "(H) " : "", target_p->info);
212380e3
AC
548
549 sendto_realops_snomask(SNO_EXTERNAL, L_ALL,
550 "Server %s being introduced by %s", target_p->name, source_p->name);
551
552 /* quick, dirty EOB. you know you love it. */
553 sendto_one(target_p, ":%s PING %s %s",
554 get_id(&me, target_p), me.name, get_id(target_p, target_p));
555
556 hdata.client = source_p;
557 hdata.target = target_p;
558 call_hook(h_server_introduced, &hdata);
212380e3
AC
559}
560
561/* set_server_gecos()
562 *
563 * input - pointer to client
564 * output - none
565 * side effects - servers gecos field is set
566 */
3c7d6fcc 567static void
212380e3
AC
568set_server_gecos(struct Client *client_p, const char *info)
569{
570 /* check the info for [IP] */
571 if(info[0])
572 {
573 char *p;
574 char *s;
212380e3
AC
575
576 s = LOCAL_COPY(info);
577
578 /* we should only check the first word for an ip */
579 if((p = strchr(s, ' ')))
580 *p = '\0';
581
582 /* check for a ] which would symbolise an [IP] */
f93bc397 583 if(strchr(s, ']'))
212380e3
AC
584 {
585 /* set s to after the first space */
586 if(p)
587 s = ++p;
588 else
589 s = NULL;
590 }
591 /* no ], put the space back */
592 else if(p)
593 *p = ' ';
594
595 /* p may have been set to a trailing space, so check s exists and that
596 * it isnt \0 */
597 if(s && (*s != '\0'))
598 {
599 /* a space? if not (H) could be the last part of info.. */
600 if((p = strchr(s, ' ')))
601 *p = '\0';
602
603 /* check for (H) which is a hidden server */
604 if(!strcmp(s, "(H)"))
605 {
606 SetHidden(client_p);
607
608 /* if there was no space.. theres nothing to set info to */
609 if(p)
610 s = ++p;
611 else
612 s = NULL;
613 }
614 else if(p)
615 *p = ' ';
616
617 /* if there was a trailing space, s could point to \0, so check */
618 if(s && (*s != '\0'))
619 {
f427c8b0 620 rb_strlcpy(client_p->info, s, sizeof(client_p->info));
3c7d6fcc 621 return;
212380e3
AC
622 }
623 }
624 }
625
f427c8b0 626 rb_strlcpy(client_p->info, "(Unknown Location)", sizeof(client_p->info));
212380e3
AC
627}
628
629/*
630 * bogus_host
631 *
632 * inputs - hostname
3c7d6fcc 633 * output - true if a bogus hostname input, false if its valid
212380e3
AC
634 * side effects - none
635 */
3c7d6fcc 636static bool
212380e3
AC
637bogus_host(const char *host)
638{
3c7d6fcc 639 bool bogus_server = false;
212380e3
AC
640 const char *s;
641 int dots = 0;
642
643 for(s = host; *s; s++)
644 {
645 if(!IsServChar(*s))
646 {
3c7d6fcc 647 bogus_server = true;
212380e3
AC
648 break;
649 }
650 if('.' == *s)
651 ++dots;
652 }
653
654 if(!dots || bogus_server)
3c7d6fcc 655 return true;
212380e3 656
3c7d6fcc 657 return false;
212380e3 658}