3 * $Id: identify.c,v 1.8 2003/11/29 20:36:07 mdw Exp $
5 * Identifies and logs the client of a connection
7 * (c) 1999 Straylight/Edgeware
10 /*----- Licensing notice --------------------------------------------------*
12 * This file is part of the `fw' port forwarder.
14 * `fw' is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * `fw' is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with `fw'; if not, write to the Free Software Foundation,
26 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
29 /*----- Revision history --------------------------------------------------*
31 * $Log: identify.c,v $
32 * Revision 1.8 2003/11/29 20:36:07 mdw
33 * Privileged outgoing connections.
35 * Revision 1.7 2002/02/22 23:43:32 mdw
36 * Call @xfree@ rather than @free@.
38 * Revision 1.6 2001/06/22 19:36:49 mdw
39 * Enlarge the identity buffer.
41 * Revision 1.5 1999/10/10 16:45:34 mdw
42 * Modified to use new mLib resolver and ident client.
44 * Revision 1.4 1999/07/27 18:30:53 mdw
45 * Various minor portability fixes.
47 * Revision 1.3 1999/07/26 23:26:21 mdw
48 * Minor modifications for new design.
50 * Revision 1.2 1999/07/03 13:56:59 mdw
51 * Log connections to syslog or stderr as appropriate.
53 * Revision 1.1.1.1 1999/07/01 08:56:23 mdw
58 /*----- Header files ------------------------------------------------------*/
68 #include <sys/types.h>
73 #include <sys/socket.h>
74 #include <netinet/in.h>
75 #include <arpa/inet.h>
78 #include <mLib/alloc.h>
79 #include <mLib/bres.h>
80 #include <mLib/conn.h>
81 #include <mLib/dstr.h>
82 #include <mLib/ident.h>
83 #include <mLib/report.h>
85 #include <mLib/selbuf.h>
91 /*----- Magic numbers -----------------------------------------------------*/
93 #define TIMEOUT 15 /* Seconds to wait for answers */
95 /*----- Data structures ---------------------------------------------------*/
97 /* --- Structure to track the progress of an identification --- */
100 id_req q; /* Copy of client's request block */
101 time_t when; /* When the connection occurred */
102 conn c; /* Connection selector */
103 unsigned state; /* Current state of the world */
104 sel_timer t; /* Timeout selector */
105 bres_client r; /* Backgd resolver client block */
106 ident_request i; /* Ident client block */
107 char host[128]; /* Resolved hostname */
108 char user[64]; /* Authenticated client user */
111 #define S_HOST 1u /* Read the hostname from resolver */
112 #define S_USER 2u /* Read the username from RFC931 */
113 #define S_TIMER 4u /* Timeout has completed */
115 /*----- Main code ---------------------------------------------------------*/
117 /* --- @id_done@ --- *
119 * Arguments: @id *i@ = pointer to identification block
123 * Use: Finishes with an identification block.
126 static void id_done(id *i)
128 /* --- Close down the various dependent bits --- */
130 if (!(i->state & S_HOST))
132 if (!(i->state & S_USER))
134 if (!(i->state & S_TIMER))
137 /* --- Report the final result --- */
139 fw_log(i->when, "[%s] %s from %s@%s [%s:%u]",
142 inet_ntoa(i->q.rsin.sin_addr), (unsigned)ntohs(i->q.rsin.sin_port));
144 /* --- Dispose of the block --- */
150 /* --- @id_res@ --- *
152 * Arguments: @struct hostent *h@ = name of the resolved host
153 * @void *vp@ = pointer to identification block
157 * Use: Responds to a completed reverse name resolution.
160 static void id_res(struct hostent *h, void *vp)
164 str_sanitize(i->host, h->h_name, sizeof(i->host));
166 if (i->state & S_USER)
170 /* --- @id_ident@ --- *
172 * Arguments: @ident_reply *i@ = pointer to string read from server
173 * @void *vp@ = pointer to identification block
177 * Use: Responds to a line read from the remote RFC931 server.
180 static void id_ident(ident_reply *ir, void *vp)
184 /* --- Read the information from the client --- */
186 if (ir && ir->type == IDENT_USERID)
187 str_sanitize(i->user, ir->u.userid.user, sizeof(i->user));
189 /* --- Maybe finish off this identification --- */
192 if (i->state & S_HOST)
196 /* --- @id_timer@ --- *
198 * Arguments: @struct timeval *tv@ = pointer to the current time
199 * @void *vp@ = pointer to identification block
203 * Use: Times an identification job out.
206 static void id_timer(struct timeval *tv, void *vp)
212 /* --- @identify@ --- *
214 * Arguments: @const id_req *q@ = pointer to request block
218 * Use: Starts a background ident lookup and reverse-resolve job
219 * which will, eventually, report a message to the system log.
222 void identify(const id_req *q)
226 /* --- Initialize the block with stuff --- */
228 i = xmalloc(sizeof(*i));
232 str_sanitize(i->host, inet_ntoa(q->rsin.sin_addr), sizeof(i->host));
233 strcpy(i->user, "<ANONYMOUS>");
237 /* --- Set up the connection to the identity server --- */
239 ident(&i->i, sel, &q->lsin, &q->rsin, id_ident, i);
241 /* --- Set up the name resolver --- */
243 bres_byaddr(&i->r, q->rsin.sin_addr, id_res, i);
245 /* --- Set up the time limiter --- */
249 gettimeofday(&tv, 0);
250 tv.tv_sec += TIMEOUT;
251 sel_addtimer(sel, &i->t, &tv, id_timer, i);
255 /*----- That's all, folks -------------------------------------------------*/