ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/auth.c
Revision: 4815
Committed: Sat Nov 1 15:28:42 2014 UTC (10 years, 9 months ago) by michael
Content type: text/x-csrc
File size: 14036 byte(s)
Log Message:
- Renamed variables

File Contents

# Content
1 /*
2 * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3 *
4 * Copyright (c) 1997-2014 ircd-hybrid development team
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 2 of the License, or
9 * (at your option) 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
19 * USA
20 */
21
22 /*! \file auth.c
23 * \brief Functions for querying a users ident.
24 * \version $Id$
25 */
26
27 /*
28 * Changes:
29 * July 6, 1999 - Rewrote most of the code here. When a client connects
30 * to the server and passes initial socket validation checks, it
31 * is owned by this module (auth) which returns it to the rest of the
32 * server when dns and auth queries are finished. Until the client is
33 * released, the server does not know it exists and does not process
34 * any messages from it.
35 * --Bleep Thomas Helvey <tomh@inxpress.net>
36 */
37
38 #include "stdinc.h"
39 #include "list.h"
40 #include "ircd_defs.h"
41 #include "fdlist.h"
42 #include "auth.h"
43 #include "conf.h"
44 #include "client.h"
45 #include "event.h"
46 #include "irc_string.h"
47 #include "ircd.h"
48 #include "packet.h"
49 #include "res.h"
50 #include "s_bsd.h"
51 #include "log.h"
52 #include "send.h"
53 #include "mempool.h"
54
55
56 static const char *const HeaderMessages[] =
57 {
58 ":*** Looking up your hostname",
59 ":*** Found your hostname",
60 ":*** Couldn't look up your hostname",
61 ":*** Checking Ident",
62 ":*** Got Ident response",
63 ":*** No Ident response",
64 ":*** Your forward and reverse DNS do not match, ignoring hostname",
65 ":*** Your hostname is too long, ignoring hostname"
66 };
67
68 enum
69 {
70 REPORT_DO_DNS,
71 REPORT_FIN_DNS,
72 REPORT_FAIL_DNS,
73 REPORT_DO_ID,
74 REPORT_FIN_ID,
75 REPORT_FAIL_ID,
76 REPORT_IP_MISMATCH,
77 REPORT_HOST_TOOLONG
78 };
79
80 #define sendheader(c, i) sendto_one_notice((c), &me, HeaderMessages[(i)])
81
82 static dlink_list auth_pending_list;
83 static void read_auth_reply(fde_t *, void *);
84 static void auth_connect_callback(fde_t *, int, void *);
85
86
87 /*
88 * make_auth_request - allocate a new auth request
89 */
90 static struct AuthRequest *
91 make_auth_request(struct Client *client)
92 {
93 struct AuthRequest *request = &client->connection->auth;
94
95 memset(request, 0, sizeof(*request));
96
97 request->client = client;
98 request->timeout = CurrentTime + CONNECTTIMEOUT;
99
100 return request;
101 }
102
103 /*
104 * release_auth_client - release auth client from auth system
105 * this adds the client into the local client lists so it can be read by
106 * the main io processing loop
107 */
108 void
109 release_auth_client(struct AuthRequest *auth)
110 {
111 struct Client *client = auth->client;
112
113 if (IsDoingAuth(auth) || IsDNSPending(auth))
114 return;
115
116 if (IsInAuth(auth))
117 {
118 dlinkDelete(&auth->node, &auth_pending_list);
119 ClearInAuth(auth);
120 }
121
122 /*
123 * When a client has auth'ed, we want to start reading what it sends
124 * us. This is what read_packet() does.
125 * -- adrian
126 */
127 client->connection->allow_read = MAX_FLOOD;
128 comm_setflush(&client->connection->fd, 1000, flood_recalc, client);
129
130 client->connection->since = CurrentTime;
131 client->connection->lasttime = CurrentTime;
132 client->connection->firsttime = CurrentTime;
133 client->flags |= FLAGS_FINISHED_AUTH;
134
135 read_packet(&client->connection->fd, client);
136 }
137
138 /*
139 * auth_dns_callback - called when resolver query finishes
140 * if the query resulted in a successful search, name will contain
141 * a non-NULL pointer, otherwise name will be NULL.
142 * set the client on it's way to a connection completion, regardless
143 * of success of failure
144 */
145 static void
146 auth_dns_callback(void *vptr, const struct irc_ssaddr *addr, const char *name, size_t namelength)
147 {
148 struct AuthRequest *auth = vptr;
149
150 ClearDNSPending(auth);
151
152 if (!EmptyString(name))
153 {
154 const struct sockaddr_in *v4, *v4dns;
155 const struct sockaddr_in6 *v6, *v6dns;
156
157 if (auth->client->connection->ip.ss.ss_family == AF_INET6)
158 {
159 v6 = (const struct sockaddr_in6 *)&auth->client->connection->ip;
160 v6dns = (const struct sockaddr_in6 *)addr;
161
162 if (memcmp(&v6->sin6_addr, &v6dns->sin6_addr, sizeof(struct in6_addr)) != 0)
163 {
164 sendheader(auth->client, REPORT_IP_MISMATCH);
165 release_auth_client(auth);
166 return;
167 }
168 }
169 else
170 {
171 v4 = (const struct sockaddr_in *)&auth->client->connection->ip;
172 v4dns = (const struct sockaddr_in *)addr;
173
174 if (v4->sin_addr.s_addr != v4dns->sin_addr.s_addr)
175 {
176 sendheader(auth->client, REPORT_IP_MISMATCH);
177 release_auth_client(auth);
178 return;
179 }
180 }
181
182 if (namelength > HOSTLEN)
183 sendheader(auth->client, REPORT_HOST_TOOLONG);
184 else
185 {
186 strlcpy(auth->client->host, name, sizeof(auth->client->host));
187 sendheader(auth->client, REPORT_FIN_DNS);
188 }
189 }
190 else
191 sendheader(auth->client, REPORT_FAIL_DNS);
192
193 release_auth_client(auth);
194 }
195
196 /*
197 * authsenderr - handle auth send errors
198 */
199 static void
200 auth_error(struct AuthRequest *auth)
201 {
202 ++ServerStats.is_abad;
203
204 fd_close(&auth->fd);
205
206 ClearAuth(auth);
207
208 sendheader(auth->client, REPORT_FAIL_ID);
209
210 release_auth_client(auth);
211 }
212
213 /*
214 * start_auth_query - Flag the client to show that an attempt to
215 * contact the ident server on
216 * the client's host. The connect and subsequently the socket are all put
217 * into 'non-blocking' mode. Should the connect or any later phase of the
218 * identifing process fail, it is aborted and the user is given a username
219 * of "unknown".
220 */
221 static int
222 start_auth_query(struct AuthRequest *auth)
223 {
224 struct irc_ssaddr localaddr;
225 socklen_t locallen = sizeof(struct irc_ssaddr);
226 struct sockaddr_in6 *v6;
227
228 /* open a socket of the same type as the client socket */
229 if (comm_open(&auth->fd, auth->client->connection->ip.ss.ss_family,
230 SOCK_STREAM, 0, "ident") == -1)
231 {
232 report_error(L_ALL, "creating auth stream socket %s:%s",
233 get_client_name(auth->client, SHOW_IP), errno);
234 ++ServerStats.is_abad;
235 return 0;
236 }
237
238 sendheader(auth->client, REPORT_DO_ID);
239
240 /*
241 * get the local address of the client and bind to that to
242 * make the auth request. This used to be done only for
243 * ifdef VIRTUAL_HOST, but needs to be done for all clients
244 * since the ident request must originate from that same address--
245 * and machines with multiple IP addresses are common now
246 */
247 memset(&localaddr, 0, locallen);
248 getsockname(auth->client->connection->fd.fd, (struct sockaddr*)&localaddr,
249 &locallen);
250
251 remove_ipv6_mapping(&localaddr);
252 v6 = (struct sockaddr_in6 *)&localaddr;
253 v6->sin6_port = htons(0);
254 localaddr.ss_port = htons(0);
255
256 comm_connect_tcp(&auth->fd, auth->client->sockhost, RFC1413_PORT,
257 (struct sockaddr *)&localaddr, localaddr.ss_len, auth_connect_callback,
258 auth, auth->client->connection->ip.ss.ss_family,
259 GlobalSetOptions.ident_timeout);
260 return 1; /* We suceed here for now */
261 }
262
263 /*
264 * start_auth
265 *
266 * inputs - pointer to client to auth
267 * output - NONE
268 * side effects - starts auth (identd) and dns queries for a client
269 */
270 void
271 start_auth(struct Client *client_p)
272 {
273 struct AuthRequest *auth = NULL;
274
275 assert(client_p);
276
277 auth = make_auth_request(client_p);
278 SetInAuth(auth);
279 dlinkAddTail(auth, &auth->node, &auth_pending_list);
280
281 sendheader(client_p, REPORT_DO_DNS);
282
283 SetDNSPending(auth);
284
285 if (ConfigGeneral.disable_auth == 0)
286 {
287 SetDoingAuth(auth);
288 start_auth_query(auth);
289 }
290
291 gethost_byaddr(auth_dns_callback, auth, &client_p->connection->ip);
292 }
293
294 /*
295 * timeout_auth_queries - timeout resolver and identd requests
296 * allow clients through if requests failed
297 */
298 static void
299 timeout_auth_queries_event(void *notused)
300 {
301 dlink_node *node = NULL, *node_next = NULL;
302
303 DLINK_FOREACH_SAFE(node, node_next, auth_pending_list.head)
304 {
305 struct AuthRequest *auth = node->data;
306
307 if (auth->timeout > CurrentTime)
308 break;
309
310 if (IsDoingAuth(auth))
311 {
312 ++ServerStats.is_abad;
313 fd_close(&auth->fd);
314 ClearAuth(auth);
315 sendheader(auth->client, REPORT_FAIL_ID);
316 }
317
318 if (IsDNSPending(auth))
319 {
320 delete_resolver_queries(auth);
321 ClearDNSPending(auth);
322 sendheader(auth->client, REPORT_FAIL_DNS);
323 }
324
325 release_auth_client(auth);
326 }
327 }
328
329 /*
330 * auth_connect_callback() - deal with the result of comm_connect_tcp()
331 *
332 * If the connection failed, we simply close the auth fd and report
333 * a failure. If the connection suceeded send the ident server a query
334 * giving "theirport , ourport". The write is only attempted *once* so
335 * it is deemed to be a fail if the entire write doesn't write all the
336 * data given. This shouldnt be a problem since the socket should have
337 * a write buffer far greater than this message to store it in should
338 * problems arise. -avalon
339 */
340 static void
341 auth_connect_callback(fde_t *fd, int error, void *data)
342 {
343 struct AuthRequest *auth = data;
344 struct irc_ssaddr us;
345 struct irc_ssaddr them;
346 char authbuf[32];
347 socklen_t ulen = sizeof(struct irc_ssaddr);
348 socklen_t tlen = sizeof(struct irc_ssaddr);
349 uint16_t uport, tport;
350 struct sockaddr_in6 *v6;
351
352 if (error != COMM_OK)
353 {
354 auth_error(auth);
355 return;
356 }
357
358 if (getsockname(auth->client->connection->fd.fd, (struct sockaddr *)&us, &ulen) ||
359 getpeername(auth->client->connection->fd.fd, (struct sockaddr *)&them, &tlen))
360 {
361 ilog(LOG_TYPE_IRCD, "auth get{sock,peer}name error for %s",
362 get_client_name(auth->client, SHOW_IP));
363 auth_error(auth);
364 return;
365 }
366
367 v6 = (struct sockaddr_in6 *)&us;
368 uport = ntohs(v6->sin6_port);
369 v6 = (struct sockaddr_in6 *)&them;
370 tport = ntohs(v6->sin6_port);
371 remove_ipv6_mapping(&us);
372 remove_ipv6_mapping(&them);
373
374 snprintf(authbuf, sizeof(authbuf), "%u, %u\r\n", tport, uport);
375
376 if (send(fd->fd, authbuf, strlen(authbuf), 0) == -1)
377 {
378 auth_error(auth);
379 return;
380 }
381
382 comm_setselect(fd, COMM_SELECT_READ, read_auth_reply, auth, 0);
383 }
384
385 /** Enum used to index ident reply fields in a human-readable way. */
386 enum IdentReplyFields
387 {
388 IDENT_PORT_NUMBERS,
389 IDENT_REPLY_TYPE,
390 IDENT_OS_TYPE,
391 IDENT_INFO,
392 USERID_TOKEN_COUNT
393 };
394
395 /** Parse an ident reply line and extract the userid from it.
396 * \param reply The ident reply line.
397 * \return The userid, or NULL on parse failure.
398 */
399 static const char *
400 check_ident_reply(char *reply)
401 {
402 char *token = NULL, *end = NULL;
403 char *vector[USERID_TOKEN_COUNT];
404 int count = token_vector(reply, ':', vector, USERID_TOKEN_COUNT);
405
406 if (USERID_TOKEN_COUNT != count)
407 return NULL;
408
409 /*
410 * Second token is the reply type
411 */
412 token = vector[IDENT_REPLY_TYPE];
413
414 if (EmptyString(token))
415 return NULL;
416
417 while (IsSpace(*token))
418 ++token;
419
420 if (strncmp(token, "USERID", 6))
421 return NULL;
422
423 /*
424 * Third token is the os type
425 */
426 token = vector[IDENT_OS_TYPE];
427
428 if (EmptyString(token))
429 return NULL;
430
431 while (IsSpace(*token))
432 ++token;
433
434 /*
435 * Unless "OTHER" is specified as the operating system type, the server
436 * is expected to return the "normal" user identification of the owner
437 * of this connection. "Normal" in this context may be taken to mean a
438 * string of characters which uniquely identifies the connection owner
439 * such as a user identifier assigned by the system administrator and
440 * used by such user as a mail identifier, or as the "user" part of a
441 * user/password pair used to gain access to system resources. When an
442 * operating system is specified (e.g., anything but "OTHER"), the user
443 * identifier is expected to be in a more or less immediately useful
444 * form - e.g., something that could be used as an argument to "finger"
445 * or as a mail address.
446 */
447 if (!strncmp(token, "OTHER", 5))
448 return NULL;
449
450 /*
451 * Fourth token is the username
452 */
453 token = vector[IDENT_INFO];
454
455 if (EmptyString(token))
456 return NULL;
457
458 while (IsSpace(*token))
459 ++token;
460
461 while (*token == '~' || *token == '^')
462 ++token;
463
464 /*
465 * Look for the end of the username, terminators are '\0, @, <SPACE>, :'
466 */
467 for (end = token; *end; ++end)
468 if (IsSpace(*end) || '@' == *end || ':' == *end)
469 break;
470 *end = '\0';
471
472 return token;
473 }
474
475 /*
476 * read_auth_reply - read the reply (if any) from the ident server
477 * we connected to.
478 * We only give it one shot, if the reply isn't good the first time
479 * fail the authentication entirely. --Bleep
480 */
481 static void
482 read_auth_reply(fde_t *fd, void *data)
483 {
484 struct AuthRequest *auth = data;
485 const char *username = NULL;
486 ssize_t len = 0;
487 char buf[RFC1413_BUFSIZ + 1];
488
489 if ((len = recv(fd->fd, buf, RFC1413_BUFSIZ, 0)) > 0)
490 {
491 buf[len] = '\0';
492 username = check_ident_reply(buf);
493 }
494
495 fd_close(fd);
496
497 ClearAuth(auth);
498
499 if (EmptyString(username))
500 {
501 sendheader(auth->client, REPORT_FAIL_ID);
502 ++ServerStats.is_abad;
503 }
504 else
505 {
506 strlcpy(auth->client->username, username, sizeof(auth->client->username));
507 sendheader(auth->client, REPORT_FIN_ID);
508 ++ServerStats.is_asuc;
509 SetGotId(auth->client);
510 }
511
512 release_auth_client(auth);
513 }
514
515 /*
516 * delete_auth()
517 */
518 void
519 delete_auth(struct AuthRequest *auth)
520 {
521 if (IsDNSPending(auth))
522 delete_resolver_queries(auth);
523
524 if (IsDoingAuth(auth))
525 fd_close(&auth->fd);
526
527 if (IsInAuth(auth))
528 {
529 dlinkDelete(&auth->node, &auth_pending_list);
530 ClearInAuth(auth);
531 }
532 }
533
534 /* auth_init
535 *
536 * Initialise the auth code
537 */
538 void
539 auth_init(void)
540 {
541 static struct event timeout_auth_queries =
542 {
543 .name = "timeout_auth_queries_event",
544 .handler = timeout_auth_queries_event,
545 .when = 1
546 };
547
548 event_add(&timeout_auth_queries, NULL);
549 }

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision