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