1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2010 Collabora, Ltd.
4 * Copyright (C) 2014 Red Hat, Inc.
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.
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.
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/>.
19 * Author: Nicolas Dufresne <nicolas.dufresne@collabora.co.uk>
20 * Marc-André Lureau <marcandre.lureau@redhat.com>
25 #include "ghttpproxy.h"
30 #include "giomodule.h"
31 #include "giomodule-priv.h"
32 #include "giostream.h"
33 #include "ginputstream.h"
35 #include "goutputstream.h"
37 #include "gproxyaddress.h"
38 #include "gsocketconnectable.h"
40 #include "gtlsclientconnection.h"
41 #include "gtlsconnection.h"
49 struct _GHttpProxyClass
51 GObjectClass parent_class
;
54 static void g_http_proxy_iface_init (GProxyInterface
*proxy_iface
);
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
,
67 g_http_proxy_init (GHttpProxy
*proxy
)
72 create_request (GProxyAddress
*proxy_address
,
76 const gchar
*hostname
;
78 const gchar
*username
;
79 const gchar
*password
;
81 gchar
*ascii_hostname
;
86 hostname
= g_proxy_address_get_destination_hostname (proxy_address
);
87 ascii_hostname
= g_hostname_to_ascii (hostname
);
90 g_set_error_literal (error
, G_IO_ERROR
, G_IO_ERROR_FAILED
,
91 _("Invalid hostname"));
94 port
= g_proxy_address_get_destination_port (proxy_address
);
95 username
= g_proxy_address_get_username (proxy_address
);
96 password
= g_proxy_address_get_password (proxy_address
);
98 request
= g_string_new (NULL
);
100 g_string_append_printf (request
,
101 "CONNECT %s:%i HTTP/1.0\r\n"
103 "Proxy-Connection: keep-alive\r\n"
104 "User-Agent: GLib/%i.%i\r\n",
105 ascii_hostname
, port
,
106 ascii_hostname
, port
,
107 GLIB_MAJOR_VERSION
, GLIB_MINOR_VERSION
);
108 g_free (ascii_hostname
);
110 if (username
!= NULL
&& password
!= NULL
)
118 cred
= g_strdup_printf ("%s:%s", username
, password
);
119 base64_cred
= g_base64_encode ((guchar
*) cred
, strlen (cred
));
121 g_string_append_printf (request
,
122 "Proxy-Authorization: Basic %s\r\n",
124 g_free (base64_cred
);
127 g_string_append (request
, "\r\n");
129 return g_string_free (request
, FALSE
);
133 check_reply (const gchar
*buffer
,
138 const gchar
*ptr
= buffer
+ 7;
140 if (strncmp (buffer
, "HTTP/1.", 7) != 0 || (*ptr
!= '0' && *ptr
!= '1'))
142 g_set_error_literal (error
, G_IO_ERROR
, G_IO_ERROR_PROXY_FAILED
,
143 _("Bad HTTP proxy reply"));
151 err_code
= atoi (ptr
);
153 if (err_code
< 200 || err_code
>= 300)
158 g_set_error_literal (error
, G_IO_ERROR
, G_IO_ERROR_PROXY_NOT_ALLOWED
,
159 _("HTTP proxy connection not allowed"));
163 g_set_error_literal (error
, G_IO_ERROR
, G_IO_ERROR_PROXY_AUTH_FAILED
,
164 _("HTTP proxy authentication failed"));
166 g_set_error_literal (error
, G_IO_ERROR
, G_IO_ERROR_PROXY_NEED_AUTH
,
167 _("HTTP proxy authentication required"));
170 g_set_error (error
, G_IO_ERROR
, G_IO_ERROR_PROXY_FAILED
,
171 _("HTTP proxy connection failed: %i"), err_code
);
180 #define HTTP_END_MARKER "\r\n\r\n"
183 g_http_proxy_connect (GProxy
*proxy
,
184 GIOStream
*io_stream
,
185 GProxyAddress
*proxy_address
,
186 GCancellable
*cancellable
,
191 gchar
*buffer
= NULL
;
195 GIOStream
*tlsconn
= NULL
;
197 if (G_IS_HTTPS_PROXY (proxy
))
199 tlsconn
= g_tls_client_connection_new (io_stream
,
200 G_SOCKET_CONNECTABLE (proxy_address
),
207 GTlsCertificateFlags tls_validation_flags
= G_TLS_CERTIFICATE_VALIDATE_ALL
;
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
);
215 if (!g_tls_connection_handshake (G_TLS_CONNECTION (tlsconn
), cancellable
, error
))
221 in
= g_io_stream_get_input_stream (io_stream
);
222 out
= g_io_stream_get_output_stream (io_stream
);
224 buffer
= create_request (proxy_address
, &has_cred
, error
);
227 if (!g_output_stream_write_all (out
, buffer
, strlen (buffer
), NULL
,
234 buffer_length
= 1024;
235 buffer
= g_malloc (buffer_length
);
237 /* Read byte-by-byte instead of using GDataInputStream
238 * since we do not want to read beyond the end marker
244 nread
= g_input_stream_read (in
, buffer
+ bytes_read
, 1, cancellable
, error
);
253 if (bytes_read
== buffer_length
)
255 buffer_length
= 2 * buffer_length
;
256 buffer
= g_realloc (buffer
, buffer_length
);
259 *(buffer
+ bytes_read
) = '\0';
261 if (g_str_has_suffix (buffer
, HTTP_END_MARKER
))
268 g_set_error_literal (error
, G_IO_ERROR
, G_IO_ERROR_PROXY_FAILED
,
269 _("HTTP proxy server closed connection unexpectedly."));
273 if (!check_reply (buffer
, has_cred
, error
))
278 g_object_ref (io_stream
);
279 g_clear_object (&tlsconn
);
284 g_clear_object (&tlsconn
);
291 GIOStream
*io_stream
;
292 GProxyAddress
*proxy_address
;
296 free_connect_data (ConnectAsyncData
*data
)
298 g_object_unref (data
->io_stream
);
299 g_object_unref (data
->proxy_address
);
300 g_slice_free (ConnectAsyncData
, data
);
304 connect_thread (GTask
*task
,
305 gpointer source_object
,
307 GCancellable
*cancellable
)
309 GProxy
*proxy
= source_object
;
310 ConnectAsyncData
*data
= task_data
;
312 GError
*error
= NULL
;
314 res
= g_http_proxy_connect (proxy
, data
->io_stream
, data
->proxy_address
,
315 cancellable
, &error
);
318 g_task_return_error (task
, error
);
320 g_task_return_pointer (task
, res
, g_object_unref
);
324 g_http_proxy_connect_async (GProxy
*proxy
,
325 GIOStream
*io_stream
,
326 GProxyAddress
*proxy_address
,
327 GCancellable
*cancellable
,
328 GAsyncReadyCallback callback
,
331 ConnectAsyncData
*data
;
334 data
= g_slice_new0 (ConnectAsyncData
);
335 data
->io_stream
= g_object_ref (io_stream
);
336 data
->proxy_address
= g_object_ref (proxy_address
);
338 task
= g_task_new (proxy
, cancellable
, callback
, user_data
);
339 g_task_set_source_tag (task
, g_http_proxy_connect_async
);
340 g_task_set_task_data (task
, data
, (GDestroyNotify
) free_connect_data
);
342 g_task_run_in_thread (task
, connect_thread
);
343 g_object_unref (task
);
347 g_http_proxy_connect_finish (GProxy
*proxy
,
348 GAsyncResult
*result
,
351 return g_task_propagate_pointer (G_TASK (result
), error
);
355 g_http_proxy_supports_hostname (GProxy
*proxy
)
361 g_http_proxy_class_init (GHttpProxyClass
*class)
366 g_http_proxy_iface_init (GProxyInterface
*proxy_iface
)
368 proxy_iface
->connect
= g_http_proxy_connect
;
369 proxy_iface
->connect_async
= g_http_proxy_connect_async
;
370 proxy_iface
->connect_finish
= g_http_proxy_connect_finish
;
371 proxy_iface
->supports_hostname
= g_http_proxy_supports_hostname
;
379 struct _GHttpsProxyClass
381 GHttpProxyClass parent_class
;
384 #define g_https_proxy_get_type _g_https_proxy_get_type
385 G_DEFINE_TYPE_WITH_CODE (GHttpsProxy
, g_https_proxy
, G_TYPE_HTTP_PROXY
,
386 G_IMPLEMENT_INTERFACE (G_TYPE_PROXY
,
387 g_http_proxy_iface_init
)
388 _g_io_modules_ensure_extension_points_registered ();
389 g_io_extension_point_implement (G_PROXY_EXTENSION_POINT_NAME
,
395 g_https_proxy_init (GHttpsProxy
*proxy
)
400 g_https_proxy_class_init (GHttpsProxyClass
*class)