]> jfr.im git - irc/rqf/shadowircd.git/blob - src/s_serv.c
'rb_dlink_list global_channel_list' declaration moved to channel.c
[irc/rqf/shadowircd.git] / src / s_serv.c
1 /*
2 * ircd-ratbox: A slightly useful ircd.
3 * s_serv.c: Server related functions.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 *
24 * $Id: s_serv.c 3550 2007-08-09 06:47:26Z nenolod $
25 */
26
27 #include "stdinc.h"
28
29 #ifdef HAVE_LIBCRYPTO
30 #include <openssl/rsa.h>
31 #endif
32
33 #include "s_serv.h"
34 #include "class.h"
35 #include "client.h"
36 #include "common.h"
37 #include "hash.h"
38 #include "match.h"
39 #include "ircd.h"
40 #include "ircd_defs.h"
41 #include "numeric.h"
42 #include "packet.h"
43 #include "res.h"
44 #include "s_conf.h"
45 #include "s_newconf.h"
46 #include "logger.h"
47 #include "s_stats.h"
48 #include "s_user.h"
49 #include "scache.h"
50 #include "send.h"
51 #include "client.h"
52 #include "channel.h" /* chcap_usage_counts stuff... */
53 #include "hook.h"
54 #include "msg.h"
55 #include "reject.h"
56 #include "sslproc.h"
57
58 extern char *crypt();
59
60 #ifndef INADDR_NONE
61 #define INADDR_NONE ((unsigned int) 0xffffffff)
62 #endif
63
64 #ifndef HAVE_SOCKETPAIR
65 static int inet_socketpair(int d, int type, int protocol, int sv[2]);
66 #endif
67
68 int MaxConnectionCount = 1;
69 int MaxClientCount = 1;
70 int refresh_user_links = 0;
71
72 static char buf[BUFSIZE];
73
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 */
79 struct 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},
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
99 static CNCB serv_connect_callback;
100 static CNCB serv_connect_ssl_callback;
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 */
121 int
122 hunt_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;
127 rb_dlink_node *ptr;
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]) ||
135 match(parv[server], me.name) || (strcmp(parv[server], me.id) == 0))
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
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
175 RB_DLINK_FOREACH(ptr, global_client_list.head)
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
208 if(MyClient(source_p) || !IsDigit(parv[server][0]))
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 */
220 void
221 try_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;
227 rb_dlink_node *ptr;
228 int connecting = FALSE;
229 int confrq = 0;
230 time_t next = 0;
231
232 RB_DLINK_FOREACH(ptr, server_conf_list.head)
233 {
234 tmp_p = ptr->data;
235
236 if(ServerConfIllegal(tmp_p) || !ServerConfAutoconn(tmp_p))
237 continue;
238
239 /* don't allow ssl connections if ssl isn't setup */
240 if(ServerConfSSL(tmp_p) && (!ssl_ok || !get_ssld_count()))
241 continue;
242
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 */
252 if(tmp_p->hold > rb_current_time())
253 {
254 if(next > tmp_p->hold || next == 0)
255 next = tmp_p->hold;
256 continue;
257 }
258
259 confrq = get_con_freq(cltmp);
260 tmp_p->hold = rb_current_time() + confrq;
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.. */
288 rb_dlinkDelete(&server_p->node, &server_conf_list);
289 rb_dlinkAddTail(server_p, &server_p->node, &server_conf_list);
290
291 /*
292 * We used to only print this if serv_connect() actually
293 * suceeded, but since rb_tcp_connect() can call the callback
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
313 int
314 check_server(const char *name, struct Client *client_p)
315 {
316 struct server_conf *server_p = NULL;
317 struct server_conf *tmp_p;
318 rb_dlink_node *ptr;
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
331 RB_DLINK_FOREACH(ptr, server_conf_list.head)
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
370 if(ServerConfSSL(server_p) && client_p->localClient->ssl_ctl == NULL)
371 {
372 return -5;
373 }
374
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 */
398 void
399 send_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 {
412 tl = rb_sprintf(t, "%s ", cap->name);
413 t += tl;
414 }
415 }
416
417 t--;
418 *t = '\0';
419
420 sendto_one(client_p, "CAPAB :%s", msgbuf);
421 }
422
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 */
429 static void
430 burst_modes_TS6(struct Client *client_p, struct Channel *chptr,
431 rb_dlink_list *list, char flag)
432 {
433 rb_dlink_node *ptr;
434 struct Ban *banptr;
435 char *t;
436 int tlen;
437 int mlen;
438 int cur_len;
439
440 cur_len = mlen = rb_sprintf(buf, ":%s BMASK %ld %s %c :",
441 me.id, (long) chptr->channelts, chptr->chname, flag);
442 t = buf + mlen;
443
444 RB_DLINK_FOREACH(ptr, list->head)
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
467 rb_sprintf(t, "%s ", banptr->banstr);
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
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 */
487 static void
488 burst_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;
496 rb_dlink_node *ptr;
497 rb_dlink_node *uptr;
498 char *t;
499 int tlen, mlen;
500 int cur_len = 0;
501
502 hclientinfo.client = hchaninfo.client = client_p;
503
504 RB_DLINK_FOREACH(ptr, global_client_list.head)
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,
544 target_p->servptr->name, target_p->info);
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
565 RB_DLINK_FOREACH(ptr, global_channel_list.head)
566 {
567 chptr = ptr->data;
568
569 if(*chptr->chname != '#')
570 continue;
571
572 cur_len = mlen = rb_sprintf(buf, ":%s SJOIN %ld %s %s :", me.id,
573 (long) chptr->channelts, chptr->chname,
574 channel_modes(chptr, client_p));
575
576 t = buf + mlen;
577
578 RB_DLINK_FOREACH(uptr, chptr->members.head)
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
596 rb_sprintf(t, "%s%s ", find_channel_status(msptr, 1),
597 use_id(msptr->client_p));
598
599 cur_len += tlen;
600 t += tlen;
601 }
602
603 if (rb_dlink_list_length(&chptr->members) > 0)
604 {
605 /* remove trailing space */
606 *(t-1) = '\0';
607 }
608 sendto_one(client_p, "%s", buf);
609
610 if(rb_dlink_list_length(&chptr->banlist) > 0)
611 burst_modes_TS6(client_p, chptr, &chptr->banlist, 'b');
612
613 if(IsCapable(client_p, CAP_EX) &&
614 rb_dlink_list_length(&chptr->exceptlist) > 0)
615 burst_modes_TS6(client_p, chptr, &chptr->exceptlist, 'e');
616
617 if(IsCapable(client_p, CAP_IE) &&
618 rb_dlink_list_length(&chptr->invexlist) > 0)
619 burst_modes_TS6(client_p, chptr, &chptr->invexlist, 'I');
620
621 if(rb_dlink_list_length(&chptr->quietlist) > 0)
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 */
646 const char *
647 show_capabilities(struct Client *target_p)
648 {
649 static char msgbuf[BUFSIZE];
650 struct Capability *cap;
651
652 if(has_id(target_p))
653 rb_strlcpy(msgbuf, " TS6", sizeof(msgbuf));
654
655 if(IsSSL(target_p))
656 rb_strlcat(msgbuf, " SSL", sizeof(msgbuf));
657
658 if(!IsServer(target_p) || !target_p->serv->caps) /* short circuit if no caps */
659 return msgbuf + 1;
660
661 for (cap = captab; cap->cap; ++cap)
662 {
663 if(cap->cap & target_p->serv->caps)
664 rb_snprintf_append(msgbuf, sizeof(msgbuf), " %s", cap->name);
665 }
666
667 return msgbuf + 1;
668 }
669
670 /*
671 * server_estab
672 *
673 * inputs - pointer to a struct Client
674 * output -
675 * side effects -
676 */
677 int
678 server_estab(struct Client *client_p)
679 {
680 struct Client *target_p;
681 struct server_conf *server_p;
682 hook_data_client hdata;
683 char *host;
684 rb_dlink_node *ptr;
685 char note[HOSTLEN + 15];
686
687 s_assert(NULL != client_p);
688 if(client_p == NULL)
689 return -1;
690
691 host = client_p->name;
692
693 if((server_p = client_p->localClient->att_sconf) == NULL)
694 {
695 /* This shouldn't happen, better tell the ops... -A1kmm */
696 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
697 "Warning: Lost connect{} block for server %s!", host);
698 return exit_client(client_p, client_p, client_p, "Lost connect{} block!");
699 }
700
701 /* We shouldn't have to check this, it should already done before
702 * server_estab is called. -A1kmm
703 */
704 if(client_p->localClient->passwd)
705 {
706 memset(client_p->localClient->passwd, 0, strlen(client_p->localClient->passwd));
707 rb_free(client_p->localClient->passwd);
708 client_p->localClient->passwd = NULL;
709 }
710
711 /* Its got identd , since its a server */
712 SetGotId(client_p);
713
714 /* If there is something in the serv_list, it might be this
715 * connecting server..
716 */
717 if(!ServerInfo.hub && serv_list.head)
718 {
719 if(client_p != serv_list.head->data || serv_list.head->next)
720 {
721 ServerStats.is_ref++;
722 sendto_one(client_p, "ERROR :I'm a leaf not a hub");
723 return exit_client(client_p, client_p, client_p, "I'm a leaf");
724 }
725 }
726
727 if(IsUnknown(client_p))
728 {
729 /*
730 * jdc -- 1. Use EmptyString(), not [0] index reference.
731 * 2. Check ->spasswd, not ->passwd.
732 */
733 if(!EmptyString(server_p->spasswd))
734 {
735 sendto_one(client_p, "PASS %s TS %d :%s",
736 server_p->spasswd, TS_CURRENT, me.id);
737 }
738
739 /* pass info to new server */
740 send_capabilities(client_p, default_server_capabs
741 | (ServerConfCompressed(server_p) ? CAP_ZIP_SUPPORTED : 0)
742 | (ServerConfTb(server_p) ? CAP_TB : 0));
743
744 sendto_one(client_p, "SERVER %s 1 :%s%s",
745 me.name,
746 ConfigServerHide.hidden ? "(H) " : "",
747 (me.info[0]) ? (me.info) : "IRCers United");
748 }
749
750 if(!rb_set_buffers(client_p->localClient->F, READBUF_SIZE))
751 ilog_error("rb_set_buffers failed for server");
752
753 /* Enable compression now */
754 if(IsCapable(client_p, CAP_ZIP))
755 {
756 start_zlib_session(client_p);
757 }
758 sendto_one(client_p, "SVINFO %d %d 0 :%ld", TS_CURRENT, TS_MIN, (long int)rb_current_time());
759
760 client_p->servptr = &me;
761
762 if(IsAnyDead(client_p))
763 return CLIENT_EXITED;
764
765 SetServer(client_p);
766
767 /* Update the capability combination usage counts */
768 set_chcap_usage_counts(client_p);
769
770 rb_dlinkAdd(client_p, &client_p->lnode, &me.serv->servers);
771 del_unknown_ip(client_p);
772 rb_dlinkMoveNode(&client_p->localClient->tnode, &unknown_list, &serv_list);
773 rb_dlinkAddTailAlloc(client_p, &global_serv_list);
774
775 if(has_id(client_p))
776 add_to_id_hash(client_p->id, client_p);
777
778 add_to_client_hash(client_p->name, client_p);
779 /* doesnt duplicate client_p->serv if allocated this struct already */
780 make_server(client_p);
781
782 client_p->serv->caps = client_p->localClient->caps;
783
784 if(client_p->localClient->fullcaps)
785 {
786 client_p->serv->fullcaps = rb_strdup(client_p->localClient->fullcaps);
787 rb_free(client_p->localClient->fullcaps);
788 client_p->localClient->fullcaps = NULL;
789 }
790
791 client_p->serv->nameinfo = scache_connect(client_p->name, client_p->info, IsHidden(client_p));
792 client_p->localClient->firsttime = rb_current_time();
793 /* fixing eob timings.. -gnp */
794
795 if((rb_dlink_list_length(&lclient_list) + rb_dlink_list_length(&serv_list)) >
796 (unsigned long)MaxConnectionCount)
797 MaxConnectionCount = rb_dlink_list_length(&lclient_list) +
798 rb_dlink_list_length(&serv_list);
799
800 /* Show the real host/IP to admins */
801 sendto_realops_snomask(SNO_GENERAL, L_ALL,
802 "Link with %s established: (%s) link",
803 get_server_name(client_p, SHOW_IP),
804 show_capabilities(client_p));
805
806 ilog(L_SERVER, "Link with %s established: (%s) link",
807 log_client_name(client_p, SHOW_IP), show_capabilities(client_p));
808
809 hdata.client = &me;
810 hdata.target = client_p;
811 call_hook(h_server_introduced, &hdata);
812
813 rb_snprintf(note, sizeof(note), "Server: %s", client_p->name);
814 rb_note(client_p->localClient->F, note);
815
816 /*
817 ** Old sendto_serv_but_one() call removed because we now
818 ** need to send different names to different servers
819 ** (domain name matching) Send new server to other servers.
820 */
821 RB_DLINK_FOREACH(ptr, serv_list.head)
822 {
823 target_p = ptr->data;
824
825 if(target_p == client_p)
826 continue;
827
828 if(has_id(target_p) && has_id(client_p))
829 {
830 sendto_one(target_p, ":%s SID %s 2 %s :%s%s",
831 me.id, client_p->name, client_p->id,
832 IsHidden(client_p) ? "(H) " : "", client_p->info);
833
834 if(IsCapable(target_p, CAP_ENCAP) &&
835 !EmptyString(client_p->serv->fullcaps))
836 sendto_one(target_p, ":%s ENCAP * GCAP :%s",
837 client_p->id, client_p->serv->fullcaps);
838 }
839 else
840 {
841 sendto_one(target_p, ":%s SERVER %s 2 :%s%s",
842 me.name, client_p->name,
843 IsHidden(client_p) ? "(H) " : "", client_p->info);
844
845 if(IsCapable(target_p, CAP_ENCAP) &&
846 !EmptyString(client_p->serv->fullcaps))
847 sendto_one(target_p, ":%s ENCAP * GCAP :%s",
848 client_p->name, client_p->serv->fullcaps);
849 }
850 }
851
852 /*
853 ** Pass on my client information to the new server
854 **
855 ** First, pass only servers (idea is that if the link gets
856 ** cancelled beacause the server was already there,
857 ** there are no NICK's to be cancelled...). Of course,
858 ** if cancellation occurs, all this info is sent anyway,
859 ** and I guess the link dies when a read is attempted...? --msa
860 **
861 ** Note: Link cancellation to occur at this point means
862 ** that at least two servers from my fragment are building
863 ** up connection this other fragment at the same time, it's
864 ** a race condition, not the normal way of operation...
865 **
866 ** ALSO NOTE: using the get_client_name for server names--
867 ** see previous *WARNING*!!! (Also, original inpath
868 ** is destroyed...)
869 */
870 RB_DLINK_FOREACH(ptr, global_serv_list.head)
871 {
872 target_p = ptr->data;
873
874 /* target_p->from == target_p for target_p == client_p */
875 if(IsMe(target_p) || target_p->from == client_p)
876 continue;
877
878 /* presumption, if target has an id, so does its uplink */
879 if(has_id(client_p) && has_id(target_p))
880 sendto_one(client_p, ":%s SID %s %d %s :%s%s",
881 target_p->servptr->id, target_p->name,
882 target_p->hopcount + 1, target_p->id,
883 IsHidden(target_p) ? "(H) " : "", target_p->info);
884 else
885 sendto_one(client_p, ":%s SERVER %s %d :%s%s",
886 target_p->servptr->name,
887 target_p->name, target_p->hopcount + 1,
888 IsHidden(target_p) ? "(H) " : "", target_p->info);
889
890 if(IsCapable(client_p, CAP_ENCAP) &&
891 !EmptyString(target_p->serv->fullcaps))
892 sendto_one(client_p, ":%s ENCAP * GCAP :%s",
893 get_id(target_p, client_p),
894 target_p->serv->fullcaps);
895 }
896
897 burst_TS6(client_p);
898
899 /* Always send a PING after connect burst is done */
900 sendto_one(client_p, "PING :%s", get_id(&me, client_p));
901
902 free_pre_client(client_p);
903
904 if (!IsCapable(client_p, CAP_ZIP))
905 send_pop_queue(client_p);
906
907 return 0;
908 }
909
910 /*
911 * New server connection code
912 * Based upon the stuff floating about in s_bsd.c
913 * -- adrian
914 */
915
916 static int
917 serv_connect_resolved(struct Client *client_p)
918 {
919 struct rb_sockaddr_storage myipnum;
920 char vhoststr[HOSTIPLEN];
921 struct server_conf *server_p;
922 uint16_t port;
923
924 if((server_p = client_p->localClient->att_sconf) == NULL)
925 {
926 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL, "Lost connect{} block for %s",
927 get_server_name(client_p, HIDE_IP));
928 exit_client(client_p, client_p, &me, "Lost connect{} block");
929 return 0;
930 }
931
932 #ifdef RB_IPV6
933 if(client_p->localClient->ip.ss_family == AF_INET6)
934 port = ntohs(((struct sockaddr_in6 *)&client_p->localClient->ip)->sin6_port);
935 else
936 #endif
937 port = ntohs(((struct sockaddr_in *)&client_p->localClient->ip)->sin_port);
938
939 if(ServerConfVhosted(server_p))
940 {
941 memcpy(&myipnum, &server_p->my_ipnum, sizeof(myipnum));
942 ((struct sockaddr_in *)&myipnum)->sin_port = 0;
943 myipnum.ss_family = server_p->aftype;
944
945 }
946 else if(server_p->aftype == AF_INET && ServerInfo.specific_ipv4_vhost)
947 {
948 memcpy(&myipnum, &ServerInfo.ip, sizeof(myipnum));
949 ((struct sockaddr_in *)&myipnum)->sin_port = 0;
950 myipnum.ss_family = AF_INET;
951 SET_SS_LEN(&myipnum, sizeof(struct sockaddr_in));
952 }
953
954 #ifdef RB_IPV6
955 else if((server_p->aftype == AF_INET6) && ServerInfo.specific_ipv6_vhost)
956 {
957 memcpy(&myipnum, &ServerInfo.ip6, sizeof(myipnum));
958 ((struct sockaddr_in6 *)&myipnum)->sin6_port = 0;
959 myipnum.ss_family = AF_INET6;
960 SET_SS_LEN(&myipnum, sizeof(struct sockaddr_in6));
961 }
962 #endif
963 else
964 {
965 /* log */
966 ilog(L_SERVER, "Connecting to %s[%s] port %d (%s)", client_p->name, client_p->sockhost, port,
967 #ifdef RB_IPV6
968 server_p->aftype == AF_INET6 ? "IPv6" :
969 #endif
970 (server_p->aftype == AF_INET ? "IPv4" : "?"));
971
972 if(ServerConfSSL(server_p))
973 {
974 rb_connect_tcp(client_p->localClient->F, (struct sockaddr *)&client_p->localClient->ip,
975 NULL, 0, serv_connect_ssl_callback,
976 client_p, ConfigFileEntry.connect_timeout);
977 }
978 else
979 rb_connect_tcp(client_p->localClient->F, (struct sockaddr *)&client_p->localClient->ip,
980 NULL, 0, serv_connect_callback,
981 client_p, ConfigFileEntry.connect_timeout);
982 return 1;
983 }
984
985 /* log */
986 rb_inet_ntop_sock((struct sockaddr *)&myipnum, vhoststr, sizeof vhoststr);
987 ilog(L_SERVER, "Connecting to %s[%s] port %d (%s) (vhost %s)", client_p->name, client_p->sockhost, port,
988 #ifdef RB_IPV6
989 server_p->aftype == AF_INET6 ? "IPv6" :
990 #endif
991 (server_p->aftype == AF_INET ? "IPv4" : "?"), vhoststr);
992
993
994 if(ServerConfSSL(server_p))
995 rb_connect_tcp(client_p->localClient->F, (struct sockaddr *)&client_p->localClient->ip,
996 (struct sockaddr *) &myipnum,
997 GET_SS_LEN(&myipnum), serv_connect_ssl_callback, client_p,
998 ConfigFileEntry.connect_timeout);
999 else
1000 rb_connect_tcp(client_p->localClient->F, (struct sockaddr *)&client_p->localClient->ip,
1001 (struct sockaddr *) &myipnum,
1002 GET_SS_LEN(&myipnum), serv_connect_callback, client_p,
1003 ConfigFileEntry.connect_timeout);
1004
1005 return 1;
1006 }
1007
1008 static void
1009 serv_connect_dns_callback(void *vptr, struct DNSReply *reply)
1010 {
1011 struct Client *client_p = vptr;
1012 uint16_t port;
1013
1014 rb_free(client_p->localClient->dnsquery);
1015 client_p->localClient->dnsquery = NULL;
1016
1017 if (reply == NULL)
1018 {
1019 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL, "Cannot resolve hostname for %s",
1020 get_server_name(client_p, HIDE_IP));
1021 ilog(L_SERVER, "Cannot resolve hostname for %s",
1022 log_client_name(client_p, HIDE_IP));
1023 exit_client(client_p, client_p, &me, "Cannot resolve hostname");
1024 return;
1025 }
1026 #ifdef RB_IPV6
1027 if(reply->addr.ss_family == AF_INET6)
1028 port = ((struct sockaddr_in6 *)&client_p->localClient->ip)->sin6_port;
1029 else
1030 #endif
1031 port = ((struct sockaddr_in *)&client_p->localClient->ip)->sin_port;
1032 memcpy(&client_p->localClient->ip, &reply->addr, sizeof(client_p->localClient->ip));
1033 #ifdef RB_IPV6
1034 if(reply->addr.ss_family == AF_INET6)
1035 ((struct sockaddr_in6 *)&client_p->localClient->ip)->sin6_port = port;
1036 else
1037 #endif
1038 ((struct sockaddr_in *)&client_p->localClient->ip)->sin_port = port;
1039 /* Set sockhost properly now -- jilles */
1040 rb_inet_ntop_sock((struct sockaddr *)&client_p->localClient->ip,
1041 client_p->sockhost, sizeof client_p->sockhost);
1042 serv_connect_resolved(client_p);
1043 }
1044
1045 /*
1046 * serv_connect() - initiate a server connection
1047 *
1048 * inputs - pointer to conf
1049 * - pointer to client doing the connet
1050 * output -
1051 * side effects -
1052 *
1053 * This code initiates a connection to a server. It first checks to make
1054 * sure the given server exists. If this is the case, it creates a socket,
1055 * creates a client, saves the socket information in the client, and
1056 * initiates a connection to the server through rb_connect_tcp(). The
1057 * completion of this goes through serv_completed_connection().
1058 *
1059 * We return 1 if the connection is attempted, since we don't know whether
1060 * it suceeded or not, and 0 if it fails in here somewhere.
1061 */
1062 int
1063 serv_connect(struct server_conf *server_p, struct Client *by)
1064 {
1065 struct Client *client_p;
1066 struct rb_sockaddr_storage theiripnum;
1067 rb_fde_t *F;
1068 char note[HOSTLEN + 10];
1069
1070 s_assert(server_p != NULL);
1071 if(server_p == NULL)
1072 return 0;
1073
1074 /*
1075 * Make sure this server isn't already connected
1076 */
1077 if((client_p = find_server(NULL, server_p->name)))
1078 {
1079 sendto_realops_snomask(SNO_GENERAL, L_ALL,
1080 "Server %s already present from %s",
1081 server_p->name, get_server_name(client_p, SHOW_IP));
1082 if(by && IsPerson(by) && !MyClient(by))
1083 sendto_one_notice(by, ":Server %s already present from %s",
1084 server_p->name, get_server_name(client_p, SHOW_IP));
1085 return 0;
1086 }
1087
1088 /* create a socket for the server connection */
1089 if((F = rb_socket(server_p->aftype, SOCK_STREAM, 0, NULL)) == NULL)
1090 {
1091 ilog_error("opening a stream socket");
1092 return 0;
1093 }
1094
1095 rb_snprintf(note, sizeof note, "Server: %s", server_p->name);
1096 rb_note(F, note);
1097
1098 /* Create a local client */
1099 client_p = make_client(NULL);
1100
1101 /* Copy in the server, hostname, fd
1102 * The sockhost may be a hostname, this will be corrected later
1103 * -- jilles
1104 */
1105 rb_strlcpy(client_p->name, server_p->name, sizeof(client_p->name));
1106 rb_strlcpy(client_p->host, server_p->host, sizeof(client_p->host));
1107 rb_strlcpy(client_p->sockhost, server_p->host, sizeof(client_p->sockhost));
1108 client_p->localClient->F = F;
1109 add_to_cli_fd_hash(client_p);
1110
1111 /*
1112 * Set up the initial server evilness, ripped straight from
1113 * connect_server(), so don't blame me for it being evil.
1114 * -- adrian
1115 */
1116
1117 if(!rb_set_buffers(client_p->localClient->F, READBUF_SIZE))
1118 {
1119 ilog_error("setting the buffer size for a server connection");
1120 }
1121
1122 /*
1123 * Attach config entries to client here rather than in
1124 * serv_connect_callback(). This to avoid null pointer references.
1125 */
1126 attach_server_conf(client_p, server_p);
1127
1128 /*
1129 * at this point we have a connection in progress and C/N lines
1130 * attached to the client, the socket info should be saved in the
1131 * client and it should either be resolved or have a valid address.
1132 *
1133 * The socket has been connected or connect is in progress.
1134 */
1135 make_server(client_p);
1136 if(by && IsPerson(by))
1137 {
1138 strcpy(client_p->serv->by, by->name);
1139 if(client_p->serv->user)
1140 free_user(client_p->serv->user, NULL);
1141 client_p->serv->user = by->user;
1142 by->user->refcnt++;
1143 }
1144 else
1145 {
1146 strcpy(client_p->serv->by, "AutoConn.");
1147 if(client_p->serv->user)
1148 free_user(client_p->serv->user, NULL);
1149 client_p->serv->user = NULL;
1150 }
1151 SetConnecting(client_p);
1152 rb_dlinkAddTail(client_p, &client_p->node, &global_client_list);
1153
1154 if (rb_inet_pton_sock(server_p->host, (struct sockaddr *)&theiripnum) > 0)
1155 {
1156 memcpy(&client_p->localClient->ip, &theiripnum, sizeof(client_p->localClient->ip));
1157 #ifdef RB_IPV6
1158 if(theiripnum.ss_family == AF_INET6)
1159 ((struct sockaddr_in6 *)&client_p->localClient->ip)->sin6_port = htons(server_p->port);
1160 else
1161 #endif
1162 ((struct sockaddr_in *)&client_p->localClient->ip)->sin_port = htons(server_p->port);
1163
1164 return serv_connect_resolved(client_p);
1165 }
1166 else
1167 {
1168 #ifdef RB_IPV6
1169 if(theiripnum.ss_family == AF_INET6)
1170 ((struct sockaddr_in6 *)&client_p->localClient->ip)->sin6_port = htons(server_p->port);
1171 else
1172 #endif
1173 ((struct sockaddr_in *)&client_p->localClient->ip)->sin_port = htons(server_p->port);
1174
1175 client_p->localClient->dnsquery = rb_malloc(sizeof(struct DNSQuery));
1176 client_p->localClient->dnsquery->ptr = client_p;
1177 client_p->localClient->dnsquery->callback = serv_connect_dns_callback;
1178 gethost_byname_type(server_p->host, client_p->localClient->dnsquery,
1179 #ifdef RB_IPV6
1180 server_p->aftype == AF_INET6 ? T_AAAA :
1181 #endif
1182 T_A);
1183 return 1;
1184 }
1185 }
1186
1187 static void
1188 serv_connect_ev(void *data)
1189 {
1190 struct Client *client_p = data;
1191 serv_connect_callback(client_p->localClient->F, RB_OK, client_p);
1192 }
1193
1194 static void
1195 serv_connect_ssl_callback(rb_fde_t *F, int status, void *data)
1196 {
1197 struct Client *client_p = data;
1198 rb_fde_t *xF[2];
1199 if(status != RB_OK)
1200 {
1201 /* XXX deal with failure */
1202 return;
1203 }
1204 rb_connect_sockaddr(F, (struct sockaddr *)&client_p->localClient->ip, sizeof(client_p->localClient->ip));
1205 rb_socketpair(AF_UNIX, SOCK_STREAM, 0, &xF[0], &xF[1], "Outgoing ssld connection");
1206 del_from_cli_fd_hash(client_p);
1207 client_p->localClient->F = xF[0];
1208 add_to_cli_fd_hash(client_p);
1209
1210 client_p->localClient->ssl_ctl = start_ssld_connect(F, xF[1], rb_get_fd(xF[0]));
1211 SetSSL(client_p);
1212 rb_event_addonce("serv_connect_ev", serv_connect_ev, client_p, 1);
1213 }
1214
1215 /*
1216 * serv_connect_callback() - complete a server connection.
1217 *
1218 * This routine is called after the server connection attempt has
1219 * completed. If unsucessful, an error is sent to ops and the client
1220 * is closed. If sucessful, it goes through the initialisation/check
1221 * procedures, the capabilities are sent, and the socket is then
1222 * marked for reading.
1223 */
1224 static void
1225 serv_connect_callback(rb_fde_t *F, int status, void *data)
1226 {
1227 struct Client *client_p = data;
1228 struct server_conf *server_p;
1229 char *errstr;
1230
1231 /* First, make sure its a real client! */
1232 s_assert(client_p != NULL);
1233 s_assert(client_p->localClient->F == F);
1234
1235 if(client_p == NULL)
1236 return;
1237
1238 /* while we were waiting for the callback, its possible this already
1239 * linked in.. --fl
1240 */
1241 if(find_server(NULL, client_p->name) != NULL)
1242 {
1243 exit_client(client_p, client_p, &me, "Server Exists");
1244 return;
1245 }
1246
1247 if(client_p->localClient->ssl_ctl == NULL)
1248 rb_connect_sockaddr(F, (struct sockaddr *)&client_p->localClient->ip, sizeof(client_p->localClient->ip));
1249
1250 /* Check the status */
1251 if(status != RB_OK)
1252 {
1253 /* COMM_ERR_TIMEOUT wont have an errno associated with it,
1254 * the others will.. --fl
1255 */
1256 if(status == RB_ERR_TIMEOUT)
1257 {
1258 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
1259 "Error connecting to %s[%s]: %s",
1260 client_p->name,
1261 #ifdef HIDE_SERVERS_IPS
1262 "255.255.255.255",
1263 #else
1264 client_p->host,
1265 #endif
1266 rb_errstr(status));
1267 ilog(L_SERVER, "Error connecting to %s[%s]: %s",
1268 client_p->name, client_p->sockhost,
1269 rb_errstr(status));
1270 }
1271 else
1272 {
1273 errstr = strerror(rb_get_sockerr(F));
1274 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
1275 "Error connecting to %s[%s]: %s (%s)",
1276 client_p->name,
1277 #ifdef HIDE_SERVERS_IPS
1278 "255.255.255.255",
1279 #else
1280 client_p->host,
1281 #endif
1282 rb_errstr(status), errstr);
1283 ilog(L_SERVER, "Error connecting to %s[%s]: %s (%s)",
1284 client_p->name, client_p->sockhost,
1285 rb_errstr(status), errstr);
1286 }
1287
1288 exit_client(client_p, client_p, &me, rb_errstr(status));
1289 return;
1290 }
1291
1292 /* COMM_OK, so continue the connection procedure */
1293 /* Get the C/N lines */
1294 if((server_p = client_p->localClient->att_sconf) == NULL)
1295 {
1296 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL, "Lost connect{} block for %s",
1297 get_server_name(client_p, HIDE_IP));
1298 exit_client(client_p, client_p, &me, "Lost connect{} block");
1299 return;
1300 }
1301
1302 /* Next, send the initial handshake */
1303 SetHandshake(client_p);
1304
1305 /* kludge, if we're not using TS6, dont ever send
1306 * ourselves as being TS6 capable.
1307 */
1308 if(!EmptyString(server_p->spasswd))
1309 {
1310 sendto_one(client_p, "PASS %s TS %d :%s",
1311 server_p->spasswd, TS_CURRENT, me.id);
1312 }
1313
1314 /* pass my info to the new server */
1315 send_capabilities(client_p, default_server_capabs
1316 | (ServerConfCompressed(server_p) ? CAP_ZIP_SUPPORTED : 0)
1317 | (ServerConfTb(server_p) ? CAP_TB : 0));
1318
1319 sendto_one(client_p, "SERVER %s 1 :%s%s",
1320 me.name,
1321 ConfigServerHide.hidden ? "(H) " : "", me.info);
1322
1323 /*
1324 * If we've been marked dead because a send failed, just exit
1325 * here now and save everyone the trouble of us ever existing.
1326 */
1327 if(IsAnyDead(client_p))
1328 {
1329 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
1330 "%s went dead during handshake", client_p->name);
1331 exit_client(client_p, client_p, &me, "Went dead during handshake");
1332 return;
1333 }
1334
1335 /* don't move to serv_list yet -- we haven't sent a burst! */
1336
1337 /* If we get here, we're ok, so lets start reading some data */
1338 read_packet(F, client_p);
1339 }
1340
1341 #ifndef HAVE_SOCKETPAIR
1342 static int
1343 inet_socketpair(int d, int type, int protocol, int sv[2])
1344 {
1345 struct sockaddr_in addr1, addr2, addr3;
1346 int addr3_len = sizeof(addr3);
1347 int fd, rc;
1348 int port_no = 20000;
1349
1350 if(d != AF_INET || type != SOCK_STREAM || protocol)
1351 {
1352 errno = EAFNOSUPPORT;
1353 return -1;
1354 }
1355 if(((sv[0] = socket(AF_INET, SOCK_STREAM, 0)) < 0) || ((sv[1] = socket(AF_INET, SOCK_STREAM, 0)) < 0))
1356 return -1;
1357
1358 addr1.sin_port = htons(port_no);
1359 addr1.sin_family = AF_INET;
1360 addr1.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
1361 while ((rc = bind (sv[0], (struct sockaddr *) &addr1, sizeof (addr1))) < 0 && errno == EADDRINUSE)
1362 addr1.sin_port = htons(++port_no);
1363
1364 if(rc < 0)
1365 return -1;
1366
1367 if(listen(sv[0], 1) < 0)
1368 {
1369 close(sv[0]);
1370 close(sv[1]);
1371 return -1;
1372 }
1373
1374 addr2.sin_port = htons(port_no);
1375 addr2.sin_family = AF_INET;
1376 addr2.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
1377 if(connect (sv[1], (struct sockaddr *) &addr2, sizeof (addr2)) < 0)
1378 {
1379 close(sv[0]);
1380 close(sv[1]);
1381 return -1;
1382 }
1383
1384 if((fd = accept(sv[1], (struct sockaddr *) &addr3, &addr3_len)) < 0)
1385 {
1386 close(sv[0]);
1387 close(sv[1]);
1388 return -1;
1389 }
1390 close(sv[0]);
1391 sv[0] = fd;
1392
1393 return(0);
1394
1395 }
1396 #endif