source: lib/url.c

Last change on this file was 12f041d, checked in by dequis <dx@…>, at 2015-10-21T13:14:17Z

socks4a proxy support (like socks4 with remote DNS)

Fixes trac ticket 995 https://bugs.bitlbee.org/bitlbee/ticket/995

This is slightly pointless for the suggested use case (tor), since with
socks5 we already send a hostname instead of an IP address.

Either way, it was easy to implement, so I hope it helps.

  • Property mode set to 100644
File size: 2.9 KB
Line 
1/********************************************************************\
2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
4  * Copyright 2001-2005 Wilmer van der Gaast and others                *
5  \********************************************************************/
6
7/* URL/mirror stuff - Stolen from Axel                                  */
8
9/*
10  This program is free software; you can redistribute it and/or modify
11  it under the terms of the GNU General Public License as published by
12  the Free Software Foundation; either version 2 of the License, or
13  (at your option) any later version.
14
15  This program is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  GNU General Public License for more details.
19
20  You should have received a copy of the GNU General Public License with
21  the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL;
22  if not, write to the Free Software Foundation, Inc., 51 Franklin St.,
23  Fifth Floor, Boston, MA  02110-1301  USA
24*/
25
26#include "url.h"
27
28/* Convert an URL to a url_t structure */
29int url_set(url_t *url, const char *set_url)
30{
31        char s[MAX_STRING + 1];
32        char *i;
33
34        memset(url, 0, sizeof(url_t));
35        memset(s, 0, sizeof(s));
36
37        /* protocol:// */
38        if ((i = strstr(set_url, "://")) == NULL) {
39                url->proto = PROTO_DEFAULT;
40                strncpy(s, set_url, MAX_STRING);
41        } else {
42                if (g_strncasecmp(set_url, "http", i - set_url) == 0) {
43                        url->proto = PROTO_HTTP;
44                } else if (g_strncasecmp(set_url, "https", i - set_url) == 0) {
45                        url->proto = PROTO_HTTPS;
46                } else if (g_strncasecmp(set_url, "socks4", i - set_url) == 0) {
47                        url->proto = PROTO_SOCKS4;
48                } else if (g_strncasecmp(set_url, "socks5", i - set_url) == 0) {
49                        url->proto = PROTO_SOCKS5;
50                } else if (g_strncasecmp(set_url, "socks4a", i - set_url) == 0) {
51                        url->proto = PROTO_SOCKS4A;
52                } else {
53                        return 0;
54                }
55
56                strncpy(s, i + 3, MAX_STRING);
57        }
58
59        /* Split */
60        if ((i = strchr(s, '/')) == NULL) {
61                strcpy(url->file, "/");
62        } else {
63                strncpy(url->file, i, MAX_STRING);
64                *i = 0;
65        }
66        strncpy(url->host, s, MAX_STRING);
67
68        /* Check for username in host field */
69        if (strrchr(url->host, '@') != NULL) {
70                strncpy(url->user, url->host, MAX_STRING);
71                i = strrchr(url->user, '@');
72                *i = 0;
73                strcpy(url->host, i + 1);
74                *url->pass = 0;
75        }
76        /* If not: Fill in defaults */
77        else {
78                *url->user = *url->pass = 0;
79        }
80
81        /* Password? */
82        if ((i = strchr(url->user, ':')) != NULL) {
83                *i = 0;
84                strcpy(url->pass, i + 1);
85        }
86        /* Port number? */
87        if ((i = strchr(url->host, ':')) != NULL) {
88                *i = 0;
89                sscanf(i + 1, "%d", &url->port);
90        } else {
91                if (url->proto == PROTO_HTTP) {
92                        url->port = 80;
93                } else if (url->proto == PROTO_HTTPS) {
94                        url->port = 443;
95                } else if (url->proto == PROTO_SOCKS4 || url->proto == PROTO_SOCKS5) {
96                        url->port = 1080;
97                }
98        }
99
100        return(url->port > 0);
101}
Note: See TracBrowser for help on using the repository browser.