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