Improve support for IPv4 vs IPv6 virtual hosts (fixes SF bugs #1087699, #1087668).
[ircu2.10.12-pk.git] / ircd / ircd_auth.c
1 /*
2  * IRC - Internet Relay Chat, ircd/ircd_auth.c
3  * Copyright 2004 Michael Poole <mdpoole@troilus.org>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2, or (at your option)
8  * any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18  * 02111-1307, USA.
19  */
20 /** @file
21  * @brief IAuth client implementation for an IRC server.
22  * @version $Id$
23  */
24
25 #include "config.h"
26 #include "client.h"
27 #include "ircd_alloc.h"
28 #include "ircd_auth.h"
29 #include "ircd_events.h"
30 #include "ircd_features.h"
31 #include "ircd_log.h"
32 #include "ircd_osdep.h"
33 #include "ircd_snprintf.h"
34 #include "ircd_string.h"
35 #include "ircd.h"
36 #include "msg.h"
37 #include "msgq.h"
38 #include "res.h"
39 #include "s_bsd.h"
40 #include "s_debug.h"
41 #include "s_misc.h"
42 #include "s_user.h"
43 #include "send.h"
44
45 /* #include <assert.h> -- Now using assert in ircd_log.h */
46 #include <errno.h>
47 #include <netdb.h>
48 #include <string.h>
49 #include <unistd.h>
50 #include <sys/socket.h>
51 #include <netinet/in.h>
52 #ifdef HAVE_STDINT_H
53 #include <stdint.h>
54 #endif
55
56 /** Describes state of a single pending IAuth request. */
57 struct IAuthRequest {
58   struct IAuthRequest *iar_prev;        /**< previous request struct */
59   struct IAuthRequest *iar_next;        /**< next request struct */
60   struct Client *iar_client;            /**< client being authenticated */
61   char iar_timed;                       /**< if non-zero, using parent i_request_timer */
62 };
63
64 /** Enumeration of IAuth connection flags. */
65 enum IAuthFlag
66 {
67   IAUTH_BLOCKED,                        /**< socket buffer full */
68   IAUTH_CONNECTED,                      /**< server greeting/handshake done */
69   IAUTH_ABORT,                          /**< abort connection asap */
70   IAUTH_ICLASS,                         /**< tell iauth about all local users */
71   IAUTH_CLOSING,                        /**< candidate to be disposed */
72   IAUTH_LAST_FLAG                       /**< total number of flags */
73 };
74 /** Declare a bitset structure indexed by IAuthFlag. */
75 DECLARE_FLAGSET(IAuthFlags, IAUTH_LAST_FLAG);
76
77 /** Describes state of an IAuth connection. */
78 struct IAuth {
79   struct IAuthRequest i_list_head;      /**< doubly linked list of requests */
80   struct MsgQ i_sendQ;                  /**< messages queued to send */
81   struct Socket i_socket;               /**< connection to server */
82   struct Timer i_reconn_timer;          /**< when to reconnect the connection */
83   struct Timer i_request_timer;         /**< when the current request times out */
84   struct IAuthFlags i_flags;            /**< connection state/status/flags */
85   struct DNSQuery i_query;              /**< DNS lookup for iauth server */
86   unsigned int i_recvM;                 /**< messages received */
87   unsigned int i_sendM;                 /**< messages sent */
88   unsigned int i_recvK;                 /**< kilobytes received */
89   unsigned int i_sendK;                 /**< kilobytes sent */
90   unsigned short i_recvB;               /**< bytes received modulo 1024 */
91   unsigned short i_sendB;               /**< bytes sent modulo 1024 */
92   time_t i_reconnect;                   /**< seconds to wait before reconnecting */
93   time_t i_timeout;                     /**< seconds to wait for a request */
94   unsigned int i_count;                 /**< characters used in i_buffer */
95   char i_buffer[BUFSIZE+1];             /**< partial unprocessed line from server */
96   char i_passwd[PASSWDLEN+1];           /**< password for connection */
97   char i_host[HOSTLEN+1];               /**< iauth server hostname */
98   struct irc_sockaddr i_addr;           /**< iauth server ip address and port */
99   struct IAuth *i_next;                 /**< next connection in list */
100 };
101
102 /** Return flags element of \a iauth. */
103 #define i_flags(iauth) ((iauth)->i_flags)
104 /** Return whether flag \a flag is set on \a iauth. */
105 #define IAuthGet(iauth, flag) FlagHas(&i_flags(iauth), flag)
106 /** Set flag \a flag on \a iauth. */
107 #define IAuthSet(iauth, flag) FlagSet(&i_flags(iauth), flag)
108 /** Clear flag \a flag from \a iauth. */
109 #define IAuthClr(iauth, flag) FlagClr(&i_flags(iauth), flag)
110 /** Get blocked state for \a iauth. */
111 #define i_GetBlocked(iauth) IAuthGet(iauth, IAUTH_BLOCKED)
112 /** Set blocked state for \a iauth. */
113 #define i_SetBlocked(iauth) IAuthSet(iauth, IAUTH_BLOCKED)
114 /** Clear blocked state for \a iauth. */
115 #define i_ClrBlocked(iauth) IAuthClr(iauth, IAUTH_BLOCKED)
116 /** Get connected flag for \a iauth. */
117 #define i_GetConnected(iauth) IAuthGet(iauth, IAUTH_CONNECTED)
118 /** Set connected flag for \a iauth. */
119 #define i_SetConnected(iauth) IAuthSet(iauth, IAUTH_CONNECTED)
120 /** Clear connected flag for \a iauth. */
121 #define i_ClrConnected(iauth) IAuthClr(iauth, IAUTH_CONNECTED)
122 /** Get abort flag for \a iauth. */
123 #define i_GetAbort(iauth) IAuthGet(iauth, IAUTH_ABORT)
124 /** Set abort flag for \a iauth. */
125 #define i_SetAbort(iauth) IAuthSet(iauth, IAUTH_ABORT)
126 /** Clear abort flag for \a iauth. */
127 #define i_ClrAbort(iauth) IAuthClr(iauth, IAUTH_ABORT)
128 /** Get IClass flag for \a iauth. */
129 #define i_GetIClass(iauth) IAuthGet(iauth, IAUTH_ICLASS)
130 /** Set IClass flag for \a iauth. */
131 #define i_SetIClass(iauth) IAuthSet(iauth, IAUTH_ICLASS)
132 /** Clear IClass flag for \a iauth. */
133 #define i_ClrIClass(iauth) IAuthClr(iauth, IAUTH_ICLASS)
134 /** Get closing flag for \a iauth. */
135 #define i_GetClosing(iauth) IAuthGet(iauth, IAUTH_CLOSING)
136 /** Set closing flag for \a iauth. */
137 #define i_SetClosing(iauth) IAuthSet(iauth, IAUTH_CLOSING)
138 /** Clear closing flag for \a iauth. */
139 #define i_ClrClosing(iauth) IAuthClr(iauth, IAUTH_CLOSING)
140
141 /** Return head of request linked list for \a iauth. */
142 #define i_list_head(iauth) ((iauth)->i_list_head)
143 /** Return socket event generator for \a iauth. */
144 #define i_socket(iauth) ((iauth)->i_socket)
145 /** Return reconnect timer for \a iauth. */
146 #define i_reconn_timer(iauth) ((iauth)->i_reconn_timer)
147 /** Return request timeout timer for \a iauth. */
148 #define i_request_timer(iauth) ((iauth)->i_request_timer)
149 /** Return DNS query for \a iauth. */
150 #define i_query(iauth) ((iauth)->i_query)
151 /** Return received bytes (modulo 1024) for \a iauth. */
152 #define i_recvB(iauth) ((iauth)->i_recvB)
153 /** Return received kilobytes (modulo 1024) for \a iauth. */
154 #define i_recvK(iauth) ((iauth)->i_recvK)
155 /** Return received megabytes for \a iauth. */
156 #define i_recvM(iauth) ((iauth)->i_recvM)
157 /** Return sent bytes (modulo 1024) for \a iauth. */
158 #define i_sendB(iauth) ((iauth)->i_sendB)
159 /** Return sent kilobytes (modulo 1024) for \a iauth. */
160 #define i_sendK(iauth) ((iauth)->i_sendK)
161 /** Return sent megabytes for \a iauth. */
162 #define i_sendM(iauth) ((iauth)->i_sendM)
163 /** Return outbound message queue for \a iauth. */
164 #define i_sendQ(iauth) ((iauth)->i_sendQ)
165 /** Return reconnection interval for \a iauth. */
166 #define i_reconnect(iauth) ((iauth)->i_reconnect)
167 /** Return request timeout interval for \a iauth. */
168 #define i_timeout(iauth) ((iauth)->i_timeout)
169 /** Return length of unprocessed message data for \a iauth. */
170 #define i_count(iauth) ((iauth)->i_count)
171 /** Return start of unprocessed message data for \a iauth. */
172 #define i_buffer(iauth) ((iauth)->i_buffer)
173 /** Return password we send for \a iauth. */
174 #define i_passwd(iauth) ((iauth)->i_passwd)
175 /** Return server hostname for \a iauth. */
176 #define i_host(iauth) ((iauth)->i_host)
177 /** Return address of IAuth server for \a iauth. */
178 #define i_addr(iauth) ((iauth)->i_addr)
179 /** Return server port for \a iauth. */
180 #define i_port(iauth) ((iauth)->i_addr.port)
181 /** Return next IAuth connection after \a iauth. */
182 #define i_next(iauth) ((iauth)->i_next)
183
184 /** Command table entry. */
185 struct IAuthCmd {
186   const char *iac_name; /**< Name of command. */
187   void (*iac_func)(struct IAuth *iauth, int, char *[]); /**< Handler function. */
188 };
189
190 /** Active %IAuth connection(s). */
191 struct IAuth *iauth_active;
192
193 static void iauth_write(struct IAuth *iauth);
194 static void iauth_reconnect(struct IAuth *iauth);
195 static void iauth_disconnect(struct IAuth *iauth);
196 static void iauth_sock_callback(struct Event *ev);
197 static void iauth_send_request(struct IAuth *iauth, struct IAuthRequest *iar);
198 static void iauth_dispose_request(struct IAuth *iauth, struct IAuthRequest *iar);
199 static void iauth_cmd_doneauth(struct IAuth *iauth, int argc, char *argv[]);
200 static void iauth_cmd_badauth(struct IAuth *iauth, int argc, char *argv[]);
201
202 /** Table of responses we might get from the IAuth server. */
203 static const struct IAuthCmd iauth_cmdtab[] = {
204   { "DoneAuth", iauth_cmd_doneauth },
205   { "BadAuth", iauth_cmd_badauth },
206   { NULL, NULL }
207 };
208
209 /** Start (or update) a connection to an %IAuth server.
210  * If a connection already exists for the specified server name and
211  * port, update it with the other parameters; otherwise allocate a new
212  * IAuth record.
213  * @param[in] host %IAuth server hostname.
214  * @param[in] port %IAuth server port.
215  * @param[in] passwd Password to send.
216  * @param[in] reconnect Reconnect interval.
217  * @param[in] timeout Request timeout interval.
218  * @return IAuth structure for that connection.
219  */
220 struct IAuth *iauth_connect(char *host, unsigned short port, char *passwd, time_t reconnect, time_t timeout)
221 {
222   struct IAuth *iauth;
223
224   for (iauth = iauth_active; iauth; iauth = i_next(iauth)) {
225     if (!ircd_strncmp(i_host(iauth), host, HOSTLEN)
226         && (i_port(iauth) == port)) {
227       i_ClrClosing(iauth);
228       i_reconnect(iauth) = reconnect;
229       if (t_active(&i_reconn_timer(iauth)) && (t_expire(&i_reconn_timer(iauth)) > CurrentTime + i_reconnect(iauth)))
230         timer_chg(&i_reconn_timer(iauth), TT_RELATIVE, i_reconnect(iauth));
231       break;
232     }
233   }
234   if (NULL == iauth) {
235     if (iauth_active && !i_GetClosing(iauth_active)) {
236       log_write(LS_CONFIG, L_WARNING, 0, "Creating extra active IAuth connection to %s:%d.", host, port);
237     }
238     iauth = MyCalloc(1, sizeof(*iauth));
239     i_list_head(iauth).iar_prev = &i_list_head(iauth);
240     i_list_head(iauth).iar_next = &i_list_head(iauth);
241     msgq_init(&i_sendQ(iauth));
242     ircd_strncpy(i_host(iauth), host, HOSTLEN);
243     memset(&i_addr(iauth), 0, sizeof(i_addr(iauth)));
244     i_port(iauth) = port;
245     iauth_active = iauth;
246     i_reconnect(iauth) = reconnect;
247     iauth_reconnect(iauth);
248   }
249   if (passwd)
250     ircd_strncpy(i_passwd(iauth), passwd, PASSWDLEN);
251   else
252     i_passwd(iauth)[0] = '\0';
253   i_timeout(iauth) = timeout;
254   i_SetIClass(iauth);
255   return iauth;
256 }
257
258 /** Mark all %IAuth connections as closing. */
259 void iauth_mark_closing(void)
260 {
261   struct IAuth *iauth;
262   for (iauth = iauth_active; iauth; iauth = i_next(iauth))
263     i_SetClosing(iauth);
264 }
265
266 /** Close a particular %IAuth connection.
267  * @param[in] iauth %Connection to close.
268  */
269 void iauth_close(struct IAuth *iauth)
270 {
271   /* Figure out what to do with the closing connection's requests. */
272   if (i_list_head(iauth).iar_next != &i_list_head(iauth)) {
273     struct IAuthRequest *iar;
274     if (iauth_active || i_next(iauth)) {
275       /* If iauth_active != NULL, send requests to it; otherwise if
276        * i_next(iauth) != NULL, we can hope it or some later
277        * connection will be active.
278        */
279       struct IAuth *target = iauth_active ? iauth_active : i_next(iauth);
280
281       /* Append iauth->i_list_head to end of target->i_list_head. */
282       iar = i_list_head(iauth).iar_next;
283       iar->iar_prev = i_list_head(target).iar_prev;
284       i_list_head(target).iar_prev->iar_next = iar;
285       iar = i_list_head(iauth).iar_prev;
286       iar->iar_next = &i_list_head(target);
287       i_list_head(target).iar_prev = iar;
288
289       /* If the target is not closing, send the requests. */
290       for (iar = i_list_head(iauth).iar_next;
291            iar != &i_list_head(target);
292            iar = iar->iar_next) {
293         if (!i_GetClosing(target))
294           iauth_send_request(target, iar);
295       }
296     } else {
297       /* No active connections - approve the requests and drop them. */
298       while ((iar = i_list_head(iauth).iar_next) != &i_list_head(iauth)) {
299         struct Client *client = iar->iar_client;
300         iauth_dispose_request(iauth, iar);
301         register_user(client, client, cli_name(client), cli_username(client));
302       }
303     }
304   }
305   /* Make sure the connection closes with an empty request list. */
306   i_list_head(iauth).iar_prev = &i_list_head(iauth);
307   i_list_head(iauth).iar_next = &i_list_head(iauth);
308   /* Cancel the timer, if it is active. */
309   if (t_active(&i_reconn_timer(iauth)))
310     timer_del(&i_reconn_timer(iauth));
311   if (t_active(&i_request_timer(iauth)))
312     timer_del(&i_request_timer(iauth));
313   /* Disconnect from the server. */
314   if (s_fd(&i_socket(iauth)) != -1)
315     iauth_disconnect(iauth);
316   /* Free memory. */
317   MyFree(iauth);
318 }
319
320 /** Close all %IAuth connections marked as closing. */
321 void iauth_close_unused(void)
322 {
323   struct IAuth *prev, *iauth, *next;
324
325   for (prev = NULL, iauth = iauth_active; iauth; iauth = next) {
326     next = i_next(iauth);
327     if (i_GetClosing(iauth)) {
328       /* Update iauth_active linked list. */
329       if (prev)
330         i_next(prev) = next;
331       else
332         iauth_active = next;
333       /* Close and destroy the connection. */
334       iauth_close(iauth);
335     } else {
336       prev = iauth;
337     }
338   }
339 }
340
341 /** Send a line to an %IAuth server.
342  * @param[in] iauth %Connection to send on.
343  * @param[in] format Format string for message.
344  */
345 static void iauth_send(struct IAuth *iauth, const char *format, ...)
346 {
347   va_list vl;
348   struct MsgBuf *mb;
349
350   va_start(vl, format);
351   mb = msgq_vmake(0, format, vl);
352   va_end(vl);
353   msgq_add(&i_sendQ(iauth), mb, 0);
354   msgq_clean(mb);
355 }
356
357 /** Report a protocol violation from the %IAuth server.
358  * @param[in] iauth %Connection that experienced the violation.
359  * @param[in] format Format string for message to operators.
360  */
361 static void iauth_protocol_violation(struct IAuth *iauth, const char *format, ...)
362 {
363   struct VarData vd;
364   assert(iauth != 0);
365   assert(format != 0);
366   vd.vd_format = format;
367   va_start(vd.vd_args, format);
368   sendwallto_group_butone(&me, WALL_DESYNCH, NULL, "IAuth protocol violation: %v", &vd);
369   va_end(vd.vd_args);
370 }
371
372 /** Send on-connect burst to an %IAuth server.
373  * @param[in] iauth %Connection that has completed.
374  */
375 static void iauth_on_connect(struct IAuth *iauth)
376 {
377   struct IAuthRequest *iar;
378   if (EmptyString(i_passwd(iauth)))
379     iauth_send(iauth, "Server %s", cli_name(&me));
380   else
381     iauth_send(iauth, "Server %s %s", cli_name(&me), i_passwd(iauth));
382   if (i_GetIClass(iauth)) {
383     /* TODO: report local users to iauth */
384     iauth_send(iauth, "EndUsers");
385   }
386   i_SetConnected(iauth);
387   for (iar = i_list_head(iauth).iar_next;
388        iar != &i_list_head(iauth);
389        iar = iar->iar_next)
390     iauth_send_request(iauth, iar);
391   iauth_write(iauth);
392 }
393
394 /** Complete disconnection of an %IAuth connection.
395  * @param[in] iauth %Connection to fully close.
396  */
397 static void iauth_disconnect(struct IAuth *iauth)
398 {
399   close(s_fd(&i_socket(iauth)));
400   socket_del(&i_socket(iauth));
401   s_fd(&i_socket(iauth)) = -1;
402 }
403
404 /** DNS completion callback for an %IAuth connection.
405  * @param[in] vptr Pointer to the IAuth struct.
406  * @param[in] he DNS reply parameters.
407  */
408 static void iauth_dns_callback(void *vptr, struct DNSReply *he)
409 {
410   struct IAuth *iauth = vptr;
411   if (!he) {
412     sendto_opmask_butone(0, SNO_OLDSNO, "IAuth connection to %s failed: host lookup failed", i_host(iauth));
413   } else {
414     memcpy(&i_addr(iauth).addr, &he->addr, sizeof(i_addr(iauth).addr));
415     if (!irc_in_addr_valid(&i_addr(iauth).addr)) {
416       sendto_opmask_butone(0, SNO_OLDSNO, "IAuth connection to %s failed: host came back as unresolved", i_host(iauth));
417       return;
418     }
419     iauth_reconnect(iauth);
420   }
421 }
422
423 /** Timer callback for reconnecting to %IAuth.
424  * @param[in] ev Timer event for reconnect.
425  */
426 static void iauth_reconnect_ev(struct Event *ev)
427 {
428   if (ev_type(ev) == ET_EXPIRE)
429     iauth_reconnect(t_data(ev_timer(ev)));
430 }
431
432 /** Schedule a reconnection for \a iauth.
433  * @param[in] iauth %Connection that needs to be reconnected.
434  */
435 static void iauth_schedule_reconnect(struct IAuth *iauth)
436 {
437   struct Timer *timer;
438   assert(!t_active(&i_reconn_timer(iauth)));
439   timer = timer_init(&i_reconn_timer(iauth));
440   timer_add(timer, iauth_reconnect_ev, iauth, TT_RELATIVE, i_reconnect(iauth));
441 }
442
443 /** Initiate a (re-)connection to \a iauth.
444  * @param[in] iauth %Connection that should be initiated.
445  */
446 static void iauth_reconnect(struct IAuth *iauth)
447 {
448   struct irc_sockaddr *local;
449   IOResult result;
450   int fd;
451
452   Debug((DEBUG_INFO, "IAuth attempt connection to %s port %p.", i_host(iauth), i_port(iauth)));
453   if (!irc_in_addr_valid(&i_addr(iauth).addr)
454       && !ircd_aton(&i_addr(iauth).addr, i_host(iauth))) {
455     i_query(iauth).vptr = iauth;
456     i_query(iauth).callback = iauth_dns_callback;
457     gethost_byname(i_host(iauth), &i_query(iauth));
458     return;
459   }
460   local = irc_in_addr_is_ipv4(&i_addr(iauth).addr) ? &VirtualHost_v4 : &VirtualHost_v6;
461   fd = os_socket(local, SOCK_STREAM, "IAuth");
462   if (fd < 0)
463     return;
464   if (!os_set_sockbufs(fd, SERVER_TCP_WINDOW, SERVER_TCP_WINDOW)) {
465     close(fd);
466     sendto_opmask_butone(0, SNO_OLDSNO, "IAuth reconnect unable to set socket buffers: %s", strerror(errno));
467     return;
468   }
469   result = os_connect_nonb(fd, &i_addr(iauth));
470   if (result == IO_FAILURE) {
471     close(fd);
472     sendto_opmask_butone(0, SNO_OLDSNO, "IAuth reconnect unable to initiate connection: %s", strerror(errno));
473     return;
474   }
475   if (!socket_add(&i_socket(iauth), iauth_sock_callback, iauth,
476                   (result == IO_SUCCESS) ? SS_CONNECTED : SS_CONNECTING,
477                   SOCK_EVENT_READABLE | SOCK_EVENT_WRITABLE, fd)) {
478     close(fd);
479     sendto_opmask_butone(0, SNO_OLDSNO, "IAuth reconnect unable to add socket: %s", strerror(errno));
480     return;
481   }
482 }
483
484 /** Read input from \a iauth.
485  * Reads up to SERVER_TCP_WINDOW bytes per pass.
486  * @param[in] iauth Readable connection.
487  */
488 static void iauth_read(struct IAuth *iauth)
489 {
490   char *src, *endp, *old_buffer, *argv[MAXPARA + 1];
491   unsigned int length, argc, ii;
492   char readbuf[SERVER_TCP_WINDOW];
493
494   length = 0;
495   if (IO_FAILURE == os_recv_nonb(s_fd(&i_socket(iauth)), readbuf, sizeof(readbuf), &length))
496     return;
497   i_recvB(iauth) += length;
498   if (i_recvB(iauth) > 1023) {
499     i_recvK(iauth) += i_recvB(iauth) >> 10;
500     i_recvB(iauth) &= 1023;
501   }
502   old_buffer = i_buffer(iauth);
503   endp = old_buffer + i_count(iauth);
504   for (src = readbuf; length > 0; --length) {
505     *endp = *src++;
506     if (IsEol(*endp)) {
507       /* Skip blank lines. */
508       if (endp == old_buffer)
509         continue;
510       /* NUL-terminate line and split parameters. */
511       *endp = '\0';
512       for (argc = 0, endp = old_buffer; *endp && (argc < MAXPARA); ) {
513         while (*endp == ' ')
514           *endp++ = '\0';
515         if (*endp == '\0')
516           break;
517         if (*endp == ':')
518         {
519           argv[argc++] = endp + 1;
520           break;
521         }
522         argv[argc++] = endp;
523         for (; *endp && *endp != ' '; ++endp) ;
524       }
525       argv[argc] = NULL;
526       /* Count line and reset endp to start of buffer. */
527       i_recvM(iauth)++;
528       endp = old_buffer;
529       /* Look up command and try to dispatch. */
530       if (argc > 0) {
531         for (ii = 0; iauth_cmdtab[ii].iac_name; ++ii) {
532           if (!ircd_strcmp(iauth_cmdtab[ii].iac_name, argv[0])) {
533             iauth_cmdtab[ii].iac_func(iauth, argc, argv);
534             if (i_GetAbort(iauth))
535               iauth_disconnect(iauth);
536             break;
537           }
538         }
539       }
540     }
541     else if (endp < old_buffer + BUFSIZE)
542       endp++;
543   }
544   i_count(iauth) = endp - old_buffer;
545 }
546
547 /** Send queued output to \a iauth.
548  * @param[in] iauth Writable connection with queued data.
549  */
550 static void iauth_write(struct IAuth *iauth)
551 {
552   unsigned int bytes_tried, bytes_sent;
553   IOResult iores;
554
555   if (i_GetBlocked(iauth))
556     return;
557   while (MsgQLength(&i_sendQ(iauth)) > 0) {
558     iores = os_sendv_nonb(s_fd(&i_socket(iauth)), &i_sendQ(iauth), &bytes_tried, &bytes_sent);
559     switch (iores) {
560     case IO_SUCCESS:
561       msgq_delete(&i_sendQ(iauth), bytes_sent);
562       i_sendB(iauth) += bytes_sent;
563       if (i_sendB(iauth) > 1023) {
564         i_sendK(iauth) += i_sendB(iauth) >> 10;
565         i_sendB(iauth) &= 1023;
566       }
567       if (bytes_tried == bytes_sent)
568         break;
569       /* If bytes_sent < bytes_tried, fall through to IO_BLOCKED. */
570     case IO_BLOCKED:
571       i_SetBlocked(iauth);
572       socket_events(&i_socket(iauth), SOCK_ACTION_ADD | SOCK_EVENT_WRITABLE);
573       return;
574     case IO_FAILURE:
575       iauth_disconnect(iauth);
576       return;
577     }
578   }
579   /* We were able to flush all events, so remove notification. */
580   socket_events(&i_socket(iauth), SOCK_ACTION_DEL | SOCK_EVENT_WRITABLE);
581 }
582
583 /** Handle socket activity for an %IAuth connection.
584  * @param[in] ev &Socket event; the IAuth connection is the user data pointer for the socket.
585  */
586 static void iauth_sock_callback(struct Event *ev)
587 {
588   struct IAuth *iauth;
589
590   assert(0 != ev_socket(ev));
591   iauth = (struct IAuth*) s_data(ev_socket(ev));
592   assert(0 != iauth);
593
594   switch (ev_type(ev)) {
595   case ET_CONNECT:
596     socket_state(ev_socket(ev), SS_CONNECTED);
597     iauth_on_connect(iauth);
598     break;
599   case ET_DESTROY:
600     if (!i_GetClosing(iauth))
601       iauth_schedule_reconnect(iauth);
602     break;
603   case ET_READ:
604     iauth_read(iauth);
605     break;
606   case ET_WRITE:
607     i_ClrBlocked(iauth);
608     iauth_write(iauth);
609     break;
610   case ET_EOF:
611     iauth_disconnect(iauth);
612     break;
613   case ET_ERROR:
614     sendto_opmask_butone(0, SNO_OLDSNO, "IAuth socket error: %s", strerror(ev_data(ev)));
615     log_write(LS_SOCKET, L_ERROR, 0, "IAuth socket error: %s", strerror(ev_data(ev)));
616     iauth_disconnect(iauth);
617     break;
618   default:
619     assert(0 && "Unrecognized event type");
620     break;
621   }
622 }
623
624 /* Functions related to IAuthRequest structs */
625
626 /** Handle timeout while waiting for a response.
627  * @param[in] ev Timer event that expired.
628  */
629 static void iauth_request_ev(struct Event *ev)
630 {
631   /* TODO: this could probably be more intelligent */
632   if (ev_type(ev) == ET_EXPIRE) {
633     sendto_opmask_butone(0, SNO_OLDSNO, "IAuth request timed out; reconnecting");
634     iauth_reconnect(t_data(ev_timer(ev)));
635   }
636 }
637
638 /** Send a authorization request to an %IAuth server.
639  * @param[in] iauth %Connection to send request on.
640  * @param[in] iar Request to send.
641  */
642 static void iauth_send_request(struct IAuth *iauth, struct IAuthRequest *iar)
643 {
644   struct Client *client;
645
646   /* If iauth is not connected, we must defer the request. */
647   if (!i_GetConnected(iauth)) {
648     Debug((DEBUG_SEND, "IAuth deferring request for %s because we are not connected.", cli_name(iar->iar_client)));
649     return;
650   }
651
652   /* If no timed request, set up expiration timer. */
653   if (!t_active(&i_request_timer(iauth))) {
654     struct Timer *timer = timer_init(&i_request_timer(iauth));
655     timer_add(timer, iauth_request_ev, iauth, TT_RELATIVE, i_timeout(iauth));
656     iar->iar_timed = 1;
657   } else
658     iar->iar_timed = 0;
659
660   /* Send the FullAuth request. */
661   client = iar->iar_client;
662   assert(iar->iar_client != NULL);
663   iauth_send(iauth, "FullAuth %x %s %s %s %s %s :%s",
664              client, cli_name(client), cli_username(client),
665              cli_user(client)->host, cli_sock_ip(client),
666              cli_passwd(client), cli_info(client));
667
668   /* Write to the socket if we can. */
669   iauth_write(iauth);
670 }
671
672 /** Start independent authorization check for a client.
673  * @param[in] iauth %Connection to send request on.
674  * @param[in] cptr Client to check.
675  * @return Zero, or CPTR_KILLED in case of memory allocation failure.
676  */
677 int iauth_start_client(struct IAuth *iauth, struct Client *cptr)
678 {
679   struct IAuthRequest *iar;
680
681   /* Allocate and initialize IAuthRequest struct. */
682   if (!(iar = MyCalloc(1, sizeof(*iar))))
683     return exit_client(cptr, cptr, &me, "IAuth memory allocation failed");
684   iar->iar_next = &i_list_head(iauth);
685   iar->iar_prev = i_list_head(iauth).iar_prev;
686   iar->iar_client = cptr;
687   iar->iar_prev->iar_next = iar;
688   iar->iar_next->iar_prev = iar;
689
690   /* Send request. */
691   iauth_send_request(iauth, iar);
692
693   return 0;
694 }
695
696 /** Handle a client that is disconnecting.
697  * If there is a pending %IAuth request for the client, close it.
698  * @param[in] cptr Client that is disconnecting.
699  */
700 void iauth_exit_client(struct Client *cptr)
701 {
702   if (cli_iauth(cptr)) {
703     iauth_dispose_request(iauth_active, cli_iauth(cptr));
704     cli_iauth(cptr) = NULL;
705   } else if (IsIAuthed(cptr) && i_GetIClass(iauth_active)) {
706     /* TODO: report quit to iauth */
707   }
708 }
709
710 /** Find pending request with a particular ID.
711  * @param[in] iauth %Connection context for the ID.
712  * @param[in] id Identifier to look up.
713  * @return IAuthRequest with that ID, or NULL.
714  */
715 static struct IAuthRequest *iauth_find_request(struct IAuth *iauth, char *id)
716 {
717   struct IAuthRequest *curr;
718   struct Client *target;
719   target = (struct Client*)strtoul(id, NULL, 16);
720   for (curr = i_list_head(iauth).iar_next;
721        curr != &i_list_head(iauth);
722        curr = curr->iar_next) {
723     assert(curr->iar_client != NULL);
724     if (target == curr->iar_client)
725       return curr;
726   }
727   return NULL;
728 }
729
730 /** Unlink and free a request.
731  * @param[in] iauth Connection that owns the request.
732  * @param[in] iar Request to free.
733  */
734 static void iauth_dispose_request(struct IAuth *iauth, struct IAuthRequest *iar)
735 {
736   assert(iar->iar_client != NULL);
737   if (iar->iar_timed)
738     timer_del(&i_request_timer(iauth));
739   cli_iauth(iar->iar_client) = NULL;
740   iar->iar_prev->iar_next = iar->iar_next;
741   iar->iar_next->iar_prev = iar->iar_prev;
742   MyFree(iar);
743 }
744
745 /** Handle a DoneAuth response from %IAuth.
746  * THis means the client is authorized, so let them in.
747  * @param[in] iauth Connection that sent the message.
748  * @param[in] argc Argument count.
749  * @param[in] argv Argument list.
750  */
751 static void iauth_cmd_doneauth(struct IAuth *iauth, int argc, char *argv[])
752 {
753   struct IAuthRequest *iar;
754   struct Client *client;
755   char *id;
756   char *username;
757   char *hostname;
758   char *c_class;
759   char *account;
760
761   if (argc < 5) {
762     iauth_protocol_violation(iauth, "Only %d parameters for DoneAuth (expected >=5)", argc);
763     return;
764   }
765   id = argv[1];
766   username = argv[2];
767   hostname = argv[3];
768   c_class = argv[4];
769   account = (argc > 5) ? argv[5] : 0;
770   iar = iauth_find_request(iauth, id);
771   if (!iar) {
772     iauth_protocol_violation(iauth, "Got unexpected DoneAuth for id %s", id);
773     return;
774   }
775   client = iar->iar_client;
776   ircd_strncpy(cli_username(client), username, USERLEN);
777   ircd_strncpy(cli_user(client)->host, hostname, HOSTLEN);
778   if (account) {
779     ircd_strncpy(cli_user(client)->account, account, ACCOUNTLEN);
780     SetAccount(client);
781   }
782   SetIAuthed(client);
783   iauth_dispose_request(iauth, iar);
784   register_user(client, client, cli_name(client), username);
785 }
786
787 /** Handle a BadAuth response from %IAuth.
788  * This means the client is not authorized, so dump them.
789  * @param[in] iauth Connection that sent the message.
790  * @param[in] argc Argument count.
791  * @param[in] argv Argument list.
792  */
793 static void iauth_cmd_badauth(struct IAuth *iauth, int argc, char *argv[])
794 {
795   struct IAuthRequest *iar;
796   struct Client *client;
797   char *id;
798   char *reason;
799
800   if (argc < 3) {
801     iauth_protocol_violation(iauth, "Only %d parameters for BadAuth (expected >=3)", argc);
802     return;
803   }
804   id = argv[1];
805   reason = argv[2];
806   if (EmptyString(reason)) {
807     iauth_protocol_violation(iauth, "Empty BadAuth reason for id %s", id);
808     return;
809   }
810   iar = iauth_find_request(iauth, id);
811   if (!iar) {
812     iauth_protocol_violation(iauth, "Got unexpected BadAuth for id %s", id);
813     return;
814   }
815   client = iar->iar_client;
816   iauth_dispose_request(iauth, iar);
817   exit_client(client, client, &me, reason);
818 }