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