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