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