Author: Perry Lorier <isomer@coders.net>
[ircu2.10.12-pk.git] / ircd / s_bsd.c
1 /*
2  * IRC - Internet Relay Chat, ircd/s_bsd.c
3  * Copyright (C) 1990 Jarkko Oikarinen and
4  *                    University of Oulu, Computing Center
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 1, or (at your option)
9  * any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  *
20  * $Id$
21  */
22 #include "s_bsd.h"
23 #include "client.h"
24 #include "IPcheck.h"
25 #include "channel.h"
26 #include "class.h"
27 #include "hash.h"
28 #include "ircd_log.h"
29 #include "ircd_osdep.h"
30 #include "ircd_reply.h"
31 #include "ircd_string.h"
32 #include "ircd.h"
33 #include "list.h"
34 #include "listener.h"
35 #include "msg.h"
36 #include "numeric.h"
37 #include "numnicks.h"
38 #include "packet.h"
39 #include "parse.h"
40 #include "querycmds.h"
41 #include "res.h"
42 #include "s_auth.h"
43 #include "s_conf.h"
44 #include "s_debug.h"
45 #include "s_misc.h"
46 #include "s_user.h"
47 #include "send.h"
48 #include "sprintf_irc.h"
49 #include "struct.h"
50 #include "support.h"
51 #include "sys.h"
52 #include "uping.h"
53 #include "version.h"
54
55 #include <arpa/inet.h>
56 #include <arpa/nameser.h>
57 #include <assert.h>
58 #include <errno.h>
59 #include <fcntl.h>
60 #include <netdb.h>
61 #include <resolv.h>
62 #include <stdio.h>
63 #include <stdlib.h>
64 #include <string.h>
65 #include <sys/ioctl.h>
66 #include <sys/socket.h>
67 #include <sys/time.h>
68 #include <sys/utsname.h>
69 #include <unistd.h>
70
71 #ifdef USE_POLL
72 #include <sys/poll.h>
73 #endif /* USE_POLL */
74
75 #ifndef INADDR_NONE
76 #define INADDR_NONE 0xffffffff
77 #endif
78
79 struct Client*            LocalClientArray[MAXCONNECTIONS];
80 int                       HighestFd = -1;
81 struct sockaddr_in        VirtualHost;
82 static char               readbuf[SERVER_TCP_WINDOW];
83
84 /*
85  * report_error text constants
86  */
87 const char* const ACCEPT_ERROR_MSG    = "error accepting connection for %s: %s";
88 const char* const BIND_ERROR_MSG      = "bind error for %s: %s";
89 const char* const CONNECT_ERROR_MSG   = "connect to host %s failed: %s";
90 const char* const CONNLIMIT_ERROR_MSG = "connect limit exceeded for %s: %s";
91 const char* const LISTEN_ERROR_MSG    = "listen error for %s: %s";
92 const char* const NONB_ERROR_MSG      = "error setting non-blocking for %s: %s";
93 const char* const PEERNAME_ERROR_MSG  = "getpeername failed for %s: %s";
94 const char* const POLL_ERROR_MSG      = "poll error for %s: %s";
95 const char* const REUSEADDR_ERROR_MSG = "error setting SO_REUSEADDR for %s: %s";
96 const char* const SELECT_ERROR_MSG    = "select error for %s: %s";
97 const char* const SETBUFS_ERROR_MSG   = "error setting buffer size for %s: %s";
98 const char* const SOCKET_ERROR_MSG    = "error creating socket for %s: %s";
99
100
101 #ifdef GODMODE
102 #ifndef NODNS
103 #define NODNS
104 #endif
105 #ifndef NOFLOODCONTROL
106 #define NOFLOODCONTROL
107 #endif
108 #endif
109
110 #if !defined(USE_POLL)
111 #if FD_SETSIZE < (MAXCONNECTIONS + 4)
112 /*
113  * Sanity check
114  *
115  * All operating systems work when MAXCONNECTIONS <= 252.
116  * Most operating systems work when MAXCONNECTIONS <= 1020 and FD_SETSIZE is
117  *   updated correctly in the system headers (on BSD systems our sys.h has
118  *   defined FD_SETSIZE to MAXCONNECTIONS+4 before including the system's headers 
119  *   but sys/types.h might have abruptly redefined it so the check is still 
120  *   done), you might already need to recompile your kernel.
121  * For larger FD_SETSIZE your milage may vary (kernel patches may be needed).
122  * The check is _NOT_ done if we will not use FD_SETS at all (USE_POLL)
123  */
124 #error "FD_SETSIZE is too small or MAXCONNECTIONS too large."
125 #endif
126 #endif
127
128
129 /*
130  * Cannot use perror() within daemon. stderr is closed in
131  * ircd and cannot be used. And, worse yet, it might have
132  * been reassigned to a normal connection...
133  */
134
135 /*
136  * report_error
137  *
138  * This a replacement for perror(). Record error to log and
139  * also send a copy to all *LOCAL* opers online.
140  *
141  * text    is a *format* string for outputting error. It must
142  *         contain only two '%s', the first will be replaced
143  *         by the sockhost from the cptr, and the latter will
144  *         be taken from sys_errlist[errno].
145  *
146  * cptr    if not NULL, is the *LOCAL* client associated with
147  *         the error.
148  */
149 void report_error(const char* text, const char* who, int err)
150 {
151   static time_t last_notice = 0;
152   int           errtmp = errno;   /* debug may change 'errno' */
153   const char*   errmsg = (err) ? strerror(err) : "";
154   if (!errmsg)
155     errmsg = "Unknown error"; 
156
157   if (EmptyString(who))
158     who = "unknown";
159
160   if (last_notice + 20 < CurrentTime) {
161     /*
162      * pace error messages so opers don't get flooded by transients
163      */
164     sendto_opmask_butone(0, SNO_OLDSNO, text, who, errmsg);
165     last_notice = CurrentTime;
166   }
167   ircd_log(L_ERROR, text, who, errmsg);
168   errno = errtmp;
169 }
170
171
172 /*
173  * connect_dns_callback - called when resolver query finishes
174  * if the query resulted in a successful search, reply will contain
175  * a non-null pointer, otherwise reply will be null.
176  * if successful start the connection, otherwise notify opers
177  */
178 static void connect_dns_callback(void* vptr, struct DNSReply* reply)
179 {
180   struct ConfItem* aconf = (struct ConfItem*) vptr;
181   aconf->dns_pending = 0;
182   if (reply) {
183     memcpy(&aconf->ipnum, reply->hp->h_addr, sizeof(struct in_addr));
184     connect_server(aconf, 0, reply);
185   }
186   else
187     sendto_opmask_butone(0, SNO_OLDSNO, "Connect to %s failed: host lookup",
188                          aconf->name);
189 }
190
191 /*
192  * close_connections - closes all connections
193  * close stderr if specified
194  */
195 void close_connections(int close_stderr)
196 {
197   int i;
198   close(0);
199   close(1);
200   if (close_stderr)
201     close(2);
202   for (i = 3; i < MAXCONNECTIONS; ++i)
203     close(i);
204 }
205
206 /*
207  * init_connection_limits - initialize process fd limit to
208  * MAXCONNECTIONS
209  */
210 int init_connection_limits(void)
211 {
212   int limit = os_set_fdlimit(MAXCONNECTIONS);
213   if (0 == limit)
214     return 1;
215   if (limit < 0) {
216     fprintf(stderr, "error setting max fd's to %d\n", limit);
217   }
218   else if (limit > 0) {
219     fprintf(stderr, "ircd fd table too big\nHard Limit: %d IRC max: %d\n",
220             limit, MAXCONNECTIONS);
221     fprintf(stderr, "set MAXCONNECTIONS to a smaller value");
222   }
223   return 0;
224 }
225
226 /*
227  * connect_inet - set up address and port and make a connection
228  */
229 static int connect_inet(struct ConfItem* aconf, struct Client* cptr)
230 {
231   static struct sockaddr_in sin;
232   assert(0 != aconf);
233   assert(0 != cptr);
234   /*
235    * Might as well get sockhost from here, the connection is attempted
236    * with it so if it fails its useless.
237    */
238   cptr->fd = socket(AF_INET, SOCK_STREAM, 0);
239   if (-1 == cptr->fd) {
240     cptr->error = errno;
241     report_error(SOCKET_ERROR_MSG, cptr->name, errno);
242     return 0;
243   }
244   if (cptr->fd >= MAXCLIENTS) {
245     report_error(CONNLIMIT_ERROR_MSG, cptr->name, 0);
246     close(cptr->fd);
247     cptr->fd = -1;
248     return 0;
249   }
250   /*
251    * Bind to a local IP# (with unknown port - let unix decide) so
252    * we have some chance of knowing the IP# that gets used for a host
253    * with more than one IP#.
254    *
255    * No we don't bind it, not all OS's can handle connecting with
256    * an already bound socket, different ip# might occur anyway
257    * leading to a freezing select() on this side for some time.
258    * I had this on my Linux 1.1.88 --Run
259    */
260 #ifdef VIRTUAL_HOST
261   /*
262    * No, we do bind it if we have virtual host support. If we don't
263    * explicitly bind it, it will default to IN_ADDR_ANY and we lose
264    * due to the other server not allowing our base IP --smg
265    */
266   if (bind(cptr->fd, (struct sockaddr*) &VirtualHost, sizeof(VirtualHost))) {
267     report_error(BIND_ERROR_MSG, cptr->name, errno);
268     return 0;
269   }
270 #endif
271
272   memset(&sin, 0, sizeof(sin));
273   sin.sin_family      = AF_INET;
274   sin.sin_addr.s_addr = aconf->ipnum.s_addr;
275   sin.sin_port        = htons(aconf->port);
276   /*
277    * save connection info in client
278    */
279   cptr->ip.s_addr = aconf->ipnum.s_addr;
280   cptr->port      = aconf->port;
281   ircd_ntoa_r(cptr->sock_ip, (const char*) &cptr->ip);
282   /*
283    * we want a big buffer for server connections
284    */
285   if (!os_set_sockbufs(cptr->fd, SERVER_TCP_WINDOW)) {
286     cptr->error = errno;
287     report_error(SETBUFS_ERROR_MSG, cptr->name, errno);
288     return 0;
289   }
290   /*
291    * ALWAYS set sockets non-blocking
292    */
293   if (!os_set_nonblocking(cptr->fd)) {
294     cptr->error = errno;
295     report_error(NONB_ERROR_MSG, cptr->name, errno);
296     return 0;
297   }
298   if (!os_connect_nonb(cptr->fd, &sin)) {
299     cptr->error = errno;
300     report_error(CONNECT_ERROR_MSG, cptr->name, errno);
301     return 0;
302   }
303   return 1;
304 }
305
306 /*
307  * deliver_it
308  *   Attempt to send a sequence of bytes to the connection.
309  *   Returns
310  *
311  *   < 0     Some fatal error occurred, (but not EWOULDBLOCK).
312  *           This return is a request to close the socket and
313  *           clean up the link.
314  *
315  *   >= 0    No real error occurred, returns the number of
316  *           bytes actually transferred. EWOULDBLOCK and other
317  *           possibly similar conditions should be mapped to
318  *           zero return. Upper level routine will have to
319  *           decide what to do with those unwritten bytes...
320  *
321  *   *NOTE*  alarm calls have been preserved, so this should
322  *           work equally well whether blocking or non-blocking
323  *           mode is used...
324  *
325  *   We don't use blocking anymore, that is impossible with the
326  *      net.loads today anyway. Commented out the alarms to save cpu.
327  *      --Run
328  */
329 unsigned int deliver_it(struct Client *cptr, const char *str, unsigned int len)
330 {
331   unsigned int bytes_written = 0;
332   assert(0 != cptr);
333
334   switch (os_send_nonb(cptr->fd, str, len, &bytes_written)) {
335   case IO_SUCCESS:
336     cptr->flags &= ~FLAGS_BLOCKED;
337
338     cptr->sendB += bytes_written;
339     me.sendB    += bytes_written;
340     if (cptr->sendB > 1023) {
341       cptr->sendK += (cptr->sendB >> 10);
342       cptr->sendB &= 0x03ff;    /* 2^10 = 1024, 3ff = 1023 */
343     }
344     if (me.sendB > 1023) {
345       me.sendK += (me.sendB >> 10);
346       me.sendB &= 0x03ff;
347     }
348     if (bytes_written < len)
349       cptr->flags |= FLAGS_BLOCKED;
350     break;
351   case IO_BLOCKED:
352     cptr->flags |= FLAGS_BLOCKED;
353     break;
354   case IO_FAILURE:
355     cptr->error = errno;
356     cptr->flags |= FLAGS_DEADSOCKET;
357     break;
358   }
359   return bytes_written;
360 }
361
362
363 void release_dns_reply(struct Client* cptr)
364 {
365   assert(0 != cptr);
366   assert(MyConnect(cptr));
367
368   if (cptr->dns_reply) {
369     assert(0 < cptr->dns_reply->ref_count);
370     --cptr->dns_reply->ref_count;
371     cptr->dns_reply = 0;
372   }
373 }
374
375 /*
376  * completed_connection
377  *
378  * Complete non-blocking connect()-sequence. Check access and
379  * terminate connection, if trouble detected.
380  *
381  * Return  TRUE, if successfully completed
382  *        FALSE, if failed and ClientExit
383  */
384 static int completed_connection(struct Client* cptr)
385 {
386   struct ConfItem *aconf;
387   time_t newts;
388   struct Client *acptr;
389   int i;
390
391   assert(0 != cptr);
392
393   /*
394    * get the socket status from the fd first to check if
395    * connection actually succeeded
396    */
397   if ((cptr->error = os_get_sockerr(cptr->fd))) {
398     const char* msg = strerror(cptr->error);
399     if (!msg)
400       msg = "Unknown error";
401     sendto_opmask_butone(0, SNO_OLDSNO, "Connection failed to %s: %s",
402                          cptr->name, msg);
403     return 0;
404   }
405   if (!(aconf = find_conf_byname(cptr->confs, cptr->name, CONF_SERVER))) {
406     sendto_opmask_butone(0, SNO_OLDSNO, "Lost Server Line for %s", cptr->name);
407     return 0;
408   }
409
410   if (!EmptyString(aconf->passwd))
411     sendrawto_one(cptr, MSG_PASS " :%s", aconf->passwd);
412
413 #if 0 
414   /* dead code, already done in connect_server */
415   make_server(cptr);
416 #endif
417   /*
418    * Create a unique timestamp
419    */
420   newts = TStime();
421   for (i = HighestFd; i > -1; --i) {
422     if ((acptr = LocalClientArray[i]) && 
423         (IsServer(acptr) || IsHandshake(acptr))) {
424       if (acptr->serv->timestamp >= newts)
425         newts = acptr->serv->timestamp + 1;
426     }
427   }
428   assert(0 != cptr->serv);
429
430   cptr->serv->timestamp = newts;
431   SetHandshake(cptr);
432   /*
433    * Make us timeout after twice the timeout for DNS look ups
434    */
435   cptr->lasttime = CurrentTime;
436   cptr->flags |= FLAGS_PINGSENT;
437
438   sendrawto_one(cptr, MSG_SERVER " %s 1 %Tu %Tu J%s %s%s :%s",
439                 me.name, me.serv->timestamp, newts, MAJOR_PROTOCOL, 
440                 NumServCap(&me), me.info);
441
442   return (IsDead(cptr)) ? 0 : 1;
443 }
444
445 /*
446  * close_connection
447  *
448  * Close the physical connection. This function must make
449  * MyConnect(cptr) == FALSE, and set cptr->from == NULL.
450  */
451 void close_connection(struct Client *cptr)
452 {
453   struct ConfItem* aconf;
454
455   if (IsServer(cptr)) {
456     ServerStats->is_sv++;
457     ServerStats->is_sbs += cptr->sendB;
458     ServerStats->is_sbr += cptr->receiveB;
459     ServerStats->is_sks += cptr->sendK;
460     ServerStats->is_skr += cptr->receiveK;
461     ServerStats->is_sti += CurrentTime - cptr->firsttime;
462     if (ServerStats->is_sbs > 1023) {
463       ServerStats->is_sks += (ServerStats->is_sbs >> 10);
464       ServerStats->is_sbs &= 0x3ff;
465     }
466     if (ServerStats->is_sbr > 1023) {
467       ServerStats->is_skr += (ServerStats->is_sbr >> 10);
468       ServerStats->is_sbr &= 0x3ff;
469     }
470     /*
471      * If the connection has been up for a long amount of time, schedule
472      * a 'quick' reconnect, else reset the next-connect cycle.
473      */
474     if ((aconf = find_conf_exact(cptr->name, 0, cptr->sockhost, CONF_SERVER))) {
475       /*
476        * Reschedule a faster reconnect, if this was a automaticly
477        * connected configuration entry. (Note that if we have had
478        * a rehash in between, the status has been changed to
479        * CONF_ILLEGAL). But only do this if it was a "good" link.
480        */
481       aconf->hold = CurrentTime;
482       aconf->hold += (aconf->hold - cptr->since > HANGONGOODLINK) ?
483                      HANGONRETRYDELAY : ConfConFreq(aconf);
484       if (nextconnect > aconf->hold)
485         nextconnect = aconf->hold;
486     }
487   }
488   else if (IsUser(cptr)) {
489     ServerStats->is_cl++;
490     ServerStats->is_cbs += cptr->sendB;
491     ServerStats->is_cbr += cptr->receiveB;
492     ServerStats->is_cks += cptr->sendK;
493     ServerStats->is_ckr += cptr->receiveK;
494     ServerStats->is_cti += CurrentTime - cptr->firsttime;
495     if (ServerStats->is_cbs > 1023) {
496       ServerStats->is_cks += (ServerStats->is_cbs >> 10);
497       ServerStats->is_cbs &= 0x3ff;
498     }
499     if (ServerStats->is_cbr > 1023) {
500       ServerStats->is_ckr += (ServerStats->is_cbr >> 10);
501       ServerStats->is_cbr &= 0x3ff;
502     }
503   }
504   else
505     ServerStats->is_ni++;
506
507   if (-1 < cptr->fd) {
508     flush_connections(cptr);
509     LocalClientArray[cptr->fd] = 0;
510     close(cptr->fd);
511     cptr->fd = -1;
512   }
513   cptr->flags |= FLAGS_DEADSOCKET;
514
515   DBufClear(&cptr->sendQ);
516   DBufClear(&cptr->recvQ);
517   memset(cptr->passwd, 0, sizeof(cptr->passwd));
518   set_snomask(cptr, 0, SNO_SET);
519
520   det_confs_butmask(cptr, 0);
521
522   if (cptr->listener) {
523     release_listener(cptr->listener);
524     cptr->listener = 0;
525   }
526
527   for ( ; HighestFd > 0; --HighestFd) {
528     if (LocalClientArray[HighestFd])
529       break;
530   }
531 }
532
533 int net_close_unregistered_connections(struct Client* source)
534 {
535   int            i;
536   struct Client* cptr;
537   int            count = 0;
538   assert(0 != source);
539
540   for (i = HighestFd; i > 0; --i) {
541     if ((cptr = LocalClientArray[i]) && !IsRegistered(cptr)) {
542       send_reply(source, RPL_CLOSING, get_client_name(source, HIDE_IP));
543       exit_client(source, cptr, &me, "Oper Closing");
544       ++count;
545     }
546   }
547   return count;
548 }
549
550 /*
551  * Creates a client which has just connected to us on the given fd.
552  * The sockhost field is initialized with the ip# of the host.
553  * The client is not added to the linked list of clients, it is
554  * passed off to the auth handler for dns and ident queries.
555  */
556 void add_connection(struct Listener* listener, int fd)
557 {
558   struct sockaddr_in addr;
559   struct Client*     new_client;
560   time_t             next_target = 0;
561   const char* const throttle_message =
562          "ERROR: Your host is trying to (re)connect too fast -- throttled\r\n";
563        /* 12345678901234567890123456789012345679012345678901234567890123456 */
564   
565   assert(0 != listener);
566   /*
567    * Removed preliminary access check. Full check is performed in
568    * m_server and m_user instead. Also connection time out help to
569    * get rid of unwanted connections.
570    */
571   if (!os_get_peername(fd, &addr) || !os_set_nonblocking(fd)) {
572     ++ServerStats->is_ref;
573     close(fd);
574     return;
575   }
576   /*
577    * Add this local client to the IPcheck registry.
578    * If it is a connection to a user port and if the site has been throttled,
579    * reject the user.
580    */
581   if (!IPcheck_local_connect(addr.sin_addr, &next_target) && !listener->server) {
582 #ifdef IPCHECKDEBUG     
583    char buff[512];
584    snprintf(buff,512,"\n\rNOTICE * :IPCheck=%i connections active\n\r%s",
585         IPcheck_nr(cptr),
586         throttle_message);
587    buff[511]=0;
588    send(fd,buff,strlen(buff),0);
589 #else
590     /*
591      * strlen(throttle_message) == 66
592      *
593      * strlen is slow, so we use the constant here.
594      */
595     send(fd, throttle_message, 66, 0);
596 #endif
597     close(fd);
598     ++ServerStats->is_ref;
599     return;
600   }
601
602   new_client = make_client(0,
603       (listener->server) ? STAT_UNKNOWN_SERVER : STAT_UNKNOWN_USER);
604   /*
605    * Copy ascii address to 'sockhost' just in case. Then we
606    * have something valid to put into error messages...
607    */
608   ircd_ntoa_r(new_client->sock_ip, (const char*) &addr.sin_addr);   
609   strcpy(new_client->sockhost, new_client->sock_ip);
610   new_client->ip.s_addr = addr.sin_addr.s_addr;
611   new_client->port      = ntohs(addr.sin_port);
612
613   if (next_target)
614     new_client->nexttarget = next_target;
615
616   new_client->fd = fd;
617
618   if (!listener->server)
619     SetIPChecked(new_client);
620   new_client->listener = listener;
621   ++listener->ref_count;
622
623   Count_newunknown(UserStats);
624   /*
625    * if we've made it this far we can put the client on the auth query pile
626    */
627   start_auth(new_client);
628 }
629
630 /*
631  * read_packet
632  *
633  * Read a 'packet' of data from a connection and process it.  Read in 8k
634  * chunks to give a better performance rating (for server connections).
635  * Do some tricky stuff for client connections to make sure they don't do
636  * any flooding >:-) -avalon
637  */
638 static int read_packet(struct Client *cptr, int socket_ready)
639 {
640   unsigned int dolen = 0;
641   unsigned int length = 0;
642
643   if (socket_ready && !(IsUser(cptr) && DBufLength(&cptr->recvQ) > CLIENT_FLOOD)) {
644     switch (os_recv_nonb(cptr->fd, readbuf, sizeof(readbuf), &length)) {
645     case IO_SUCCESS:
646       if (length) {
647         cptr->lasttime = CurrentTime;
648         if (cptr->lasttime > cptr->since)
649           cptr->since = cptr->lasttime;
650         cptr->flags &= ~(FLAGS_PINGSENT | FLAGS_NONL);
651       }
652       break;
653     case IO_BLOCKED:
654       break;
655     case IO_FAILURE:
656       cptr->error = errno;
657       /* cptr->flags |= FLAGS_DEADSOCKET; */
658       return 0;
659     }
660   }
661
662   /*
663    * For server connections, we process as many as we can without
664    * worrying about the time of day or anything :)
665    */
666   if (length > 0 && IsServer(cptr)) {
667     return server_dopacket(cptr, readbuf, length);
668   }
669   else {
670     /*
671      * Before we even think of parsing what we just read, stick
672      * it on the end of the receive queue and do it when its
673      * turn comes around.
674      */
675     if (length > 0 && 0 == dbuf_put(&cptr->recvQ, readbuf, length)) {
676       return exit_client(cptr, cptr, &me, "dbuf_put fail");
677     }
678 #ifndef NOFLOODCONTROL
679     /*
680      * XXX - cptr will always be a user or unregistered
681      */
682     if (IsUser(cptr) && DBufLength(&cptr->recvQ) > CLIENT_FLOOD)
683       return exit_client(cptr, cptr, &me, "Excess Flood");
684
685     while (DBufLength(&cptr->recvQ) && !NoNewLine(cptr) && 
686            (IsTrusted(cptr) || cptr->since - CurrentTime < 10))
687 #else
688     while (DBufLength(&cptr->recvQ) && !NoNewLine(cptr))
689 #endif
690     {
691       /*
692        * If it has become registered as a Server
693        * then skip the per-message parsing below.
694        */
695       if (IsServer(cptr)) {
696         dolen = dbuf_get(&cptr->recvQ, readbuf, sizeof(readbuf));
697         return (dolen) ? server_dopacket(cptr, readbuf, dolen) : 1;
698       }
699       dolen = dbuf_getmsg(&cptr->recvQ, cptr->buffer, BUFSIZE);
700       /*
701        * Devious looking...whats it do ? well..if a client
702        * sends a *long* message without any CR or LF, then
703        * dbuf_getmsg fails and we pull it out using this
704        * loop which just gets the next 512 bytes and then
705        * deletes the rest of the buffer contents.
706        * -avalon
707        */
708       if (0 == dolen) {
709         if (DBufLength(&cptr->recvQ) < 510)
710           cptr->flags |= FLAGS_NONL;
711         else
712           DBufClear(&cptr->recvQ);
713       }
714       else if (CPTR_KILLED == client_dopacket(cptr, dolen))
715         return CPTR_KILLED;
716     }
717   }
718   return 1;
719 }
720
721 static int on_write_unblocked(struct Client* cptr)
722 {
723   /*
724    *  ...room for writing, empty some queue then...
725    */
726   cptr->flags &= ~FLAGS_BLOCKED;
727   if (IsConnecting(cptr)) {
728     if (!completed_connection(cptr))
729       return 0;
730   }
731   else if (cptr->listing && DBufLength(&cptr->sendQ) < 2048)
732     list_next_channels(cptr, 64);
733   send_queued(cptr);
734   return 1;
735 }
736
737 /*
738  * Select / Poll Read Algorithm for ircd
739  *
740  * We need to check the file descriptors for all the different types
741  * of things that use them, so check for reads on everything but connects
742  * and writes on connects and descriptors that are blocked
743  *
744  * for each (client in local) {
745  *   if (not connecting)
746  *     check for read;
747  *   if (connecting or blocked)
748  *     check for write;
749  * }
750  * wait for activity;
751  *
752  * for each (client in local) {
753  *   if (there are descriptors to check) {
754  *     if (write activity)
755  *       send data;
756  *     if (read activity)
757  *       read data;
758  *   }
759  *   process data read;
760  * }
761  * Note we must always process data read whether or not there has been
762  * read activity or file descriptors set, since data is buffered by the client.
763  */
764
765
766 #ifdef USE_POLL
767
768 /*
769  * poll macros
770  */
771 #if defined(POLLMSG) && defined(POLLIN) && defined(POLLRDNORM)
772 #  define POLLREADFLAGS (POLLMSG|POLLIN|POLLRDNORM)
773 #else
774 #  if defined(POLLIN) && defined(POLLRDNORM)
775 #    define POLLREADFLAGS (POLLIN|POLLRDNORM)
776 #  else
777 #    if defined(POLLIN)
778 #      define POLLREADFLAGS POLLIN
779 #    else
780 #      if defined(POLLRDNORM)
781 #        define POLLREADFLAGS POLLRDNORM
782 #      endif
783 #    endif
784 #  endif
785 #endif
786
787 #if defined(POLLOUT) && defined(POLLWRNORM)
788 #define POLLWRITEFLAGS (POLLOUT|POLLWRNORM)
789 #else
790 #  if defined(POLLOUT)
791 #    define POLLWRITEFLAGS POLLOUT
792 #  else
793 #    if defined(POLLWRNORM)
794 #      define POLLWRITEFLAGS POLLWRNORM
795 #    endif
796 #  endif
797 #endif
798
799 #ifdef POLLHUP
800 #define POLLERRORS (POLLHUP|POLLERR)
801 #else
802 #define POLLERRORS POLLERR
803 #endif
804
805 /*
806  * NOTE: pfd and pfd_count are local variable names in read_message
807  */
808 #define PFD_SETR(xfd) \
809   do { CHECK_ADD_PFD(xfd) pfd->events |= POLLREADFLAGS; } while(0)
810 #define PFD_SETW(xfd) \
811   do { CHECK_ADD_PFD(xfd) pfd->events |= POLLWRITEFLAGS; } while(0)
812
813 #define CHECK_ADD_PFD(xfd) \
814   if (pfd->fd != xfd) { \
815     pfd = &poll_fds[pfd_count++]; \
816     poll_fds[pfd_count].fd = -1; \
817     pfd->fd = xfd; \
818     pfd->events = 0; \
819   }
820
821 /*
822  * Check all connections for new connections and input data that is to be
823  * processed. Also check for connections with data queued and whether we can
824  * write it out.
825  *
826  * Don't ever use ZERO for `delay', unless you mean to poll and then
827  * you have to have sleep/wait somewhere else in the code.--msa
828  */
829 int read_message(time_t delay)
830 {
831   struct pollfd poll_fds[MAXCONNECTIONS + 1];
832   struct Client*      cptr;
833   struct Listener*    listener   = 0;
834   struct AuthRequest* auth       = 0;
835   struct AuthRequest* auth_next  = 0;
836   struct UPing*       uping      = 0;
837   struct UPing*       uping_next = 0;
838   time_t delay2 = delay;
839   int nfds;
840   int length;
841   int i;
842   int res = 0;
843   int pfd_count;
844   struct pollfd* pfd;
845   struct pollfd* res_pfd;
846   struct pollfd* uping_pfd;
847   int read_ready;
848   int write_ready;
849
850   unsigned int timeout;
851
852   for ( ; ; ) {
853     pfd_count = 0;
854     pfd = poll_fds;
855     res_pfd = 0;
856     uping_pfd = 0;
857     pfd->fd = -1;
858
859     if (-1 < ResolverFileDescriptor) {
860       PFD_SETR(ResolverFileDescriptor);
861       res_pfd = pfd;
862     }
863     if (-1 < UPingFileDescriptor) {
864       PFD_SETR(UPingFileDescriptor);
865       uping_pfd = pfd;
866     }
867     /*
868      * add uping descriptors
869      */
870     for (uping = uping_begin(); uping; uping = uping_next) {
871       uping_next = uping->next;
872       if (uping->active) {
873         delay2 = 1;
874        if (uping->lastsent && CurrentTime > uping->timeout) {
875           uping_end(uping);
876           continue;
877         }
878         uping->index = pfd_count;
879         PFD_SETR(uping->fd);
880       }
881     }
882     /*
883      * add auth file descriptors
884      */
885     for (auth = AuthPollList; auth; auth = auth->next) {
886       assert(-1 < auth->fd);
887       auth->index = pfd_count;
888       if (IsAuthConnect(auth))
889         PFD_SETW(auth->fd);
890       else
891         PFD_SETR(auth->fd);
892     }
893     /*
894      * add listener file descriptors
895      */    
896     for (listener = ListenerPollList; listener; listener = listener->next) {
897       assert(-1 < listener->fd);
898       /*
899        * pfd_count is incremented by PFD_SETR so we need to save the 
900        * index first 
901        */
902       listener->index = pfd_count;
903       PFD_SETR(listener->fd);
904     }
905
906     for (i = HighestFd; -1 < i; --i) {
907       if ((cptr = LocalClientArray[i])) {
908
909         if (DBufLength(&cptr->recvQ))
910           delay2 = 1;
911         if (DBufLength(&cptr->recvQ) < 4088 || IsServer(cptr)) {
912           PFD_SETR(i);
913         }
914         if (DBufLength(&cptr->sendQ) || IsConnecting(cptr) ||
915             (cptr->listing && DBufLength(&cptr->sendQ) < 2048)) {
916           PFD_SETW(i);
917         }
918       }
919     }
920
921     Debug((DEBUG_INFO, "poll: %d %d", delay, delay2));
922
923     timeout = (IRCD_MIN(delay2, delay)) * 1000;
924
925     nfds = poll(poll_fds, pfd_count, timeout);
926
927     CurrentTime = time(0);
928     if (-1 < nfds)
929       break;
930
931     if (EINTR == errno)
932       return -1;
933     report_error(POLL_ERROR_MSG, me.name, errno);
934     ++res;
935     if (res > 5)
936       server_restart("too many poll errors");
937     sleep(1);
938     CurrentTime = time(0);
939   }
940
941   if (uping_pfd && (uping_pfd->revents & (POLLREADFLAGS | POLLERRORS))) {
942     uping_echo();
943     --nfds;
944   }
945   /*
946    * check uping replies
947    */
948   for (uping = uping_begin(); uping; uping = uping_next) {
949     uping_next = uping->next;
950     if (uping->active) {
951       assert(-1 < uping->index);
952       if (poll_fds[uping->index].revents) {
953         uping_read(uping);
954         if (0 == --nfds)
955           break;
956       }
957       else if (CurrentTime > uping->lastsent) {
958         uping->lastsent = CurrentTime;
959         uping_send(uping);
960       }
961     }
962   }
963
964   if (res_pfd && (res_pfd->revents & (POLLREADFLAGS | POLLERRORS))) {
965     resolver_read();
966     --nfds;
967   }
968   /*
969    * check auth queries
970    */
971   for (auth = AuthPollList; auth; auth = auth_next) {
972     auth_next = auth->next;
973     i = auth->index;
974     /*
975      * check for any event, we only ask for one at a time
976      */
977     if (poll_fds[i].revents) {
978       if (IsAuthConnect(auth))
979         send_auth_query(auth);
980       else
981         read_auth_reply(auth);
982       if (0 == --nfds)
983         break;
984     }
985   }
986   /*
987    * check listeners
988    */
989   for (listener = ListenerPollList; listener; listener = listener->next) {
990     i = listener->index;
991     if (poll_fds[i].revents) {
992       accept_connection(listener);
993       if (0 == --nfds)
994         break;
995     }
996   }
997   /*
998    * i contains the next non-auth/non-listener index, since we put the
999    * resolver, auth and listener, file descriptors in poll_fds first,
1000    * the very next one should be the start of the clients
1001    */
1002   pfd = &poll_fds[++i];
1003
1004   for ( ; (i < pfd_count); ++i, ++pfd) {
1005     if (!(cptr = LocalClientArray[pfd->fd]))
1006       continue;
1007     read_ready = write_ready = 0;
1008
1009     if (0 < nfds && pfd->revents) {
1010       --nfds;
1011     
1012       read_ready  = pfd->revents & POLLREADFLAGS;
1013       write_ready = pfd->revents & POLLWRITEFLAGS;
1014
1015       if (pfd->revents & POLLERRORS) {
1016         if (pfd->events & POLLREADFLAGS)
1017           ++read_ready;
1018         if (pfd->events & POLLWRITEFLAGS)
1019           ++write_ready;
1020       }
1021     }
1022     if (write_ready) {
1023       if (!on_write_unblocked(cptr) || IsDead(cptr)) {
1024         const char* msg = (cptr->error) ? strerror(cptr->error) : cptr->info;
1025         if (!msg)
1026           msg = "Unknown error";
1027         exit_client(cptr, cptr, &me, msg);
1028         continue;
1029       }
1030     }
1031     length = 1;                 /* for fall through case */
1032     if ((!NoNewLine(cptr) || read_ready) && !IsDead(cptr)) {
1033       if (CPTR_KILLED == (length = read_packet(cptr, read_ready)))
1034         continue;
1035     }
1036 #if 0
1037     /* Bullshit, why would we want to flush sockets while using non-blocking?
1038      * This uses > 4% cpu! --Run */
1039     if (length > 0)
1040       flush_connections(poll_cptr[i]);
1041 #endif
1042     if (IsDead(cptr)) {
1043       const char* msg = (cptr->error) ? strerror(cptr->error) : cptr->info;
1044       if (!msg)
1045         msg = "Unknown error";
1046       exit_client(cptr, cptr, &me, (char*) msg);
1047       continue;
1048     }
1049     if (length > 0)
1050       continue;
1051     cptr->flags |= FLAGS_DEADSOCKET;
1052     /*
1053      * ...hmm, with non-blocking sockets we might get
1054      * here from quite valid reasons, although.. why
1055      * would select report "data available" when there
1056      * wasn't... So, this must be an error anyway...  --msa
1057      * actually, EOF occurs when read() returns 0 and
1058      * in due course, select() returns that fd as ready
1059      * for reading even though it ends up being an EOF. -avalon
1060      */
1061     Debug((DEBUG_ERROR, "READ ERROR: fd = %d %d %d", pfd->fd, errno, length));
1062
1063     if ((IsServer(cptr) || IsHandshake(cptr)) && cptr->error == 0 && length == 0)
1064       exit_client_msg(cptr, cptr, &me, "Server %s closed the connection (%s)",
1065                       cptr->name, cptr->serv->last_error_msg);
1066     else {
1067       const char* msg = (cptr->error) ? strerror(cptr->error) : "EOF from client";
1068       if (!msg)
1069         msg = "Unknown error";
1070       exit_client_msg(cptr, cptr, &me, "Read error: %s",
1071                       msg);
1072     }
1073   }
1074   return 0;
1075 }
1076 #else /* USE_SELECT */
1077
1078 /*
1079  * Check all connections for new connections and input data that is to be
1080  * processed. Also check for connections with data queued and whether we can
1081  * write it out.
1082  *
1083  * Don't ever use ZERO for `delay', unless you mean to poll and then
1084  * you have to have sleep/wait somewhere else in the code.--msa
1085  */
1086 int read_message(time_t delay)
1087 {
1088   struct Client*   cptr;
1089   struct Listener* listener;
1090   struct AuthRequest* auth = 0;
1091   struct AuthRequest* auth_next = 0;
1092   struct UPing*       uping;
1093   struct UPing*       uping_next;
1094   int              nfds;
1095   struct timeval   wait;
1096   time_t           delay2 = delay;
1097   unsigned int     usec = 0;
1098   int              res = 0;
1099   int              length;
1100   int              i;
1101   int              read_ready;
1102   fd_set           read_set;
1103   fd_set           write_set;
1104
1105   for ( ; ; )
1106   {
1107     FD_ZERO(&read_set);
1108     FD_ZERO(&write_set);
1109
1110     if (-1 < ResolverFileDescriptor)
1111       FD_SET(ResolverFileDescriptor, &read_set);
1112     if (-1 < UPingFileDescriptor)
1113       FD_SET(UPingFileDescriptor, &read_set);
1114     /*
1115      * set up uping file descriptors
1116      */
1117     for (uping = uping_begin(); uping; uping = uping_next) {
1118       uping_next = uping->next;
1119       if (uping->active) {
1120         delay2 = 1;
1121         if (uping->lastsent && CurrentTime > uping->timeout) {
1122           uping_end(uping);
1123           continue;
1124         }
1125         assert(-1 < uping->fd);
1126         FD_SET(uping->fd, &read_set);
1127       }
1128     }
1129     /*
1130      * set auth file descriptors
1131      */
1132     for (auth = AuthPollList; auth; auth = auth->next) {
1133       assert(-1 < auth->fd);
1134       if (IsAuthConnect(auth))
1135         FD_SET(auth->fd, &write_set);
1136       else /* if (IsAuthPending(auth)) */
1137         FD_SET(auth->fd, &read_set);
1138     }
1139     /*
1140      * set listener file descriptors
1141      */
1142     for (listener = ListenerPollList; listener; listener = listener->next) {
1143       assert(-1 < listener->fd);
1144       FD_SET(listener->fd, &read_set);
1145     }
1146
1147     for (i = HighestFd; i > -1; --i) {
1148       if ((cptr = LocalClientArray[i])) {
1149         if (DBufLength(&cptr->recvQ))
1150           delay2 = 1;
1151         if (DBufLength(&cptr->recvQ) < 4088 || IsServer(cptr))
1152           FD_SET(i, &read_set);
1153         if (DBufLength(&cptr->sendQ) || IsConnecting(cptr) ||
1154             (cptr->listing && DBufLength(&cptr->sendQ) < 2048))
1155           FD_SET(i, &write_set);
1156       }
1157     }
1158
1159     wait.tv_sec = IRCD_MIN(delay2, delay);
1160     wait.tv_usec = usec;
1161
1162     Debug((DEBUG_INFO, "select: %d %d", delay, delay2));
1163
1164     nfds = select(FD_SETSIZE, &read_set, &write_set, 0, &wait);
1165
1166     CurrentTime = time(0);
1167
1168     if (-1 < nfds)
1169       break;
1170
1171     if (errno == EINTR)
1172       return -1;
1173     report_error(SELECT_ERROR_MSG, me.name, errno);
1174     if (++res > 5)
1175       server_restart("too many select errors");
1176     sleep(1);
1177     CurrentTime = time(0);
1178   }
1179
1180   if (-1 < UPingFileDescriptor && FD_ISSET(UPingFileDescriptor, &read_set)) {
1181     uping_echo();
1182     --nfds;
1183   }
1184   for (uping = uping_begin(); uping; uping = uping_next) {
1185     uping_next = uping->next;
1186     if (uping->active) {
1187       assert(-1 < uping->fd);
1188       if (FD_ISSET(uping->fd, &read_set)) {
1189         uping_read(uping);
1190         if (0 == --nfds)
1191           break;
1192       }
1193       else if (CurrentTime > uping->lastsent) {
1194         uping->lastsent = CurrentTime;
1195         uping_send(uping);
1196       }
1197     }
1198   }
1199   if (-1 < ResolverFileDescriptor && FD_ISSET(ResolverFileDescriptor, &read_set)) {
1200     resolver_read();
1201     --nfds;
1202   }
1203   /*
1204    * Check fd sets for the auth fd's (if set and valid!) first
1205    * because these can not be processed using the normal loops below.
1206    * -avalon
1207    */
1208   for (auth = AuthPollList; auth; auth = auth_next) {
1209     auth_next = auth->next;
1210     assert(-1 < auth->fd);
1211     if (IsAuthConnect(auth) && FD_ISSET(auth->fd, &write_set)) {
1212       send_auth_query(auth);
1213       if (0 == --nfds)
1214         break;
1215     }
1216     else if (FD_ISSET(auth->fd, &read_set)) {
1217       read_auth_reply(auth);
1218       if (0 == --nfds)
1219         break;
1220     }
1221   }
1222   /*
1223    * next accept connections from active listeners
1224    */
1225   for (listener = ListenerPollList; listener; listener = listener->next) {
1226     assert(-1 < listener->fd);
1227     if (0 < nfds && FD_ISSET(listener->fd, &read_set))
1228       accept_connection(listener);
1229   } 
1230
1231   for (i = HighestFd; -1 < i; --i) {
1232     if (!(cptr = LocalClientArray[i]))
1233       continue;
1234     read_ready = 0;
1235     if (0 < nfds) {
1236       if (FD_ISSET(i, &write_set)) {
1237         --nfds;
1238         if (!on_write_unblocked(cptr) || IsDead(cptr)) {
1239           const char* msg = (cptr->error) ? strerror(cptr->error) : cptr->info;
1240           if (!msg)
1241             msg = "Unknown error";
1242           if (FD_ISSET(i, &read_set))
1243             --nfds;
1244           exit_client(cptr, cptr, &me, msg);
1245           continue;
1246         }
1247       }
1248       if ((read_ready = FD_ISSET(i, &read_set)))
1249         --nfds;
1250     }
1251     length = 1;                 /* for fall through case */
1252     if ((!NoNewLine(cptr) || read_ready) && !IsDead(cptr)) {
1253       if (CPTR_KILLED == (length = read_packet(cptr, read_ready)))
1254         continue;
1255     }
1256 #if 0
1257     /* Bullshit, why would we want to flush sockets while using non-blocking?
1258      * This uses > 4% cpu! --Run */
1259     if (length > 0)
1260       flush_connections(LocalClientArray[i]);
1261 #endif
1262     if (IsDead(cptr)) {
1263       const char* msg = (cptr->error) ? strerror(cptr->error) : cptr->info;
1264       if (!msg)
1265         msg = "Unknown error";
1266       exit_client(cptr, cptr, &me, msg);
1267       continue;
1268     }
1269     if (length > 0)
1270       continue;
1271
1272     /*
1273      * ...hmm, with non-blocking sockets we might get
1274      * here from quite valid reasons, although.. why
1275      * would select report "data available" when there
1276      * wasn't... So, this must be an error anyway...  --msa
1277      * actually, EOF occurs when read() returns 0 and
1278      * in due course, select() returns that fd as ready
1279      * for reading even though it ends up being an EOF. -avalon
1280      */
1281     Debug((DEBUG_ERROR, "READ ERROR: fd = %d %d %d", i, cptr->error, length));
1282
1283     if ((IsServer(cptr) || IsHandshake(cptr)) && cptr->error == 0 && length == 0)
1284       exit_client_msg(cptr, cptr, &me, "Server %s closed the connection (%s)",
1285                       cptr->name, cptr->serv->last_error_msg);
1286     else {
1287       const char* msg = (cptr->error) ? strerror(cptr->error) : "EOF from client";
1288       if (!msg)
1289         msg = "Unknown error";
1290       exit_client_msg(cptr, cptr, &me, "Read error: %s",
1291                       msg);
1292     }
1293   }
1294   return 0;
1295 }
1296
1297 #endif /* USE_SELECT */
1298
1299 /*
1300  * connect_server - start or complete a connection to another server
1301  * returns true (1) if successful, false (0) otherwise
1302  *
1303  * aconf must point to a valid C:line
1304  * m_connect            calls this with a valid by client and a null reply
1305  * try_connections      calls this with a null by client, and a null reply
1306  * connect_dns_callback call this with a null by client, and a valid reply
1307  *
1308  * XXX - if this comes from an m_connect message and a dns query needs to
1309  * be done, we loose the information about who started the connection and
1310  * it's considered an auto connect.
1311  */
1312 int connect_server(struct ConfItem* aconf, struct Client* by,
1313                    struct DNSReply* reply)
1314 {
1315   struct Client*   cptr = 0;
1316   assert(0 != aconf);
1317
1318   if (aconf->dns_pending) {
1319     sendto_opmask_butone(0, SNO_OLDSNO, "Server %s connect DNS pending",
1320                          aconf->name);
1321     return 0;
1322   }
1323   Debug((DEBUG_NOTICE, "Connect to %s[@%s]", aconf->name,
1324          ircd_ntoa((const char*) &aconf->ipnum)));
1325
1326   if ((cptr = FindClient(aconf->name))) {
1327     if (IsServer(cptr) || IsMe(cptr)) {
1328       sendto_opmask_butone(0, SNO_OLDSNO, "Server %s already present from %s", 
1329                            aconf->name, cptr->from->name);
1330       if (by && IsUser(by) && !MyUser(by)) {
1331         sendcmdto_one(&me, CMD_NOTICE, by, "%C :Server %s already present "
1332                       "from %s", by, aconf->name, cptr->from->name);
1333       }
1334       return 0;
1335     }
1336     else if (IsHandshake(cptr) || IsConnecting(cptr)) {
1337       if (by && IsUser(by)) {
1338         sendcmdto_one(&me, CMD_NOTICE, by, "%C :Connection to %s already in "
1339                       "progress", by, cptr->name);
1340       }
1341       return 0;
1342     }
1343   }
1344   /*
1345    * If we dont know the IP# for this host and itis a hostname and
1346    * not a ip# string, then try and find the appropriate host record.
1347    */
1348   if (INADDR_NONE == aconf->ipnum.s_addr) {
1349     char buf[HOSTLEN + 1];
1350     assert(0 == reply);
1351     if (INADDR_NONE == (aconf->ipnum.s_addr = inet_addr(aconf->host))) {
1352       struct DNSQuery  query;
1353
1354       query.vptr     = aconf;
1355       query.callback = connect_dns_callback;
1356       host_from_uh(buf, aconf->host, HOSTLEN);
1357       buf[HOSTLEN] = '\0';
1358
1359       reply = gethost_byname(buf, &query);
1360
1361       if (!reply) {
1362         aconf->dns_pending = 1;
1363         return 0;
1364       }
1365       memcpy(&aconf->ipnum, reply->hp->h_addr, sizeof(struct in_addr));
1366     }
1367   }
1368   cptr = make_client(NULL, STAT_UNKNOWN_SERVER);
1369   if (reply)
1370     ++reply->ref_count;
1371   cptr->dns_reply = reply;
1372
1373   /*
1374    * Copy these in so we have something for error detection.
1375    */
1376   ircd_strncpy(cptr->name, aconf->name, HOSTLEN);
1377   ircd_strncpy(cptr->sockhost, aconf->host, HOSTLEN);
1378
1379   /*
1380    * Attach config entries to client here rather than in
1381    * completed_connection. This to avoid null pointer references
1382    */
1383   attach_confs_byhost(cptr, aconf->host, CONF_SERVER);
1384
1385   if (!find_conf_byhost(cptr->confs, aconf->host, CONF_SERVER)) {
1386     sendto_opmask_butone(0, SNO_OLDSNO, "Host %s is not enabled for "
1387                          "connecting: no C-line", aconf->name);
1388     if (by && IsUser(by) && !MyUser(by)) {
1389       sendcmdto_one(&me, CMD_NOTICE, by, "%C :Connect to host %s failed: no "
1390                     "C-line", by, aconf->name);
1391     }
1392     det_confs_butmask(cptr, 0);
1393     free_client(cptr);
1394     return 0;
1395   }
1396   /*
1397    * attempt to connect to the server in the conf line
1398    */
1399   if (!connect_inet(aconf, cptr)) {
1400     if (by && IsUser(by) && !MyUser(by)) {
1401       sendcmdto_one(&me, CMD_NOTICE, by, "%C :Couldn't connect to %s", by,
1402                     cptr->name);
1403     }
1404     det_confs_butmask(cptr, 0);
1405     free_client(cptr);
1406     return 0;
1407   }
1408   /*
1409    * NOTE: if we're here we have a valid C:Line and the client should
1410    * have started the connection and stored the remote address/port and
1411    * ip address name in itself
1412    *
1413    * The socket has been connected or connect is in progress.
1414    */
1415   make_server(cptr);
1416   if (by && IsUser(by)) {
1417     sprintf_irc(cptr->serv->by, "%s%s", NumNick(by));
1418     assert(0 == cptr->serv->user);
1419     cptr->serv->user = by->user;
1420     by->user->refcnt++;
1421   }
1422   else {
1423     *cptr->serv->by = '\0';
1424     /* strcpy(cptr->serv->by, "Auto"); */
1425   }
1426   cptr->serv->up = &me;
1427   SetConnecting(cptr);
1428
1429   if (cptr->fd > HighestFd)
1430     HighestFd = cptr->fd;
1431   LocalClientArray[cptr->fd] = cptr;
1432
1433   Count_newunknown(UserStats);
1434   add_client_to_list(cptr);
1435   hAddClient(cptr);
1436   nextping = CurrentTime;
1437
1438   return 1;
1439 }
1440
1441 /*
1442  * Setup local socket structure to use for binding to.
1443  */
1444 void init_virtual_host(const struct ConfItem* conf)
1445 {
1446   assert(0 != conf);
1447
1448   memset(&VirtualHost, 0, sizeof(VirtualHost));
1449   VirtualHost.sin_family = AF_INET;
1450   VirtualHost.sin_addr.s_addr = INADDR_ANY;
1451
1452   if (EmptyString(conf->passwd) || 0 == strcmp(conf->passwd, "*"))
1453     return;
1454   VirtualHost.sin_addr.s_addr = inet_addr(conf->passwd);
1455
1456   if (INADDR_NONE == VirtualHost.sin_addr.s_addr)
1457     VirtualHost.sin_addr.s_addr = INADDR_ANY;
1458 }  
1459
1460 /*
1461  * Find the real hostname for the host running the server (or one which
1462  * matches the server's name) and its primary IP#.  Hostname is stored
1463  * in the client structure passed as a pointer.
1464  */
1465 int init_server_identity()
1466 {
1467   struct ConfItem* conf = find_me();
1468
1469   if (!conf || EmptyString(conf->host))
1470     return 0;
1471
1472   ircd_strncpy(me.name, conf->host, HOSTLEN);
1473
1474   init_virtual_host(conf);
1475   return 1;
1476 }
1477
1478