/src/glib/gio/ghttpproxy.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* GIO - GLib Input, Output and Streaming Library |
2 | | * |
3 | | * Copyright (C) 2010 Collabora, Ltd. |
4 | | * Copyright (C) 2014 Red Hat, Inc. |
5 | | * |
6 | | * This library is free software; you can redistribute it and/or |
7 | | * modify it under the terms of the GNU Lesser General Public |
8 | | * License as published by the Free Software Foundation; either |
9 | | * version 2.1 of the License, or (at your option) any later version. |
10 | | * |
11 | | * This library 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 GNU |
14 | | * Lesser General Public License for more details. |
15 | | * |
16 | | * You should have received a copy of the GNU Lesser General |
17 | | * Public License along with this library; if not, see <http://www.gnu.org/licenses/>. |
18 | | * |
19 | | * Author: Nicolas Dufresne <nicolas.dufresne@collabora.co.uk> |
20 | | * Marc-André Lureau <marcandre.lureau@redhat.com> |
21 | | */ |
22 | | |
23 | | #include "config.h" |
24 | | |
25 | | #include "ghttpproxy.h" |
26 | | |
27 | | #include <string.h> |
28 | | #include <stdlib.h> |
29 | | |
30 | | #include "giomodule.h" |
31 | | #include "giomodule-priv.h" |
32 | | #include "giostream.h" |
33 | | #include "ginputstream.h" |
34 | | #include "glibintl.h" |
35 | | #include "goutputstream.h" |
36 | | #include "gproxy.h" |
37 | | #include "gproxyaddress.h" |
38 | | #include "gsocketconnectable.h" |
39 | | #include "gtask.h" |
40 | | #include "gtlsclientconnection.h" |
41 | | #include "gtlsconnection.h" |
42 | | |
43 | | |
44 | | struct _GHttpProxy |
45 | | { |
46 | | GObject parent; |
47 | | }; |
48 | | |
49 | | struct _GHttpProxyClass |
50 | | { |
51 | | GObjectClass parent_class; |
52 | | }; |
53 | | |
54 | | static void g_http_proxy_iface_init (GProxyInterface *proxy_iface); |
55 | | |
56 | | #define g_http_proxy_get_type _g_http_proxy_get_type |
57 | | G_DEFINE_TYPE_WITH_CODE (GHttpProxy, g_http_proxy, G_TYPE_OBJECT, |
58 | | G_IMPLEMENT_INTERFACE (G_TYPE_PROXY, |
59 | | g_http_proxy_iface_init) |
60 | | _g_io_modules_ensure_extension_points_registered (); |
61 | | g_io_extension_point_implement (G_PROXY_EXTENSION_POINT_NAME, |
62 | | g_define_type_id, |
63 | | "http", |
64 | | 0)) |
65 | | |
66 | | static void |
67 | | g_http_proxy_init (GHttpProxy *proxy) |
68 | 0 | { |
69 | 0 | } |
70 | | |
71 | | static gchar * |
72 | | create_request (GProxyAddress *proxy_address, |
73 | | gboolean *has_cred, |
74 | | GError **error) |
75 | 0 | { |
76 | 0 | const gchar *hostname; |
77 | 0 | gint port; |
78 | 0 | const gchar *username; |
79 | 0 | const gchar *password; |
80 | 0 | GString *request; |
81 | 0 | gchar *ascii_hostname; |
82 | |
|
83 | 0 | if (has_cred) |
84 | 0 | *has_cred = FALSE; |
85 | |
|
86 | 0 | hostname = g_proxy_address_get_destination_hostname (proxy_address); |
87 | 0 | ascii_hostname = g_hostname_to_ascii (hostname); |
88 | 0 | if (!ascii_hostname) |
89 | 0 | { |
90 | 0 | g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_FAILED, |
91 | 0 | _("Invalid hostname")); |
92 | 0 | return NULL; |
93 | 0 | } |
94 | 0 | port = g_proxy_address_get_destination_port (proxy_address); |
95 | 0 | username = g_proxy_address_get_username (proxy_address); |
96 | 0 | password = g_proxy_address_get_password (proxy_address); |
97 | |
|
98 | 0 | request = g_string_new (NULL); |
99 | |
|
100 | 0 | g_string_append_printf (request, |
101 | 0 | "CONNECT %s:%i HTTP/1.0\r\n" |
102 | 0 | "Host: %s:%i\r\n" |
103 | 0 | "Proxy-Connection: keep-alive\r\n" |
104 | 0 | "User-Agent: GLib/%i.%i\r\n", |
105 | 0 | ascii_hostname, port, |
106 | 0 | ascii_hostname, port, |
107 | 0 | GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION); |
108 | 0 | g_free (ascii_hostname); |
109 | |
|
110 | 0 | if (username != NULL && password != NULL) |
111 | 0 | { |
112 | 0 | gchar *cred; |
113 | 0 | gchar *base64_cred; |
114 | |
|
115 | 0 | if (has_cred) |
116 | 0 | *has_cred = TRUE; |
117 | |
|
118 | 0 | cred = g_strdup_printf ("%s:%s", username, password); |
119 | 0 | base64_cred = g_base64_encode ((guchar *) cred, strlen (cred)); |
120 | 0 | g_free (cred); |
121 | 0 | g_string_append_printf (request, |
122 | 0 | "Proxy-Authorization: Basic %s\r\n", |
123 | 0 | base64_cred); |
124 | 0 | g_free (base64_cred); |
125 | 0 | } |
126 | |
|
127 | 0 | g_string_append (request, "\r\n"); |
128 | |
|
129 | 0 | return g_string_free (request, FALSE); |
130 | 0 | } |
131 | | |
132 | | static gboolean |
133 | | check_reply (const gchar *buffer, |
134 | | gboolean has_cred, |
135 | | GError **error) |
136 | 0 | { |
137 | 0 | gint err_code; |
138 | 0 | const gchar *ptr = buffer + 7; |
139 | |
|
140 | 0 | if (strncmp (buffer, "HTTP/1.", 7) != 0 || (*ptr != '0' && *ptr != '1')) |
141 | 0 | { |
142 | 0 | g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_PROXY_FAILED, |
143 | 0 | _("Bad HTTP proxy reply")); |
144 | 0 | return FALSE; |
145 | 0 | } |
146 | | |
147 | 0 | ptr++; |
148 | 0 | while (*ptr == ' ') |
149 | 0 | ptr++; |
150 | |
|
151 | 0 | err_code = atoi (ptr); |
152 | |
|
153 | 0 | if (err_code < 200 || err_code >= 300) |
154 | 0 | { |
155 | 0 | switch (err_code) |
156 | 0 | { |
157 | 0 | case 403: |
158 | 0 | g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_PROXY_NOT_ALLOWED, |
159 | 0 | _("HTTP proxy connection not allowed")); |
160 | 0 | break; |
161 | 0 | case 407: |
162 | 0 | if (has_cred) |
163 | 0 | g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_PROXY_AUTH_FAILED, |
164 | 0 | _("HTTP proxy authentication failed")); |
165 | 0 | else |
166 | 0 | g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_PROXY_NEED_AUTH, |
167 | 0 | _("HTTP proxy authentication required")); |
168 | 0 | break; |
169 | 0 | default: |
170 | 0 | g_set_error (error, G_IO_ERROR, G_IO_ERROR_PROXY_FAILED, |
171 | 0 | _("HTTP proxy connection failed: %i"), err_code); |
172 | 0 | } |
173 | | |
174 | 0 | return FALSE; |
175 | 0 | } |
176 | | |
177 | 0 | return TRUE; |
178 | 0 | } |
179 | | |
180 | 0 | #define HTTP_END_MARKER "\r\n\r\n" |
181 | | |
182 | | static GIOStream * |
183 | | g_http_proxy_connect (GProxy *proxy, |
184 | | GIOStream *io_stream, |
185 | | GProxyAddress *proxy_address, |
186 | | GCancellable *cancellable, |
187 | | GError **error) |
188 | 0 | { |
189 | 0 | GInputStream *in; |
190 | 0 | GOutputStream *out; |
191 | 0 | gchar *buffer = NULL; |
192 | 0 | gsize buffer_length; |
193 | 0 | gsize bytes_read; |
194 | 0 | gboolean has_cred; |
195 | 0 | GIOStream *tlsconn = NULL; |
196 | |
|
197 | 0 | if (G_IS_HTTPS_PROXY (proxy)) |
198 | 0 | { |
199 | 0 | tlsconn = g_tls_client_connection_new (io_stream, |
200 | 0 | G_SOCKET_CONNECTABLE (proxy_address), |
201 | 0 | error); |
202 | 0 | if (!tlsconn) |
203 | 0 | goto error; |
204 | | |
205 | | #ifdef DEBUG |
206 | | { |
207 | | GTlsCertificateFlags tls_validation_flags = G_TLS_CERTIFICATE_VALIDATE_ALL; |
208 | | |
209 | | tls_validation_flags &= ~(G_TLS_CERTIFICATE_UNKNOWN_CA | G_TLS_CERTIFICATE_BAD_IDENTITY); |
210 | | g_tls_client_connection_set_validation_flags (G_TLS_CLIENT_CONNECTION (tlsconn), |
211 | | tls_validation_flags); |
212 | | } |
213 | | #endif |
214 | | |
215 | 0 | if (!g_tls_connection_handshake (G_TLS_CONNECTION (tlsconn), cancellable, error)) |
216 | 0 | goto error; |
217 | | |
218 | 0 | io_stream = tlsconn; |
219 | 0 | } |
220 | | |
221 | 0 | in = g_io_stream_get_input_stream (io_stream); |
222 | 0 | out = g_io_stream_get_output_stream (io_stream); |
223 | |
|
224 | 0 | buffer = create_request (proxy_address, &has_cred, error); |
225 | 0 | if (!buffer) |
226 | 0 | goto error; |
227 | 0 | if (!g_output_stream_write_all (out, buffer, strlen (buffer), NULL, |
228 | 0 | cancellable, error)) |
229 | 0 | goto error; |
230 | | |
231 | 0 | g_free (buffer); |
232 | |
|
233 | 0 | bytes_read = 0; |
234 | 0 | buffer_length = 1024; |
235 | 0 | buffer = g_malloc (buffer_length); |
236 | | |
237 | | /* Read byte-by-byte instead of using GDataInputStream |
238 | | * since we do not want to read beyond the end marker |
239 | | */ |
240 | 0 | do |
241 | 0 | { |
242 | 0 | gssize signed_nread; |
243 | 0 | gsize nread; |
244 | |
|
245 | 0 | signed_nread = |
246 | 0 | g_input_stream_read (in, buffer + bytes_read, 1, cancellable, error); |
247 | 0 | if (signed_nread == -1) |
248 | 0 | goto error; |
249 | | |
250 | 0 | nread = signed_nread; |
251 | 0 | if (nread == 0) |
252 | 0 | break; |
253 | | |
254 | 0 | ++bytes_read; |
255 | |
|
256 | 0 | if (bytes_read == buffer_length) |
257 | 0 | { |
258 | | /* HTTP specifications does not defines any upper limit for |
259 | | * headers. But, the most usual size used seems to be 8KB. |
260 | | * Yet, the biggest we found was Tomcat's HTTP headers whose |
261 | | * size is 48K. So, for a reasonable error margin, let's accept |
262 | | * a header with a twice as large size but no more: 96KB */ |
263 | 0 | if (buffer_length > 98304) |
264 | 0 | { |
265 | 0 | g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_PROXY_FAILED, |
266 | 0 | _("HTTP proxy response too big")); |
267 | 0 | goto error; |
268 | 0 | } |
269 | 0 | buffer_length = 2 * buffer_length; |
270 | 0 | buffer = g_realloc (buffer, buffer_length); |
271 | 0 | } |
272 | | |
273 | 0 | *(buffer + bytes_read) = '\0'; |
274 | |
|
275 | 0 | if (g_str_has_suffix (buffer, HTTP_END_MARKER)) |
276 | 0 | break; |
277 | 0 | } |
278 | 0 | while (TRUE); |
279 | | |
280 | 0 | if (bytes_read == 0) |
281 | 0 | { |
282 | 0 | g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_PROXY_FAILED, |
283 | 0 | _("HTTP proxy server closed connection unexpectedly.")); |
284 | 0 | goto error; |
285 | 0 | } |
286 | | |
287 | 0 | if (!check_reply (buffer, has_cred, error)) |
288 | 0 | goto error; |
289 | | |
290 | 0 | g_free (buffer); |
291 | |
|
292 | 0 | g_object_ref (io_stream); |
293 | 0 | g_clear_object (&tlsconn); |
294 | |
|
295 | 0 | return io_stream; |
296 | | |
297 | 0 | error: |
298 | 0 | g_clear_object (&tlsconn); |
299 | 0 | g_free (buffer); |
300 | 0 | return NULL; |
301 | 0 | } |
302 | | |
303 | | typedef struct |
304 | | { |
305 | | GIOStream *io_stream; |
306 | | GProxyAddress *proxy_address; |
307 | | } ConnectAsyncData; |
308 | | |
309 | | static void |
310 | | free_connect_data (ConnectAsyncData *data) |
311 | 0 | { |
312 | 0 | g_object_unref (data->io_stream); |
313 | 0 | g_object_unref (data->proxy_address); |
314 | 0 | g_slice_free (ConnectAsyncData, data); |
315 | 0 | } |
316 | | |
317 | | static void |
318 | | connect_thread (GTask *task, |
319 | | gpointer source_object, |
320 | | gpointer task_data, |
321 | | GCancellable *cancellable) |
322 | 0 | { |
323 | 0 | GProxy *proxy = source_object; |
324 | 0 | ConnectAsyncData *data = task_data; |
325 | 0 | GIOStream *res; |
326 | 0 | GError *error = NULL; |
327 | |
|
328 | 0 | res = g_http_proxy_connect (proxy, data->io_stream, data->proxy_address, |
329 | 0 | cancellable, &error); |
330 | |
|
331 | 0 | if (res == NULL) |
332 | 0 | g_task_return_error (task, error); |
333 | 0 | else |
334 | 0 | g_task_return_pointer (task, res, g_object_unref); |
335 | 0 | } |
336 | | |
337 | | static void |
338 | | g_http_proxy_connect_async (GProxy *proxy, |
339 | | GIOStream *io_stream, |
340 | | GProxyAddress *proxy_address, |
341 | | GCancellable *cancellable, |
342 | | GAsyncReadyCallback callback, |
343 | | gpointer user_data) |
344 | 0 | { |
345 | 0 | ConnectAsyncData *data; |
346 | 0 | GTask *task; |
347 | |
|
348 | 0 | data = g_slice_new0 (ConnectAsyncData); |
349 | 0 | data->io_stream = g_object_ref (io_stream); |
350 | 0 | data->proxy_address = g_object_ref (proxy_address); |
351 | |
|
352 | 0 | task = g_task_new (proxy, cancellable, callback, user_data); |
353 | 0 | g_task_set_source_tag (task, g_http_proxy_connect_async); |
354 | 0 | g_task_set_task_data (task, data, (GDestroyNotify) free_connect_data); |
355 | |
|
356 | 0 | g_task_run_in_thread (task, connect_thread); |
357 | 0 | g_object_unref (task); |
358 | 0 | } |
359 | | |
360 | | static GIOStream * |
361 | | g_http_proxy_connect_finish (GProxy *proxy, |
362 | | GAsyncResult *result, |
363 | | GError **error) |
364 | 0 | { |
365 | 0 | return g_task_propagate_pointer (G_TASK (result), error); |
366 | 0 | } |
367 | | |
368 | | static gboolean |
369 | | g_http_proxy_supports_hostname (GProxy *proxy) |
370 | 0 | { |
371 | 0 | return TRUE; |
372 | 0 | } |
373 | | |
374 | | static void |
375 | | g_http_proxy_class_init (GHttpProxyClass *class) |
376 | 0 | { |
377 | 0 | } |
378 | | |
379 | | static void |
380 | | g_http_proxy_iface_init (GProxyInterface *proxy_iface) |
381 | 0 | { |
382 | 0 | proxy_iface->connect = g_http_proxy_connect; |
383 | 0 | proxy_iface->connect_async = g_http_proxy_connect_async; |
384 | 0 | proxy_iface->connect_finish = g_http_proxy_connect_finish; |
385 | 0 | proxy_iface->supports_hostname = g_http_proxy_supports_hostname; |
386 | 0 | } |
387 | | |
388 | | struct _GHttpsProxy |
389 | | { |
390 | | GHttpProxy parent; |
391 | | }; |
392 | | |
393 | | struct _GHttpsProxyClass |
394 | | { |
395 | | GHttpProxyClass parent_class; |
396 | | }; |
397 | | |
398 | | #define g_https_proxy_get_type _g_https_proxy_get_type |
399 | | G_DEFINE_TYPE_WITH_CODE (GHttpsProxy, g_https_proxy, G_TYPE_HTTP_PROXY, |
400 | | G_IMPLEMENT_INTERFACE (G_TYPE_PROXY, |
401 | | g_http_proxy_iface_init) |
402 | | _g_io_modules_ensure_extension_points_registered (); |
403 | | g_io_extension_point_implement (G_PROXY_EXTENSION_POINT_NAME, |
404 | | g_define_type_id, |
405 | | "https", |
406 | | 0)) |
407 | | |
408 | | static void |
409 | | g_https_proxy_init (GHttpsProxy *proxy) |
410 | 0 | { |
411 | 0 | } |
412 | | |
413 | | static void |
414 | | g_https_proxy_class_init (GHttpsProxyClass *class) |
415 | 0 | { |
416 | 0 | } |