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