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