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