http: implement 3xx response handling
[siplcs.git] / src / core / sipe-http-request.c
blobed2bda0d0669473673a737687cf8ec3836a1ebae
1 /**
2 * @file sipe-http-request.c
4 * pidgin-sipe
6 * Copyright (C) 2013 SIPE Project <http://sipe.sourceforge.net/>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 * SIPE HTTP request layer implementation
26 * - request handling: creation, parameters, deletion, cancelling
27 * - session handling: creation, closing
28 * - client authorization handling
29 * - connection request queue handling
30 * - compile HTTP header contents and hand-off to transport layer
31 * - process HTTP response and hand-off to user callback
34 #ifdef HAVE_CONFIG_H
35 #include "config.h"
36 #endif
38 #include <string.h>
40 #include <glib.h>
42 #include "sipmsg.h"
43 #include "sip-sec.h"
44 #include "sipe-backend.h"
45 #include "sipe-core.h"
46 #include "sipe-core-private.h"
47 #include "sipe-http.h"
49 #define _SIPE_HTTP_PRIVATE_IF_REQUEST
50 #include "sipe-http-request.h"
51 #define _SIPE_HTTP_PRIVATE_IF_TRANSPORT
52 #include "sipe-http-transport.h"
54 struct sipe_http_session {
55 gchar *cookie; /* extremely simplistic cookie jar :-) */
58 struct sipe_http_request {
59 struct sipe_http_connection_public *connection;
61 struct sipe_http_session *session;
63 gchar *path;
64 gchar *headers;
65 gchar *body; /* NULL for GET */
66 gchar *content_type; /* NULL if body == NULL */
67 gchar *authorization;
69 const gchar *domain; /* not copied */
70 const gchar *user; /* not copied */
71 const gchar *password; /* not copied */
73 sipe_http_response_callback *cb;
74 gpointer cb_data;
76 guint32 flags;
79 #define SIPE_HTTP_REQUEST_FLAG_FIRST 0x00000001
80 #define SIPE_HTTP_REQUEST_FLAG_REDIRECT 0x00000002
81 #define SIPE_HTTP_REQUEST_FLAG_AUTHDATA 0x00000004
83 static void sipe_http_request_free(struct sipe_core_private *sipe_private,
84 struct sipe_http_request *req)
86 if (req->cb)
87 /* Callback: aborted */
88 (*req->cb)(sipe_private, 0, NULL, NULL, req->cb_data);
89 g_free(req->path);
90 g_free(req->headers);
91 g_free(req->body);
92 g_free(req->content_type);
93 g_free(req->authorization);
94 g_free(req);
97 static void sipe_http_request_send(struct sipe_http_connection_public *conn_public)
99 struct sipe_http_request *req = conn_public->pending_requests->data;
100 gchar *header;
101 gchar *content = NULL;
102 gchar *cookie = NULL;
104 if (req->body)
105 content = g_strdup_printf("Content-Length: %" G_GSIZE_FORMAT "\r\n"
106 "Content-Type: %s\r\n",
107 strlen(req->body),
108 req->content_type);
110 if (req->session && req->session->cookie)
111 cookie = g_strdup_printf("Cookie: %s\r\n", req->session->cookie);
113 header = g_strdup_printf("%s /%s HTTP/1.1\r\n"
114 "Host: %s\r\n"
115 "User-Agent: Sipe/" PACKAGE_VERSION "\r\n"
116 "%s%s%s%s",
117 content ? "POST" : "GET",
118 req->path,
119 conn_public->host,
120 req->authorization ? req->authorization : "",
121 req->headers ? req->headers : "",
122 cookie ? cookie : "",
123 content ? content : "");
124 g_free(cookie);
125 g_free(content);
127 /* only use authorization once */
128 g_free(req->authorization);
129 req->authorization = NULL;
131 sipe_http_transport_send(conn_public,
132 header,
133 req->body);
134 g_free(header);
137 gboolean sipe_http_request_pending(struct sipe_http_connection_public *conn_public)
139 return(conn_public->pending_requests != NULL);
142 void sipe_http_request_next(struct sipe_http_connection_public *conn_public)
144 sipe_http_request_send(conn_public);
147 static void sipe_http_request_enqueue(struct sipe_core_private *sipe_private,
148 struct sipe_http_request *req,
149 const struct sipe_http_parsed_uri *parsed_uri)
151 struct sipe_http_connection_public *conn_public;
153 req->path = g_strdup(parsed_uri->path);
154 req->connection = conn_public = sipe_http_transport_new(sipe_private,
155 parsed_uri->host,
156 parsed_uri->port);
157 if (!sipe_http_request_pending(conn_public))
158 req->flags |= SIPE_HTTP_REQUEST_FLAG_FIRST;
160 conn_public->pending_requests = g_slist_append(conn_public->pending_requests,
161 req);
164 /* TRUE indicates failure */
165 static gboolean sipe_http_request_response_redirection(struct sipe_core_private *sipe_private,
166 struct sipe_http_request *req,
167 struct sipmsg *msg)
169 const gchar *location = sipmsg_find_header(msg, "Location");
170 gboolean failed = TRUE;
172 if (location) {
173 struct sipe_http_parsed_uri *parsed_uri = sipe_http_parse_uri(location);
175 if (parsed_uri) {
176 /* remove request from old connection */
177 struct sipe_http_connection_public *conn_public = req->connection;
178 conn_public->pending_requests = g_slist_remove(conn_public->pending_requests,
179 req);
181 /* free old request data */
182 g_free(req->path);
183 req->flags &= ~SIPE_HTTP_REQUEST_FLAG_FIRST;
185 /* resubmit request on other connection */
186 sipe_http_request_enqueue(sipe_private, req, parsed_uri);
187 failed = FALSE;
189 sipe_http_parsed_uri_free(parsed_uri);
190 } else
191 SIPE_DEBUG_INFO("sipe_http_request_response_redirection: invalid redirection to '%s'",
192 location);
193 } else
194 SIPE_DEBUG_INFO_NOFORMAT("sipe_http_request_response_redirection: no URL found?!?");
196 return(failed);
199 /* TRUE indicates failure */
200 static gboolean sipe_http_request_response_unauthorized(struct sipe_core_private *sipe_private,
201 struct sipe_http_request *req,
202 struct sipmsg *msg)
204 const gchar *header = NULL;
205 const gchar *name;
206 guint type;
207 gboolean failed = TRUE;
209 #if defined(HAVE_LIBKRB5) || defined(HAVE_SSPI)
210 #define DEBUG_STRING "NTLM and Negotiate authentications are"
211 /* Use "Negotiate" unless the user requested "NTLM" */
212 if (sipe_private->authentication_type != SIPE_AUTHENTICATION_TYPE_NTLM)
213 header = sipmsg_find_auth_header(msg, "Negotiate");
214 if (header) {
215 type = SIPE_AUTHENTICATION_TYPE_NEGOTIATE;
216 name = "Negotiate";
217 } else
218 #else
219 #define DEBUG_STRING "NTLM authentication is"
220 #endif
222 header = sipmsg_find_auth_header(msg, "NTLM");
223 type = SIPE_AUTHENTICATION_TYPE_NTLM;
224 name = "NTLM";
227 if (header) {
228 struct sipe_http_connection_public *conn_public = req->connection;
230 if (!conn_public->context) {
231 gboolean valid = req->flags & SIPE_HTTP_REQUEST_FLAG_AUTHDATA;
232 conn_public->context = sip_sec_create_context(type,
233 !valid, /* Single Sign-On flag */
234 TRUE, /* connection-based for HTTP */
235 valid ? req->domain : NULL,
236 valid ? req->user : NULL,
237 valid ? req->password : NULL);
241 if (conn_public->context) {
242 gchar **parts = g_strsplit(header, " ", 0);
243 gchar *spn = g_strdup_printf("HTTP/%s", conn_public->host);
244 gchar *token;
246 SIPE_DEBUG_INFO("sipe_http_request_response_unauthorized: init context target '%s' token '%s'",
247 spn, parts[1] ? parts[1] : "<NULL>");
249 if (sip_sec_init_context_step(conn_public->context,
250 spn,
251 parts[1],
252 &token,
253 NULL)) {
255 /* generate authorization header */
256 req->authorization = g_strdup_printf("Authorization: %s %s\r\n",
257 name,
258 token ? token : "");
259 g_free(token);
262 * Keep the request in the queue. As it is at
263 * the head it will be pulled automatically
264 * by the transport layer after returning.
266 failed = FALSE;
268 } else
269 SIPE_DEBUG_INFO_NOFORMAT("sipe_http_request_response_unauthorized: security context init step failed");
271 g_free(spn);
272 g_strfreev(parts);
273 } else
274 SIPE_DEBUG_INFO_NOFORMAT("sipe_http_request_response_unauthorized: security context creation failed");
275 } else
276 SIPE_DEBUG_INFO_NOFORMAT("sipe_http_request_response_unauthorized: only " DEBUG_STRING " supported");
278 return(failed);
281 static void sipe_http_request_response_callback(struct sipe_core_private *sipe_private,
282 struct sipe_http_request *req,
283 struct sipmsg *msg)
285 const gchar *hdr;
287 /* Set-Cookie: RMID=732423sdfs73242; expires=Fri, 31-Dec-2010 23:59:59 GMT; path=/; domain=.example.net */
288 if (req->session &&
289 ((hdr = sipmsg_find_header(msg, "Set-Cookie")) != NULL)) {
290 gchar **parts, **current;
291 const gchar *part;
292 gchar *new = NULL;
294 g_free(req->session->cookie);
295 req->session->cookie = NULL;
297 current = parts = g_strsplit(hdr, ";", 0);
298 while ((part = *current++) != NULL) {
299 /* strip these parts from cookie */
300 if (!(strstr(part, "path=") ||
301 strstr(part, "domain=") ||
302 strstr(part, "expires=") ||
303 strstr(part, "secure"))) {
304 gchar *tmp = new;
305 new = new ?
306 g_strconcat(new, ";", part, NULL) :
307 g_strdup(part);
308 g_free(tmp);
311 g_strfreev(parts);
313 if (new) {
314 req->session->cookie = new;
315 SIPE_DEBUG_INFO("sipe_http_request_response_callback: cookie: %s", new);
319 /* Callback: success */
320 (*req->cb)(sipe_private,
321 msg->response,
322 msg->headers,
323 msg->body,
324 req->cb_data);
326 /* remove completed request */
327 sipe_http_request_cancel(req);
330 void sipe_http_request_response(struct sipe_http_connection_public *conn_public,
331 struct sipmsg *msg)
333 struct sipe_core_private *sipe_private = conn_public->sipe_private;
334 struct sipe_http_request *req = conn_public->pending_requests->data;
335 gboolean failed;
337 if ((req->flags & SIPE_HTTP_REQUEST_FLAG_REDIRECT) &&
338 (msg->response >= SIPE_HTTP_STATUS_REDIRECTION) &&
339 (msg->response < SIPE_HTTP_STATUS_CLIENT_ERROR)) {
340 failed = sipe_http_request_response_redirection(sipe_private,
341 req,
342 msg);
344 } else if (msg->response == SIPE_HTTP_STATUS_CLIENT_UNAUTHORIZED) {
345 failed = sipe_http_request_response_unauthorized(sipe_private,
346 req,
347 msg);
349 } else {
350 /* All other cases are passed on to the user */
351 sipe_http_request_response_callback(sipe_private, req, msg);
353 /* req is no longer valid */
354 failed = FALSE;
357 if (failed) {
358 /* Callback: request failed */
359 (*req->cb)(sipe_private, 0, NULL, NULL, req->cb_data);
361 /* remove failed request */
362 sipe_http_request_cancel(req);
366 void sipe_http_request_shutdown(struct sipe_http_connection_public *conn_public)
368 if (conn_public->pending_requests) {
369 GSList *entry = conn_public->pending_requests;
370 while (entry) {
371 sipe_http_request_free(conn_public->sipe_private,
372 entry->data);
373 entry = entry->next;
375 g_slist_free(conn_public->pending_requests);
376 conn_public->pending_requests = NULL;
379 if (conn_public->context) {
380 sip_sec_destroy_context(conn_public->context);
381 conn_public->context = NULL;
385 struct sipe_http_request *sipe_http_request_new(struct sipe_core_private *sipe_private,
386 const struct sipe_http_parsed_uri *parsed_uri,
387 const gchar *headers,
388 const gchar *body,
389 const gchar *content_type,
390 sipe_http_response_callback *callback,
391 gpointer callback_data)
393 struct sipe_http_request *req;
394 if (!parsed_uri)
395 return(NULL);
397 req = g_new0(struct sipe_http_request, 1);
398 req->flags = 0;
399 req->cb = callback;
400 req->cb_data = callback_data;
401 if (headers)
402 req->headers = g_strdup(headers);
403 if (body) {
404 req->body = g_strdup(body);
405 req->content_type = g_strdup(content_type);
408 /* default authentication */
409 if (!SIPE_CORE_PRIVATE_FLAG_IS(SSO))
410 sipe_http_request_authentication(req,
411 sipe_private->authdomain,
412 sipe_private->authuser,
413 sipe_private->password);
415 sipe_http_request_enqueue(sipe_private, req, parsed_uri);
417 return(req);
420 void sipe_http_request_ready(struct sipe_http_request *request)
422 struct sipe_http_connection_public *conn_public = request->connection;
424 /* pass first request on already opened connection through directly */
425 if ((request->flags & SIPE_HTTP_REQUEST_FLAG_FIRST) &&
426 conn_public->connected)
427 sipe_http_request_send(conn_public);
430 struct sipe_http_session *sipe_http_session_start(void)
432 return(g_new0(struct sipe_http_session, 1));
435 void sipe_http_session_close(struct sipe_http_session *session)
437 if (session) {
438 g_free(session->cookie);
439 g_free(session);
443 void sipe_http_request_cancel(struct sipe_http_request *request)
445 struct sipe_http_connection_public *conn_public = request->connection;
446 conn_public->pending_requests = g_slist_remove(conn_public->pending_requests,
447 request);
449 /* cancelled by requester, don't use callback */
450 request->cb = NULL;
452 sipe_http_request_free(conn_public->sipe_private, request);
455 void sipe_http_request_session(struct sipe_http_request *request,
456 struct sipe_http_session *session)
458 request->session = session;
461 void sipe_http_request_allow_redirect(struct sipe_http_request *request)
463 request->flags |= SIPE_HTTP_REQUEST_FLAG_REDIRECT;
466 void sipe_http_request_authentication(struct sipe_http_request *request,
467 const gchar *domain,
468 const gchar *user,
469 const gchar *password)
471 request->flags |= SIPE_HTTP_REQUEST_FLAG_AUTHDATA;
472 request->domain = domain;
473 request->user = user;
474 request->password = password;
478 Local Variables:
479 mode: c
480 c-file-style: "bsd"
481 indent-tabs-mode: t
482 tab-width: 8
483 End: