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