]> jfr.im git - irc/rqf/shadowircd.git/blob - src/s_serv.c
Note that blacklist{} only accepts host/reason pairs, no host+host+reason.
[irc/rqf/shadowircd.git] / src / s_serv.c
1 /*
2 * ircd-ratbox: A slightly useful ircd.
3 * s_serv.c: Server related functions.
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: s_serv.c 3550 2007-08-09 06:47:26Z nenolod $
25 */
26
27 #include "stdinc.h"
28
29 #ifdef HAVE_LIBCRYPTO
30 #include <openssl/rsa.h>
31 #endif
32
33 #include "s_serv.h"
34 #include "class.h"
35 #include "client.h"
36 #include "common.h"
37 #include "hash.h"
38 #include "match.h"
39 #include "ircd.h"
40 #include "ircd_defs.h"
41 #include "numeric.h"
42 #include "packet.h"
43 #include "res.h"
44 #include "s_conf.h"
45 #include "s_newconf.h"
46 #include "logger.h"
47 #include "s_stats.h"
48 #include "s_user.h"
49 #include "scache.h"
50 #include "send.h"
51 #include "client.h"
52 #include "channel.h" /* chcap_usage_counts stuff... */
53 #include "hook.h"
54 #include "msg.h"
55 #include "reject.h"
56 #include "sslproc.h"
57
58 #ifndef INADDR_NONE
59 #define INADDR_NONE ((unsigned int) 0xffffffff)
60 #endif
61
62 int MaxConnectionCount = 1;
63 int MaxClientCount = 1;
64 int refresh_user_links = 0;
65
66 static char buf[BUFSIZE];
67
68 /*
69 * list of recognized server capabilities. "TS" is not on the list
70 * because all servers that we talk to already do TS, and the kludged
71 * extra argument to "PASS" takes care of checking that. -orabidoo
72 */
73 struct Capability captab[] = {
74 /* name cap */
75 { "QS", CAP_QS },
76 { "EX", CAP_EX },
77 { "CHW", CAP_CHW},
78 { "IE", CAP_IE},
79 { "KLN", CAP_KLN},
80 { "KNOCK", CAP_KNOCK},
81 { "ZIP", CAP_ZIP},
82 { "TB", CAP_TB},
83 { "UNKLN", CAP_UNKLN},
84 { "CLUSTER", CAP_CLUSTER},
85 { "ENCAP", CAP_ENCAP },
86 { "SERVICES", CAP_SERVICE },
87 { "RSFNC", CAP_RSFNC },
88 { "SAVE", CAP_SAVE },
89 { "EUID", CAP_EUID },
90 { "EOPMOD", CAP_EOPMOD },
91 {0, 0}
92 };
93
94 static CNCB serv_connect_callback;
95 static CNCB serv_connect_ssl_callback;
96
97 /*
98 * hunt_server - Do the basic thing in delivering the message (command)
99 * across the relays to the specific server (server) for
100 * actions.
101 *
102 * Note: The command is a format string and *MUST* be
103 * of prefixed style (e.g. ":%s COMMAND %s ...").
104 * Command can have only max 8 parameters.
105 *
106 * server parv[server] is the parameter identifying the
107 * target server.
108 *
109 * *WARNING*
110 * parv[server] is replaced with the pointer to the
111 * real servername from the matched client (I'm lazy
112 * now --msa).
113 *
114 * returns: (see #defines)
115 */
116 int
117 hunt_server(struct Client *client_p, struct Client *source_p,
118 const char *command, int server, int parc, const char *parv[])
119 {
120 struct Client *target_p;
121 int wilds;
122 rb_dlink_node *ptr;
123 const char *old;
124 char *new;
125
126 /*
127 * Assume it's me, if no server
128 */
129 if(parc <= server || EmptyString(parv[server]) ||
130 match(parv[server], me.name) || (strcmp(parv[server], me.id) == 0))
131 return (HUNTED_ISME);
132
133 new = LOCAL_COPY(parv[server]);
134
135 /*
136 * These are to pickup matches that would cause the following
137 * message to go in the wrong direction while doing quick fast
138 * non-matching lookups.
139 */
140 if(MyClient(source_p))
141 target_p = find_named_client(new);
142 else
143 target_p = find_client(new);
144
145 if(target_p)
146 if(target_p->from == source_p->from && !MyConnect(target_p))
147 target_p = NULL;
148
149 collapse(new);
150 wilds = (strchr(new, '?') || strchr(new, '*'));
151
152 /*
153 * Again, if there are no wild cards involved in the server
154 * name, use the hash lookup
155 */
156 if(!target_p && wilds)
157 {
158 RB_DLINK_FOREACH(ptr, global_client_list.head)
159 {
160 if(match(new, ((struct Client *) (ptr->data))->name))
161 {
162 target_p = ptr->data;
163 break;
164 }
165 }
166 }
167
168 if(target_p && !IsRegistered(target_p))
169 target_p = NULL;
170
171 if(target_p)
172 {
173 if(IsMe(target_p) || MyClient(target_p))
174 return HUNTED_ISME;
175
176 old = parv[server];
177 parv[server] = get_id(target_p, target_p);
178
179 sendto_one(target_p, command, get_id(source_p, target_p),
180 parv[1], parv[2], parv[3], parv[4], parv[5], parv[6], parv[7], parv[8]);
181 parv[server] = old;
182 return (HUNTED_PASS);
183 }
184
185 if(MyClient(source_p) || !IsDigit(parv[server][0]))
186 sendto_one_numeric(source_p, ERR_NOSUCHSERVER,
187 form_str(ERR_NOSUCHSERVER), parv[server]);
188 return (HUNTED_NOSUCH);
189 }
190
191 /*
192 * try_connections - scan through configuration and try new connections.
193 * Returns the calendar time when the next call to this
194 * function should be made latest. (No harm done if this
195 * is called earlier or later...)
196 */
197 void
198 try_connections(void *unused)
199 {
200 struct Client *client_p;
201 struct server_conf *server_p = NULL;
202 struct server_conf *tmp_p;
203 struct Class *cltmp;
204 rb_dlink_node *ptr;
205 int connecting = FALSE;
206 int confrq = 0;
207 time_t next = 0;
208
209 RB_DLINK_FOREACH(ptr, server_conf_list.head)
210 {
211 tmp_p = ptr->data;
212
213 if(ServerConfIllegal(tmp_p) || !ServerConfAutoconn(tmp_p))
214 continue;
215
216 /* don't allow ssl connections if ssl isn't setup */
217 if(ServerConfSSL(tmp_p) && (!ssl_ok || !get_ssld_count()))
218 continue;
219
220 cltmp = tmp_p->class;
221
222 /*
223 * Skip this entry if the use of it is still on hold until
224 * future. Otherwise handle this entry (and set it on hold
225 * until next time). Will reset only hold times, if already
226 * made one successfull connection... [this algorithm is
227 * a bit fuzzy... -- msa >;) ]
228 */
229 if(tmp_p->hold > rb_current_time())
230 {
231 if(next > tmp_p->hold || next == 0)
232 next = tmp_p->hold;
233 continue;
234 }
235
236 confrq = get_con_freq(cltmp);
237 tmp_p->hold = rb_current_time() + confrq;
238
239 /*
240 * Found a CONNECT config with port specified, scan clients
241 * and see if this server is already connected?
242 */
243 client_p = find_server(NULL, tmp_p->name);
244
245 if(!client_p && (CurrUsers(cltmp) < MaxUsers(cltmp)) && !connecting)
246 {
247 server_p = tmp_p;
248
249 /* We connect only one at time... */
250 connecting = TRUE;
251 }
252
253 if((next > tmp_p->hold) || (next == 0))
254 next = tmp_p->hold;
255 }
256
257 /* TODO: change this to set active flag to 0 when added to event! --Habeeb */
258 if(GlobalSetOptions.autoconn == 0)
259 return;
260
261 if(!connecting)
262 return;
263
264 /* move this connect entry to end.. */
265 rb_dlinkDelete(&server_p->node, &server_conf_list);
266 rb_dlinkAddTail(server_p, &server_p->node, &server_conf_list);
267
268 /*
269 * We used to only print this if serv_connect() actually
270 * suceeded, but since rb_tcp_connect() can call the callback
271 * immediately if there is an error, we were getting error messages
272 * in the wrong order. SO, we just print out the activated line,
273 * and let serv_connect() / serv_connect_callback() print an
274 * error afterwards if it fails.
275 * -- adrian
276 */
277 sendto_realops_snomask(SNO_GENERAL, L_ALL,
278 "Connection to %s activated",
279 server_p->name);
280
281 serv_connect(server_p, 0);
282 }
283
284 int
285 check_server(const char *name, struct Client *client_p)
286 {
287 struct server_conf *server_p = NULL;
288 struct server_conf *tmp_p;
289 rb_dlink_node *ptr;
290 int error = -1;
291
292 s_assert(NULL != client_p);
293 if(client_p == NULL)
294 return error;
295
296 if(!(client_p->localClient->passwd))
297 return -2;
298
299 if(strlen(name) > HOSTLEN)
300 return -4;
301
302 RB_DLINK_FOREACH(ptr, server_conf_list.head)
303 {
304 tmp_p = ptr->data;
305
306 if(ServerConfIllegal(tmp_p))
307 continue;
308
309 if(!match(tmp_p->name, name))
310 continue;
311
312 error = -3;
313
314 /* XXX: Fix me for IPv6 */
315 /* XXX sockhost is the IPv4 ip as a string */
316 if(match(tmp_p->host, client_p->host) ||
317 match(tmp_p->host, client_p->sockhost))
318 {
319 error = -2;
320
321 if(ServerConfEncrypted(tmp_p))
322 {
323 if(!strcmp(tmp_p->passwd, rb_crypt(client_p->localClient->passwd,
324 tmp_p->passwd)))
325 {
326 server_p = tmp_p;
327 break;
328 }
329 }
330 else if(!strcmp(tmp_p->passwd, client_p->localClient->passwd))
331 {
332 server_p = tmp_p;
333 break;
334 }
335 }
336 }
337
338 if(server_p == NULL)
339 return error;
340
341 if(ServerConfSSL(server_p) && client_p->localClient->ssl_ctl == NULL)
342 {
343 return -5;
344 }
345
346 attach_server_conf(client_p, server_p);
347
348 /* clear ZIP/TB if they support but we dont want them */
349 #ifdef HAVE_LIBZ
350 if(!ServerConfCompressed(server_p))
351 #endif
352 ClearCap(client_p, CAP_ZIP);
353
354 if(!ServerConfTb(server_p))
355 ClearCap(client_p, CAP_TB);
356
357 return 0;
358 }
359
360 /*
361 * send_capabilities
362 *
363 * inputs - Client pointer to send to
364 * - int flag of capabilities that this server has
365 * output - NONE
366 * side effects - send the CAPAB line to a server -orabidoo
367 *
368 */
369 void
370 send_capabilities(struct Client *client_p, int cap_can_send)
371 {
372 struct Capability *cap;
373 char msgbuf[BUFSIZE];
374 char *t;
375 int tl;
376
377 t = msgbuf;
378
379 for (cap = captab; cap->name; ++cap)
380 {
381 if(cap->cap & cap_can_send)
382 {
383 tl = rb_sprintf(t, "%s ", cap->name);
384 t += tl;
385 }
386 }
387
388 t--;
389 *t = '\0';
390
391 sendto_one(client_p, "CAPAB :%s", msgbuf);
392 }
393
394 /* burst_modes_TS6()
395 *
396 * input - client to burst to, channel name, list to burst, mode flag
397 * output -
398 * side effects - client is sent a list of +b, +e, or +I modes
399 */
400 static void
401 burst_modes_TS6(struct Client *client_p, struct Channel *chptr,
402 rb_dlink_list *list, char flag)
403 {
404 rb_dlink_node *ptr;
405 struct Ban *banptr;
406 char *t;
407 int tlen;
408 int mlen;
409 int cur_len;
410
411 cur_len = mlen = rb_sprintf(buf, ":%s BMASK %ld %s %c :",
412 me.id, (long) chptr->channelts, chptr->chname, flag);
413 t = buf + mlen;
414
415 RB_DLINK_FOREACH(ptr, list->head)
416 {
417 banptr = ptr->data;
418
419 tlen = strlen(banptr->banstr) + 1;
420
421 /* uh oh */
422 if(cur_len + tlen > BUFSIZE - 3)
423 {
424 /* the one we're trying to send doesnt fit at all! */
425 if(cur_len == mlen)
426 {
427 s_assert(0);
428 continue;
429 }
430
431 /* chop off trailing space and send.. */
432 *(t-1) = '\0';
433 sendto_one(client_p, "%s", buf);
434 cur_len = mlen;
435 t = buf + mlen;
436 }
437
438 rb_sprintf(t, "%s ", banptr->banstr);
439 t += tlen;
440 cur_len += tlen;
441 }
442
443 /* cant ever exit the loop above without having modified buf,
444 * chop off trailing space and send.
445 */
446 *(t-1) = '\0';
447 sendto_one(client_p, "%s", buf);
448 }
449
450 /*
451 * burst_TS6
452 *
453 * inputs - client (server) to send nick towards
454 * - client to send nick for
455 * output - NONE
456 * side effects - NICK message is sent towards given client_p
457 */
458 static void
459 burst_TS6(struct Client *client_p)
460 {
461 static char ubuf[12];
462 struct Client *target_p;
463 struct Channel *chptr;
464 struct membership *msptr;
465 hook_data_client hclientinfo;
466 hook_data_channel hchaninfo;
467 rb_dlink_node *ptr;
468 rb_dlink_node *uptr;
469 char *t;
470 int tlen, mlen;
471 int cur_len = 0;
472
473 hclientinfo.client = hchaninfo.client = client_p;
474
475 RB_DLINK_FOREACH(ptr, global_client_list.head)
476 {
477 const char *awaymsg = NULL;
478
479 target_p = ptr->data;
480
481 if(!IsPerson(target_p))
482 continue;
483
484 send_umode(NULL, target_p, 0, 0, ubuf);
485 if(!*ubuf)
486 {
487 ubuf[0] = '+';
488 ubuf[1] = '\0';
489 }
490
491 if(IsCapable(client_p, CAP_EUID))
492 sendto_one(client_p, ":%s EUID %s %d %ld %s %s %s %s %s %s %s :%s",
493 target_p->servptr->id, target_p->name,
494 target_p->hopcount + 1,
495 (long) target_p->tsinfo, ubuf,
496 target_p->username, target_p->host,
497 IsIPSpoof(target_p) ? "0" : target_p->sockhost,
498 target_p->id,
499 IsDynSpoof(target_p) ? target_p->orighost : "*",
500 EmptyString(target_p->user->suser) ? "*" : target_p->user->suser,
501 target_p->info);
502 else
503 sendto_one(client_p, ":%s UID %s %d %ld %s %s %s %s %s :%s",
504 target_p->servptr->id, target_p->name,
505 target_p->hopcount + 1,
506 (long) target_p->tsinfo, ubuf,
507 target_p->username, target_p->host,
508 IsIPSpoof(target_p) ? "0" : target_p->sockhost,
509 target_p->id, target_p->info);
510
511 if(!IsCapable(client_p, CAP_EUID))
512 {
513 if(IsDynSpoof(target_p))
514 sendto_one(client_p, ":%s ENCAP * REALHOST %s",
515 use_id(target_p), target_p->orighost);
516 if(!EmptyString(target_p->user->suser))
517 sendto_one(client_p, ":%s ENCAP * LOGIN %s",
518 use_id(target_p), target_p->user->suser);
519 }
520
521 if(ConfigFileEntry.burst_away && (awaymsg = get_metadata(target_p, "away")) != NULL)
522 sendto_one(client_p, ":%s AWAY :%s",
523 use_id(target_p),
524 awaymsg);
525
526 hclientinfo.target = target_p;
527 call_hook(h_burst_client, &hclientinfo);
528 }
529
530 RB_DLINK_FOREACH(ptr, global_channel_list.head)
531 {
532 chptr = ptr->data;
533
534 if(*chptr->chname != '#')
535 continue;
536
537 cur_len = mlen = rb_sprintf(buf, ":%s SJOIN %ld %s %s :", me.id,
538 (long) chptr->channelts, chptr->chname,
539 channel_modes(chptr, client_p));
540
541 t = buf + mlen;
542
543 RB_DLINK_FOREACH(uptr, chptr->members.head)
544 {
545 msptr = uptr->data;
546
547 tlen = strlen(use_id(msptr->client_p)) + 1;
548 if(is_chanop(msptr))
549 tlen++;
550 if(is_voiced(msptr))
551 tlen++;
552
553 if(cur_len + tlen >= BUFSIZE - 3)
554 {
555 *(t-1) = '\0';
556 sendto_one(client_p, "%s", buf);
557 cur_len = mlen;
558 t = buf + mlen;
559 }
560
561 rb_sprintf(t, "%s%s ", find_channel_status(msptr, 1),
562 use_id(msptr->client_p));
563
564 cur_len += tlen;
565 t += tlen;
566 }
567
568 if (rb_dlink_list_length(&chptr->members) > 0)
569 {
570 /* remove trailing space */
571 *(t-1) = '\0';
572 }
573 sendto_one(client_p, "%s", buf);
574
575 if(rb_dlink_list_length(&chptr->banlist) > 0)
576 burst_modes_TS6(client_p, chptr, &chptr->banlist, 'b');
577
578 if(IsCapable(client_p, CAP_EX) &&
579 rb_dlink_list_length(&chptr->exceptlist) > 0)
580 burst_modes_TS6(client_p, chptr, &chptr->exceptlist, 'e');
581
582 if(IsCapable(client_p, CAP_IE) &&
583 rb_dlink_list_length(&chptr->invexlist) > 0)
584 burst_modes_TS6(client_p, chptr, &chptr->invexlist, 'I');
585
586 if(rb_dlink_list_length(&chptr->quietlist) > 0)
587 burst_modes_TS6(client_p, chptr, &chptr->quietlist, 'q');
588
589 if(IsCapable(client_p, CAP_TB) && chptr->topic != NULL)
590 sendto_one(client_p, ":%s TB %s %ld %s%s:%s",
591 me.id, chptr->chname, (long) chptr->topic_time,
592 ConfigChannel.burst_topicwho ? chptr->topic_info : "",
593 ConfigChannel.burst_topicwho ? " " : "",
594 chptr->topic);
595
596 hchaninfo.chptr = chptr;
597 call_hook(h_burst_channel, &hchaninfo);
598 }
599
600 hclientinfo.target = NULL;
601 call_hook(h_burst_finished, &hclientinfo);
602 }
603
604 /*
605 * show_capabilities - show current server capabilities
606 *
607 * inputs - pointer to an struct Client
608 * output - pointer to static string
609 * side effects - build up string representing capabilities of server listed
610 */
611 const char *
612 show_capabilities(struct Client *target_p)
613 {
614 static char msgbuf[BUFSIZE];
615 struct Capability *cap;
616
617 if(has_id(target_p))
618 rb_strlcpy(msgbuf, " TS6", sizeof(msgbuf));
619
620 if(IsSSL(target_p))
621 rb_strlcat(msgbuf, " SSL", sizeof(msgbuf));
622
623 if(!IsServer(target_p) || !target_p->serv->caps) /* short circuit if no caps */
624 return msgbuf + 1;
625
626 for (cap = captab; cap->cap; ++cap)
627 {
628 if(cap->cap & target_p->serv->caps)
629 rb_snprintf_append(msgbuf, sizeof(msgbuf), " %s", cap->name);
630 }
631
632 return msgbuf + 1;
633 }
634
635 /*
636 * server_estab
637 *
638 * inputs - pointer to a struct Client
639 * output -
640 * side effects -
641 */
642 int
643 server_estab(struct Client *client_p)
644 {
645 struct Client *target_p;
646 struct server_conf *server_p;
647 hook_data_client hdata;
648 char *host;
649 rb_dlink_node *ptr;
650 char note[HOSTLEN + 15];
651
652 s_assert(NULL != client_p);
653 if(client_p == NULL)
654 return -1;
655
656 host = client_p->name;
657
658 if((server_p = client_p->localClient->att_sconf) == NULL)
659 {
660 /* This shouldn't happen, better tell the ops... -A1kmm */
661 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
662 "Warning: Lost connect{} block for server %s!", host);
663 return exit_client(client_p, client_p, client_p, "Lost connect{} block!");
664 }
665
666 /* We shouldn't have to check this, it should already done before
667 * server_estab is called. -A1kmm
668 */
669 if(client_p->localClient->passwd)
670 {
671 memset(client_p->localClient->passwd, 0, strlen(client_p->localClient->passwd));
672 rb_free(client_p->localClient->passwd);
673 client_p->localClient->passwd = NULL;
674 }
675
676 /* Its got identd , since its a server */
677 SetGotId(client_p);
678
679 /* If there is something in the serv_list, it might be this
680 * connecting server..
681 */
682 if(!ServerInfo.hub && serv_list.head)
683 {
684 if(client_p != serv_list.head->data || serv_list.head->next)
685 {
686 ServerStats.is_ref++;
687 sendto_one(client_p, "ERROR :I'm a leaf not a hub");
688 return exit_client(client_p, client_p, client_p, "I'm a leaf");
689 }
690 }
691
692 if(IsUnknown(client_p))
693 {
694 /*
695 * jdc -- 1. Use EmptyString(), not [0] index reference.
696 * 2. Check ->spasswd, not ->passwd.
697 */
698 if(!EmptyString(server_p->spasswd))
699 {
700 sendto_one(client_p, "PASS %s TS %d :%s",
701 server_p->spasswd, TS_CURRENT, me.id);
702 }
703
704 /* pass info to new server */
705 send_capabilities(client_p, default_server_capabs
706 | (ServerConfCompressed(server_p) ? CAP_ZIP_SUPPORTED : 0)
707 | (ServerConfTb(server_p) ? CAP_TB : 0));
708
709 sendto_one(client_p, "SERVER %s 1 :%s%s",
710 me.name,
711 ConfigServerHide.hidden ? "(H) " : "",
712 (me.info[0]) ? (me.info) : "IRCers United");
713 }
714
715 if(!rb_set_buffers(client_p->localClient->F, READBUF_SIZE))
716 ilog_error("rb_set_buffers failed for server");
717
718 /* Enable compression now */
719 if(IsCapable(client_p, CAP_ZIP))
720 {
721 start_zlib_session(client_p);
722 }
723 sendto_one(client_p, "SVINFO %d %d 0 :%ld", TS_CURRENT, TS_MIN, (long int)rb_current_time());
724
725 client_p->servptr = &me;
726
727 if(IsAnyDead(client_p))
728 return CLIENT_EXITED;
729
730 SetServer(client_p);
731
732 /* Update the capability combination usage counts */
733 set_chcap_usage_counts(client_p);
734
735 rb_dlinkAdd(client_p, &client_p->lnode, &me.serv->servers);
736 rb_dlinkMoveNode(&client_p->localClient->tnode, &unknown_list, &serv_list);
737 rb_dlinkAddTailAlloc(client_p, &global_serv_list);
738
739 if(has_id(client_p))
740 add_to_id_hash(client_p->id, client_p);
741
742 add_to_client_hash(client_p->name, client_p);
743 /* doesnt duplicate client_p->serv if allocated this struct already */
744 make_server(client_p);
745
746 client_p->serv->caps = client_p->localClient->caps;
747
748 if(client_p->localClient->fullcaps)
749 {
750 client_p->serv->fullcaps = rb_strdup(client_p->localClient->fullcaps);
751 rb_free(client_p->localClient->fullcaps);
752 client_p->localClient->fullcaps = NULL;
753 }
754
755 client_p->serv->nameinfo = scache_connect(client_p->name, client_p->info, IsHidden(client_p));
756 client_p->localClient->firsttime = rb_current_time();
757 /* fixing eob timings.. -gnp */
758
759 if((rb_dlink_list_length(&lclient_list) + rb_dlink_list_length(&serv_list)) >
760 (unsigned long)MaxConnectionCount)
761 MaxConnectionCount = rb_dlink_list_length(&lclient_list) +
762 rb_dlink_list_length(&serv_list);
763
764 /* Show the real host/IP to admins */
765 sendto_realops_snomask(SNO_GENERAL, L_ALL,
766 "Link with %s established: (%s) link",
767 client_p->name,
768 show_capabilities(client_p));
769
770 ilog(L_SERVER, "Link with %s established: (%s) link",
771 log_client_name(client_p, SHOW_IP), show_capabilities(client_p));
772
773 hdata.client = &me;
774 hdata.target = client_p;
775 call_hook(h_server_introduced, &hdata);
776
777 rb_snprintf(note, sizeof(note), "Server: %s", client_p->name);
778 rb_note(client_p->localClient->F, note);
779
780 /*
781 ** Old sendto_serv_but_one() call removed because we now
782 ** need to send different names to different servers
783 ** (domain name matching) Send new server to other servers.
784 */
785 RB_DLINK_FOREACH(ptr, serv_list.head)
786 {
787 target_p = ptr->data;
788
789 if(target_p == client_p)
790 continue;
791
792 if(has_id(target_p) && has_id(client_p))
793 {
794 sendto_one(target_p, ":%s SID %s 2 %s :%s%s",
795 me.id, client_p->name, client_p->id,
796 IsHidden(client_p) ? "(H) " : "", client_p->info);
797
798 if(IsCapable(target_p, CAP_ENCAP) &&
799 !EmptyString(client_p->serv->fullcaps))
800 sendto_one(target_p, ":%s ENCAP * GCAP :%s",
801 client_p->id, client_p->serv->fullcaps);
802 }
803 else
804 {
805 sendto_one(target_p, ":%s SERVER %s 2 :%s%s",
806 me.name, client_p->name,
807 IsHidden(client_p) ? "(H) " : "", client_p->info);
808
809 if(IsCapable(target_p, CAP_ENCAP) &&
810 !EmptyString(client_p->serv->fullcaps))
811 sendto_one(target_p, ":%s ENCAP * GCAP :%s",
812 client_p->name, client_p->serv->fullcaps);
813 }
814 }
815
816 /*
817 ** Pass on my client information to the new server
818 **
819 ** First, pass only servers (idea is that if the link gets
820 ** cancelled beacause the server was already there,
821 ** there are no NICK's to be cancelled...). Of course,
822 ** if cancellation occurs, all this info is sent anyway,
823 ** and I guess the link dies when a read is attempted...? --msa
824 **
825 ** Note: Link cancellation to occur at this point means
826 ** that at least two servers from my fragment are building
827 ** up connection this other fragment at the same time, it's
828 ** a race condition, not the normal way of operation...
829 **
830 ** ALSO NOTE: using the get_client_name for server names--
831 ** see previous *WARNING*!!! (Also, original inpath
832 ** is destroyed...)
833 */
834 RB_DLINK_FOREACH(ptr, global_serv_list.head)
835 {
836 target_p = ptr->data;
837
838 /* target_p->from == target_p for target_p == client_p */
839 if(IsMe(target_p) || target_p->from == client_p)
840 continue;
841
842 /* presumption, if target has an id, so does its uplink */
843 if(has_id(client_p) && has_id(target_p))
844 sendto_one(client_p, ":%s SID %s %d %s :%s%s",
845 target_p->servptr->id, target_p->name,
846 target_p->hopcount + 1, target_p->id,
847 IsHidden(target_p) ? "(H) " : "", target_p->info);
848 else
849 sendto_one(client_p, ":%s SERVER %s %d :%s%s",
850 target_p->servptr->name,
851 target_p->name, target_p->hopcount + 1,
852 IsHidden(target_p) ? "(H) " : "", target_p->info);
853
854 if(IsCapable(client_p, CAP_ENCAP) &&
855 !EmptyString(target_p->serv->fullcaps))
856 sendto_one(client_p, ":%s ENCAP * GCAP :%s",
857 get_id(target_p, client_p),
858 target_p->serv->fullcaps);
859 }
860
861 burst_TS6(client_p);
862
863 /* Always send a PING after connect burst is done */
864 sendto_one(client_p, "PING :%s", get_id(&me, client_p));
865
866 free_pre_client(client_p);
867
868 send_pop_queue(client_p);
869
870 return 0;
871 }
872
873 /*
874 * New server connection code
875 * Based upon the stuff floating about in s_bsd.c
876 * -- adrian
877 */
878
879 static int
880 serv_connect_resolved(struct Client *client_p)
881 {
882 struct rb_sockaddr_storage myipnum;
883 char vhoststr[HOSTIPLEN];
884 struct server_conf *server_p;
885 uint16_t port;
886
887 if((server_p = client_p->localClient->att_sconf) == NULL)
888 {
889 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL, "Lost connect{} block for %s",
890 client_p->name);
891 exit_client(client_p, client_p, &me, "Lost connect{} block");
892 return 0;
893 }
894
895 #ifdef RB_IPV6
896 if(client_p->localClient->ip.ss_family == AF_INET6)
897 port = ntohs(((struct sockaddr_in6 *)&client_p->localClient->ip)->sin6_port);
898 else
899 #endif
900 port = ntohs(((struct sockaddr_in *)&client_p->localClient->ip)->sin_port);
901
902 if(ServerConfVhosted(server_p))
903 {
904 memcpy(&myipnum, &server_p->my_ipnum, sizeof(myipnum));
905 ((struct sockaddr_in *)&myipnum)->sin_port = 0;
906 myipnum.ss_family = server_p->aftype;
907
908 }
909 else if(server_p->aftype == AF_INET && ServerInfo.specific_ipv4_vhost)
910 {
911 memcpy(&myipnum, &ServerInfo.ip, sizeof(myipnum));
912 ((struct sockaddr_in *)&myipnum)->sin_port = 0;
913 myipnum.ss_family = AF_INET;
914 SET_SS_LEN(&myipnum, sizeof(struct sockaddr_in));
915 }
916
917 #ifdef RB_IPV6
918 else if((server_p->aftype == AF_INET6) && ServerInfo.specific_ipv6_vhost)
919 {
920 memcpy(&myipnum, &ServerInfo.ip6, sizeof(myipnum));
921 ((struct sockaddr_in6 *)&myipnum)->sin6_port = 0;
922 myipnum.ss_family = AF_INET6;
923 SET_SS_LEN(&myipnum, sizeof(struct sockaddr_in6));
924 }
925 #endif
926 else
927 {
928 /* log */
929 ilog(L_SERVER, "Connecting to %s[%s] port %d (%s)", client_p->name, client_p->sockhost, port,
930 #ifdef RB_IPV6
931 server_p->aftype == AF_INET6 ? "IPv6" :
932 #endif
933 (server_p->aftype == AF_INET ? "IPv4" : "?"));
934
935 if(ServerConfSSL(server_p))
936 {
937 rb_connect_tcp(client_p->localClient->F, (struct sockaddr *)&client_p->localClient->ip,
938 NULL, 0, serv_connect_ssl_callback,
939 client_p, ConfigFileEntry.connect_timeout);
940 }
941 else
942 rb_connect_tcp(client_p->localClient->F, (struct sockaddr *)&client_p->localClient->ip,
943 NULL, 0, serv_connect_callback,
944 client_p, ConfigFileEntry.connect_timeout);
945 return 1;
946 }
947
948 /* log */
949 rb_inet_ntop_sock((struct sockaddr *)&myipnum, vhoststr, sizeof vhoststr);
950 ilog(L_SERVER, "Connecting to %s[%s] port %d (%s) (vhost %s)", client_p->name, client_p->sockhost, port,
951 #ifdef RB_IPV6
952 server_p->aftype == AF_INET6 ? "IPv6" :
953 #endif
954 (server_p->aftype == AF_INET ? "IPv4" : "?"), vhoststr);
955
956
957 if(ServerConfSSL(server_p))
958 rb_connect_tcp(client_p->localClient->F, (struct sockaddr *)&client_p->localClient->ip,
959 (struct sockaddr *) &myipnum,
960 GET_SS_LEN(&myipnum), serv_connect_ssl_callback, client_p,
961 ConfigFileEntry.connect_timeout);
962 else
963 rb_connect_tcp(client_p->localClient->F, (struct sockaddr *)&client_p->localClient->ip,
964 (struct sockaddr *) &myipnum,
965 GET_SS_LEN(&myipnum), serv_connect_callback, client_p,
966 ConfigFileEntry.connect_timeout);
967
968 return 1;
969 }
970
971 static void
972 serv_connect_dns_callback(void *vptr, struct DNSReply *reply)
973 {
974 struct Client *client_p = vptr;
975 uint16_t port;
976
977 rb_free(client_p->localClient->dnsquery);
978 client_p->localClient->dnsquery = NULL;
979
980 if (reply == NULL)
981 {
982 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL, "Cannot resolve hostname for %s",
983 client_p->name);
984 ilog(L_SERVER, "Cannot resolve hostname for %s",
985 log_client_name(client_p, HIDE_IP));
986 exit_client(client_p, client_p, &me, "Cannot resolve hostname");
987 return;
988 }
989 #ifdef RB_IPV6
990 if(reply->addr.ss_family == AF_INET6)
991 port = ((struct sockaddr_in6 *)&client_p->localClient->ip)->sin6_port;
992 else
993 #endif
994 port = ((struct sockaddr_in *)&client_p->localClient->ip)->sin_port;
995 memcpy(&client_p->localClient->ip, &reply->addr, sizeof(client_p->localClient->ip));
996 #ifdef RB_IPV6
997 if(reply->addr.ss_family == AF_INET6)
998 ((struct sockaddr_in6 *)&client_p->localClient->ip)->sin6_port = port;
999 else
1000 #endif
1001 ((struct sockaddr_in *)&client_p->localClient->ip)->sin_port = port;
1002 /* Set sockhost properly now -- jilles */
1003 rb_inet_ntop_sock((struct sockaddr *)&client_p->localClient->ip,
1004 client_p->sockhost, sizeof client_p->sockhost);
1005 serv_connect_resolved(client_p);
1006 }
1007
1008 /*
1009 * serv_connect() - initiate a server connection
1010 *
1011 * inputs - pointer to conf
1012 * - pointer to client doing the connet
1013 * output -
1014 * side effects -
1015 *
1016 * This code initiates a connection to a server. It first checks to make
1017 * sure the given server exists. If this is the case, it creates a socket,
1018 * creates a client, saves the socket information in the client, and
1019 * initiates a connection to the server through rb_connect_tcp(). The
1020 * completion of this goes through serv_completed_connection().
1021 *
1022 * We return 1 if the connection is attempted, since we don't know whether
1023 * it suceeded or not, and 0 if it fails in here somewhere.
1024 */
1025 int
1026 serv_connect(struct server_conf *server_p, struct Client *by)
1027 {
1028 struct Client *client_p;
1029 struct rb_sockaddr_storage theiripnum;
1030 rb_fde_t *F;
1031 char note[HOSTLEN + 10];
1032
1033 s_assert(server_p != NULL);
1034 if(server_p == NULL)
1035 return 0;
1036
1037 /*
1038 * Make sure this server isn't already connected
1039 */
1040 if((client_p = find_server(NULL, server_p->name)))
1041 {
1042 sendto_realops_snomask(SNO_GENERAL, L_ALL,
1043 "Server %s already present from %s",
1044 server_p->name, client_p->name);
1045 if(by && IsPerson(by) && !MyClient(by))
1046 sendto_one_notice(by, ":Server %s already present from %s",
1047 server_p->name, client_p->name);
1048 return 0;
1049 }
1050
1051 /* create a socket for the server connection */
1052 if((F = rb_socket(server_p->aftype, SOCK_STREAM, 0, NULL)) == NULL)
1053 {
1054 ilog_error("opening a stream socket");
1055 return 0;
1056 }
1057
1058 rb_snprintf(note, sizeof note, "Server: %s", server_p->name);
1059 rb_note(F, note);
1060
1061 /* Create a local client */
1062 client_p = make_client(NULL);
1063
1064 /* Copy in the server, hostname, fd
1065 * The sockhost may be a hostname, this will be corrected later
1066 * -- jilles
1067 */
1068 rb_strlcpy(client_p->name, server_p->name, sizeof(client_p->name));
1069 rb_strlcpy(client_p->host, server_p->host, sizeof(client_p->host));
1070 rb_strlcpy(client_p->sockhost, server_p->host, sizeof(client_p->sockhost));
1071 client_p->localClient->F = F;
1072 add_to_cli_fd_hash(client_p);
1073
1074 /*
1075 * Set up the initial server evilness, ripped straight from
1076 * connect_server(), so don't blame me for it being evil.
1077 * -- adrian
1078 */
1079
1080 if(!rb_set_buffers(client_p->localClient->F, READBUF_SIZE))
1081 {
1082 ilog_error("setting the buffer size for a server connection");
1083 }
1084
1085 /*
1086 * Attach config entries to client here rather than in
1087 * serv_connect_callback(). This to avoid null pointer references.
1088 */
1089 attach_server_conf(client_p, server_p);
1090
1091 /*
1092 * at this point we have a connection in progress and C/N lines
1093 * attached to the client, the socket info should be saved in the
1094 * client and it should either be resolved or have a valid address.
1095 *
1096 * The socket has been connected or connect is in progress.
1097 */
1098 make_server(client_p);
1099 if(by && IsPerson(by))
1100 {
1101 strcpy(client_p->serv->by, by->name);
1102 if(client_p->serv->user)
1103 free_user(client_p->serv->user, NULL);
1104 client_p->serv->user = by->user;
1105 by->user->refcnt++;
1106 }
1107 else
1108 {
1109 strcpy(client_p->serv->by, "AutoConn.");
1110 if(client_p->serv->user)
1111 free_user(client_p->serv->user, NULL);
1112 client_p->serv->user = NULL;
1113 }
1114 SetConnecting(client_p);
1115 rb_dlinkAddTail(client_p, &client_p->node, &global_client_list);
1116
1117 if (rb_inet_pton_sock(server_p->host, (struct sockaddr *)&theiripnum) > 0)
1118 {
1119 memcpy(&client_p->localClient->ip, &theiripnum, sizeof(client_p->localClient->ip));
1120 #ifdef RB_IPV6
1121 if(theiripnum.ss_family == AF_INET6)
1122 ((struct sockaddr_in6 *)&client_p->localClient->ip)->sin6_port = htons(server_p->port);
1123 else
1124 #endif
1125 ((struct sockaddr_in *)&client_p->localClient->ip)->sin_port = htons(server_p->port);
1126
1127 return serv_connect_resolved(client_p);
1128 }
1129 else
1130 {
1131 #ifdef RB_IPV6
1132 if(theiripnum.ss_family == AF_INET6)
1133 ((struct sockaddr_in6 *)&client_p->localClient->ip)->sin6_port = htons(server_p->port);
1134 else
1135 #endif
1136 ((struct sockaddr_in *)&client_p->localClient->ip)->sin_port = htons(server_p->port);
1137
1138 client_p->localClient->dnsquery = rb_malloc(sizeof(struct DNSQuery));
1139 client_p->localClient->dnsquery->ptr = client_p;
1140 client_p->localClient->dnsquery->callback = serv_connect_dns_callback;
1141 gethost_byname_type(server_p->host, client_p->localClient->dnsquery,
1142 #ifdef RB_IPV6
1143 server_p->aftype == AF_INET6 ? T_AAAA :
1144 #endif
1145 T_A);
1146 return 1;
1147 }
1148 }
1149
1150 static void
1151 serv_connect_ssl_callback(rb_fde_t *F, int status, void *data)
1152 {
1153 struct Client *client_p = data;
1154 rb_fde_t *xF[2];
1155 rb_connect_sockaddr(F, (struct sockaddr *)&client_p->localClient->ip, sizeof(client_p->localClient->ip));
1156 if(status != RB_OK)
1157 {
1158 /* Print error message, just like non-SSL. */
1159 serv_connect_callback(F, status, data);
1160 return;
1161 }
1162 if(rb_socketpair(AF_UNIX, SOCK_STREAM, 0, &xF[0], &xF[1], "Outgoing ssld connection") == -1)
1163 {
1164 ilog_error("rb_socketpair failed for server");
1165 serv_connect_callback(F, RB_ERROR, data);
1166 return;
1167
1168 }
1169 del_from_cli_fd_hash(client_p);
1170 client_p->localClient->F = xF[0];
1171 add_to_cli_fd_hash(client_p);
1172
1173 client_p->localClient->ssl_ctl = start_ssld_connect(F, xF[1], rb_get_fd(xF[0]));
1174 SetSSL(client_p);
1175 serv_connect_callback(client_p->localClient->F, RB_OK, client_p);
1176 }
1177
1178 /*
1179 * serv_connect_callback() - complete a server connection.
1180 *
1181 * This routine is called after the server connection attempt has
1182 * completed. If unsucessful, an error is sent to ops and the client
1183 * is closed. If sucessful, it goes through the initialisation/check
1184 * procedures, the capabilities are sent, and the socket is then
1185 * marked for reading.
1186 */
1187 static void
1188 serv_connect_callback(rb_fde_t *F, int status, void *data)
1189 {
1190 struct Client *client_p = data;
1191 struct server_conf *server_p;
1192 char *errstr;
1193
1194 /* First, make sure its a real client! */
1195 s_assert(client_p != NULL);
1196 s_assert(client_p->localClient->F == F);
1197
1198 if(client_p == NULL)
1199 return;
1200
1201 /* while we were waiting for the callback, its possible this already
1202 * linked in.. --fl
1203 */
1204 if(find_server(NULL, client_p->name) != NULL)
1205 {
1206 exit_client(client_p, client_p, &me, "Server Exists");
1207 return;
1208 }
1209
1210 if(client_p->localClient->ssl_ctl == NULL)
1211 rb_connect_sockaddr(F, (struct sockaddr *)&client_p->localClient->ip, sizeof(client_p->localClient->ip));
1212
1213 /* Check the status */
1214 if(status != RB_OK)
1215 {
1216 /* COMM_ERR_TIMEOUT wont have an errno associated with it,
1217 * the others will.. --fl
1218 */
1219 if(status == RB_ERR_TIMEOUT)
1220 {
1221 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
1222 "Error connecting to %s[%s]: %s",
1223 client_p->name,
1224 "255.255.255.255",
1225 rb_errstr(status));
1226 ilog(L_SERVER, "Error connecting to %s[%s]: %s",
1227 client_p->name, client_p->sockhost,
1228 rb_errstr(status));
1229 }
1230 else
1231 {
1232 errstr = strerror(rb_get_sockerr(F));
1233 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
1234 "Error connecting to %s[%s]: %s (%s)",
1235 client_p->name,
1236 "255.255.255.255",
1237 rb_errstr(status), errstr);
1238 ilog(L_SERVER, "Error connecting to %s[%s]: %s (%s)",
1239 client_p->name, client_p->sockhost,
1240 rb_errstr(status), errstr);
1241 }
1242
1243 exit_client(client_p, client_p, &me, rb_errstr(status));
1244 return;
1245 }
1246
1247 /* COMM_OK, so continue the connection procedure */
1248 /* Get the C/N lines */
1249 if((server_p = client_p->localClient->att_sconf) == NULL)
1250 {
1251 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL, "Lost connect{} block for %s",
1252 client_p->name);
1253 exit_client(client_p, client_p, &me, "Lost connect{} block");
1254 return;
1255 }
1256
1257 /* Next, send the initial handshake */
1258 SetHandshake(client_p);
1259
1260 if(!EmptyString(server_p->spasswd))
1261 {
1262 sendto_one(client_p, "PASS %s TS %d :%s",
1263 server_p->spasswd, TS_CURRENT, me.id);
1264 }
1265
1266 /* pass my info to the new server */
1267 send_capabilities(client_p, default_server_capabs
1268 | (ServerConfCompressed(server_p) ? CAP_ZIP_SUPPORTED : 0)
1269 | (ServerConfTb(server_p) ? CAP_TB : 0));
1270
1271 sendto_one(client_p, "SERVER %s 1 :%s%s",
1272 me.name,
1273 ConfigServerHide.hidden ? "(H) " : "", me.info);
1274
1275 /*
1276 * If we've been marked dead because a send failed, just exit
1277 * here now and save everyone the trouble of us ever existing.
1278 */
1279 if(IsAnyDead(client_p))
1280 {
1281 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
1282 "%s went dead during handshake", client_p->name);
1283 exit_client(client_p, client_p, &me, "Went dead during handshake");
1284 return;
1285 }
1286
1287 /* don't move to serv_list yet -- we haven't sent a burst! */
1288
1289 /* If we get here, we're ok, so lets start reading some data */
1290 read_packet(F, client_p);
1291 }