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