]> jfr.im git - solanum.git/blob - modules/core/m_server.c
Remove another remnant of server hostmasking.
[solanum.git] / modules / core / m_server.c
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
23 *
24 * $Id: m_server.c 3291 2007-03-28 14:30:10Z jilles $
25 */
26
27 #include "stdinc.h"
28 #include "client.h" /* client struct */
29 #include "common.h" /* TRUE bleah */
30 #include "hash.h" /* add_to_client_hash */
31 #include "match.h"
32 #include "ircd.h" /* me */
33 #include "numeric.h" /* ERR_xxx */
34 #include "s_conf.h" /* struct ConfItem */
35 #include "s_newconf.h"
36 #include "logger.h" /* log level defines */
37 #include "s_serv.h" /* server_estab, check_server */
38 #include "s_stats.h" /* ServerStats */
39 #include "scache.h"
40 #include "send.h" /* sendto_one */
41 #include "msg.h"
42 #include "parse.h"
43 #include "modules.h"
44
45 static int mr_server(struct Client *, struct Client *, int, const char **);
46 static int ms_server(struct Client *, struct Client *, int, const char **);
47 static int ms_sid(struct Client *, struct Client *, int, const char **);
48
49 struct Message server_msgtab = {
50 "SERVER", 0, 0, 0, MFLG_SLOW | MFLG_UNREG,
51 {{mr_server, 4}, mg_reg, mg_ignore, {ms_server, 4}, mg_ignore, mg_reg}
52 };
53 struct Message sid_msgtab = {
54 "SID", 0, 0, 0, MFLG_SLOW,
55 {mg_ignore, mg_reg, mg_ignore, {ms_sid, 5}, mg_ignore, mg_reg}
56 };
57
58 mapi_clist_av1 server_clist[] = { &server_msgtab, &sid_msgtab, NULL };
59
60 DECLARE_MODULE_AV1(server, NULL, NULL, server_clist, NULL, NULL, "$Revision: 3291 $");
61
62 int bogus_host(const char *host);
63 static int set_server_gecos(struct Client *, const char *);
64
65 /*
66 * mr_server - SERVER message handler
67 * parv[0] = sender prefix
68 * parv[1] = servername
69 * parv[2] = serverinfo/hopcount
70 * parv[3] = serverinfo
71 */
72 static int
73 mr_server(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
74 {
75 char info[REALLEN + 1];
76 const char *name;
77 struct Client *target_p;
78 int hop;
79
80 name = parv[1];
81 hop = atoi(parv[2]);
82 rb_strlcpy(info, parv[3], sizeof(info));
83
84 if (IsHandshake(client_p) && irccmp(client_p->name, name))
85 {
86 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
87 "Server %s has unexpected name %s",
88 client_p->name, name);
89 ilog(L_SERVER, "Server %s has unexpected name %s",
90 log_client_name(client_p, SHOW_IP), name);
91 exit_client(client_p, client_p, client_p, "Server name mismatch");
92 return 0;
93 }
94
95 /*
96 * Reject a direct nonTS server connection if we're TS_ONLY -orabidoo
97 */
98 if(!DoesTS(client_p))
99 {
100 sendto_realops_snomask(SNO_GENERAL, L_ALL, "Link %s dropped, non-TS server",
101 client_p->name);
102 exit_client(client_p, client_p, client_p, "Non-TS server");
103 return 0;
104 }
105
106 if(bogus_host(name))
107 {
108 exit_client(client_p, client_p, client_p, "Bogus server name");
109 return 0;
110 }
111
112 /* Now we just have to call check_server and everything should be
113 * check for us... -A1kmm. */
114 switch (check_server(name, client_p))
115 {
116 case -1:
117 if(ConfigFileEntry.warn_no_nline)
118 {
119 sendto_realops_snomask(SNO_GENERAL, L_ALL,
120 "Unauthorised server connection attempt from %s: "
121 "No entry for servername %s",
122 client_p->name, name);
123
124 ilog(L_SERVER, "Access denied, no connect block for server %s%s",
125 EmptyString(client_p->name) ? name : "",
126 log_client_name(client_p, SHOW_IP));
127 }
128
129 exit_client(client_p, client_p, client_p, "Invalid servername.");
130 return 0;
131 /* NOT REACHED */
132 break;
133
134 case -2:
135 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
136 "Unauthorised server connection attempt from %s: "
137 "Bad password for server %s",
138 client_p->name, name);
139
140 ilog(L_SERVER, "Access denied, invalid password for server %s%s",
141 EmptyString(client_p->name) ? name : "",
142 log_client_name(client_p, SHOW_IP));
143
144 exit_client(client_p, client_p, client_p, "Invalid password.");
145 return 0;
146 /* NOT REACHED */
147 break;
148
149 case -3:
150 sendto_realops_snomask(SNO_GENERAL, L_ALL,
151 "Unauthorised server connection attempt from %s: "
152 "Invalid host for server %s",
153 client_p->name, name);
154
155 ilog(L_SERVER, "Access denied, invalid host for server %s%s",
156 EmptyString(client_p->name) ? name : "",
157 log_client_name(client_p, SHOW_IP));
158
159 exit_client(client_p, client_p, client_p, "Invalid host.");
160 return 0;
161 /* NOT REACHED */
162 break;
163
164 /* servername is > HOSTLEN */
165 case -4:
166 sendto_realops_snomask(SNO_GENERAL, L_ALL,
167 "Invalid servername %s from %s",
168 name, client_p->name);
169 ilog(L_SERVER, "Access denied, invalid servername from %s",
170 log_client_name(client_p, SHOW_IP));
171
172 exit_client(client_p, client_p, client_p, "Invalid servername.");
173 return 0;
174 /* NOT REACHED */
175 break;
176 case -5:
177 sendto_realops_snomask(SNO_GENERAL, L_ALL,
178 "Connection from servername %s requires SSL/TLS but is plaintext",
179 name);
180 ilog(L_SERVER, "Access denied, requires SSL/TLS but is plaintext from %s",
181 log_client_name(client_p, SHOW_IP));
182
183 exit_client(client_p, client_p, client_p, "Access denied, requires SSL/TLS but is plaintext");
184 return 0;
185 }
186
187 /* require TS6 for direct links */
188 if(!IsCapable(client_p, CAP_TS6))
189 {
190 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
191 "Link %s dropped, TS6 protocol is required", name);
192 exit_client(client_p, client_p, client_p, "Incompatible TS version");
193 return 0;
194 }
195
196 if((target_p = find_server(NULL, name)))
197 {
198 /*
199 * This link is trying feed me a server that I already have
200 * access through another path -- multiple paths not accepted
201 * currently, kill this link immediately!!
202 *
203 * Rather than KILL the link which introduced it, KILL the
204 * youngest of the two links. -avalon
205 *
206 * Definitely don't do that here. This is from an unregistered
207 * connect - A1kmm.
208 */
209 sendto_realops_snomask(SNO_GENERAL, L_ALL,
210 "Attempt to re-introduce server %s from %s",
211 name, client_p->name);
212 ilog(L_SERVER, "Attempt to re-introduce server %s from %s",
213 name, log_client_name(client_p, SHOW_IP));
214
215 sendto_one(client_p, "ERROR :Server already exists.");
216 exit_client(client_p, client_p, client_p, "Server Exists");
217 return 0;
218 }
219
220 if(has_id(client_p) && (target_p = find_id(client_p->id)) != NULL)
221 {
222 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
223 "Attempt to re-introduce SID %s from %s%s",
224 client_p->id,
225 EmptyString(client_p->name) ? name : "",
226 client_p->name);
227 ilog(L_SERVER, "Attempt to re-introduce SID %s from %s%s",
228 client_p->id,
229 EmptyString(client_p->name) ? name : "",
230 log_client_name(client_p, SHOW_IP));
231
232 sendto_one(client_p, "ERROR :SID already exists.");
233 exit_client(client_p, client_p, client_p, "SID Exists");
234 return 0;
235 }
236
237 /*
238 * if we are connecting (Handshake), we already have the name from the
239 * C:line in client_p->name
240 */
241
242 rb_strlcpy(client_p->name, name, sizeof(client_p->name));
243 set_server_gecos(client_p, info);
244 client_p->hopcount = hop;
245 server_estab(client_p);
246
247 return 0;
248 }
249
250 /*
251 * ms_server - SERVER message handler
252 * parv[0] = sender prefix
253 * parv[1] = servername
254 * parv[2] = serverinfo/hopcount
255 * parv[3] = serverinfo
256 */
257 static int
258 ms_server(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
259 {
260 char info[REALLEN + 1];
261 /* same size as in s_misc.c */
262 const char *name;
263 struct Client *target_p;
264 struct remote_conf *hub_p;
265 hook_data_client hdata;
266 int hop;
267 int hlined = 0;
268 int llined = 0;
269 rb_dlink_node *ptr;
270
271 name = parv[1];
272 hop = atoi(parv[2]);
273 rb_strlcpy(info, parv[3], sizeof(info));
274
275 if((target_p = find_server(NULL, name)))
276 {
277 /*
278 * This link is trying feed me a server that I already have
279 * access through another path -- multiple paths not accepted
280 * currently, kill this link immediately!!
281 *
282 * Rather than KILL the link which introduced it, KILL the
283 * youngest of the two links. -avalon
284 *
285 * I think that we should exit the link itself, not the introducer,
286 * and we should always exit the most recently received(i.e. the
287 * one we are receiving this SERVER for. -A1kmm
288 *
289 * You *cant* do this, if you link somewhere, it bursts you a server
290 * that already exists, then sends you a client burst, you squit the
291 * server, but you keep getting the burst of clients on a server that
292 * doesnt exist, although ircd can handle it, its not a realistic
293 * solution.. --fl_
294 */
295 sendto_one(client_p, "ERROR :Server %s already exists", name);
296
297 sendto_realops_snomask(SNO_GENERAL, L_ALL,
298 "Link %s cancelled, server %s already exists",
299 client_p->name, name);
300 ilog(L_SERVER, "Link %s cancelled, server %s already exists",
301 client_p->name, name);
302
303 exit_client(client_p, client_p, &me, "Server Exists");
304 return 0;
305 }
306
307 /*
308 * User nicks never have '.' in them and server names
309 * must always have '.' in them.
310 */
311 if(strchr(name, '.') == NULL)
312 {
313 /*
314 * Server trying to use the same name as a person. Would
315 * cause a fair bit of confusion. Enough to make it hellish
316 * for a while and servers to send stuff to the wrong place.
317 */
318 sendto_one(client_p, "ERROR :Nickname %s already exists!", name);
319 sendto_realops_snomask(SNO_GENERAL, L_ALL,
320 "Link %s cancelled: Server/nick collision on %s",
321 client_p->name, name);
322 ilog(L_SERVER, "Link %s cancelled: Server/nick collision on %s",
323 client_p->name, name);
324
325 exit_client(client_p, client_p, client_p, "Nick as Server");
326 return 0;
327 }
328
329 /*
330 * Server is informing about a new server behind
331 * this link. Create REMOTE server structure,
332 * add it to list and propagate word to my other
333 * server links...
334 */
335 if(parc == 1 || EmptyString(info))
336 {
337 sendto_one(client_p, "ERROR :No server info specified for %s", name);
338 return 0;
339 }
340
341 /*
342 * See if the newly found server is behind a guaranteed
343 * leaf. If so, close the link.
344 *
345 */
346 RB_DLINK_FOREACH(ptr, hubleaf_conf_list.head)
347 {
348 hub_p = ptr->data;
349
350 if(match(hub_p->server, client_p->name) && match(hub_p->host, name))
351 {
352 if(hub_p->flags & CONF_HUB)
353 hlined++;
354 else
355 llined++;
356 }
357 }
358
359 /* Ok, this way this works is
360 *
361 * A server can have a CONF_HUB allowing it to introduce servers
362 * behind it.
363 *
364 * connect {
365 * name = "irc.bighub.net";
366 * hub_mask="*";
367 * ...
368 *
369 * That would allow "irc.bighub.net" to introduce anything it wanted..
370 *
371 * However
372 *
373 * connect {
374 * name = "irc.somehub.fi";
375 * hub_mask="*";
376 * leaf_mask="*.edu";
377 *...
378 * Would allow this server in finland to hub anything but
379 * .edu's
380 */
381
382 /* Ok, check client_p can hub the new server, and make sure it's not a LL */
383 if(!hlined)
384 {
385 /* OOOPs nope can't HUB */
386 sendto_realops_snomask(SNO_GENERAL, L_ALL, "Non-Hub link %s introduced %s.",
387 client_p->name, name);
388 ilog(L_SERVER, "Non-Hub link %s introduced %s.",
389 client_p->name, name);
390
391 exit_client(NULL, client_p, &me, "No matching hub_mask.");
392 return 0;
393 }
394
395 /* Check for the new server being leafed behind this HUB */
396 if(llined)
397 {
398 /* OOOPs nope can't HUB this leaf */
399 sendto_realops_snomask(SNO_GENERAL, L_ALL,
400 "Link %s introduced leafed server %s.",
401 client_p->name, name);
402 ilog(L_SERVER, "Link %s introduced leafed server %s.",
403 client_p->name, name);
404
405 exit_client(NULL, client_p, &me, "Leafed Server.");
406 return 0;
407 }
408
409
410
411 if(strlen(name) > HOSTLEN)
412 {
413 sendto_realops_snomask(SNO_GENERAL, L_ALL,
414 "Link %s introduced server with invalid servername %s",
415 client_p->name, name);
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.");
420 return 0;
421 }
422
423 target_p = make_client(client_p);
424 make_server(target_p);
425 target_p->hopcount = hop;
426
427 rb_strlcpy(target_p->name, name, sizeof(target_p->name));
428
429 set_server_gecos(target_p, info);
430
431 target_p->servptr = source_p;
432
433 SetServer(target_p);
434
435 rb_dlinkAddTail(target_p, &target_p->node, &global_client_list);
436 rb_dlinkAddTailAlloc(target_p, &global_serv_list);
437 add_to_client_hash(target_p->name, target_p);
438 rb_dlinkAdd(target_p, &target_p->lnode, &target_p->servptr->serv->servers);
439
440 target_p->serv->nameinfo = scache_connect(target_p->name, target_p->info, IsHidden(target_p));
441
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);
456
457 return 0;
458 }
459
460 static int
461 ms_sid(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
462 {
463 struct Client *target_p;
464 struct remote_conf *hub_p;
465 hook_data_client hdata;
466 rb_dlink_node *ptr;
467 int hop;
468 int hlined = 0;
469 int llined = 0;
470
471 hop = atoi(parv[2]);
472
473 /* collision on the name? */
474 if((target_p = find_server(NULL, parv[1])) != NULL)
475 {
476 sendto_one(client_p, "ERROR :Server %s already exists", parv[1]);
477 sendto_realops_snomask(SNO_GENERAL, L_ALL,
478 "Link %s cancelled, server %s already exists",
479 client_p->name, parv[1]);
480 ilog(L_SERVER, "Link %s cancelled, server %s already exists",
481 client_p->name, parv[1]);
482
483 exit_client(NULL, client_p, &me, "Server Exists");
484 return 0;
485 }
486
487 /* collision on the SID? */
488 if((target_p = find_id(parv[3])) != NULL)
489 {
490 sendto_one(client_p, "ERROR :SID %s already exists", parv[3]);
491 sendto_realops_snomask(SNO_GENERAL, L_ALL,
492 "Link %s cancelled, SID %s already exists",
493 client_p->name, parv[3]);
494 ilog(L_SERVER, "Link %s cancelled, SID %s already exists",
495 client_p->name, parv[3]);
496
497 exit_client(NULL, client_p, &me, "SID Exists");
498 return 0;
499 }
500
501 if(bogus_host(parv[1]) || strlen(parv[1]) > HOSTLEN)
502 {
503 sendto_one(client_p, "ERROR :Invalid servername");
504 sendto_realops_snomask(SNO_GENERAL, L_ALL,
505 "Link %s cancelled, servername %s invalid",
506 client_p->name, parv[1]);
507 ilog(L_SERVER, "Link %s cancelled, servername %s invalid",
508 client_p->name, parv[1]);
509
510 exit_client(NULL, client_p, &me, "Bogus server name");
511 return 0;
512 }
513
514 if(!IsDigit(parv[3][0]) || !IsIdChar(parv[3][1]) ||
515 !IsIdChar(parv[3][2]) || parv[3][3] != '\0')
516 {
517 sendto_one(client_p, "ERROR :Invalid SID");
518 sendto_realops_snomask(SNO_GENERAL, L_ALL,
519 "Link %s cancelled, SID %s invalid",
520 client_p->name, parv[3]);
521 ilog(L_SERVER, "Link %s cancelled, SID %s invalid",
522 client_p->name, parv[3]);
523
524 exit_client(NULL, client_p, &me, "Bogus SID");
525 return 0;
526 }
527
528 /* for the directly connected server:
529 * H: allows it to introduce a server matching that mask
530 * L: disallows it introducing a server matching that mask
531 */
532 RB_DLINK_FOREACH(ptr, hubleaf_conf_list.head)
533 {
534 hub_p = ptr->data;
535
536 if(match(hub_p->server, client_p->name) && match(hub_p->host, parv[1]))
537 {
538 if(hub_p->flags & CONF_HUB)
539 hlined++;
540 else
541 llined++;
542 }
543 }
544
545 /* no matching hub_mask */
546 if(!hlined)
547 {
548 sendto_one(client_p, "ERROR :No matching hub_mask");
549 sendto_realops_snomask(SNO_GENERAL, L_ALL,
550 "Non-Hub link %s introduced %s.",
551 client_p->name, parv[1]);
552 ilog(L_SERVER, "Non-Hub link %s introduced %s.",
553 client_p->name, parv[1]);
554 exit_client(NULL, client_p, &me, "No matching hub_mask.");
555 return 0;
556 }
557
558 /* matching leaf_mask */
559 if(llined)
560 {
561 sendto_one(client_p, "ERROR :Matching leaf_mask");
562 sendto_realops_snomask(SNO_GENERAL, L_ALL,
563 "Link %s introduced leafed server %s.",
564 client_p->name, parv[1]);
565 ilog(L_SERVER, "Link %s introduced leafed server %s.",
566 client_p->name, parv[1]);
567 exit_client(NULL, client_p, &me, "Leafed Server.");
568 return 0;
569 }
570
571 /* ok, alls good */
572 target_p = make_client(client_p);
573 make_server(target_p);
574
575 rb_strlcpy(target_p->name, parv[1], sizeof(target_p->name));
576 target_p->hopcount = atoi(parv[2]);
577 strcpy(target_p->id, parv[3]);
578 set_server_gecos(target_p, parv[4]);
579
580 target_p->servptr = source_p;
581 SetServer(target_p);
582
583 rb_dlinkAddTail(target_p, &target_p->node, &global_client_list);
584 rb_dlinkAddTailAlloc(target_p, &global_serv_list);
585 add_to_client_hash(target_p->name, target_p);
586 add_to_id_hash(target_p->id, target_p);
587 rb_dlinkAdd(target_p, &target_p->lnode, &target_p->servptr->serv->servers);
588
589 target_p->serv->nameinfo = scache_connect(target_p->name, target_p->info, IsHidden(target_p));
590
591 sendto_server(client_p, NULL, CAP_TS6, NOCAPS,
592 ":%s SID %s %d %s :%s%s",
593 source_p->id, target_p->name, target_p->hopcount + 1,
594 target_p->id, IsHidden(target_p) ? "(H) " : "", target_p->info);
595
596 sendto_realops_snomask(SNO_EXTERNAL, L_ALL,
597 "Server %s being introduced by %s", target_p->name, source_p->name);
598
599 /* quick, dirty EOB. you know you love it. */
600 sendto_one(target_p, ":%s PING %s %s",
601 get_id(&me, target_p), me.name, get_id(target_p, target_p));
602
603 hdata.client = source_p;
604 hdata.target = target_p;
605 call_hook(h_server_introduced, &hdata);
606
607 return 0;
608 }
609
610 /* set_server_gecos()
611 *
612 * input - pointer to client
613 * output - none
614 * side effects - servers gecos field is set
615 */
616 static int
617 set_server_gecos(struct Client *client_p, const char *info)
618 {
619 /* check the info for [IP] */
620 if(info[0])
621 {
622 char *p;
623 char *s;
624 char *t;
625
626 s = LOCAL_COPY(info);
627
628 /* we should only check the first word for an ip */
629 if((p = strchr(s, ' ')))
630 *p = '\0';
631
632 /* check for a ] which would symbolise an [IP] */
633 if((t = strchr(s, ']')))
634 {
635 /* set s to after the first space */
636 if(p)
637 s = ++p;
638 else
639 s = NULL;
640 }
641 /* no ], put the space back */
642 else if(p)
643 *p = ' ';
644
645 /* p may have been set to a trailing space, so check s exists and that
646 * it isnt \0 */
647 if(s && (*s != '\0'))
648 {
649 /* a space? if not (H) could be the last part of info.. */
650 if((p = strchr(s, ' ')))
651 *p = '\0';
652
653 /* check for (H) which is a hidden server */
654 if(!strcmp(s, "(H)"))
655 {
656 SetHidden(client_p);
657
658 /* if there was no space.. theres nothing to set info to */
659 if(p)
660 s = ++p;
661 else
662 s = NULL;
663 }
664 else if(p)
665 *p = ' ';
666
667 /* if there was a trailing space, s could point to \0, so check */
668 if(s && (*s != '\0'))
669 {
670 rb_strlcpy(client_p->info, s, sizeof(client_p->info));
671 return 1;
672 }
673 }
674 }
675
676 rb_strlcpy(client_p->info, "(Unknown Location)", sizeof(client_p->info));
677
678 return 1;
679 }
680
681 /*
682 * bogus_host
683 *
684 * inputs - hostname
685 * output - 1 if a bogus hostname input, 0 if its valid
686 * side effects - none
687 */
688 int
689 bogus_host(const char *host)
690 {
691 int bogus_server = 0;
692 const char *s;
693 int dots = 0;
694
695 for(s = host; *s; s++)
696 {
697 if(!IsServChar(*s))
698 {
699 bogus_server = 1;
700 break;
701 }
702 if('.' == *s)
703 ++dots;
704 }
705
706 if(!dots || bogus_server)
707 return 1;
708
709 return 0;
710 }