Add new server flag (+6) to indicate IPv6 address format support. If
[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 /** @file
21  * @brief Functions that now (or in the past) relied on BSD APIs.
22  * @version $Id$
23  */
24 #include "config.h"
25
26 #include "s_bsd.h"
27 #include "client.h"
28 #include "IPcheck.h"
29 #include "channel.h"
30 #include "class.h"
31 #include "hash.h"
32 #include "ircd_alloc.h"
33 #include "ircd_log.h"
34 #include "ircd_features.h"
35 #include "ircd_osdep.h"
36 #include "ircd_reply.h"
37 #include "ircd_snprintf.h"
38 #include "ircd_string.h"
39 #include "ircd.h"
40 #include "list.h"
41 #include "listener.h"
42 #include "msg.h"
43 #include "msgq.h"
44 #include "numeric.h"
45 #include "numnicks.h"
46 #include "packet.h"
47 #include "parse.h"
48 #include "querycmds.h"
49 #include "res.h"
50 #include "s_auth.h"
51 #include "s_conf.h"
52 #include "s_debug.h"
53 #include "s_misc.h"
54 #include "s_user.h"
55 #include "send.h"
56 #include "struct.h"
57 #include "sys.h"
58 #include "uping.h"
59 #include "version.h"
60
61 #include <arpa/inet.h>
62 /* #include <assert.h> -- Now using assert in ircd_log.h */
63 #include <errno.h>
64 #include <fcntl.h>
65 #include <netdb.h>
66 #include <stdio.h>
67 #include <stdlib.h>
68 #include <string.h>
69 #include <sys/ioctl.h>
70 #include <sys/socket.h>
71 #include <sys/time.h>
72 #include <sys/utsname.h>
73 #include <unistd.h>
74
75 #ifdef USE_POLL
76 #include <sys/poll.h>
77 #endif /* USE_POLL */
78
79 /** Array of my own clients, indexed by file descriptor. */
80 struct Client*            LocalClientArray[MAXCONNECTIONS];
81 /** Maximum file descriptor in current use. */
82 int                       HighestFd = -1;
83 /** Default local address for outbound connections. */
84 struct irc_sockaddr       VirtualHost;
85 /** Temporary buffer for reading data from a peer. */
86 static char               readbuf[SERVER_TCP_WINDOW];
87
88 /*
89  * report_error text constants
90  */
91 const char* const ACCEPT_ERROR_MSG    = "error accepting connection for %s: %s";
92 const char* const BIND_ERROR_MSG      = "bind error for %s: %s";
93 const char* const CONNECT_ERROR_MSG   = "connect to host %s failed: %s";
94 const char* const CONNLIMIT_ERROR_MSG = "connect limit exceeded for %s: %s";
95 const char* const LISTEN_ERROR_MSG    = "listen error for %s: %s";
96 const char* const NONB_ERROR_MSG      = "error setting non-blocking for %s: %s";
97 const char* const PEERNAME_ERROR_MSG  = "getpeername failed for %s: %s";
98 const char* const POLL_ERROR_MSG      = "poll error for %s: %s";
99 const char* const REGISTER_ERROR_MSG  = "registering %s: %s";
100 const char* const REUSEADDR_ERROR_MSG = "error setting SO_REUSEADDR for %s: %s";
101 const char* const SELECT_ERROR_MSG    = "select error for %s: %s";
102 const char* const SETBUFS_ERROR_MSG   = "error setting buffer size for %s: %s";
103 const char* const SOCKET_ERROR_MSG    = "error creating socket for %s: %s";
104 const char* const TOS_ERROR_MSG       = "error setting TOS for %s: %s";
105
106
107 static void client_sock_callback(struct Event* ev);
108 static void client_timer_callback(struct Event* ev);
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 /** Replacement for perror(). Record error to log.  Send a copy to all
136  * *LOCAL* opers, but only if no errors were sent to them in the last
137  * 20 seconds.
138  * @param text A *format* string for outputting error. It must contain
139  * only two '%s', the first will be replaced by the sockhost from the
140  * cptr, and the latter will be taken from sys_errlist[errno].
141  * @param who The client associated with the error.
142  * @param err The errno value to display.
143  */
144 void report_error(const char* text, const char* who, int err)
145 {
146   static time_t last_notice = 0;
147   int           errtmp = errno;   /* debug may change 'errno' */
148   const char*   errmsg = (err) ? strerror(err) : "";
149
150   if (!errmsg)
151     errmsg = "Unknown error"; 
152
153   if (EmptyString(who))
154     who = "unknown";
155
156   if (last_notice + 20 < CurrentTime) {
157     /*
158      * pace error messages so opers don't get flooded by transients
159      */
160     sendto_opmask_butone(0, SNO_OLDSNO, text, who, errmsg);
161     last_notice = CurrentTime;
162   }
163   log_write(LS_SOCKET, L_ERROR, 0, text, who, errmsg);
164   errno = errtmp;
165 }
166
167
168 /** Called when resolver query finishes.  If the DNS lookup was
169  * successful, start the connection; otherwise notify opers of the
170  * failure.
171  * @param vptr The struct ConfItem representing the Connect block.
172  * @param hp A pointer to the DNS lookup results (NULL on failure).
173  */
174 static void connect_dns_callback(void* vptr, struct DNSReply* hp)
175 {
176   struct ConfItem* aconf = (struct ConfItem*) vptr;
177   assert(aconf);
178   aconf->dns_pending = 0;
179   if (hp) {
180     memcpy(&aconf->address, &hp->addr, sizeof(aconf->address));
181     MyFree(hp);
182     connect_server(aconf, 0);
183   }
184   else
185     sendto_opmask_butone(0, SNO_OLDSNO, "Connect to %s failed: host lookup",
186                          aconf->name);
187 }
188
189 /** Closes all file descriptors.
190  * @param close_stderr If non-zero, also close stderr.
191  */
192 void close_connections(int close_stderr)
193 {
194   int i;
195   close(0);
196   close(1);
197   if (close_stderr)
198     close(2);
199   for (i = 3; i < MAXCONNECTIONS; ++i)
200     close(i);
201 }
202
203 /** Initialize process fd limit to MAXCONNECTIONS.
204  */
205 int init_connection_limits(void)
206 {
207   int limit = os_set_fdlimit(MAXCONNECTIONS);
208   if (0 == limit)
209     return 1;
210   if (limit < 0) {
211     fprintf(stderr, "error setting max fd's to %d\n", limit);
212   }
213   else if (limit > 0) {
214     fprintf(stderr, "ircd fd table too big\nHard Limit: %d IRC max: %d\n",
215             limit, MAXCONNECTIONS);
216     fprintf(stderr, "set MAXCONNECTIONS to a smaller value");
217   }
218   return 0;
219 }
220
221 /** Set up address and port and make a connection.
222  * @param aconf Provides the connection information.
223  * @param cptr Client structure for the peer.
224  * @return Non-zero on success; zero on failure.
225  */
226 static int connect_inet(struct ConfItem* aconf, struct Client* cptr)
227 {
228   const struct irc_sockaddr *local;
229   IOResult result;
230   assert(0 != aconf);
231   assert(0 != cptr);
232   /*
233    * Might as well get sockhost from here, the connection is attempted
234    * with it so if it fails its useless.
235    */
236   if (irc_in_addr_valid(&aconf->origin.addr))
237     local = &aconf->origin;
238   else
239     local = &VirtualHost;
240   cli_fd(cptr) = os_socket(local, SOCK_STREAM, cli_name(cptr));
241   if (cli_fd(cptr) < 0)
242     return 0;
243
244   /*
245    * save connection info in client
246    */
247   memcpy(&cli_ip(cptr), &aconf->address.addr, sizeof(cli_ip(cptr)));
248   ircd_ntoa_r(cli_sock_ip(cptr), &cli_ip(cptr));
249   /*
250    * we want a big buffer for server connections
251    */
252   if (!os_set_sockbufs(cli_fd(cptr), feature_int(FEAT_SOCKSENDBUF), feature_int(FEAT_SOCKRECVBUF))) {
253     cli_error(cptr) = errno;
254     report_error(SETBUFS_ERROR_MSG, cli_name(cptr), errno);
255     close(cli_fd(cptr));
256     cli_fd(cptr) = -1;
257     return 0;
258   }
259   if ((result = os_connect_nonb(cli_fd(cptr), &aconf->address)) == IO_FAILURE) {
260     cli_error(cptr) = errno;
261     report_error(CONNECT_ERROR_MSG, cli_name(cptr), errno);
262     close(cli_fd(cptr));
263     cli_fd(cptr) = -1;
264     return 0;
265   }
266   if (!socket_add(&(cli_socket(cptr)), client_sock_callback,
267                   (void*) cli_connect(cptr),
268                   (result == IO_SUCCESS) ? SS_CONNECTED : SS_CONNECTING,
269                   SOCK_EVENT_READABLE, cli_fd(cptr))) {
270     cli_error(cptr) = ENFILE;
271     report_error(REGISTER_ERROR_MSG, cli_name(cptr), ENFILE);
272     close(cli_fd(cptr));
273     cli_fd(cptr) = -1;
274     return 0;
275   }
276   cli_freeflag(cptr) |= FREEFLAG_SOCKET;
277   return 1;
278 }
279
280 /** Attempt to send a sequence of bytes to the connection.
281  * As a side effect, updates \a cptr's FLAG_BLOCKED setting
282  * and sendB/sendK fields.
283  * @param cptr Client that should receive data.
284  * @param buf Message buffer to send to client.
285  * @return Negative on connection-fatal error; otherwise
286  *  number of bytes sent.
287  */
288 unsigned int deliver_it(struct Client *cptr, struct MsgQ *buf)
289 {
290   unsigned int bytes_written = 0;
291   unsigned int bytes_count = 0;
292   assert(0 != cptr);
293
294   switch (os_sendv_nonb(cli_fd(cptr), buf, &bytes_count, &bytes_written)) {
295   case IO_SUCCESS:
296     ClrFlag(cptr, FLAG_BLOCKED);
297
298     cli_sendB(cptr) += bytes_written;
299     cli_sendB(&me)  += bytes_written;
300     /* A partial write implies that future writes will block. */
301     if (bytes_written < bytes_count)
302       SetFlag(cptr, FLAG_BLOCKED);
303     break;
304   case IO_BLOCKED:
305     SetFlag(cptr, FLAG_BLOCKED);
306     break;
307   case IO_FAILURE:
308     cli_error(cptr) = errno;
309     SetFlag(cptr, FLAG_DEADSOCKET);
310     break;
311   }
312   return bytes_written;
313 }
314
315 /** Free the client's DNS reply, if any.
316  * @param cptr Client to operate on.
317  */
318 void release_dns_reply(struct Client* cptr)
319 {
320   assert(0 != cptr);
321   assert(MyConnect(cptr));
322
323   if (cli_dns_reply(cptr)) {
324     MyFree(cli_dns_reply(cptr)->h_name);
325     MyFree(cli_dns_reply(cptr));
326     cli_dns_reply(cptr) = 0;
327   }
328 }
329
330 /** Complete non-blocking connect()-sequence. Check access and
331  * terminate connection, if trouble detected.
332  * @param cptr Client to which we have connected, with all Confitem structs attached.
333  * @return Zero on failure (caller should exit_client()), non-zero on success.
334  */
335 static int completed_connection(struct Client* cptr)
336 {
337   struct ConfItem *aconf;
338   time_t newts;
339   struct Client *acptr;
340   int i;
341
342   assert(0 != cptr);
343
344   /*
345    * get the socket status from the fd first to check if
346    * connection actually succeeded
347    */
348   if ((cli_error(cptr) = os_get_sockerr(cli_fd(cptr)))) {
349     const char* msg = strerror(cli_error(cptr));
350     if (!msg)
351       msg = "Unknown error";
352     sendto_opmask_butone(0, SNO_OLDSNO, "Connection failed to %s: %s",
353                          cli_name(cptr), msg);
354     return 0;
355   }
356   if (!(aconf = find_conf_byname(cli_confs(cptr), cli_name(cptr), CONF_SERVER))) {
357     sendto_opmask_butone(0, SNO_OLDSNO, "Lost Server Line for %s", cli_name(cptr));
358     return 0;
359   }
360   if (s_state(&(cli_socket(cptr))) == SS_CONNECTING)
361     socket_state(&(cli_socket(cptr)), SS_CONNECTED);
362
363   if (!EmptyString(aconf->passwd))
364     sendrawto_one(cptr, MSG_PASS " :%s", aconf->passwd);
365
366   /*
367    * Create a unique timestamp
368    */
369   newts = TStime();
370   for (i = HighestFd; i > -1; --i) {
371     if ((acptr = LocalClientArray[i]) && 
372         (IsServer(acptr) || IsHandshake(acptr))) {
373       if (cli_serv(acptr)->timestamp >= newts)
374         newts = cli_serv(acptr)->timestamp + 1;
375     }
376   }
377   assert(0 != cli_serv(cptr));
378
379   cli_serv(cptr)->timestamp = newts;
380   SetHandshake(cptr);
381   /*
382    * Make us timeout after twice the timeout for DNS look ups
383    */
384   cli_lasttime(cptr) = CurrentTime;
385   SetFlag(cptr, FLAG_PINGSENT);
386
387   sendrawto_one(cptr, MSG_SERVER " %s 1 %Tu %Tu J%s %s%s +%s6 :%s",
388                 cli_name(&me), cli_serv(&me)->timestamp, newts,
389                 MAJOR_PROTOCOL, NumServCap(&me),
390                 feature_bool(FEAT_HUB) ? "h" : "", cli_info(&me));
391
392   return (IsDead(cptr)) ? 0 : 1;
393 }
394
395 /** Close the physical connection.  Side effects: MyConnect(cptr)
396  * becomes false and cptr->from becomes NULL.
397  * @param cptr Client to disconnect.
398  */
399 void close_connection(struct Client *cptr)
400 {
401   struct ConfItem* aconf;
402
403   if (IsServer(cptr)) {
404     ServerStats->is_sv++;
405     ServerStats->is_sbs += cli_sendB(cptr);
406     ServerStats->is_sbr += cli_receiveB(cptr);
407     ServerStats->is_sti += CurrentTime - cli_firsttime(cptr);
408     /*
409      * If the connection has been up for a long amount of time, schedule
410      * a 'quick' reconnect, else reset the next-connect cycle.
411      */
412     if ((aconf = find_conf_exact(cli_name(cptr), cptr, CONF_SERVER))) {
413       /*
414        * Reschedule a faster reconnect, if this was a automaticly
415        * connected configuration entry. (Note that if we have had
416        * a rehash in between, the status has been changed to
417        * CONF_ILLEGAL). But only do this if it was a "good" link.
418        */
419       aconf->hold = CurrentTime;
420       aconf->hold += ((aconf->hold - cli_since(cptr) >
421                        feature_int(FEAT_HANGONGOODLINK)) ?
422                       feature_int(FEAT_HANGONRETRYDELAY) : ConfConFreq(aconf));
423 /*        if (nextconnect > aconf->hold) */
424 /*          nextconnect = aconf->hold; */
425     }
426   }
427   else if (IsUser(cptr)) {
428     ServerStats->is_cl++;
429     ServerStats->is_cbs += cli_sendB(cptr);
430     ServerStats->is_cbr += cli_receiveB(cptr);
431     ServerStats->is_cti += CurrentTime - cli_firsttime(cptr);
432   }
433   else
434     ServerStats->is_ni++;
435
436   if (-1 < cli_fd(cptr)) {
437     flush_connections(cptr);
438     LocalClientArray[cli_fd(cptr)] = 0;
439     close(cli_fd(cptr));
440     socket_del(&(cli_socket(cptr))); /* queue a socket delete */
441     cli_fd(cptr) = -1;
442   }
443   SetFlag(cptr, FLAG_DEADSOCKET);
444
445   MsgQClear(&(cli_sendQ(cptr)));
446   client_drop_sendq(cli_connect(cptr));
447   DBufClear(&(cli_recvQ(cptr)));
448   memset(cli_passwd(cptr), 0, sizeof(cli_passwd(cptr)));
449   set_snomask(cptr, 0, SNO_SET);
450
451   det_confs_butmask(cptr, 0);
452
453   if (cli_listener(cptr)) {
454     release_listener(cli_listener(cptr));
455     cli_listener(cptr) = 0;
456   }
457
458   for ( ; HighestFd > 0; --HighestFd) {
459     if (LocalClientArray[HighestFd])
460       break;
461   }
462 }
463
464 /** Close all unregistered connections.
465  * @param source Oper who requested the close.
466  * @return Number of closed connections.
467  */
468 int net_close_unregistered_connections(struct Client* source)
469 {
470   int            i;
471   struct Client* cptr;
472   int            count = 0;
473   assert(0 != source);
474
475   for (i = HighestFd; i > 0; --i) {
476     if ((cptr = LocalClientArray[i]) && !IsRegistered(cptr)) {
477       send_reply(source, RPL_CLOSING, get_client_name(source, HIDE_IP));
478       exit_client(source, cptr, &me, "Oper Closing");
479       ++count;
480     }
481   }
482   return count;
483 }
484
485 /** Creates a client which has just connected to us on the given fd.
486  * The sockhost field is initialized with the ip# of the host.
487  * The client is not added to the linked list of clients, it is
488  * passed off to the auth handler for dns and ident queries.
489  * @param listener Listening socket that received the connection.
490  * @param fd File descriptor of new connection.
491  */
492 void add_connection(struct Listener* listener, int fd) {
493   struct irc_sockaddr addr;
494   struct Client      *new_client;
495   time_t             next_target = 0;
496
497   const char* const throttle_message =
498          "ERROR :Your host is trying to (re)connect too fast -- throttled\r\n";
499        /* 12345678901234567890123456789012345679012345678901234567890123456 */
500   const char* const register_message =
501          "ERROR :Unable to complete your registration\r\n";
502
503   assert(0 != listener);
504
505   /*
506    * Removed preliminary access check. Full check is performed in m_server and
507    * m_user instead. Also connection time out help to get rid of unwanted
508    * connections.
509    */
510   if (!os_get_peername(fd, &addr) || !os_set_nonblocking(fd)) {
511     ++ServerStats->is_ref;
512     close(fd);
513     return;
514   }
515   /*
516    * Disable IP (*not* TCP) options.  In particular, this makes it impossible
517    * to use source routing to connect to the server.  If we didn't do this
518    * (and if intermediate networks didn't drop source-routed packets), an
519    * attacker could successfully IP spoof us...and even return the anti-spoof
520    * ping, because the options would cause the packet to be routed back to
521    * the spoofer's machine.  When we disable the IP options, we delete the
522    * source route, and the normal routing takes over.
523    */
524   os_disable_options(fd);
525
526   /*
527    * Add this local client to the IPcheck registry.
528    *
529    * If they're throttled, murder them, but tell them why first.
530    */
531   if (!IPcheck_local_connect(&addr.addr, &next_target) && !listener->server)
532   {
533     ++ServerStats->is_ref;
534     write(fd, throttle_message, strlen(throttle_message));
535     close(fd);
536     return;
537   }
538
539   new_client = make_client(0, ((listener->server) ?
540                                STAT_UNKNOWN_SERVER : STAT_UNKNOWN_USER));
541
542   /*
543    * Copy ascii address to 'sockhost' just in case. Then we have something
544    * valid to put into error messages...
545    */
546   SetIPChecked(new_client);
547   ircd_ntoa_r(cli_sock_ip(new_client), &addr.addr);
548   strcpy(cli_sockhost(new_client), cli_sock_ip(new_client));
549   memcpy(&cli_ip(new_client), &addr.addr, sizeof(cli_ip(new_client)));
550
551   if (next_target)
552     cli_nexttarget(new_client) = next_target;
553
554   cli_fd(new_client) = fd;
555   if (!socket_add(&(cli_socket(new_client)), client_sock_callback,
556                   (void*) cli_connect(new_client), SS_CONNECTED, 0, fd)) {
557     ++ServerStats->is_ref;
558     write(fd, register_message, strlen(register_message));
559     close(fd);
560     cli_fd(new_client) = -1;
561     return;
562   }
563   cli_freeflag(new_client) |= FREEFLAG_SOCKET;
564   cli_listener(new_client) = listener;
565   ++listener->ref_count;
566
567   Count_newunknown(UserStats);
568   /* if we've made it this far we can put the client on the auth query pile */
569   start_auth(new_client);
570 }
571
572 /** Determines whether to tell the events engine we're interested in
573  * writable events.
574  * @param cptr Client for which to decide this.
575  */
576 void update_write(struct Client* cptr)
577 {
578   /* If there are messages that need to be sent along, or if the client
579    * is in the middle of a /list, then we need to tell the engine that
580    * we're interested in writable events--otherwise, we need to drop
581    * that interest.
582    */
583   socket_events(&(cli_socket(cptr)),
584                 ((MsgQLength(&cli_sendQ(cptr)) || cli_listing(cptr)) ?
585                  SOCK_ACTION_ADD : SOCK_ACTION_DEL) | SOCK_EVENT_WRITABLE);
586 }
587
588 /** Read a 'packet' of data from a connection and process it.  Read in
589  * 8k chunks to give a better performance rating (for server
590  * connections).  Do some tricky stuff for client connections to make
591  * sure they don't do any flooding >:-) -avalon
592  * @param cptr Client from which to read data.
593  * @param socket_ready If non-zero, more data can be read from the client's socket.
594  * @return Positive number on success, zero on connection-fatal failure, negative
595  *   if user is killed.
596  */
597 static int read_packet(struct Client *cptr, int socket_ready)
598 {
599   unsigned int dolen = 0;
600   unsigned int length = 0;
601
602   if (socket_ready &&
603       !(IsUser(cptr) &&
604         DBufLength(&(cli_recvQ(cptr))) > feature_int(FEAT_CLIENT_FLOOD))) {
605     switch (os_recv_nonb(cli_fd(cptr), readbuf, sizeof(readbuf), &length)) {
606     case IO_SUCCESS:
607       if (length)
608       {
609         if (!IsServer(cptr))
610           cli_lasttime(cptr) = CurrentTime;
611         if (cli_lasttime(cptr) > cli_since(cptr))
612           cli_since(cptr) = cli_lasttime(cptr);
613         ClrFlag(cptr, FLAG_PINGSENT);
614         ClrFlag(cptr, FLAG_NONL);
615       }
616       break;
617     case IO_BLOCKED:
618       break;
619     case IO_FAILURE:
620       cli_error(cptr) = errno;
621       /* SetFlag(cpt, FLAG_DEADSOCKET); */
622       return 0;
623     }
624   }
625
626   /*
627    * For server connections, we process as many as we can without
628    * worrying about the time of day or anything :)
629    */
630   if (length > 0 && IsServer(cptr))
631     return server_dopacket(cptr, readbuf, length);
632   else if (length > 0 && (IsHandshake(cptr) || IsConnecting(cptr)))
633     return connect_dopacket(cptr, readbuf, length);
634   else
635   {
636     /*
637      * Before we even think of parsing what we just read, stick
638      * it on the end of the receive queue and do it when its
639      * turn comes around.
640      */
641     if (length > 0 && dbuf_put(&(cli_recvQ(cptr)), readbuf, length) == 0)
642       return exit_client(cptr, cptr, &me, "dbuf_put fail");
643
644     if (DBufLength(&(cli_recvQ(cptr))) > feature_int(FEAT_CLIENT_FLOOD))
645       return exit_client(cptr, cptr, &me, "Excess Flood");
646
647     while (DBufLength(&(cli_recvQ(cptr))) && !NoNewLine(cptr) && 
648            (IsTrusted(cptr) || cli_since(cptr) - CurrentTime < 10))
649     {
650       dolen = dbuf_getmsg(&(cli_recvQ(cptr)), cli_buffer(cptr), BUFSIZE);
651       /*
652        * Devious looking...whats it do ? well..if a client
653        * sends a *long* message without any CR or LF, then
654        * dbuf_getmsg fails and we pull it out using this
655        * loop which just gets the next 512 bytes and then
656        * deletes the rest of the buffer contents.
657        * -avalon
658        */
659       if (dolen == 0)
660       {
661         if (DBufLength(&(cli_recvQ(cptr))) < 510)
662           SetFlag(cptr, FLAG_NONL);
663         else
664           DBufClear(&(cli_recvQ(cptr)));
665       }
666       else if (client_dopacket(cptr, dolen) == CPTR_KILLED)
667         return CPTR_KILLED;
668       /*
669        * If it has become registered as a Server
670        * then skip the per-message parsing below.
671        */
672       if (IsHandshake(cptr) || IsServer(cptr))
673       {
674         while (-1)
675         {
676           dolen = dbuf_get(&(cli_recvQ(cptr)), readbuf, sizeof(readbuf));
677           if (dolen <= 0)
678             return 1;
679           else if (dolen == 0)
680           {
681             if (DBufLength(&(cli_recvQ(cptr))) < 510)
682               SetFlag(cptr, FLAG_NONL);
683             else
684               DBufClear(&(cli_recvQ(cptr)));
685           }
686           else if ((IsServer(cptr) &&
687                     server_dopacket(cptr, readbuf, dolen) == CPTR_KILLED) ||
688                    (!IsServer(cptr) &&
689                     connect_dopacket(cptr, readbuf, dolen) == CPTR_KILLED))
690             return CPTR_KILLED;
691         }
692       }
693     }
694
695     /* If there's still data to process, wait 2 seconds first */
696     if (DBufLength(&(cli_recvQ(cptr))) && !NoNewLine(cptr) &&
697         !t_onqueue(&(cli_proc(cptr))))
698     {
699       Debug((DEBUG_LIST, "Adding client process timer for %C", cptr));
700       cli_freeflag(cptr) |= FREEFLAG_TIMER;
701       timer_add(&(cli_proc(cptr)), client_timer_callback, cli_connect(cptr),
702                 TT_RELATIVE, 2);
703     }
704   }
705   return 1;
706 }
707
708 /** Start a connection to another server.
709  * @param aconf Connect block data for target server.
710  * @param by Client who requested the connection (if any).
711  * @return Non-zero on success; zero on failure.
712  */
713 int connect_server(struct ConfItem* aconf, struct Client* by)
714 {
715   struct Client*   cptr = 0;
716   assert(0 != aconf);
717
718   if (aconf->dns_pending) {
719     sendto_opmask_butone(0, SNO_OLDSNO, "Server %s connect DNS pending",
720                          aconf->name);
721     return 0;
722   }
723   Debug((DEBUG_NOTICE, "Connect to %s[@%s]", aconf->name,
724          ircd_ntoa(&aconf->address.addr)));
725
726   if ((cptr = FindClient(aconf->name))) {
727     if (IsServer(cptr) || IsMe(cptr)) {
728       sendto_opmask_butone(0, SNO_OLDSNO, "Server %s already present from %s", 
729                            aconf->name, cli_name(cli_from(cptr)));
730       if (by && IsUser(by) && !MyUser(by)) {
731         sendcmdto_one(&me, CMD_NOTICE, by, "%C :Server %s already present "
732                       "from %s", by, aconf->name, cli_name(cli_from(cptr)));
733       }
734       return 0;
735     }
736     else if (IsHandshake(cptr) || IsConnecting(cptr)) {
737       if (by && IsUser(by)) {
738         sendcmdto_one(&me, CMD_NOTICE, by, "%C :Connection to %s already in "
739                       "progress", by, cli_name(cptr));
740       }
741       return 0;
742     }
743   }
744   /*
745    * If we dont know the IP# for this host and it is a hostname and
746    * not a ip# string, then try and find the appropriate host record.
747    */
748   if (!irc_in_addr_valid(&aconf->address.addr)
749       && !ircd_aton(&aconf->address.addr, aconf->host)) {
750     char buf[HOSTLEN + 1];
751     struct DNSQuery  query;
752
753     query.vptr     = aconf;
754     query.callback = connect_dns_callback;
755     host_from_uh(buf, aconf->host, HOSTLEN);
756     buf[HOSTLEN] = '\0';
757
758     gethost_byname(buf, &query);
759     aconf->dns_pending = 1;
760     return 0;
761   }
762   cptr = make_client(NULL, STAT_UNKNOWN_SERVER);
763
764   /*
765    * Copy these in so we have something for error detection.
766    */
767   ircd_strncpy(cli_name(cptr), aconf->name, HOSTLEN);
768   ircd_strncpy(cli_sockhost(cptr), aconf->host, HOSTLEN);
769
770   /*
771    * Attach config entries to client here rather than in
772    * completed_connection. This to avoid null pointer references
773    */
774   attach_confs_byhost(cptr, aconf->host, CONF_SERVER);
775
776   if (!find_conf_byhost(cli_confs(cptr), aconf->host, CONF_SERVER)) {
777     sendto_opmask_butone(0, SNO_OLDSNO, "Host %s is not enabled for "
778                          "connecting: no C-line", aconf->name);
779     if (by && IsUser(by) && !MyUser(by)) {
780       sendcmdto_one(&me, CMD_NOTICE, by, "%C :Connect to host %s failed: no "
781                     "C-line", by, aconf->name);
782     }
783     det_confs_butmask(cptr, 0);
784     free_client(cptr);
785     return 0;
786   }
787   /*
788    * attempt to connect to the server in the conf line
789    */
790   if (!connect_inet(aconf, cptr)) {
791     if (by && IsUser(by) && !MyUser(by)) {
792       sendcmdto_one(&me, CMD_NOTICE, by, "%C :Couldn't connect to %s", by,
793                     cli_name(cptr));
794     }
795     det_confs_butmask(cptr, 0);
796     free_client(cptr);
797     return 0;
798   }
799   /*
800    * NOTE: if we're here we have a valid C:Line and the client should
801    * have started the connection and stored the remote address/port and
802    * ip address name in itself
803    *
804    * The socket has been connected or connect is in progress.
805    */
806   make_server(cptr);
807   if (by && IsUser(by)) {
808     ircd_snprintf(0, cli_serv(cptr)->by, sizeof(cli_serv(cptr)->by), "%s%s",
809                   NumNick(by));
810     assert(0 == cli_serv(cptr)->user);
811     cli_serv(cptr)->user = cli_user(by);
812     cli_user(by)->refcnt++;
813   }
814   else {
815     *(cli_serv(cptr))->by = '\0';
816     /* strcpy(cptr->serv->by, "Auto"); */
817   }
818   cli_serv(cptr)->up = &me;
819   SetConnecting(cptr);
820
821   if (cli_fd(cptr) > HighestFd)
822     HighestFd = cli_fd(cptr);
823
824   LocalClientArray[cli_fd(cptr)] = cptr;
825
826   Count_newunknown(UserStats);
827   /* Actually we lie, the connect hasn't succeeded yet, but we have a valid
828    * cptr, so we register it now.
829    * Maybe these two calls should be merged.
830    */
831   add_client_to_list(cptr);
832   hAddClient(cptr);
833 /*    nextping = CurrentTime; */
834
835   return (s_state(&cli_socket(cptr)) == SS_CONNECTED) ?
836     completed_connection(cptr) : 1;
837 }
838
839 /** Find the real hostname for the host running the server (or one which
840  * matches the server's name) and its primary IP#.  Hostname is stored
841  * in the client structure passed as a pointer.
842  */
843 void init_server_identity(void)
844 {
845   const struct LocalConf* conf = conf_get_local();
846   assert(0 != conf);
847
848   ircd_strncpy(cli_name(&me), conf->name, HOSTLEN);
849   SetYXXServerName(&me, conf->numeric);
850 }
851
852 /** Process events on a client socket.
853  * @param ev Socket event structure that has a struct Connection as
854  *   its associated data.
855  */
856 static void client_sock_callback(struct Event* ev)
857 {
858   struct Client* cptr;
859   struct Connection* con;
860   char *fmt = "%s";
861   char *fallback = 0;
862
863   assert(0 != ev_socket(ev));
864   assert(0 != s_data(ev_socket(ev)));
865
866   con = (struct Connection*) s_data(ev_socket(ev));
867
868   assert(0 != con_client(con) || ev_type(ev) == ET_DESTROY);
869
870   cptr = con_client(con);
871
872   assert(0 == cptr || con == cli_connect(cptr));
873
874   switch (ev_type(ev)) {
875   case ET_DESTROY:
876     con_freeflag(con) &= ~FREEFLAG_SOCKET;
877
878     if (!con_freeflag(con) && !cptr)
879       free_connection(con);
880     break;
881
882   case ET_CONNECT: /* socket connection completed */
883     if (!completed_connection(cptr) || IsDead(cptr))
884       fallback = cli_info(cptr);
885     break;
886
887   case ET_ERROR: /* an error occurred */
888     fallback = cli_info(cptr);
889     cli_error(cptr) = ev_data(ev);
890     if (s_state(&(con_socket(con))) == SS_CONNECTING) {
891       completed_connection(cptr);
892       break;
893     }
894     /*FALLTHROUGH*/
895   case ET_EOF: /* end of file on socket */
896     Debug((DEBUG_ERROR, "READ ERROR: fd = %d %d", cli_fd(cptr),
897            cli_error(cptr)));
898     SetFlag(cptr, FLAG_DEADSOCKET);
899     if ((IsServer(cptr) || IsHandshake(cptr)) && cli_error(cptr) == 0) {
900       exit_client_msg(cptr, cptr, &me, "Server %s closed the connection (%s)",
901                       cli_name(cptr), cli_serv(cptr)->last_error_msg);
902       return;
903     } else {
904       fmt = "Read error: %s";
905       fallback = "EOF from client";
906     }
907     break;
908
909   case ET_WRITE: /* socket is writable */
910     ClrFlag(cptr, FLAG_BLOCKED);
911     if (cli_listing(cptr) && MsgQLength(&(cli_sendQ(cptr))) < 2048)
912       list_next_channels(cptr);
913     Debug((DEBUG_SEND, "Sending queued data to %C", cptr));
914     send_queued(cptr);
915     break;
916
917   case ET_READ: /* socket is readable */
918     if (!IsDead(cptr)) {
919       Debug((DEBUG_DEBUG, "Reading data from %C", cptr));
920       if (read_packet(cptr, 1) == 0) /* error while reading packet */
921         fallback = "EOF from client";
922     }
923     break;
924
925   default:
926     assert(0 && "Unrecognized socket event in client_sock_callback()");
927     break;
928   }
929
930   assert(0 == cptr || 0 == cli_connect(cptr) || con == cli_connect(cptr));
931
932   if (fallback) {
933     const char* msg = (cli_error(cptr)) ? strerror(cli_error(cptr)) : fallback;
934     if (!msg)
935       msg = "Unknown error";
936     exit_client_msg(cptr, cptr, &me, fmt, msg);
937   }
938 }
939
940 /** Process a timer on client socket.
941  * @param ev Timer event that has a struct Connection as its
942  * associated data.
943  */
944 static void client_timer_callback(struct Event* ev)
945 {
946   struct Client* cptr;
947   struct Connection* con;
948
949   assert(0 != ev_timer(ev));
950   assert(0 != t_data(ev_timer(ev)));
951   assert(ET_DESTROY == ev_type(ev) || ET_EXPIRE == ev_type(ev));
952
953   con = (struct Connection*) t_data(ev_timer(ev));
954
955   assert(0 != con_client(con) || ev_type(ev) == ET_DESTROY);
956
957   cptr = con_client(con);
958
959   assert(0 == cptr || con == cli_connect(cptr));
960
961   if (ev_type(ev)== ET_DESTROY) {
962     con_freeflag(con) &= ~FREEFLAG_TIMER; /* timer has expired... */
963
964     if (!con_freeflag(con) && !cptr)
965       free_connection(con); /* client is being destroyed */
966   } else {
967     Debug((DEBUG_LIST, "Client process timer for %C expired; processing",
968            cptr));
969     read_packet(cptr, 0); /* read_packet will re-add timer if needed */
970   }
971
972   assert(0 == cptr || 0 == cli_connect(cptr) || con == cli_connect(cptr));
973 }