]> jfr.im git - irc/rqf/shadowircd.git/blame - src/s_serv.c
Fix some part of IPv6 dline checking.
[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"
13ae2f4b 38#include "match.h"
212380e3 39#include "ircd.h"
40#include "ircd_defs.h"
41#include "numeric.h"
42#include "packet.h"
43#include "res.h"
212380e3 44#include "s_conf.h"
45#include "s_newconf.h"
d3455e2c 46#include "logger.h"
212380e3 47#include "s_stats.h"
48#include "s_user.h"
49#include "scache.h"
50#include "send.h"
51#include "client.h"
212380e3 52#include "channel.h" /* chcap_usage_counts stuff... */
53#include "hook.h"
54#include "msg.h"
54015b5f 55#include "reject.h"
8db00894 56#include "sslproc.h"
212380e3 57
212380e3 58#ifndef INADDR_NONE
59#define INADDR_NONE ((unsigned int) 0xffffffff)
60#endif
61
62#ifndef HAVE_SOCKETPAIR
63static int inet_socketpair(int d, int type, int protocol, int sv[2]);
64#endif
65
66int MaxConnectionCount = 1;
67int MaxClientCount = 1;
68int refresh_user_links = 0;
69
70static char buf[BUFSIZE];
71
212380e3 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 */
77struct 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},
212380e3 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
212380e3 97static CNCB serv_connect_callback;
8db00894 98static CNCB serv_connect_ssl_callback;
212380e3 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 */
119int
120hunt_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;
af81d5a0 125 rb_dlink_node *ptr;
212380e3 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]) ||
4d7a1ee5 133 match(parv[server], me.name) || (strcmp(parv[server], me.id) == 0))
212380e3 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
212380e3 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
8e69bb4e 173 RB_DLINK_FOREACH(ptr, global_client_list.head)
212380e3 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
95d36ef5 206 if(MyClient(source_p) || !IsDigit(parv[server][0]))
212380e3 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 */
218void
219try_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;
af81d5a0 225 rb_dlink_node *ptr;
212380e3 226 int connecting = FALSE;
227 int confrq = 0;
228 time_t next = 0;
229
8e69bb4e 230 RB_DLINK_FOREACH(ptr, server_conf_list.head)
212380e3 231 {
232 tmp_p = ptr->data;
233
234 if(ServerConfIllegal(tmp_p) || !ServerConfAutoconn(tmp_p))
235 continue;
236
e30b893e
VY
237 /* don't allow ssl connections if ssl isn't setup */
238 if(ServerConfSSL(tmp_p) && (!ssl_ok || !get_ssld_count()))
8db00894
VY
239 continue;
240
212380e3 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 */
9f6bbe3c 250 if(tmp_p->hold > rb_current_time())
212380e3 251 {
252 if(next > tmp_p->hold || next == 0)
253 next = tmp_p->hold;
254 continue;
255 }
256
257 confrq = get_con_freq(cltmp);
9f6bbe3c 258 tmp_p->hold = rb_current_time() + confrq;
212380e3 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.. */
af81d5a0
WP
286 rb_dlinkDelete(&server_p->node, &server_conf_list);
287 rb_dlinkAddTail(server_p, &server_p->node, &server_conf_list);
212380e3 288
289 /*
290 * We used to only print this if serv_connect() actually
38e6acdd 291 * suceeded, but since rb_tcp_connect() can call the callback
212380e3 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 */
212380e3 298 sendto_realops_snomask(SNO_GENERAL, L_ALL,
299 "Connection to %s activated",
300 server_p->name);
212380e3 301
302 serv_connect(server_p, 0);
303}
304
305int
306check_server(const char *name, struct Client *client_p)
307{
308 struct server_conf *server_p = NULL;
309 struct server_conf *tmp_p;
af81d5a0 310 rb_dlink_node *ptr;
212380e3 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
8e69bb4e 323 RB_DLINK_FOREACH(ptr, server_conf_list.head)
212380e3 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 {
cd1dea97 344 if(!strcmp(tmp_p->passwd, rb_crypt(client_p->localClient->passwd,
212380e3 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
e30b893e
VY
362 if(ServerConfSSL(server_p) && client_p->localClient->ssl_ctl == NULL)
363 {
364 return -5;
8db00894
VY
365 }
366
212380e3 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 */
390void
391send_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 {
38e6acdd 404 tl = rb_sprintf(t, "%s ", cap->name);
212380e3 405 t += tl;
406 }
407 }
408
409 t--;
410 *t = '\0';
411
412 sendto_one(client_p, "CAPAB :%s", msgbuf);
413}
414
212380e3 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 */
421static void
422burst_modes_TS6(struct Client *client_p, struct Channel *chptr,
af81d5a0 423 rb_dlink_list *list, char flag)
212380e3 424{
af81d5a0 425 rb_dlink_node *ptr;
212380e3 426 struct Ban *banptr;
427 char *t;
428 int tlen;
429 int mlen;
430 int cur_len;
431
38e6acdd 432 cur_len = mlen = rb_sprintf(buf, ":%s BMASK %ld %s %c :",
212380e3 433 me.id, (long) chptr->channelts, chptr->chname, flag);
434 t = buf + mlen;
435
8e69bb4e 436 RB_DLINK_FOREACH(ptr, list->head)
212380e3 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
38e6acdd 459 rb_sprintf(t, "%s ", banptr->banstr);
212380e3 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
212380e3 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 */
479static void
480burst_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;
af81d5a0
WP
488 rb_dlink_node *ptr;
489 rb_dlink_node *uptr;
212380e3 490 char *t;
491 int tlen, mlen;
492 int cur_len = 0;
493
494 hclientinfo.client = hchaninfo.client = client_p;
495
8e69bb4e 496 RB_DLINK_FOREACH(ptr, global_client_list.head)
212380e3 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(has_id(target_p) && 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 if(has_id(target_p))
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 else
530 sendto_one(client_p, "NICK %s %d %ld %s %s %s %s :%s",
531 target_p->name,
532 target_p->hopcount + 1,
533 (long) target_p->tsinfo,
534 ubuf,
535 target_p->username, target_p->host,
c88cdb00 536 target_p->servptr->name, target_p->info);
212380e3 537
538 if(!has_id(target_p) || !IsCapable(client_p, CAP_EUID))
539 {
540 if(IsDynSpoof(target_p))
541 sendto_one(client_p, ":%s ENCAP * REALHOST %s",
542 use_id(target_p), target_p->orighost);
543 if(!EmptyString(target_p->user->suser))
544 sendto_one(client_p, ":%s ENCAP * LOGIN %s",
545 use_id(target_p), target_p->user->suser);
546 }
547
548 if(ConfigFileEntry.burst_away && !EmptyString(target_p->user->away))
549 sendto_one(client_p, ":%s AWAY :%s",
550 use_id(target_p),
551 target_p->user->away);
552
553 hclientinfo.target = target_p;
554 call_hook(h_burst_client, &hclientinfo);
555 }
556
8e69bb4e 557 RB_DLINK_FOREACH(ptr, global_channel_list.head)
212380e3 558 {
559 chptr = ptr->data;
560
561 if(*chptr->chname != '#')
562 continue;
563
38e6acdd 564 cur_len = mlen = rb_sprintf(buf, ":%s SJOIN %ld %s %s :", me.id,
212380e3 565 (long) chptr->channelts, chptr->chname,
566 channel_modes(chptr, client_p));
567
568 t = buf + mlen;
569
8e69bb4e 570 RB_DLINK_FOREACH(uptr, chptr->members.head)
212380e3 571 {
572 msptr = uptr->data;
573
574 tlen = strlen(use_id(msptr->client_p)) + 1;
575 if(is_chanop(msptr))
576 tlen++;
577 if(is_voiced(msptr))
578 tlen++;
579
580 if(cur_len + tlen >= BUFSIZE - 3)
581 {
582 *(t-1) = '\0';
583 sendto_one(client_p, "%s", buf);
584 cur_len = mlen;
585 t = buf + mlen;
586 }
587
38e6acdd 588 rb_sprintf(t, "%s%s ", find_channel_status(msptr, 1),
212380e3 589 use_id(msptr->client_p));
590
591 cur_len += tlen;
592 t += tlen;
593 }
594
af81d5a0 595 if (rb_dlink_list_length(&chptr->members) > 0)
212380e3 596 {
597 /* remove trailing space */
598 *(t-1) = '\0';
599 }
600 sendto_one(client_p, "%s", buf);
601
af81d5a0 602 if(rb_dlink_list_length(&chptr->banlist) > 0)
212380e3 603 burst_modes_TS6(client_p, chptr, &chptr->banlist, 'b');
604
605 if(IsCapable(client_p, CAP_EX) &&
af81d5a0 606 rb_dlink_list_length(&chptr->exceptlist) > 0)
212380e3 607 burst_modes_TS6(client_p, chptr, &chptr->exceptlist, 'e');
608
609 if(IsCapable(client_p, CAP_IE) &&
af81d5a0 610 rb_dlink_list_length(&chptr->invexlist) > 0)
212380e3 611 burst_modes_TS6(client_p, chptr, &chptr->invexlist, 'I');
612
af81d5a0 613 if(rb_dlink_list_length(&chptr->quietlist) > 0)
212380e3 614 burst_modes_TS6(client_p, chptr, &chptr->quietlist, 'q');
615
616 if(IsCapable(client_p, CAP_TB) && chptr->topic != NULL)
617 sendto_one(client_p, ":%s TB %s %ld %s%s:%s",
618 me.id, chptr->chname, (long) chptr->topic_time,
619 ConfigChannel.burst_topicwho ? chptr->topic_info : "",
620 ConfigChannel.burst_topicwho ? " " : "",
621 chptr->topic);
622
623 hchaninfo.chptr = chptr;
624 call_hook(h_burst_channel, &hchaninfo);
625 }
626
627 hclientinfo.target = NULL;
628 call_hook(h_burst_finished, &hclientinfo);
629}
630
631/*
632 * show_capabilities - show current server capabilities
633 *
634 * inputs - pointer to an struct Client
635 * output - pointer to static string
636 * side effects - build up string representing capabilities of server listed
637 */
638const char *
639show_capabilities(struct Client *target_p)
640{
641 static char msgbuf[BUFSIZE];
642 struct Capability *cap;
212380e3 643
e30b893e
VY
644 if(has_id(target_p))
645 rb_strlcpy(msgbuf, " TS6", sizeof(msgbuf));
e30b893e
VY
646
647 if(IsSSL(target_p))
648 rb_strlcat(msgbuf, " SSL", sizeof(msgbuf));
212380e3 649
650 if(!IsServer(target_p) || !target_p->serv->caps) /* short circuit if no caps */
e30b893e 651 return msgbuf + 1;
212380e3 652
653 for (cap = captab; cap->cap; ++cap)
654 {
655 if(cap->cap & target_p->serv->caps)
e30b893e 656 rb_snprintf_append(msgbuf, sizeof(msgbuf), " %s", cap->name);
212380e3 657 }
658
e30b893e 659 return msgbuf + 1;
212380e3 660}
661
662/*
663 * server_estab
664 *
665 * inputs - pointer to a struct Client
666 * output -
667 * side effects -
668 */
669int
670server_estab(struct Client *client_p)
671{
672 struct Client *target_p;
673 struct server_conf *server_p;
674 hook_data_client hdata;
675 char *host;
af81d5a0 676 rb_dlink_node *ptr;
a5497589 677 char note[HOSTLEN + 15];
212380e3 678
679 s_assert(NULL != client_p);
680 if(client_p == NULL)
681 return -1;
212380e3 682
683 host = client_p->name;
684
685 if((server_p = client_p->localClient->att_sconf) == NULL)
686 {
687 /* This shouldn't happen, better tell the ops... -A1kmm */
688 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
689 "Warning: Lost connect{} block for server %s!", host);
690 return exit_client(client_p, client_p, client_p, "Lost connect{} block!");
691 }
692
693 /* We shouldn't have to check this, it should already done before
694 * server_estab is called. -A1kmm
695 */
696 if(client_p->localClient->passwd)
697 {
698 memset(client_p->localClient->passwd, 0, strlen(client_p->localClient->passwd));
90a3c35b 699 rb_free(client_p->localClient->passwd);
212380e3 700 client_p->localClient->passwd = NULL;
701 }
702
703 /* Its got identd , since its a server */
704 SetGotId(client_p);
705
706 /* If there is something in the serv_list, it might be this
707 * connecting server..
708 */
709 if(!ServerInfo.hub && serv_list.head)
710 {
711 if(client_p != serv_list.head->data || serv_list.head->next)
712 {
83251205 713 ServerStats.is_ref++;
212380e3 714 sendto_one(client_p, "ERROR :I'm a leaf not a hub");
715 return exit_client(client_p, client_p, client_p, "I'm a leaf");
716 }
717 }
718
719 if(IsUnknown(client_p))
720 {
721 /*
722 * jdc -- 1. Use EmptyString(), not [0] index reference.
723 * 2. Check ->spasswd, not ->passwd.
724 */
725 if(!EmptyString(server_p->spasswd))
726 {
cda8e9b8 727 sendto_one(client_p, "PASS %s TS %d :%s",
728 server_p->spasswd, TS_CURRENT, me.id);
212380e3 729 }
730
731 /* pass info to new server */
732 send_capabilities(client_p, default_server_capabs
733 | (ServerConfCompressed(server_p) ? CAP_ZIP_SUPPORTED : 0)
734 | (ServerConfTb(server_p) ? CAP_TB : 0));
735
736 sendto_one(client_p, "SERVER %s 1 :%s%s",
737 me.name,
738 ConfigServerHide.hidden ? "(H) " : "",
739 (me.info[0]) ? (me.info) : "IRCers United");
740 }
741
a5497589 742 if(!rb_set_buffers(client_p->localClient->F, READBUF_SIZE))
d7b7d8bb 743 ilog_error("rb_set_buffers failed for server");
212380e3 744
8db00894 745 /* Enable compression now */
e30b893e
VY
746 if(IsCapable(client_p, CAP_ZIP))
747 {
748 start_zlib_session(client_p);
749 }
8a78afe4 750 sendto_one(client_p, "SVINFO %d %d 0 :%ld", TS_CURRENT, TS_MIN, (long int)rb_current_time());
212380e3 751
752 client_p->servptr = &me;
753
754 if(IsAnyDead(client_p))
755 return CLIENT_EXITED;
756
757 SetServer(client_p);
758
759 /* Update the capability combination usage counts */
760 set_chcap_usage_counts(client_p);
761
af81d5a0 762 rb_dlinkAdd(client_p, &client_p->lnode, &me.serv->servers);
54015b5f 763 del_unknown_ip(client_p);
af81d5a0
WP
764 rb_dlinkMoveNode(&client_p->localClient->tnode, &unknown_list, &serv_list);
765 rb_dlinkAddTailAlloc(client_p, &global_serv_list);
212380e3 766
767 if(has_id(client_p))
768 add_to_id_hash(client_p->id, client_p);
769
770 add_to_client_hash(client_p->name, client_p);
771 /* doesnt duplicate client_p->serv if allocated this struct already */
772 make_server(client_p);
212380e3 773
774 client_p->serv->caps = client_p->localClient->caps;
775
776 if(client_p->localClient->fullcaps)
777 {
62d28946 778 client_p->serv->fullcaps = rb_strdup(client_p->localClient->fullcaps);
90a3c35b 779 rb_free(client_p->localClient->fullcaps);
212380e3 780 client_p->localClient->fullcaps = NULL;
781 }
782
994544c2 783 client_p->serv->nameinfo = scache_connect(client_p->name, client_p->info, IsHidden(client_p));
9f6bbe3c 784 client_p->localClient->firsttime = rb_current_time();
212380e3 785 /* fixing eob timings.. -gnp */
786
af81d5a0 787 if((rb_dlink_list_length(&lclient_list) + rb_dlink_list_length(&serv_list)) >
2f15f871 788 (unsigned long)MaxConnectionCount)
af81d5a0
WP
789 MaxConnectionCount = rb_dlink_list_length(&lclient_list) +
790 rb_dlink_list_length(&serv_list);
2f15f871 791
212380e3 792 /* Show the real host/IP to admins */
793 sendto_realops_snomask(SNO_GENERAL, L_ALL,
794 "Link with %s established: (%s) link",
715b28fe 795 client_p->name,
212380e3 796 show_capabilities(client_p));
797
798 ilog(L_SERVER, "Link with %s established: (%s) link",
799 log_client_name(client_p, SHOW_IP), show_capabilities(client_p));
800
801 hdata.client = &me;
802 hdata.target = client_p;
803 call_hook(h_server_introduced, &hdata);
804
e30b893e 805 rb_snprintf(note, sizeof(note), "Server: %s", client_p->name);
8db00894 806 rb_note(client_p->localClient->F, note);
212380e3 807
808 /*
809 ** Old sendto_serv_but_one() call removed because we now
810 ** need to send different names to different servers
811 ** (domain name matching) Send new server to other servers.
812 */
8e69bb4e 813 RB_DLINK_FOREACH(ptr, serv_list.head)
212380e3 814 {
815 target_p = ptr->data;
816
817 if(target_p == client_p)
818 continue;
819
820 if(has_id(target_p) && has_id(client_p))
821 {
822 sendto_one(target_p, ":%s SID %s 2 %s :%s%s",
823 me.id, client_p->name, client_p->id,
824 IsHidden(client_p) ? "(H) " : "", client_p->info);
825
826 if(IsCapable(target_p, CAP_ENCAP) &&
827 !EmptyString(client_p->serv->fullcaps))
828 sendto_one(target_p, ":%s ENCAP * GCAP :%s",
829 client_p->id, client_p->serv->fullcaps);
830 }
831 else
832 {
833 sendto_one(target_p, ":%s SERVER %s 2 :%s%s",
834 me.name, client_p->name,
835 IsHidden(client_p) ? "(H) " : "", client_p->info);
836
837 if(IsCapable(target_p, CAP_ENCAP) &&
838 !EmptyString(client_p->serv->fullcaps))
839 sendto_one(target_p, ":%s ENCAP * GCAP :%s",
840 client_p->name, client_p->serv->fullcaps);
841 }
842 }
843
844 /*
845 ** Pass on my client information to the new server
846 **
847 ** First, pass only servers (idea is that if the link gets
848 ** cancelled beacause the server was already there,
849 ** there are no NICK's to be cancelled...). Of course,
850 ** if cancellation occurs, all this info is sent anyway,
851 ** and I guess the link dies when a read is attempted...? --msa
852 **
853 ** Note: Link cancellation to occur at this point means
854 ** that at least two servers from my fragment are building
855 ** up connection this other fragment at the same time, it's
856 ** a race condition, not the normal way of operation...
857 **
858 ** ALSO NOTE: using the get_client_name for server names--
859 ** see previous *WARNING*!!! (Also, original inpath
860 ** is destroyed...)
861 */
8e69bb4e 862 RB_DLINK_FOREACH(ptr, global_serv_list.head)
212380e3 863 {
864 target_p = ptr->data;
865
866 /* target_p->from == target_p for target_p == client_p */
867 if(IsMe(target_p) || target_p->from == client_p)
868 continue;
869
870 /* presumption, if target has an id, so does its uplink */
871 if(has_id(client_p) && has_id(target_p))
872 sendto_one(client_p, ":%s SID %s %d %s :%s%s",
66c8fdd2 873 target_p->servptr->id, target_p->name,
212380e3 874 target_p->hopcount + 1, target_p->id,
875 IsHidden(target_p) ? "(H) " : "", target_p->info);
876 else
877 sendto_one(client_p, ":%s SERVER %s %d :%s%s",
66c8fdd2 878 target_p->servptr->name,
212380e3 879 target_p->name, target_p->hopcount + 1,
880 IsHidden(target_p) ? "(H) " : "", target_p->info);
881
882 if(IsCapable(client_p, CAP_ENCAP) &&
883 !EmptyString(target_p->serv->fullcaps))
884 sendto_one(client_p, ":%s ENCAP * GCAP :%s",
885 get_id(target_p, client_p),
886 target_p->serv->fullcaps);
887 }
888
77bf1a04 889 burst_TS6(client_p);
212380e3 890
891 /* Always send a PING after connect burst is done */
892 sendto_one(client_p, "PING :%s", get_id(&me, client_p));
893
894 free_pre_client(client_p);
895
e30b893e 896 if (!IsCapable(client_p, CAP_ZIP))
8db00894 897 send_pop_queue(client_p);
212380e3 898
899 return 0;
212380e3 900}
901
902/*
903 * New server connection code
904 * Based upon the stuff floating about in s_bsd.c
905 * -- adrian
906 */
907
cecb5c1e
JT
908static int
909serv_connect_resolved(struct Client *client_p)
910{
911 struct rb_sockaddr_storage myipnum;
912 char vhoststr[HOSTIPLEN];
913 struct server_conf *server_p;
914 uint16_t port;
915
916 if((server_p = client_p->localClient->att_sconf) == NULL)
917 {
918 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL, "Lost connect{} block for %s",
715b28fe 919 client_p->name);
cecb5c1e
JT
920 exit_client(client_p, client_p, &me, "Lost connect{} block");
921 return 0;
922 }
923
924#ifdef RB_IPV6
925 if(client_p->localClient->ip.ss_family == AF_INET6)
926 port = ntohs(((struct sockaddr_in6 *)&client_p->localClient->ip)->sin6_port);
927 else
928#endif
929 port = ntohs(((struct sockaddr_in *)&client_p->localClient->ip)->sin_port);
930
931 if(ServerConfVhosted(server_p))
932 {
933 memcpy(&myipnum, &server_p->my_ipnum, sizeof(myipnum));
934 ((struct sockaddr_in *)&myipnum)->sin_port = 0;
935 myipnum.ss_family = server_p->aftype;
936
937 }
938 else if(server_p->aftype == AF_INET && ServerInfo.specific_ipv4_vhost)
939 {
940 memcpy(&myipnum, &ServerInfo.ip, sizeof(myipnum));
941 ((struct sockaddr_in *)&myipnum)->sin_port = 0;
942 myipnum.ss_family = AF_INET;
943 SET_SS_LEN(&myipnum, sizeof(struct sockaddr_in));
944 }
945
946#ifdef RB_IPV6
947 else if((server_p->aftype == AF_INET6) && ServerInfo.specific_ipv6_vhost)
948 {
949 memcpy(&myipnum, &ServerInfo.ip6, sizeof(myipnum));
950 ((struct sockaddr_in6 *)&myipnum)->sin6_port = 0;
951 myipnum.ss_family = AF_INET6;
952 SET_SS_LEN(&myipnum, sizeof(struct sockaddr_in6));
953 }
954#endif
955 else
956 {
957 /* log */
958 ilog(L_SERVER, "Connecting to %s[%s] port %d (%s)", client_p->name, client_p->sockhost, port,
959#ifdef RB_IPV6
960 server_p->aftype == AF_INET6 ? "IPv6" :
961#endif
962 (server_p->aftype == AF_INET ? "IPv4" : "?"));
963
e30b893e
VY
964 if(ServerConfSSL(server_p))
965 {
966 rb_connect_tcp(client_p->localClient->F, (struct sockaddr *)&client_p->localClient->ip,
967 NULL, 0, serv_connect_ssl_callback,
968 client_p, ConfigFileEntry.connect_timeout);
969 }
970 else
971 rb_connect_tcp(client_p->localClient->F, (struct sockaddr *)&client_p->localClient->ip,
972 NULL, 0, serv_connect_callback,
8db00894 973 client_p, ConfigFileEntry.connect_timeout);
cecb5c1e
JT
974 return 1;
975 }
976
977 /* log */
9879cd59 978 rb_inet_ntop_sock((struct sockaddr *)&myipnum, vhoststr, sizeof vhoststr);
cecb5c1e
JT
979 ilog(L_SERVER, "Connecting to %s[%s] port %d (%s) (vhost %s)", client_p->name, client_p->sockhost, port,
980#ifdef RB_IPV6
981 server_p->aftype == AF_INET6 ? "IPv6" :
982#endif
983 (server_p->aftype == AF_INET ? "IPv4" : "?"), vhoststr);
984
985
e30b893e
VY
986 if(ServerConfSSL(server_p))
987 rb_connect_tcp(client_p->localClient->F, (struct sockaddr *)&client_p->localClient->ip,
988 (struct sockaddr *) &myipnum,
989 GET_SS_LEN(&myipnum), serv_connect_ssl_callback, client_p,
990 ConfigFileEntry.connect_timeout);
991 else
992 rb_connect_tcp(client_p->localClient->F, (struct sockaddr *)&client_p->localClient->ip,
993 (struct sockaddr *) &myipnum,
994 GET_SS_LEN(&myipnum), serv_connect_callback, client_p,
8db00894 995 ConfigFileEntry.connect_timeout);
cecb5c1e
JT
996
997 return 1;
998}
999
1000static void
1001serv_connect_dns_callback(void *vptr, struct DNSReply *reply)
1002{
1003 struct Client *client_p = vptr;
1004 uint16_t port;
1005
1006 rb_free(client_p->localClient->dnsquery);
1007 client_p->localClient->dnsquery = NULL;
1008
1009 if (reply == NULL)
1010 {
1011 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL, "Cannot resolve hostname for %s",
715b28fe 1012 client_p->name);
cecb5c1e
JT
1013 ilog(L_SERVER, "Cannot resolve hostname for %s",
1014 log_client_name(client_p, HIDE_IP));
1015 exit_client(client_p, client_p, &me, "Cannot resolve hostname");
1016 return;
1017 }
1018#ifdef RB_IPV6
1019 if(reply->addr.ss_family == AF_INET6)
1020 port = ((struct sockaddr_in6 *)&client_p->localClient->ip)->sin6_port;
1021 else
1022#endif
1023 port = ((struct sockaddr_in *)&client_p->localClient->ip)->sin_port;
1024 memcpy(&client_p->localClient->ip, &reply->addr, sizeof(client_p->localClient->ip));
1025#ifdef RB_IPV6
1026 if(reply->addr.ss_family == AF_INET6)
1027 ((struct sockaddr_in6 *)&client_p->localClient->ip)->sin6_port = port;
1028 else
1029#endif
1030 ((struct sockaddr_in *)&client_p->localClient->ip)->sin_port = port;
1031 /* Set sockhost properly now -- jilles */
9879cd59 1032 rb_inet_ntop_sock((struct sockaddr *)&client_p->localClient->ip,
cecb5c1e
JT
1033 client_p->sockhost, sizeof client_p->sockhost);
1034 serv_connect_resolved(client_p);
1035}
1036
212380e3 1037/*
1038 * serv_connect() - initiate a server connection
1039 *
1040 * inputs - pointer to conf
1041 * - pointer to client doing the connet
1042 * output -
1043 * side effects -
1044 *
1045 * This code initiates a connection to a server. It first checks to make
1046 * sure the given server exists. If this is the case, it creates a socket,
1047 * creates a client, saves the socket information in the client, and
38e6acdd 1048 * initiates a connection to the server through rb_connect_tcp(). The
212380e3 1049 * completion of this goes through serv_completed_connection().
1050 *
1051 * We return 1 if the connection is attempted, since we don't know whether
1052 * it suceeded or not, and 0 if it fails in here somewhere.
1053 */
1054int
1055serv_connect(struct server_conf *server_p, struct Client *by)
1056{
1057 struct Client *client_p;
cecb5c1e 1058 struct rb_sockaddr_storage theiripnum;
a5497589 1059 rb_fde_t *F;
a5497589 1060 char note[HOSTLEN + 10];
212380e3 1061
1062 s_assert(server_p != NULL);
1063 if(server_p == NULL)
1064 return 0;
1065
1066 /*
1067 * Make sure this server isn't already connected
1068 */
1069 if((client_p = find_server(NULL, server_p->name)))
1070 {
1071 sendto_realops_snomask(SNO_GENERAL, L_ALL,
1072 "Server %s already present from %s",
715b28fe 1073 server_p->name, client_p->name);
212380e3 1074 if(by && IsPerson(by) && !MyClient(by))
1075 sendto_one_notice(by, ":Server %s already present from %s",
715b28fe 1076 server_p->name, client_p->name);
212380e3 1077 return 0;
1078 }
1079
1080 /* create a socket for the server connection */
39aff273 1081 if((F = rb_socket(server_p->aftype, SOCK_STREAM, 0, NULL)) == NULL)
212380e3 1082 {
d7b7d8bb 1083 ilog_error("opening a stream socket");
212380e3 1084 return 0;
1085 }
1086
a5497589
JT
1087 rb_snprintf(note, sizeof note, "Server: %s", server_p->name);
1088 rb_note(F, note);
212380e3 1089
1090 /* Create a local client */
1091 client_p = make_client(NULL);
1092
1093 /* Copy in the server, hostname, fd
1094 * The sockhost may be a hostname, this will be corrected later
1095 * -- jilles
1096 */
907468c4
VY
1097 rb_strlcpy(client_p->name, server_p->name, sizeof(client_p->name));
1098 rb_strlcpy(client_p->host, server_p->host, sizeof(client_p->host));
1099 rb_strlcpy(client_p->sockhost, server_p->host, sizeof(client_p->sockhost));
a5497589 1100 client_p->localClient->F = F;
8db00894 1101 add_to_cli_fd_hash(client_p);
212380e3 1102
1103 /*
1104 * Set up the initial server evilness, ripped straight from
1105 * connect_server(), so don't blame me for it being evil.
1106 * -- adrian
1107 */
1108
a5497589 1109 if(!rb_set_buffers(client_p->localClient->F, READBUF_SIZE))
212380e3 1110 {
d7b7d8bb 1111 ilog_error("setting the buffer size for a server connection");
212380e3 1112 }
1113
1114 /*
1115 * Attach config entries to client here rather than in
1116 * serv_connect_callback(). This to avoid null pointer references.
1117 */
1118 attach_server_conf(client_p, server_p);
1119
1120 /*
1121 * at this point we have a connection in progress and C/N lines
1122 * attached to the client, the socket info should be saved in the
1123 * client and it should either be resolved or have a valid address.
1124 *
1125 * The socket has been connected or connect is in progress.
1126 */
1127 make_server(client_p);
1128 if(by && IsPerson(by))
1129 {
1130 strcpy(client_p->serv->by, by->name);
1131 if(client_p->serv->user)
1132 free_user(client_p->serv->user, NULL);
1133 client_p->serv->user = by->user;
1134 by->user->refcnt++;
1135 }
1136 else
1137 {
1138 strcpy(client_p->serv->by, "AutoConn.");
1139 if(client_p->serv->user)
1140 free_user(client_p->serv->user, NULL);
1141 client_p->serv->user = NULL;
1142 }
212380e3 1143 SetConnecting(client_p);
af81d5a0 1144 rb_dlinkAddTail(client_p, &client_p->node, &global_client_list);
212380e3 1145
cecb5c1e 1146 if (rb_inet_pton_sock(server_p->host, (struct sockaddr *)&theiripnum) > 0)
212380e3 1147 {
cecb5c1e 1148 memcpy(&client_p->localClient->ip, &theiripnum, sizeof(client_p->localClient->ip));
2c2e0aa9 1149#ifdef RB_IPV6
cecb5c1e
JT
1150 if(theiripnum.ss_family == AF_INET6)
1151 ((struct sockaddr_in6 *)&client_p->localClient->ip)->sin6_port = htons(server_p->port);
1152 else
212380e3 1153#endif
cecb5c1e
JT
1154 ((struct sockaddr_in *)&client_p->localClient->ip)->sin_port = htons(server_p->port);
1155
1156 return serv_connect_resolved(client_p);
1157 }
212380e3 1158 else
1159 {
2c2e0aa9 1160#ifdef RB_IPV6
cecb5c1e
JT
1161 if(theiripnum.ss_family == AF_INET6)
1162 ((struct sockaddr_in6 *)&client_p->localClient->ip)->sin6_port = htons(server_p->port);
1163 else
17648928 1164#endif
cecb5c1e 1165 ((struct sockaddr_in *)&client_p->localClient->ip)->sin_port = htons(server_p->port);
17648928 1166
cecb5c1e
JT
1167 client_p->localClient->dnsquery = rb_malloc(sizeof(struct DNSQuery));
1168 client_p->localClient->dnsquery->ptr = client_p;
1169 client_p->localClient->dnsquery->callback = serv_connect_dns_callback;
1170 gethost_byname_type(server_p->host, client_p->localClient->dnsquery,
2c2e0aa9 1171#ifdef RB_IPV6
cecb5c1e 1172 server_p->aftype == AF_INET6 ? T_AAAA :
17648928 1173#endif
cecb5c1e
JT
1174 T_A);
1175 return 1;
1176 }
212380e3 1177}
1178
e30b893e
VY
1179static void
1180serv_connect_ssl_callback(rb_fde_t *F, int status, void *data)
1181{
1182 struct Client *client_p = data;
1183 rb_fde_t *xF[2];
faed5542 1184 rb_connect_sockaddr(F, (struct sockaddr *)&client_p->localClient->ip, sizeof(client_p->localClient->ip));
e30b893e
VY
1185 if(status != RB_OK)
1186 {
faed5542
JT
1187 /* Print error message, just like non-SSL. */
1188 serv_connect_callback(F, status, data);
e30b893e
VY
1189 return;
1190 }
e30b893e
VY
1191 rb_socketpair(AF_UNIX, SOCK_STREAM, 0, &xF[0], &xF[1], "Outgoing ssld connection");
1192 del_from_cli_fd_hash(client_p);
1193 client_p->localClient->F = xF[0];
1194 add_to_cli_fd_hash(client_p);
1195
1196 client_p->localClient->ssl_ctl = start_ssld_connect(F, xF[1], rb_get_fd(xF[0]));
1197 SetSSL(client_p);
0d093bfe 1198 serv_connect_callback(client_p->localClient->F, RB_OK, client_p);
8db00894
VY
1199}
1200
212380e3 1201/*
1202 * serv_connect_callback() - complete a server connection.
1203 *
1204 * This routine is called after the server connection attempt has
1205 * completed. If unsucessful, an error is sent to ops and the client
1206 * is closed. If sucessful, it goes through the initialisation/check
1207 * procedures, the capabilities are sent, and the socket is then
1208 * marked for reading.
1209 */
1210static void
a5497589 1211serv_connect_callback(rb_fde_t *F, int status, void *data)
212380e3 1212{
1213 struct Client *client_p = data;
1214 struct server_conf *server_p;
1215 char *errstr;
1216
1217 /* First, make sure its a real client! */
1218 s_assert(client_p != NULL);
a5497589 1219 s_assert(client_p->localClient->F == F);
212380e3 1220
1221 if(client_p == NULL)
1222 return;
1223
1224 /* while we were waiting for the callback, its possible this already
1225 * linked in.. --fl
1226 */
1227 if(find_server(NULL, client_p->name) != NULL)
1228 {
1229 exit_client(client_p, client_p, &me, "Server Exists");
1230 return;
1231 }
1232
e30b893e 1233 if(client_p->localClient->ssl_ctl == NULL)
8db00894
VY
1234 rb_connect_sockaddr(F, (struct sockaddr *)&client_p->localClient->ip, sizeof(client_p->localClient->ip));
1235
212380e3 1236 /* Check the status */
a5497589 1237 if(status != RB_OK)
212380e3 1238 {
1239 /* COMM_ERR_TIMEOUT wont have an errno associated with it,
1240 * the others will.. --fl
1241 */
a5497589 1242 if(status == RB_ERR_TIMEOUT)
212380e3 1243 {
1244 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
1245 "Error connecting to %s[%s]: %s",
1246 client_p->name,
212380e3 1247 "255.255.255.255",
38e6acdd 1248 rb_errstr(status));
212380e3 1249 ilog(L_SERVER, "Error connecting to %s[%s]: %s",
1250 client_p->name, client_p->sockhost,
38e6acdd 1251 rb_errstr(status));
212380e3 1252 }
1253 else
1254 {
a5497589 1255 errstr = strerror(rb_get_sockerr(F));
212380e3 1256 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
1257 "Error connecting to %s[%s]: %s (%s)",
1258 client_p->name,
212380e3 1259 "255.255.255.255",
38e6acdd 1260 rb_errstr(status), errstr);
212380e3 1261 ilog(L_SERVER, "Error connecting to %s[%s]: %s (%s)",
1262 client_p->name, client_p->sockhost,
38e6acdd 1263 rb_errstr(status), errstr);
212380e3 1264 }
1265
38e6acdd 1266 exit_client(client_p, client_p, &me, rb_errstr(status));
212380e3 1267 return;
1268 }
1269
1270 /* COMM_OK, so continue the connection procedure */
1271 /* Get the C/N lines */
1272 if((server_p = client_p->localClient->att_sconf) == NULL)
1273 {
1274 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL, "Lost connect{} block for %s",
715b28fe 1275 client_p->name);
212380e3 1276 exit_client(client_p, client_p, &me, "Lost connect{} block");
1277 return;
1278 }
1279
1280 /* Next, send the initial handshake */
1281 SetHandshake(client_p);
1282
1283 /* kludge, if we're not using TS6, dont ever send
1284 * ourselves as being TS6 capable.
1285 */
1286 if(!EmptyString(server_p->spasswd))
1287 {
cda8e9b8 1288 sendto_one(client_p, "PASS %s TS %d :%s",
1289 server_p->spasswd, TS_CURRENT, me.id);
212380e3 1290 }
1291
1292 /* pass my info to the new server */
1293 send_capabilities(client_p, default_server_capabs
1294 | (ServerConfCompressed(server_p) ? CAP_ZIP_SUPPORTED : 0)
1295 | (ServerConfTb(server_p) ? CAP_TB : 0));
1296
1297 sendto_one(client_p, "SERVER %s 1 :%s%s",
1298 me.name,
1299 ConfigServerHide.hidden ? "(H) " : "", me.info);
1300
1301 /*
1302 * If we've been marked dead because a send failed, just exit
1303 * here now and save everyone the trouble of us ever existing.
1304 */
1305 if(IsAnyDead(client_p))
1306 {
1307 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
1308 "%s went dead during handshake", client_p->name);
1309 exit_client(client_p, client_p, &me, "Went dead during handshake");
1310 return;
1311 }
1312
1313 /* don't move to serv_list yet -- we haven't sent a burst! */
1314
1315 /* If we get here, we're ok, so lets start reading some data */
a5497589 1316 read_packet(F, client_p);
212380e3 1317}
1318
1319#ifndef HAVE_SOCKETPAIR
1320static int
1321inet_socketpair(int d, int type, int protocol, int sv[2])
1322{
1323 struct sockaddr_in addr1, addr2, addr3;
1324 int addr3_len = sizeof(addr3);
1325 int fd, rc;
1326 int port_no = 20000;
1327
1328 if(d != AF_INET || type != SOCK_STREAM || protocol)
1329 {
1330 errno = EAFNOSUPPORT;
1331 return -1;
1332 }
1333 if(((sv[0] = socket(AF_INET, SOCK_STREAM, 0)) < 0) || ((sv[1] = socket(AF_INET, SOCK_STREAM, 0)) < 0))
1334 return -1;
1335
1336 addr1.sin_port = htons(port_no);
1337 addr1.sin_family = AF_INET;
1338 addr1.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
1339 while ((rc = bind (sv[0], (struct sockaddr *) &addr1, sizeof (addr1))) < 0 && errno == EADDRINUSE)
1340 addr1.sin_port = htons(++port_no);
1341
1342 if(rc < 0)
1343 return -1;
1344
1345 if(listen(sv[0], 1) < 0)
1346 {
1347 close(sv[0]);
1348 close(sv[1]);
1349 return -1;
1350 }
1351
1352 addr2.sin_port = htons(port_no);
1353 addr2.sin_family = AF_INET;
1354 addr2.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
1355 if(connect (sv[1], (struct sockaddr *) &addr2, sizeof (addr2)) < 0)
1356 {
1357 close(sv[0]);
1358 close(sv[1]);
1359 return -1;
1360 }
1361
1362 if((fd = accept(sv[1], (struct sockaddr *) &addr3, &addr3_len)) < 0)
1363 {
1364 close(sv[0]);
1365 close(sv[1]);
1366 return -1;
1367 }
1368 close(sv[0]);
1369 sv[0] = fd;
1370
1371 return(0);
1372
1373}
1374#endif