]> jfr.im git - irc/rqf/shadowircd.git/blame - src/s_serv.c
Make some more files compile.
[irc/rqf/shadowircd.git] / src / s_serv.c
CommitLineData
212380e3 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 *
cda8e9b8 24 * $Id: s_serv.c 3550 2007-08-09 06:47:26Z nenolod $
212380e3 25 */
26
27#include "stdinc.h"
28
29#ifdef HAVE_LIBCRYPTO
30#include <openssl/rsa.h>
31#endif
32
212380e3 33#include "s_serv.h"
34#include "class.h"
35#include "client.h"
36#include "common.h"
212380e3 37#include "hash.h"
38#include "irc_string.h"
39#include "sprintf_irc.h"
40#include "ircd.h"
41#include "ircd_defs.h"
42#include "numeric.h"
43#include "packet.h"
44#include "res.h"
212380e3 45#include "s_conf.h"
46#include "s_newconf.h"
47#include "s_log.h"
48#include "s_stats.h"
49#include "s_user.h"
50#include "scache.h"
51#include "send.h"
52#include "client.h"
212380e3 53#include "channel.h" /* chcap_usage_counts stuff... */
54#include "hook.h"
55#include "msg.h"
54015b5f 56#include "reject.h"
212380e3 57
58extern char *crypt();
59
60#ifndef INADDR_NONE
61#define INADDR_NONE ((unsigned int) 0xffffffff)
62#endif
63
64#ifndef HAVE_SOCKETPAIR
65static int inet_socketpair(int d, int type, int protocol, int sv[2]);
66#endif
67
68int MaxConnectionCount = 1;
69int MaxClientCount = 1;
70int refresh_user_links = 0;
71
72static char buf[BUFSIZE];
73
74static void start_io(struct Client *server);
75
76static SlinkRplHnd slink_error;
77static SlinkRplHnd slink_zipstats;
78/*
79 * list of recognized server capabilities. "TS" is not on the list
80 * because all servers that we talk to already do TS, and the kludged
81 * extra argument to "PASS" takes care of checking that. -orabidoo
82 */
83struct Capability captab[] = {
84/* name cap */
85 { "QS", CAP_QS },
86 { "EX", CAP_EX },
87 { "CHW", CAP_CHW},
88 { "IE", CAP_IE},
89 { "KLN", CAP_KLN},
90 { "GLN", CAP_GLN},
91 { "KNOCK", CAP_KNOCK},
92 { "ZIP", CAP_ZIP},
93 { "TB", CAP_TB},
94 { "UNKLN", CAP_UNKLN},
95 { "CLUSTER", CAP_CLUSTER},
96 { "ENCAP", CAP_ENCAP },
97 { "SERVICES", CAP_SERVICE },
98 { "RSFNC", CAP_RSFNC },
99 { "SAVE", CAP_SAVE },
100 { "EUID", CAP_EUID },
101 {0, 0}
102};
103
104struct SlinkRplDef slinkrpltab[] = {
105 {SLINKRPL_ERROR, slink_error, SLINKRPL_FLAG_DATA},
106 {SLINKRPL_ZIPSTATS, slink_zipstats, SLINKRPL_FLAG_DATA},
107 {0, 0, 0},
108};
109
110static int fork_server(struct Client *client_p);
111
112static CNCB serv_connect_callback;
113
114void
115slink_error(unsigned int rpl, unsigned int len, unsigned char *data, struct Client *server_p)
116{
117 char squitreason[256];
118
119 s_assert(rpl == SLINKRPL_ERROR);
120
121 s_assert(len < 256);
122 data[len - 1] = '\0';
123
124 sendto_realops_snomask(SNO_GENERAL, L_ALL, "SlinkError for %s: %s", server_p->name, data);
125 snprintf(squitreason, sizeof squitreason, "servlink error: %s", data);
126 exit_client(server_p, server_p, &me, squitreason);
127}
128
129void
130slink_zipstats(unsigned int rpl, unsigned int len, unsigned char *data, struct Client *server_p)
131{
132 struct ZipStats zipstats;
133 u_int32_t in = 0, in_wire = 0, out = 0, out_wire = 0;
134 int i = 0;
135
136 s_assert(rpl == SLINKRPL_ZIPSTATS);
137 s_assert(len == 16);
138 s_assert(IsCapable(server_p, CAP_ZIP));
139
140 /* Yes, it needs to be done this way, no we cannot let the compiler
141 * work with the pointer to the structure. This works around a GCC
142 * bug on SPARC that affects all versions at the time of this writing.
143 * I will feed you to the creatures living in RMS's beard if you do
144 * not leave this as is, without being sure that you are not causing
145 * regression for most of our installed SPARC base.
146 * -jmallett, 04/27/2002
147 */
148 memcpy(&zipstats, &server_p->localClient->zipstats, sizeof(struct ZipStats));
149
150 in |= (data[i++] << 24);
151 in |= (data[i++] << 16);
152 in |= (data[i++] << 8);
153 in |= (data[i++]);
154
155 in_wire |= (data[i++] << 24);
156 in_wire |= (data[i++] << 16);
157 in_wire |= (data[i++] << 8);
158 in_wire |= (data[i++]);
159
160 out |= (data[i++] << 24);
161 out |= (data[i++] << 16);
162 out |= (data[i++] << 8);
163 out |= (data[i++]);
164
165 out_wire |= (data[i++] << 24);
166 out_wire |= (data[i++] << 16);
167 out_wire |= (data[i++] << 8);
168 out_wire |= (data[i++]);
169
170 zipstats.in += in;
171 zipstats.inK += zipstats.in >> 10;
172 zipstats.in &= 0x03ff;
173
174 zipstats.in_wire += in_wire;
175 zipstats.inK_wire += zipstats.in_wire >> 10;
176 zipstats.in_wire &= 0x03ff;
177
178 zipstats.out += out;
179 zipstats.outK += zipstats.out >> 10;
180 zipstats.out &= 0x03ff;
181
182 zipstats.out_wire += out_wire;
183 zipstats.outK_wire += zipstats.out_wire >> 10;
184 zipstats.out_wire &= 0x03ff;
185
186 if(zipstats.inK > 0)
187 zipstats.in_ratio =
188 (((double) (zipstats.inK - zipstats.inK_wire) /
189 (double) zipstats.inK) * 100.00);
190 else
191 zipstats.in_ratio = 0;
192
193 if(zipstats.outK > 0)
194 zipstats.out_ratio =
195 (((double) (zipstats.outK - zipstats.outK_wire) /
196 (double) zipstats.outK) * 100.00);
197 else
198 zipstats.out_ratio = 0;
199
200 memcpy(&server_p->localClient->zipstats, &zipstats, sizeof(struct ZipStats));
201}
202
203void
204collect_zipstats(void *unused)
205{
af81d5a0 206 rb_dlink_node *ptr;
212380e3 207 struct Client *target_p;
208
8e69bb4e 209 RB_DLINK_FOREACH(ptr, serv_list.head)
212380e3 210 {
211 target_p = ptr->data;
212 if(IsCapable(target_p, CAP_ZIP))
213 {
214 /* only bother if we haven't already got something queued... */
215 if(!target_p->localClient->slinkq)
216 {
8e43b0b4 217 target_p->localClient->slinkq = rb_malloc(1); /* sigh.. */
212380e3 218 target_p->localClient->slinkq[0] = SLINKCMD_ZIPSTATS;
219 target_p->localClient->slinkq_ofs = 0;
220 target_p->localClient->slinkq_len = 1;
32db3450 221 // send_queued_slink_write(target_p->localClient->ctrlfd, target_p);
212380e3 222 }
223 }
224 }
225}
226
227/*
228 * hunt_server - Do the basic thing in delivering the message (command)
229 * across the relays to the specific server (server) for
230 * actions.
231 *
232 * Note: The command is a format string and *MUST* be
233 * of prefixed style (e.g. ":%s COMMAND %s ...").
234 * Command can have only max 8 parameters.
235 *
236 * server parv[server] is the parameter identifying the
237 * target server.
238 *
239 * *WARNING*
240 * parv[server] is replaced with the pointer to the
241 * real servername from the matched client (I'm lazy
242 * now --msa).
243 *
244 * returns: (see #defines)
245 */
246int
247hunt_server(struct Client *client_p, struct Client *source_p,
248 const char *command, int server, int parc, const char *parv[])
249{
250 struct Client *target_p;
251 int wilds;
af81d5a0 252 rb_dlink_node *ptr;
212380e3 253 const char *old;
254 char *new;
255
256 /*
257 * Assume it's me, if no server
258 */
259 if(parc <= server || EmptyString(parv[server]) ||
4d7a1ee5 260 match(parv[server], me.name) || (strcmp(parv[server], me.id) == 0))
212380e3 261 return (HUNTED_ISME);
262
263 new = LOCAL_COPY(parv[server]);
264
265 /*
266 * These are to pickup matches that would cause the following
267 * message to go in the wrong direction while doing quick fast
268 * non-matching lookups.
269 */
270 if(MyClient(source_p))
271 target_p = find_named_client(new);
272 else
273 target_p = find_client(new);
274
275 if(target_p)
276 if(target_p->from == source_p->from && !MyConnect(target_p))
277 target_p = NULL;
278
212380e3 279 collapse(new);
280 wilds = (strchr(new, '?') || strchr(new, '*'));
281
282 /*
283 * Again, if there are no wild cards involved in the server
284 * name, use the hash lookup
285 */
286 if(!target_p)
287 {
288 if(!wilds)
289 {
290 if(MyClient(source_p) || !IsDigit(parv[server][0]))
291 sendto_one_numeric(source_p, ERR_NOSUCHSERVER,
292 form_str(ERR_NOSUCHSERVER),
293 parv[server]);
294 return (HUNTED_NOSUCH);
295 }
296 else
297 {
298 target_p = NULL;
299
8e69bb4e 300 RB_DLINK_FOREACH(ptr, global_client_list.head)
212380e3 301 {
302 if(match(new, ((struct Client *) (ptr->data))->name))
303 {
304 target_p = ptr->data;
305 break;
306 }
307 }
308 }
309 }
310
311 if(target_p)
312 {
313 if(!IsRegistered(target_p))
314 {
315 sendto_one_numeric(source_p, ERR_NOSUCHSERVER,
316 form_str(ERR_NOSUCHSERVER),
317 parv[server]);
318 return HUNTED_NOSUCH;
319 }
320
321 if(IsMe(target_p) || MyClient(target_p))
322 return HUNTED_ISME;
323
324 old = parv[server];
325 parv[server] = get_id(target_p, target_p);
326
327 sendto_one(target_p, command, get_id(source_p, target_p),
328 parv[1], parv[2], parv[3], parv[4], parv[5], parv[6], parv[7], parv[8]);
329 parv[server] = old;
330 return (HUNTED_PASS);
331 }
332
95d36ef5 333 if(MyClient(source_p) || !IsDigit(parv[server][0]))
212380e3 334 sendto_one_numeric(source_p, ERR_NOSUCHSERVER,
335 form_str(ERR_NOSUCHSERVER), parv[server]);
336 return (HUNTED_NOSUCH);
337}
338
339/*
340 * try_connections - scan through configuration and try new connections.
341 * Returns the calendar time when the next call to this
342 * function should be made latest. (No harm done if this
343 * is called earlier or later...)
344 */
345void
346try_connections(void *unused)
347{
348 struct Client *client_p;
349 struct server_conf *server_p = NULL;
350 struct server_conf *tmp_p;
351 struct Class *cltmp;
af81d5a0 352 rb_dlink_node *ptr;
212380e3 353 int connecting = FALSE;
354 int confrq = 0;
355 time_t next = 0;
356
8e69bb4e 357 RB_DLINK_FOREACH(ptr, server_conf_list.head)
212380e3 358 {
359 tmp_p = ptr->data;
360
361 if(ServerConfIllegal(tmp_p) || !ServerConfAutoconn(tmp_p))
362 continue;
363
364 cltmp = tmp_p->class;
365
366 /*
367 * Skip this entry if the use of it is still on hold until
368 * future. Otherwise handle this entry (and set it on hold
369 * until next time). Will reset only hold times, if already
370 * made one successfull connection... [this algorithm is
371 * a bit fuzzy... -- msa >;) ]
372 */
9f6bbe3c 373 if(tmp_p->hold > rb_current_time())
212380e3 374 {
375 if(next > tmp_p->hold || next == 0)
376 next = tmp_p->hold;
377 continue;
378 }
379
380 confrq = get_con_freq(cltmp);
9f6bbe3c 381 tmp_p->hold = rb_current_time() + confrq;
212380e3 382
383 /*
384 * Found a CONNECT config with port specified, scan clients
385 * and see if this server is already connected?
386 */
387 client_p = find_server(NULL, tmp_p->name);
388
389 if(!client_p && (CurrUsers(cltmp) < MaxUsers(cltmp)) && !connecting)
390 {
391 server_p = tmp_p;
392
393 /* We connect only one at time... */
394 connecting = TRUE;
395 }
396
397 if((next > tmp_p->hold) || (next == 0))
398 next = tmp_p->hold;
399 }
400
401 /* TODO: change this to set active flag to 0 when added to event! --Habeeb */
402 if(GlobalSetOptions.autoconn == 0)
403 return;
404
405 if(!connecting)
406 return;
407
408 /* move this connect entry to end.. */
af81d5a0
WP
409 rb_dlinkDelete(&server_p->node, &server_conf_list);
410 rb_dlinkAddTail(server_p, &server_p->node, &server_conf_list);
212380e3 411
412 /*
413 * We used to only print this if serv_connect() actually
38e6acdd 414 * suceeded, but since rb_tcp_connect() can call the callback
212380e3 415 * immediately if there is an error, we were getting error messages
416 * in the wrong order. SO, we just print out the activated line,
417 * and let serv_connect() / serv_connect_callback() print an
418 * error afterwards if it fails.
419 * -- adrian
420 */
421#ifndef HIDE_SERVERS_IPS
422 sendto_realops_snomask(SNO_GENERAL, L_ALL,
423 "Connection to %s[%s] activated.",
424 server_p->name, server_p->host);
425#else
426 sendto_realops_snomask(SNO_GENERAL, L_ALL,
427 "Connection to %s activated",
428 server_p->name);
429#endif
430
431 serv_connect(server_p, 0);
432}
433
434int
435check_server(const char *name, struct Client *client_p)
436{
437 struct server_conf *server_p = NULL;
438 struct server_conf *tmp_p;
af81d5a0 439 rb_dlink_node *ptr;
212380e3 440 int error = -1;
441
442 s_assert(NULL != client_p);
443 if(client_p == NULL)
444 return error;
445
446 if(!(client_p->localClient->passwd))
447 return -2;
448
449 if(strlen(name) > HOSTLEN)
450 return -4;
451
8e69bb4e 452 RB_DLINK_FOREACH(ptr, server_conf_list.head)
212380e3 453 {
454 tmp_p = ptr->data;
455
456 if(ServerConfIllegal(tmp_p))
457 continue;
458
459 if(!match(tmp_p->name, name))
460 continue;
461
462 error = -3;
463
464 /* XXX: Fix me for IPv6 */
465 /* XXX sockhost is the IPv4 ip as a string */
466 if(match(tmp_p->host, client_p->host) ||
467 match(tmp_p->host, client_p->sockhost))
468 {
469 error = -2;
470
471 if(ServerConfEncrypted(tmp_p))
472 {
473 if(!strcmp(tmp_p->passwd, crypt(client_p->localClient->passwd,
474 tmp_p->passwd)))
475 {
476 server_p = tmp_p;
477 break;
478 }
479 }
480 else if(!strcmp(tmp_p->passwd, client_p->localClient->passwd))
481 {
482 server_p = tmp_p;
483 break;
484 }
485 }
486 }
487
488 if(server_p == NULL)
489 return error;
490
491 attach_server_conf(client_p, server_p);
492
493 /* clear ZIP/TB if they support but we dont want them */
494#ifdef HAVE_LIBZ
495 if(!ServerConfCompressed(server_p))
496#endif
497 ClearCap(client_p, CAP_ZIP);
498
499 if(!ServerConfTb(server_p))
500 ClearCap(client_p, CAP_TB);
501
502 return 0;
503}
504
505/*
506 * send_capabilities
507 *
508 * inputs - Client pointer to send to
509 * - int flag of capabilities that this server has
510 * output - NONE
511 * side effects - send the CAPAB line to a server -orabidoo
512 *
513 */
514void
515send_capabilities(struct Client *client_p, int cap_can_send)
516{
517 struct Capability *cap;
518 char msgbuf[BUFSIZE];
519 char *t;
520 int tl;
521
522 t = msgbuf;
523
524 for (cap = captab; cap->name; ++cap)
525 {
526 if(cap->cap & cap_can_send)
527 {
38e6acdd 528 tl = rb_sprintf(t, "%s ", cap->name);
212380e3 529 t += tl;
530 }
531 }
532
533 t--;
534 *t = '\0';
535
536 sendto_one(client_p, "CAPAB :%s", msgbuf);
537}
538
539/* burst_modes_TS5()
540 *
541 * input - client to burst to, channel name, list to burst, mode flag
542 * output -
543 * side effects - client is sent a list of +b, or +e, or +I modes
544 */
545static void
af81d5a0 546burst_modes_TS5(struct Client *client_p, char *chname, rb_dlink_list *list, char flag)
212380e3 547{
af81d5a0 548 rb_dlink_node *ptr;
212380e3 549 struct Ban *banptr;
550 char mbuf[MODEBUFLEN];
551 char pbuf[BUFSIZE];
552 int tlen;
553 int mlen;
554 int cur_len;
555 char *mp;
556 char *pp;
557 int count = 0;
558
38e6acdd 559 mlen = rb_sprintf(buf, ":%s MODE %s +", me.name, chname);
212380e3 560 cur_len = mlen;
561
562 mp = mbuf;
563 pp = pbuf;
564
8e69bb4e 565 RB_DLINK_FOREACH(ptr, list->head)
212380e3 566 {
567 banptr = ptr->data;
568 tlen = strlen(banptr->banstr) + 3;
569
570 /* uh oh */
571 if(tlen > MODEBUFLEN)
572 continue;
573
574 if((count >= MAXMODEPARAMS) || ((cur_len + tlen + 2) > (BUFSIZE - 3)))
575 {
576 sendto_one(client_p, "%s%s %s", buf, mbuf, pbuf);
577
578 mp = mbuf;
579 pp = pbuf;
580 cur_len = mlen;
581 count = 0;
582 }
583
584 *mp++ = flag;
585 *mp = '\0';
38e6acdd 586 pp += rb_sprintf(pp, "%s ", banptr->banstr);
212380e3 587 cur_len += tlen;
588 count++;
589 }
590
591 if(count != 0)
592 sendto_one(client_p, "%s%s %s", buf, mbuf, pbuf);
593}
594
595/* burst_modes_TS6()
596 *
597 * input - client to burst to, channel name, list to burst, mode flag
598 * output -
599 * side effects - client is sent a list of +b, +e, or +I modes
600 */
601static void
602burst_modes_TS6(struct Client *client_p, struct Channel *chptr,
af81d5a0 603 rb_dlink_list *list, char flag)
212380e3 604{
af81d5a0 605 rb_dlink_node *ptr;
212380e3 606 struct Ban *banptr;
607 char *t;
608 int tlen;
609 int mlen;
610 int cur_len;
611
38e6acdd 612 cur_len = mlen = rb_sprintf(buf, ":%s BMASK %ld %s %c :",
212380e3 613 me.id, (long) chptr->channelts, chptr->chname, flag);
614 t = buf + mlen;
615
8e69bb4e 616 RB_DLINK_FOREACH(ptr, list->head)
212380e3 617 {
618 banptr = ptr->data;
619
620 tlen = strlen(banptr->banstr) + 1;
621
622 /* uh oh */
623 if(cur_len + tlen > BUFSIZE - 3)
624 {
625 /* the one we're trying to send doesnt fit at all! */
626 if(cur_len == mlen)
627 {
628 s_assert(0);
629 continue;
630 }
631
632 /* chop off trailing space and send.. */
633 *(t-1) = '\0';
634 sendto_one(client_p, "%s", buf);
635 cur_len = mlen;
636 t = buf + mlen;
637 }
638
38e6acdd 639 rb_sprintf(t, "%s ", banptr->banstr);
212380e3 640 t += tlen;
641 cur_len += tlen;
642 }
643
644 /* cant ever exit the loop above without having modified buf,
645 * chop off trailing space and send.
646 */
647 *(t-1) = '\0';
648 sendto_one(client_p, "%s", buf);
649}
650
651/*
652 * burst_TS5
653 *
654 * inputs - client (server) to send nick towards
655 * - client to send nick for
656 * output - NONE
657 * side effects - NICK message is sent towards given client_p
658 */
659static void
660burst_TS5(struct Client *client_p)
661{
662 static char ubuf[12];
663 struct Client *target_p;
664 struct Channel *chptr;
665 struct membership *msptr;
666 hook_data_client hclientinfo;
667 hook_data_channel hchaninfo;
af81d5a0
WP
668 rb_dlink_node *ptr;
669 rb_dlink_node *uptr;
212380e3 670 char *t;
671 int tlen, mlen;
672 int cur_len = 0;
673
674 hclientinfo.client = hchaninfo.client = client_p;
675
8e69bb4e 676 RB_DLINK_FOREACH(ptr, global_client_list.head)
212380e3 677 {
678 target_p = ptr->data;
679
680 if(!IsPerson(target_p))
681 continue;
682
683 send_umode(NULL, target_p, 0, 0, ubuf);
684 if(!*ubuf)
685 {
686 ubuf[0] = '+';
687 ubuf[1] = '\0';
688 }
689
690 sendto_one(client_p, "NICK %s %d %ld %s %s %s %s :%s",
691 target_p->name, target_p->hopcount + 1,
692 (long) target_p->tsinfo, ubuf,
693 target_p->username, target_p->host,
c88cdb00 694 target_p->servptr->name, target_p->info);
212380e3 695
696 if(IsDynSpoof(target_p))
697 sendto_one(client_p, ":%s ENCAP * REALHOST %s",
698 target_p->name, target_p->orighost);
699 if(!EmptyString(target_p->user->suser))
700 sendto_one(client_p, ":%s ENCAP * LOGIN %s",
701 target_p->name, target_p->user->suser);
702
703 if(ConfigFileEntry.burst_away && !EmptyString(target_p->user->away))
704 sendto_one(client_p, ":%s AWAY :%s",
705 target_p->name, target_p->user->away);
706
707 hclientinfo.target = target_p;
708 call_hook(h_burst_client, &hclientinfo);
709 }
710
8e69bb4e 711 RB_DLINK_FOREACH(ptr, global_channel_list.head)
212380e3 712 {
713 chptr = ptr->data;
714
715 if(*chptr->chname != '#')
716 continue;
717
38e6acdd 718 cur_len = mlen = rb_sprintf(buf, ":%s SJOIN %ld %s %s :", me.name,
212380e3 719 (long) chptr->channelts, chptr->chname,
720 channel_modes(chptr, client_p));
721
722 t = buf + mlen;
723
8e69bb4e 724 RB_DLINK_FOREACH(uptr, chptr->members.head)
212380e3 725 {
726 msptr = uptr->data;
727
728 tlen = strlen(msptr->client_p->name) + 1;
729 if(is_chanop(msptr))
730 tlen++;
731 if(is_voiced(msptr))
732 tlen++;
733
734 if(cur_len + tlen >= BUFSIZE - 3)
735 {
736 t--;
737 *t = '\0';
738 sendto_one(client_p, "%s", buf);
739 cur_len = mlen;
740 t = buf + mlen;
741 }
742
38e6acdd 743 rb_sprintf(t, "%s%s ", find_channel_status(msptr, 1),
212380e3 744 msptr->client_p->name);
745
746 cur_len += tlen;
747 t += tlen;
748 }
749
af81d5a0 750 if (rb_dlink_list_length(&chptr->members) > 0)
212380e3 751 {
752 /* remove trailing space */
753 t--;
754 *t = '\0';
755 }
756 sendto_one(client_p, "%s", buf);
757
758 burst_modes_TS5(client_p, chptr->chname, &chptr->banlist, 'b');
759
760 if(IsCapable(client_p, CAP_EX))
761 burst_modes_TS5(client_p, chptr->chname, &chptr->exceptlist, 'e');
762
763 if(IsCapable(client_p, CAP_IE))
764 burst_modes_TS5(client_p, chptr->chname, &chptr->invexlist, 'I');
765
766 burst_modes_TS5(client_p, chptr->chname, &chptr->quietlist, 'q');
767
768 if(IsCapable(client_p, CAP_TB) && chptr->topic != NULL)
769 sendto_one(client_p, ":%s TB %s %ld %s%s:%s",
770 me.name, chptr->chname, (long) chptr->topic_time,
771 ConfigChannel.burst_topicwho ? chptr->topic_info : "",
772 ConfigChannel.burst_topicwho ? " " : "",
773 chptr->topic);
774
775 hchaninfo.chptr = chptr;
776 call_hook(h_burst_channel, &hchaninfo);
777 }
778
779 hclientinfo.target = NULL;
780 call_hook(h_burst_finished, &hclientinfo);
781}
782
783/*
784 * burst_TS6
785 *
786 * inputs - client (server) to send nick towards
787 * - client to send nick for
788 * output - NONE
789 * side effects - NICK message is sent towards given client_p
790 */
791static void
792burst_TS6(struct Client *client_p)
793{
794 static char ubuf[12];
795 struct Client *target_p;
796 struct Channel *chptr;
797 struct membership *msptr;
798 hook_data_client hclientinfo;
799 hook_data_channel hchaninfo;
af81d5a0
WP
800 rb_dlink_node *ptr;
801 rb_dlink_node *uptr;
212380e3 802 char *t;
803 int tlen, mlen;
804 int cur_len = 0;
805
806 hclientinfo.client = hchaninfo.client = client_p;
807
8e69bb4e 808 RB_DLINK_FOREACH(ptr, global_client_list.head)
212380e3 809 {
810 target_p = ptr->data;
811
812 if(!IsPerson(target_p))
813 continue;
814
815 send_umode(NULL, target_p, 0, 0, ubuf);
816 if(!*ubuf)
817 {
818 ubuf[0] = '+';
819 ubuf[1] = '\0';
820 }
821
822 if(has_id(target_p) && IsCapable(client_p, CAP_EUID))
823 sendto_one(client_p, ":%s EUID %s %d %ld %s %s %s %s %s %s %s :%s",
824 target_p->servptr->id, target_p->name,
825 target_p->hopcount + 1,
826 (long) target_p->tsinfo, ubuf,
827 target_p->username, target_p->host,
828 IsIPSpoof(target_p) ? "0" : target_p->sockhost,
829 target_p->id,
830 IsDynSpoof(target_p) ? target_p->orighost : "*",
831 EmptyString(target_p->user->suser) ? "*" : target_p->user->suser,
832 target_p->info);
833 else if(has_id(target_p))
834 sendto_one(client_p, ":%s UID %s %d %ld %s %s %s %s %s :%s",
835 target_p->servptr->id, target_p->name,
836 target_p->hopcount + 1,
837 (long) target_p->tsinfo, ubuf,
838 target_p->username, target_p->host,
839 IsIPSpoof(target_p) ? "0" : target_p->sockhost,
840 target_p->id, target_p->info);
841 else
842 sendto_one(client_p, "NICK %s %d %ld %s %s %s %s :%s",
843 target_p->name,
844 target_p->hopcount + 1,
845 (long) target_p->tsinfo,
846 ubuf,
847 target_p->username, target_p->host,
c88cdb00 848 target_p->servptr->name, target_p->info);
212380e3 849
850 if(!has_id(target_p) || !IsCapable(client_p, CAP_EUID))
851 {
852 if(IsDynSpoof(target_p))
853 sendto_one(client_p, ":%s ENCAP * REALHOST %s",
854 use_id(target_p), target_p->orighost);
855 if(!EmptyString(target_p->user->suser))
856 sendto_one(client_p, ":%s ENCAP * LOGIN %s",
857 use_id(target_p), target_p->user->suser);
858 }
859
860 if(ConfigFileEntry.burst_away && !EmptyString(target_p->user->away))
861 sendto_one(client_p, ":%s AWAY :%s",
862 use_id(target_p),
863 target_p->user->away);
864
865 hclientinfo.target = target_p;
866 call_hook(h_burst_client, &hclientinfo);
867 }
868
8e69bb4e 869 RB_DLINK_FOREACH(ptr, global_channel_list.head)
212380e3 870 {
871 chptr = ptr->data;
872
873 if(*chptr->chname != '#')
874 continue;
875
38e6acdd 876 cur_len = mlen = rb_sprintf(buf, ":%s SJOIN %ld %s %s :", me.id,
212380e3 877 (long) chptr->channelts, chptr->chname,
878 channel_modes(chptr, client_p));
879
880 t = buf + mlen;
881
8e69bb4e 882 RB_DLINK_FOREACH(uptr, chptr->members.head)
212380e3 883 {
884 msptr = uptr->data;
885
886 tlen = strlen(use_id(msptr->client_p)) + 1;
887 if(is_chanop(msptr))
888 tlen++;
889 if(is_voiced(msptr))
890 tlen++;
891
892 if(cur_len + tlen >= BUFSIZE - 3)
893 {
894 *(t-1) = '\0';
895 sendto_one(client_p, "%s", buf);
896 cur_len = mlen;
897 t = buf + mlen;
898 }
899
38e6acdd 900 rb_sprintf(t, "%s%s ", find_channel_status(msptr, 1),
212380e3 901 use_id(msptr->client_p));
902
903 cur_len += tlen;
904 t += tlen;
905 }
906
af81d5a0 907 if (rb_dlink_list_length(&chptr->members) > 0)
212380e3 908 {
909 /* remove trailing space */
910 *(t-1) = '\0';
911 }
912 sendto_one(client_p, "%s", buf);
913
af81d5a0 914 if(rb_dlink_list_length(&chptr->banlist) > 0)
212380e3 915 burst_modes_TS6(client_p, chptr, &chptr->banlist, 'b');
916
917 if(IsCapable(client_p, CAP_EX) &&
af81d5a0 918 rb_dlink_list_length(&chptr->exceptlist) > 0)
212380e3 919 burst_modes_TS6(client_p, chptr, &chptr->exceptlist, 'e');
920
921 if(IsCapable(client_p, CAP_IE) &&
af81d5a0 922 rb_dlink_list_length(&chptr->invexlist) > 0)
212380e3 923 burst_modes_TS6(client_p, chptr, &chptr->invexlist, 'I');
924
af81d5a0 925 if(rb_dlink_list_length(&chptr->quietlist) > 0)
212380e3 926 burst_modes_TS6(client_p, chptr, &chptr->quietlist, 'q');
927
928 if(IsCapable(client_p, CAP_TB) && chptr->topic != NULL)
929 sendto_one(client_p, ":%s TB %s %ld %s%s:%s",
930 me.id, chptr->chname, (long) chptr->topic_time,
931 ConfigChannel.burst_topicwho ? chptr->topic_info : "",
932 ConfigChannel.burst_topicwho ? " " : "",
933 chptr->topic);
934
935 hchaninfo.chptr = chptr;
936 call_hook(h_burst_channel, &hchaninfo);
937 }
938
939 hclientinfo.target = NULL;
940 call_hook(h_burst_finished, &hclientinfo);
941}
942
943/*
944 * show_capabilities - show current server capabilities
945 *
946 * inputs - pointer to an struct Client
947 * output - pointer to static string
948 * side effects - build up string representing capabilities of server listed
949 */
950const char *
951show_capabilities(struct Client *target_p)
952{
953 static char msgbuf[BUFSIZE];
954 struct Capability *cap;
955 char *t;
956 int tl;
957
958 t = msgbuf;
38e6acdd 959 tl = rb_sprintf(msgbuf, "TS ");
212380e3 960 t += tl;
961
962 if(!IsServer(target_p) || !target_p->serv->caps) /* short circuit if no caps */
963 {
964 msgbuf[2] = '\0';
965 return msgbuf;
966 }
967
968 for (cap = captab; cap->cap; ++cap)
969 {
970 if(cap->cap & target_p->serv->caps)
971 {
38e6acdd 972 tl = rb_sprintf(t, "%s ", cap->name);
212380e3 973 t += tl;
974 }
975 }
976
977 t--;
978 *t = '\0';
979
980 return msgbuf;
981}
982
983/*
984 * server_estab
985 *
986 * inputs - pointer to a struct Client
987 * output -
988 * side effects -
989 */
990int
991server_estab(struct Client *client_p)
992{
993 struct Client *target_p;
994 struct server_conf *server_p;
995 hook_data_client hdata;
996 char *host;
af81d5a0 997 rb_dlink_node *ptr;
a5497589 998 char note[HOSTLEN + 15];
212380e3 999
1000 s_assert(NULL != client_p);
1001 if(client_p == NULL)
1002 return -1;
212380e3 1003
1004 host = client_p->name;
1005
1006 if((server_p = client_p->localClient->att_sconf) == NULL)
1007 {
1008 /* This shouldn't happen, better tell the ops... -A1kmm */
1009 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
1010 "Warning: Lost connect{} block for server %s!", host);
1011 return exit_client(client_p, client_p, client_p, "Lost connect{} block!");
1012 }
1013
1014 /* We shouldn't have to check this, it should already done before
1015 * server_estab is called. -A1kmm
1016 */
1017 if(client_p->localClient->passwd)
1018 {
1019 memset(client_p->localClient->passwd, 0, strlen(client_p->localClient->passwd));
90a3c35b 1020 rb_free(client_p->localClient->passwd);
212380e3 1021 client_p->localClient->passwd = NULL;
1022 }
1023
1024 /* Its got identd , since its a server */
1025 SetGotId(client_p);
1026
1027 /* If there is something in the serv_list, it might be this
1028 * connecting server..
1029 */
1030 if(!ServerInfo.hub && serv_list.head)
1031 {
1032 if(client_p != serv_list.head->data || serv_list.head->next)
1033 {
21c9d815 1034 ServerStats->is_ref++;
212380e3 1035 sendto_one(client_p, "ERROR :I'm a leaf not a hub");
1036 return exit_client(client_p, client_p, client_p, "I'm a leaf");
1037 }
1038 }
1039
1040 if(IsUnknown(client_p))
1041 {
1042 /*
1043 * jdc -- 1. Use EmptyString(), not [0] index reference.
1044 * 2. Check ->spasswd, not ->passwd.
1045 */
1046 if(!EmptyString(server_p->spasswd))
1047 {
cda8e9b8 1048 sendto_one(client_p, "PASS %s TS %d :%s",
1049 server_p->spasswd, TS_CURRENT, me.id);
212380e3 1050 }
1051
1052 /* pass info to new server */
1053 send_capabilities(client_p, default_server_capabs
1054 | (ServerConfCompressed(server_p) ? CAP_ZIP_SUPPORTED : 0)
1055 | (ServerConfTb(server_p) ? CAP_TB : 0));
1056
1057 sendto_one(client_p, "SERVER %s 1 :%s%s",
1058 me.name,
1059 ConfigServerHide.hidden ? "(H) " : "",
1060 (me.info[0]) ? (me.info) : "IRCers United");
1061 }
1062
a5497589
JT
1063 if(!rb_set_buffers(client_p->localClient->F, READBUF_SIZE))
1064 report_error("rb_set_buffers failed for server %s:%s",
212380e3 1065 get_server_name(client_p, SHOW_IP),
1066 log_client_name(client_p, SHOW_IP), errno);
1067
1068 /* Hand the server off to servlink now */
1069 if(IsCapable(client_p, CAP_ZIP))
1070 {
1071 if(fork_server(client_p) < 0)
1072 {
1073 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
1074 "Warning: fork failed for server %s -- check servlink_path (%s)",
1075 get_server_name(client_p, HIDE_IP),
1076 ConfigFileEntry.servlink_path);
1077 return exit_client(client_p, client_p, client_p, "Fork failed");
1078 }
1079 start_io(client_p);
1080 SetServlink(client_p);
1081 }
1082
9f6bbe3c 1083 sendto_one(client_p, "SVINFO %d %d 0 :%ld", TS_CURRENT, TS_MIN, rb_current_time());
212380e3 1084
1085 client_p->servptr = &me;
1086
1087 if(IsAnyDead(client_p))
1088 return CLIENT_EXITED;
1089
1090 SetServer(client_p);
1091
1092 /* Update the capability combination usage counts */
1093 set_chcap_usage_counts(client_p);
1094
af81d5a0 1095 rb_dlinkAdd(client_p, &client_p->lnode, &me.serv->servers);
54015b5f 1096 del_unknown_ip(client_p);
af81d5a0
WP
1097 rb_dlinkMoveNode(&client_p->localClient->tnode, &unknown_list, &serv_list);
1098 rb_dlinkAddTailAlloc(client_p, &global_serv_list);
212380e3 1099
1100 if(has_id(client_p))
1101 add_to_id_hash(client_p->id, client_p);
1102
1103 add_to_client_hash(client_p->name, client_p);
1104 /* doesnt duplicate client_p->serv if allocated this struct already */
1105 make_server(client_p);
212380e3 1106
1107 client_p->serv->caps = client_p->localClient->caps;
1108
1109 if(client_p->localClient->fullcaps)
1110 {
62d28946 1111 client_p->serv->fullcaps = rb_strdup(client_p->localClient->fullcaps);
90a3c35b 1112 rb_free(client_p->localClient->fullcaps);
212380e3 1113 client_p->localClient->fullcaps = NULL;
1114 }
1115
994544c2 1116 client_p->serv->nameinfo = scache_connect(client_p->name, client_p->info, IsHidden(client_p));
9f6bbe3c 1117 client_p->localClient->firsttime = rb_current_time();
212380e3 1118 /* fixing eob timings.. -gnp */
1119
af81d5a0 1120 if((rb_dlink_list_length(&lclient_list) + rb_dlink_list_length(&serv_list)) >
2f15f871 1121 (unsigned long)MaxConnectionCount)
af81d5a0
WP
1122 MaxConnectionCount = rb_dlink_list_length(&lclient_list) +
1123 rb_dlink_list_length(&serv_list);
2f15f871 1124
212380e3 1125 /* Show the real host/IP to admins */
1126 sendto_realops_snomask(SNO_GENERAL, L_ALL,
1127 "Link with %s established: (%s) link",
1128 get_server_name(client_p, SHOW_IP),
1129 show_capabilities(client_p));
1130
1131 ilog(L_SERVER, "Link with %s established: (%s) link",
1132 log_client_name(client_p, SHOW_IP), show_capabilities(client_p));
1133
1134 hdata.client = &me;
1135 hdata.target = client_p;
1136 call_hook(h_server_introduced, &hdata);
1137
1138 if(HasServlink(client_p))
1139 {
1140 /* we won't overflow FD_DESC_SZ here, as it can hold
1141 * client_p->name + 64
1142 */
a5497589
JT
1143 rb_snprintf(note, sizeof note, "slink data: %s", client_p->name);
1144 rb_note(client_p->localClient->F, note);
32db3450 1145 // rb_note(client_p->localClient->ctrlfd, "slink ctrl: %s", client_p->name);
212380e3 1146 }
1147 else
a5497589
JT
1148 {
1149 rb_snprintf(note, sizeof note, "Server: %s", client_p->name);
1150 rb_note(client_p->localClient->F, note);
1151 }
212380e3 1152
1153 /*
1154 ** Old sendto_serv_but_one() call removed because we now
1155 ** need to send different names to different servers
1156 ** (domain name matching) Send new server to other servers.
1157 */
8e69bb4e 1158 RB_DLINK_FOREACH(ptr, serv_list.head)
212380e3 1159 {
1160 target_p = ptr->data;
1161
1162 if(target_p == client_p)
1163 continue;
1164
1165 if(has_id(target_p) && has_id(client_p))
1166 {
1167 sendto_one(target_p, ":%s SID %s 2 %s :%s%s",
1168 me.id, client_p->name, client_p->id,
1169 IsHidden(client_p) ? "(H) " : "", client_p->info);
1170
1171 if(IsCapable(target_p, CAP_ENCAP) &&
1172 !EmptyString(client_p->serv->fullcaps))
1173 sendto_one(target_p, ":%s ENCAP * GCAP :%s",
1174 client_p->id, client_p->serv->fullcaps);
1175 }
1176 else
1177 {
1178 sendto_one(target_p, ":%s SERVER %s 2 :%s%s",
1179 me.name, client_p->name,
1180 IsHidden(client_p) ? "(H) " : "", client_p->info);
1181
1182 if(IsCapable(target_p, CAP_ENCAP) &&
1183 !EmptyString(client_p->serv->fullcaps))
1184 sendto_one(target_p, ":%s ENCAP * GCAP :%s",
1185 client_p->name, client_p->serv->fullcaps);
1186 }
1187 }
1188
1189 /*
1190 ** Pass on my client information to the new server
1191 **
1192 ** First, pass only servers (idea is that if the link gets
1193 ** cancelled beacause the server was already there,
1194 ** there are no NICK's to be cancelled...). Of course,
1195 ** if cancellation occurs, all this info is sent anyway,
1196 ** and I guess the link dies when a read is attempted...? --msa
1197 **
1198 ** Note: Link cancellation to occur at this point means
1199 ** that at least two servers from my fragment are building
1200 ** up connection this other fragment at the same time, it's
1201 ** a race condition, not the normal way of operation...
1202 **
1203 ** ALSO NOTE: using the get_client_name for server names--
1204 ** see previous *WARNING*!!! (Also, original inpath
1205 ** is destroyed...)
1206 */
8e69bb4e 1207 RB_DLINK_FOREACH(ptr, global_serv_list.head)
212380e3 1208 {
1209 target_p = ptr->data;
1210
1211 /* target_p->from == target_p for target_p == client_p */
1212 if(IsMe(target_p) || target_p->from == client_p)
1213 continue;
1214
1215 /* presumption, if target has an id, so does its uplink */
1216 if(has_id(client_p) && has_id(target_p))
1217 sendto_one(client_p, ":%s SID %s %d %s :%s%s",
66c8fdd2 1218 target_p->servptr->id, target_p->name,
212380e3 1219 target_p->hopcount + 1, target_p->id,
1220 IsHidden(target_p) ? "(H) " : "", target_p->info);
1221 else
1222 sendto_one(client_p, ":%s SERVER %s %d :%s%s",
66c8fdd2 1223 target_p->servptr->name,
212380e3 1224 target_p->name, target_p->hopcount + 1,
1225 IsHidden(target_p) ? "(H) " : "", target_p->info);
1226
1227 if(IsCapable(client_p, CAP_ENCAP) &&
1228 !EmptyString(target_p->serv->fullcaps))
1229 sendto_one(client_p, ":%s ENCAP * GCAP :%s",
1230 get_id(target_p, client_p),
1231 target_p->serv->fullcaps);
1232 }
1233
1234 if(has_id(client_p))
1235 burst_TS6(client_p);
1236 else
1237 burst_TS5(client_p);
1238
1239 /* Always send a PING after connect burst is done */
1240 sendto_one(client_p, "PING :%s", get_id(&me, client_p));
1241
1242 free_pre_client(client_p);
1243
1244 return 0;
1245}
1246
1247static void
1248start_io(struct Client *server)
1249{
1250 unsigned char *iobuf;
1251 int c = 0;
1252 int linecount = 0;
1253 int linelen;
1254
8e43b0b4 1255 iobuf = rb_malloc(256); /* XXX: This seems arbitrary. Perhaps make it IRCD_BUFSIZE? --nenolod */
212380e3 1256
1257 if(IsCapable(server, CAP_ZIP))
1258 {
1259 /* ziplink */
1260 iobuf[c++] = SLINKCMD_SET_ZIP_OUT_LEVEL;
1261 iobuf[c++] = 0; /* | */
1262 iobuf[c++] = 1; /* \ len is 1 */
1263 iobuf[c++] = ConfigFileEntry.compression_level;
1264 iobuf[c++] = SLINKCMD_START_ZIP_IN;
1265 iobuf[c++] = SLINKCMD_START_ZIP_OUT;
1266 }
1267
1268 while (MyConnect(server))
1269 {
1270 linecount++;
1271
a5497589 1272 iobuf = rb_realloc(iobuf, (c + READBUF_SIZE + 64));
212380e3 1273
1274 /* store data in c+3 to allow for SLINKCMD_INJECT_RECVQ and len u16 */
a5497589 1275 linelen = rb_linebuf_get(&server->localClient->buf_recvq, (char *) (iobuf + c + 3), READBUF_SIZE, LINEBUF_PARTIAL, LINEBUF_RAW); /* include partial lines */
212380e3 1276
1277 if(linelen)
1278 {
1279 iobuf[c++] = SLINKCMD_INJECT_RECVQ;
1280 iobuf[c++] = (linelen >> 8);
1281 iobuf[c++] = (linelen & 0xff);
1282 c += linelen;
1283 }
1284 else
1285 break;
1286 }
1287
1288 while (MyConnect(server))
1289 {
1290 linecount++;
1291
a5497589 1292 iobuf = rb_realloc(iobuf, (c + BUF_DATA_SIZE + 64));
212380e3 1293
1294 /* store data in c+3 to allow for SLINKCMD_INJECT_RECVQ and len u16 */
a5497589 1295 linelen = rb_linebuf_get(&server->localClient->buf_sendq,
212380e3 1296 (char *) (iobuf + c + 3), READBUF_SIZE,
1297 LINEBUF_PARTIAL, LINEBUF_PARSED); /* include partial lines */
1298
1299 if(linelen)
1300 {
1301 iobuf[c++] = SLINKCMD_INJECT_SENDQ;
1302 iobuf[c++] = (linelen >> 8);
1303 iobuf[c++] = (linelen & 0xff);
1304 c += linelen;
1305 }
1306 else
1307 break;
1308 }
1309
1310 /* start io */
1311 iobuf[c++] = SLINKCMD_INIT;
1312
1313 server->localClient->slinkq = iobuf;
1314 server->localClient->slinkq_ofs = 0;
1315 server->localClient->slinkq_len = c;
1316
1317 /* schedule a write */
a5497589 1318 //XXX send_queued_slink_write(server->localClient->ctrlF, server);
212380e3 1319}
1320
1321/*
1322 * fork_server
1323 *
1324 * inputs - struct Client *server
1325 * output - success: 0 / failure: -1
1326 * side effect - fork, and exec SERVLINK to handle this connection
1327 */
1328static int
1329fork_server(struct Client *server)
1330{
1331 int ret;
1332 int i;
1333 int ctrl_fds[2];
1334 int data_fds[2];
1335
1336 char fd_str[4][6];
1337 char *kid_argv[7];
1338 char slink[] = "-slink";
1339
1340
1341 /* ctrl */
1342#ifdef HAVE_SOCKETPAIR
1343 if(socketpair(AF_UNIX, SOCK_STREAM, 0, ctrl_fds) < 0)
1344#else
1345 if(inet_socketpair(AF_INET,SOCK_STREAM, 0, ctrl_fds) < 0)
1346#endif
1347 goto fork_error;
1348
1349
1350
1351 /* data */
1352#ifdef HAVE_SOCKETPAIR
1353 if(socketpair(AF_UNIX, SOCK_STREAM, 0, data_fds) < 0)
1354#else
1355 if(inet_socketpair(AF_INET,SOCK_STREAM, 0, data_fds) < 0)
1356#endif
1357 goto fork_error;
1358
1359
1360#ifdef __CYGWIN__
1361 if((ret = vfork()) < 0)
1362#else
1363 if((ret = fork()) < 0)
1364#endif
1365 goto fork_error;
1366 else if(ret == 0)
1367 {
a5497589 1368 int maxconn = maxconnections;
6fcb8629 1369
212380e3 1370 /* set our fds as non blocking and close everything else */
6fcb8629 1371 for (i = 0; i < maxconn; i++)
212380e3 1372 {
1373
1374
a5497589 1375 if((i == ctrl_fds[1]) || (i == data_fds[1]) || (i == rb_get_fd(server->localClient->F)))
212380e3 1376 {
a5497589 1377 // XXX rb_set_nb(i);
212380e3 1378 }
1379 else
1380 {
1381#ifdef __CYGWIN__
1382 if(i > 2) /* don't close std* */
1383#endif
1384 close(i);
1385 }
1386 }
1387
38e6acdd
WP
1388 rb_snprintf(fd_str[0], sizeof(fd_str[0]), "%d", ctrl_fds[1]);
1389 rb_snprintf(fd_str[1], sizeof(fd_str[1]), "%d", data_fds[1]);
a5497589 1390 rb_snprintf(fd_str[2], sizeof(fd_str[2]), "%d", rb_get_fd(server->localClient->F));
212380e3 1391 kid_argv[0] = slink;
1392 kid_argv[1] = fd_str[0];
1393 kid_argv[2] = fd_str[1];
1394 kid_argv[3] = fd_str[2];
1395 kid_argv[4] = NULL;
1396
1397 /* exec servlink program */
1398 execv(ConfigFileEntry.servlink_path, kid_argv);
1399
1400 /* We're still here, abort. */
1401 _exit(1);
1402 }
1403 else
1404 {
a5497589 1405 rb_close(server->localClient->F);
212380e3 1406
1407 /* close the childs end of the pipes */
1408 close(ctrl_fds[1]);
1409 close(data_fds[1]);
1410
1411 s_assert(server->localClient);
32db3450 1412 // server->localClient->ctrlfd = ctrl_fds[0];
a5497589 1413 server->localClient->F = rb_open(data_fds[0], RB_FD_PIPE, "servlink data");
212380e3 1414
a5497589 1415 if(!rb_set_nb(server->localClient->F))
212380e3 1416 {
a5497589 1417 report_error("Cannot set slink fd nonblocking for server %s:%s",
212380e3 1418 get_server_name(server, SHOW_IP),
1419 log_client_name(server, SHOW_IP),
1420 errno);
1421 }
1422
32db3450 1423 /* if(!rb_set_nb(server->localClient->ctrlfd))
212380e3 1424 {
a5497589 1425 report_error("Cannot set slink fd nonblocking for server %s:%s",
212380e3 1426 get_server_name(server, SHOW_IP),
1427 log_client_name(server, SHOW_IP),
1428 errno);
1429 }
1430
38e6acdd 1431 rb_open(server->localClient->ctrlfd, FD_SOCKET, NULL);
32db3450
VY
1432 */
1433
a5497589 1434 read_packet(server->localClient->F, server);
212380e3 1435 }
1436
1437 return 0;
1438
1439 fork_error:
1440 /* this is ugly, but nicer than repeating
1441 * about 50 close() statements everywhre... */
1442 close(data_fds[0]);
1443 close(data_fds[1]);
1444 close(ctrl_fds[0]);
1445 close(ctrl_fds[1]);
1446 return -1;
1447}
1448
1449/*
1450 * New server connection code
1451 * Based upon the stuff floating about in s_bsd.c
1452 * -- adrian
1453 */
1454
1455/*
1456 * serv_connect() - initiate a server connection
1457 *
1458 * inputs - pointer to conf
1459 * - pointer to client doing the connet
1460 * output -
1461 * side effects -
1462 *
1463 * This code initiates a connection to a server. It first checks to make
1464 * sure the given server exists. If this is the case, it creates a socket,
1465 * creates a client, saves the socket information in the client, and
38e6acdd 1466 * initiates a connection to the server through rb_connect_tcp(). The
212380e3 1467 * completion of this goes through serv_completed_connection().
1468 *
1469 * We return 1 if the connection is attempted, since we don't know whether
1470 * it suceeded or not, and 0 if it fails in here somewhere.
1471 */
1472int
1473serv_connect(struct server_conf *server_p, struct Client *by)
1474{
1475 struct Client *client_p;
a5497589
JT
1476 struct rb_sockaddr_storage myipnum, theiripnum;
1477 rb_fde_t *F;
17648928 1478 char vhoststr[HOSTIPLEN];
a5497589 1479 char note[HOSTLEN + 10];
212380e3 1480
1481 s_assert(server_p != NULL);
1482 if(server_p == NULL)
1483 return 0;
1484
1485 /*
1486 * Make sure this server isn't already connected
1487 */
1488 if((client_p = find_server(NULL, server_p->name)))
1489 {
1490 sendto_realops_snomask(SNO_GENERAL, L_ALL,
1491 "Server %s already present from %s",
1492 server_p->name, get_server_name(client_p, SHOW_IP));
1493 if(by && IsPerson(by) && !MyClient(by))
1494 sendto_one_notice(by, ":Server %s already present from %s",
1495 server_p->name, get_server_name(client_p, SHOW_IP));
1496 return 0;
1497 }
1498
a5497589
JT
1499 if (rb_inet_pton_sock(server_p->host, (struct sockaddr *)&theiripnum) <= 0)
1500 {
1501 sendto_realops_snomask(SNO_GENERAL, L_ALL,
1502 "Server %s host is a DNS name which is currently not implemented",
1503 server_p->name);
1504 if(by && IsPerson(by) && !MyClient(by))
1505 sendto_one_notice(by, ":Server %s host is a DNS name which is currently not implemented",
1506 server_p->name);
1507 return 0;
1508 }
1509
1510#ifdef IPV6
1511 if(theiripnum.ss_family == AF_INET6)
1512 ((struct sockaddr_in6 *)&theiripnum)->sin6_port = htons(server_p->port);
1513 else
1514#endif
1515 ((struct sockaddr_in *)&theiripnum)->sin_port = htons(server_p->port);
1516
212380e3 1517 /* create a socket for the server connection */
a5497589 1518 if((F = rb_socket(server_p->aftype, SOCK_STREAM, 0, NULL)) != NULL)
212380e3 1519 {
1520 /* Eek, failure to create the socket */
1521 report_error("opening stream socket to %s: %s",
1522 server_p->name, server_p->name, errno);
1523 return 0;
1524 }
1525
a5497589
JT
1526 rb_snprintf(note, sizeof note, "Server: %s", server_p->name);
1527 rb_note(F, note);
212380e3 1528
1529 /* Create a local client */
1530 client_p = make_client(NULL);
1531
1532 /* Copy in the server, hostname, fd
1533 * The sockhost may be a hostname, this will be corrected later
1534 * -- jilles
1535 */
1536 strlcpy(client_p->name, server_p->name, sizeof(client_p->name));
1537 strlcpy(client_p->host, server_p->host, sizeof(client_p->host));
1538 strlcpy(client_p->sockhost, server_p->host, sizeof(client_p->sockhost));
a5497589
JT
1539 memcpy(&client_p->localClient->ip, &theiripnum, sizeof(client_p->localClient->ip));
1540 client_p->localClient->F = F;
212380e3 1541
1542 /*
1543 * Set up the initial server evilness, ripped straight from
1544 * connect_server(), so don't blame me for it being evil.
1545 * -- adrian
1546 */
1547
a5497589 1548 if(!rb_set_buffers(client_p->localClient->F, READBUF_SIZE))
212380e3 1549 {
a5497589 1550 report_error("rb_set_buffers failed for server %s:%s",
212380e3 1551 get_server_name(client_p, SHOW_IP),
1552 log_client_name(client_p, SHOW_IP),
1553 errno);
1554 }
1555
1556 /*
1557 * Attach config entries to client here rather than in
1558 * serv_connect_callback(). This to avoid null pointer references.
1559 */
1560 attach_server_conf(client_p, server_p);
1561
1562 /*
1563 * at this point we have a connection in progress and C/N lines
1564 * attached to the client, the socket info should be saved in the
1565 * client and it should either be resolved or have a valid address.
1566 *
1567 * The socket has been connected or connect is in progress.
1568 */
1569 make_server(client_p);
1570 if(by && IsPerson(by))
1571 {
1572 strcpy(client_p->serv->by, by->name);
1573 if(client_p->serv->user)
1574 free_user(client_p->serv->user, NULL);
1575 client_p->serv->user = by->user;
1576 by->user->refcnt++;
1577 }
1578 else
1579 {
1580 strcpy(client_p->serv->by, "AutoConn.");
1581 if(client_p->serv->user)
1582 free_user(client_p->serv->user, NULL);
1583 client_p->serv->user = NULL;
1584 }
212380e3 1585 SetConnecting(client_p);
af81d5a0 1586 rb_dlinkAddTail(client_p, &client_p->node, &global_client_list);
212380e3 1587
212380e3 1588 if(ServerConfVhosted(server_p))
1589 {
1590 memcpy(&myipnum, &server_p->my_ipnum, sizeof(myipnum));
1591 ((struct sockaddr_in *)&myipnum)->sin_port = 0;
1592 myipnum.ss_family = server_p->aftype;
1593
1594 }
1595 else if(server_p->aftype == AF_INET && ServerInfo.specific_ipv4_vhost)
1596 {
1597 memcpy(&myipnum, &ServerInfo.ip, sizeof(myipnum));
1598 ((struct sockaddr_in *)&myipnum)->sin_port = 0;
1599 myipnum.ss_family = AF_INET;
a5497589 1600 SET_SS_LEN(&myipnum, sizeof(struct sockaddr_in));
212380e3 1601 }
1602
1603#ifdef IPV6
1604 else if((server_p->aftype == AF_INET6) && ServerInfo.specific_ipv6_vhost)
1605 {
1606 memcpy(&myipnum, &ServerInfo.ip6, sizeof(myipnum));
1607 ((struct sockaddr_in6 *)&myipnum)->sin6_port = 0;
1608 myipnum.ss_family = AF_INET6;
a5497589 1609 SET_SS_LEN(&myipnum, sizeof(struct sockaddr_in6));
212380e3 1610 }
1611#endif
1612 else
1613 {
17648928
JT
1614 /* log */
1615 ilog(L_SERVER, "Connecting to %s[%s] port %d (%s)", server_p->name, server_p->host, server_p->port,
1616#ifdef IPV6
1617 server_p->aftype == AF_INET6 ? "IPv6" :
1618#endif
1619 (server_p->aftype == AF_INET ? "IPv4" : "?"));
1620
a5497589
JT
1621 rb_connect_tcp(client_p->localClient->F,
1622 (struct sockaddr *) &theiripnum,
1623 NULL, 0,
1624 serv_connect_callback, client_p,
1625 ConfigFileEntry.connect_timeout);
212380e3 1626 return 1;
1627 }
1628
17648928
JT
1629 /* log */
1630 inetntop_sock((struct sockaddr *)&myipnum, vhoststr, sizeof vhoststr);
1631 ilog(L_SERVER, "Connecting to %s[%s] port %d (%s) (vhost %s)", server_p->name, server_p->host, server_p->port,
1632#ifdef IPV6
1633 server_p->aftype == AF_INET6 ? "IPv6" :
1634#endif
1635 (server_p->aftype == AF_INET ? "IPv4" : "?"), vhoststr);
1636
1637
a5497589
JT
1638 rb_connect_tcp(client_p->localClient->F,
1639 (struct sockaddr *) &theiripnum,
1640 (struct sockaddr *) &myipnum, GET_SS_LEN(&myipnum),
1641 serv_connect_callback, client_p,
1642 ConfigFileEntry.connect_timeout);
212380e3 1643
1644 return 1;
1645}
1646
1647/*
1648 * serv_connect_callback() - complete a server connection.
1649 *
1650 * This routine is called after the server connection attempt has
1651 * completed. If unsucessful, an error is sent to ops and the client
1652 * is closed. If sucessful, it goes through the initialisation/check
1653 * procedures, the capabilities are sent, and the socket is then
1654 * marked for reading.
1655 */
1656static void
a5497589 1657serv_connect_callback(rb_fde_t *F, int status, void *data)
212380e3 1658{
1659 struct Client *client_p = data;
1660 struct server_conf *server_p;
1661 char *errstr;
1662
1663 /* First, make sure its a real client! */
1664 s_assert(client_p != NULL);
a5497589 1665 s_assert(client_p->localClient->F == F);
212380e3 1666
1667 if(client_p == NULL)
1668 return;
1669
1670 /* while we were waiting for the callback, its possible this already
1671 * linked in.. --fl
1672 */
1673 if(find_server(NULL, client_p->name) != NULL)
1674 {
1675 exit_client(client_p, client_p, &me, "Server Exists");
1676 return;
1677 }
1678
a5497589 1679#if 0
212380e3 1680 /* Next, for backward purposes, record the ip of the server */
c961476e 1681 memcpy(&client_p->localClient->ip, &F->connect.hostaddr, sizeof client_p->localClient->ip);
212380e3 1682 /* Set sockhost properly now -- jilles */
c961476e 1683 inetntop_sock((struct sockaddr *)&F->connect.hostaddr,
212380e3 1684 client_p->sockhost, sizeof client_p->sockhost);
a5497589 1685#endif
212380e3 1686
1687 /* Check the status */
a5497589 1688 if(status != RB_OK)
212380e3 1689 {
1690 /* COMM_ERR_TIMEOUT wont have an errno associated with it,
1691 * the others will.. --fl
1692 */
a5497589 1693 if(status == RB_ERR_TIMEOUT)
212380e3 1694 {
1695 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
1696 "Error connecting to %s[%s]: %s",
1697 client_p->name,
1698#ifdef HIDE_SERVERS_IPS
1699 "255.255.255.255",
1700#else
1701 client_p->host,
1702#endif
38e6acdd 1703 rb_errstr(status));
212380e3 1704 ilog(L_SERVER, "Error connecting to %s[%s]: %s",
1705 client_p->name, client_p->sockhost,
38e6acdd 1706 rb_errstr(status));
212380e3 1707 }
1708 else
1709 {
a5497589 1710 errstr = strerror(rb_get_sockerr(F));
212380e3 1711 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
1712 "Error connecting to %s[%s]: %s (%s)",
1713 client_p->name,
1714#ifdef HIDE_SERVERS_IPS
1715 "255.255.255.255",
1716#else
1717 client_p->host,
1718#endif
38e6acdd 1719 rb_errstr(status), errstr);
212380e3 1720 ilog(L_SERVER, "Error connecting to %s[%s]: %s (%s)",
1721 client_p->name, client_p->sockhost,
38e6acdd 1722 rb_errstr(status), errstr);
212380e3 1723 }
1724
38e6acdd 1725 exit_client(client_p, client_p, &me, rb_errstr(status));
212380e3 1726 return;
1727 }
1728
1729 /* COMM_OK, so continue the connection procedure */
1730 /* Get the C/N lines */
1731 if((server_p = client_p->localClient->att_sconf) == NULL)
1732 {
1733 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL, "Lost connect{} block for %s",
1734 get_server_name(client_p, HIDE_IP));
1735 exit_client(client_p, client_p, &me, "Lost connect{} block");
1736 return;
1737 }
1738
1739 /* Next, send the initial handshake */
1740 SetHandshake(client_p);
1741
1742 /* kludge, if we're not using TS6, dont ever send
1743 * ourselves as being TS6 capable.
1744 */
1745 if(!EmptyString(server_p->spasswd))
1746 {
cda8e9b8 1747 sendto_one(client_p, "PASS %s TS %d :%s",
1748 server_p->spasswd, TS_CURRENT, me.id);
212380e3 1749 }
1750
1751 /* pass my info to the new server */
1752 send_capabilities(client_p, default_server_capabs
1753 | (ServerConfCompressed(server_p) ? CAP_ZIP_SUPPORTED : 0)
1754 | (ServerConfTb(server_p) ? CAP_TB : 0));
1755
1756 sendto_one(client_p, "SERVER %s 1 :%s%s",
1757 me.name,
1758 ConfigServerHide.hidden ? "(H) " : "", me.info);
1759
1760 /*
1761 * If we've been marked dead because a send failed, just exit
1762 * here now and save everyone the trouble of us ever existing.
1763 */
1764 if(IsAnyDead(client_p))
1765 {
1766 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
1767 "%s went dead during handshake", client_p->name);
1768 exit_client(client_p, client_p, &me, "Went dead during handshake");
1769 return;
1770 }
1771
1772 /* don't move to serv_list yet -- we haven't sent a burst! */
1773
1774 /* If we get here, we're ok, so lets start reading some data */
a5497589 1775 read_packet(F, client_p);
212380e3 1776}
1777
1778#ifndef HAVE_SOCKETPAIR
1779static int
1780inet_socketpair(int d, int type, int protocol, int sv[2])
1781{
1782 struct sockaddr_in addr1, addr2, addr3;
1783 int addr3_len = sizeof(addr3);
1784 int fd, rc;
1785 int port_no = 20000;
1786
1787 if(d != AF_INET || type != SOCK_STREAM || protocol)
1788 {
1789 errno = EAFNOSUPPORT;
1790 return -1;
1791 }
1792 if(((sv[0] = socket(AF_INET, SOCK_STREAM, 0)) < 0) || ((sv[1] = socket(AF_INET, SOCK_STREAM, 0)) < 0))
1793 return -1;
1794
1795 addr1.sin_port = htons(port_no);
1796 addr1.sin_family = AF_INET;
1797 addr1.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
1798 while ((rc = bind (sv[0], (struct sockaddr *) &addr1, sizeof (addr1))) < 0 && errno == EADDRINUSE)
1799 addr1.sin_port = htons(++port_no);
1800
1801 if(rc < 0)
1802 return -1;
1803
1804 if(listen(sv[0], 1) < 0)
1805 {
1806 close(sv[0]);
1807 close(sv[1]);
1808 return -1;
1809 }
1810
1811 addr2.sin_port = htons(port_no);
1812 addr2.sin_family = AF_INET;
1813 addr2.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
1814 if(connect (sv[1], (struct sockaddr *) &addr2, sizeof (addr2)) < 0)
1815 {
1816 close(sv[0]);
1817 close(sv[1]);
1818 return -1;
1819 }
1820
1821 if((fd = accept(sv[1], (struct sockaddr *) &addr3, &addr3_len)) < 0)
1822 {
1823 close(sv[0]);
1824 close(sv[1]);
1825 return -1;
1826 }
1827 close(sv[0]);
1828 sv[0] = fd;
1829
1830 return(0);
1831
1832}
1833#endif