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