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