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