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