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