Author: Bleep <tomh@inxpress.net>
[ircu2.10.12-pk.git] / ircd / s_auth.c
1 /*
2  * IRC - Internet Relay Chat, ircd/s_auth.c
3  * Copyright (C) 1992 Darren Reed
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 1, 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., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19
20 #include "sys.h"
21 #include <sys/socket.h>
22 #if HAVE_SYS_FILE_H
23 #include <sys/file.h>
24 #endif
25 #if HAVE_SYS_IOCTL_H
26 #include <sys/ioctl.h>
27 #endif
28 #ifdef  UNIXPORT
29 #include <sys/un.h>
30 #endif
31 #if HAVE_UNISTD_H
32 #include <unistd.h>
33 #endif
34 #ifdef HPUX
35 #include <arpa/inet.h>
36 #endif /* HPUX */
37 #if HAVE_FCNTL_H
38 #include <fcntl.h>
39 #endif
40 #ifdef USE_SYSLOG
41 #include <syslog.h>
42 #endif
43 #include "h.h"
44 #include "res.h"
45 #include "struct.h"
46 #include "common.h"
47 #include "send.h"
48 #include "s_bsd.h"
49 #include "s_misc.h"
50 #include "support.h"
51 #include "ircd.h"
52 #include "s_auth.h"
53 #include "sprintf_irc.h"
54
55 RCSTAG_CC("$Id$");
56
57 /*
58  * start_auth
59  *
60  * Flag the client to show that an attempt to contact the ident server on
61  * the client's host.  The connect and subsequently the socket are all put
62  * into 'non-blocking' mode.  Should the connect or any later phase of the
63  * identifing process fail, it is aborted and the user is given a username
64  * of "unknown".
65  */
66 void start_auth(aClient *cptr)
67 {
68   struct sockaddr_in sock;
69   int err;
70
71   Debug((DEBUG_NOTICE, "start_auth(%p) fd %d status %d",
72       cptr, cptr->fd, cptr->status));
73
74   alarm(2);
75   cptr->authfd = socket(AF_INET, SOCK_STREAM, 0);
76   err = errno;
77   alarm(0);
78
79   if (cptr->authfd < 0)
80   {
81 #ifdef  USE_SYSLOG
82     syslog(LOG_ERR, "Unable to create auth socket for %s:%m",
83         get_client_name(cptr, FALSE));
84 #endif
85     Debug((DEBUG_ERROR, "Unable to create auth socket for %s:%s",
86         get_client_name(cptr, FALSE), strerror(get_sockerr(cptr))));
87     if (!DoingDNS(cptr))
88       SetAccess(cptr);
89     ircstp->is_abad++;
90     return;
91   }
92   if (cptr->authfd >= (MAXCONNECTIONS - 2))
93   {
94     close(cptr->authfd);
95     cptr->authfd = -1;
96     return;
97   }
98
99   set_non_blocking(cptr->authfd, cptr);
100
101 #ifdef VIRTUAL_HOST
102   if (bind(cptr->authfd, (struct sockaddr *)&vserv, sizeof(vserv)) == -1)
103   {
104     report_error("binding auth stream socket %s: %s", cptr);
105     close(cptr->authfd);
106     cptr->authfd = -1;
107     return;
108   }
109 #endif
110   memcpy(&sock.sin_addr, &cptr->ip, sizeof(struct in_addr));
111
112   sock.sin_port = htons(113);
113   sock.sin_family = AF_INET;
114
115   alarm((unsigned)4);
116   if (connect(cptr->authfd, (struct sockaddr *)&sock,
117       sizeof(sock)) == -1 && errno != EINPROGRESS)
118   {
119     ircstp->is_abad++;
120     /*
121      * No error report from this...
122      */
123     alarm((unsigned)0);
124     close(cptr->authfd);
125     cptr->authfd = -1;
126     if (!DoingDNS(cptr))
127       SetAccess(cptr);
128     return;
129   }
130   alarm((unsigned)0);
131   cptr->flags |= (FLAGS_WRAUTH | FLAGS_AUTH);
132   if (cptr->authfd > highest_fd)
133     highest_fd = cptr->authfd;
134   return;
135 }
136
137 /*
138  * send_authports
139  *
140  * Send the ident server a query giving "theirport , ourport".
141  * The write is only attempted *once* so it is deemed to be a fail if the
142  * entire write doesn't write all the data given.  This shouldnt be a
143  * problem since the socket should have a write buffer far greater than
144  * this message to store it in should problems arise. -avalon
145  */
146 void send_authports(aClient *cptr)
147 {
148   struct sockaddr_in us, them;
149   char authbuf[32];
150   size_t ulen, tlen;
151
152   Debug((DEBUG_NOTICE, "write_authports(%p) fd %d authfd %d stat %d",
153       cptr, cptr->fd, cptr->authfd, cptr->status));
154   tlen = ulen = sizeof(us);
155   if (getsockname(cptr->fd, (struct sockaddr *)&us, &ulen) ||
156       getpeername(cptr->fd, (struct sockaddr *)&them, &tlen))
157   {
158 #ifdef  USE_SYSLOG
159     syslog(LOG_ERR, "auth get{sock,peer}name error for %s:%m",
160         get_client_name(cptr, FALSE));
161 #endif
162     goto authsenderr;
163   }
164
165   sprintf_irc(authbuf, "%u , %u\r\n", (unsigned int)ntohs(them.sin_port),
166       (unsigned int)ntohs(us.sin_port));
167
168   Debug((DEBUG_SEND, "sending [%s] to auth port %s.113",
169       authbuf, inetntoa(them.sin_addr)));
170   if (write(cptr->authfd, authbuf, strlen(authbuf)) != (int)strlen(authbuf))
171   {
172   authsenderr:
173     ircstp->is_abad++;
174     close(cptr->authfd);
175     if (cptr->authfd == highest_fd)
176       while (!loc_clients[highest_fd])
177         highest_fd--;
178     cptr->authfd = -1;
179     cptr->flags &= ~FLAGS_AUTH;
180     if (!DoingDNS(cptr))
181       SetAccess(cptr);
182   }
183   cptr->flags &= ~FLAGS_WRAUTH;
184   return;
185 }
186
187 /*
188  * read_authports
189  *
190  * read the reply (if any) from the ident server we connected to.
191  * The actual read processijng here is pretty weak - no handling of the reply
192  * if it is fragmented by IP.
193  */
194 void read_authports(aClient *cptr)
195 {
196   Reg1 char *s, *t;
197   Reg2 int len;
198   char ruser[USERLEN + 1], system[8];
199   unsigned short int remp = 0, locp = 0;
200
201   *system = *ruser = '\0';
202   Debug((DEBUG_NOTICE, "read_authports(%p) fd %d authfd %d stat %d",
203       cptr, cptr->fd, cptr->authfd, cptr->status));
204   /*
205    * Nasty.  Cant allow any other reads from client fd while we're
206    * waiting on the authfd to return a full valid string.  Use the
207    * client's input buffer to buffer the authd reply.
208    * Oh. this is needed because an authd reply may come back in more
209    * than 1 read! -avalon
210    */
211   if ((len = read(cptr->authfd, cptr->buffer + cptr->count,
212       sizeof(cptr->buffer) - 1 - cptr->count)) >= 0)
213   {
214     cptr->count += len;
215     cptr->buffer[cptr->count] = '\0';
216   }
217
218   cptr->lasttime = now;
219   if ((len > 0) && (cptr->count != (sizeof(cptr->buffer) - 1)) &&
220       (sscanf(cptr->buffer, "%hd , %hd : USERID : %*[^:]: %10s",
221       &remp, &locp, ruser) == 3))
222   {
223     s = strrchr(cptr->buffer, ':');
224     *s++ = '\0';
225     for (t = (strrchr(cptr->buffer, ':') + 1); *t; t++)
226       if (!isSpace(*t))
227         break;
228     strncpy(system, t, sizeof(system) - 1);
229     system[sizeof(system) - 1] = 0;
230     for (t = ruser; *s && (t < ruser + sizeof(ruser)); s++)
231       if (!isSpace(*s) && *s != ':' && *s != '@')
232         *t++ = *s;
233     *t = '\0';
234     Debug((DEBUG_INFO, "auth reply ok [%s] [%s]", system, ruser));
235   }
236   else if (len != 0)
237   {
238     if (!strchr(cptr->buffer, '\n') && !strchr(cptr->buffer, '\r'))
239       return;
240     Debug((DEBUG_ERROR, "local %d remote %d", locp, remp));
241     Debug((DEBUG_ERROR, "bad auth reply in [%s]", cptr->buffer));
242     *ruser = '\0';
243   }
244   close(cptr->authfd);
245   if (cptr->authfd == highest_fd)
246     while (!loc_clients[highest_fd])
247       highest_fd--;
248   cptr->count = 0;
249   cptr->authfd = -1;
250   ClearAuth(cptr);
251   if (!DoingDNS(cptr))
252     SetAccess(cptr);
253   if (len > 0)
254     Debug((DEBUG_INFO, "ident reply: [%s]", cptr->buffer));
255
256   if (!locp || !remp || !*ruser)
257   {
258     ircstp->is_abad++;
259     return;
260   }
261   ircstp->is_asuc++;
262   strncpy(cptr->username, ruser, USERLEN);
263   cptr->username[USERLEN] = 0;  /* This is the LA bug --Run */
264   if (strncmp(system, "OTHER", 5))
265     cptr->flags |= FLAGS_GOTID;
266   Debug((DEBUG_INFO, "got username [%s]", ruser));
267   return;
268 }