1 const char gateway_rcs[] = "$Id: gateway.c,v 1.11 2002/03/08 17:46:04 jongfoster Exp $";
2 /*********************************************************************
4 * File : $Source: /cvsroot/ijbswa/current/gateway.c,v $
6 * Purpose : Contains functions to connect to a server, possibly
7 * using a "forwarder" (i.e. HTTP proxy and/or a SOCKS4
10 * Copyright : Written by and Copyright (C) 2001 the SourceForge
11 * IJBSWA team. http://ijbswa.sourceforge.net
13 * Based on the Internet Junkbuster originally written
14 * by and Copyright (C) 1997 Anonymous Coders and
15 * Junkbusters Corporation. http://www.junkbusters.com
17 * This program is free software; you can redistribute it
18 * and/or modify it under the terms of the GNU General
19 * Public License as published by the Free Software
20 * Foundation; either version 2 of the License, or (at
21 * your option) any later version.
23 * This program is distributed in the hope that it will
24 * be useful, but WITHOUT ANY WARRANTY; without even the
25 * implied warranty of MERCHANTABILITY or FITNESS FOR A
26 * PARTICULAR PURPOSE. See the GNU General Public
27 * License for more details.
29 * The GNU General Public License should be included with
30 * this file. If not, you can view it at
31 * http://www.gnu.org/copyleft/gpl.html
32 * or write to the Free Software Foundation, Inc., 59
33 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
37 * Revision 1.11 2002/03/08 17:46:04 jongfoster
38 * Fixing int/size_t warnings
40 * Revision 1.10 2002/03/07 03:50:19 oes
41 * - Improved handling of failed DNS lookups
42 * - Fixed compiler warnings
44 * Revision 1.9 2001/10/25 03:40:48 david__schmidt
45 * Change in porting tactics: OS/2's EMX porting layer doesn't allow multiple
46 * threads to call select() simultaneously. So, it's time to do a real, live,
47 * native OS/2 port. See defines for __EMX__ (the porting layer) vs. __OS2__
48 * (native). Both versions will work, but using __OS2__ offers multi-threading.
50 * Revision 1.8 2001/09/13 20:10:12 jongfoster
51 * Fixing missing #include under Windows
53 * Revision 1.7 2001/09/12 17:58:26 steudten
55 * add #include <string.h>
57 * Revision 1.6 2001/09/10 10:41:16 oes
60 * Revision 1.5 2001/07/29 18:47:57 jongfoster
61 * Adding missing #include project.h
63 * Revision 1.4 2001/07/24 12:47:06 oes
64 * Applied BeOS support update by Eugenia
66 * Revision 1.3 2001/06/09 10:55:28 jongfoster
67 * Changing BUFSIZ ==> BUFFER_SIZE
69 * Revision 1.2 2001/06/07 23:11:38 jongfoster
70 * Removing gateways[] list - no longer used.
71 * Replacing function pointer in struct gateway with a directly
72 * called function forwarded_connect(), which can do the common
73 * task of deciding whether to connect to the web server or HTTP
75 * Replacing struct gateway with struct forward_spec
76 * Fixing bug with SOCKS4A and HTTP proxy server in combination.
77 * It was a bug which led to the connection being made to the web
78 * server rather than the HTTP proxy, and also a buffer overrun.
80 * Revision 1.1.1.1 2001/05/15 13:58:54 oes
81 * Initial import of version 2.9.3 source tree
84 *********************************************************************/
90 #include <sys/types.h>
93 #include <netinet/in.h>
100 #include <winsock2.h>
101 #endif /* def _WIN32 */
105 #endif /* def __BEOS__ */
109 #endif /* def __OS2__ */
114 #include "jbsockets.h"
117 const char gateway_h_rcs[] = GATEWAY_H_VERSION;
119 static jb_socket socks4_connect(const struct forward_spec * fwd,
120 const char * target_host,
122 struct client_state *csp);
125 #define SOCKS_REQUEST_GRANTED 90
126 #define SOCKS_REQUEST_REJECT 91
127 #define SOCKS_REQUEST_IDENT_FAILED 92
128 #define SOCKS_REQUEST_IDENT_CONFLICT 93
130 /* structure of a socks client operation */
132 unsigned char vn; /* socks version number */
133 unsigned char cd; /* command code */
134 unsigned char dstport[2]; /* destination port */
135 unsigned char dstip[4]; /* destination address */
136 unsigned char userid; /* first byte of userid */
137 /* more bytes of the userid follow, terminated by a NULL */
140 /* structure of a socks server reply */
142 unsigned char vn; /* socks version number */
143 unsigned char cd; /* command code */
144 unsigned char dstport[2]; /* destination port */
145 unsigned char dstip[4]; /* destination address */
148 static const char socks_userid[] = "anonymous";
151 /*********************************************************************
153 * Function : forwarded_connect
155 * Description : Connect to a specified web server, possibly via
156 * a HTTP proxy and/or a SOCKS proxy.
159 * 1 : gw = pointer to a gateway structure (such as gw_default)
160 * 2 : http = the http request and apropos headers
161 * 3 : csp = Current client state (buffers, headers, etc...)
163 * Returns : -1 => failure, else it is the socket file descriptor.
165 *********************************************************************/
166 jb_socket forwarded_connect(const struct forward_spec * fwd,
167 struct http_request *http,
168 struct client_state *csp)
170 const char * dest_host;
173 /* Figure out if we need to connect to the web server or a HTTP proxy. */
174 if (fwd->forward_host)
177 dest_host = fwd->forward_host;
178 dest_port = fwd->forward_port;
183 dest_host = http->host;
184 dest_port = http->port;
187 /* Connect, maybe using a SOCKS proxy */
191 return (connect_to(dest_host, dest_port, csp));
195 return (socks4_connect(fwd, dest_host, dest_port, csp));
198 /* Should never get here */
199 log_error(LOG_LEVEL_FATAL, "SOCKS4 impossible internal error - bad SOCKS type.");
201 return(JB_INVALID_SOCKET);
206 /*********************************************************************
208 * Function : socks4_connect
210 * Description : Connect to the SOCKS server, and connect through
211 * it to the specified server. This handles
212 * all the SOCKS negotiation, and returns a file
213 * descriptor for a socket which can be treated as a
214 * normal (non-SOCKS) socket.
217 * 1 : gw = pointer to a gateway structure (such as gw_default)
218 * 2 : http = the http request and apropos headers
219 * 3 : csp = Current client state (buffers, headers, etc...)
221 * Returns : -1 => failure, else a socket file descriptor.
223 *********************************************************************/
224 static jb_socket socks4_connect(const struct forward_spec * fwd,
225 const char * target_host,
227 struct client_state *csp)
230 char cbuf[BUFFER_SIZE];
231 char sbuf[BUFFER_SIZE];
232 struct socks_op *c = (struct socks_op *)cbuf;
233 struct socks_reply *s = (struct socks_reply *)sbuf;
240 if ((fwd->gateway_host == NULL) || (*fwd->gateway_host == '\0'))
242 log_error(LOG_LEVEL_CONNECT, "socks4_connect: NULL gateway host specified");
246 if (fwd->gateway_port <= 0)
248 log_error(LOG_LEVEL_CONNECT, "socks4_connect: invalid gateway port specified");
255 return(JB_INVALID_SOCKET);
258 /* build a socks request for connection to the web server */
260 strcpy((char *)&(c->userid), socks_userid);
262 csiz = sizeof(*c) + sizeof(socks_userid) - 1;
267 web_server_addr = htonl(resolve_hostname_to_ip(target_host));
268 if (web_server_addr == INADDR_NONE)
270 log_error(LOG_LEVEL_CONNECT, "socks4_connect: could not resolve target host %s", target_host);
271 return(JB_INVALID_SOCKET);
275 web_server_addr = 0x00000001;
276 n = csiz + strlen(target_host) + 1;
277 if (n > sizeof(cbuf))
280 return(JB_INVALID_SOCKET);
282 strcpy(cbuf + csiz, target_host);
286 /* Should never get here */
287 log_error(LOG_LEVEL_FATAL, "SOCKS4 impossible internal error - bad SOCKS type.");
289 return(JB_INVALID_SOCKET);
294 c->dstport[0] = (target_port >> 8 ) & 0xff;
295 c->dstport[1] = (target_port ) & 0xff;
296 c->dstip[0] = (web_server_addr >> 24 ) & 0xff;
297 c->dstip[1] = (web_server_addr >> 16 ) & 0xff;
298 c->dstip[2] = (web_server_addr >> 8 ) & 0xff;
299 c->dstip[3] = (web_server_addr ) & 0xff;
301 /* pass the request to the socks server */
302 sfd = connect_to(fwd->gateway_host, fwd->gateway_port, csp);
304 if (sfd == JB_INVALID_SOCKET)
306 return(JB_INVALID_SOCKET);
309 if (write_socket(sfd, (char *)c, (int)csiz))
311 log_error(LOG_LEVEL_CONNECT, "SOCKS4 negotiation write failed...");
313 return(JB_INVALID_SOCKET);
316 if (read_socket(sfd, sbuf, sizeof(sbuf)) != sizeof(*s))
318 log_error(LOG_LEVEL_CONNECT, "SOCKS4 negotiation read failed...");
320 return(JB_INVALID_SOCKET);
325 case SOCKS_REQUEST_GRANTED:
328 case SOCKS_REQUEST_REJECT:
329 errstr = "SOCKS request rejected or failed";
332 case SOCKS_REQUEST_IDENT_FAILED:
333 errstr = "SOCKS request rejected because "
334 "SOCKS server cannot connect to identd on the client";
337 case SOCKS_REQUEST_IDENT_CONFLICT:
338 errstr = "SOCKS request rejected because "
339 "the client program and identd report "
340 "different user-ids";
347 "SOCKS request rejected for reason code %d\n", s->cd);
350 log_error(LOG_LEVEL_CONNECT, "socks4_connect: %s ...", errstr);
353 return(JB_INVALID_SOCKET);