Author: Isomer <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     ip_registry_local_disconnect(cptr);
510     LocalClientArray[cptr->fd] = 0;
511     close(cptr->fd);
512     cptr->fd = -1;
513   }
514   cptr->flags |= FLAGS_DEADSOCKET;
515
516   DBufClear(&cptr->sendQ);
517   DBufClear(&cptr->recvQ);
518   memset(cptr->passwd, 0, sizeof(cptr->passwd));
519   set_snomask(cptr, 0, SNO_SET);
520
521   det_confs_butmask(cptr, 0);
522
523   if (cptr->listener) {
524     release_listener(cptr->listener);
525     cptr->listener = 0;
526   }
527
528   for ( ; HighestFd > 0; --HighestFd) {
529     if (LocalClientArray[HighestFd])
530       break;
531   }
532 }
533
534 int net_close_unregistered_connections(struct Client* source)
535 {
536   int            i;
537   struct Client* cptr;
538   int            count = 0;
539   assert(0 != source);
540
541   for (i = HighestFd; i > 0; --i) {
542     if ((cptr = LocalClientArray[i]) && !IsRegistered(cptr)) {
543       send_reply(source, RPL_CLOSING, get_client_name(source, HIDE_IP));
544       exit_client(source, cptr, &me, "Oper Closing");
545       ++count;
546     }
547   }
548   return count;
549 }
550
551 /*----------------------------------------------------------------------------
552  * add_connection
553  *
554  * Creates a client which has just connected to us on the given fd.
555  * The sockhost field is initialized with the ip# of the host.
556  * The client is not added to the linked list of clients, it is
557  * passed off to the auth handler for dns and ident queries.
558  *--------------------------------------------------------------------------*/
559 void add_connection(struct Listener* listener, int fd) {
560   struct sockaddr_in addr;
561   struct Client      *new_client;
562   time_t             next_target = 0;
563
564   const char* const throttle_message =
565          "ERROR :Your host is trying to (re)connect too fast -- throttled\r\n";
566        /* 12345678901234567890123456789012345679012345678901234567890123456 */
567   
568   assert(0 != listener);
569
570  
571   /*
572    * Removed preliminary access check. Full check is performed in m_server and
573    * m_user instead. Also connection time out help to get rid of unwanted
574    * connections.  
575    */
576   if (!os_get_peername(fd, &addr) || !os_set_nonblocking(fd)) {
577     ++ServerStats->is_ref;
578     close(fd);
579     return;
580   }
581
582   /*
583    * Add this local client to the IPcheck registry.
584    *
585    * If they're throttled, murder them, but tell them why first.
586    */
587   if ( !ip_registry_check_local(addr.sin_addr.s_addr,&next_target) ) {
588         ++ServerStats->is_ref;
589         write(fd,throttle_message,strlen(throttle_message));
590         close(fd);
591         return;
592   }
593
594   new_client = make_client(0, ((listener->server) ? 
595                                STAT_UNKNOWN_SERVER : STAT_UNKNOWN_USER));
596
597   /*
598    * Copy ascii address to 'sockhost' just in case. Then we have something
599    * valid to put into error messages...  
600    */
601   ircd_ntoa_r(new_client->sock_ip, (const char*) &addr.sin_addr);   
602   strcpy(new_client->sockhost, new_client->sock_ip);
603   new_client->ip.s_addr = addr.sin_addr.s_addr;
604   new_client->port      = ntohs(addr.sin_port);
605
606   if (next_target)
607     new_client->nexttarget = next_target;
608
609   new_client->fd = fd;
610   new_client->listener = listener;
611   ++listener->ref_count;
612
613   Count_newunknown(UserStats);
614
615   /* if we've made it this far we can put the client on the auth query pile */
616   start_auth(new_client);
617 }
618
619
620 /*
621  * read_packet
622  *
623  * Read a 'packet' of data from a connection and process it.  Read in 8k
624  * chunks to give a better performance rating (for server connections).
625  * Do some tricky stuff for client connections to make sure they don't do
626  * any flooding >:-) -avalon
627  */
628 static int read_packet(struct Client *cptr, int socket_ready)
629 {
630   unsigned int dolen = 0;
631   unsigned int length = 0;
632
633   if (socket_ready && !(IsUser(cptr) && DBufLength(&cptr->recvQ) > CLIENT_FLOOD)) {
634     switch (os_recv_nonb(cptr->fd, readbuf, sizeof(readbuf), &length)) {
635     case IO_SUCCESS:
636       if (length) {
637         cptr->lasttime = CurrentTime;
638         if (cptr->lasttime > cptr->since)
639           cptr->since = cptr->lasttime;
640         cptr->flags &= ~(FLAGS_PINGSENT | FLAGS_NONL);
641       }
642       break;
643     case IO_BLOCKED:
644       break;
645     case IO_FAILURE:
646       cptr->error = errno;
647       /* cptr->flags |= FLAGS_DEADSOCKET; */
648       return 0;
649     }
650   }
651
652   /*
653    * For server connections, we process as many as we can without
654    * worrying about the time of day or anything :)
655    */
656   if (length > 0 && IsServer(cptr)) {
657     return server_dopacket(cptr, readbuf, length);
658   }
659   else {
660     /*
661      * Before we even think of parsing what we just read, stick
662      * it on the end of the receive queue and do it when its
663      * turn comes around.
664      */
665     if (length > 0 && 0 == dbuf_put(&cptr->recvQ, readbuf, length)) {
666       return exit_client(cptr, cptr, &me, "dbuf_put fail");
667     }
668 #ifndef NOFLOODCONTROL
669     /*
670      * XXX - cptr will always be a user or unregistered
671      */
672     if (IsUser(cptr) && DBufLength(&cptr->recvQ) > CLIENT_FLOOD)
673       return exit_client(cptr, cptr, &me, "Excess Flood");
674
675     while (DBufLength(&cptr->recvQ) && !NoNewLine(cptr) && 
676            (IsTrusted(cptr) || cptr->since - CurrentTime < 10))
677 #else
678     while (DBufLength(&cptr->recvQ) && !NoNewLine(cptr))
679 #endif
680     {
681       /*
682        * If it has become registered as a Server
683        * then skip the per-message parsing below.
684        */
685       if (IsServer(cptr)) {
686         dolen = dbuf_get(&cptr->recvQ, readbuf, sizeof(readbuf));
687         return (dolen) ? server_dopacket(cptr, readbuf, dolen) : 1;
688       }
689       dolen = dbuf_getmsg(&cptr->recvQ, cptr->buffer, BUFSIZE);
690       /*
691        * Devious looking...whats it do ? well..if a client
692        * sends a *long* message without any CR or LF, then
693        * dbuf_getmsg fails and we pull it out using this
694        * loop which just gets the next 512 bytes and then
695        * deletes the rest of the buffer contents.
696        * -avalon
697        */
698       if (0 == dolen) {
699         if (DBufLength(&cptr->recvQ) < 510)
700           cptr->flags |= FLAGS_NONL;
701         else
702           DBufClear(&cptr->recvQ);
703       }
704       else if (CPTR_KILLED == client_dopacket(cptr, dolen))
705         return CPTR_KILLED;
706     }
707   }
708   return 1;
709 }
710
711 static int on_write_unblocked(struct Client* cptr)
712 {
713   /*
714    *  ...room for writing, empty some queue then...
715    */
716   cptr->flags &= ~FLAGS_BLOCKED;
717   if (IsConnecting(cptr)) {
718     if (!completed_connection(cptr))
719       return 0;
720   }
721   else if (cptr->listing && DBufLength(&cptr->sendQ) < 2048)
722     list_next_channels(cptr, 64);
723   send_queued(cptr);
724   return 1;
725 }
726
727 /*
728  * Select / Poll Read Algorithm for ircd
729  *
730  * We need to check the file descriptors for all the different types
731  * of things that use them, so check for reads on everything but connects
732  * and writes on connects and descriptors that are blocked
733  *
734  * for each (client in local) {
735  *   if (not connecting)
736  *     check for read;
737  *   if (connecting or blocked)
738  *     check for write;
739  * }
740  * wait for activity;
741  *
742  * for each (client in local) {
743  *   if (there are descriptors to check) {
744  *     if (write activity)
745  *       send data;
746  *     if (read activity)
747  *       read data;
748  *   }
749  *   process data read;
750  * }
751  * Note we must always process data read whether or not there has been
752  * read activity or file descriptors set, since data is buffered by the client.
753  */
754
755
756 #ifdef USE_POLL
757
758 /*
759  * poll macros
760  */
761 #if defined(POLLMSG) && defined(POLLIN) && defined(POLLRDNORM)
762 #  define POLLREADFLAGS (POLLMSG|POLLIN|POLLRDNORM)
763 #else
764 #  if defined(POLLIN) && defined(POLLRDNORM)
765 #    define POLLREADFLAGS (POLLIN|POLLRDNORM)
766 #  else
767 #    if defined(POLLIN)
768 #      define POLLREADFLAGS POLLIN
769 #    else
770 #      if defined(POLLRDNORM)
771 #        define POLLREADFLAGS POLLRDNORM
772 #      endif
773 #    endif
774 #  endif
775 #endif
776
777 #if defined(POLLOUT) && defined(POLLWRNORM)
778 #define POLLWRITEFLAGS (POLLOUT|POLLWRNORM)
779 #else
780 #  if defined(POLLOUT)
781 #    define POLLWRITEFLAGS POLLOUT
782 #  else
783 #    if defined(POLLWRNORM)
784 #      define POLLWRITEFLAGS POLLWRNORM
785 #    endif
786 #  endif
787 #endif
788
789 #ifdef POLLHUP
790 #define POLLERRORS (POLLHUP|POLLERR)
791 #else
792 #define POLLERRORS POLLERR
793 #endif
794
795 /*
796  * NOTE: pfd and pfd_count are local variable names in read_message
797  */
798 #define PFD_SETR(xfd) \
799   do { CHECK_ADD_PFD(xfd) pfd->events |= POLLREADFLAGS; } while(0)
800 #define PFD_SETW(xfd) \
801   do { CHECK_ADD_PFD(xfd) pfd->events |= POLLWRITEFLAGS; } while(0)
802
803 #define CHECK_ADD_PFD(xfd) \
804   if (pfd->fd != xfd) { \
805     pfd = &poll_fds[pfd_count++]; \
806     poll_fds[pfd_count].fd = -1; \
807     pfd->fd = xfd; \
808     pfd->events = 0; \
809   }
810
811 /*
812  * Check all connections for new connections and input data that is to be
813  * processed. Also check for connections with data queued and whether we can
814  * write it out.
815  *
816  * Don't ever use ZERO for `delay', unless you mean to poll and then
817  * you have to have sleep/wait somewhere else in the code.--msa
818  */
819 int read_message(time_t delay)
820 {
821   struct pollfd poll_fds[MAXCONNECTIONS + 1];
822   struct Client*      cptr;
823   struct Listener*    listener   = 0;
824   struct AuthRequest* auth       = 0;
825   struct AuthRequest* auth_next  = 0;
826   struct UPing*       uping      = 0;
827   struct UPing*       uping_next = 0;
828   time_t delay2 = delay;
829   int nfds;
830   int length;
831   int i;
832   int res = 0;
833   int pfd_count;
834   struct pollfd* pfd;
835   struct pollfd* res_pfd;
836   struct pollfd* uping_pfd;
837   int read_ready;
838   int write_ready;
839
840   unsigned int timeout;
841
842   for ( ; ; ) {
843     pfd_count = 0;
844     pfd = poll_fds;
845     res_pfd = 0;
846     uping_pfd = 0;
847     pfd->fd = -1;
848
849     if (-1 < ResolverFileDescriptor) {
850       PFD_SETR(ResolverFileDescriptor);
851       res_pfd = pfd;
852     }
853     if (-1 < UPingFileDescriptor) {
854       PFD_SETR(UPingFileDescriptor);
855       uping_pfd = pfd;
856     }
857     /*
858      * add uping descriptors
859      */
860     for (uping = uping_begin(); uping; uping = uping_next) {
861       uping_next = uping->next;
862       if (uping->active) {
863         delay2 = 1;
864        if (uping->lastsent && CurrentTime > uping->timeout) {
865           uping_end(uping);
866           continue;
867         }
868         uping->index = pfd_count;
869         PFD_SETR(uping->fd);
870       }
871     }
872     /*
873      * add auth file descriptors
874      */
875     for (auth = AuthPollList; auth; auth = auth->next) {
876       assert(-1 < auth->fd);
877       auth->index = pfd_count;
878       if (IsAuthConnect(auth))
879         PFD_SETW(auth->fd);
880       else
881         PFD_SETR(auth->fd);
882     }
883     /*
884      * add listener file descriptors
885      */    
886     for (listener = ListenerPollList; listener; listener = listener->next) {
887       assert(-1 < listener->fd);
888       /*
889        * pfd_count is incremented by PFD_SETR so we need to save the 
890        * index first 
891        */
892       listener->index = pfd_count;
893       PFD_SETR(listener->fd);
894     }
895
896     for (i = HighestFd; -1 < i; --i) {
897       if ((cptr = LocalClientArray[i])) {
898
899         if (DBufLength(&cptr->recvQ))
900           delay2 = 1;
901         if (DBufLength(&cptr->recvQ) < 4088 || IsServer(cptr)) {
902           PFD_SETR(i);
903         }
904         if (DBufLength(&cptr->sendQ) || IsConnecting(cptr) ||
905             (cptr->listing && DBufLength(&cptr->sendQ) < 2048)) {
906           PFD_SETW(i);
907         }
908       }
909     }
910
911     Debug((DEBUG_INFO, "poll: %d %d", delay, delay2));
912
913     timeout = (IRCD_MIN(delay2, delay)) * 1000;
914
915     nfds = poll(poll_fds, pfd_count, timeout);
916
917     CurrentTime = time(0);
918     if (-1 < nfds)
919       break;
920
921     if (EINTR == errno)
922       return -1;
923     report_error(POLL_ERROR_MSG, me.name, errno);
924     ++res;
925     if (res > 5)
926       server_restart("too many poll errors");
927     sleep(1);
928     CurrentTime = time(0);
929   }
930
931   if (uping_pfd && (uping_pfd->revents & (POLLREADFLAGS | POLLERRORS))) {
932     uping_echo();
933     --nfds;
934   }
935   /*
936    * check uping replies
937    */
938   for (uping = uping_begin(); uping; uping = uping_next) {
939     uping_next = uping->next;
940     if (uping->active) {
941       assert(-1 < uping->index);
942       if (poll_fds[uping->index].revents) {
943         uping_read(uping);
944         if (0 == --nfds)
945           break;
946       }
947       else if (CurrentTime > uping->lastsent) {
948         uping->lastsent = CurrentTime;
949         uping_send(uping);
950       }
951     }
952   }
953
954   if (res_pfd && (res_pfd->revents & (POLLREADFLAGS | POLLERRORS))) {
955     resolver_read();
956     --nfds;
957   }
958   /*
959    * check auth queries
960    */
961   for (auth = AuthPollList; auth; auth = auth_next) {
962     auth_next = auth->next;
963     i = auth->index;
964     /*
965      * check for any event, we only ask for one at a time
966      */
967     if (poll_fds[i].revents) {
968       if (IsAuthConnect(auth))
969         send_auth_query(auth);
970       else
971         read_auth_reply(auth);
972       if (0 == --nfds)
973         break;
974     }
975   }
976   /*
977    * check listeners
978    */
979   for (listener = ListenerPollList; listener; listener = listener->next) {
980     i = listener->index;
981     if (poll_fds[i].revents) {
982       accept_connection(listener);
983       if (0 == --nfds)
984         break;
985     }
986   }
987   /*
988    * i contains the next non-auth/non-listener index, since we put the
989    * resolver, auth and listener, file descriptors in poll_fds first,
990    * the very next one should be the start of the clients
991    */
992   pfd = &poll_fds[++i];
993
994   for ( ; (i < pfd_count); ++i, ++pfd) {
995     if (!(cptr = LocalClientArray[pfd->fd]))
996       continue;
997     read_ready = write_ready = 0;
998
999     if (0 < nfds && pfd->revents) {
1000       --nfds;
1001     
1002       read_ready  = pfd->revents & POLLREADFLAGS;
1003       write_ready = pfd->revents & POLLWRITEFLAGS;
1004
1005       if (pfd->revents & POLLERRORS) {
1006         if (pfd->events & POLLREADFLAGS)
1007           ++read_ready;
1008         if (pfd->events & POLLWRITEFLAGS)
1009           ++write_ready;
1010       }
1011     }
1012     if (write_ready) {
1013       if (!on_write_unblocked(cptr) || IsDead(cptr)) {
1014         const char* msg = (cptr->error) ? strerror(cptr->error) : cptr->info;
1015         if (!msg)
1016           msg = "Unknown error";
1017         exit_client(cptr, cptr, &me, msg);
1018         continue;
1019       }
1020     }
1021     length = 1;                 /* for fall through case */
1022     if ((!NoNewLine(cptr) || read_ready) && !IsDead(cptr)) {
1023       if (CPTR_KILLED == (length = read_packet(cptr, read_ready)))
1024         continue;
1025     }
1026 #if 0
1027     /* Bullshit, why would we want to flush sockets while using non-blocking?
1028      * This uses > 4% cpu! --Run */
1029     if (length > 0)
1030       flush_connections(poll_cptr[i]);
1031 #endif
1032     if (IsDead(cptr)) {
1033       const char* msg = (cptr->error) ? strerror(cptr->error) : cptr->info;
1034       if (!msg)
1035         msg = "Unknown error";
1036       exit_client(cptr, cptr, &me, (char*) msg);
1037       continue;
1038     }
1039     if (length > 0)
1040       continue;
1041     cptr->flags |= FLAGS_DEADSOCKET;
1042     /*
1043      * ...hmm, with non-blocking sockets we might get
1044      * here from quite valid reasons, although.. why
1045      * would select report "data available" when there
1046      * wasn't... So, this must be an error anyway...  --msa
1047      * actually, EOF occurs when read() returns 0 and
1048      * in due course, select() returns that fd as ready
1049      * for reading even though it ends up being an EOF. -avalon
1050      */
1051     Debug((DEBUG_ERROR, "READ ERROR: fd = %d %d %d", pfd->fd, errno, length));
1052
1053     if ((IsServer(cptr) || IsHandshake(cptr)) && cptr->error == 0 && length == 0)
1054       exit_client_msg(cptr, cptr, &me, "Server %s closed the connection (%s)",
1055                       cptr->name, cptr->serv->last_error_msg);
1056     else {
1057       const char* msg = (cptr->error) ? strerror(cptr->error) : "EOF from client";
1058       if (!msg)
1059         msg = "Unknown error";
1060       exit_client_msg(cptr, cptr, &me, "Read error: %s",
1061                       msg);
1062     }
1063   }
1064   return 0;
1065 }
1066 #else /* USE_SELECT */
1067
1068 /*
1069  * Check all connections for new connections and input data that is to be
1070  * processed. Also check for connections with data queued and whether we can
1071  * write it out.
1072  *
1073  * Don't ever use ZERO for `delay', unless you mean to poll and then
1074  * you have to have sleep/wait somewhere else in the code.--msa
1075  */
1076 int read_message(time_t delay)
1077 {
1078   struct Client*   cptr;
1079   struct Listener* listener;
1080   struct AuthRequest* auth = 0;
1081   struct AuthRequest* auth_next = 0;
1082   struct UPing*       uping;
1083   struct UPing*       uping_next;
1084   int              nfds;
1085   struct timeval   wait;
1086   time_t           delay2 = delay;
1087   unsigned int     usec = 0;
1088   int              res = 0;
1089   int              length;
1090   int              i;
1091   int              read_ready;
1092   fd_set           read_set;
1093   fd_set           write_set;
1094
1095   for ( ; ; )
1096   {
1097     FD_ZERO(&read_set);
1098     FD_ZERO(&write_set);
1099
1100     if (-1 < ResolverFileDescriptor)
1101       FD_SET(ResolverFileDescriptor, &read_set);
1102     if (-1 < UPingFileDescriptor)
1103       FD_SET(UPingFileDescriptor, &read_set);
1104     /*
1105      * set up uping file descriptors
1106      */
1107     for (uping = uping_begin(); uping; uping = uping_next) {
1108       uping_next = uping->next;
1109       if (uping->active) {
1110         delay2 = 1;
1111         if (uping->lastsent && CurrentTime > uping->timeout) {
1112           uping_end(uping);
1113           continue;
1114         }
1115         assert(-1 < uping->fd);
1116         FD_SET(uping->fd, &read_set);
1117       }
1118     }
1119     /*
1120      * set auth file descriptors
1121      */
1122     for (auth = AuthPollList; auth; auth = auth->next) {
1123       assert(-1 < auth->fd);
1124       if (IsAuthConnect(auth))
1125         FD_SET(auth->fd, &write_set);
1126       else /* if (IsAuthPending(auth)) */
1127         FD_SET(auth->fd, &read_set);
1128     }
1129     /*
1130      * set listener file descriptors
1131      */
1132     for (listener = ListenerPollList; listener; listener = listener->next) {
1133       assert(-1 < listener->fd);
1134       FD_SET(listener->fd, &read_set);
1135     }
1136
1137     for (i = HighestFd; i > -1; --i) {
1138       if ((cptr = LocalClientArray[i])) {
1139         if (DBufLength(&cptr->recvQ))
1140           delay2 = 1;
1141         if (DBufLength(&cptr->recvQ) < 4088 || IsServer(cptr))
1142           FD_SET(i, &read_set);
1143         if (DBufLength(&cptr->sendQ) || IsConnecting(cptr) ||
1144             (cptr->listing && DBufLength(&cptr->sendQ) < 2048))
1145           FD_SET(i, &write_set);
1146       }
1147     }
1148
1149     wait.tv_sec = IRCD_MIN(delay2, delay);
1150     wait.tv_usec = usec;
1151
1152     Debug((DEBUG_INFO, "select: %d %d", delay, delay2));
1153
1154     nfds = select(FD_SETSIZE, &read_set, &write_set, 0, &wait);
1155
1156     CurrentTime = time(0);
1157
1158     if (-1 < nfds)
1159       break;
1160
1161     if (errno == EINTR)
1162       return -1;
1163     report_error(SELECT_ERROR_MSG, me.name, errno);
1164     if (++res > 5)
1165       server_restart("too many select errors");
1166     sleep(1);
1167     CurrentTime = time(0);
1168   }
1169
1170   if (-1 < UPingFileDescriptor && FD_ISSET(UPingFileDescriptor, &read_set)) {
1171     uping_echo();
1172     --nfds;
1173   }
1174   for (uping = uping_begin(); uping; uping = uping_next) {
1175     uping_next = uping->next;
1176     if (uping->active) {
1177       assert(-1 < uping->fd);
1178       if (FD_ISSET(uping->fd, &read_set)) {
1179         uping_read(uping);
1180         if (0 == --nfds)
1181           break;
1182       }
1183       else if (CurrentTime > uping->lastsent) {
1184         uping->lastsent = CurrentTime;
1185         uping_send(uping);
1186       }
1187     }
1188   }
1189   if (-1 < ResolverFileDescriptor && FD_ISSET(ResolverFileDescriptor, &read_set)) {
1190     resolver_read();
1191     --nfds;
1192   }
1193   /*
1194    * Check fd sets for the auth fd's (if set and valid!) first
1195    * because these can not be processed using the normal loops below.
1196    * -avalon
1197    */
1198   for (auth = AuthPollList; auth; auth = auth_next) {
1199     auth_next = auth->next;
1200     assert(-1 < auth->fd);
1201     if (IsAuthConnect(auth) && FD_ISSET(auth->fd, &write_set)) {
1202       send_auth_query(auth);
1203       if (0 == --nfds)
1204         break;
1205     }
1206     else if (FD_ISSET(auth->fd, &read_set)) {
1207       read_auth_reply(auth);
1208       if (0 == --nfds)
1209         break;
1210     }
1211   }
1212   /*
1213    * next accept connections from active listeners
1214    */
1215   for (listener = ListenerPollList; listener; listener = listener->next) {
1216     assert(-1 < listener->fd);
1217     if (0 < nfds && FD_ISSET(listener->fd, &read_set))
1218       accept_connection(listener);
1219   } 
1220
1221   for (i = HighestFd; -1 < i; --i) {
1222     if (!(cptr = LocalClientArray[i]))
1223       continue;
1224     read_ready = 0;
1225     if (0 < nfds) {
1226       if (FD_ISSET(i, &write_set)) {
1227         --nfds;
1228         if (!on_write_unblocked(cptr) || IsDead(cptr)) {
1229           const char* msg = (cptr->error) ? strerror(cptr->error) : cptr->info;
1230           if (!msg)
1231             msg = "Unknown error";
1232           if (FD_ISSET(i, &read_set))
1233             --nfds;
1234           exit_client(cptr, cptr, &me, msg);
1235           continue;
1236         }
1237       }
1238       if ((read_ready = FD_ISSET(i, &read_set)))
1239         --nfds;
1240     }
1241     length = 1;                 /* for fall through case */
1242     if ((!NoNewLine(cptr) || read_ready) && !IsDead(cptr)) {
1243       if (CPTR_KILLED == (length = read_packet(cptr, read_ready)))
1244         continue;
1245     }
1246     if (IsDead(cptr)) {
1247       const char* msg = (cptr->error) ? strerror(cptr->error) : cptr->info;
1248       if (!msg)
1249         msg = "Unknown error";
1250       exit_client(cptr, cptr, &me, msg);
1251       continue;
1252     }
1253     if (length > 0)
1254       continue;
1255
1256     /*
1257      * ...hmm, with non-blocking sockets we might get
1258      * here from quite valid reasons, although.. why
1259      * would select report "data available" when there
1260      * wasn't... So, this must be an error anyway...  --msa
1261      * actually, EOF occurs when read() returns 0 and
1262      * in due course, select() returns that fd as ready
1263      * for reading even though it ends up being an EOF. -avalon
1264      */
1265     Debug((DEBUG_ERROR, "READ ERROR: fd = %d %d %d", i, cptr->error, length));
1266
1267     if ((IsServer(cptr) || IsHandshake(cptr)) && cptr->error == 0 && length == 0)
1268       exit_client_msg(cptr, cptr, &me, "Server %s closed the connection (%s)",
1269                       cptr->name, cptr->serv->last_error_msg);
1270     else {
1271       const char* msg = (cptr->error) ? strerror(cptr->error) : "EOF from client";
1272       if (!msg)
1273         msg = "Unknown error";
1274       exit_client_msg(cptr, cptr, &me, "Read error: %s",
1275                       msg);
1276     }
1277   }
1278   return 0;
1279 }
1280
1281 #endif /* USE_SELECT */
1282
1283 /*
1284  * connect_server - start or complete a connection to another server
1285  * returns true (1) if successful, false (0) otherwise
1286  *
1287  * aconf must point to a valid C:line
1288  * m_connect            calls this with a valid by client and a null reply
1289  * try_connections      calls this with a null by client, and a null reply
1290  * connect_dns_callback call this with a null by client, and a valid reply
1291  *
1292  * XXX - if this comes from an m_connect message and a dns query needs to
1293  * be done, we loose the information about who started the connection and
1294  * it's considered an auto connect.
1295  */
1296 int connect_server(struct ConfItem* aconf, struct Client* by,
1297                    struct DNSReply* reply)
1298 {
1299   struct Client*   cptr = 0;
1300   assert(0 != aconf);
1301
1302   if (aconf->dns_pending) {
1303     sendto_opmask_butone(0, SNO_OLDSNO, "Server %s connect DNS pending",
1304                          aconf->name);
1305     return 0;
1306   }
1307   Debug((DEBUG_NOTICE, "Connect to %s[@%s]", aconf->name,
1308          ircd_ntoa((const char*) &aconf->ipnum)));
1309
1310   if ((cptr = FindClient(aconf->name))) {
1311     if (IsServer(cptr) || IsMe(cptr)) {
1312       sendto_opmask_butone(0, SNO_OLDSNO, "Server %s already present from %s", 
1313                            aconf->name, cptr->from->name);
1314       if (by && IsUser(by) && !MyUser(by)) {
1315         sendcmdto_one(&me, CMD_NOTICE, by, "%C :Server %s already present "
1316                       "from %s", by, aconf->name, cptr->from->name);
1317       }
1318       return 0;
1319     }
1320     else if (IsHandshake(cptr) || IsConnecting(cptr)) {
1321       if (by && IsUser(by)) {
1322         sendcmdto_one(&me, CMD_NOTICE, by, "%C :Connection to %s already in "
1323                       "progress", by, cptr->name);
1324       }
1325       return 0;
1326     }
1327   }
1328   /*
1329    * If we dont know the IP# for this host and itis a hostname and
1330    * not a ip# string, then try and find the appropriate host record.
1331    */
1332   if (INADDR_NONE == aconf->ipnum.s_addr) {
1333     char buf[HOSTLEN + 1];
1334     assert(0 == reply);
1335     if (INADDR_NONE == (aconf->ipnum.s_addr = inet_addr(aconf->host))) {
1336       struct DNSQuery  query;
1337
1338       query.vptr     = aconf;
1339       query.callback = connect_dns_callback;
1340       host_from_uh(buf, aconf->host, HOSTLEN);
1341       buf[HOSTLEN] = '\0';
1342
1343       reply = gethost_byname(buf, &query);
1344
1345       if (!reply) {
1346         aconf->dns_pending = 1;
1347         return 0;
1348       }
1349       memcpy(&aconf->ipnum, reply->hp->h_addr, sizeof(struct in_addr));
1350     }
1351   }
1352   cptr = make_client(NULL, STAT_UNKNOWN_SERVER);
1353   if (reply)
1354     ++reply->ref_count;
1355   cptr->dns_reply = reply;
1356
1357   /*
1358    * Copy these in so we have something for error detection.
1359    */
1360   ircd_strncpy(cptr->name, aconf->name, HOSTLEN);
1361   ircd_strncpy(cptr->sockhost, aconf->host, HOSTLEN);
1362
1363   /*
1364    * Attach config entries to client here rather than in
1365    * completed_connection. This to avoid null pointer references
1366    */
1367   attach_confs_byhost(cptr, aconf->host, CONF_SERVER);
1368
1369   if (!find_conf_byhost(cptr->confs, aconf->host, CONF_SERVER)) {
1370     sendto_opmask_butone(0, SNO_OLDSNO, "Host %s is not enabled for "
1371                          "connecting: no C-line", aconf->name);
1372     if (by && IsUser(by) && !MyUser(by)) {
1373       sendcmdto_one(&me, CMD_NOTICE, by, "%C :Connect to host %s failed: no "
1374                     "C-line", by, aconf->name);
1375     }
1376     det_confs_butmask(cptr, 0);
1377     free_client(cptr);
1378     return 0;
1379   }
1380   /*
1381    * attempt to connect to the server in the conf line
1382    */
1383   if (!connect_inet(aconf, cptr)) {
1384     if (by && IsUser(by) && !MyUser(by)) {
1385       sendcmdto_one(&me, CMD_NOTICE, by, "%C :Couldn't connect to %s", by,
1386                     cptr->name);
1387     }
1388     det_confs_butmask(cptr, 0);
1389     free_client(cptr);
1390     return 0;
1391   }
1392   /*
1393    * NOTE: if we're here we have a valid C:Line and the client should
1394    * have started the connection and stored the remote address/port and
1395    * ip address name in itself
1396    *
1397    * The socket has been connected or connect is in progress.
1398    */
1399   make_server(cptr);
1400   if (by && IsUser(by)) {
1401     sprintf_irc(cptr->serv->by, "%s%s", NumNick(by));
1402     assert(0 == cptr->serv->user);
1403     cptr->serv->user = by->user;
1404     by->user->refcnt++;
1405   }
1406   else {
1407     *cptr->serv->by = '\0';
1408     /* strcpy(cptr->serv->by, "Auto"); */
1409   }
1410   cptr->serv->up = &me;
1411   SetConnecting(cptr);
1412
1413   if (cptr->fd > HighestFd)
1414     HighestFd = cptr->fd;
1415
1416   
1417   LocalClientArray[cptr->fd] = cptr;
1418
1419   Count_newunknown(UserStats);
1420   add_client_to_list(cptr);
1421   hAddClient(cptr);
1422   nextping = CurrentTime;
1423
1424   return 1;
1425 }
1426
1427 /*
1428  * Setup local socket structure to use for binding to.
1429  */
1430 void init_virtual_host(const struct ConfItem* conf)
1431 {
1432   assert(0 != conf);
1433
1434   memset(&VirtualHost, 0, sizeof(VirtualHost));
1435   VirtualHost.sin_family = AF_INET;
1436   VirtualHost.sin_addr.s_addr = INADDR_ANY;
1437
1438   if (EmptyString(conf->passwd) || 0 == strcmp(conf->passwd, "*"))
1439     return;
1440   VirtualHost.sin_addr.s_addr = inet_addr(conf->passwd);
1441
1442   if (INADDR_NONE == VirtualHost.sin_addr.s_addr)
1443     VirtualHost.sin_addr.s_addr = INADDR_ANY;
1444 }  
1445
1446 /*
1447  * Find the real hostname for the host running the server (or one which
1448  * matches the server's name) and its primary IP#.  Hostname is stored
1449  * in the client structure passed as a pointer.
1450  */
1451 int init_server_identity()
1452 {
1453   struct ConfItem* conf = find_me();
1454
1455   if (!conf || EmptyString(conf->host))
1456     return 0;
1457
1458   ircd_strncpy(me.name, conf->host, HOSTLEN);
1459
1460   init_virtual_host(conf);
1461   return 1;
1462 }
1463
1464