Mercurial > pidgin
annotate src/stun.c @ 11440:5938f6b386fa
[gaim-migrate @ 13677]
declarations after code
committer: Tailor Script <tailor@pidgin.im>
author | Daniel Atallah <daniel.atallah@gmail.com> |
---|---|
date | Sun, 04 Sep 2005 18:22:45 +0000 |
parents | d2e44c8085e0 |
children | f18930698b5c |
rev | line source |
---|---|
11225 | 1 /** |
2 * @file stun.c STUN (RFC3489) Implementation | |
3 * @ingroup core | |
4 * | |
5 * gaim | |
6 * | |
11336 | 7 * STUN implementation inspired by jstun [http://jstun.javawi.de/] |
8 * | |
11225 | 9 * Gaim is the legal property of its developers, whose names are too numerous |
10 * to list here. Please refer to the COPYRIGHT file distributed with this | |
11 * source distribution. | |
12 * | |
13 * This program is free software; you can redistribute it and/or modify | |
14 * it under the terms of the GNU General Public License as published by | |
15 * the Free Software Foundation; either version 2 of the License, or | |
16 * (at your option) any later version. | |
17 * | |
18 * This program is distributed in the hope that it will be useful, | |
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 * GNU General Public License for more details. | |
22 * | |
23 * You should have received a copy of the GNU General Public License | |
24 * along with this program; if not, write to the Free Software | |
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
26 * | |
27 */ | |
28 | |
11364
e1840eb860e7
[gaim-migrate @ 13588]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11354
diff
changeset
|
29 #ifndef _WIN32 |
11225 | 30 #include <sys/socket.h> |
31 #include <ifaddrs.h> | |
32 #include <net/if.h> | |
33 #include <sys/ioctl.h> | |
34 #include <resolv.h> | |
11364
e1840eb860e7
[gaim-migrate @ 13588]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11354
diff
changeset
|
35 #else |
e1840eb860e7
[gaim-migrate @ 13588]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11354
diff
changeset
|
36 #include "libc_interface.h" |
e1840eb860e7
[gaim-migrate @ 13588]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11354
diff
changeset
|
37 #endif |
11225 | 38 |
39 #include "internal.h" | |
40 | |
41 #include "debug.h" | |
42 #include "account.h" | |
11424 | 43 #include "dnssrv.h" |
11429 | 44 #include "proxy.h" |
11225 | 45 #include "stun.h" |
46 #include "prefs.h" | |
47 | |
48 struct stun_nattype nattype = {-1, 0, "\0"}; | |
49 | |
50 static GSList *callbacks = 0; | |
51 static int fd = -1; | |
11354 | 52 static gint incb = -1; |
53 static gint timeout = -1; | |
54 static struct stun_header *packet; | |
55 static int packetsize = 0; | |
56 static int test = 0; | |
57 static int retry = 0; | |
58 static struct sockaddr_in addr; | |
11225 | 59 |
60 static void do_callbacks() { | |
61 while(callbacks) { | |
62 StunCallback cb = callbacks->data; | |
11336 | 63 if(cb) |
64 cb(&nattype); | |
11225 | 65 callbacks = g_slist_remove(callbacks, cb); |
66 } | |
67 } | |
68 | |
11354 | 69 static gboolean timeoutfunc(void *blah) { |
70 if(retry > 2) { | |
71 if(test == 2) nattype.type = 5; | |
72 /* remove input */ | |
73 gaim_input_remove(incb); | |
11431
d2e44c8085e0
[gaim-migrate @ 13668]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11429
diff
changeset
|
74 |
11354 | 75 /* set unknown */ |
76 nattype.status = 0; | |
77 | |
78 /* callbacks */ | |
79 do_callbacks(); | |
80 | |
81 return FALSE; | |
82 } | |
83 retry++; | |
84 sendto(fd, packet, packetsize, 0, (struct sockaddr *)&addr, sizeof(struct sockaddr_in)); | |
85 return TRUE; | |
86 } | |
87 | |
88 #ifdef NOTYET | |
89 static void do_test2() { | |
90 struct stun_change data; | |
11431
d2e44c8085e0
[gaim-migrate @ 13668]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11429
diff
changeset
|
91 data.hdr.type = htons(0x0001); |
d2e44c8085e0
[gaim-migrate @ 13668]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11429
diff
changeset
|
92 data.hdr.len = 0; |
d2e44c8085e0
[gaim-migrate @ 13668]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11429
diff
changeset
|
93 data.hdr.transid[0] = rand(); |
d2e44c8085e0
[gaim-migrate @ 13668]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11429
diff
changeset
|
94 data.hdr.transid[1] = ntohl(((int)'g' << 24) + ((int)'a' << 16) + ((int)'i' << 8) + (int)'m'); |
d2e44c8085e0
[gaim-migrate @ 13668]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11429
diff
changeset
|
95 data.hdr.transid[2] = rand(); |
d2e44c8085e0
[gaim-migrate @ 13668]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11429
diff
changeset
|
96 data.hdr.transid[3] = rand(); |
d2e44c8085e0
[gaim-migrate @ 13668]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11429
diff
changeset
|
97 data.attrib.type = htons(0x003); |
11354 | 98 data.attrib.len = htons(4); |
99 data.value[3] = 6; | |
100 packet = (struct stun_header*)&data; | |
101 packetsize = sizeof(struct stun_change); | |
102 retry = 0; | |
103 test = 2; | |
104 sendto(fd, packet, packetsize, 0, (struct sockaddr *)&addr, sizeof(struct sockaddr_in)); | |
11431
d2e44c8085e0
[gaim-migrate @ 13668]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11429
diff
changeset
|
105 timeout = gaim_timeout_add(500, (GSourceFunc)timeoutfunc, NULL); |
11354 | 106 } |
107 #endif | |
108 | |
11225 | 109 static void reply_cb(gpointer data, gint source, GaimInputCondition cond) { |
11336 | 110 char buffer[1024]; |
11225 | 111 char *tmp; |
112 int len; | |
113 struct in_addr in; | |
114 struct stun_attrib *attrib; | |
115 struct stun_header *hdr; | |
11300
dd1a5969b2e5
[gaim-migrate @ 13500]
Richard Laager <rlaager@wiktel.com>
parents:
11229
diff
changeset
|
116 struct ifconf ifc; |
dd1a5969b2e5
[gaim-migrate @ 13500]
Richard Laager <rlaager@wiktel.com>
parents:
11229
diff
changeset
|
117 struct ifreq *ifr; |
dd1a5969b2e5
[gaim-migrate @ 13500]
Richard Laager <rlaager@wiktel.com>
parents:
11229
diff
changeset
|
118 struct sockaddr_in *sinptr; |
11431
d2e44c8085e0
[gaim-migrate @ 13668]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11429
diff
changeset
|
119 |
11336 | 120 len = recv(source, buffer, 1024, 0); |
11225 | 121 |
122 hdr = (struct stun_header*)buffer; | |
11371
6e02e20e3a58
[gaim-migrate @ 13596]
Richard Laager <rlaager@wiktel.com>
parents:
11364
diff
changeset
|
123 if(hdr->transid[0]!=packet->transid[0] || hdr->transid[1]!=packet->transid[1] || hdr->transid[2]!=packet->transid[2] || hdr->transid[3]!=packet->transid[3]) { /* wrong transaction */ |
6e02e20e3a58
[gaim-migrate @ 13596]
Richard Laager <rlaager@wiktel.com>
parents:
11364
diff
changeset
|
124 gaim_debug_info("stun", "got wrong transid\n"); |
11225 | 125 return; |
126 } | |
11431
d2e44c8085e0
[gaim-migrate @ 13668]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11429
diff
changeset
|
127 if(test==1) { |
11354 | 128 tmp = buffer + sizeof(struct stun_header); |
129 while(buffer+len > tmp) { | |
11225 | 130 |
11354 | 131 attrib = (struct stun_attrib*) tmp; |
132 if(attrib->type == htons(0x0001) && attrib->len == htons(8)) { | |
133 memcpy(&in.s_addr, tmp+sizeof(struct stun_attrib)+2+2, 4); | |
134 strcpy(nattype.publicip, inet_ntoa(in)); | |
135 } | |
136 tmp += sizeof(struct stun_attrib) + attrib->len; | |
11225 | 137 } |
11371
6e02e20e3a58
[gaim-migrate @ 13596]
Richard Laager <rlaager@wiktel.com>
parents:
11364
diff
changeset
|
138 gaim_debug_info("stun", "got public ip %s\n", nattype.publicip); |
11354 | 139 nattype.status = 2; |
140 nattype.type = 1; | |
141 | |
11371
6e02e20e3a58
[gaim-migrate @ 13596]
Richard Laager <rlaager@wiktel.com>
parents:
11364
diff
changeset
|
142 /* is it a NAT? */ |
11225 | 143 |
11354 | 144 ifc.ifc_len = sizeof(buffer); |
145 ifc.ifc_req = (struct ifreq *) buffer; | |
146 ioctl(source, SIOCGIFCONF, &ifc); | |
11225 | 147 |
11354 | 148 tmp = buffer; |
149 while(tmp < buffer + ifc.ifc_len) { | |
150 ifr = (struct ifreq *) tmp; | |
11225 | 151 |
11364
e1840eb860e7
[gaim-migrate @ 13588]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11354
diff
changeset
|
152 tmp += sizeof(struct ifreq); |
11225 | 153 |
11354 | 154 if(ifr->ifr_addr.sa_family == AF_INET) { |
11371
6e02e20e3a58
[gaim-migrate @ 13596]
Richard Laager <rlaager@wiktel.com>
parents:
11364
diff
changeset
|
155 /* we only care about ipv4 interfaces */ |
11354 | 156 sinptr = (struct sockaddr_in *) &ifr->ifr_addr; |
157 if(sinptr->sin_addr.s_addr == in.s_addr) { | |
11371
6e02e20e3a58
[gaim-migrate @ 13596]
Richard Laager <rlaager@wiktel.com>
parents:
11364
diff
changeset
|
158 /* no NAT */ |
6e02e20e3a58
[gaim-migrate @ 13596]
Richard Laager <rlaager@wiktel.com>
parents:
11364
diff
changeset
|
159 gaim_debug_info("stun", "no nat"); |
11354 | 160 nattype.type = 0; |
161 } | |
11225 | 162 } |
163 } | |
11354 | 164 gaim_timeout_remove(timeout); |
11225 | 165 |
11354 | 166 #ifdef NOTYET |
167 do_test2(); | |
168 #endif | |
169 return; | |
170 } else if(test == 2) { | |
171 do_callbacks(); | |
172 gaim_input_remove(incb); | |
173 gaim_timeout_remove(timeout); | |
174 nattype.type = 2; | |
175 } | |
11336 | 176 } |
11424 | 177 |
11429 | 178 static void hbn_cb(GSList *hosts, gpointer edata, const char *error_message) { |
11354 | 179 static struct stun_header data; |
11424 | 180 int ret; |
11425 | 181 |
11429 | 182 if(!hosts) return; |
183 if(!hosts->data) return; | |
11425 | 184 |
11225 | 185 if((fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) { |
186 nattype.status = 0; | |
11424 | 187 do_callbacks(); |
188 return; | |
11225 | 189 } |
190 | |
191 addr.sin_family = AF_INET; | |
192 addr.sin_port = htons(12108); | |
193 addr.sin_addr.s_addr = INADDR_ANY; | |
194 while( ((ret = bind(fd, (struct sockaddr *)&addr, sizeof(struct sockaddr_in))) < 0 ) && ntohs(addr.sin_port) < 12208) { | |
195 addr.sin_port = htons(ntohs(addr.sin_port)+1); | |
196 } | |
197 if( ret < 0 ) { | |
198 nattype.status = 0; | |
11431
d2e44c8085e0
[gaim-migrate @ 13668]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11429
diff
changeset
|
199 do_callbacks(); |
11424 | 200 return; |
11225 | 201 } |
202 incb = gaim_input_add(fd, GAIM_INPUT_READ, reply_cb, NULL); | |
203 | |
11429 | 204 ret = GPOINTER_TO_INT(hosts->data); |
205 hosts = g_slist_remove(hosts, hosts->data); | |
206 memcpy(&addr, hosts->data, sizeof(struct sockaddr_in)); | |
207 g_free(hosts->data); | |
208 hosts = g_slist_remove(hosts, hosts->data); | |
209 while(hosts) { | |
210 hosts = g_slist_remove(hosts, hosts->data); | |
211 g_free(hosts->data); | |
212 hosts = g_slist_remove(hosts, hosts->data); | |
213 } | |
11431
d2e44c8085e0
[gaim-migrate @ 13668]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11429
diff
changeset
|
214 |
11225 | 215 data.type = htons(0x0001); |
216 data.len = 0; | |
11354 | 217 data.transid[0] = rand(); |
218 data.transid[1] = ntohl(((int)'g' << 24) + ((int)'a' << 16) + ((int)'i' << 8) + (int)'m'); | |
219 data.transid[2] = rand(); | |
220 data.transid[3] = rand(); | |
11431
d2e44c8085e0
[gaim-migrate @ 13668]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11429
diff
changeset
|
221 |
11225 | 222 if( sendto(fd, &data, sizeof(struct stun_header), 0, (struct sockaddr *)&addr, sizeof(struct sockaddr_in)) < sizeof(struct stun_header)) { |
11431
d2e44c8085e0
[gaim-migrate @ 13668]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11429
diff
changeset
|
223 nattype.status = 0; |
d2e44c8085e0
[gaim-migrate @ 13668]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11429
diff
changeset
|
224 do_callbacks(); |
d2e44c8085e0
[gaim-migrate @ 13668]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11429
diff
changeset
|
225 return; |
11225 | 226 } |
11354 | 227 test = 1; |
228 packet = &data; | |
229 packetsize = sizeof(struct stun_header); | |
230 timeout = gaim_timeout_add(500, (GSourceFunc)timeoutfunc, NULL); | |
11429 | 231 } |
232 | |
233 static void do_test1(struct srv_response *resp, int results, gpointer sdata) { | |
11431
d2e44c8085e0
[gaim-migrate @ 13668]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11429
diff
changeset
|
234 const char *servername = sdata; |
11429 | 235 int port = 3478; |
11431
d2e44c8085e0
[gaim-migrate @ 13668]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11429
diff
changeset
|
236 |
11429 | 237 if(results) { |
238 servername = resp[0].hostname; | |
239 port = resp[0].port; | |
240 } | |
241 gaim_debug_info("stun", "got %d SRV responses, server: %s, port: %d\n", results, servername, port); | |
242 | |
243 gaim_gethostbyname_async(servername, port, hbn_cb, NULL); | |
11424 | 244 g_free(resp); |
11225 | 245 } |
11424 | 246 |
247 struct stun_nattype *gaim_stun_discover(StunCallback cb) { | |
11431
d2e44c8085e0
[gaim-migrate @ 13668]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11429
diff
changeset
|
248 const char *servername = gaim_prefs_get_string("/core/network/stun_server"); |
11424 | 249 |
250 gaim_debug_info("stun", "using server %s\n", servername); | |
251 if(nattype.status == 1) { /* currently discovering */ | |
252 if(cb) callbacks = g_slist_append(callbacks, cb); | |
253 return NULL; | |
254 } | |
255 if(nattype.status != -1) { /* already discovered */ | |
256 if(cb) cb(&nattype); | |
257 return &nattype; | |
258 } | |
259 | |
260 if(!servername || (strlen(servername)<2)) { | |
261 nattype.status = 0; | |
262 if(cb) cb(&nattype); | |
263 return &nattype; | |
264 } | |
265 callbacks = g_slist_append(callbacks, cb); | |
11431
d2e44c8085e0
[gaim-migrate @ 13668]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11429
diff
changeset
|
266 gaim_srv_resolve("stun","udp",servername, do_test1, |
d2e44c8085e0
[gaim-migrate @ 13668]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11429
diff
changeset
|
267 (gpointer) servername); |
11424 | 268 return &nattype; |
269 } | |
270 | |
271 void gaim_stun_init() { | |
272 gaim_prefs_add_string("/core/network/stun_server", ""); | |
273 } |